@capillarytech/blaze-ui 0.1.4-alpha.18 → 0.1.4-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CapInput/index.js CHANGED
@@ -1,10 +1,11 @@
1
1
  import CapInput from './CapInput';
2
- import Number from './Number';
3
2
  import Search from './Search';
4
3
  import TextArea from './TextArea';
4
+ import Number from './Number';
5
5
 
6
- CapInput.Number = Number;
6
+ // Attach subcomponents to the main component
7
7
  CapInput.Search = Search;
8
8
  CapInput.TextArea = TextArea;
9
+ CapInput.Number = Number;
9
10
 
10
- export default CapInput;
11
+ export default CapInput;
@@ -4,6 +4,6 @@
4
4
 
5
5
  import { loadable } from '@capillarytech/cap-ui-utils';
6
6
 
7
- const CapInputLoadable = loadable(() => import('./CapInput'));
7
+ const CapInputLoadable = loadable(() => import('./index'));
8
8
 
9
9
  export default CapInputLoadable;
@@ -1,8 +1,10 @@
1
1
  import CapInput from './CapInput';
2
- import Number from './Number';
3
2
  import Search from './Search';
4
3
  import TextArea from './TextArea';
5
- CapInput.Number = Number;
4
+ import Number from './Number';
5
+
6
+ // Attach subcomponents to the main component
6
7
  CapInput.Search = Search;
7
8
  CapInput.TextArea = TextArea;
9
+ CapInput.Number = Number;
8
10
  export default CapInput;
@@ -4,6 +4,6 @@
4
4
 
5
5
  import { loadable } from '@capillarytech/cap-ui-utils';
6
6
  var CapInputLoadable = loadable(function () {
7
- return import('./CapInput');
7
+ return import('./index');
8
8
  });
9
9
  export default CapInputLoadable;
package/dist/esm/index.js CHANGED
@@ -1,9 +1,5 @@
1
1
  // Import and export all components
2
2
  export { default as CapInput } from './CapInput';
3
- export { default as CapTable } from './CapTable';
4
-
5
- // Export utilities
6
- export { default as LocaleHoc } from './LocaleHoc';
7
3
 
8
4
  // Export styled utilities
9
5
  import * as _styledVars from './styled/variables';