@mindly/ui-components 4.3.1 → 4.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/cjs/index.js +1 -1
- package/dist/cjs/lib2/shared/assets/icons/{icon-checkbox-unchecked.d.ts → iconCheckboxUnchecked.d.ts} +1 -1
- package/dist/cjs/lib2/shared/assets/icons/iconLanguage.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/cjs/lib2/shared/assets/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/AppHeader_v2/AppHeader_v2.stories.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/AppHeader_v2/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/shared/assets/icons/{icon-checkbox-unchecked.d.ts → iconCheckboxUnchecked.d.ts} +1 -1
- package/dist/esm/lib2/shared/assets/icons/iconLanguage.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +3 -0
- package/dist/esm/lib2/shared/assets/index.d.ts +1 -0
- package/dist/esm/lib2/shared/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/AppHeader_v2/AppHeader_v2.stories.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/AppHeader_v2/index.d.ts +1 -1
- package/dist/index.d.ts +21 -3
- package/package.json +1 -1
- /package/dist/cjs/lib2/shared/assets/icons/{icon-checkbox-checked.d.ts → iconCheckboxChecked.d.ts} +0 -0
- /package/dist/esm/lib2/shared/assets/icons/{icon-checkbox-checked.d.ts → iconCheckboxChecked.d.ts} +0 -0
|
@@ -3,5 +3,5 @@ interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
|
3
3
|
size?: number | string;
|
|
4
4
|
color?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function
|
|
6
|
+
export declare function IconCheckboxUnchecked({ color, size, ...other }: IconProps): JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './icons';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './AppHeader_v2';
|
|
1
|
+
export { default as AppHeader_v2 } from './AppHeader_v2';
|