@oliasoft-open-source/react-ui-library 4.2.7 → 4.2.8
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/index.d.ts +3 -1
- package/dist/index.js.map +1 -1
- package/dist/storybook/assets/{Color-6VNJS4EI-19a3d535.js → Color-6VNJS4EI-811ca6f0.js} +1 -1
- package/dist/storybook/assets/{DocsRenderer-NNNQARDV-b44c5c3b.js → DocsRenderer-NNNQARDV-13015b39.js} +1 -1
- package/dist/storybook/assets/{WithTooltip-4HIR6TLV-62ae405f.js → WithTooltip-4HIR6TLV-fe3aa2ab.js} +1 -1
- package/dist/storybook/assets/{buttons-and-links-0dff29be.js → buttons-and-links-236ef744.js} +1 -1
- package/dist/storybook/assets/{chunk-HLWAVYOI-591b0bb6.js → chunk-HLWAVYOI-f143d329.js} +1 -1
- package/dist/storybook/assets/{color-f9237a15.js → color-915dd9da.js} +1 -1
- package/dist/storybook/assets/file-input.stories-d855942a.js +66 -0
- package/dist/storybook/assets/{formatter-SWP5E3XI-19153158.js → formatter-SWP5E3XI-a0191e1f.js} +1 -1
- package/dist/storybook/assets/{iframe-bd62c6a5.js → iframe-e6f0bd3c.js} +1 -1
- package/dist/storybook/assets/{index-46a3faee.js → index-58f3d19c.js} +4 -4
- package/dist/storybook/assets/{input-validation-0b57c591.js → input-validation-566bbbb7.js} +1 -1
- package/dist/storybook/assets/{inputs-e25729fb.js → inputs-230d0995.js} +1 -1
- package/dist/storybook/assets/{layout-forms-3fdc3701.js → layout-forms-36d75e93.js} +1 -1
- package/dist/storybook/assets/{layout-general-eeed1dd7.js → layout-general-af624016.js} +1 -1
- package/dist/storybook/assets/{padding-and-spacing-f1ec66a3.js → padding-and-spacing-37bd345b.js} +1 -1
- package/dist/storybook/assets/preview-564d3c1d.js +1 -0
- package/dist/storybook/assets/{preview-1fbb7fbb.js → preview-b5fa6b4e.js} +1 -1
- package/dist/storybook/assets/{syntaxhighlighter-NMPM6SWI-dc50bcce.js → syntaxhighlighter-NMPM6SWI-9f2334eb.js} +1 -1
- package/dist/storybook/iframe.html +1 -1
- package/dist/storybook/project.json +1 -1
- package/package.json +1 -1
- package/dist/storybook/assets/file-input.stories-1f3cfbda.js +0 -66
- package/dist/storybook/assets/preview-b00886b3.js +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1607,7 +1607,7 @@ export declare type TAlign = 'left' | 'right' | 'center';
|
|
|
1607
1607
|
declare type TBaseElementProps = {
|
|
1608
1608
|
label?: string | null;
|
|
1609
1609
|
icon?: ReactNode;
|
|
1610
|
-
onClick?:
|
|
1610
|
+
onClick?: TMouseEventHandler;
|
|
1611
1611
|
testId?: string;
|
|
1612
1612
|
};
|
|
1613
1613
|
|
|
@@ -1688,6 +1688,8 @@ export declare type TMenuType = 'Heading' | 'Divider' | 'Option' | 'Menu';
|
|
|
1688
1688
|
|
|
1689
1689
|
export declare type TMessageType = 'Info' | 'Success' | 'Warning' | 'Error';
|
|
1690
1690
|
|
|
1691
|
+
declare type TMouseEventHandler = (evt: MouseEvent_2) => void;
|
|
1692
|
+
|
|
1691
1693
|
export declare const toast: ({ id, message, autoClose, onClose, }: IToastProps) => void | React_2.ReactText;
|
|
1692
1694
|
|
|
1693
1695
|
export { Toaster }
|