@snksergio/design-system 0.48.0 → 0.50.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/README.md +1 -1
- package/dist-lib/chunks/{panel-57Pt_bL9.cjs → panel-Bly-rNP9.cjs} +2 -2
- package/dist-lib/chunks/{panel-57Pt_bL9.cjs.map → panel-Bly-rNP9.cjs.map} +1 -1
- package/dist-lib/chunks/{panel-DlZeQw7G.mjs → panel-DA6K3a3n.mjs} +2 -2
- package/dist-lib/chunks/{panel-DlZeQw7G.mjs.map → panel-DA6K3a3n.mjs.map} +1 -1
- package/dist-lib/chunks/{sheet-7v5vamnP.mjs → sheet-DIpYkRYS.mjs} +32 -32
- package/dist-lib/chunks/{sheet-7v5vamnP.mjs.map → sheet-DIpYkRYS.mjs.map} +1 -1
- package/dist-lib/chunks/{sheet-BZlQ0gKA.cjs → sheet-rg6uupt1.cjs} +33 -33
- package/dist-lib/chunks/{sheet-BZlQ0gKA.cjs.map → sheet-rg6uupt1.cjs.map} +1 -1
- package/dist-lib/chunks/{toggle-group-DYGba7RP.cjs → toggle-group-C9rrkkmh.cjs} +159 -52
- package/dist-lib/chunks/toggle-group-C9rrkkmh.cjs.map +1 -0
- package/dist-lib/chunks/{toggle-group-CnAN6ZnT.mjs → toggle-group-mXbG8_Jm.mjs} +237 -130
- package/dist-lib/chunks/toggle-group-mXbG8_Jm.mjs.map +1 -0
- package/dist-lib/index.cjs +303 -45
- package/dist-lib/index.cjs.map +1 -1
- package/dist-lib/index.mjs +308 -50
- package/dist-lib/index.mjs.map +1 -1
- package/dist-lib/preview/clientes.cjs +2 -2
- package/dist-lib/preview/clientes.mjs +2 -2
- package/dist-lib/shadcn.cjs +3 -2
- package/dist-lib/shadcn.cjs.map +1 -1
- package/dist-lib/shadcn.mjs +82 -81
- package/dist-lib/src/components/index.d.ts +1 -0
- package/dist-lib/src/components/index.d.ts.map +1 -1
- package/dist-lib/src/components/shadcn/carousel.d.ts +28 -1
- package/dist-lib/src/components/shadcn/carousel.d.ts.map +1 -1
- package/dist-lib/src/components/ui/CardCheckbox/card-checkbox.d.ts +30 -31
- package/dist-lib/src/components/ui/CardCheckbox/card-checkbox.d.ts.map +1 -1
- package/dist-lib/src/components/ui/CardCheckbox/card-checkbox.styles.d.ts +5 -0
- package/dist-lib/src/components/ui/CardCheckbox/card-checkbox.styles.d.ts.map +1 -1
- package/dist-lib/src/components/ui/CardOption/card-option.d.ts +27 -0
- package/dist-lib/src/components/ui/CardOption/card-option.d.ts.map +1 -0
- package/dist-lib/src/components/ui/CardOption/card-option.styles.d.ts +381 -0
- package/dist-lib/src/components/ui/CardOption/card-option.styles.d.ts.map +1 -0
- package/dist-lib/src/components/ui/CardOption/card-option.types.d.ts +76 -0
- package/dist-lib/src/components/ui/CardOption/card-option.types.d.ts.map +1 -0
- package/dist-lib/src/components/ui/CardOption/index.d.ts +4 -0
- package/dist-lib/src/components/ui/CardOption/index.d.ts.map +1 -0
- package/dist-lib/src/components/ui/ColorPicker/color-picker.styles.d.ts +18 -0
- package/dist-lib/src/components/ui/ColorPicker/color-picker.styles.d.ts.map +1 -1
- package/dist-lib/src/components/ui/ColorPicker/color-picker.types.d.ts +4 -1
- package/dist-lib/src/components/ui/ColorPicker/color-picker.types.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist-lib/chunks/toggle-group-CnAN6ZnT.mjs.map +0 -1
- package/dist-lib/chunks/toggle-group-DYGba7RP.cjs.map +0 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
4
4
|
import { c as cn, a8 as tv, a7 as Button } from "./avatar-FPbG1TRy.mjs";
|
|
5
|
+
import * as SeparatorPrimitive from "@radix-ui/react-separator";
|
|
5
6
|
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
6
7
|
import { ChevronDown, MoreHorizontal, ChevronRight, ArrowLeft, ArrowRight, Check, Circle, Dot } from "lucide-react";
|
|
7
8
|
import { cva } from "class-variance-authority";
|
|
@@ -15,12 +16,45 @@ import * as LabelPrimitive from "@radix-ui/react-label";
|
|
|
15
16
|
import * as MenubarPrimitive from "@radix-ui/react-menubar";
|
|
16
17
|
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
|
|
17
18
|
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
18
|
-
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
19
19
|
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
|
|
20
20
|
import * as SliderPrimitive from "@radix-ui/react-slider";
|
|
21
21
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
22
22
|
import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
|
|
23
23
|
import * as TogglePrimitive from "@radix-ui/react-toggle";
|
|
24
|
+
const RadioGroup = React.forwardRef(({ className, ...props }, ref) => {
|
|
25
|
+
return /* @__PURE__ */ jsx(
|
|
26
|
+
RadioGroupPrimitive.Root,
|
|
27
|
+
{
|
|
28
|
+
className: cn("grid w-full gap-gp-xl", className),
|
|
29
|
+
...props,
|
|
30
|
+
ref
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
});
|
|
34
|
+
RadioGroup.displayName = RadioGroupPrimitive.Root.displayName;
|
|
35
|
+
const RadioGroupItem = React.forwardRef(({ className, ...props }, ref) => {
|
|
36
|
+
return /* @__PURE__ */ jsx(
|
|
37
|
+
RadioGroupPrimitive.Item,
|
|
38
|
+
{
|
|
39
|
+
ref,
|
|
40
|
+
className: cn(
|
|
41
|
+
"peer relative flex aspect-square size-4 shrink-0 cursor-pointer",
|
|
42
|
+
"rounded-radius-full",
|
|
43
|
+
"bg-bg-input dark:bg-bg-muted",
|
|
44
|
+
"border-[1.5px] border-border-input",
|
|
45
|
+
"transition-[background-color,border-color,box-shadow] outline-none",
|
|
46
|
+
"hover:border-border-default",
|
|
47
|
+
"focus-visible:shadow-sh-ring",
|
|
48
|
+
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
49
|
+
"data-[state=checked]:bg-bg-brand data-[state=checked]:border-border-brand",
|
|
50
|
+
className
|
|
51
|
+
),
|
|
52
|
+
...props,
|
|
53
|
+
children: /* @__PURE__ */ jsx(RadioGroupPrimitive.Indicator, { className: "flex size-full items-center justify-center", children: /* @__PURE__ */ jsx("span", { className: "size-[6px] rounded-radius-full bg-fg-on-brand" }) })
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
});
|
|
57
|
+
RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
24
58
|
const Separator = React.forwardRef(
|
|
25
59
|
({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
26
60
|
SeparatorPrimitive.Root,
|
|
@@ -433,12 +467,21 @@ const Carousel = React.forwardRef(
|
|
|
433
467
|
);
|
|
434
468
|
const [canScrollPrev, setCanScrollPrev] = React.useState(false);
|
|
435
469
|
const [canScrollNext, setCanScrollNext] = React.useState(false);
|
|
470
|
+
const [selectedIndex, setSelectedIndex] = React.useState(0);
|
|
471
|
+
const [scrollSnaps, setScrollSnaps] = React.useState([]);
|
|
436
472
|
const onSelect = React.useCallback((api2) => {
|
|
437
473
|
if (!api2) {
|
|
438
474
|
return;
|
|
439
475
|
}
|
|
440
476
|
setCanScrollPrev(api2.canScrollPrev());
|
|
441
477
|
setCanScrollNext(api2.canScrollNext());
|
|
478
|
+
setSelectedIndex(api2.selectedScrollSnap());
|
|
479
|
+
}, []);
|
|
480
|
+
const onInit = React.useCallback((api2) => {
|
|
481
|
+
if (!api2) {
|
|
482
|
+
return;
|
|
483
|
+
}
|
|
484
|
+
setScrollSnaps(api2.scrollSnapList());
|
|
442
485
|
}, []);
|
|
443
486
|
const scrollPrev = React.useCallback(() => {
|
|
444
487
|
api?.scrollPrev();
|
|
@@ -446,6 +489,12 @@ const Carousel = React.forwardRef(
|
|
|
446
489
|
const scrollNext = React.useCallback(() => {
|
|
447
490
|
api?.scrollNext();
|
|
448
491
|
}, [api]);
|
|
492
|
+
const scrollTo = React.useCallback(
|
|
493
|
+
(index) => {
|
|
494
|
+
api?.scrollTo(index);
|
|
495
|
+
},
|
|
496
|
+
[api]
|
|
497
|
+
);
|
|
449
498
|
const handleKeyDown = React.useCallback(
|
|
450
499
|
(event) => {
|
|
451
500
|
if (event.key === "ArrowLeft") {
|
|
@@ -468,13 +517,17 @@ const Carousel = React.forwardRef(
|
|
|
468
517
|
if (!api) {
|
|
469
518
|
return;
|
|
470
519
|
}
|
|
520
|
+
onInit(api);
|
|
471
521
|
onSelect(api);
|
|
522
|
+
api.on("reInit", onInit);
|
|
472
523
|
api.on("reInit", onSelect);
|
|
473
524
|
api.on("select", onSelect);
|
|
474
525
|
return () => {
|
|
526
|
+
api?.off("reInit", onInit);
|
|
527
|
+
api?.off("reInit", onSelect);
|
|
475
528
|
api?.off("select", onSelect);
|
|
476
529
|
};
|
|
477
|
-
}, [api, onSelect]);
|
|
530
|
+
}, [api, onInit, onSelect]);
|
|
478
531
|
return /* @__PURE__ */ jsx(
|
|
479
532
|
CarouselContext.Provider,
|
|
480
533
|
{
|
|
@@ -486,7 +539,10 @@ const Carousel = React.forwardRef(
|
|
|
486
539
|
scrollPrev,
|
|
487
540
|
scrollNext,
|
|
488
541
|
canScrollPrev,
|
|
489
|
-
canScrollNext
|
|
542
|
+
canScrollNext,
|
|
543
|
+
selectedIndex,
|
|
544
|
+
scrollSnaps,
|
|
545
|
+
scrollTo
|
|
490
546
|
},
|
|
491
547
|
children: /* @__PURE__ */ jsx(
|
|
492
548
|
"div",
|
|
@@ -507,18 +563,53 @@ const Carousel = React.forwardRef(
|
|
|
507
563
|
Carousel.displayName = "Carousel";
|
|
508
564
|
const CarouselContent = React.forwardRef(({ className, ...props }, ref) => {
|
|
509
565
|
const { carouselRef, orientation } = useCarousel();
|
|
510
|
-
return
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
566
|
+
return (
|
|
567
|
+
/**
|
|
568
|
+
* A folga de 4px existe pra borda do slide não ser comida pelo corte.
|
|
569
|
+
*
|
|
570
|
+
* O Embla posiciona o trilho com `translate` em pixel FRACIONÁRIO, e no padrão de
|
|
571
|
+
* gutter do shadcn (`-ml-4` no trilho + `pl-4` no item) a borda esquerda do conteúdo
|
|
572
|
+
* cai **exatamente** sobre o limite do `overflow-hidden`. Medido em 2026-08-24, no
|
|
573
|
+
* slide 3: limite do clip em 651.5px e a borda do card em 649.99px — 1.5px inteiros
|
|
574
|
+
* do lado de fora, então a borda de 1px desaparecia. E variava entre medições, porque
|
|
575
|
+
* depende de onde o Embla para no sub-pixel: às vezes 2px dentro, às vezes fora. Só o
|
|
576
|
+
* primeiro slide era imune (translate 0, sem fração) — o relato foi exatamente "do
|
|
577
|
+
* card 2 pra frente".
|
|
578
|
+
*
|
|
579
|
+
* `overflow` corta no limite do PADDING box, então o padding dá a folga; a margem
|
|
580
|
+
* negativa devolve a posição, pra geometria externa não mudar. Não revela o slide
|
|
581
|
+
* vizinho: o que aparece nessa faixa é o gutter transparente de 16px do item.
|
|
582
|
+
*
|
|
583
|
+
* **4px e não 2px** porque o gutter do shadcn é só do lado ESQUERDO (`-ml`/`pl`): a
|
|
584
|
+
* direita do último card visível encosta no limite por construção. Com 2px, o caso de
|
|
585
|
+
* `slidesToScroll: 2` media −0.06px de folga na direita na última parada — o mesmo
|
|
586
|
+
* defeito, menor. Com 4px as duas bordas ficam positivas em todas as paradas.
|
|
587
|
+
*/
|
|
588
|
+
/* @__PURE__ */ jsx(
|
|
589
|
+
"div",
|
|
590
|
+
{
|
|
591
|
+
ref: carouselRef,
|
|
592
|
+
className: cn(
|
|
593
|
+
"overflow-hidden",
|
|
594
|
+
// A folga vai no EIXO que rola: no vertical o gutter é `-mt`/`pt` e quem encosta
|
|
595
|
+
// no corte é a borda de cima. Padding no eixo errado não conserta nada.
|
|
596
|
+
orientation === "horizontal" ? "px-sp-xs -mx-sp-xs" : "py-sp-xs -my-sp-xs"
|
|
597
|
+
),
|
|
598
|
+
children: /* @__PURE__ */ jsx(
|
|
599
|
+
"div",
|
|
600
|
+
{
|
|
601
|
+
ref,
|
|
602
|
+
className: cn(
|
|
603
|
+
"flex",
|
|
604
|
+
orientation === "horizontal" ? "-ml-4" : "-mt-4 flex-col",
|
|
605
|
+
className
|
|
606
|
+
),
|
|
607
|
+
...props
|
|
608
|
+
}
|
|
609
|
+
)
|
|
610
|
+
}
|
|
611
|
+
)
|
|
612
|
+
);
|
|
522
613
|
});
|
|
523
614
|
CarouselContent.displayName = "CarouselContent";
|
|
524
615
|
const CarouselItem = React.forwardRef(({ className, ...props }, ref) => {
|
|
@@ -589,6 +680,55 @@ const CarouselNext = React.forwardRef(({ className, ...props }, ref) => {
|
|
|
589
680
|
);
|
|
590
681
|
});
|
|
591
682
|
CarouselNext.displayName = "CarouselNext";
|
|
683
|
+
const CarouselDots = React.forwardRef(({ className, ...props }, ref) => {
|
|
684
|
+
const { scrollSnaps, selectedIndex, scrollTo, orientation } = useCarousel();
|
|
685
|
+
if (scrollSnaps.length <= 1) {
|
|
686
|
+
return null;
|
|
687
|
+
}
|
|
688
|
+
return /* @__PURE__ */ jsx(
|
|
689
|
+
"div",
|
|
690
|
+
{
|
|
691
|
+
ref,
|
|
692
|
+
role: "group",
|
|
693
|
+
"aria-label": "Posição no carrossel",
|
|
694
|
+
className: cn(
|
|
695
|
+
"flex items-center justify-center gap-gp-2xs",
|
|
696
|
+
orientation === "vertical" && "flex-col",
|
|
697
|
+
className
|
|
698
|
+
),
|
|
699
|
+
...props,
|
|
700
|
+
children: scrollSnaps.map((_, i) => {
|
|
701
|
+
const atual = i === selectedIndex;
|
|
702
|
+
return /* @__PURE__ */ jsx(
|
|
703
|
+
"button",
|
|
704
|
+
{
|
|
705
|
+
type: "button",
|
|
706
|
+
onClick: () => scrollTo(i),
|
|
707
|
+
"aria-label": `Ir para ${i + 1} de ${scrollSnaps.length}`,
|
|
708
|
+
"aria-current": atual ? "true" : void 0,
|
|
709
|
+
className: cn(
|
|
710
|
+
"grid size-comp-3xs shrink-0 cursor-pointer place-items-center",
|
|
711
|
+
"rounded-radius-full",
|
|
712
|
+
// Padrão 1 — focus estático
|
|
713
|
+
"focus-visible:outline-none focus-visible:ring-4 focus-visible:ring-ring-brand"
|
|
714
|
+
),
|
|
715
|
+
children: /* @__PURE__ */ jsx(
|
|
716
|
+
"span",
|
|
717
|
+
{
|
|
718
|
+
className: cn(
|
|
719
|
+
"size-[8px] rounded-radius-full transition-colors",
|
|
720
|
+
atual ? "bg-bg-brand" : "bg-bg-emphasis hover:bg-bg-accent"
|
|
721
|
+
)
|
|
722
|
+
}
|
|
723
|
+
)
|
|
724
|
+
},
|
|
725
|
+
i
|
|
726
|
+
);
|
|
727
|
+
})
|
|
728
|
+
}
|
|
729
|
+
);
|
|
730
|
+
});
|
|
731
|
+
CarouselDots.displayName = "CarouselDots";
|
|
592
732
|
const ContextMenu = ContextMenuPrimitive.Root;
|
|
593
733
|
const ContextMenuTrigger = ContextMenuPrimitive.Trigger;
|
|
594
734
|
const ContextMenuGroup = ContextMenuPrimitive.Group;
|
|
@@ -1274,40 +1414,6 @@ const Progress = React.forwardRef(({ className, value, ...props }, ref) => /* @_
|
|
|
1274
1414
|
}
|
|
1275
1415
|
));
|
|
1276
1416
|
Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
1277
|
-
const RadioGroup = React.forwardRef(({ className, ...props }, ref) => {
|
|
1278
|
-
return /* @__PURE__ */ jsx(
|
|
1279
|
-
RadioGroupPrimitive.Root,
|
|
1280
|
-
{
|
|
1281
|
-
className: cn("grid w-full gap-gp-xl", className),
|
|
1282
|
-
...props,
|
|
1283
|
-
ref
|
|
1284
|
-
}
|
|
1285
|
-
);
|
|
1286
|
-
});
|
|
1287
|
-
RadioGroup.displayName = RadioGroupPrimitive.Root.displayName;
|
|
1288
|
-
const RadioGroupItem = React.forwardRef(({ className, ...props }, ref) => {
|
|
1289
|
-
return /* @__PURE__ */ jsx(
|
|
1290
|
-
RadioGroupPrimitive.Item,
|
|
1291
|
-
{
|
|
1292
|
-
ref,
|
|
1293
|
-
className: cn(
|
|
1294
|
-
"peer relative flex aspect-square size-4 shrink-0 cursor-pointer",
|
|
1295
|
-
"rounded-radius-full",
|
|
1296
|
-
"bg-bg-input dark:bg-bg-muted",
|
|
1297
|
-
"border-[1.5px] border-border-input",
|
|
1298
|
-
"transition-[background-color,border-color,box-shadow] outline-none",
|
|
1299
|
-
"hover:border-border-default",
|
|
1300
|
-
"focus-visible:shadow-sh-ring",
|
|
1301
|
-
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
1302
|
-
"data-[state=checked]:bg-bg-brand data-[state=checked]:border-border-brand",
|
|
1303
|
-
className
|
|
1304
|
-
),
|
|
1305
|
-
...props,
|
|
1306
|
-
children: /* @__PURE__ */ jsx(RadioGroupPrimitive.Indicator, { className: "flex size-full items-center justify-center", children: /* @__PURE__ */ jsx("span", { className: "size-[6px] rounded-radius-full bg-fg-on-brand" }) })
|
|
1307
|
-
}
|
|
1308
|
-
);
|
|
1309
|
-
});
|
|
1310
|
-
RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
|
|
1311
1417
|
const ScrollArea = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
1312
1418
|
ScrollAreaPrimitive.Root,
|
|
1313
1419
|
{
|
|
@@ -1517,83 +1623,84 @@ const ToggleGroupItem = React.forwardRef(({ className, children, variant, size,
|
|
|
1517
1623
|
});
|
|
1518
1624
|
ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
1519
1625
|
export {
|
|
1520
|
-
|
|
1626
|
+
HoverCardContent as $,
|
|
1521
1627
|
Accordion as A,
|
|
1522
1628
|
Badge as B,
|
|
1523
1629
|
Card as C,
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1630
|
+
ContextMenuContent as D,
|
|
1631
|
+
ContextMenuGroup as E,
|
|
1632
|
+
ContextMenuItem as F,
|
|
1633
|
+
ContextMenuLabel as G,
|
|
1634
|
+
ContextMenuPortal as H,
|
|
1635
|
+
ContextMenuRadioGroup as I,
|
|
1636
|
+
ContextMenuRadioItem as J,
|
|
1637
|
+
ContextMenuSeparator as K,
|
|
1638
|
+
ContextMenuShortcut as L,
|
|
1639
|
+
ContextMenuSub as M,
|
|
1640
|
+
ContextMenuSubContent as N,
|
|
1641
|
+
ContextMenuSubTrigger as O,
|
|
1642
|
+
ContextMenuTrigger as P,
|
|
1643
|
+
Drawer as Q,
|
|
1644
|
+
DrawerClose as R,
|
|
1645
|
+
DrawerContent as S,
|
|
1646
|
+
DrawerDescription as T,
|
|
1647
|
+
DrawerFooter as U,
|
|
1648
|
+
DrawerHeader as V,
|
|
1649
|
+
DrawerOverlay as W,
|
|
1650
|
+
DrawerPortal as X,
|
|
1651
|
+
DrawerTitle as Y,
|
|
1652
|
+
DrawerTrigger as Z,
|
|
1653
|
+
HoverCard as _,
|
|
1548
1654
|
AccordionContent as a,
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1655
|
+
HoverCardTrigger as a0,
|
|
1656
|
+
InputOTP as a1,
|
|
1657
|
+
InputOTPGroup as a2,
|
|
1658
|
+
InputOTPSeparator as a3,
|
|
1659
|
+
InputOTPSlot as a4,
|
|
1660
|
+
Label as a5,
|
|
1661
|
+
Menubar as a6,
|
|
1662
|
+
MenubarCheckboxItem as a7,
|
|
1663
|
+
MenubarContent as a8,
|
|
1664
|
+
MenubarGroup as a9,
|
|
1665
|
+
Skeleton as aA,
|
|
1666
|
+
Slider as aB,
|
|
1667
|
+
Tabs as aC,
|
|
1668
|
+
TabsContent as aD,
|
|
1669
|
+
TabsList as aE,
|
|
1670
|
+
TabsTrigger as aF,
|
|
1671
|
+
Toggle as aG,
|
|
1672
|
+
ToggleGroup as aH,
|
|
1673
|
+
ToggleGroupItem as aI,
|
|
1674
|
+
badgeVariants as aJ,
|
|
1675
|
+
navigationMenuTriggerStyle as aK,
|
|
1676
|
+
slotVariants as aL,
|
|
1677
|
+
toggleVariants as aM,
|
|
1678
|
+
MenubarItem as aa,
|
|
1679
|
+
MenubarLabel as ab,
|
|
1680
|
+
MenubarMenu as ac,
|
|
1681
|
+
MenubarPortal as ad,
|
|
1682
|
+
MenubarRadioGroup as ae,
|
|
1683
|
+
MenubarRadioItem as af,
|
|
1684
|
+
MenubarSeparator as ag,
|
|
1685
|
+
MenubarShortcut as ah,
|
|
1686
|
+
MenubarSub as ai,
|
|
1687
|
+
MenubarSubContent as aj,
|
|
1688
|
+
MenubarSubTrigger as ak,
|
|
1689
|
+
MenubarTrigger as al,
|
|
1690
|
+
NavigationMenu as am,
|
|
1691
|
+
NavigationMenuContent as an,
|
|
1692
|
+
NavigationMenuIndicator as ao,
|
|
1693
|
+
NavigationMenuItem as ap,
|
|
1694
|
+
NavigationMenuLink as aq,
|
|
1695
|
+
NavigationMenuList as ar,
|
|
1696
|
+
NavigationMenuTrigger as as,
|
|
1697
|
+
NavigationMenuViewport as at,
|
|
1698
|
+
Progress as au,
|
|
1699
|
+
RadioGroup as av,
|
|
1700
|
+
RadioGroupItem as aw,
|
|
1701
|
+
ScrollArea as ax,
|
|
1702
|
+
ScrollBar as ay,
|
|
1703
|
+
Separator as az,
|
|
1597
1704
|
AccordionItem as b,
|
|
1598
1705
|
AccordionTrigger as c,
|
|
1599
1706
|
Alert as d,
|
|
@@ -1613,11 +1720,11 @@ export {
|
|
|
1613
1720
|
CardTitle as r,
|
|
1614
1721
|
Carousel as s,
|
|
1615
1722
|
CarouselContent as t,
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1723
|
+
CarouselDots as u,
|
|
1724
|
+
CarouselItem as v,
|
|
1725
|
+
CarouselNext as w,
|
|
1726
|
+
CarouselPrevious as x,
|
|
1727
|
+
ContextMenu as y,
|
|
1728
|
+
ContextMenuCheckboxItem as z
|
|
1622
1729
|
};
|
|
1623
|
-
//# sourceMappingURL=toggle-group-
|
|
1730
|
+
//# sourceMappingURL=toggle-group-mXbG8_Jm.mjs.map
|