Skip to content

Commit

Permalink
Merge pull request #1093 from KleeGroup/fix-autocomplete-legacy
Browse files Browse the repository at this point in the history
Fix autocomplete legacy
  • Loading branch information
Bernardstanislas committed Apr 6, 2016
2 parents b1545ef + ccf862b commit b73dfe9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "focus-components",
"version": "0.14.0-rc3",
"version": "0.14.0-rc4",
"description": "Focus component repository.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/common/autocomplete/awesomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const ReactDOM = require('react-dom');
import builder from 'focus-core/component/builder';
import types from 'focus-core/component/types';
let find = require('lodash/collection/find');
const InputText = require('../input/text').component;
const InputText = require('../../components/input/text');
const {debounce} = require('lodash/function');
import './lib/awesomplete';

Expand Down
2 changes: 1 addition & 1 deletion src/common/field/mixin/built-in-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import InputText from '../../../components/input/text';
import {component as DisplayText} from '../../display/text';
import SelectClassic from '../../../components/input/select';
import {component as Label} from '../../label';
const Autocomplete = props => <div>This component is deprecated, please use <pre>this.autocompleteSelect</pre> instead.</div>;
import Autocomplete from '../../autocomplete/field';


// Mixins
Expand Down

0 comments on commit b73dfe9

Please sign in to comment.