@lets-events/react 4.0.0 → 5.0.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.js CHANGED
@@ -241,7 +241,7 @@ var require_react_is_development = __commonJS({
241
241
  var ContextProvider = REACT_PROVIDER_TYPE;
242
242
  var Element = REACT_ELEMENT_TYPE;
243
243
  var ForwardRef = REACT_FORWARD_REF_TYPE;
244
- var Fragment2 = REACT_FRAGMENT_TYPE;
244
+ var Fragment3 = REACT_FRAGMENT_TYPE;
245
245
  var Lazy = REACT_LAZY_TYPE;
246
246
  var Memo = REACT_MEMO_TYPE;
247
247
  var Portal = REACT_PORTAL_TYPE;
@@ -300,7 +300,7 @@ var require_react_is_development = __commonJS({
300
300
  exports2.ContextProvider = ContextProvider;
301
301
  exports2.Element = Element;
302
302
  exports2.ForwardRef = ForwardRef;
303
- exports2.Fragment = Fragment2;
303
+ exports2.Fragment = Fragment3;
304
304
  exports2.Lazy = Lazy;
305
305
  exports2.Memo = Memo;
306
306
  exports2.Portal = Portal;
@@ -1010,12 +1010,18 @@ var require_prop_types = __commonJS({
1010
1010
  // src/index.tsx
1011
1011
  var index_exports = {};
1012
1012
  __export(index_exports, {
1013
+ Alert: () => Alert,
1014
+ AlertDialogCompleteStyled: () => AlertDialogCompleteStyled,
1015
+ AlertDialogDescriptionStyled: () => AlertDialogDescriptionStyled,
1016
+ AlertDialogRowStyled: () => AlertDialogRowStyled,
1017
+ AlertDialogSimpleStyled: () => AlertDialogSimpleStyled,
1018
+ AlertDialogSubtitleStyled: () => AlertDialogSubtitleStyled,
1019
+ AlertDialogTitleStyled: () => AlertDialogTitleStyled,
1020
+ AlertDialoghrStyled: () => AlertDialoghrStyled,
1013
1021
  Avatar: () => Avatar,
1014
1022
  AvatarStyled: () => AvatarStyled,
1015
1023
  Badge: () => Badge,
1016
1024
  BadgeStyled: () => BadgeStyled,
1017
- BadgeText: () => BadgeText,
1018
- BodyText: () => BodyText,
1019
1025
  Box: () => Box,
1020
1026
  Button: () => Button,
1021
1027
  ButtonGroup: () => ButtonGroup,
@@ -1023,29 +1029,43 @@ __export(index_exports, {
1023
1029
  ButtonItem: () => ButtonItem,
1024
1030
  ButtonItemStyled: () => ButtonItemStyled,
1025
1031
  ButtonStyled: () => ButtonStyled,
1026
- CaptionText: () => CaptionText,
1027
1032
  CheckboxGroup: () => CheckboxGroup,
1028
1033
  CheckboxGroupStyled: () => CheckboxGroupStyled,
1029
1034
  CheckboxItem: () => CheckboxItem,
1030
- DisplayText: () => DisplayText,
1035
+ Container: () => Container,
1036
+ ContainerStyled: () => ContainerStyled,
1031
1037
  DropdownMenu: () => DropdownMenu2,
1032
1038
  DropdownMenuItem: () => DropdownMenuItem,
1033
1039
  Filter: () => Filter,
1034
1040
  FilterItem: () => FilterItem,
1035
1041
  Flex: () => Flex2,
1036
- Headline: () => Headline,
1042
+ FlexStyled: () => FlexStyled,
1043
+ Grid: () => Grid,
1044
+ GridStyled: () => GridStyled,
1037
1045
  Icon: () => Icon,
1038
- Label: () => Label,
1046
+ Modal: () => Modal,
1047
+ ModalContentStyled: () => ModalContentStyled,
1048
+ ModalStyled: () => ModalStyled,
1049
+ ModalTitleStyled: () => ModalTitleStyled,
1039
1050
  RadioGroup: () => RadioGroup,
1040
1051
  RadioGroupStyled: () => RadioGroupStyled,
1041
1052
  RadioItem: () => RadioItem,
1042
- Subtitle: () => Subtitle,
1053
+ Section: () => Section,
1054
+ SectionStyled: () => SectionStyled,
1055
+ Step: () => Step,
1056
+ StepContent: () => StepContent,
1057
+ StepList: () => StepList,
1058
+ StepStyled: () => StepStyled,
1059
+ StepTrigger: () => StepTrigger,
1060
+ StepWrapper: () => StepWrapper,
1061
+ Switch: () => Switch,
1062
+ SwitchStyled: () => SwitchStyled,
1043
1063
  Text: () => Text,
1044
1064
  TextField: () => TextField,
1045
1065
  TextFieldSlot: () => TextFieldSlot,
1046
1066
  TextFieldSlotStyled: () => TextFieldSlotStyled,
1047
1067
  TextFieldStyled: () => TextFieldStyled,
1048
- TooltipText: () => TooltipText
1068
+ TextStyle: () => TextStyle
1049
1069
  });
1050
1070
  module.exports = __toCommonJS(index_exports);
1051
1071
 
@@ -1368,175 +1388,31 @@ var {
1368
1388
 
1369
1389
  // src/components/Text.tsx
1370
1390
  var import_themes = require("@radix-ui/themes");
1371
- var Text = styled(import_themes.Text, {
1372
- fontFamily: "$default",
1373
- lineHeight: "$base",
1374
- color: "$gray100",
1375
- letterSpacing: "$2",
1376
- fontWeight: "$semibold",
1377
- variants: {
1378
- size: {
1379
- lg: { fontSize: "$56" },
1380
- md: { fontSize: "$48" },
1381
- sm: { fontSize: "$36" }
1382
- }
1383
- },
1384
- defaultVariants: {
1385
- size: "md"
1386
- }
1387
- });
1388
-
1389
- // src/components/DisplayText.tsx
1390
- var DisplayText = styled("p", {
1391
+ var import_jsx_runtime2 = require("react/jsx-runtime");
1392
+ var TextStyle = styled(import_themes.Text, {
1391
1393
  fontFamily: "$default",
1392
1394
  lineHeight: "$base",
1393
1395
  color: "$gray100",
1394
1396
  letterSpacing: "$2",
1395
1397
  fontWeight: "$semibold",
1398
+ fontSize: "$sm",
1396
1399
  variants: {
1397
1400
  size: {
1398
1401
  lg: { fontSize: "$56" },
1399
1402
  md: { fontSize: "$48" },
1400
1403
  sm: { fontSize: "$36" }
1401
1404
  }
1402
- },
1403
- defaultVariants: {
1404
- size: "md"
1405
- }
1406
- });
1407
-
1408
- // src/components/Headline.tsx
1409
- var import_themes2 = require("@radix-ui/themes");
1410
- var Headline = styled(import_themes2.Heading, {
1411
- fontFamily: "$default",
1412
- color: "$gray100",
1413
- letterSpacing: "0px",
1414
- variants: {
1415
- size: {
1416
- 1: { fontSize: "$48", lineHeight: "$64", fontWeight: "$semibold" },
1417
- 2: { fontSize: "$32", lineHeight: "$48", fontWeight: "$semibold" },
1418
- 3: { fontSize: "$24", lineHeight: "$40", fontWeight: "$semibold" },
1419
- 4: { fontSize: "$20", lineHeight: "$36", fontWeight: "$semibold" },
1420
- 5: { fontSize: "$18", lineHeight: "$24", fontWeight: "$semibold" },
1421
- 6: { fontSize: "$18", lineHeight: "$34", fontWeight: "$medium" },
1422
- 7: { fontSize: "$16", lineHeight: "$32", fontWeight: "$semibold" },
1423
- 8: { fontSize: "$16", lineHeight: "$32", fontWeight: "$medium" }
1424
- }
1425
- },
1426
- defaultVariants: {
1427
- size: 1
1428
- }
1429
- });
1430
-
1431
- // src/components/Subtitle.tsx
1432
- var import_themes3 = require("@radix-ui/themes");
1433
- var Subtitle = styled(import_themes3.Text, {
1434
- fontFamily: "$default",
1435
- color: "$gray100",
1436
- letterSpacing: "0px",
1437
- variants: {
1438
- size: {
1439
- 1: { fontSize: "$20", lineHeight: "$36", fontWeight: "$regular" },
1440
- 2: { fontSize: "$18", lineHeight: "$34", fontWeight: "$regular" },
1441
- 3: { fontSize: "$16", lineHeight: "$32", fontWeight: "$regular" },
1442
- 4: { fontSize: "$14", lineHeight: "$24", fontWeight: "$regular" },
1443
- 5: { fontSize: "$14", lineHeight: "$16", fontWeight: "$semibold" }
1444
- }
1445
- },
1446
- defaultVariants: {
1447
- size: 1
1448
- }
1449
- });
1450
-
1451
- // src/components/BodyText.tsx
1452
- var import_themes4 = require("@radix-ui/themes");
1453
- var BodyText = styled(import_themes4.Text, {
1454
- fontFamily: "$default",
1455
- color: "$gray100",
1456
- fontWeight: "$regular",
1457
- variants: {
1458
- size: {
1459
- 1: { fontSize: "$16", lineHeight: "$24" },
1460
- 2: { fontSize: "$14", lineHeight: "$24" },
1461
- 3: { fontSize: "$13", lineHeight: "$24" },
1462
- 4: { fontSize: "$12", lineHeight: "$16" }
1463
- }
1464
- },
1465
- defaultVariants: {
1466
- size: "1"
1467
- }
1468
- });
1469
-
1470
- // src/components/Label.tsx
1471
- var import_themes5 = require("@radix-ui/themes");
1472
- var Label = styled(import_themes5.Text, {
1473
- fontFamily: "$default",
1474
- color: "$gray100",
1475
- letterSpacing: "0px",
1476
- variants: {
1477
- size: {
1478
- 1: { fontSize: "$18", lineHeight: "$22", fontWeight: "$semibold" },
1479
- 2: { fontSize: "$14", lineHeight: "$16", fontWeight: "$medium" },
1480
- 3: { fontSize: "$14", lineHeight: "$16", fontWeight: "$regular" },
1481
- 4: { fontSize: "$13", lineHeight: "$16", fontWeight: "$semibold", letterSpacing: "2px" },
1482
- 5: { fontSize: "$13", lineHeight: "$16", fontWeight: "$medium" },
1483
- 6: { fontSize: "$13", lineHeight: "$16", fontWeight: "$regular" },
1484
- 7: { fontSize: "$12", lineHeight: "$12", fontWeight: "$regular" }
1485
- }
1486
- },
1487
- defaultVariants: {
1488
- size: "1"
1489
- }
1490
- });
1491
-
1492
- // src/components/BadgeText.tsx
1493
- var import_themes6 = require("@radix-ui/themes");
1494
- var BadgeText = styled(import_themes6.Text, {
1495
- fontFamily: "$default",
1496
- color: "$gray100",
1497
- letterSpacing: "0px",
1498
- variants: {
1499
- size: {
1500
- 1: { fontSize: "$16", lineHeight: "$16", fontWeight: "$regular" },
1501
- 2: { fontSize: "$14", lineHeight: "$14", fontWeight: "$regular" },
1502
- 3: { fontSize: "$12", lineHeight: "$12", fontWeight: "$regular" },
1503
- 4: { fontSize: "$10", lineHeight: "$10", fontWeight: "$regular" },
1504
- "xs": { fontSize: "$10", lineHeight: "$10", fontWeight: "$regular" },
1505
- "sm": { fontSize: "$12", lineHeight: "$12", fontWeight: "$regular" },
1506
- "md": { fontSize: "$14", lineHeight: "$14", fontWeight: "$regular" },
1507
- "xl": { fontSize: "$16", lineHeight: "$16", fontWeight: "$regular" }
1508
- }
1509
- },
1510
- defaultVariants: {
1511
- size: "1"
1512
1405
  }
1513
1406
  });
1514
-
1515
- // src/components/CaptionText.tsx
1516
- var import_themes7 = require("@radix-ui/themes");
1517
- var CaptionText = styled(import_themes7.Text, {
1518
- fontFamily: "$default",
1519
- color: "$gray100",
1520
- letterSpacing: "0px",
1521
- fontSize: "$14",
1522
- lineHeight: "$16",
1523
- fontWeight: "$regular"
1524
- });
1525
-
1526
- // src/components/TooltipText.tsx
1527
- var TooltipText = styled("span", {
1528
- fontFamily: "$default",
1529
- color: "$gray100",
1530
- letterSpacing: "0px",
1531
- fontSize: "$13",
1532
- lineHeight: "$16",
1533
- fontWeight: "$regular"
1534
- });
1407
+ function Text(_a) {
1408
+ var props = __objRest(_a, []);
1409
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TextStyle, __spreadValues({}, props));
1410
+ }
1535
1411
 
1536
1412
  // src/components/Button.tsx
1537
- var import_themes8 = require("@radix-ui/themes");
1538
- var import_jsx_runtime2 = require("react/jsx-runtime");
1539
- var ButtonStyled = styled(import_themes8.Button, {
1413
+ var import_themes2 = require("@radix-ui/themes");
1414
+ var import_jsx_runtime3 = require("react/jsx-runtime");
1415
+ var ButtonStyled = styled(import_themes2.Button, {
1540
1416
  fontFamily: "$default",
1541
1417
  letterSpacing: 0,
1542
1418
  border: 0,
@@ -1548,19 +1424,10 @@ var ButtonStyled = styled(import_themes8.Button, {
1548
1424
  alignItems: "center",
1549
1425
  justifyContent: "center",
1550
1426
  gap: "$10",
1551
- "&:hover": {
1552
- transform: "scale(1.05)"
1553
- },
1554
- "&:active": {
1555
- transform: "scale(0.95)"
1556
- },
1557
1427
  "&:disabled": {
1558
1428
  cursor: "not-allowed",
1559
1429
  transition: "none"
1560
1430
  },
1561
- "&:hover:disabled": {
1562
- transform: "none"
1563
- },
1564
1431
  variants: {
1565
1432
  color: {
1566
1433
  brand: {},
@@ -1721,6 +1588,9 @@ var ButtonStyled = styled(import_themes8.Button, {
1721
1588
  css: {
1722
1589
  color: "$grey50",
1723
1590
  backgroundColor: "$brand500",
1591
+ borderWidth: "$2",
1592
+ borderStyle: "solid",
1593
+ borderColor: "transparent",
1724
1594
  "&:hover": {
1725
1595
  borderColor: "$brand700",
1726
1596
  backgroundColor: "$blue600"
@@ -1867,14 +1737,14 @@ var ButtonStyled = styled(import_themes8.Button, {
1867
1737
  });
1868
1738
  function Button(_a) {
1869
1739
  var _b = _a, { asChild } = _b, props = __objRest(_b, ["asChild"]);
1870
- const Component = asChild ? import_themes8.Button : "button";
1871
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(ButtonStyled, __spreadValues({ as: Component }, props));
1740
+ const Component = asChild ? import_themes2.Button : "button";
1741
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ButtonStyled, __spreadValues({ as: Component }, props));
1872
1742
  }
1873
1743
 
1874
1744
  // src/components/ButtonGroup.tsx
1875
- var import_themes9 = require("@radix-ui/themes");
1876
- var import_jsx_runtime3 = require("react/jsx-runtime");
1877
- var ButtonItemStyled = styled(import_themes9.Button, {
1745
+ var import_themes3 = require("@radix-ui/themes");
1746
+ var import_jsx_runtime4 = require("react/jsx-runtime");
1747
+ var ButtonItemStyled = styled(import_themes3.Button, {
1878
1748
  fontFamily: "$default",
1879
1749
  letterSpacing: 0,
1880
1750
  border: 0,
@@ -1887,7 +1757,7 @@ var ButtonItemStyled = styled(import_themes9.Button, {
1887
1757
  }
1888
1758
  }
1889
1759
  });
1890
- var ButtonGroupStyled = styled(import_themes9.Flex, {
1760
+ var ButtonGroupStyled = styled(import_themes3.Flex, {
1891
1761
  display: "flex",
1892
1762
  borderRadius: "$md",
1893
1763
  overflow: "hidden",
@@ -2332,17 +2202,17 @@ var ButtonGroupStyled = styled(import_themes9.Flex, {
2332
2202
  });
2333
2203
  function ButtonItem(_a) {
2334
2204
  var _b = _a, { children, active } = _b, props = __objRest(_b, ["children", "active"]);
2335
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ButtonItemStyled, __spreadProps(__spreadValues({ className: active ? "active" : "" }, props), { children }));
2205
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(ButtonItemStyled, __spreadProps(__spreadValues({ className: active ? "active" : "" }, props), { children }));
2336
2206
  }
2337
2207
  function ButtonGroup(_a) {
2338
2208
  var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
2339
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(ButtonGroupStyled, __spreadProps(__spreadValues({}, props), { children }));
2209
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(ButtonGroupStyled, __spreadProps(__spreadValues({}, props), { children }));
2340
2210
  }
2341
2211
 
2342
2212
  // src/components/Avatar.tsx
2343
- var import_themes10 = require("@radix-ui/themes");
2344
- var import_jsx_runtime4 = require("react/jsx-runtime");
2345
- var AvatarStyled = styled(import_themes10.Avatar, {
2213
+ var import_themes4 = require("@radix-ui/themes");
2214
+ var import_jsx_runtime5 = require("react/jsx-runtime");
2215
+ var AvatarStyled = styled(import_themes4.Avatar, {
2346
2216
  fontFamily: "$default",
2347
2217
  color: "$gray100",
2348
2218
  letterSpacing: "0px",
@@ -2386,57 +2256,13 @@ var AvatarStyled = styled(import_themes10.Avatar, {
2386
2256
  });
2387
2257
  function Avatar(_a) {
2388
2258
  var _b = _a, { asChild } = _b, props = __objRest(_b, ["asChild"]);
2389
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(AvatarStyled, __spreadValues({ as: import_themes10.Avatar }, props));
2259
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(AvatarStyled, __spreadValues({ as: import_themes4.Avatar }, props));
2390
2260
  }
2391
2261
 
2392
- // src/components/Flex.tsx
2393
- var import_themes11 = require("@radix-ui/themes");
2394
- var Flex2 = styled(import_themes11.Flex, {
2395
- display: "flex",
2396
- variants: {
2397
- direction: {
2398
- row: { flexDirection: "row" },
2399
- column: { flexDirection: "column" },
2400
- "row-reverse": { flexDirection: "row-reverse" },
2401
- "column-reverse": { flexDirection: "column-reverse" }
2402
- },
2403
- gap: {
2404
- 2: { gap: "$2" },
2405
- 4: { gap: "$4" },
2406
- 6: { gap: "$6" },
2407
- 8: { gap: "$8" },
2408
- 10: { gap: "$10" },
2409
- 12: { gap: "$12" },
2410
- 14: { gap: "$14" },
2411
- 16: { gap: "$16" },
2412
- 20: { gap: "$20" },
2413
- 22: { gap: "$22" },
2414
- 24: { gap: "$24" },
2415
- 32: { gap: "$32" },
2416
- 36: { gap: "$36" },
2417
- 40: { gap: "$40" },
2418
- 48: { gap: "$48" },
2419
- 56: { gap: "$56" },
2420
- 64: { gap: "$64" },
2421
- 72: { gap: "$72" },
2422
- 80: { gap: "$80" },
2423
- full: { gap: "$full" }
2424
- }
2425
- },
2426
- defaultVariants: {
2427
- direction: "row",
2428
- gap: 10
2429
- }
2430
- });
2431
-
2432
- // src/components/Box.tsx
2433
- var import_themes12 = require("@radix-ui/themes");
2434
- var Box = import_themes12.Box;
2435
-
2436
2262
  // src/components/TextField.tsx
2437
- var import_themes13 = require("@radix-ui/themes");
2438
- var import_jsx_runtime5 = require("react/jsx-runtime");
2439
- var TextFieldStyled = styled(import_themes13.TextField.Root, {
2263
+ var import_themes5 = require("@radix-ui/themes");
2264
+ var import_jsx_runtime6 = require("react/jsx-runtime");
2265
+ var TextFieldStyled = styled(import_themes5.TextField.Root, {
2440
2266
  height: "$40",
2441
2267
  fontFamily: "$default",
2442
2268
  letterSpacing: "0px",
@@ -2545,7 +2371,7 @@ var TextFieldStyled = styled(import_themes13.TextField.Root, {
2545
2371
  }
2546
2372
  ]
2547
2373
  });
2548
- var TextFieldSlotStyled = styled(import_themes13.TextField.Slot, {
2374
+ var TextFieldSlotStyled = styled(import_themes5.TextField.Slot, {
2549
2375
  display: "flex",
2550
2376
  alignItems: "center",
2551
2377
  justifyContent: "center"
@@ -2562,9 +2388,9 @@ function TextField(_a) {
2562
2388
  "name",
2563
2389
  "color"
2564
2390
  ]);
2565
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(TextFieldStyled, __spreadProps(__spreadValues({ color, isValid, name }, props), { children: [
2391
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(TextFieldStyled, __spreadProps(__spreadValues({ color, isValid, name }, props), { children: [
2566
2392
  children,
2567
- isValid && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(TextFieldSlot, { position: "flex-end", name, color, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(Icon_default, { name: "check" }) })
2393
+ isValid && /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(TextFieldSlot, { position: "flex-end", name, color, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon_default, { name: "check" }) })
2568
2394
  ] }));
2569
2395
  }
2570
2396
  function TextFieldSlot(_a) {
@@ -2578,7 +2404,7 @@ function TextFieldSlot(_a) {
2578
2404
  "onClick"
2579
2405
  ]);
2580
2406
  console.log("onclick", onClick);
2581
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_jsx_runtime5.Fragment, { children: !!onClick ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(TextFieldSlotStyled, __spreadProps(__spreadValues({}, __spreadProps(__spreadValues({}, props), { color: void 0 })), { style: {
2407
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_jsx_runtime6.Fragment, { children: !!onClick ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(TextFieldSlotStyled, __spreadProps(__spreadValues({}, __spreadProps(__spreadValues({}, props), { color: void 0 })), { style: {
2582
2408
  position: "absolute",
2583
2409
  left: position === "flex-end" ? "none" : 15,
2584
2410
  right: position === "flex-start" ? "none" : 15,
@@ -2586,7 +2412,7 @@ function TextFieldSlot(_a) {
2586
2412
  zIndex: 2,
2587
2413
  top: 0,
2588
2414
  cursor: "pointer"
2589
- }, onClick: () => onClick(), children })) : /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(TextFieldSlotStyled, __spreadProps(__spreadValues({}, __spreadProps(__spreadValues({}, props), { color: void 0 })), { style: {
2415
+ }, onClick: () => onClick(), children })) : /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(TextFieldSlotStyled, __spreadProps(__spreadValues({}, __spreadProps(__spreadValues({}, props), { color: void 0 })), { style: {
2590
2416
  float: position === "flex-start" ? "left" : "right",
2591
2417
  order: position === "flex-start" ? 0 : 2,
2592
2418
  marginLeft: position === "flex-start" ? 0 : 15,
@@ -2595,9 +2421,9 @@ function TextFieldSlot(_a) {
2595
2421
  }
2596
2422
 
2597
2423
  // src/components/RadioGroup.tsx
2598
- var import_themes14 = require("@radix-ui/themes");
2599
- var import_jsx_runtime6 = require("react/jsx-runtime");
2600
- var RadioGroupStyled = styled(import_themes14.RadioGroup.Root, {
2424
+ var import_themes6 = require("@radix-ui/themes");
2425
+ var import_jsx_runtime7 = require("react/jsx-runtime");
2426
+ var RadioGroupStyled = styled(import_themes6.RadioGroup.Root, {
2601
2427
  fontFamily: "$default",
2602
2428
  letterSpacing: "0px",
2603
2429
  fontSize: "$13",
@@ -2761,7 +2587,7 @@ function RadioGroup(_a) {
2761
2587
  "children",
2762
2588
  "disabled"
2763
2589
  ]);
2764
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
2590
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
2765
2591
  RadioGroupStyled,
2766
2592
  __spreadProps(__spreadValues({
2767
2593
  disabled
@@ -2776,13 +2602,13 @@ function RadioItem(_a) {
2776
2602
  } = _b, props = __objRest(_b, [
2777
2603
  "children"
2778
2604
  ]);
2779
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_themes14.RadioGroup.Item, __spreadProps(__spreadValues({}, props), { children }));
2605
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_themes6.RadioGroup.Item, __spreadProps(__spreadValues({}, props), { children }));
2780
2606
  }
2781
2607
 
2782
2608
  // src/components/CheckboxGroup.tsx
2783
- var import_themes15 = require("@radix-ui/themes");
2784
- var import_jsx_runtime7 = require("react/jsx-runtime");
2785
- var CheckboxGroupStyled = styled(import_themes15.CheckboxGroup.Root, {
2609
+ var import_themes7 = require("@radix-ui/themes");
2610
+ var import_jsx_runtime8 = require("react/jsx-runtime");
2611
+ var CheckboxGroupStyled = styled(import_themes7.CheckboxGroup.Root, {
2786
2612
  fontFamily: "$default",
2787
2613
  letterSpacing: "0px",
2788
2614
  fontSize: "$13",
@@ -2946,7 +2772,7 @@ function CheckboxGroup(_a) {
2946
2772
  } = _b, props = __objRest(_b, [
2947
2773
  "children"
2948
2774
  ]);
2949
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(CheckboxGroupStyled, __spreadProps(__spreadValues({}, props), { children }));
2775
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(CheckboxGroupStyled, __spreadProps(__spreadValues({}, props), { children }));
2950
2776
  }
2951
2777
  function CheckboxItem(_a) {
2952
2778
  var _b = _a, {
@@ -2954,12 +2780,12 @@ function CheckboxItem(_a) {
2954
2780
  } = _b, props = __objRest(_b, [
2955
2781
  "children"
2956
2782
  ]);
2957
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_themes15.CheckboxGroup.Item, __spreadProps(__spreadValues({}, props), { children }));
2783
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_themes7.CheckboxGroup.Item, __spreadProps(__spreadValues({}, props), { children }));
2958
2784
  }
2959
2785
 
2960
2786
  // src/components/Filter.tsx
2961
- var import_themes16 = require("@radix-ui/themes");
2962
- var import_jsx_runtime8 = require("react/jsx-runtime");
2787
+ var import_themes8 = require("@radix-ui/themes");
2788
+ var import_jsx_runtime9 = require("react/jsx-runtime");
2963
2789
  var FilterStyled = styled("div", {
2964
2790
  fontFamily: "$default",
2965
2791
  color: "$dark600",
@@ -2987,7 +2813,7 @@ var FilterStyled = styled("div", {
2987
2813
  }
2988
2814
  }
2989
2815
  });
2990
- var FilterContentStyled = styled(import_themes16.DropdownMenu.Content, {
2816
+ var FilterContentStyled = styled(import_themes8.DropdownMenu.Content, {
2991
2817
  background: "white",
2992
2818
  padding: "$8 $12",
2993
2819
  border: "1px solid $dark300",
@@ -3005,19 +2831,19 @@ function Filter(_a) {
3005
2831
  "children",
3006
2832
  "placeholder"
3007
2833
  ]);
3008
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_themes16.Theme, { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_themes16.DropdownMenu.Root, __spreadProps(__spreadValues({}, props), { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(FilterStyled, { children: [
3009
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_themes16.DropdownMenu.Trigger, { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("button", { "aria-label": placeholder || "Fitrar", children: [
3010
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Icon, { name: "filter" }),
3011
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { children: placeholder || "Fitrar" }),
3012
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_themes16.DropdownMenu.TriggerIcon, {})
2834
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes8.Theme, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes8.DropdownMenu.Root, __spreadProps(__spreadValues({}, props), { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(FilterStyled, { children: [
2835
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes8.DropdownMenu.Trigger, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("button", { "aria-label": placeholder || "Fitrar", children: [
2836
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Icon, { name: "filter" }),
2837
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { children: placeholder || "Fitrar" }),
2838
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes8.DropdownMenu.TriggerIcon, {})
3013
2839
  ] }) }),
3014
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
2840
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
3015
2841
  FilterContentStyled,
3016
2842
  {
3017
2843
  avoidCollisions: false,
3018
2844
  align: "start",
3019
2845
  alignOffset: -14,
3020
- children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(CheckboxGroup, { children })
2846
+ children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(CheckboxGroup, { children })
3021
2847
  }
3022
2848
  )
3023
2849
  ] }) })) });
@@ -3028,12 +2854,12 @@ function FilterItem(_a) {
3028
2854
  } = _b, props = __objRest(_b, [
3029
2855
  "children"
3030
2856
  ]);
3031
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(CheckboxItem, __spreadProps(__spreadValues({}, props), { style: { padding: "8px 12px" }, children }));
2857
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(CheckboxItem, __spreadProps(__spreadValues({}, props), { style: { padding: "8px 12px" }, children }));
3032
2858
  }
3033
2859
 
3034
2860
  // src/components/Dropdown.tsx
3035
- var import_themes17 = require("@radix-ui/themes");
3036
- var import_jsx_runtime9 = require("react/jsx-runtime");
2861
+ var import_themes9 = require("@radix-ui/themes");
2862
+ var import_jsx_runtime10 = require("react/jsx-runtime");
3037
2863
  var DropdownMenuStyled = styled("div", {
3038
2864
  fontFamily: "$default",
3039
2865
  color: "$dark600",
@@ -3061,7 +2887,7 @@ var DropdownMenuStyled = styled("div", {
3061
2887
  }
3062
2888
  }
3063
2889
  });
3064
- var DropdownMenuContentStyled = styled(import_themes17.DropdownMenu.Content, {
2890
+ var DropdownMenuContentStyled = styled(import_themes9.DropdownMenu.Content, {
3065
2891
  background: "white",
3066
2892
  padding: "$8 $12",
3067
2893
  border: "1px solid $dark300",
@@ -3071,7 +2897,7 @@ var DropdownMenuContentStyled = styled(import_themes17.DropdownMenu.Content, {
3071
2897
  minWidth: "100%",
3072
2898
  marginTop: "3px"
3073
2899
  });
3074
- var DropdownMenuItemStyled = styled(import_themes17.DropdownMenu.Item, {
2900
+ var DropdownMenuItemStyled = styled(import_themes9.DropdownMenu.Item, {
3075
2901
  fontFamily: "$default",
3076
2902
  color: "$dark600",
3077
2903
  letterSpacing: "0px",
@@ -3091,18 +2917,18 @@ function DropdownMenu2(_a) {
3091
2917
  "children",
3092
2918
  "placeholder"
3093
2919
  ]);
3094
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes17.Theme, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes17.DropdownMenu.Root, __spreadProps(__spreadValues({}, props), { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(DropdownMenuStyled, { children: [
3095
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes17.DropdownMenu.Trigger, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("button", { "aria-label": placeholder || "Fitrar", children: [
3096
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { children: placeholder || "Fitrar" }),
3097
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes17.DropdownMenu.TriggerIcon, {})
2920
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_themes9.Theme, { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_themes9.DropdownMenu.Root, __spreadProps(__spreadValues({}, props), { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(DropdownMenuStyled, { children: [
2921
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_themes9.DropdownMenu.Trigger, { children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("button", { "aria-label": placeholder || "Fitrar", children: [
2922
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { children: placeholder || "Fitrar" }),
2923
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_themes9.DropdownMenu.TriggerIcon, {})
3098
2924
  ] }) }),
3099
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
2925
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
3100
2926
  DropdownMenuContentStyled,
3101
2927
  {
3102
2928
  avoidCollisions: false,
3103
2929
  align: "start",
3104
2930
  alignOffset: -14,
3105
- children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_themes17.DropdownMenu.Group, { children })
2931
+ children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_themes9.DropdownMenu.Group, { children })
3106
2932
  }
3107
2933
  )
3108
2934
  ] }) })) });
@@ -3113,14 +2939,14 @@ function DropdownMenuItem(_a) {
3113
2939
  } = _b, props = __objRest(_b, [
3114
2940
  "children"
3115
2941
  ]);
3116
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(DropdownMenuItemStyled, __spreadProps(__spreadValues({}, props), { children }));
2942
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(DropdownMenuItemStyled, __spreadProps(__spreadValues({}, props), { children }));
3117
2943
  }
3118
2944
 
3119
2945
  // src/components/Badge.tsx
3120
2946
  var import_react2 = __toESM(require("react"));
3121
- var import_themes18 = require("@radix-ui/themes");
3122
- var import_jsx_runtime10 = require("react/jsx-runtime");
3123
- var BadgeStyled = styled(import_themes18.Badge, {
2947
+ var import_themes10 = require("@radix-ui/themes");
2948
+ var import_jsx_runtime11 = require("react/jsx-runtime");
2949
+ var BadgeStyled = styled(import_themes10.Badge, {
3124
2950
  fontFamily: "$default",
3125
2951
  borderRadius: "$sm",
3126
2952
  verticalAlign: "middle",
@@ -3217,21 +3043,762 @@ var BadgeStyled = styled(import_themes18.Badge, {
3217
3043
  });
3218
3044
  function Badge(_a) {
3219
3045
  var _b = _a, { asChild, children } = _b, props = __objRest(_b, ["asChild", "children"]);
3220
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(BadgeStyled, __spreadProps(__spreadValues({}, props), { children: import_react2.default.Children.map(children, (child) => {
3046
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(BadgeStyled, __spreadProps(__spreadValues({}, props), { children: import_react2.default.Children.map(children, (child) => {
3221
3047
  if (import_react2.default.isValidElement(child)) {
3222
3048
  return import_react2.default.cloneElement(child, { size: props.size });
3223
3049
  }
3224
3050
  return child;
3225
3051
  }) }));
3226
3052
  }
3053
+
3054
+ // src/components/Modal.tsx
3055
+ var import_themes13 = require("@radix-ui/themes");
3056
+
3057
+ // src/components/Box.tsx
3058
+ var import_themes11 = require("@radix-ui/themes");
3059
+ var Box = import_themes11.Box;
3060
+
3061
+ // src/components/Flex.tsx
3062
+ var import_themes12 = require("@radix-ui/themes");
3063
+ var import_jsx_runtime12 = require("react/jsx-runtime");
3064
+ var FlexStyled = styled(import_themes12.Flex, {
3065
+ variants: {
3066
+ display: {
3067
+ "flex": { display: "flex" },
3068
+ "inline-flex": { display: "inline-flex" }
3069
+ },
3070
+ align: {
3071
+ start: { alignItems: "flex-start" },
3072
+ center: { alignItems: "center" },
3073
+ end: { alignItems: "flex-end" },
3074
+ stretch: { alignItems: "stretch" },
3075
+ baseline: { alignItems: "baseline" }
3076
+ },
3077
+ justify: {
3078
+ start: { justifyContent: "flex-start" },
3079
+ center: { justifyContent: "center" },
3080
+ end: { justifyContent: "flex-end" },
3081
+ between: { justifyContent: "space-between" },
3082
+ around: { justifyContent: "space-around" },
3083
+ evenly: { justifyContent: "space-evenly" }
3084
+ },
3085
+ direction: {
3086
+ row: { flexDirection: "row" },
3087
+ column: { flexDirection: "column" },
3088
+ "row-reverse": { flexDirection: "row-reverse" },
3089
+ "column-reverse": { flexDirection: "column-reverse" }
3090
+ },
3091
+ gap: {
3092
+ 2: { gap: "$2" },
3093
+ 4: { gap: "$4" },
3094
+ 6: { gap: "$6" },
3095
+ 8: { gap: "$8" },
3096
+ 10: { gap: "$10" },
3097
+ 12: { gap: "$12" },
3098
+ 14: { gap: "$14" },
3099
+ 16: { gap: "$16" },
3100
+ 20: { gap: "$20" },
3101
+ 22: { gap: "$22" },
3102
+ 24: { gap: "$24" },
3103
+ 32: { gap: "$32" },
3104
+ 36: { gap: "$36" },
3105
+ 40: { gap: "$40" },
3106
+ 48: { gap: "$48" },
3107
+ 56: { gap: "$56" },
3108
+ 64: { gap: "$64" },
3109
+ 72: { gap: "$72" },
3110
+ 80: { gap: "$80" },
3111
+ full: { gap: "$full" }
3112
+ },
3113
+ gapY: {
3114
+ 2: { gap: "$2" },
3115
+ 4: { gap: "$4" },
3116
+ 6: { gap: "$6" },
3117
+ 8: { gap: "$8" },
3118
+ 10: { gap: "$10" },
3119
+ 12: { gap: "$12" },
3120
+ 14: { gap: "$14" },
3121
+ 16: { gap: "$16" },
3122
+ 20: { gap: "$20" },
3123
+ 22: { gap: "$22" },
3124
+ 24: { gap: "$24" },
3125
+ 32: { gap: "$32" },
3126
+ 36: { gap: "$36" },
3127
+ 40: { gap: "$40" },
3128
+ 48: { gap: "$48" },
3129
+ 56: { gap: "$56" },
3130
+ 64: { gap: "$64" },
3131
+ 72: { gap: "$72" },
3132
+ 80: { gap: "$80" },
3133
+ full: { gap: "$full" }
3134
+ },
3135
+ gapX: {
3136
+ 2: { gap: "$2" },
3137
+ 4: { gap: "$4" },
3138
+ 6: { gap: "$6" },
3139
+ 8: { gap: "$8" },
3140
+ 10: { gap: "$10" },
3141
+ 12: { gap: "$12" },
3142
+ 14: { gap: "$14" },
3143
+ 16: { gap: "$16" },
3144
+ 20: { gap: "$20" },
3145
+ 22: { gap: "$22" },
3146
+ 24: { gap: "$24" },
3147
+ 32: { gap: "$32" },
3148
+ 36: { gap: "$36" },
3149
+ 40: { gap: "$40" },
3150
+ 48: { gap: "$48" },
3151
+ 56: { gap: "$56" },
3152
+ 64: { gap: "$64" },
3153
+ 72: { gap: "$72" },
3154
+ 80: { gap: "$80" },
3155
+ full: { gap: "$full" }
3156
+ }
3157
+ },
3158
+ defaultVariants: {
3159
+ display: "flex",
3160
+ direction: "row",
3161
+ gap: 10
3162
+ }
3163
+ });
3164
+ function Flex2(_a) {
3165
+ var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
3166
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(FlexStyled, __spreadProps(__spreadValues({}, props), { children }));
3167
+ }
3168
+
3169
+ // src/components/Modal.tsx
3170
+ var import_jsx_runtime13 = require("react/jsx-runtime");
3171
+ var ModalStyled = styled("div", {
3172
+ fontFamily: "$default",
3173
+ lineHeight: "$base",
3174
+ fontSize: "$13",
3175
+ borderRadius: "$sm"
3176
+ });
3177
+ var ModalContentStyled = styled(import_themes13.Dialog.Content, {
3178
+ fontFamily: "$default",
3179
+ lineHeight: "$base",
3180
+ fontSize: "$13",
3181
+ maxWidth: "502px",
3182
+ width: "100%",
3183
+ border: "1px solid $neutral",
3184
+ borderRadius: "$2xl",
3185
+ boxShadow: "0px 4px 4px 0px rgba(35, 53, 67, 0.08), 0px 2px 4px 0px rgba(35, 53, 67, 0.16)"
3186
+ });
3187
+ var ModalHeaderStyled = styled("div", {
3188
+ borderBottom: "1px solid $neutral300",
3189
+ padding: "$16 $24",
3190
+ textAlign: "center",
3191
+ position: "relative",
3192
+ display: "flex",
3193
+ alignItems: "center",
3194
+ justifyContent: "center"
3195
+ });
3196
+ var ModalIconClose = styled(Icon_default, {
3197
+ position: "absolute",
3198
+ right: "$24",
3199
+ cursor: "pointer"
3200
+ });
3201
+ var ModalFooterStyled = styled("div", {
3202
+ borderTop: "1px solid $neutral300",
3203
+ padding: "$16 $24",
3204
+ ".modal-footer-flex": {
3205
+ justifyContent: "flex-end"
3206
+ }
3207
+ });
3208
+ var ModalTitleStyled = styled(import_themes13.Dialog.Title, {
3209
+ fontFamily: "$default",
3210
+ lineHeight: "$base",
3211
+ fontSize: "$18",
3212
+ fontWeight: "medium",
3213
+ fontStyle: "normal",
3214
+ textTransform: "uppercase"
3215
+ });
3216
+ function Modal(_a) {
3217
+ var _b = _a, { children, title, trigger, cancel, cancelText, action, actionText, onAction } = _b, props = __objRest(_b, ["children", "title", "trigger", "cancel", "cancelText", "action", "actionText", "onAction"]);
3218
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_themes13.Dialog.Root, { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(ModalStyled, __spreadProps(__spreadValues({}, props), { children: [
3219
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_themes13.Dialog.Trigger, { children: trigger }),
3220
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(ModalContentStyled, { children: [
3221
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(ModalHeaderStyled, { children: [
3222
+ title && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ModalTitleStyled, { children: title }),
3223
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_themes13.Dialog.Close, { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ModalIconClose, { name: "close", size: "xl" }) })
3224
+ ] }),
3225
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Box, { children }),
3226
+ cancel || action ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ModalFooterStyled, { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(Flex2, { gap: "10", justify: "end", width: "100%", className: "modal-footer-flex", children: [
3227
+ action && onAction && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_themes13.Dialog.Close, { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Button, { variant: "contained", color: "brand", onClick: onAction, children: actionText ? actionText : "Salvar" }) }),
3228
+ cancel && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_themes13.Dialog.Close, { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Button, { variant: "outlined", color: "neutral", children: cancelText ? cancelText : "cancelar" }) })
3229
+ ] }) }) : null
3230
+ ] })
3231
+ ] })) });
3232
+ }
3233
+
3234
+ // src/components/Alert.tsx
3235
+ var import_themes14 = require("@radix-ui/themes");
3236
+ var import_jsx_runtime14 = require("react/jsx-runtime");
3237
+ var AlertDialogSimpleStyled = styled(import_themes14.AlertDialog.Content, {
3238
+ fontFamily: "$default",
3239
+ lineHeight: "$base",
3240
+ fontSize: "$13",
3241
+ padding: "$16",
3242
+ borderRadius: "$sm",
3243
+ display: "flex",
3244
+ alignItems: "center",
3245
+ justifyContent: "space-between",
3246
+ gap: "$10",
3247
+ marginTop: "$10",
3248
+ variants: {
3249
+ color: {
3250
+ error: {
3251
+ backgroundColor: "$error50",
3252
+ border: "1px solid $error600",
3253
+ color: "$error600",
3254
+ "svg": {
3255
+ color: "$error600"
3256
+ }
3257
+ },
3258
+ warning: {
3259
+ backgroundColor: "$warning50",
3260
+ border: "1px solid $warning600",
3261
+ color: "$warning600",
3262
+ "svg": {
3263
+ color: "$warning600"
3264
+ }
3265
+ },
3266
+ success: {
3267
+ backgroundColor: "$success50",
3268
+ border: "1px solid $success600",
3269
+ color: "$success600",
3270
+ "svg": {
3271
+ color: "$success600"
3272
+ }
3273
+ },
3274
+ info: {
3275
+ backgroundColor: "$info50",
3276
+ border: "1px solid $info600",
3277
+ color: "$info600",
3278
+ "svg": {
3279
+ color: "$info600"
3280
+ }
3281
+ }
3282
+ }
3283
+ },
3284
+ defaultVariants: {
3285
+ color: "success"
3286
+ }
3287
+ });
3288
+ var AlertDialogCompleteStyled = styled(import_themes14.AlertDialog.Content, {
3289
+ fontFamily: "$default",
3290
+ lineHeight: "$base",
3291
+ fontSize: "$13",
3292
+ borderRadius: "$sm",
3293
+ marginTop: "$10",
3294
+ maxWidth: "440px",
3295
+ width: "100%",
3296
+ boxShadow: "0px 0px 15px 5px rgba(0, 0, 0, 0.05)",
3297
+ border: "1px solid $neutral200",
3298
+ ".le-alert-dialog-row": {
3299
+ display: "flex",
3300
+ flexDirection: "column",
3301
+ flexWrap: "wrap",
3302
+ alignItems: "center",
3303
+ textAlign: "center",
3304
+ justifyContent: "space-between",
3305
+ gap: "$10"
3306
+ },
3307
+ variants: {
3308
+ color: {}
3309
+ }
3310
+ });
3311
+ var AlertDialogDescriptionStyled = styled(import_themes14.AlertDialog.Description, {
3312
+ padding: 0,
3313
+ margin: 0
3314
+ });
3315
+ var AlertDialogTitleStyled = styled(import_themes14.AlertDialog.Title, {
3316
+ fontFamily: "$default",
3317
+ lineHeight: "$base",
3318
+ fontSize: "$20",
3319
+ fontWeight: "$semibold",
3320
+ padding: 0,
3321
+ margin: 0
3322
+ });
3323
+ var AlertDialogSubtitleStyled = styled(Text, {
3324
+ margin: 0,
3325
+ fontSize: "$48",
3326
+ color: "$gray100",
3327
+ fontWeight: "$semibold"
3328
+ });
3329
+ var AlertDialogRowStyled = styled("div", {
3330
+ padding: "$32 $24"
3331
+ });
3332
+ var AlertDialoghrStyled = styled("hr", {
3333
+ margin: 0,
3334
+ padding: 0,
3335
+ border: "none",
3336
+ borderTop: "1px solid $neutral200"
3337
+ });
3338
+ function Alert(_a) {
3339
+ var _b = _a, {
3340
+ color,
3341
+ trigger,
3342
+ completAlert,
3343
+ simpleAlert
3344
+ } = _b, props = __objRest(_b, [
3345
+ "color",
3346
+ "trigger",
3347
+ "completAlert",
3348
+ "simpleAlert"
3349
+ ]);
3350
+ console.log("completAlert", completAlert, " simpleAlert", simpleAlert);
3351
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_jsx_runtime14.Fragment, { children: [
3352
+ simpleAlert && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.Theme, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_themes14.AlertDialog.Root, { children: [
3353
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.AlertDialog.Trigger, { children: trigger }),
3354
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_jsx_runtime14.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(AlertDialogSimpleStyled, __spreadProps(__spreadValues({}, props), { children: [
3355
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(AlertDialogDescriptionStyled, { children: simpleAlert.description }),
3356
+ simpleAlert.cancel && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.AlertDialog.Cancel, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Button, { variant: "text", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Icon_default, { name: "close" }) }) })
3357
+ ] })) })
3358
+ ] }) }),
3359
+ completAlert && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.Theme, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_themes14.AlertDialog.Root, { children: [
3360
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.AlertDialog.Trigger, { children: trigger }),
3361
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(AlertDialogCompleteStyled, { children: [
3362
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(AlertDialogRowStyled, { className: "le-alert-dialog-row", children: [
3363
+ color === "success" && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { width: "56", height: "56", viewBox: "0 0 56 56", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3364
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("g", { clipPath: "url(#clip0_1428_9995)", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M28 56C35.4261 56 42.548 53.05 47.799 47.799C53.05 42.548 56 35.4261 56 28C56 20.5739 53.05 13.452 47.799 8.20101C42.548 2.94999 35.4261 0 28 0C20.5739 0 13.452 2.94999 8.20101 8.20101C2.94999 13.452 0 20.5739 0 28C0 35.4261 2.94999 42.548 8.20101 47.799C13.452 53.05 20.5739 56 28 56ZM40.3594 22.8594L26.3594 36.8594C25.3312 37.8875 23.6688 37.8875 22.6516 36.8594L15.6516 29.8594C14.6234 28.8312 14.6234 27.1688 15.6516 26.1516C16.6797 25.1344 18.3422 25.1234 19.3594 26.1516L24.5 31.2922L36.6406 19.1406C37.6688 18.1125 39.3312 18.1125 40.3484 19.1406C41.3656 20.1688 41.3766 21.8312 40.3484 22.8484L40.3594 22.8594Z", fill: "#1E8535" }) }),
3365
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("clipPath", { id: "clip0_1428_9995", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "56", height: "56", fill: "white" }) }) })
3366
+ ] }),
3367
+ color === "error" && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { width: "56", height: "56", viewBox: "0 0 56 56", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3368
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("g", { clipPath: "url(#clip0_1428_10022)", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M28 56C35.4261 56 42.548 53.05 47.799 47.799C53.05 42.548 56 35.4261 56 28C56 20.5739 53.05 13.452 47.799 8.20101C42.548 2.94999 35.4261 0 28 0C20.5739 0 13.452 2.94999 8.20101 8.20101C2.94999 13.452 0 20.5739 0 28C0 35.4261 2.94999 42.548 8.20101 47.799C13.452 53.05 20.5739 56 28 56ZM19.1406 19.1406C20.1687 18.1125 21.8312 18.1125 22.8484 19.1406L27.9891 24.2812L33.1297 19.1406C34.1578 18.1125 35.8203 18.1125 36.8375 19.1406C37.8547 20.1687 37.8656 21.8312 36.8375 22.8484L31.6969 27.9891L36.8375 33.1297C37.8656 34.1578 37.8656 35.8203 36.8375 36.8375C35.8094 37.8547 34.1469 37.8656 33.1297 36.8375L27.9891 31.6969L22.8484 36.8375C21.8203 37.8656 20.1578 37.8656 19.1406 36.8375C18.1234 35.8094 18.1125 34.1469 19.1406 33.1297L24.2812 27.9891L19.1406 22.8484C18.1125 21.8203 18.1125 20.1578 19.1406 19.1406Z", fill: "#AD1F2B" }) }),
3369
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("clipPath", { id: "clip0_1428_10022", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "56", height: "56", fill: "white" }) }) })
3370
+ ] }),
3371
+ color === "warning" && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { width: "56", height: "56", viewBox: "0 0 56 56", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3372
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("g", { clipPath: "url(#clip0_1428_10038)", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M28 56C35.4261 56 42.548 53.05 47.799 47.799C53.05 42.548 56 35.4261 56 28C56 20.5739 53.05 13.452 47.799 8.20101C42.548 2.94999 35.4261 0 28 0C20.5739 0 13.452 2.94999 8.20101 8.20101C2.94999 13.452 0 20.5739 0 28C0 35.4261 2.94999 42.548 8.20101 47.799C13.452 53.05 20.5739 56 28 56ZM28 14C29.4547 14 30.625 15.1703 30.625 16.625V28.875C30.625 30.3297 29.4547 31.5 28 31.5C26.5453 31.5 25.375 30.3297 25.375 28.875V16.625C25.375 15.1703 26.5453 14 28 14ZM24.5 38.5C24.5 37.5717 24.8687 36.6815 25.5251 36.0251C26.1815 35.3688 27.0717 35 28 35C28.9283 35 29.8185 35.3688 30.4749 36.0251C31.1313 36.6815 31.5 37.5717 31.5 38.5C31.5 39.4283 31.1313 40.3185 30.4749 40.9749C29.8185 41.6312 28.9283 42 28 42C27.0717 42 26.1815 41.6312 25.5251 40.9749C24.8687 40.3185 24.5 39.4283 24.5 38.5Z", fill: "#CC9A06" }) }),
3373
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("clipPath", { id: "clip0_1428_10038", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "56", height: "56", fill: "white" }) }) })
3374
+ ] }),
3375
+ color === "info" && /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { width: "40", height: "40", viewBox: "0 0 40 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
3376
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("g", { clipPath: "url(#clip0_1645_46)", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { d: "M20 40C25.3043 40 30.3914 37.8929 34.1421 34.1421C37.8929 30.3914 40 25.3043 40 20C40 14.6957 37.8929 9.60859 34.1421 5.85786C30.3914 2.10714 25.3043 0 20 0C14.6957 0 9.60859 2.10714 5.85786 5.85786C2.10714 9.60859 0 14.6957 0 20C0 25.3043 2.10714 30.3914 5.85786 34.1421C9.60859 37.8929 14.6957 40 20 40ZM20 10C21.0391 10 21.875 10.8359 21.875 11.875V20.625C21.875 21.6641 21.0391 22.5 20 22.5C18.9609 22.5 18.125 21.6641 18.125 20.625V11.875C18.125 10.8359 18.9609 10 20 10ZM17.5 27.5C17.5 26.837 17.7634 26.2011 18.2322 25.7322C18.7011 25.2634 19.337 25 20 25C20.663 25 21.2989 25.2634 21.7678 25.7322C22.2366 26.2011 22.5 26.837 22.5 27.5C22.5 28.163 22.2366 28.7989 21.7678 29.2678C21.2989 29.7366 20.663 30 20 30C19.337 30 18.7011 29.7366 18.2322 29.2678C17.7634 28.7989 17.5 28.163 17.5 27.5Z", fill: "#9FB6C7" }) }),
3377
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("clipPath", { id: "clip0_1645_46", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", { width: "40", height: "40", fill: "white" }) }) })
3378
+ ] }),
3379
+ completAlert.title && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(AlertDialogTitleStyled, { children: completAlert.title }),
3380
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(AlertDialogDescriptionStyled, { children: [
3381
+ completAlert.subtitle && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Text, { css: {
3382
+ fontSize: "$16"
3383
+ }, asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { children: completAlert.subtitle }) }),
3384
+ completAlert.description
3385
+ ] })
3386
+ ] }),
3387
+ completAlert.onAction || completAlert.cancel ? /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(AlertDialoghrStyled, {}) : null,
3388
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(AlertDialogRowStyled, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(Flex2, { gap: "10", justify: "end", width: "100%", children: [
3389
+ completAlert.onAction && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.AlertDialog.Action, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Button, { variant: "contained", onClick: completAlert.onAction, children: completAlert.actionText || "Salvar" }) }),
3390
+ completAlert.cancel && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_themes14.AlertDialog.Cancel, { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Button, { variant: "outlined", color: "neutral", children: completAlert.cancelText || "Cancelar" }) })
3391
+ ] }) })
3392
+ ] })
3393
+ ] }) })
3394
+ ] });
3395
+ }
3396
+
3397
+ // src/components/Switch.tsx
3398
+ var import_themes15 = require("@radix-ui/themes");
3399
+ var import_jsx_runtime15 = require("react/jsx-runtime");
3400
+ var SwitchStyled = styled(import_themes15.Switch, {
3401
+ all: "unset",
3402
+ borderRadius: "$full",
3403
+ position: "relative",
3404
+ display: "flex",
3405
+ alignItems: "center",
3406
+ justifyContent: "center",
3407
+ transition: "all 0.3s",
3408
+ cursor: "pointer",
3409
+ "&::before": {
3410
+ content: '""',
3411
+ position: "absolute",
3412
+ borderRadius: "$full",
3413
+ pointerEvents: "none",
3414
+ cursor: "pointer"
3415
+ },
3416
+ "span": {
3417
+ position: "absolute",
3418
+ top: "50%",
3419
+ left: 0,
3420
+ transform: "translate(0, -50%)",
3421
+ borderRadius: "50%",
3422
+ transition: "all 0.3s",
3423
+ cursor: "pointer",
3424
+ borderWidth: "1px",
3425
+ borderStyle: "solid",
3426
+ boxShadow: "0px 0px 4px 0px rgba(0, 0, 0, 0.24)"
3427
+ },
3428
+ '&[data-state="checked"] span': {
3429
+ left: "auto",
3430
+ transform: "translate(50%, -50%)"
3431
+ },
3432
+ variants: {
3433
+ color: {
3434
+ brand: {
3435
+ "&::before": {
3436
+ backgroundColor: "$brand50"
3437
+ },
3438
+ "span": {
3439
+ backgroundColor: "$dark50",
3440
+ borderColor: "$neutral300"
3441
+ },
3442
+ '&[data-state="checked"] span': {
3443
+ backgroundColor: "$brand500",
3444
+ borderColor: "$brand500"
3445
+ }
3446
+ }
3447
+ },
3448
+ size: {
3449
+ sm: {
3450
+ width: "32px",
3451
+ height: "20px",
3452
+ "&::before": {
3453
+ width: "$32",
3454
+ height: "$12"
3455
+ },
3456
+ "span": {
3457
+ width: "$20",
3458
+ height: "$20"
3459
+ }
3460
+ },
3461
+ md: {
3462
+ width: "40px",
3463
+ height: "20px",
3464
+ "&::before": {
3465
+ width: "40px",
3466
+ height: "16px"
3467
+ },
3468
+ "span": {
3469
+ width: "24px",
3470
+ height: "24px"
3471
+ }
3472
+ },
3473
+ lg: {
3474
+ width: "56px",
3475
+ height: "32px",
3476
+ "&::before": {
3477
+ width: "56px",
3478
+ height: "24px"
3479
+ },
3480
+ "span": {
3481
+ width: "32px",
3482
+ height: "32px"
3483
+ }
3484
+ }
3485
+ }
3486
+ },
3487
+ defaultVariants: {
3488
+ size: "md",
3489
+ color: "brand"
3490
+ }
3491
+ });
3492
+ function Switch(props) {
3493
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(SwitchStyled, __spreadValues({ color: "brand", defaultChecked: true }, props));
3494
+ }
3495
+
3496
+ // src/components/Step.tsx
3497
+ var import_react3 = __toESM(require("react"));
3498
+ var import_themes16 = require("@radix-ui/themes");
3499
+ var import_jsx_runtime16 = require("react/jsx-runtime");
3500
+ var StepStyled = styled("div", {
3501
+ fontFamily: "$default",
3502
+ color: "$gray100",
3503
+ letterSpacing: "0px"
3504
+ });
3505
+ var StepTriggerStyled = styled(import_themes16.Tabs.Trigger, {
3506
+ all: "unset",
3507
+ position: "relative",
3508
+ display: "flex",
3509
+ alignItems: "center",
3510
+ justifyContent: "center",
3511
+ fontSize: "$16",
3512
+ fontWeight: "$medium",
3513
+ minWidth: "32px",
3514
+ minHeight: "32px",
3515
+ marginRight: "40px",
3516
+ "&:last-of-type": {
3517
+ marginRight: 0
3518
+ },
3519
+ "& > span:first-of-type": {
3520
+ width: "32px",
3521
+ height: "32px",
3522
+ borderRadius: "$full",
3523
+ backgroundColor: "$neutral50",
3524
+ border: "1px solid $neutral200",
3525
+ color: "$gray700",
3526
+ display: "flex",
3527
+ alignItems: "center",
3528
+ justifyContent: "center",
3529
+ zIndex: 1,
3530
+ position: "relative"
3531
+ },
3532
+ '&[data-state="active"] > span:first-of-type': {
3533
+ backgroundColor: "$blue500",
3534
+ borderColor: "$blue500",
3535
+ color: "white"
3536
+ },
3537
+ "& > span:last-of-type": {
3538
+ display: "none"
3539
+ },
3540
+ "&:not(:first-of-type)::before": {
3541
+ content: '""',
3542
+ position: "absolute",
3543
+ top: "50%",
3544
+ right: "calc(100% + 4px)",
3545
+ transform: "translateY(-50%)",
3546
+ width: "32px",
3547
+ height: "8px",
3548
+ borderRadius: "$sm",
3549
+ backgroundColor: "$neutral50",
3550
+ zIndex: 0
3551
+ },
3552
+ '&[data-state="active"]::before': {
3553
+ backgroundColor: "$blue500"
3554
+ },
3555
+ '&[data-filled="true"] > span:first-of-type': {
3556
+ backgroundColor: "$blue500",
3557
+ borderColor: "$blue500",
3558
+ color: "white"
3559
+ },
3560
+ '&[data-filled="true"]::before': {
3561
+ backgroundColor: "$blue500"
3562
+ }
3563
+ });
3564
+ var StepListStyled = styled(import_themes16.Tabs.List, {
3565
+ display: "flex",
3566
+ alignItems: "center",
3567
+ justifyContent: "flex-start",
3568
+ gap: "$4"
3569
+ });
3570
+ function Step(_a) {
3571
+ var _b = _a, { children, defaultValue } = _b, props = __objRest(_b, ["children", "defaultValue"]);
3572
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_themes16.Tabs.Root, { defaultValue: String(defaultValue), children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(StepStyled, __spreadProps(__spreadValues({}, props), { children })) });
3573
+ }
3574
+ function StepTrigger(_a) {
3575
+ var _b = _a, { value, children, currentStep } = _b, props = __objRest(_b, ["value", "children", "currentStep"]);
3576
+ const isActiveOrPrevious = currentStep !== void 0 && value <= currentStep;
3577
+ console.log(isActiveOrPrevious, "isActiveOrPrevius", currentStep);
3578
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(StepTriggerStyled, __spreadProps(__spreadValues({ "data-filled": isActiveOrPrevious, value: String(value) }, props), { children }));
3579
+ }
3580
+ function StepContent(_a) {
3581
+ var _b = _a, { value, children } = _b, props = __objRest(_b, ["value", "children"]);
3582
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_themes16.Tabs.Content, __spreadProps(__spreadValues({ value: String(value) }, props), { children }));
3583
+ }
3584
+ function StepList(_a) {
3585
+ var _b = _a, { children, currentStep } = _b, props = __objRest(_b, ["children", "currentStep"]);
3586
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(StepListStyled, __spreadProps(__spreadValues({}, props), { children: import_react3.default.Children.map(children, (child) => {
3587
+ if (import_react3.default.isValidElement(child) && child.type === StepTrigger) {
3588
+ return import_react3.default.cloneElement(child, { currentStep });
3589
+ }
3590
+ return child;
3591
+ }) }));
3592
+ }
3593
+ function StepWrapper(_a) {
3594
+ var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
3595
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_themes16.Box, __spreadProps(__spreadValues({}, props), { children }));
3596
+ }
3597
+
3598
+ // src/components/Grid.tsx
3599
+ var import_themes17 = require("@radix-ui/themes");
3600
+ var import_jsx_runtime17 = require("react/jsx-runtime");
3601
+ var GridStyled = styled(import_themes17.Grid, {
3602
+ display: "grid",
3603
+ variants: {
3604
+ display: {
3605
+ "grid": { display: "grid" },
3606
+ "inline-grid": { display: "inline-grid" }
3607
+ },
3608
+ align: {
3609
+ start: { alignItems: "start" },
3610
+ center: { alignItems: "center" },
3611
+ end: { alignItems: "end" },
3612
+ stretch: { alignItems: "stretch" }
3613
+ },
3614
+ justify: {
3615
+ start: { justifyContent: "start" },
3616
+ center: { justifyContent: "center" },
3617
+ end: { justifyContent: "end" },
3618
+ between: { justifyContent: "space-between" }
3619
+ },
3620
+ flow: {
3621
+ row: { gridAutoFlow: "row" },
3622
+ column: { gridAutoFlow: "column" },
3623
+ "row-dense": { gridAutoFlow: "row dense" },
3624
+ "column-dense": { gridAutoFlow: "column dense" }
3625
+ },
3626
+ columns: {
3627
+ 1: { gridTemplateColumns: "repeat(1, 1fr)" },
3628
+ 2: { gridTemplateColumns: "repeat(2, 1fr)" },
3629
+ 3: { gridTemplateColumns: "repeat(3, 1fr)" },
3630
+ 4: { gridTemplateColumns: "repeat(4, 1fr)" },
3631
+ 6: { gridTemplateColumns: "repeat(6, 1fr)" },
3632
+ 12: { gridTemplateColumns: "repeat(12, 1fr)" }
3633
+ },
3634
+ rows: {
3635
+ 1: { gridTemplateRows: "repeat(1, 1fr)" },
3636
+ 2: { gridTemplateRows: "repeat(2, 1fr)" },
3637
+ 3: { gridTemplateRows: "repeat(3, 1fr)" },
3638
+ 4: { gridTemplateRows: "repeat(4, 1fr)" },
3639
+ 5: { gridTemplateRows: "repeat(5, 1fr)" },
3640
+ 6: { gridTemplateRows: "repeat(6, 1fr)" },
3641
+ 7: { gridTemplateRows: "repeat(7, 1fr)" },
3642
+ 8: { gridTemplateRows: "repeat(8, 1fr)" },
3643
+ 9: { gridTemplateRows: "repeat(9, 1fr)" },
3644
+ 10: { gridTemplateRows: "repeat(10, 1fr)" },
3645
+ 11: { gridTemplateRows: "repeat(11, 1fr)" },
3646
+ 12: { gridTemplateRows: "repeat(12, 1fr)" },
3647
+ auto: { gridTemplateRows: "auto" }
3648
+ },
3649
+ gap: {
3650
+ 2: { gap: "$2" },
3651
+ 4: { gap: "$4" },
3652
+ 6: { gap: "$6" },
3653
+ 8: { gap: "$8" },
3654
+ 10: { gap: "$10" },
3655
+ 12: { gap: "$12" },
3656
+ 14: { gap: "$14" },
3657
+ 16: { gap: "$16" },
3658
+ 20: { gap: "$20" },
3659
+ 22: { gap: "$22" },
3660
+ 24: { gap: "$24" },
3661
+ 32: { gap: "$32" },
3662
+ 36: { gap: "$36" },
3663
+ 40: { gap: "$40" },
3664
+ 48: { gap: "$48" },
3665
+ 56: { gap: "$56" },
3666
+ 64: { gap: "$64" },
3667
+ 72: { gap: "$72" },
3668
+ 80: { gap: "$80" },
3669
+ full: { gap: "$full" }
3670
+ },
3671
+ gapX: {
3672
+ 2: { gap: "$2" },
3673
+ 4: { gap: "$4" },
3674
+ 6: { gap: "$6" },
3675
+ 8: { gap: "$8" },
3676
+ 10: { gap: "$10" },
3677
+ 12: { gap: "$12" },
3678
+ 14: { gap: "$14" },
3679
+ 16: { gap: "$16" },
3680
+ 20: { gap: "$20" },
3681
+ 22: { gap: "$22" },
3682
+ 24: { gap: "$24" },
3683
+ 32: { gap: "$32" },
3684
+ 36: { gap: "$36" },
3685
+ 40: { gap: "$40" },
3686
+ 48: { gap: "$48" },
3687
+ 56: { gap: "$56" },
3688
+ 64: { gap: "$64" },
3689
+ 72: { gap: "$72" },
3690
+ 80: { gap: "$80" },
3691
+ full: { gap: "$full" }
3692
+ },
3693
+ gapY: {
3694
+ 2: { gap: "$2" },
3695
+ 4: { gap: "$4" },
3696
+ 6: { gap: "$6" },
3697
+ 8: { gap: "$8" },
3698
+ 10: { gap: "$10" },
3699
+ 12: { gap: "$12" },
3700
+ 14: { gap: "$14" },
3701
+ 16: { gap: "$16" },
3702
+ 20: { gap: "$20" },
3703
+ 22: { gap: "$22" },
3704
+ 24: { gap: "$24" },
3705
+ 32: { gap: "$32" },
3706
+ 36: { gap: "$36" },
3707
+ 40: { gap: "$40" },
3708
+ 48: { gap: "$48" },
3709
+ 56: { gap: "$56" },
3710
+ 64: { gap: "$64" },
3711
+ 72: { gap: "$72" },
3712
+ 80: { gap: "$80" },
3713
+ full: { gap: "$full" }
3714
+ }
3715
+ },
3716
+ defaultVariants: {
3717
+ gap: 10
3718
+ }
3719
+ });
3720
+ function Grid(_a) {
3721
+ var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
3722
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(GridStyled, __spreadProps(__spreadValues({}, props), { children }));
3723
+ }
3724
+
3725
+ // src/components/Container.tsx
3726
+ var import_themes18 = require("@radix-ui/themes");
3727
+ var import_jsx_runtime18 = require("react/jsx-runtime");
3728
+ var ContainerStyled = styled(import_themes18.Container, {
3729
+ variants: {
3730
+ size: {
3731
+ xs: { maxWidth: "576px" },
3732
+ sm: { minWidth: "577px", maxWidth: "767px" },
3733
+ md: { mixWidth: "768px", maxWidth: "991px" },
3734
+ lg: { mixWidth: "992px", maxWidth: "1199px" },
3735
+ xl: { mixWidth: "1200px", maxWidth: "1399px" },
3736
+ xxl: { mixWidth: "1400px" },
3737
+ responsive: { width: "100%", maxWidth: "100%", minWidth: "100%" }
3738
+ },
3739
+ display: {
3740
+ none: { display: "none" },
3741
+ initial: { display: "initial" }
3742
+ },
3743
+ align: {
3744
+ left: { marginLeft: 0, marginRight: "auto" },
3745
+ center: { marginLeft: "auto", marginRight: "auto" },
3746
+ right: { marginLeft: "auto", marginRight: 0 }
3747
+ }
3748
+ },
3749
+ defaultVariants: {
3750
+ size: "md",
3751
+ align: "left",
3752
+ display: "initial"
3753
+ }
3754
+ });
3755
+ function Container(_a) {
3756
+ var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
3757
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(ContainerStyled, __spreadProps(__spreadValues({}, props), { children }));
3758
+ }
3759
+
3760
+ // src/components/Section.tsx
3761
+ var import_themes19 = require("@radix-ui/themes");
3762
+ var import_jsx_runtime19 = require("react/jsx-runtime");
3763
+ var SectionStyled = styled(import_themes19.Section, {
3764
+ variants: {
3765
+ size: {
3766
+ xs: { maxWidth: "576px" },
3767
+ sm: { minWidth: "577px", maxWidth: "767px" },
3768
+ md: { mixWidth: "768px", maxWidth: "991px" },
3769
+ lg: { mixWidth: "992px", maxWidth: "1199px" },
3770
+ xl: { mixWidth: "1200px", maxWidth: "1399px" },
3771
+ xxl: { mixWidth: "1400px" },
3772
+ responsive: { width: "100%", maxWidth: "100%", minWidth: "100%" }
3773
+ },
3774
+ display: {
3775
+ none: { display: "none" },
3776
+ initial: { display: "initial" }
3777
+ }
3778
+ },
3779
+ defaultVariants: {
3780
+ size: "md",
3781
+ display: "initial"
3782
+ }
3783
+ });
3784
+ function Section(_a) {
3785
+ var _b = _a, { children } = _b, props = __objRest(_b, ["children"]);
3786
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(SectionStyled, __spreadProps(__spreadValues({}, props), { children }));
3787
+ }
3227
3788
  // Annotate the CommonJS export names for ESM import in node:
3228
3789
  0 && (module.exports = {
3790
+ Alert,
3791
+ AlertDialogCompleteStyled,
3792
+ AlertDialogDescriptionStyled,
3793
+ AlertDialogRowStyled,
3794
+ AlertDialogSimpleStyled,
3795
+ AlertDialogSubtitleStyled,
3796
+ AlertDialogTitleStyled,
3797
+ AlertDialoghrStyled,
3229
3798
  Avatar,
3230
3799
  AvatarStyled,
3231
3800
  Badge,
3232
3801
  BadgeStyled,
3233
- BadgeText,
3234
- BodyText,
3235
3802
  Box,
3236
3803
  Button,
3237
3804
  ButtonGroup,
@@ -3239,29 +3806,43 @@ function Badge(_a) {
3239
3806
  ButtonItem,
3240
3807
  ButtonItemStyled,
3241
3808
  ButtonStyled,
3242
- CaptionText,
3243
3809
  CheckboxGroup,
3244
3810
  CheckboxGroupStyled,
3245
3811
  CheckboxItem,
3246
- DisplayText,
3812
+ Container,
3813
+ ContainerStyled,
3247
3814
  DropdownMenu,
3248
3815
  DropdownMenuItem,
3249
3816
  Filter,
3250
3817
  FilterItem,
3251
3818
  Flex,
3252
- Headline,
3819
+ FlexStyled,
3820
+ Grid,
3821
+ GridStyled,
3253
3822
  Icon,
3254
- Label,
3823
+ Modal,
3824
+ ModalContentStyled,
3825
+ ModalStyled,
3826
+ ModalTitleStyled,
3255
3827
  RadioGroup,
3256
3828
  RadioGroupStyled,
3257
3829
  RadioItem,
3258
- Subtitle,
3830
+ Section,
3831
+ SectionStyled,
3832
+ Step,
3833
+ StepContent,
3834
+ StepList,
3835
+ StepStyled,
3836
+ StepTrigger,
3837
+ StepWrapper,
3838
+ Switch,
3839
+ SwitchStyled,
3259
3840
  Text,
3260
3841
  TextField,
3261
3842
  TextFieldSlot,
3262
3843
  TextFieldSlotStyled,
3263
3844
  TextFieldStyled,
3264
- TooltipText
3845
+ TextStyle
3265
3846
  });
3266
3847
  /*! Bundled license information:
3267
3848