@dito-uai/components 5.0.0-alpha16 → 5.0.0-alpha17
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.cjs +27 -30
- package/dist/index.d.cts +8 -13
- package/dist/index.d.ts +8 -13
- package/dist/index.js +26 -29
- package/package.json +3 -2
package/dist/index.cjs
CHANGED
|
@@ -7,7 +7,7 @@ var jsxRuntime = require('react/jsx-runtime');
|
|
|
7
7
|
var clsx = require('clsx');
|
|
8
8
|
var ToggleGroupPrimitive = require('@radix-ui/react-toggle-group');
|
|
9
9
|
var RadixProgress = require('@radix-ui/react-progress');
|
|
10
|
-
var
|
|
10
|
+
var CollapsiblePrimitive = require('@radix-ui/react-collapsible');
|
|
11
11
|
var icons = require('@dito-uai/icons');
|
|
12
12
|
var reactDropdownMenu = require('@radix-ui/react-dropdown-menu');
|
|
13
13
|
var reactCheckbox = require('@radix-ui/react-checkbox');
|
|
@@ -35,7 +35,7 @@ function _interopNamespace(e) {
|
|
|
35
35
|
var React4__namespace = /*#__PURE__*/_interopNamespace(React4);
|
|
36
36
|
var ToggleGroupPrimitive__namespace = /*#__PURE__*/_interopNamespace(ToggleGroupPrimitive);
|
|
37
37
|
var RadixProgress__namespace = /*#__PURE__*/_interopNamespace(RadixProgress);
|
|
38
|
-
var
|
|
38
|
+
var CollapsiblePrimitive__namespace = /*#__PURE__*/_interopNamespace(CollapsiblePrimitive);
|
|
39
39
|
var RadioGroupPrimitive__namespace = /*#__PURE__*/_interopNamespace(RadioGroupPrimitive);
|
|
40
40
|
|
|
41
41
|
// src/ui/avatar.tsx
|
|
@@ -846,33 +846,23 @@ Toggle.displayName = "Toggle";
|
|
|
846
846
|
var toggle_default = Toggle;
|
|
847
847
|
var collapse = ce({
|
|
848
848
|
slots: {
|
|
849
|
-
collapseWrapper: "gap-1 rounded-lg border p-1",
|
|
850
849
|
item: "mb-1 rounded-lg border-0 last:mb-0",
|
|
851
850
|
trigger: "[&[data-state=open]]:rounded-t-m [&[data-state=open]]:bg-secondary-indigo-100 [&[data-state=closed]]:rounded-m flex h-7 w-full items-center border-0 p-1 text-left transition-all hover:bg-neutral-100 [&[data-disabled]]:cursor-not-allowed [&[data-disabled]]:bg-neutral-200 [&[data-disabled]]:text-neutral-400 [&[data-state=open]>svg]:rotate-180 [&[data-state=open]]:hover:bg-neutral-100",
|
|
852
851
|
triggerIcon: "size-3 transition-transform duration-200",
|
|
853
852
|
content: "data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down rounded-b-m overflow-hidden border transition-all"
|
|
854
853
|
}
|
|
855
854
|
});
|
|
856
|
-
var {
|
|
857
|
-
var
|
|
858
|
-
|
|
859
|
-
{
|
|
860
|
-
ref,
|
|
861
|
-
className: collapseWrapper({ className }),
|
|
862
|
-
...props
|
|
863
|
-
}
|
|
864
|
-
));
|
|
865
|
-
var CollapseItem = React4__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
866
|
-
AccordionPrimitive__namespace.Item,
|
|
855
|
+
var { trigger, item, triggerIcon, content } = collapse();
|
|
856
|
+
var CollapsibleRoot = React4__namespace.default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
857
|
+
CollapsiblePrimitive__namespace.Root,
|
|
867
858
|
{
|
|
868
859
|
ref,
|
|
869
860
|
className: item({ className }),
|
|
870
861
|
...props
|
|
871
862
|
}
|
|
872
863
|
));
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
AccordionPrimitive__namespace.Trigger,
|
|
864
|
+
var CollapsibleTrigger2 = React4__namespace.default.forwardRef(({ className, triggerClassName, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
865
|
+
CollapsiblePrimitive__namespace.CollapsibleTrigger,
|
|
876
866
|
{
|
|
877
867
|
ref,
|
|
878
868
|
className: trigger({ className: triggerClassName }),
|
|
@@ -882,15 +872,22 @@ var CollapseTrigger = React4__namespace.forwardRef(({ className, children, trigg
|
|
|
882
872
|
/* @__PURE__ */ jsxRuntime.jsx(icons.IconOutlineChevronDown, { className: triggerIcon() })
|
|
883
873
|
]
|
|
884
874
|
}
|
|
885
|
-
)
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
875
|
+
));
|
|
876
|
+
var CollapsibleContent2 = React4__namespace.default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
877
|
+
CollapsiblePrimitive__namespace.CollapsibleContent,
|
|
878
|
+
{
|
|
879
|
+
ref,
|
|
880
|
+
className: content(),
|
|
881
|
+
...props,
|
|
882
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("px-1 py-2", className), children })
|
|
883
|
+
}
|
|
884
|
+
));
|
|
885
|
+
var Collapsible = {
|
|
886
|
+
Item: CollapsibleRoot,
|
|
887
|
+
Trigger: CollapsibleTrigger2,
|
|
888
|
+
Content: CollapsibleContent2
|
|
889
|
+
};
|
|
890
|
+
var collapsible_default = Collapsible;
|
|
894
891
|
var indicatorVariants = ce({
|
|
895
892
|
base: "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2",
|
|
896
893
|
variants: {
|
|
@@ -1365,7 +1362,7 @@ var Group2 = React4__namespace.default.forwardRef(({ className, disabled, ...pro
|
|
|
1365
1362
|
);
|
|
1366
1363
|
});
|
|
1367
1364
|
Group2.displayName = RadioGroupPrimitive__namespace.Root.displayName;
|
|
1368
|
-
var
|
|
1365
|
+
var Item5 = React4__namespace.default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1369
1366
|
RadioGroupPrimitive__namespace.Item,
|
|
1370
1367
|
{
|
|
1371
1368
|
ref,
|
|
@@ -1377,10 +1374,10 @@ var Item6 = React4__namespace.default.forwardRef(({ className, ...props }, ref)
|
|
|
1377
1374
|
children: /* @__PURE__ */ jsxRuntime.jsx(RadioGroupPrimitive__namespace.Indicator, { className: "text-primary flex items-center justify-center group-disabled:text-neutral-300", children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Circle, { className: "fill-primary size-[12px] group-disabled:fill-neutral-300" }) })
|
|
1378
1375
|
}
|
|
1379
1376
|
));
|
|
1380
|
-
|
|
1377
|
+
Item5.displayName = RadioGroupPrimitive__namespace.Item.displayName;
|
|
1381
1378
|
var Radio = {
|
|
1382
1379
|
Group: Group2,
|
|
1383
|
-
Item:
|
|
1380
|
+
Item: Item5
|
|
1384
1381
|
};
|
|
1385
1382
|
var radio_default = Radio;
|
|
1386
1383
|
var searchVariants = ce({
|
|
@@ -1498,7 +1495,7 @@ exports.Button = button_default;
|
|
|
1498
1495
|
exports.Card = card_default;
|
|
1499
1496
|
exports.Checkbox = checkbox_default;
|
|
1500
1497
|
exports.Chips = chips_default;
|
|
1501
|
-
exports.
|
|
1498
|
+
exports.Collapsible = collapsible_default;
|
|
1502
1499
|
exports.FormItem = form_item_default;
|
|
1503
1500
|
exports.Indicator = indicator_default;
|
|
1504
1501
|
exports.Input = input_default;
|
package/dist/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import React__default, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
7
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
8
8
|
import { VariantProps as VariantProps$1 } from 'class-variance-authority';
|
|
9
|
-
import * as
|
|
9
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
10
10
|
import * as _radix_ui_react_checkbox from '@radix-ui/react-checkbox';
|
|
11
11
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
12
12
|
|
|
@@ -1097,18 +1097,13 @@ declare const Toggle: React.ForwardRefExoticComponent<HTMLAttributes<HTMLInputEl
|
|
|
1097
1097
|
children?: React.ReactNode | undefined;
|
|
1098
1098
|
} & React.RefAttributes<HTMLInputElement>>;
|
|
1099
1099
|
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
} &
|
|
1105
|
-
|
|
1106
|
-
type CollapseType = React.ForwardRefExoticComponent<CollapseProps> & {
|
|
1107
|
-
Item: typeof CollapseItem;
|
|
1108
|
-
Trigger: typeof CollapseTrigger;
|
|
1109
|
-
Content: typeof CollapseContent;
|
|
1100
|
+
declare const Collapsible: {
|
|
1101
|
+
Item: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1102
|
+
Trigger: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1103
|
+
triggerClassName?: string;
|
|
1104
|
+
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1105
|
+
Content: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1110
1106
|
};
|
|
1111
|
-
declare const CollapseWithStatics: CollapseType;
|
|
1112
1107
|
|
|
1113
1108
|
declare const Indicator: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
1114
1109
|
status: {
|
|
@@ -2017,4 +2012,4 @@ declare const Search: React.ForwardRefExoticComponent<React.InputHTMLAttributes<
|
|
|
2017
2012
|
scope?: DropdownProps;
|
|
2018
2013
|
} & React.RefAttributes<HTMLInputElement>>;
|
|
2019
2014
|
|
|
2020
|
-
export { Avatar, Badge, Button, Card, Checkbox, Chips,
|
|
2015
|
+
export { Avatar, Badge, Button, Card, Checkbox, Chips, Collapsible, FormItem, Indicator, Input, InputDescription, Label, Progress, ProgressBar, Radio, Scope, Search, Sheet, Status, Text, Textarea, Toggle };
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import React__default, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
7
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
8
8
|
import { VariantProps as VariantProps$1 } from 'class-variance-authority';
|
|
9
|
-
import * as
|
|
9
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
10
10
|
import * as _radix_ui_react_checkbox from '@radix-ui/react-checkbox';
|
|
11
11
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
12
12
|
|
|
@@ -1097,18 +1097,13 @@ declare const Toggle: React.ForwardRefExoticComponent<HTMLAttributes<HTMLInputEl
|
|
|
1097
1097
|
children?: React.ReactNode | undefined;
|
|
1098
1098
|
} & React.RefAttributes<HTMLInputElement>>;
|
|
1099
1099
|
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
} &
|
|
1105
|
-
|
|
1106
|
-
type CollapseType = React.ForwardRefExoticComponent<CollapseProps> & {
|
|
1107
|
-
Item: typeof CollapseItem;
|
|
1108
|
-
Trigger: typeof CollapseTrigger;
|
|
1109
|
-
Content: typeof CollapseContent;
|
|
1100
|
+
declare const Collapsible: {
|
|
1101
|
+
Item: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1102
|
+
Trigger: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React__default.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1103
|
+
triggerClassName?: string;
|
|
1104
|
+
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1105
|
+
Content: React__default.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React__default.RefAttributes<HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1110
1106
|
};
|
|
1111
|
-
declare const CollapseWithStatics: CollapseType;
|
|
1112
1107
|
|
|
1113
1108
|
declare const Indicator: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & VariantProps<tailwind_variants.TVReturnType<{
|
|
1114
1109
|
status: {
|
|
@@ -2017,4 +2012,4 @@ declare const Search: React.ForwardRefExoticComponent<React.InputHTMLAttributes<
|
|
|
2017
2012
|
scope?: DropdownProps;
|
|
2018
2013
|
} & React.RefAttributes<HTMLInputElement>>;
|
|
2019
2014
|
|
|
2020
|
-
export { Avatar, Badge, Button, Card, Checkbox, Chips,
|
|
2015
|
+
export { Avatar, Badge, Button, Card, Checkbox, Chips, Collapsible, FormItem, Indicator, Input, InputDescription, Label, Progress, ProgressBar, Radio, Scope, Search, Sheet, Status, Text, Textarea, Toggle };
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { clsx } from 'clsx';
|
|
|
7
7
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
8
8
|
import * as RadixProgress from '@radix-ui/react-progress';
|
|
9
9
|
import { Root as Root$2, Indicator } from '@radix-ui/react-progress';
|
|
10
|
-
import * as
|
|
10
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
11
11
|
import { IconOutlineChevronDown, IconOutlineClose, IconOutlineLine, IconOutlineCheck, IconOutlineSearch, IconOutlineArrowUp, IconOutlineArrowDown, IconOutlineMinus } from '@dito-uai/icons';
|
|
12
12
|
import { Root, Trigger, Portal, Content, Item } from '@radix-ui/react-dropdown-menu';
|
|
13
13
|
import { Root as Root$1 } from '@radix-ui/react-checkbox';
|
|
@@ -822,33 +822,23 @@ Toggle.displayName = "Toggle";
|
|
|
822
822
|
var toggle_default = Toggle;
|
|
823
823
|
var collapse = ce({
|
|
824
824
|
slots: {
|
|
825
|
-
collapseWrapper: "gap-1 rounded-lg border p-1",
|
|
826
825
|
item: "mb-1 rounded-lg border-0 last:mb-0",
|
|
827
826
|
trigger: "[&[data-state=open]]:rounded-t-m [&[data-state=open]]:bg-secondary-indigo-100 [&[data-state=closed]]:rounded-m flex h-7 w-full items-center border-0 p-1 text-left transition-all hover:bg-neutral-100 [&[data-disabled]]:cursor-not-allowed [&[data-disabled]]:bg-neutral-200 [&[data-disabled]]:text-neutral-400 [&[data-state=open]>svg]:rotate-180 [&[data-state=open]]:hover:bg-neutral-100",
|
|
828
827
|
triggerIcon: "size-3 transition-transform duration-200",
|
|
829
828
|
content: "data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down rounded-b-m overflow-hidden border transition-all"
|
|
830
829
|
}
|
|
831
830
|
});
|
|
832
|
-
var {
|
|
833
|
-
var
|
|
834
|
-
|
|
835
|
-
{
|
|
836
|
-
ref,
|
|
837
|
-
className: collapseWrapper({ className }),
|
|
838
|
-
...props
|
|
839
|
-
}
|
|
840
|
-
));
|
|
841
|
-
var CollapseItem = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
842
|
-
AccordionPrimitive.Item,
|
|
831
|
+
var { trigger, item, triggerIcon, content } = collapse();
|
|
832
|
+
var CollapsibleRoot = React4__default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
833
|
+
CollapsiblePrimitive.Root,
|
|
843
834
|
{
|
|
844
835
|
ref,
|
|
845
836
|
className: item({ className }),
|
|
846
837
|
...props
|
|
847
838
|
}
|
|
848
839
|
));
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
AccordionPrimitive.Trigger,
|
|
840
|
+
var CollapsibleTrigger2 = React4__default.forwardRef(({ className, triggerClassName, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
841
|
+
CollapsiblePrimitive.CollapsibleTrigger,
|
|
852
842
|
{
|
|
853
843
|
ref,
|
|
854
844
|
className: trigger({ className: triggerClassName }),
|
|
@@ -858,15 +848,22 @@ var CollapseTrigger = React4.forwardRef(({ className, children, triggerClassName
|
|
|
858
848
|
/* @__PURE__ */ jsx(IconOutlineChevronDown, { className: triggerIcon() })
|
|
859
849
|
]
|
|
860
850
|
}
|
|
861
|
-
)
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
851
|
+
));
|
|
852
|
+
var CollapsibleContent2 = React4__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
853
|
+
CollapsiblePrimitive.CollapsibleContent,
|
|
854
|
+
{
|
|
855
|
+
ref,
|
|
856
|
+
className: content(),
|
|
857
|
+
...props,
|
|
858
|
+
children: /* @__PURE__ */ jsx("div", { className: cn("px-1 py-2", className), children })
|
|
859
|
+
}
|
|
860
|
+
));
|
|
861
|
+
var Collapsible = {
|
|
862
|
+
Item: CollapsibleRoot,
|
|
863
|
+
Trigger: CollapsibleTrigger2,
|
|
864
|
+
Content: CollapsibleContent2
|
|
865
|
+
};
|
|
866
|
+
var collapsible_default = Collapsible;
|
|
870
867
|
var indicatorVariants = ce({
|
|
871
868
|
base: "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2",
|
|
872
869
|
variants: {
|
|
@@ -1341,7 +1338,7 @@ var Group2 = React4__default.forwardRef(({ className, disabled, ...props }, ref)
|
|
|
1341
1338
|
);
|
|
1342
1339
|
});
|
|
1343
1340
|
Group2.displayName = RadioGroupPrimitive.Root.displayName;
|
|
1344
|
-
var
|
|
1341
|
+
var Item5 = React4__default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
1345
1342
|
RadioGroupPrimitive.Item,
|
|
1346
1343
|
{
|
|
1347
1344
|
ref,
|
|
@@ -1353,10 +1350,10 @@ var Item6 = React4__default.forwardRef(({ className, ...props }, ref) => /* @__P
|
|
|
1353
1350
|
children: /* @__PURE__ */ jsx(RadioGroupPrimitive.Indicator, { className: "text-primary flex items-center justify-center group-disabled:text-neutral-300", children: /* @__PURE__ */ jsx(Circle$1, { className: "fill-primary size-[12px] group-disabled:fill-neutral-300" }) })
|
|
1354
1351
|
}
|
|
1355
1352
|
));
|
|
1356
|
-
|
|
1353
|
+
Item5.displayName = RadioGroupPrimitive.Item.displayName;
|
|
1357
1354
|
var Radio = {
|
|
1358
1355
|
Group: Group2,
|
|
1359
|
-
Item:
|
|
1356
|
+
Item: Item5
|
|
1360
1357
|
};
|
|
1361
1358
|
var radio_default = Radio;
|
|
1362
1359
|
var searchVariants = ce({
|
|
@@ -1468,4 +1465,4 @@ var ScopeSelect = ({
|
|
|
1468
1465
|
Search.displayName = "Search";
|
|
1469
1466
|
var search_default = Search;
|
|
1470
1467
|
|
|
1471
|
-
export { avatar_default as Avatar, badge_default as Badge, button_default as Button, card_default as Card, checkbox_default as Checkbox, chips_default as Chips,
|
|
1468
|
+
export { avatar_default as Avatar, badge_default as Badge, button_default as Button, card_default as Card, checkbox_default as Checkbox, chips_default as Chips, collapsible_default as Collapsible, form_item_default as FormItem, indicator_default as Indicator, input_default as Input, input_description_default as InputDescription, label_default as Label, progress_default as Progress, progress_bar_default as ProgressBar, radio_default as Radio, scope_default as Scope, search_default as Search, sheets_default as Sheet, status_default as Status, text_default as Text, textarea_default as Textarea, toggle_default as Toggle };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dito-uai/components",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-alpha17",
|
|
4
4
|
"descriptin": "Dito's design system component library, made in TSX",
|
|
5
5
|
"repository": "git+https://github.com/ditointernet/dito-uai.git",
|
|
6
6
|
"publishConfig": {
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"@radix-ui/react-accordion": "^1.2.0",
|
|
59
59
|
"@radix-ui/react-avatar": "^1.0.4",
|
|
60
60
|
"@radix-ui/react-checkbox": "^1.0.4",
|
|
61
|
+
"@radix-ui/react-collapsible": "^1.1.1",
|
|
61
62
|
"@radix-ui/react-dialog": "^1.0.5",
|
|
62
63
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
63
64
|
"@radix-ui/react-progress": "^1.1.0",
|
|
@@ -88,4 +89,4 @@
|
|
|
88
89
|
"react-hook-form": "^7.52.1",
|
|
89
90
|
"zod": "^3.23.8"
|
|
90
91
|
}
|
|
91
|
-
}
|
|
92
|
+
}
|