@producteca/producteca-ui-kit 1.3.2 → 1.3.3
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/index.d.ts +2 -18
- package/dist/components/inputs/index.d.ts +3 -0
- package/dist/components/patterns/index.d.ts +1 -0
- package/dist/index.d.ts +2 -3
- package/dist/producteca-ui-kit.es.js +2771 -12683
- package/dist/producteca-ui-kit.umd.js +18 -132
- package/dist/style.css +1 -1
- package/package.json +9 -1
- /package/dist/components/{selectField → inputs/selectField}/selectField.d.ts +0 -0
- /package/dist/components/{input → inputs}/textInput/errorMessage.d.ts +0 -0
- /package/dist/components/{input → inputs}/textInput/formField.d.ts +0 -0
- /package/dist/components/{input → inputs}/textInput/passwordInput.d.ts +0 -0
- /package/dist/components/{input → inputs}/textInput/textInput.d.ts +0 -0
- /package/dist/components/{input → inputs}/toggleInput/toggleInput.d.ts +0 -0
- /package/dist/components/{emptyState → patterns/emptyState}/emptyState.d.ts +0 -0
|
@@ -1,18 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import * as SelectField from './selectField/selectField';
|
|
4
|
-
import * as FormField from './input/textInput/formField';
|
|
5
|
-
import * as ToggleInput from './input/toggleInput/toggleInput';
|
|
6
|
-
import * as Spinner from './spinner/spinner';
|
|
7
|
-
import * as Icons from './icons';
|
|
8
|
-
declare const Components: {
|
|
9
|
-
Button: typeof Button;
|
|
10
|
-
Spinner: typeof Spinner;
|
|
11
|
-
FormField: typeof FormField;
|
|
12
|
-
SelectField: typeof SelectField;
|
|
13
|
-
ToggleInput: typeof ToggleInput;
|
|
14
|
-
};
|
|
15
|
-
declare const Patterns: {
|
|
16
|
-
EmptyState: typeof EmptyState;
|
|
17
|
-
};
|
|
18
|
-
export { Icons, Components, Patterns };
|
|
1
|
+
export * as Button from './button/button';
|
|
2
|
+
export * as Spinner from './spinner/spinner';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as EmptyState from './emptyState/emptyState';
|
package/dist/index.d.ts
CHANGED