@zimyo/ui 1.5.2 → 1.6.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/index.d.ts +2 -5
- package/dist/index.esm.js +18849 -5
- package/dist/index.js +18895 -5
- package/dist/theme/index.esm.js +241 -1
- package/dist/theme/index.js +246 -1
- package/package.json +13 -2
- package/dist/Accordion/index.d.ts +0 -34
- package/dist/Accordion/index.esm.js +0 -26
- package/dist/Accordion/index.js +0 -27
- package/dist/Badge/index.d.ts +0 -29
- package/dist/Badge/index.esm.js +0 -1
- package/dist/Badge/index.js +0 -1
- package/dist/Button/index.d.ts +0 -15
- package/dist/Button/index.esm.js +0 -1
- package/dist/Button/index.js +0 -1
- package/dist/Card/index.d.ts +0 -41
- package/dist/Card/index.esm.js +0 -1
- package/dist/Card/index.js +0 -1
- package/dist/DatePicker/index.d.ts +0 -38
- package/dist/DatePicker/index.esm.js +0 -26
- package/dist/DatePicker/index.js +0 -26
- package/dist/DateRangePicker/index.d.ts +0 -27
- package/dist/DateRangePicker/index.esm.js +0 -26
- package/dist/DateRangePicker/index.js +0 -26
- package/dist/Form/index.d.ts +0 -33
- package/dist/Form/index.esm.js +0 -26
- package/dist/Form/index.js +0 -26
- package/dist/Input/index.d.ts +0 -20
- package/dist/Input/index.esm.js +0 -26
- package/dist/Input/index.js +0 -26
- package/dist/Modal/index.d.ts +0 -19
- package/dist/Modal/index.esm.js +0 -26
- package/dist/Modal/index.js +0 -26
- package/dist/Notice/index.d.ts +0 -19
- package/dist/Notice/index.esm.js +0 -26
- package/dist/Notice/index.js +0 -26
- package/dist/Popover/index.d.ts +0 -19
- package/dist/Popover/index.esm.js +0 -1
- package/dist/Popover/index.js +0 -1
- package/dist/RadioGroup/index.d.ts +0 -31
- package/dist/RadioGroup/index.esm.js +0 -1
- package/dist/RadioGroup/index.js +0 -1
- package/dist/Select/index.d.ts +0 -26
- package/dist/Select/index.esm.js +0 -27
- package/dist/Select/index.js +0 -27
- package/dist/Switch/index.d.ts +0 -14
- package/dist/Switch/index.esm.js +0 -1
- package/dist/Switch/index.js +0 -1
- package/dist/Tabs/index.d.ts +0 -36
- package/dist/Tabs/index.esm.js +0 -1
- package/dist/Tabs/index.js +0 -1
- package/dist/Typography/index.d.ts +0 -30
- package/dist/Typography/index.esm.js +0 -1
- package/dist/Typography/index.js +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { Props, GroupBase } from 'react-select';
|
|
|
7
7
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
8
8
|
import { VariantProps } from 'class-variance-authority';
|
|
9
9
|
import { Theme } from '@mui/material/styles';
|
|
10
|
-
import { ClassValue } from 'clsx';
|
|
11
10
|
|
|
12
11
|
interface ButtonProps extends Omit<ButtonProps$1, 'sx'> {
|
|
13
12
|
loading?: boolean;
|
|
@@ -72,6 +71,7 @@ interface SwitchProps extends Omit<SwitchProps$1, 'onChange'> {
|
|
|
72
71
|
helperText?: string;
|
|
73
72
|
error?: boolean;
|
|
74
73
|
required?: boolean | number;
|
|
74
|
+
labelPlacement?: 'end' | 'start' | 'bottom' | 'top';
|
|
75
75
|
onChange?: (event: React__default.ChangeEvent<HTMLInputElement>, checked: boolean) => void;
|
|
76
76
|
}
|
|
77
77
|
declare const Switch: React__default.ForwardRefExoticComponent<Omit<SwitchProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
@@ -360,8 +360,5 @@ declare const designTokens: {
|
|
|
360
360
|
};
|
|
361
361
|
};
|
|
362
362
|
|
|
363
|
-
|
|
364
|
-
declare function useStableId(prefix?: string): string;
|
|
365
|
-
|
|
366
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Badge, Blockquote, Button, Caption, Code, DatePicker, DateRangePicker, Drawer, Heading, Input, Lead, Modal, Muted, Notice, RadioGroup, Select, Strong, Switch, Text, UILibraryThemeProvider, cn, createCustomTheme, designTokens, theme, useStableId };
|
|
363
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Badge, Blockquote, Button, Caption, Code, DatePicker, DateRangePicker, Drawer, Heading, Input, Lead, Modal, Muted, Notice, RadioGroup, Select, Strong, Switch, Text, UILibraryThemeProvider, createCustomTheme, designTokens, theme };
|
|
367
364
|
export type { AccordionContentProps, AccordionItemProps, AccordionProps, AccordionTriggerProps, BadgeProps, ButtonProps, DatePickerProps, DateRangePickerProps, DrawerProps, InputProps, ModalProps, NoticeProps, RadioGroupProps, RadioOption, SelectProps, SwitchProps, ThemeConfig, UILibraryThemeProviderProps };
|