@me1a/ui 1.2.4 → 1.2.6
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/iconify/iconify.d.ts +7 -0
- package/dist/components/iconify/index.d.ts +2 -0
- package/dist/components/iconify/types.d.ts +2 -0
- package/dist/components/index.cjs.js +12760 -0
- package/dist/components/index.cjs.js.map +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.es.js +12736 -0
- package/dist/components/index.es.js.map +1 -0
- package/dist/components/snackbar/index.d.ts +2 -0
- package/dist/components/snackbar/snackbar-provider.d.ts +5 -0
- package/dist/components/snackbar/styles.d.ts +6 -0
- package/dist/hook-forms/index.cjs.js.map +1 -1
- package/dist/hook-forms/index.d.ts +11 -2
- package/dist/hook-forms/index.es.js.map +1 -1
- package/dist/hooks/index.cjs.js +27 -0
- package/dist/hooks/index.cjs.js.map +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.es.js +25 -0
- package/dist/hooks/index.es.js.map +1 -0
- package/dist/hooks/use-boolean.d.ts +9 -0
- package/dist/index.cjs.js +3926 -3923
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2546 -2543
- package/dist/index.es.js.map +1 -1
- package/dist/redux/index.cjs.js +1347 -0
- package/dist/redux/index.cjs.js.map +1 -0
- package/dist/redux/index.d.ts +1 -0
- package/dist/redux/index.es.js +1317 -0
- package/dist/redux/index.es.js.map +1 -0
- package/dist/redux-toolkit/index.cjs.js +3 -0
- package/dist/redux-toolkit/index.cjs.js.map +1 -0
- package/dist/redux-toolkit/index.es.js +2 -0
- package/dist/redux-toolkit/index.es.js.map +1 -0
- package/package.json +29 -9
- package/dist/example/example/index.d.ts +0 -1
- package/dist/example/example/simple.d.ts +0 -4
- package/dist/example/hook-forms/form-provider.d.ts +0 -8
- package/dist/example/hook-forms/index.d.ts +0 -11
- package/dist/example/hook-forms/rhf-autocomplete.d.ts +0 -11
- package/dist/example/hook-forms/rhf-checkbox.d.ts +0 -19
- package/dist/example/hook-forms/rhf-radio-group.d.ts +0 -13
- package/dist/example/hook-forms/rhf-select.d.ts +0 -11
- package/dist/example/hook-forms/rhf-slider.d.ts +0 -7
- package/dist/example/hook-forms/rhf-switch.d.ts +0 -7
- package/dist/example/hook-forms/rhf-text-field.d.ts +0 -6
- package/dist/example/index.cjs.js +0 -1381
- package/dist/example/index.cjs.js.map +0 -1
- package/dist/example/index.d.ts +0 -2
- package/dist/example/index.es.js +0 -1379
- package/dist/example/index.es.js.map +0 -1
- package/dist/example/simple.d.ts +0 -4
- package/dist/hook-forms/example/index.d.ts +0 -1
- package/dist/hook-forms/example/simple.d.ts +0 -4
- package/dist/hook-forms/hook-forms/form-provider.d.ts +0 -8
- package/dist/hook-forms/hook-forms/index.d.ts +0 -11
- package/dist/hook-forms/hook-forms/rhf-autocomplete.d.ts +0 -11
- package/dist/hook-forms/hook-forms/rhf-checkbox.d.ts +0 -19
- package/dist/hook-forms/hook-forms/rhf-radio-group.d.ts +0 -13
- package/dist/hook-forms/hook-forms/rhf-select.d.ts +0 -11
- package/dist/hook-forms/hook-forms/rhf-slider.d.ts +0 -7
- package/dist/hook-forms/hook-forms/rhf-switch.d.ts +0 -7
- package/dist/hook-forms/hook-forms/rhf-text-field.d.ts +0 -6
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const StyledNotistack: import("@emotion/styled").StyledComponent<import("notistack").CustomContentProps & import("react").RefAttributes<HTMLDivElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
2
|
+
type StyledIconProps = {
|
|
3
|
+
color: 'info' | 'success' | 'warning' | 'error';
|
|
4
|
+
};
|
|
5
|
+
export declare const StyledIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledIconProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
6
|
+
export {};
|