@zimyo/ui 1.5.3 → 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 +3 -7
- 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 +11 -1
- package/dist/Accordion/index.d.ts +0 -34
- package/dist/Accordion/index.esm.js +0 -27
- 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 -27
- package/dist/Input/index.js +0 -27
- package/dist/Modal/index.d.ts +0 -19
- package/dist/Modal/index.esm.js +0 -27
- package/dist/Modal/index.js +0 -27
- 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 -15
- 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;
|
|
@@ -176,9 +175,9 @@ interface BadgeProps extends VariantProps<typeof badgeVariants> {
|
|
|
176
175
|
className?: string;
|
|
177
176
|
}
|
|
178
177
|
declare const badgeVariants: (props?: ({
|
|
179
|
-
variant?: "
|
|
178
|
+
variant?: "text" | "outlined" | "contained" | null | undefined;
|
|
180
179
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
181
|
-
type?: "default" | "success" | "
|
|
180
|
+
type?: "default" | "success" | "error" | "info" | "warning" | null | undefined;
|
|
182
181
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
183
182
|
declare const Badge: ({ label, icon, iconPosition, dot, dotPosition, variant, size, type, color, className, }: BadgeProps) => react_jsx_runtime.JSX.Element;
|
|
184
183
|
|
|
@@ -361,8 +360,5 @@ declare const designTokens: {
|
|
|
361
360
|
};
|
|
362
361
|
};
|
|
363
362
|
|
|
364
|
-
|
|
365
|
-
declare function useStableId(prefix?: string): string;
|
|
366
|
-
|
|
367
|
-
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 };
|
|
368
364
|
export type { AccordionContentProps, AccordionItemProps, AccordionProps, AccordionTriggerProps, BadgeProps, ButtonProps, DatePickerProps, DateRangePickerProps, DrawerProps, InputProps, ModalProps, NoticeProps, RadioGroupProps, RadioOption, SelectProps, SwitchProps, ThemeConfig, UILibraryThemeProviderProps };
|