@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 +4 -3
- package/CapInput/loadable.js +1 -1
- package/dist/esm/CapInput/index.js +4 -2
- package/dist/esm/CapInput/loadable.js +1 -1
- package/dist/esm/index.js +0 -4
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +10 -0
- package/index.js +0 -4
- package/package.json +1 -1
- package/CapTable/CapTable.js +0 -147
- package/CapTable/index.js +0 -3
- package/CapTable/loadable.js +0 -13
- package/CapTable/styles.js +0 -140
- package/CapUnifiedSelect/CapUnifiedSelect.js +0 -159
- package/CapUnifiedSelect/index.js +0 -4
- package/CapUnifiedSelect/loadable.js +0 -3
- package/CapUnifiedSelect/messages.js +0 -24
- package/CapUnifiedSelect/styles.js +0 -182
- package/LocaleHoc/index.js +0 -38
- package/dist/235.index.js +0 -2
- package/dist/235.index.js.LICENSE.txt +0 -29
- package/dist/603.index.js +0 -1
- package/dist/esm/CapTable/CapTable.js +0 -141
- package/dist/esm/CapTable/index.js +0 -2
- package/dist/esm/CapTable/loadable.js +0 -12
- package/dist/esm/CapTable/styles.js +0 -18
- package/dist/esm/CapUnifiedSelect/CapUnifiedSelect.js +0 -151
- package/dist/esm/CapUnifiedSelect/index.js +0 -3
- package/dist/esm/CapUnifiedSelect/loadable.js +0 -4
- package/dist/esm/CapUnifiedSelect/messages.js +0 -23
- package/dist/esm/CapUnifiedSelect/styles.js +0 -3
- package/dist/esm/LocaleHoc/index.js +0 -31
- package/dist/esm/translations/en.js +0 -329
- package/translations/en.js +0 -331
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
|
-
|
|
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;
|
package/CapInput/loadable.js
CHANGED
|
@@ -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
|
-
|
|
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;
|
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';
|