@orfium/ictinus 5.43.5 → 5.43.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/.turbo/turbo-build.log +17 -17
  2. package/CHANGELOG.md +6 -0
  3. package/dist/package.json.d.ts +1 -1
  4. package/dist/package.json.js +1 -1
  5. package/dist/sprinkles/properties.css.js +1 -1
  6. package/dist/sprinkles/properties.css.ts.vanilla.css +1 -1
  7. package/dist/src/actions/ActionsContent.d.ts +65 -64
  8. package/dist/src/actions/ActionsRoot.d.ts +65 -64
  9. package/dist/src/data-table/DataTable.d.ts +65 -64
  10. package/dist/src/data-table/DataTableBody.d.ts +67 -64
  11. package/dist/src/data-table/DataTableCounter.d.ts +2 -1
  12. package/dist/src/data-table/DataTableHeader.d.ts +65 -64
  13. package/dist/src/data-table/DataTableRow.d.ts +135 -133
  14. package/dist/src/data-table/DataTableRowContext.d.ts +28 -5
  15. package/dist/src/skeleton/Skeleton.css.d.ts +5 -0
  16. package/dist/src/skeleton/Skeleton.d.ts +427 -0
  17. package/dist/src/skeleton/index.d.ts +1 -0
  18. package/dist/src/sprinkles/properties.css.d.ts +280 -0
  19. package/dist/src/sprinkles/sprinkles.d.ts +597 -56
  20. package/dist/src/vanilla/Box/Box.d.ts +65 -64
  21. package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
  22. package/dist/src/vanilla/Table/Table.d.ts +65 -64
  23. package/dist/src/vanilla/Table/TableBody.d.ts +65 -64
  24. package/dist/src/vanilla/Table/TableCell.d.ts +65 -64
  25. package/dist/src/vanilla/Table/TableFooter.d.ts +65 -64
  26. package/dist/src/vanilla/Table/TableHeader.d.ts +65 -64
  27. package/dist/src/vanilla/Table/TableHeaderCell.d.ts +65 -64
  28. package/dist/src/vanilla/Table/TableRow.d.ts +65 -64
  29. package/dist/src/vanilla/Text/Text.d.ts +65 -64
  30. package/dist/src/vanilla/index.d.ts +2 -0
  31. package/dist/vanilla/Dropdown/Dropdown-css.js +2 -2
  32. package/dist/vanilla/Menu/Menu-css.js +3 -3
  33. package/dist/vanilla/Popover/Popover-css.js +2 -2
  34. package/dist/vanilla/Table/Table-css.js +3 -3
  35. package/dist/vanilla/Table/TableCell-css.js +3 -3
  36. package/dist/vanilla/Table/TableHeaderCell-css.js +3 -3
  37. package/dist/vanilla/Table/TableRow-css.js +2 -2
  38. package/dist/vanilla/Tooltip/Tooltip-css.js +2 -2
  39. package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-CNzX69JK.css +6 -0
  40. package/dist/vanilla/assets/src/sprinkles/{properties.css.ts.vanilla-C8hqLKur.css → properties.css.ts.vanilla-CRlOneec.css} +3613 -3233
  41. package/dist/vanilla/index.d.ts +1296 -852
  42. package/dist/vanilla/index.js +2 -0
  43. package/dist/vanilla/package.json.js +1 -1
  44. package/dist/vanilla/src/actions/ActionsContent-css.js +2 -2
  45. package/dist/vanilla/src/data-table/DataTableBody-css.js +3 -3
  46. package/dist/vanilla/src/data-table/DataTableBody.js +26 -4
  47. package/dist/vanilla/src/data-table/DataTableCounter.js +5 -3
  48. package/dist/vanilla/src/data-table/DataTableHeaderCell-css.js +3 -3
  49. package/dist/vanilla/src/data-table/DataTableRowContext.js +29 -2
  50. package/dist/vanilla/src/skeleton/Skeleton-css.js +9 -0
  51. package/dist/vanilla/src/skeleton/Skeleton.js +26 -0
  52. package/dist/vanilla/src/sprinkles/properties-css.js +4 -4
  53. package/package.json +1 -1
  54. package/src/components/Controls/CheckBox/__snapshots__/CheckBox.test.tsx.snap +1 -1
  55. package/src/components/DatePicker/OverlayComponent/__snapshots__/OverlayComponent.test.tsx.snap +4 -4
  56. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/__snapshots__/MonthWrapper.test.tsx.snap +2 -2
  57. package/src/components/TopAppBar/__snapshots__/TopAppBar.test.tsx.snap +2 -2
  58. package/src/data-table/DataTableBody.tsx +46 -15
  59. package/src/data-table/DataTableCounter.tsx +13 -4
  60. package/src/data-table/DataTableRow.tsx +4 -5
  61. package/src/data-table/DataTableRowContext.tsx +33 -4
  62. package/src/skeleton/Skeleton.css.ts +19 -0
  63. package/src/skeleton/Skeleton.tsx +34 -0
  64. package/src/skeleton/index.ts +1 -0
  65. package/src/sprinkles/properties.css.ts +87 -6
  66. package/src/vanilla/index.ts +2 -0
@@ -28,6 +28,7 @@ export declare const sprinkles: ((props: {
28
28
  wordBreak?: "break-word" | "break-all";
29
29
  wordWrap?: "normal" | "break-word";
30
30
  textAlign?: "center" | "start" | "end" | "justify";
31
+ animation?: "ping" | "pulse";
31
32
  transitionProperty?: "all" | "none" | "default" | "opacity" | "transform" | "colors" | "shadow";
32
33
  transitionTimingFunction?: "ease" | "linear" | "in" | "out" | "inOut";
33
34
  transitionDuration?: "150ms" | "200ms";
@@ -84,41 +85,41 @@ export declare const sprinkles: ((props: {
84
85
  lg?: "none" | "1" | "auto" | "initial";
85
86
  xl?: "none" | "1" | "auto" | "initial";
86
87
  };
87
- width?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
88
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
89
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
90
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
91
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
88
+ width?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
89
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
90
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
91
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
92
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
92
93
  };
93
- height?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
94
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
95
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
96
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
97
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
94
+ height?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
95
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
96
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
97
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
98
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
98
99
  };
99
- minWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
100
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
101
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
102
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
103
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
100
+ minWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
101
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
102
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
103
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
104
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
104
105
  };
105
- minHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
106
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
107
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
108
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
109
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
106
+ minHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
107
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
108
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
109
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
110
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
110
111
  };
111
- maxWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
112
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
113
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
114
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
115
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
112
+ maxWidth?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
113
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
114
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
115
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
116
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
116
117
  };
117
- maxHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
118
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
119
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
120
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
121
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
118
+ maxHeight?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
119
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
120
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
121
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
122
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
122
123
  };
123
124
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
124
125
  base?: "row" | "column" | "row-reverse" | "column-reverse";
@@ -234,35 +235,35 @@ export declare const sprinkles: ((props: {
234
235
  lg?: "0" | "1" | "3" | "2";
235
236
  xl?: "0" | "1" | "3" | "2";
236
237
  };
237
- maxH?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
238
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
239
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
240
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
241
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
238
+ maxH?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
239
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
240
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
241
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
242
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
242
243
  };
243
- maxW?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
244
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
245
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
246
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
247
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
244
+ maxW?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
245
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
246
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
247
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
248
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
248
249
  };
249
- size?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
250
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
251
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
252
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
253
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
250
+ size?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
251
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
252
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
253
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
254
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
254
255
  };
255
- w?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
256
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
257
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
258
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
259
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
256
+ w?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
257
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
258
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
259
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
260
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
260
261
  };
261
- h?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
262
- base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
263
- md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
264
- lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
265
- xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
262
+ h?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22" | {
263
+ base?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
264
+ md?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
265
+ lg?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
266
+ xl?: "screen" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "15" | "18" | "2" | "10" | "7" | "full" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "11" | "13" | "14" | "16" | "17" | "19" | "20" | "21" | "22";
266
267
  };
267
268
  p?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "md" | "lg" | "xl" | "11" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
268
269
  base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "md" | "lg" | "xl" | "11" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -410,7 +411,7 @@ export declare const sprinkles: ((props: {
410
411
  hover?: "alt" | "default" | "transparent" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "inverted" | "invertedAlt" | "palette.primary" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.tertiary" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.error" | "palette.error.muted" | "palette.error.contrast" | "palette.warning" | "palette.warning.muted" | "palette.warning.contrast" | "palette.success" | "palette.success.muted" | "palette.success.contrast" | "palette.upsell" | "palette.upsell.muted" | "palette.upsell.contrast" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.default" | "backdrop.alt";
411
412
  };
412
413
  }) => string) & {
413
- properties: Set<"minHeight" | "maxHeight" | "minWidth" | "maxWidth" | "height" | "width" | "color" | "p" | "size" | "border" | "fontSize" | "lineHeight" | "letterSpacing" | "fontFamily" | "fontStyle" | "fontWeight" | "alignItems" | "alignSelf" | "backgroundColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexShrink" | "flexWrap" | "isolation" | "justifyContent" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "objectFit" | "outlineColor" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textTransform" | "touchAction" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "userSelect" | "visibility" | "whiteSpace" | "wordBreak" | "wordWrap" | "zIndex" | "borderColor" | "borderRadius" | "borderStyle" | "flex" | "gap" | "margin" | "overflow" | "padding" | "placeItems" | "textDecoration" | "gridGap" | "maxH" | "maxW" | "w" | "h" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "borderB" | "borderL" | "borderR" | "borderT" | "typography" | "shadow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "bg">;
414
+ properties: Set<"minHeight" | "maxHeight" | "minWidth" | "maxWidth" | "height" | "width" | "color" | "p" | "size" | "border" | "fontSize" | "lineHeight" | "letterSpacing" | "fontFamily" | "fontStyle" | "fontWeight" | "alignItems" | "alignSelf" | "backgroundColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexShrink" | "flexWrap" | "isolation" | "justifyContent" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "objectFit" | "outlineColor" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "textAlign" | "textTransform" | "touchAction" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "userSelect" | "visibility" | "whiteSpace" | "wordBreak" | "wordWrap" | "zIndex" | "animation" | "borderColor" | "borderRadius" | "borderStyle" | "flex" | "gap" | "margin" | "overflow" | "padding" | "placeItems" | "textDecoration" | "gridGap" | "maxH" | "maxW" | "w" | "h" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "borderB" | "borderL" | "borderR" | "borderT" | "typography" | "shadow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "bg">;
414
415
  };
415
416
  export declare const mapResponsiveValue: <OutputValue extends string | number | boolean | null | undefined, Value extends import('@vanilla-extract/sprinkles').ConditionalValue<{
416
417
  conditions: {
@@ -898,6 +899,51 @@ export declare const mapResponsiveValue: <OutputValue extends string | number |
898
899
  xl: string;
899
900
  };
900
901
  };
902
+ "1/2": {
903
+ defaultClass: string;
904
+ conditions: {
905
+ base: string;
906
+ md: string;
907
+ lg: string;
908
+ xl: string;
909
+ };
910
+ };
911
+ "1/3": {
912
+ defaultClass: string;
913
+ conditions: {
914
+ base: string;
915
+ md: string;
916
+ lg: string;
917
+ xl: string;
918
+ };
919
+ };
920
+ "2/3": {
921
+ defaultClass: string;
922
+ conditions: {
923
+ base: string;
924
+ md: string;
925
+ lg: string;
926
+ xl: string;
927
+ };
928
+ };
929
+ "1/4": {
930
+ defaultClass: string;
931
+ conditions: {
932
+ base: string;
933
+ md: string;
934
+ lg: string;
935
+ xl: string;
936
+ };
937
+ };
938
+ "3/4": {
939
+ defaultClass: string;
940
+ conditions: {
941
+ base: string;
942
+ md: string;
943
+ lg: string;
944
+ xl: string;
945
+ };
946
+ };
901
947
  11: {
902
948
  defaultClass: string;
903
949
  conditions: {
@@ -1127,6 +1173,51 @@ export declare const mapResponsiveValue: <OutputValue extends string | number |
1127
1173
  xl: string;
1128
1174
  };
1129
1175
  };
1176
+ "1/2": {
1177
+ defaultClass: string;
1178
+ conditions: {
1179
+ base: string;
1180
+ md: string;
1181
+ lg: string;
1182
+ xl: string;
1183
+ };
1184
+ };
1185
+ "1/3": {
1186
+ defaultClass: string;
1187
+ conditions: {
1188
+ base: string;
1189
+ md: string;
1190
+ lg: string;
1191
+ xl: string;
1192
+ };
1193
+ };
1194
+ "2/3": {
1195
+ defaultClass: string;
1196
+ conditions: {
1197
+ base: string;
1198
+ md: string;
1199
+ lg: string;
1200
+ xl: string;
1201
+ };
1202
+ };
1203
+ "1/4": {
1204
+ defaultClass: string;
1205
+ conditions: {
1206
+ base: string;
1207
+ md: string;
1208
+ lg: string;
1209
+ xl: string;
1210
+ };
1211
+ };
1212
+ "3/4": {
1213
+ defaultClass: string;
1214
+ conditions: {
1215
+ base: string;
1216
+ md: string;
1217
+ lg: string;
1218
+ xl: string;
1219
+ };
1220
+ };
1130
1221
  11: {
1131
1222
  defaultClass: string;
1132
1223
  conditions: {
@@ -1356,6 +1447,51 @@ export declare const mapResponsiveValue: <OutputValue extends string | number |
1356
1447
  xl: string;
1357
1448
  };
1358
1449
  };
1450
+ "1/2": {
1451
+ defaultClass: string;
1452
+ conditions: {
1453
+ base: string;
1454
+ md: string;
1455
+ lg: string;
1456
+ xl: string;
1457
+ };
1458
+ };
1459
+ "1/3": {
1460
+ defaultClass: string;
1461
+ conditions: {
1462
+ base: string;
1463
+ md: string;
1464
+ lg: string;
1465
+ xl: string;
1466
+ };
1467
+ };
1468
+ "2/3": {
1469
+ defaultClass: string;
1470
+ conditions: {
1471
+ base: string;
1472
+ md: string;
1473
+ lg: string;
1474
+ xl: string;
1475
+ };
1476
+ };
1477
+ "1/4": {
1478
+ defaultClass: string;
1479
+ conditions: {
1480
+ base: string;
1481
+ md: string;
1482
+ lg: string;
1483
+ xl: string;
1484
+ };
1485
+ };
1486
+ "3/4": {
1487
+ defaultClass: string;
1488
+ conditions: {
1489
+ base: string;
1490
+ md: string;
1491
+ lg: string;
1492
+ xl: string;
1493
+ };
1494
+ };
1359
1495
  11: {
1360
1496
  defaultClass: string;
1361
1497
  conditions: {
@@ -1585,6 +1721,51 @@ export declare const mapResponsiveValue: <OutputValue extends string | number |
1585
1721
  xl: string;
1586
1722
  };
1587
1723
  };
1724
+ "1/2": {
1725
+ defaultClass: string;
1726
+ conditions: {
1727
+ base: string;
1728
+ md: string;
1729
+ lg: string;
1730
+ xl: string;
1731
+ };
1732
+ };
1733
+ "1/3": {
1734
+ defaultClass: string;
1735
+ conditions: {
1736
+ base: string;
1737
+ md: string;
1738
+ lg: string;
1739
+ xl: string;
1740
+ };
1741
+ };
1742
+ "2/3": {
1743
+ defaultClass: string;
1744
+ conditions: {
1745
+ base: string;
1746
+ md: string;
1747
+ lg: string;
1748
+ xl: string;
1749
+ };
1750
+ };
1751
+ "1/4": {
1752
+ defaultClass: string;
1753
+ conditions: {
1754
+ base: string;
1755
+ md: string;
1756
+ lg: string;
1757
+ xl: string;
1758
+ };
1759
+ };
1760
+ "3/4": {
1761
+ defaultClass: string;
1762
+ conditions: {
1763
+ base: string;
1764
+ md: string;
1765
+ lg: string;
1766
+ xl: string;
1767
+ };
1768
+ };
1588
1769
  11: {
1589
1770
  defaultClass: string;
1590
1771
  conditions: {
@@ -1814,6 +1995,51 @@ export declare const mapResponsiveValue: <OutputValue extends string | number |
1814
1995
  xl: string;
1815
1996
  };
1816
1997
  };
1998
+ "1/2": {
1999
+ defaultClass: string;
2000
+ conditions: {
2001
+ base: string;
2002
+ md: string;
2003
+ lg: string;
2004
+ xl: string;
2005
+ };
2006
+ };
2007
+ "1/3": {
2008
+ defaultClass: string;
2009
+ conditions: {
2010
+ base: string;
2011
+ md: string;
2012
+ lg: string;
2013
+ xl: string;
2014
+ };
2015
+ };
2016
+ "2/3": {
2017
+ defaultClass: string;
2018
+ conditions: {
2019
+ base: string;
2020
+ md: string;
2021
+ lg: string;
2022
+ xl: string;
2023
+ };
2024
+ };
2025
+ "1/4": {
2026
+ defaultClass: string;
2027
+ conditions: {
2028
+ base: string;
2029
+ md: string;
2030
+ lg: string;
2031
+ xl: string;
2032
+ };
2033
+ };
2034
+ "3/4": {
2035
+ defaultClass: string;
2036
+ conditions: {
2037
+ base: string;
2038
+ md: string;
2039
+ lg: string;
2040
+ xl: string;
2041
+ };
2042
+ };
1817
2043
  11: {
1818
2044
  defaultClass: string;
1819
2045
  conditions: {
@@ -2043,6 +2269,51 @@ export declare const mapResponsiveValue: <OutputValue extends string | number |
2043
2269
  xl: string;
2044
2270
  };
2045
2271
  };
2272
+ "1/2": {
2273
+ defaultClass: string;
2274
+ conditions: {
2275
+ base: string;
2276
+ md: string;
2277
+ lg: string;
2278
+ xl: string;
2279
+ };
2280
+ };
2281
+ "1/3": {
2282
+ defaultClass: string;
2283
+ conditions: {
2284
+ base: string;
2285
+ md: string;
2286
+ lg: string;
2287
+ xl: string;
2288
+ };
2289
+ };
2290
+ "2/3": {
2291
+ defaultClass: string;
2292
+ conditions: {
2293
+ base: string;
2294
+ md: string;
2295
+ lg: string;
2296
+ xl: string;
2297
+ };
2298
+ };
2299
+ "1/4": {
2300
+ defaultClass: string;
2301
+ conditions: {
2302
+ base: string;
2303
+ md: string;
2304
+ lg: string;
2305
+ xl: string;
2306
+ };
2307
+ };
2308
+ "3/4": {
2309
+ defaultClass: string;
2310
+ conditions: {
2311
+ base: string;
2312
+ md: string;
2313
+ lg: string;
2314
+ xl: string;
2315
+ };
2316
+ };
2046
2317
  11: {
2047
2318
  defaultClass: string;
2048
2319
  conditions: {
@@ -5483,6 +5754,51 @@ export declare const normalizeResponsiveValue: <Value extends string | number |
5483
5754
  xl: string;
5484
5755
  };
5485
5756
  };
5757
+ "1/2": {
5758
+ defaultClass: string;
5759
+ conditions: {
5760
+ base: string;
5761
+ md: string;
5762
+ lg: string;
5763
+ xl: string;
5764
+ };
5765
+ };
5766
+ "1/3": {
5767
+ defaultClass: string;
5768
+ conditions: {
5769
+ base: string;
5770
+ md: string;
5771
+ lg: string;
5772
+ xl: string;
5773
+ };
5774
+ };
5775
+ "2/3": {
5776
+ defaultClass: string;
5777
+ conditions: {
5778
+ base: string;
5779
+ md: string;
5780
+ lg: string;
5781
+ xl: string;
5782
+ };
5783
+ };
5784
+ "1/4": {
5785
+ defaultClass: string;
5786
+ conditions: {
5787
+ base: string;
5788
+ md: string;
5789
+ lg: string;
5790
+ xl: string;
5791
+ };
5792
+ };
5793
+ "3/4": {
5794
+ defaultClass: string;
5795
+ conditions: {
5796
+ base: string;
5797
+ md: string;
5798
+ lg: string;
5799
+ xl: string;
5800
+ };
5801
+ };
5486
5802
  11: {
5487
5803
  defaultClass: string;
5488
5804
  conditions: {
@@ -5712,6 +6028,51 @@ export declare const normalizeResponsiveValue: <Value extends string | number |
5712
6028
  xl: string;
5713
6029
  };
5714
6030
  };
6031
+ "1/2": {
6032
+ defaultClass: string;
6033
+ conditions: {
6034
+ base: string;
6035
+ md: string;
6036
+ lg: string;
6037
+ xl: string;
6038
+ };
6039
+ };
6040
+ "1/3": {
6041
+ defaultClass: string;
6042
+ conditions: {
6043
+ base: string;
6044
+ md: string;
6045
+ lg: string;
6046
+ xl: string;
6047
+ };
6048
+ };
6049
+ "2/3": {
6050
+ defaultClass: string;
6051
+ conditions: {
6052
+ base: string;
6053
+ md: string;
6054
+ lg: string;
6055
+ xl: string;
6056
+ };
6057
+ };
6058
+ "1/4": {
6059
+ defaultClass: string;
6060
+ conditions: {
6061
+ base: string;
6062
+ md: string;
6063
+ lg: string;
6064
+ xl: string;
6065
+ };
6066
+ };
6067
+ "3/4": {
6068
+ defaultClass: string;
6069
+ conditions: {
6070
+ base: string;
6071
+ md: string;
6072
+ lg: string;
6073
+ xl: string;
6074
+ };
6075
+ };
5715
6076
  11: {
5716
6077
  defaultClass: string;
5717
6078
  conditions: {
@@ -5941,6 +6302,51 @@ export declare const normalizeResponsiveValue: <Value extends string | number |
5941
6302
  xl: string;
5942
6303
  };
5943
6304
  };
6305
+ "1/2": {
6306
+ defaultClass: string;
6307
+ conditions: {
6308
+ base: string;
6309
+ md: string;
6310
+ lg: string;
6311
+ xl: string;
6312
+ };
6313
+ };
6314
+ "1/3": {
6315
+ defaultClass: string;
6316
+ conditions: {
6317
+ base: string;
6318
+ md: string;
6319
+ lg: string;
6320
+ xl: string;
6321
+ };
6322
+ };
6323
+ "2/3": {
6324
+ defaultClass: string;
6325
+ conditions: {
6326
+ base: string;
6327
+ md: string;
6328
+ lg: string;
6329
+ xl: string;
6330
+ };
6331
+ };
6332
+ "1/4": {
6333
+ defaultClass: string;
6334
+ conditions: {
6335
+ base: string;
6336
+ md: string;
6337
+ lg: string;
6338
+ xl: string;
6339
+ };
6340
+ };
6341
+ "3/4": {
6342
+ defaultClass: string;
6343
+ conditions: {
6344
+ base: string;
6345
+ md: string;
6346
+ lg: string;
6347
+ xl: string;
6348
+ };
6349
+ };
5944
6350
  11: {
5945
6351
  defaultClass: string;
5946
6352
  conditions: {
@@ -6170,6 +6576,51 @@ export declare const normalizeResponsiveValue: <Value extends string | number |
6170
6576
  xl: string;
6171
6577
  };
6172
6578
  };
6579
+ "1/2": {
6580
+ defaultClass: string;
6581
+ conditions: {
6582
+ base: string;
6583
+ md: string;
6584
+ lg: string;
6585
+ xl: string;
6586
+ };
6587
+ };
6588
+ "1/3": {
6589
+ defaultClass: string;
6590
+ conditions: {
6591
+ base: string;
6592
+ md: string;
6593
+ lg: string;
6594
+ xl: string;
6595
+ };
6596
+ };
6597
+ "2/3": {
6598
+ defaultClass: string;
6599
+ conditions: {
6600
+ base: string;
6601
+ md: string;
6602
+ lg: string;
6603
+ xl: string;
6604
+ };
6605
+ };
6606
+ "1/4": {
6607
+ defaultClass: string;
6608
+ conditions: {
6609
+ base: string;
6610
+ md: string;
6611
+ lg: string;
6612
+ xl: string;
6613
+ };
6614
+ };
6615
+ "3/4": {
6616
+ defaultClass: string;
6617
+ conditions: {
6618
+ base: string;
6619
+ md: string;
6620
+ lg: string;
6621
+ xl: string;
6622
+ };
6623
+ };
6173
6624
  11: {
6174
6625
  defaultClass: string;
6175
6626
  conditions: {
@@ -6399,6 +6850,51 @@ export declare const normalizeResponsiveValue: <Value extends string | number |
6399
6850
  xl: string;
6400
6851
  };
6401
6852
  };
6853
+ "1/2": {
6854
+ defaultClass: string;
6855
+ conditions: {
6856
+ base: string;
6857
+ md: string;
6858
+ lg: string;
6859
+ xl: string;
6860
+ };
6861
+ };
6862
+ "1/3": {
6863
+ defaultClass: string;
6864
+ conditions: {
6865
+ base: string;
6866
+ md: string;
6867
+ lg: string;
6868
+ xl: string;
6869
+ };
6870
+ };
6871
+ "2/3": {
6872
+ defaultClass: string;
6873
+ conditions: {
6874
+ base: string;
6875
+ md: string;
6876
+ lg: string;
6877
+ xl: string;
6878
+ };
6879
+ };
6880
+ "1/4": {
6881
+ defaultClass: string;
6882
+ conditions: {
6883
+ base: string;
6884
+ md: string;
6885
+ lg: string;
6886
+ xl: string;
6887
+ };
6888
+ };
6889
+ "3/4": {
6890
+ defaultClass: string;
6891
+ conditions: {
6892
+ base: string;
6893
+ md: string;
6894
+ lg: string;
6895
+ xl: string;
6896
+ };
6897
+ };
6402
6898
  11: {
6403
6899
  defaultClass: string;
6404
6900
  conditions: {
@@ -6628,6 +7124,51 @@ export declare const normalizeResponsiveValue: <Value extends string | number |
6628
7124
  xl: string;
6629
7125
  };
6630
7126
  };
7127
+ "1/2": {
7128
+ defaultClass: string;
7129
+ conditions: {
7130
+ base: string;
7131
+ md: string;
7132
+ lg: string;
7133
+ xl: string;
7134
+ };
7135
+ };
7136
+ "1/3": {
7137
+ defaultClass: string;
7138
+ conditions: {
7139
+ base: string;
7140
+ md: string;
7141
+ lg: string;
7142
+ xl: string;
7143
+ };
7144
+ };
7145
+ "2/3": {
7146
+ defaultClass: string;
7147
+ conditions: {
7148
+ base: string;
7149
+ md: string;
7150
+ lg: string;
7151
+ xl: string;
7152
+ };
7153
+ };
7154
+ "1/4": {
7155
+ defaultClass: string;
7156
+ conditions: {
7157
+ base: string;
7158
+ md: string;
7159
+ lg: string;
7160
+ xl: string;
7161
+ };
7162
+ };
7163
+ "3/4": {
7164
+ defaultClass: string;
7165
+ conditions: {
7166
+ base: string;
7167
+ md: string;
7168
+ lg: string;
7169
+ xl: string;
7170
+ };
7171
+ };
6631
7172
  11: {
6632
7173
  defaultClass: string;
6633
7174
  conditions: {