@mindly/ui-components 5.24.0 → 5.25.0
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/configs/tailwind/colors.d.ts +3 -0
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/IconButton/IconButton.d.ts +1 -0
- package/dist/esm/configs/tailwind/colors.d.ts +3 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/IconButton/IconButton.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/configs/tailwind/colors.ts +3 -0
- package/src/lib2/shared/css/tailwind.css +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -1432,6 +1432,7 @@ type AppFooterProps = {
|
|
|
1432
1432
|
children?: React__default.ReactNode;
|
|
1433
1433
|
transparent?: boolean;
|
|
1434
1434
|
bottomSaveArea?: boolean;
|
|
1435
|
+
borderTop?: boolean;
|
|
1435
1436
|
};
|
|
1436
1437
|
declare const _default$e: React__default.NamedExoticComponent<AppFooterProps>;
|
|
1437
1438
|
|
|
@@ -1685,6 +1686,7 @@ type IconButtonProps = {
|
|
|
1685
1686
|
className?: string;
|
|
1686
1687
|
routerLink?: string;
|
|
1687
1688
|
onClick?: (e: React__default.MouseEvent<HTMLIonButtonElement>) => void;
|
|
1689
|
+
fill?: 'clear' | 'filled';
|
|
1688
1690
|
};
|
|
1689
1691
|
declare const _default$5: React__default.NamedExoticComponent<IconButtonProps>;
|
|
1690
1692
|
|
package/package.json
CHANGED