@orfium/ictinus 5.43.5 → 5.43.7

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 (67) hide show
  1. package/.turbo/turbo-build.log +16 -16
  2. package/CHANGELOG.md +12 -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 +28 -6
  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/DataTableRow.js +6 -1
  50. package/dist/vanilla/src/data-table/DataTableRowContext.js +29 -2
  51. package/dist/vanilla/src/skeleton/Skeleton-css.js +9 -0
  52. package/dist/vanilla/src/skeleton/Skeleton.js +26 -0
  53. package/dist/vanilla/src/sprinkles/properties-css.js +4 -4
  54. package/package.json +1 -1
  55. package/src/components/Controls/CheckBox/__snapshots__/CheckBox.test.tsx.snap +1 -1
  56. package/src/components/DatePicker/OverlayComponent/__snapshots__/OverlayComponent.test.tsx.snap +4 -4
  57. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/__snapshots__/MonthWrapper.test.tsx.snap +2 -2
  58. package/src/components/TopAppBar/__snapshots__/TopAppBar.test.tsx.snap +2 -2
  59. package/src/data-table/DataTableBody.tsx +52 -17
  60. package/src/data-table/DataTableCounter.tsx +13 -4
  61. package/src/data-table/DataTableRow.tsx +17 -7
  62. package/src/data-table/DataTableRowContext.tsx +33 -4
  63. package/src/skeleton/Skeleton.css.ts +19 -0
  64. package/src/skeleton/Skeleton.tsx +34 -0
  65. package/src/skeleton/index.ts +1 -0
  66. package/src/sprinkles/properties.css.ts +87 -6
  67. package/src/vanilla/index.ts +2 -0
@@ -36,6 +36,7 @@ export declare const Text: import('react').ForwardRefExoticComponent<Omit<{
36
36
  wordBreak?: "break-word" | "break-all";
37
37
  wordWrap?: "normal" | "break-word";
38
38
  textAlign?: "center" | "start" | "end" | "justify";
39
+ animation?: "ping" | "pulse";
39
40
  transitionProperty?: "all" | "none" | "default" | "opacity" | "transform" | "colors" | "shadow";
40
41
  transitionTimingFunction?: "ease" | "linear" | "in" | "out" | "inOut";
41
42
  transitionDuration?: "150ms" | "200ms";
@@ -92,41 +93,41 @@ export declare const Text: import('react').ForwardRefExoticComponent<Omit<{
92
93
  lg?: "none" | "1" | "auto" | "initial";
93
94
  xl?: "none" | "1" | "auto" | "initial";
94
95
  };
95
- 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" | {
96
- 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";
97
- 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";
98
- 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";
99
- 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
- };
101
- 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" | {
102
- 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";
103
- 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";
104
- 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";
105
- 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
- };
107
- 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" | {
108
- 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";
109
- 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";
110
- 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";
111
- 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
- };
113
- 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" | {
114
- 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";
115
- 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";
116
- 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";
117
- 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
- };
119
- 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" | {
120
- 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";
121
- 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";
122
- 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";
123
- 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";
124
- };
125
- 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" | {
126
- 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";
127
- 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";
128
- 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";
129
- 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";
96
+ 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" | {
97
+ 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";
98
+ 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";
99
+ 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";
100
+ 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";
101
+ };
102
+ 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" | {
103
+ 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";
104
+ 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";
105
+ 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";
106
+ 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";
107
+ };
108
+ 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" | {
109
+ 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";
110
+ 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";
111
+ 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";
112
+ 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";
113
+ };
114
+ 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" | {
115
+ 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";
116
+ 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";
117
+ 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";
118
+ 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";
119
+ };
120
+ 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" | {
121
+ 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";
122
+ 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";
123
+ 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";
124
+ 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";
125
+ };
126
+ 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" | {
127
+ 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";
128
+ 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";
129
+ 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";
130
+ 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";
130
131
  };
131
132
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
132
133
  base?: "row" | "column" | "row-reverse" | "column-reverse";
@@ -242,35 +243,35 @@ export declare const Text: import('react').ForwardRefExoticComponent<Omit<{
242
243
  lg?: "0" | "1" | "3" | "2";
243
244
  xl?: "0" | "1" | "3" | "2";
244
245
  };
245
- 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" | {
246
- 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";
247
- 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";
248
- 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";
249
- 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
- };
251
- 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" | {
252
- 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";
253
- 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";
254
- 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";
255
- 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
- };
257
- 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" | {
258
- 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";
259
- 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";
260
- 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";
261
- 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
- };
263
- 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" | {
264
- 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";
265
- 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";
266
- 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";
267
- 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";
268
- };
269
- 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" | {
270
- 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";
271
- 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";
272
- 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";
273
- 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";
246
+ 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" | {
247
+ 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";
248
+ 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";
249
+ 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";
250
+ 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";
251
+ };
252
+ 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" | {
253
+ 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";
254
+ 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";
255
+ 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";
256
+ 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";
257
+ };
258
+ 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" | {
259
+ 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";
260
+ 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";
261
+ 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";
262
+ 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";
263
+ };
264
+ 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" | {
265
+ 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";
266
+ 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";
267
+ 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";
268
+ 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";
269
+ };
270
+ 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" | {
271
+ 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";
272
+ 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";
273
+ 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";
274
+ 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";
274
275
  };
275
276
  p?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "md" | "lg" | "xl" | "11" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
276
277
  base?: "none" | "0" | "1" | "3" | "9" | "4" | "6" | "5" | "8" | "12" | "2" | "10" | "7" | "md" | "lg" | "xl" | "11" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -1,6 +1,8 @@
1
1
  export * from '../data-table';
2
2
  export * from '../icon';
3
3
  export * from '../icons';
4
+ export * from '../skeleton';
5
+ export * from '../utils/cn';
4
6
  export * from './Box';
5
7
  export * from './Dialog';
6
8
  export * from './Menu';
@@ -1,8 +1,8 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
5
5
 
6
- var separator = createRuntimeFn({defaultClassName:'_146hxcf1gc _146hxcf1w2',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
6
+ var separator = createRuntimeFn({defaultClassName:'_146hxcf1jq _146hxcf1zi',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
7
7
 
8
8
  export { separator };
@@ -1,10 +1,10 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Menu/Menu.css.ts.vanilla-C4DzWzim.css';
5
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
6
6
 
7
- var item = createRuntimeFn({defaultClassName:'_146hxcf1ag _146hxcf1d0 _146hxcf1fo _146hxcf180 _146hxcf1jo _146hxcf1jw _1ehr8f22',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
8
- var menu = createRuntimeFn({defaultClassName:'_146hxcf2g _146hxcfkg _146hxcf1kp _146hxcf1jt _1ehr8f20',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
7
+ var item = createRuntimeFn({defaultClassName:'_146hxcf1du _146hxcf1ge _146hxcf1j2 _146hxcf1be _146hxcf1n2 _146hxcf1na _1ehr8f22',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
8
+ var menu = createRuntimeFn({defaultClassName:'_146hxcf2i _146hxcfnu _146hxcf1o3 _146hxcf1n7 _1ehr8f20',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
9
9
 
10
10
  export { item, menu };
@@ -1,9 +1,9 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Popover/Popover.css.ts.vanilla-CVYpB1bf.css';
5
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
6
6
 
7
- var popover = createRuntimeFn({defaultClassName:'_146hxcf1jr _146hxcf1ju _146hxcf1ie _146hxcf1h8 _146hxcf1ho _146hxcf1gs _146hxcf1gc _146hxcf1mi _146hxcf1w2 _146hxcf1ji _1y35xlp0',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
7
+ var popover = createRuntimeFn({defaultClassName:'_146hxcf1n5 _146hxcf1n8 _146hxcf1ls _146hxcf1km _146hxcf1l2 _146hxcf1k6 _146hxcf1jq _146hxcf1py _146hxcf1zi _146hxcf1mw _1y35xlp0',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
8
8
 
9
9
  export { popover };
@@ -1,10 +1,10 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Table/Table.css.ts.vanilla-D8zK7RSt.css';
5
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
6
6
 
7
- var table = createRuntimeFn({defaultClassName:'_146hxcf6c _146hxcf232 _146hxcf1k4 ekwznl0',variantClassNames:{layout:{auto:'ekwznl1',fixed:'ekwznl5 ekwznl2'}},defaultVariants:{},compoundVariants:[]});
8
- var wrapper = createRuntimeFn({defaultClassName:'_146hxcf1jq _146hxcf1jt _146hxcf1ie _146hxcfhg _146hxcf1h8 _146hxcf1ho _146hxcf1gs _146hxcf1gc _146hxcf1mi _146hxcf1ia _146hxcf1w2 ekwznl6',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
7
+ var table = createRuntimeFn({defaultClassName:'_146hxcf6e _146hxcf26i _146hxcf1ni ekwznl0',variantClassNames:{layout:{auto:'ekwznl1',fixed:'ekwznl5 ekwznl2'}},defaultVariants:{},compoundVariants:[]});
8
+ var wrapper = createRuntimeFn({defaultClassName:'_146hxcf1n4 _146hxcf1n7 _146hxcf1ls _146hxcfjq _146hxcf1km _146hxcf1l2 _146hxcf1k6 _146hxcf1jq _146hxcf1py _146hxcf1lo _146hxcf1zi ekwznl6',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
9
9
 
10
10
  export { table, wrapper };
@@ -1,10 +1,10 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Table/TableCell.css.ts.vanilla-BmF3z2D_.css';
5
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
6
6
 
7
- var cell = createRuntimeFn({defaultClassName:'_146hxcf1mi _146hxcf1w2 _1p0g5yn0',variantClassNames:{pinned:{false:'_1p0g5yn1',true:'_1p0g5yn2'}},defaultVariants:{},compoundVariants:[]});
8
- var content = createRuntimeFn({defaultClassName:'_146hxcf6c _146hxcf94 _146hxcf4 _146hxcf232 _146hxcf2g _146hxcf1kp _146hxcf1w2 _146hxcfdc _1p0g5yn6',variantClassNames:{size:{sm:'_146hxcf7s',md:'_146hxcf80',lg:'_146hxcf88'},bordered:{true:'_1p0g5yn7'}},defaultVariants:{},compoundVariants:[]});
7
+ var cell = createRuntimeFn({defaultClassName:'_146hxcf1py _146hxcf1zi _1p0g5yn0',variantClassNames:{pinned:{false:'_1p0g5yn1',true:'_1p0g5yn2'}},defaultVariants:{},compoundVariants:[]});
8
+ var content = createRuntimeFn({defaultClassName:'_146hxcf6e _146hxcf9q _146hxcf6 _146hxcf26i _146hxcf2i _146hxcf1o3 _146hxcf1zi _146hxcff2 _1p0g5yn6',variantClassNames:{size:{sm:'_146hxcf8e',md:'_146hxcf8m',lg:'_146hxcf8u'},bordered:{true:'_1p0g5yn7'}},defaultVariants:{},compoundVariants:[]});
9
9
 
10
10
  export { cell, content };
@@ -1,12 +1,12 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Table/TableHeader.css.ts.vanilla-2yw_MsU1.css';
5
5
  import './../assets/src/vanilla/Table/TableRow.css.ts.vanilla-B1NNK8v8.css';
6
6
  import './../assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-CZtubUTB.css';
7
7
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
8
8
 
9
- var cell = createRuntimeFn({defaultClassName:'_146hxcf1w2 _92ef851 _92ef850',variantClassNames:{pinned:{false:'_92ef852',true:'_92ef853'}},defaultVariants:{},compoundVariants:[]});
10
- var content = createRuntimeFn({defaultClassName:'_146hxcf6c _146hxcf94 _146hxcf4 _146hxcf236 _146hxcf2g _146hxcf1kp _146hxcfdc _146hxcf1w2 _92ef857',variantClassNames:{size:{sm:'_146hxcf7s',md:'_146hxcf80',lg:'_146hxcf88'},bordered:{true:'_92ef858'}},defaultVariants:{},compoundVariants:[]});
9
+ var cell = createRuntimeFn({defaultClassName:'_146hxcf1zi _92ef851 _92ef850',variantClassNames:{pinned:{false:'_92ef852',true:'_92ef853'}},defaultVariants:{},compoundVariants:[]});
10
+ var content = createRuntimeFn({defaultClassName:'_146hxcf6e _146hxcf9q _146hxcf6 _146hxcf26m _146hxcf2i _146hxcf1o3 _146hxcff2 _146hxcf1zi _92ef857',variantClassNames:{size:{sm:'_146hxcf8e',md:'_146hxcf8m',lg:'_146hxcf8u'},bordered:{true:'_92ef858'}},defaultVariants:{},compoundVariants:[]});
11
11
 
12
12
  export { cell, content };
@@ -1,9 +1,9 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Table/TableRow.css.ts.vanilla-B1NNK8v8.css';
5
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
6
6
 
7
- var row = createRuntimeFn({defaultClassName:'yjfuqz0 _146hxcf6c yjfuqz1',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
7
+ var row = createRuntimeFn({defaultClassName:'yjfuqz0 _146hxcf6e yjfuqz1',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
8
8
 
9
9
  export { row };
@@ -1,12 +1,12 @@
1
1
  import './../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
2
  import './../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../assets/src/sprinkles/properties.css.ts.vanilla-C8hqLKur.css';
3
+ import './../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
4
  import './../assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-nRPDcOsw.css';
5
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
6
6
 
7
7
  var arrow = createRuntimeFn({defaultClassName:'_1gov5q56',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
8
8
  var arrowInverse = createRuntimeFn({defaultClassName:'_1gov5q58',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
9
9
  var arrowInverseBorder = '_1gov5q5a';
10
- var tooltip = createRuntimeFn({defaultClassName:'_146hxcf13w _146hxcf2g _146hxcfkg _146hxcf1ie _146hxcf1kq _1gov5q50',variantClassNames:{inverse:{true:'_146hxcf1h8 _146hxcf1ho _146hxcf1gs _146hxcf1gc _146hxcf1mm _146hxcf232 _146hxcf1w2 _146hxcf1jj',false:'_146hxcf1mq _146hxcf23u'}},defaultVariants:{},compoundVariants:[]});
10
+ var tooltip = createRuntimeFn({defaultClassName:'_146hxcf17a _146hxcf2i _146hxcfnu _146hxcf1ls _146hxcf1o4 _1gov5q50',variantClassNames:{inverse:{true:'_146hxcf1km _146hxcf1l2 _146hxcf1k6 _146hxcf1jq _146hxcf1q2 _146hxcf26i _146hxcf1zi _146hxcf1mx',false:'_146hxcf1q6 _146hxcf27a'}},defaultVariants:{},compoundVariants:[]});
11
11
 
12
12
  export { arrow, arrowInverse, arrowInverseBorder, tooltip };
@@ -0,0 +1,6 @@
1
+ @layer ictinus._16quzhu0;
2
+ @layer ictinus._16quzhu0 {
3
+ ._1dxg85w0:empty:before {
4
+ content: "\00a0";
5
+ }
6
+ }