@producteca/producteca-ui-kit 1.3.4 → 1.3.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/dist/components/icons/index.d.ts +6 -6
- package/dist/components/index.d.ts +3 -2
- package/dist/components/inputs/index.d.ts +3 -3
- package/dist/components/patterns/index.d.ts +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/producteca-ui-kit.es.js +12625 -2773
- package/dist/producteca-ui-kit.umd.js +132 -18
- package/dist/style.css +1 -1
- package/package.json +10 -8
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { SearchPublication } from './searchPublication/searchPublication';
|
|
2
|
-
export { MailIcon } from './mailIcon/mailIcon';
|
|
3
|
-
export { FileIcon } from './fileIcon/fileIcon';
|
|
4
|
-
export { PriceDownIcon } from './priceDownIcon/priceDownIcon';
|
|
5
|
-
export { PriceCloseIcon } from './priceCloseIcon/priceCloseIcon';
|
|
6
|
-
export { CustomIcon } from './customIcon/customIcon';
|
|
1
|
+
export { default as SearchPublication } from './searchPublication/searchPublication';
|
|
2
|
+
export { default as MailIcon } from './mailIcon/mailIcon';
|
|
3
|
+
export { default as FileIcon } from './fileIcon/fileIcon';
|
|
4
|
+
export { default as PriceDownIcon } from './priceDownIcon/priceDownIcon';
|
|
5
|
+
export { default as PriceCloseIcon } from './priceCloseIcon/priceCloseIcon';
|
|
6
|
+
export { default as CustomIcon } from './customIcon/customIcon';
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * as
|
|
2
|
-
export * as
|
|
1
|
+
export * as icons from './icons';
|
|
2
|
+
export * as inputs from './inputs';
|
|
3
|
+
export * as patterns from './patterns';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export { default as SelectField } from './selectField/selectField';
|
|
2
|
+
export { default as FormField } from './textInput/formField';
|
|
3
|
+
export { default as ToggleInput } from './toggleInput/toggleInput';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default as EmptyState } from './emptyState/emptyState';
|
package/dist/index.d.ts
CHANGED