@dito-uai/components 5.1.0-alpha.65 → 5.1.0-alpha.67

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.
Files changed (46) hide show
  1. package/README.md +23 -26
  2. package/dist/global.css +1 -1
  3. package/dist/index.cjs +75 -73
  4. package/dist/index.d.cts +148 -29
  5. package/dist/index.d.ts +2 -2
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +16 -15
  8. package/dist/ui/alert.d.ts.map +1 -1
  9. package/dist/ui/avatar.d.ts.map +1 -1
  10. package/dist/ui/badge.d.ts.map +1 -1
  11. package/dist/ui/button.d.ts.map +1 -1
  12. package/dist/ui/card.d.ts.map +1 -1
  13. package/dist/ui/checkbox.d.ts.map +1 -1
  14. package/dist/ui/chips.d.ts.map +1 -1
  15. package/dist/ui/collapsible.d.ts.map +1 -1
  16. package/dist/ui/dropdown-menu.d.ts.map +1 -1
  17. package/dist/ui/go-to-card.d.ts.map +1 -1
  18. package/dist/ui/indicator.d.ts.map +1 -1
  19. package/dist/ui/input-description.d.ts.map +1 -1
  20. package/dist/ui/input.d.ts.map +1 -1
  21. package/dist/ui/internal/dropdown-content.d.ts.map +1 -1
  22. package/dist/ui/label.d.ts.map +1 -1
  23. package/dist/ui/loading.d.ts.map +1 -1
  24. package/dist/ui/message.d.ts +1 -0
  25. package/dist/ui/message.d.ts.map +1 -1
  26. package/dist/ui/popover.d.ts.map +1 -1
  27. package/dist/ui/progress-bar.d.ts.map +1 -1
  28. package/dist/ui/progress.d.ts.map +1 -1
  29. package/dist/ui/radio.d.ts.map +1 -1
  30. package/dist/ui/scope.d.ts.map +1 -1
  31. package/dist/ui/search.d.ts.map +1 -1
  32. package/dist/ui/select-card.d.ts.map +1 -1
  33. package/dist/ui/sheets.d.ts +123 -9
  34. package/dist/ui/sheets.d.ts.map +1 -1
  35. package/dist/ui/skeleton.d.ts.map +1 -1
  36. package/dist/ui/status.d.ts.map +1 -1
  37. package/dist/ui/switch.d.ts.map +1 -1
  38. package/dist/ui/tabs.d.ts.map +1 -1
  39. package/dist/ui/text.d.ts.map +1 -1
  40. package/dist/ui/textarea.d.ts.map +1 -1
  41. package/dist/ui/tip-card.d.ts.map +1 -1
  42. package/dist/ui/toggle-group.d.ts.map +1 -1
  43. package/dist/ui/toggle.d.ts.map +1 -1
  44. package/dist/ui/tooltip.d.ts.map +1 -1
  45. package/llms.md +646 -0
  46. package/package.json +3 -2
package/dist/index.d.cts CHANGED
@@ -1,10 +1,11 @@
1
1
  import * as tailwind_variants from 'tailwind-variants';
2
2
  import { VariantProps } from 'tailwind-variants';
3
- import * as React$1 from 'react';
3
+ import * as React from 'react';
4
4
  import React__default, { HTMLAttributes, PropsWithChildren } from 'react';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
7
7
  import { VariantProps as VariantProps$1 } from 'class-variance-authority';
8
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
8
9
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
9
10
  import * as tailwind_merge from 'tailwind-merge';
10
11
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
@@ -1005,24 +1006,136 @@ type ProgressBarProps = React__default.HTMLAttributes<HTMLDivElement> & {
1005
1006
  };
1006
1007
  declare const ProgressBar: React__default.FC<ProgressBarProps>;
1007
1008
 
1008
- type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
1009
+ type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement> & {
1009
1010
  invalid?: boolean;
1010
1011
  };
1011
- declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
1012
+ declare const Textarea: React.ForwardRefExoticComponent<React.TextareaHTMLAttributes<HTMLTextAreaElement> & {
1012
1013
  invalid?: boolean;
1013
- } & React$1.RefAttributes<HTMLTextAreaElement>>;
1014
+ } & React.RefAttributes<HTMLTextAreaElement>>;
1014
1015
 
1015
- type SheetProps = {
1016
+ declare const sheet: tailwind_variants.TVReturnType<{
1017
+ side: {
1018
+ right: {
1019
+ content: string;
1020
+ };
1021
+ left: {
1022
+ content: string;
1023
+ };
1024
+ top: {
1025
+ content: string;
1026
+ };
1027
+ bottom: {
1028
+ content: string;
1029
+ };
1030
+ };
1031
+ }, {
1032
+ overlay: string;
1033
+ content: string;
1034
+ header: string;
1035
+ closeButton: string;
1036
+ closeIcon: string;
1016
1037
  title: string;
1017
- children?: React__default.ReactNode;
1018
- isVisible?: boolean;
1019
- CloseIcon?: React__default.ElementType;
1020
- maxWidth?: string;
1021
- onClose?: (confirm: boolean) => void;
1038
+ description: string;
1039
+ body: string;
1040
+ }, undefined, {
1041
+ side: {
1042
+ right: {
1043
+ content: string;
1044
+ };
1045
+ left: {
1046
+ content: string;
1047
+ };
1048
+ top: {
1049
+ content: string;
1050
+ };
1051
+ bottom: {
1052
+ content: string;
1053
+ };
1054
+ };
1055
+ }, {
1056
+ overlay: string;
1057
+ content: string;
1058
+ header: string;
1059
+ closeButton: string;
1060
+ closeIcon: string;
1061
+ title: string;
1062
+ description: string;
1063
+ body: string;
1064
+ }, tailwind_variants.TVReturnType<{
1065
+ side: {
1066
+ right: {
1067
+ content: string;
1068
+ };
1069
+ left: {
1070
+ content: string;
1071
+ };
1072
+ top: {
1073
+ content: string;
1074
+ };
1075
+ bottom: {
1076
+ content: string;
1077
+ };
1078
+ };
1079
+ }, {
1080
+ overlay: string;
1081
+ content: string;
1082
+ header: string;
1083
+ closeButton: string;
1084
+ closeIcon: string;
1085
+ title: string;
1086
+ description: string;
1087
+ body: string;
1088
+ }, undefined, unknown, unknown, undefined>>;
1089
+ type SheetVariants = VariantProps<typeof sheet>;
1090
+ type SheetPushConfig = boolean | {
1091
+ distance?: number;
1092
+ };
1093
+ type SheetRootProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Root> & {
1094
+ onClose?: () => void;
1095
+ push?: SheetPushConfig;
1096
+ };
1097
+ type SheetTriggerProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Trigger>;
1098
+ type SheetPortalProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Portal>;
1099
+ type SheetOverlayProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>;
1100
+ type SheetSide = NonNullable<SheetVariants['side']>;
1101
+ type SheetContentProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & {
1102
+ side?: SheetSide;
1103
+ width?: string | number;
1104
+ maskClosable?: boolean;
1105
+ embedded?: boolean;
1106
+ overlay?: boolean;
1022
1107
  };
1108
+ type SheetBodyProps = React.HTMLAttributes<HTMLDivElement>;
1109
+ type SheetHeaderProps = Omit<React.HTMLAttributes<HTMLDivElement>, 'title'> & {
1110
+ title?: React.ReactNode;
1111
+ description?: React.ReactNode;
1112
+ extra?: React.ReactNode;
1113
+ };
1114
+ type SheetCloseProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Close>;
1023
1115
  declare const Sheet: {
1024
- ({ title, children, isVisible, CloseIcon, maxWidth, onClose, }: SheetProps): react_jsx_runtime.JSX.Element;
1025
- displayName: string;
1116
+ Root: {
1117
+ ({ onClose, onOpenChange, push, open: openProp, ...restProps }: SheetRootProps): react_jsx_runtime.JSX.Element;
1118
+ displayName: string;
1119
+ };
1120
+ Trigger: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
1121
+ Portal: {
1122
+ ({ container, ...props }: SheetPortalProps): react_jsx_runtime.JSX.Element;
1123
+ displayName: string;
1124
+ };
1125
+ Overlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1126
+ Content: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
1127
+ side?: SheetSide;
1128
+ width?: string | number;
1129
+ maskClosable?: boolean;
1130
+ embedded?: boolean;
1131
+ overlay?: boolean;
1132
+ } & React.RefAttributes<HTMLDivElement>>;
1133
+ Body: React.ForwardRefExoticComponent<SheetBodyProps & React.RefAttributes<HTMLDivElement>>;
1134
+ Header: {
1135
+ ({ className, title, description, extra, ...props }: SheetHeaderProps): react_jsx_runtime.JSX.Element;
1136
+ displayName: string;
1137
+ };
1138
+ Close: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
1026
1139
  };
1027
1140
 
1028
1141
  declare const TextVariants: tailwind_variants.TVReturnType<{
@@ -1082,13 +1195,13 @@ type SwitchProps = HTMLAttributes<HTMLInputElement> & PropsWithChildren<{
1082
1195
  disabled?: boolean;
1083
1196
  checked?: boolean;
1084
1197
  }>;
1085
- declare const Switch: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLInputElement> & {
1198
+ declare const Switch: React.ForwardRefExoticComponent<HTMLAttributes<HTMLInputElement> & {
1086
1199
  name: string;
1087
1200
  disabled?: boolean;
1088
1201
  checked?: boolean;
1089
1202
  } & {
1090
- children?: React$1.ReactNode | undefined;
1091
- } & React$1.RefAttributes<HTMLInputElement>>;
1203
+ children?: React.ReactNode | undefined;
1204
+ } & React.RefAttributes<HTMLInputElement>>;
1092
1205
 
1093
1206
  type LoadingProps = {
1094
1207
  className?: string;
@@ -1160,11 +1273,11 @@ declare const toggleVariants: tailwind_variants.TVReturnType<{
1160
1273
  };
1161
1274
  }, undefined, "ring-offset-background hover:bg-muted focus-visible:ring-ring rounded-m inline-flex items-center justify-center gap-2 text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-indigo-100 data-[state=on]:text-indigo-600 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", unknown, unknown, undefined>>;
1162
1275
 
1163
- type ToggleGroupProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>;
1164
- type ToggleGroupItemProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>;
1276
+ type ToggleGroupProps = React.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>;
1277
+ type ToggleGroupItemProps = React.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>;
1165
1278
  declare const Toggle: {
1166
- Group: React$1.ForwardRefExoticComponent<ToggleGroupProps>;
1167
- Item: React$1.ForwardRefExoticComponent<ToggleGroupItemProps>;
1279
+ Group: React.ForwardRefExoticComponent<ToggleGroupProps>;
1280
+ Item: React.ForwardRefExoticComponent<ToggleGroupItemProps>;
1168
1281
  };
1169
1282
 
1170
1283
  type CollapsibleItemProps = React__default.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.Root>;
@@ -2103,11 +2216,11 @@ declare const Chips: React__default.ForwardRefExoticComponent<HTMLAttributes<HTM
2103
2216
  textClassName?: string;
2104
2217
  } & React__default.RefAttributes<HTMLDivElement>>;
2105
2218
 
2106
- declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
2219
+ declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
2107
2220
  type TooltipProps = {
2108
- title: string | React$1.ReactNode;
2221
+ title: string | React.ReactNode;
2109
2222
  maxWidth?: string;
2110
- children: React$1.ReactNode;
2223
+ children: React.ReactNode;
2111
2224
  };
2112
2225
  declare const Tooltip: (props: TooltipProps) => react_jsx_runtime.JSX.Element;
2113
2226
 
@@ -2462,6 +2575,12 @@ declare const radioCard: tailwind_variants.TVReturnType<{
2462
2575
  description: string;
2463
2576
  }, undefined, unknown, unknown, undefined>>;
2464
2577
  type RadioCardVariants = VariantProps<typeof radioCard>;
2578
+ type RadioCardProps = Omit<RadioItemProps, 'title'> & RadioCardVariants & {
2579
+ title: React__default.ReactNode;
2580
+ description?: React__default.ReactNode;
2581
+ icon?: React__default.ElementType;
2582
+ chipsProps?: Omit<ChipsProps, 'size'>;
2583
+ };
2465
2584
  declare const Radio: {
2466
2585
  Group: React__default.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
2467
2586
  Item: React__default.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
@@ -2545,10 +2664,10 @@ type DropdownProps = {
2545
2664
  className?: string;
2546
2665
  };
2547
2666
 
2548
- type SearchProps = React$1.InputHTMLAttributes<HTMLInputElement> & VariantProps<typeof inputVariants> & {
2667
+ type SearchProps = React.InputHTMLAttributes<HTMLInputElement> & VariantProps<typeof inputVariants> & {
2549
2668
  scope?: DropdownProps;
2550
2669
  };
2551
- declare const Search: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & VariantProps<tailwind_variants.TVReturnType<{
2670
+ declare const Search: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & VariantProps<tailwind_variants.TVReturnType<{
2552
2671
  disabled: {
2553
2672
  true: {
2554
2673
  wrapper: string;
@@ -2673,11 +2792,11 @@ declare const Search: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribu
2673
2792
  suffix: string;
2674
2793
  }, undefined, unknown, unknown, undefined>>> & {
2675
2794
  scope?: DropdownProps;
2676
- } & React$1.RefAttributes<HTMLInputElement>>;
2795
+ } & React.RefAttributes<HTMLInputElement>>;
2677
2796
 
2678
- declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
2679
- declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2680
- declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2797
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
2798
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
2799
+ declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
2681
2800
 
2682
2801
  declare const DropdownMenuTrigger: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
2683
2802
  declare const DropdownMenuGroup: React__default.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React__default.RefAttributes<HTMLDivElement>>;
@@ -2806,4 +2925,4 @@ declare const DropdownMenuShortcut: {
2806
2925
  displayName: string;
2807
2926
  };
2808
2927
 
2809
- export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Chips, type ChipsProps, type CircleProps, Collapsible, type CollapsibleContentProps, type CollapsibleItemProps, type CollapsibleTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type ExpandedProps, GoToCard, type GoToCardProps, Indicator, type IndicatorProps, Input, InputDescription, type InputDescriptionProps, type InputProps, Label, type LabelProps, Loading, type LoadingProps, Message, MessageContainer, type MessageProps, MessageType, Popover, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, type ProgressIndicatorProps, Radio, type RadioGroupProps, type RadioItemProps, Scope, type ScopeGroupProps, type ScopeItemProps, Search, type SearchProps, SelectCard, type SelectCardGroupProps, Sheet, type SheetProps, Skeleton, type SkeletonProps, Status, type StatusMenuProps, type StatusOption, type StatusSimpleProps, Switch, type SwitchProps, type TabItem, TabsLayout as Tabs, type TabsLayoutProps, Text, type TextProps, Textarea, type TextareaProps, TipCard, type TipCardProps, Toggle, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip, type TooltipProps, TooltipProvider };
2928
+ export { Alert, type AlertProps, Avatar, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Chips, type ChipsProps, type CircleProps, Collapsible, type CollapsibleContentProps, type CollapsibleItemProps, type CollapsibleTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type ExpandedProps, GoToCard, type GoToCardProps, Indicator, type IndicatorProps, Input, InputDescription, type InputDescriptionProps, type InputProps, Label, type LabelProps, Loading, type LoadingProps, Message, MessageContainer, type MessageProps, MessageType, Popover, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, type ProgressIndicatorProps, Radio, type RadioCardProps, type RadioGroupProps, type RadioItemProps, Scope, type ScopeGroupProps, type ScopeItemProps, Search, type SearchProps, SelectCard, type SelectCardGroupProps, Sheet, type SheetBodyProps, type SheetCloseProps, type SheetContentProps, type SheetHeaderProps, type SheetOverlayProps, type SheetPortalProps, type SheetPushConfig, type SheetRootProps, type SheetSide, type SheetTriggerProps, type SheetVariants, Skeleton, type SkeletonProps, Status, type StatusMenuProps, type StatusOption, type StatusSimpleProps, Switch, type SwitchProps, type TabItem, TabsLayout as Tabs, type TabsLayoutProps, Text, type TextProps, Textarea, type TextareaProps, TipCard, type TipCardProps, Toggle, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip, type TooltipProps, TooltipProvider };
package/dist/index.d.ts CHANGED
@@ -13,7 +13,7 @@ export type { ProgressBarProps } from './ui/progress-bar';
13
13
  export { default as Textarea } from './ui/textarea';
14
14
  export type { TextareaProps } from './ui/textarea';
15
15
  export { default as Sheet } from './ui/sheets';
16
- export type { SheetProps } from './ui/sheets';
16
+ export type { SheetBodyProps, SheetCloseProps, SheetContentProps, SheetHeaderProps, SheetOverlayProps, SheetPortalProps, SheetPushConfig, SheetRootProps, SheetSide, SheetTriggerProps, SheetVariants, } from './ui/sheets';
17
17
  export { default as Text } from './ui/text';
18
18
  export type { TextProps } from './ui/text';
19
19
  export { default as Switch } from './ui/switch';
@@ -52,7 +52,7 @@ export type { InputProps } from './ui/input';
52
52
  export { default as Checkbox } from './ui/checkbox';
53
53
  export type { CheckboxProps } from './ui/checkbox';
54
54
  export { default as Radio } from './ui/radio';
55
- export type { RadioGroupProps, RadioItemProps } from './ui/radio';
55
+ export type { RadioCardProps, RadioGroupProps, RadioItemProps, } from './ui/radio';
56
56
  export { default as Label } from './ui/label';
57
57
  export type { LabelProps } from './ui/label';
58
58
  export { default as InputDescription } from './ui/input-description';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}