Skip to content

Commit

Permalink
Remove KUI services from public interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Dec 19, 2017
1 parent 1b283db commit a91abe9
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
KuiCollapseButton
} from '../../../../components';

import { htmlIdGenerator } from '../../../../services';
import { htmlIdGenerator } from '../../../../src/services';

export default class extends Component {

Expand Down
2 changes: 1 addition & 1 deletion ui_framework/doc_site/src/views/table/fluid_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {

import {
SortableProperties,
} from '../../../../services';
} from '../../../../src/services';

export class FluidTable extends Component {
constructor(props) {
Expand Down
2 changes: 1 addition & 1 deletion ui_framework/doc_site/src/views/table/listing_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {

import {
RIGHT_ALIGNMENT
} from '../../../../services';
} from '../../../../src/services';

export class ListingTable extends Component {
constructor(props) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {

import {
RIGHT_ALIGNMENT
} from '../../../../services';
} from '../../../../src/services';

function renderHeader() {
return [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {

import {
RIGHT_ALIGNMENT
} from '../../../../services';
} from '../../../../src/services';

function renderToolBarActions() {
return [
Expand Down
2 changes: 1 addition & 1 deletion ui_framework/doc_site/src/views/table/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {

import {
SortableProperties,
} from '../../../../services';
} from '../../../../src/services';

const statusToIconClassNameMap = {
success: 'kuiIcon--success fa-check',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {

import {
RIGHT_ALIGNMENT
} from '../../../../services';
} from '../../../../src/services';

export function TableWithMenuButtons() {
return (
Expand Down
1 change: 0 additions & 1 deletion ui_framework/services/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion ui_framework/src/components/code_editor/code_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';
import AceEditor from 'react-ace';

import { htmlIdGenerator, keyCodes } from '../../../services';
import { htmlIdGenerator, keyCodes } from '../../services';

export class KuiCodeEditor extends Component {
state = {
Expand Down

0 comments on commit a91abe9

Please sign in to comment.