@producteca/producteca-ui-kit 1.3.2 → 1.3.4

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.
@@ -1,18 +1,2 @@
1
- import * as Button from './button/button';
2
- import * as EmptyState from './emptyState/emptyState';
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,3 @@
1
+ export * as SelectField from './selectField/selectField';
2
+ export * as FormField from './textInput/formField';
3
+ export * as ToggleInput from './toggleInput/toggleInput';
@@ -0,0 +1 @@
1
+ export * as EmptyState from './emptyState/emptyState';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { Components, Icons, Patterns } from './components';
2
-
1
+ export * from './components';
3
2
  import * as Colors from './styles/colors';
4
- export { Components, Icons, Patterns, Colors };
3
+ export { Colors };