@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
@@ -1,5 +1,5 @@
1
1
  import * as react from 'react';
2
- import react__default, { ElementType, ComponentPropsWithoutRef, ComponentProps, Ref, ReactNode } from 'react';
2
+ import react__default, { ElementType, ComponentPropsWithoutRef, ReactElement, ComponentProps, Ref, ReactNode } from 'react';
3
3
  import { RowData, Row } from '@tanstack/react-table';
4
4
  import { Table as Table$1 } from '@tanstack/table-core';
5
5
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
@@ -39,7 +39,8 @@ declare const sprinkles: ((props: {
39
39
  wordBreak?: "break-all" | "break-word";
40
40
  wordWrap?: "break-word" | "normal";
41
41
  textAlign?: "end" | "start" | "center" | "justify";
42
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
42
+ animation?: "ping" | "pulse";
43
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
43
44
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
44
45
  transitionDuration?: "150ms" | "200ms";
45
46
  whiteSpace?: "nowrap";
@@ -95,41 +96,41 @@ declare const sprinkles: ((props: {
95
96
  lg?: "1" | "auto" | "none" | "initial";
96
97
  xl?: "1" | "auto" | "none" | "initial";
97
98
  };
98
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
99
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
100
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
101
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
102
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
103
- };
104
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
105
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
106
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
107
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
108
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
109
- };
110
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
111
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
112
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
113
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
114
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
115
- };
116
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
117
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
118
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
119
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
120
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
121
- };
122
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
123
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
124
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
125
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
126
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
127
- };
128
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
129
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
130
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
131
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
132
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
99
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
100
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
101
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
102
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
103
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
104
+ };
105
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
106
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
107
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
108
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
109
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
110
+ };
111
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
112
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
113
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
114
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
115
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
116
+ };
117
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
118
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
119
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
120
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
121
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
122
+ };
123
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
124
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
125
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
126
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
127
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
128
+ };
129
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
130
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
131
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
132
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
133
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
133
134
  };
134
135
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
135
136
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -245,35 +246,35 @@ declare const sprinkles: ((props: {
245
246
  lg?: "0" | "1" | "2" | "3";
246
247
  xl?: "0" | "1" | "2" | "3";
247
248
  };
248
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
249
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
250
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
251
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
252
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
253
- };
254
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
255
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
256
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
257
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
258
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
259
- };
260
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
261
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
262
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
263
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
264
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
265
- };
266
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
267
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
268
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
269
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
270
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
271
- };
272
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
273
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
274
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
275
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
276
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
249
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
250
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
251
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
252
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
253
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
254
+ };
255
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
256
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
257
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
258
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
259
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
260
+ };
261
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
262
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
263
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
264
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
265
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
266
+ };
267
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
268
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
269
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
270
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
271
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
272
+ };
273
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
274
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
275
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
276
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
277
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
277
278
  };
278
279
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
279
280
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -421,7 +422,7 @@ declare const sprinkles: ((props: {
421
422
  hover?: "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" | "alt" | "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";
422
423
  };
423
424
  }) => string) & {
424
- properties: Set<"borderColor" | "fontFamily" | "typography" | "fontWeight" | "borderStyle" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "boxShadow" | "cursor" | "overflowX" | "overflowY" | "userSelect" | "touchAction" | "fontSize" | "fontStyle" | "lineHeight" | "letterSpacing" | "isolation" | "objectFit" | "pointerEvents" | "textTransform" | "textDecoration" | "visibility" | "wordBreak" | "wordWrap" | "textAlign" | "transitionProperty" | "shadow" | "transitionTimingFunction" | "transitionDuration" | "whiteSpace" | "zIndex" | "overflow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "gap" | "gridGap" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "alignItems" | "alignSelf" | "placeItems" | "justifyContent" | "flexWrap" | "display" | "flex" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "flexDirection" | "flexShrink" | "position" | "borderTopWidth" | "borderRightWidth" | "borderBottomWidth" | "borderLeftWidth" | "maxH" | "maxW" | "size" | "w" | "h" | "p" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "border" | "borderB" | "borderL" | "borderR" | "borderT" | "backgroundColor" | "color" | "outlineColor" | "bg">;
425
+ properties: Set<"borderColor" | "fontFamily" | "typography" | "fontWeight" | "borderStyle" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "boxShadow" | "cursor" | "overflowX" | "overflowY" | "userSelect" | "touchAction" | "fontSize" | "fontStyle" | "lineHeight" | "letterSpacing" | "isolation" | "objectFit" | "pointerEvents" | "textTransform" | "textDecoration" | "visibility" | "wordBreak" | "wordWrap" | "textAlign" | "animation" | "transitionProperty" | "shadow" | "transitionTimingFunction" | "transitionDuration" | "whiteSpace" | "zIndex" | "overflow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "gap" | "gridGap" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "alignItems" | "alignSelf" | "placeItems" | "justifyContent" | "flexWrap" | "display" | "flex" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "flexDirection" | "flexShrink" | "position" | "borderTopWidth" | "borderRightWidth" | "borderBottomWidth" | "borderLeftWidth" | "maxH" | "maxW" | "size" | "w" | "h" | "p" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "border" | "borderB" | "borderL" | "borderR" | "borderT" | "backgroundColor" | "color" | "outlineColor" | "bg">;
425
426
  };
426
427
  type Sprinkles = Parameters<typeof sprinkles>[0];
427
428
 
@@ -464,7 +465,8 @@ declare const Box: react.ForwardRefExoticComponent<Omit<NonNullable<{
464
465
  wordBreak?: "break-all" | "break-word";
465
466
  wordWrap?: "break-word" | "normal";
466
467
  textAlign?: "end" | "start" | "center" | "justify";
467
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
468
+ animation?: "ping" | "pulse";
469
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
468
470
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
469
471
  transitionDuration?: "150ms" | "200ms";
470
472
  whiteSpace?: "nowrap";
@@ -520,41 +522,41 @@ declare const Box: react.ForwardRefExoticComponent<Omit<NonNullable<{
520
522
  lg?: "1" | "auto" | "none" | "initial";
521
523
  xl?: "1" | "auto" | "none" | "initial";
522
524
  };
523
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
524
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
525
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
526
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
527
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
528
- };
529
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
530
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
531
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
532
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
533
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
534
- };
535
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
536
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
537
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
538
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
539
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
540
- };
541
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
542
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
543
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
544
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
545
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
546
- };
547
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
548
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
549
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
550
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
551
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
552
- };
553
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
554
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
555
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
556
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
557
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
525
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
526
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
527
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
528
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
529
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
530
+ };
531
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
532
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
533
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
534
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
535
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
536
+ };
537
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
538
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
539
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
540
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
541
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
542
+ };
543
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
544
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
545
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
546
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
547
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
548
+ };
549
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
550
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
551
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
552
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
553
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
554
+ };
555
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
556
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
557
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
558
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
559
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
558
560
  };
559
561
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
560
562
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -670,35 +672,35 @@ declare const Box: react.ForwardRefExoticComponent<Omit<NonNullable<{
670
672
  lg?: "0" | "1" | "2" | "3";
671
673
  xl?: "0" | "1" | "2" | "3";
672
674
  };
673
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
674
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
675
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
676
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
677
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
678
- };
679
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
680
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
681
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
682
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
683
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
684
- };
685
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
686
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
687
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
688
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
689
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
690
- };
691
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
692
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
693
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
694
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
695
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
696
- };
697
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
698
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
699
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
700
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
701
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
675
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
676
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
677
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
678
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
679
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
680
+ };
681
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
682
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
683
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
684
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
685
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
686
+ };
687
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
688
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
689
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
690
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
691
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
692
+ };
693
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
694
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
695
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
696
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
697
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
698
+ };
699
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
700
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
701
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
702
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
703
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
702
704
  };
703
705
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
704
706
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -851,8 +853,8 @@ declare const Box: react.ForwardRefExoticComponent<Omit<NonNullable<{
851
853
  }>, never> & Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "color" | "className"> & react.RefAttributes<HTMLDivElement>>;
852
854
 
853
855
  declare function extractBoxProps<S extends Record<string, unknown>>(props: S): {
854
- boxProps: Pick<S, ("borderColor" | "fontFamily" | "typography" | "fontWeight" | "borderStyle" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "boxShadow" | "cursor" | "overflowX" | "overflowY" | "userSelect" | "touchAction" | "fontSize" | "fontStyle" | "lineHeight" | "letterSpacing" | "isolation" | "objectFit" | "pointerEvents" | "textTransform" | "textDecoration" | "visibility" | "wordBreak" | "wordWrap" | "textAlign" | "transitionProperty" | "shadow" | "transitionTimingFunction" | "transitionDuration" | "whiteSpace" | "zIndex" | "overflow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "gap" | "gridGap" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "alignItems" | "alignSelf" | "placeItems" | "justifyContent" | "flexWrap" | "display" | "flex" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "flexDirection" | "flexShrink" | "position" | "borderTopWidth" | "borderRightWidth" | "borderBottomWidth" | "borderLeftWidth" | "maxH" | "maxW" | "size" | "w" | "h" | "p" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "border" | "borderB" | "borderL" | "borderR" | "borderT" | "backgroundColor" | "color" | "outlineColor" | "bg" | "styles" | "className") & keyof S>;
855
- restProps: Omit<S, "borderColor" | "fontFamily" | "typography" | "fontWeight" | "borderStyle" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "boxShadow" | "cursor" | "overflowX" | "overflowY" | "userSelect" | "touchAction" | "fontSize" | "fontStyle" | "lineHeight" | "letterSpacing" | "isolation" | "objectFit" | "pointerEvents" | "textTransform" | "textDecoration" | "visibility" | "wordBreak" | "wordWrap" | "textAlign" | "transitionProperty" | "shadow" | "transitionTimingFunction" | "transitionDuration" | "whiteSpace" | "zIndex" | "overflow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "gap" | "gridGap" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "alignItems" | "alignSelf" | "placeItems" | "justifyContent" | "flexWrap" | "display" | "flex" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "flexDirection" | "flexShrink" | "position" | "borderTopWidth" | "borderRightWidth" | "borderBottomWidth" | "borderLeftWidth" | "maxH" | "maxW" | "size" | "w" | "h" | "p" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "border" | "borderB" | "borderL" | "borderR" | "borderT" | "backgroundColor" | "color" | "outlineColor" | "bg" | "styles" | "className">;
856
+ boxProps: Pick<S, ("borderColor" | "fontFamily" | "typography" | "fontWeight" | "borderStyle" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "boxShadow" | "cursor" | "overflowX" | "overflowY" | "userSelect" | "touchAction" | "fontSize" | "fontStyle" | "lineHeight" | "letterSpacing" | "isolation" | "objectFit" | "pointerEvents" | "textTransform" | "textDecoration" | "visibility" | "wordBreak" | "wordWrap" | "textAlign" | "animation" | "transitionProperty" | "shadow" | "transitionTimingFunction" | "transitionDuration" | "whiteSpace" | "zIndex" | "overflow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "gap" | "gridGap" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "alignItems" | "alignSelf" | "placeItems" | "justifyContent" | "flexWrap" | "display" | "flex" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "flexDirection" | "flexShrink" | "position" | "borderTopWidth" | "borderRightWidth" | "borderBottomWidth" | "borderLeftWidth" | "maxH" | "maxW" | "size" | "w" | "h" | "p" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "border" | "borderB" | "borderL" | "borderR" | "borderT" | "backgroundColor" | "color" | "outlineColor" | "bg" | "styles" | "className") & keyof S>;
857
+ restProps: Omit<S, "borderColor" | "fontFamily" | "typography" | "fontWeight" | "borderStyle" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "boxShadow" | "cursor" | "overflowX" | "overflowY" | "userSelect" | "touchAction" | "fontSize" | "fontStyle" | "lineHeight" | "letterSpacing" | "isolation" | "objectFit" | "pointerEvents" | "textTransform" | "textDecoration" | "visibility" | "wordBreak" | "wordWrap" | "textAlign" | "animation" | "transitionProperty" | "shadow" | "transitionTimingFunction" | "transitionDuration" | "whiteSpace" | "zIndex" | "overflow" | "rounded" | "roundedT" | "roundedB" | "roundedL" | "roundedR" | "z" | "gap" | "gridGap" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "alignItems" | "alignSelf" | "placeItems" | "justifyContent" | "flexWrap" | "display" | "flex" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "flexDirection" | "flexShrink" | "position" | "borderTopWidth" | "borderRightWidth" | "borderBottomWidth" | "borderLeftWidth" | "maxH" | "maxW" | "size" | "w" | "h" | "p" | "pt" | "pb" | "pl" | "pr" | "px" | "py" | "m" | "mt" | "mb" | "ml" | "mr" | "mx" | "my" | "border" | "borderB" | "borderL" | "borderR" | "borderT" | "backgroundColor" | "color" | "outlineColor" | "bg" | "styles" | "className">;
856
858
  };
857
859
 
858
860
  type DataTableProps = BoxProps<'div', {
@@ -896,7 +898,8 @@ declare const DataTable: react.ForwardRefExoticComponent<{
896
898
  wordBreak?: "break-all" | "break-word";
897
899
  wordWrap?: "break-word" | "normal";
898
900
  textAlign?: "end" | "start" | "center" | "justify";
899
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
901
+ animation?: "ping" | "pulse";
902
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
900
903
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
901
904
  transitionDuration?: "150ms" | "200ms";
902
905
  whiteSpace?: "nowrap";
@@ -952,41 +955,41 @@ declare const DataTable: react.ForwardRefExoticComponent<{
952
955
  lg?: "1" | "auto" | "none" | "initial";
953
956
  xl?: "1" | "auto" | "none" | "initial";
954
957
  };
955
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
956
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
957
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
958
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
959
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
960
- };
961
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
962
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
963
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
964
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
965
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
966
- };
967
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
968
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
969
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
970
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
971
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
972
- };
973
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
974
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
975
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
976
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
977
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
978
- };
979
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
980
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
981
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
982
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
983
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
984
- };
985
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
986
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
987
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
988
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
989
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
958
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
959
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
960
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
961
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
962
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
963
+ };
964
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
965
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
966
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
967
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
968
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
969
+ };
970
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
971
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
972
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
973
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
974
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
975
+ };
976
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
977
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
978
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
979
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
980
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
981
+ };
982
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
983
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
984
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
985
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
986
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
987
+ };
988
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
989
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
990
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
991
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
992
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
990
993
  };
991
994
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
992
995
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -1102,35 +1105,35 @@ declare const DataTable: react.ForwardRefExoticComponent<{
1102
1105
  lg?: "0" | "1" | "2" | "3";
1103
1106
  xl?: "0" | "1" | "2" | "3";
1104
1107
  };
1105
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1106
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1107
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1108
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1109
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1110
- };
1111
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1112
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1113
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1114
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1115
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1116
- };
1117
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1118
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1119
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1120
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1121
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1122
- };
1123
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1124
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1125
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1126
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1127
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1128
- };
1129
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1130
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1131
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1132
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1133
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1108
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1109
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1110
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1111
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1112
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1113
+ };
1114
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1115
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1116
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1117
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1118
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1119
+ };
1120
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1121
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1122
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1123
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1124
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1125
+ };
1126
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1127
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1128
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1129
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1130
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1131
+ };
1132
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1133
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1134
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1135
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1136
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1134
1137
  };
1135
1138
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
1136
1139
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -1297,11 +1300,13 @@ type DataTableBodyProps = BoxProps<'div', {
1297
1300
  estimatedRowHeight?: number;
1298
1301
  bordered?: boolean;
1299
1302
  size?: 'sm' | 'md' | 'lg';
1303
+ loading?: boolean | Record<string, 'sub-rows' | false>;
1300
1304
  }>;
1301
1305
  declare const DataTableBody: react.ForwardRefExoticComponent<{
1302
1306
  estimatedRowHeight?: number;
1303
1307
  bordered?: boolean;
1304
1308
  size?: "sm" | "md" | "lg";
1309
+ loading?: boolean | Record<string, "sub-rows" | false>;
1305
1310
  } & Omit<NonNullable<{
1306
1311
  borderColor?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused";
1307
1312
  borderStyle?: string;
@@ -1332,7 +1337,8 @@ declare const DataTableBody: react.ForwardRefExoticComponent<{
1332
1337
  wordBreak?: "break-all" | "break-word";
1333
1338
  wordWrap?: "break-word" | "normal";
1334
1339
  textAlign?: "end" | "start" | "center" | "justify";
1335
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
1340
+ animation?: "ping" | "pulse";
1341
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
1336
1342
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
1337
1343
  transitionDuration?: "150ms" | "200ms";
1338
1344
  whiteSpace?: "nowrap";
@@ -1388,41 +1394,41 @@ declare const DataTableBody: react.ForwardRefExoticComponent<{
1388
1394
  lg?: "1" | "auto" | "none" | "initial";
1389
1395
  xl?: "1" | "auto" | "none" | "initial";
1390
1396
  };
1391
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1392
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1393
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1394
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1395
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1396
- };
1397
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1398
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1399
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1400
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1401
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1402
- };
1403
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1404
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1405
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1406
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1407
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1408
- };
1409
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1410
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1411
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1412
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1413
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1414
- };
1415
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1416
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1417
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1418
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1419
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1420
- };
1421
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1422
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1423
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1424
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1425
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1397
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1398
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1399
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1400
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1401
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1402
+ };
1403
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1404
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1405
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1406
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1407
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1408
+ };
1409
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1410
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1411
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1412
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1413
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1414
+ };
1415
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1416
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1417
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1418
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1419
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1420
+ };
1421
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1422
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1423
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1424
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1425
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1426
+ };
1427
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1428
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1429
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1430
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1431
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1426
1432
  };
1427
1433
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
1428
1434
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -1538,35 +1544,35 @@ declare const DataTableBody: react.ForwardRefExoticComponent<{
1538
1544
  lg?: "0" | "1" | "2" | "3";
1539
1545
  xl?: "0" | "1" | "2" | "3";
1540
1546
  };
1541
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1542
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1543
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1544
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1545
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1546
- };
1547
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1548
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1549
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1550
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1551
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1552
- };
1553
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1554
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1555
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1556
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1557
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1558
- };
1559
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1560
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1561
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1562
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1563
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1564
- };
1565
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1566
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1567
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1568
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1569
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1547
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1548
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1549
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1550
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1551
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1552
+ };
1553
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1554
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1555
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1556
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1557
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1558
+ };
1559
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1560
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1561
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1562
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1563
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1564
+ };
1565
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1566
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1567
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1568
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1569
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1570
+ };
1571
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1572
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1573
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1574
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1575
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1570
1576
  };
1571
1577
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
1572
1578
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -1731,10 +1737,11 @@ declare const DataTableCheckbox: react.ForwardRefExoticComponent<any>;
1731
1737
 
1732
1738
  type DataTableCounterProps = BoxProps<'div', {
1733
1739
  count?: number;
1740
+ loading?: boolean;
1734
1741
  singular?: string;
1735
1742
  plural?: string;
1736
1743
  }>;
1737
- declare function DataTableCounter({ count: countProp, singular, plural, ...props }: DataTableCounterProps): _emotion_react_jsx_runtime.JSX.Element;
1744
+ declare function DataTableCounter({ count: countProp, loading, singular, plural, ...props }: DataTableCounterProps): _emotion_react_jsx_runtime.JSX.Element;
1738
1745
 
1739
1746
  declare function DataTableEditColumns(): _emotion_react_jsx_runtime.JSX.Element;
1740
1747
 
@@ -1769,7 +1776,8 @@ declare const DataTableHeader: react.ForwardRefExoticComponent<Omit<NonNullable<
1769
1776
  wordBreak?: "break-all" | "break-word";
1770
1777
  wordWrap?: "break-word" | "normal";
1771
1778
  textAlign?: "end" | "start" | "center" | "justify";
1772
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
1779
+ animation?: "ping" | "pulse";
1780
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
1773
1781
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
1774
1782
  transitionDuration?: "150ms" | "200ms";
1775
1783
  whiteSpace?: "nowrap";
@@ -1825,41 +1833,41 @@ declare const DataTableHeader: react.ForwardRefExoticComponent<Omit<NonNullable<
1825
1833
  lg?: "1" | "auto" | "none" | "initial";
1826
1834
  xl?: "1" | "auto" | "none" | "initial";
1827
1835
  };
1828
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1829
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1830
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1831
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1832
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1833
- };
1834
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1835
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1836
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1837
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1838
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1839
- };
1840
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1841
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1842
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1843
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1844
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1845
- };
1846
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1847
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1848
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1849
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1850
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1851
- };
1852
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1853
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1854
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1855
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1856
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1857
- };
1858
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1859
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1860
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1861
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1862
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1836
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1837
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1838
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1839
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1840
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1841
+ };
1842
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1843
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1844
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1845
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1846
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1847
+ };
1848
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1849
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1850
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1851
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1852
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1853
+ };
1854
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1855
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1856
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1857
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1858
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1859
+ };
1860
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1861
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1862
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1863
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1864
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1865
+ };
1866
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1867
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1868
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1869
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1870
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1863
1871
  };
1864
1872
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
1865
1873
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -1975,35 +1983,35 @@ declare const DataTableHeader: react.ForwardRefExoticComponent<Omit<NonNullable<
1975
1983
  lg?: "0" | "1" | "2" | "3";
1976
1984
  xl?: "0" | "1" | "2" | "3";
1977
1985
  };
1978
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1979
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1980
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1981
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1982
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1983
- };
1984
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1985
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1986
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1987
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1988
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1989
- };
1990
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1991
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1992
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1993
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1994
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1995
- };
1996
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1997
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1998
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1999
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2000
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2001
- };
2002
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2003
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2004
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2005
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2006
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1986
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1987
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1988
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1989
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1990
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1991
+ };
1992
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1993
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1994
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1995
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1996
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
1997
+ };
1998
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
1999
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2000
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2001
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2002
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2003
+ };
2004
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2005
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2006
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2007
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2008
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2009
+ };
2010
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2011
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2012
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2013
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2014
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2007
2015
  };
2008
2016
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2009
2017
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -2595,6 +2603,434 @@ declare const ICONS: {
2595
2603
  readonly youTube: typeof YouTubeIcon;
2596
2604
  };
2597
2605
 
2606
+ type SkeletonProps = BoxProps<'span', {
2607
+ children?: ReactElement;
2608
+ circle?: boolean;
2609
+ rounded?: BoxProps['rounded'];
2610
+ }>;
2611
+ declare const Skeleton: react.ForwardRefExoticComponent<{
2612
+ children?: ReactElement;
2613
+ circle?: boolean;
2614
+ rounded?: BoxProps["rounded"];
2615
+ } & Omit<NonNullable<{
2616
+ borderColor?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused";
2617
+ borderStyle?: string;
2618
+ borderRadius?: "0" | "1" | "inherit" | "2" | "3" | "4" | "5" | "6" | "7";
2619
+ borderTopLeftRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2620
+ borderTopRightRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2621
+ borderBottomLeftRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2622
+ borderBottomRightRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2623
+ boxShadow?: "0" | "1" | "2" | "3" | "4" | "5";
2624
+ cursor?: "default" | "pointer" | "not-allowed";
2625
+ overflowX?: "auto" | "hidden" | "visible";
2626
+ overflowY?: "auto" | "hidden" | "visible";
2627
+ userSelect?: "none" | "all";
2628
+ touchAction?: "none" | "manipulation";
2629
+ fontFamily?: "sans" | "mono";
2630
+ fontSize?: "1" | "2" | "3" | "10" | "4" | "5" | "6" | "7" | "8" | "9";
2631
+ typography?: "headline01" | "headline02" | "headline03" | "headline04" | "headline05" | "title01" | "title02" | "title03" | "label01" | "label02" | "label03" | "label04" | "body01" | "body02" | "body03" | "body04";
2632
+ fontWeight?: "regular" | "medium" | "bold";
2633
+ fontStyle?: "italic";
2634
+ lineHeight?: "1" | "2" | "3" | "10" | "4" | "5" | "6" | "7" | "8" | "9" | "11";
2635
+ letterSpacing?: "0" | "1" | "2" | "3";
2636
+ isolation?: "isolate";
2637
+ objectFit?: "contain" | "cover";
2638
+ pointerEvents?: "auto" | "none";
2639
+ textTransform?: "none" | "capitalize" | "uppercase";
2640
+ textDecoration?: "underline";
2641
+ visibility?: "hidden" | "visible";
2642
+ wordBreak?: "break-all" | "break-word";
2643
+ wordWrap?: "break-word" | "normal";
2644
+ textAlign?: "end" | "start" | "center" | "justify";
2645
+ animation?: "ping" | "pulse";
2646
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
2647
+ transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
2648
+ transitionDuration?: "150ms" | "200ms";
2649
+ whiteSpace?: "nowrap";
2650
+ zIndex?: "0" | "auto" | "10" | "20" | "30" | "40" | "50" | "75" | "100";
2651
+ overflow?: "auto" | "hidden" | "visible";
2652
+ shadow?: "0" | "1" | "2" | "3" | "4" | "5";
2653
+ rounded?: "0" | "1" | "inherit" | "2" | "3" | "4" | "5" | "6" | "7";
2654
+ roundedT?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2655
+ roundedB?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2656
+ roundedL?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2657
+ roundedR?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
2658
+ z?: "0" | "auto" | "10" | "20" | "30" | "40" | "50" | "75" | "100";
2659
+ } & {
2660
+ alignItems?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | {
2661
+ base?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2662
+ md?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2663
+ lg?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2664
+ xl?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2665
+ };
2666
+ alignSelf?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | {
2667
+ base?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2668
+ md?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2669
+ lg?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2670
+ xl?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline";
2671
+ };
2672
+ placeItems?: "center" | {
2673
+ base?: "center";
2674
+ md?: "center";
2675
+ lg?: "center";
2676
+ xl?: "center";
2677
+ };
2678
+ justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "unset" | {
2679
+ base?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "unset";
2680
+ md?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "unset";
2681
+ lg?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "unset";
2682
+ xl?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | "unset";
2683
+ };
2684
+ flexWrap?: "nowrap" | "wrap" | "wrap-reverse" | {
2685
+ base?: "nowrap" | "wrap" | "wrap-reverse";
2686
+ md?: "nowrap" | "wrap" | "wrap-reverse";
2687
+ lg?: "nowrap" | "wrap" | "wrap-reverse";
2688
+ xl?: "nowrap" | "wrap" | "wrap-reverse";
2689
+ };
2690
+ display?: "none" | "block" | "flex" | "inline-flex" | "inline-grid" | "grid" | "inline-block" | "contents" | "inline" | {
2691
+ base?: "none" | "block" | "flex" | "inline-flex" | "inline-grid" | "grid" | "inline-block" | "contents" | "inline";
2692
+ md?: "none" | "block" | "flex" | "inline-flex" | "inline-grid" | "grid" | "inline-block" | "contents" | "inline";
2693
+ lg?: "none" | "block" | "flex" | "inline-flex" | "inline-grid" | "grid" | "inline-block" | "contents" | "inline";
2694
+ xl?: "none" | "block" | "flex" | "inline-flex" | "inline-grid" | "grid" | "inline-block" | "contents" | "inline";
2695
+ };
2696
+ flex?: "1" | "auto" | "none" | "initial" | {
2697
+ base?: "1" | "auto" | "none" | "initial";
2698
+ md?: "1" | "auto" | "none" | "initial";
2699
+ lg?: "1" | "auto" | "none" | "initial";
2700
+ xl?: "1" | "auto" | "none" | "initial";
2701
+ };
2702
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2703
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2704
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2705
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2706
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2707
+ };
2708
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2709
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2710
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2711
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2712
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2713
+ };
2714
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2715
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2716
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2717
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2718
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2719
+ };
2720
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2721
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2722
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2723
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2724
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2725
+ };
2726
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2727
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2728
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2729
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2730
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2731
+ };
2732
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2733
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2734
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2735
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2736
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2737
+ };
2738
+ flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
2739
+ base?: "column" | "row" | "column-reverse" | "row-reverse";
2740
+ md?: "column" | "row" | "column-reverse" | "row-reverse";
2741
+ lg?: "column" | "row" | "column-reverse" | "row-reverse";
2742
+ xl?: "column" | "row" | "column-reverse" | "row-reverse";
2743
+ };
2744
+ flexShrink?: "0" | "1" | {
2745
+ base?: "0" | "1";
2746
+ md?: "0" | "1";
2747
+ lg?: "0" | "1";
2748
+ xl?: "0" | "1";
2749
+ };
2750
+ position?: "absolute" | "fixed" | "relative" | "sticky" | {
2751
+ base?: "absolute" | "fixed" | "relative" | "sticky";
2752
+ md?: "absolute" | "fixed" | "relative" | "sticky";
2753
+ lg?: "absolute" | "fixed" | "relative" | "sticky";
2754
+ xl?: "absolute" | "fixed" | "relative" | "sticky";
2755
+ };
2756
+ gap?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2757
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2758
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2759
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2760
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2761
+ };
2762
+ gridGap?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2763
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2764
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2765
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2766
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2767
+ };
2768
+ margin?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2769
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2770
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2771
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2772
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2773
+ };
2774
+ marginBottom?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2775
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2776
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2777
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2778
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2779
+ };
2780
+ marginLeft?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2781
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2782
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2783
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2784
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2785
+ };
2786
+ marginRight?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2787
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2788
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2789
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2790
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2791
+ };
2792
+ marginTop?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2793
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2794
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2795
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2796
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2797
+ };
2798
+ padding?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2799
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2800
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2801
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2802
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2803
+ };
2804
+ paddingBottom?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2805
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2806
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2807
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2808
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2809
+ };
2810
+ paddingLeft?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2811
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2812
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2813
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2814
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2815
+ };
2816
+ paddingRight?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2817
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2818
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2819
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2820
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2821
+ };
2822
+ paddingTop?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2823
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2824
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2825
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2826
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2827
+ };
2828
+ borderTopWidth?: "0" | "1" | "2" | "3" | {
2829
+ base?: "0" | "1" | "2" | "3";
2830
+ md?: "0" | "1" | "2" | "3";
2831
+ lg?: "0" | "1" | "2" | "3";
2832
+ xl?: "0" | "1" | "2" | "3";
2833
+ };
2834
+ borderRightWidth?: "0" | "1" | "2" | "3" | {
2835
+ base?: "0" | "1" | "2" | "3";
2836
+ md?: "0" | "1" | "2" | "3";
2837
+ lg?: "0" | "1" | "2" | "3";
2838
+ xl?: "0" | "1" | "2" | "3";
2839
+ };
2840
+ borderBottomWidth?: "0" | "1" | "2" | "3" | {
2841
+ base?: "0" | "1" | "2" | "3";
2842
+ md?: "0" | "1" | "2" | "3";
2843
+ lg?: "0" | "1" | "2" | "3";
2844
+ xl?: "0" | "1" | "2" | "3";
2845
+ };
2846
+ borderLeftWidth?: "0" | "1" | "2" | "3" | {
2847
+ base?: "0" | "1" | "2" | "3";
2848
+ md?: "0" | "1" | "2" | "3";
2849
+ lg?: "0" | "1" | "2" | "3";
2850
+ xl?: "0" | "1" | "2" | "3";
2851
+ };
2852
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2853
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2854
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2855
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2856
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2857
+ };
2858
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2859
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2860
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2861
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2862
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2863
+ };
2864
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2865
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2866
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2867
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2868
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2869
+ };
2870
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2871
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2872
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2873
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2874
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2875
+ };
2876
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2877
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2878
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2879
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2880
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2881
+ };
2882
+ p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2883
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2884
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2885
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2886
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2887
+ };
2888
+ pt?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2889
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2890
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2891
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2892
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2893
+ };
2894
+ pb?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2895
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2896
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2897
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2898
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2899
+ };
2900
+ pl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2901
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2902
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2903
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2904
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2905
+ };
2906
+ pr?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2907
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2908
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2909
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2910
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2911
+ };
2912
+ px?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2913
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2914
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2915
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2916
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2917
+ };
2918
+ py?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2919
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2920
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2921
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2922
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2923
+ };
2924
+ m?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2925
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2926
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2927
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2928
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2929
+ };
2930
+ mt?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2931
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2932
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2933
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2934
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2935
+ };
2936
+ mb?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2937
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2938
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2939
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2940
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2941
+ };
2942
+ ml?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2943
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2944
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2945
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2946
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2947
+ };
2948
+ mr?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2949
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2950
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2951
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2952
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2953
+ };
2954
+ mx?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2955
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2956
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2957
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2958
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2959
+ };
2960
+ my?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2961
+ base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2962
+ md?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2963
+ lg?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2964
+ xl?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
2965
+ };
2966
+ border?: "0" | "1" | "2" | "3" | {
2967
+ base?: "0" | "1" | "2" | "3";
2968
+ md?: "0" | "1" | "2" | "3";
2969
+ lg?: "0" | "1" | "2" | "3";
2970
+ xl?: "0" | "1" | "2" | "3";
2971
+ };
2972
+ borderB?: "0" | "1" | "2" | "3" | {
2973
+ base?: "0" | "1" | "2" | "3";
2974
+ md?: "0" | "1" | "2" | "3";
2975
+ lg?: "0" | "1" | "2" | "3";
2976
+ xl?: "0" | "1" | "2" | "3";
2977
+ };
2978
+ borderL?: "0" | "1" | "2" | "3" | {
2979
+ base?: "0" | "1" | "2" | "3";
2980
+ md?: "0" | "1" | "2" | "3";
2981
+ lg?: "0" | "1" | "2" | "3";
2982
+ xl?: "0" | "1" | "2" | "3";
2983
+ };
2984
+ borderR?: "0" | "1" | "2" | "3" | {
2985
+ base?: "0" | "1" | "2" | "3";
2986
+ md?: "0" | "1" | "2" | "3";
2987
+ lg?: "0" | "1" | "2" | "3";
2988
+ xl?: "0" | "1" | "2" | "3";
2989
+ };
2990
+ borderT?: "0" | "1" | "2" | "3" | {
2991
+ base?: "0" | "1" | "2" | "3";
2992
+ md?: "0" | "1" | "2" | "3";
2993
+ lg?: "0" | "1" | "2" | "3";
2994
+ xl?: "0" | "1" | "2" | "3";
2995
+ };
2996
+ } & {
2997
+ backgroundColor?: "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" | "alt" | "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" | {
2998
+ base?: "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" | "alt" | "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";
2999
+ active?: "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" | "alt" | "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";
3000
+ focus?: "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" | "alt" | "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";
3001
+ hover?: "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" | "alt" | "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";
3002
+ };
3003
+ borderColor?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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" | {
3004
+ base?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3005
+ active?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3006
+ focus?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3007
+ hover?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3008
+ };
3009
+ color?: "active" | "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" | "primary" | "secondary" | "error" | "warning" | "success" | "visited" | "inverted.primary" | "inverted.secondary" | "inverted.active" | "inverted.error" | "inverted.warning" | "inverted.success" | "inverted.visited" | {
3010
+ base?: "active" | "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" | "primary" | "secondary" | "error" | "warning" | "success" | "visited" | "inverted.primary" | "inverted.secondary" | "inverted.active" | "inverted.error" | "inverted.warning" | "inverted.success" | "inverted.visited";
3011
+ active?: "active" | "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" | "primary" | "secondary" | "error" | "warning" | "success" | "visited" | "inverted.primary" | "inverted.secondary" | "inverted.active" | "inverted.error" | "inverted.warning" | "inverted.success" | "inverted.visited";
3012
+ focus?: "active" | "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" | "primary" | "secondary" | "error" | "warning" | "success" | "visited" | "inverted.primary" | "inverted.secondary" | "inverted.active" | "inverted.error" | "inverted.warning" | "inverted.success" | "inverted.visited";
3013
+ hover?: "active" | "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" | "primary" | "secondary" | "error" | "warning" | "success" | "visited" | "inverted.primary" | "inverted.secondary" | "inverted.active" | "inverted.error" | "inverted.warning" | "inverted.success" | "inverted.visited";
3014
+ };
3015
+ outlineColor?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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" | {
3016
+ base?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3017
+ active?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3018
+ focus?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3019
+ hover?: "decorative.transparent" | "decorative.default" | "decorative.inverted" | "interactive.default" | "interactive.active" | "interactive.error" | "interactive.upsell" | "interactive.warning" | "interactive.success" | "interactive.focused" | "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";
3020
+ };
3021
+ bg?: "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" | "alt" | "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" | {
3022
+ base?: "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" | "alt" | "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";
3023
+ active?: "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" | "alt" | "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";
3024
+ focus?: "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" | "alt" | "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";
3025
+ hover?: "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" | "alt" | "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";
3026
+ };
3027
+ } & {
3028
+ asChild?: boolean;
3029
+ className?: string;
3030
+ }>, "rounded"> & Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref">, "color" | "className" | "children"> & react.RefAttributes<HTMLSpanElement>>;
3031
+
3032
+ declare function cn(...classNames: Array<string | undefined>): string;
3033
+
2598
3034
  declare const Dialog: ({ role, className, ...props }: ComponentProps<typeof Dialog$1>) => _emotion_react_jsx_runtime.JSX.Element;
2599
3035
  declare const DialogTrigger: (props: ComponentProps<typeof Button>) => _emotion_react_jsx_runtime.JSX.Element;
2600
3036
  interface DialogHeaderProps extends Omit<ComponentProps<'div'>, 'title'> {
@@ -2733,7 +3169,8 @@ declare const Table: react.ForwardRefExoticComponent<{
2733
3169
  wordBreak?: "break-all" | "break-word";
2734
3170
  wordWrap?: "break-word" | "normal";
2735
3171
  textAlign?: "end" | "start" | "center" | "justify";
2736
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
3172
+ animation?: "ping" | "pulse";
3173
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
2737
3174
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
2738
3175
  transitionDuration?: "150ms" | "200ms";
2739
3176
  whiteSpace?: "nowrap";
@@ -2789,41 +3226,41 @@ declare const Table: react.ForwardRefExoticComponent<{
2789
3226
  lg?: "1" | "auto" | "none" | "initial";
2790
3227
  xl?: "1" | "auto" | "none" | "initial";
2791
3228
  };
2792
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2793
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2794
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2795
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2796
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2797
- };
2798
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2799
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2800
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2801
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2802
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2803
- };
2804
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2805
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2806
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2807
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2808
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2809
- };
2810
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2811
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2812
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2813
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2814
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2815
- };
2816
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2817
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2818
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2819
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2820
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2821
- };
2822
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2823
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2824
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2825
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2826
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3229
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3230
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3231
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3232
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3233
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3234
+ };
3235
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3236
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3237
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3238
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3239
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3240
+ };
3241
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3242
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3243
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3244
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3245
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3246
+ };
3247
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3248
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3249
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3250
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3251
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3252
+ };
3253
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3254
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3255
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3256
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3257
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3258
+ };
3259
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3260
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3261
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3262
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3263
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2827
3264
  };
2828
3265
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
2829
3266
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -2939,35 +3376,35 @@ declare const Table: react.ForwardRefExoticComponent<{
2939
3376
  lg?: "0" | "1" | "2" | "3";
2940
3377
  xl?: "0" | "1" | "2" | "3";
2941
3378
  };
2942
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2943
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2944
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2945
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2946
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2947
- };
2948
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2949
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2950
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2951
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2952
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2953
- };
2954
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2955
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2956
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2957
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2958
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2959
- };
2960
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2961
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2962
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2963
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2964
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2965
- };
2966
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
2967
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2968
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2969
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2970
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3379
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3380
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3381
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3382
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3383
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3384
+ };
3385
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3386
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3387
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3388
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3389
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3390
+ };
3391
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3392
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3393
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3394
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3395
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3396
+ };
3397
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3398
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3399
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3400
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3401
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3402
+ };
3403
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3404
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3405
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3406
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3407
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
2971
3408
  };
2972
3409
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
2973
3410
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -3150,7 +3587,8 @@ declare const TableBody: react.ForwardRefExoticComponent<Omit<NonNullable<{
3150
3587
  wordBreak?: "break-all" | "break-word";
3151
3588
  wordWrap?: "break-word" | "normal";
3152
3589
  textAlign?: "end" | "start" | "center" | "justify";
3153
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
3590
+ animation?: "ping" | "pulse";
3591
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
3154
3592
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
3155
3593
  transitionDuration?: "150ms" | "200ms";
3156
3594
  whiteSpace?: "nowrap";
@@ -3206,41 +3644,41 @@ declare const TableBody: react.ForwardRefExoticComponent<Omit<NonNullable<{
3206
3644
  lg?: "1" | "auto" | "none" | "initial";
3207
3645
  xl?: "1" | "auto" | "none" | "initial";
3208
3646
  };
3209
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3210
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3211
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3212
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3213
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3214
- };
3215
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3216
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3217
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3218
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3219
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3220
- };
3221
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3222
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3223
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3224
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3225
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3226
- };
3227
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3228
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3229
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3230
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3231
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3232
- };
3233
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3234
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3235
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3236
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3237
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3238
- };
3239
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3240
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3241
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3242
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3243
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3647
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3648
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3649
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3650
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3651
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3652
+ };
3653
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3654
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3655
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3656
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3657
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3658
+ };
3659
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3660
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3661
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3662
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3663
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3664
+ };
3665
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3666
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3667
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3668
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3669
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3670
+ };
3671
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3672
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3673
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3674
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3675
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3676
+ };
3677
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3678
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3679
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3680
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3681
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3244
3682
  };
3245
3683
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
3246
3684
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -3356,35 +3794,35 @@ declare const TableBody: react.ForwardRefExoticComponent<Omit<NonNullable<{
3356
3794
  lg?: "0" | "1" | "2" | "3";
3357
3795
  xl?: "0" | "1" | "2" | "3";
3358
3796
  };
3359
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3360
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3361
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3362
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3363
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3364
- };
3365
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3366
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3367
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3368
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3369
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3370
- };
3371
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3372
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3373
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3374
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3375
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3376
- };
3377
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3378
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3379
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3380
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3381
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3382
- };
3383
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3384
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3385
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3386
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3387
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3797
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3798
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3799
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3800
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3801
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3802
+ };
3803
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3804
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3805
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3806
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3807
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3808
+ };
3809
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3810
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3811
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3812
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3813
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3814
+ };
3815
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3816
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3817
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3818
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3819
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3820
+ };
3821
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3822
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3823
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3824
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3825
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3388
3826
  };
3389
3827
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
3390
3828
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -3590,7 +4028,8 @@ declare const TableCell: react.ForwardRefExoticComponent<{
3590
4028
  wordBreak?: "break-all" | "break-word";
3591
4029
  wordWrap?: "break-word" | "normal";
3592
4030
  textAlign?: "end" | "start" | "center" | "justify";
3593
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
4031
+ animation?: "ping" | "pulse";
4032
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
3594
4033
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
3595
4034
  transitionDuration?: "150ms" | "200ms";
3596
4035
  whiteSpace?: "nowrap";
@@ -3646,41 +4085,41 @@ declare const TableCell: react.ForwardRefExoticComponent<{
3646
4085
  lg?: "1" | "auto" | "none" | "initial";
3647
4086
  xl?: "1" | "auto" | "none" | "initial";
3648
4087
  };
3649
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3650
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3651
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3652
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3653
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3654
- };
3655
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3656
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3657
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3658
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3659
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3660
- };
3661
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3662
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3663
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3664
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3665
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3666
- };
3667
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3668
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3669
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3670
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3671
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3672
- };
3673
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3674
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3675
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3676
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3677
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3678
- };
3679
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3680
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3681
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3682
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3683
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4088
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4089
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4090
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4091
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4092
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4093
+ };
4094
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4095
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4096
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4097
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4098
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4099
+ };
4100
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4101
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4102
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4103
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4104
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4105
+ };
4106
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4107
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4108
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4109
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4110
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4111
+ };
4112
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4113
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4114
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4115
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4116
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4117
+ };
4118
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4119
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4120
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4121
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4122
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3684
4123
  };
3685
4124
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
3686
4125
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -3796,35 +4235,35 @@ declare const TableCell: react.ForwardRefExoticComponent<{
3796
4235
  lg?: "0" | "1" | "2" | "3";
3797
4236
  xl?: "0" | "1" | "2" | "3";
3798
4237
  };
3799
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3800
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3801
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3802
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3803
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3804
- };
3805
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3806
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3807
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3808
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3809
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3810
- };
3811
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3812
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3813
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3814
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3815
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3816
- };
3817
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3818
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3819
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3820
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3821
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3822
- };
3823
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
3824
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3825
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3826
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3827
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4238
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4239
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4240
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4241
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4242
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4243
+ };
4244
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4245
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4246
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4247
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4248
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4249
+ };
4250
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4251
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4252
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4253
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4254
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4255
+ };
4256
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4257
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4258
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4259
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4260
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4261
+ };
4262
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4263
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4264
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4265
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4266
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
3828
4267
  };
3829
4268
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
3830
4269
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -4017,7 +4456,8 @@ declare const TableFooter: react.ForwardRefExoticComponent<{
4017
4456
  wordBreak?: "break-all" | "break-word";
4018
4457
  wordWrap?: "break-word" | "normal";
4019
4458
  textAlign?: "end" | "start" | "center" | "justify";
4020
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
4459
+ animation?: "ping" | "pulse";
4460
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
4021
4461
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
4022
4462
  transitionDuration?: "150ms" | "200ms";
4023
4463
  whiteSpace?: "nowrap";
@@ -4073,41 +4513,41 @@ declare const TableFooter: react.ForwardRefExoticComponent<{
4073
4513
  lg?: "1" | "auto" | "none" | "initial";
4074
4514
  xl?: "1" | "auto" | "none" | "initial";
4075
4515
  };
4076
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4077
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4078
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4079
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4080
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4081
- };
4082
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4083
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4084
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4085
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4086
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4087
- };
4088
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4089
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4090
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4091
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4092
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4093
- };
4094
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4095
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4096
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4097
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4098
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4099
- };
4100
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4101
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4102
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4103
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4104
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4105
- };
4106
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4107
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4108
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4109
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4110
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4516
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4517
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4518
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4519
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4520
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4521
+ };
4522
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4523
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4524
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4525
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4526
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4527
+ };
4528
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4529
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4530
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4531
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4532
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4533
+ };
4534
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4535
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4536
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4537
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4538
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4539
+ };
4540
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4541
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4542
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4543
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4544
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4545
+ };
4546
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4547
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4548
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4549
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4550
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4111
4551
  };
4112
4552
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
4113
4553
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -4223,35 +4663,35 @@ declare const TableFooter: react.ForwardRefExoticComponent<{
4223
4663
  lg?: "0" | "1" | "2" | "3";
4224
4664
  xl?: "0" | "1" | "2" | "3";
4225
4665
  };
4226
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4227
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4228
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4229
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4230
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4231
- };
4232
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4233
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4234
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4235
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4236
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4237
- };
4238
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4239
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4240
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4241
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4242
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4243
- };
4244
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4245
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4246
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4247
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4248
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4249
- };
4250
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4251
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4252
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4253
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4254
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4666
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4667
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4668
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4669
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4670
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4671
+ };
4672
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4673
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4674
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4675
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4676
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4677
+ };
4678
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4679
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4680
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4681
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4682
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4683
+ };
4684
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4685
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4686
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4687
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4688
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4689
+ };
4690
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4691
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4692
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4693
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4694
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4255
4695
  };
4256
4696
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
4257
4697
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -4444,7 +4884,8 @@ declare const TableHeader: react.ForwardRefExoticComponent<{
4444
4884
  wordBreak?: "break-all" | "break-word";
4445
4885
  wordWrap?: "break-word" | "normal";
4446
4886
  textAlign?: "end" | "start" | "center" | "justify";
4447
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
4887
+ animation?: "ping" | "pulse";
4888
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
4448
4889
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
4449
4890
  transitionDuration?: "150ms" | "200ms";
4450
4891
  whiteSpace?: "nowrap";
@@ -4500,41 +4941,41 @@ declare const TableHeader: react.ForwardRefExoticComponent<{
4500
4941
  lg?: "1" | "auto" | "none" | "initial";
4501
4942
  xl?: "1" | "auto" | "none" | "initial";
4502
4943
  };
4503
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4504
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4505
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4506
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4507
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4508
- };
4509
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4510
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4511
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4512
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4513
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4514
- };
4515
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4516
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4517
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4518
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4519
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4520
- };
4521
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4522
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4523
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4524
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4525
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4526
- };
4527
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4528
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4529
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4530
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4531
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4532
- };
4533
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4534
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4535
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4536
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4537
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4944
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4945
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4946
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4947
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4948
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4949
+ };
4950
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4951
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4952
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4953
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4954
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4955
+ };
4956
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4957
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4958
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4959
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4960
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4961
+ };
4962
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4963
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4964
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4965
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4966
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4967
+ };
4968
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4969
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4970
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4971
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4972
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4973
+ };
4974
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4975
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4976
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4977
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4978
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4538
4979
  };
4539
4980
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
4540
4981
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -4650,35 +5091,35 @@ declare const TableHeader: react.ForwardRefExoticComponent<{
4650
5091
  lg?: "0" | "1" | "2" | "3";
4651
5092
  xl?: "0" | "1" | "2" | "3";
4652
5093
  };
4653
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4654
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4655
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4656
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4657
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4658
- };
4659
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4660
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4661
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4662
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4663
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4664
- };
4665
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4666
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4667
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4668
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4669
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4670
- };
4671
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4672
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4673
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4674
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4675
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4676
- };
4677
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4678
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4679
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4680
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4681
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5094
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5095
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5096
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5097
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5098
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5099
+ };
5100
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5101
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5102
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5103
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5104
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5105
+ };
5106
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5107
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5108
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5109
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5110
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5111
+ };
5112
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5113
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5114
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5115
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5116
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5117
+ };
5118
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5119
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5120
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5121
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5122
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4682
5123
  };
4683
5124
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
4684
5125
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -4884,7 +5325,8 @@ declare const TableHeaderCell: react.ForwardRefExoticComponent<{
4884
5325
  wordBreak?: "break-all" | "break-word";
4885
5326
  wordWrap?: "break-word" | "normal";
4886
5327
  textAlign?: "end" | "start" | "center" | "justify";
4887
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
5328
+ animation?: "ping" | "pulse";
5329
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
4888
5330
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
4889
5331
  transitionDuration?: "150ms" | "200ms";
4890
5332
  whiteSpace?: "nowrap";
@@ -4940,41 +5382,41 @@ declare const TableHeaderCell: react.ForwardRefExoticComponent<{
4940
5382
  lg?: "1" | "auto" | "none" | "initial";
4941
5383
  xl?: "1" | "auto" | "none" | "initial";
4942
5384
  };
4943
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4944
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4945
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4946
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4947
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4948
- };
4949
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4950
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4951
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4952
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4953
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4954
- };
4955
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4956
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4957
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4958
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4959
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4960
- };
4961
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4962
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4963
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4964
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4965
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4966
- };
4967
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4968
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4969
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4970
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4971
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4972
- };
4973
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
4974
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4975
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4976
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4977
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5385
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5386
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5387
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5388
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5389
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5390
+ };
5391
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5392
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5393
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5394
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5395
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5396
+ };
5397
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5398
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5399
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5400
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5401
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5402
+ };
5403
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5404
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5405
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5406
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5407
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5408
+ };
5409
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5410
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5411
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5412
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5413
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5414
+ };
5415
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5416
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5417
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5418
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5419
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
4978
5420
  };
4979
5421
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
4980
5422
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -5090,35 +5532,35 @@ declare const TableHeaderCell: react.ForwardRefExoticComponent<{
5090
5532
  lg?: "0" | "1" | "2" | "3";
5091
5533
  xl?: "0" | "1" | "2" | "3";
5092
5534
  };
5093
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5094
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5095
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5096
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5097
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5098
- };
5099
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5100
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5101
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5102
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5103
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5104
- };
5105
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5106
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5107
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5108
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5109
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5110
- };
5111
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5112
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5113
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5114
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5115
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5116
- };
5117
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5118
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5119
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5120
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5121
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5535
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5536
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5537
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5538
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5539
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5540
+ };
5541
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5542
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5543
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5544
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5545
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5546
+ };
5547
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5548
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5549
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5550
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5551
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5552
+ };
5553
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5554
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5555
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5556
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5557
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5558
+ };
5559
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5560
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5561
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5562
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5563
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5122
5564
  };
5123
5565
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
5124
5566
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -5301,7 +5743,8 @@ declare const TableRow: react.ForwardRefExoticComponent<Omit<NonNullable<{
5301
5743
  wordBreak?: "break-all" | "break-word";
5302
5744
  wordWrap?: "break-word" | "normal";
5303
5745
  textAlign?: "end" | "start" | "center" | "justify";
5304
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
5746
+ animation?: "ping" | "pulse";
5747
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
5305
5748
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
5306
5749
  transitionDuration?: "150ms" | "200ms";
5307
5750
  whiteSpace?: "nowrap";
@@ -5357,41 +5800,41 @@ declare const TableRow: react.ForwardRefExoticComponent<Omit<NonNullable<{
5357
5800
  lg?: "1" | "auto" | "none" | "initial";
5358
5801
  xl?: "1" | "auto" | "none" | "initial";
5359
5802
  };
5360
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5361
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5362
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5363
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5364
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5365
- };
5366
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5367
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5368
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5369
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5370
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5371
- };
5372
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5373
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5374
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5375
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5376
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5377
- };
5378
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5379
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5380
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5381
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5382
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5383
- };
5384
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5385
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5386
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5387
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5388
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5389
- };
5390
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5391
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5392
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5393
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5394
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5803
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5804
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5805
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5806
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5807
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5808
+ };
5809
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5810
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5811
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5812
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5813
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5814
+ };
5815
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5816
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5817
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5818
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5819
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5820
+ };
5821
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5822
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5823
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5824
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5825
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5826
+ };
5827
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5828
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5829
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5830
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5831
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5832
+ };
5833
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5834
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5835
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5836
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5837
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5395
5838
  };
5396
5839
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
5397
5840
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -5507,35 +5950,35 @@ declare const TableRow: react.ForwardRefExoticComponent<Omit<NonNullable<{
5507
5950
  lg?: "0" | "1" | "2" | "3";
5508
5951
  xl?: "0" | "1" | "2" | "3";
5509
5952
  };
5510
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5511
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5512
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5513
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5514
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5515
- };
5516
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5517
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5518
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5519
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5520
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5521
- };
5522
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5523
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5524
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5525
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5526
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5527
- };
5528
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5529
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5530
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5531
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5532
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5533
- };
5534
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5535
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5536
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5537
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5538
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5953
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5954
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5955
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5956
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5957
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5958
+ };
5959
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5960
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5961
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5962
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5963
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5964
+ };
5965
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5966
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5967
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5968
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5969
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5970
+ };
5971
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5972
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5973
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5974
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5975
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5976
+ };
5977
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5978
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5979
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5980
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5981
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5539
5982
  };
5540
5983
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
5541
5984
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -5752,7 +6195,8 @@ declare const Text: react.ForwardRefExoticComponent<Omit<{
5752
6195
  wordBreak?: "break-all" | "break-word";
5753
6196
  wordWrap?: "break-word" | "normal";
5754
6197
  textAlign?: "end" | "start" | "center" | "justify";
5755
- transitionProperty?: "default" | "none" | "all" | "colors" | "opacity" | "shadow" | "transform";
6198
+ animation?: "ping" | "pulse";
6199
+ transitionProperty?: "default" | "none" | "all" | "opacity" | "colors" | "shadow" | "transform";
5756
6200
  transitionTimingFunction?: "linear" | "ease" | "in" | "out" | "inOut";
5757
6201
  transitionDuration?: "150ms" | "200ms";
5758
6202
  whiteSpace?: "nowrap";
@@ -5808,41 +6252,41 @@ declare const Text: react.ForwardRefExoticComponent<Omit<{
5808
6252
  lg?: "1" | "auto" | "none" | "initial";
5809
6253
  xl?: "1" | "auto" | "none" | "initial";
5810
6254
  };
5811
- width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5812
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5813
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5814
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5815
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5816
- };
5817
- height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5818
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5819
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5820
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5821
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5822
- };
5823
- minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5824
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5825
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5826
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5827
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5828
- };
5829
- minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5830
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5831
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5832
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5833
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5834
- };
5835
- maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5836
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5837
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5838
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5839
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5840
- };
5841
- maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5842
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5843
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5844
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5845
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6255
+ width?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6256
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6257
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6258
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6259
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6260
+ };
6261
+ height?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6262
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6263
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6264
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6265
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6266
+ };
6267
+ minWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6268
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6269
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6270
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6271
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6272
+ };
6273
+ minHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6274
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6275
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6276
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6277
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6278
+ };
6279
+ maxWidth?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6280
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6281
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6282
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6283
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6284
+ };
6285
+ maxHeight?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6286
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6287
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6288
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6289
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5846
6290
  };
5847
6291
  flexDirection?: "column" | "row" | "column-reverse" | "row-reverse" | {
5848
6292
  base?: "column" | "row" | "column-reverse" | "row-reverse";
@@ -5958,35 +6402,35 @@ declare const Text: react.ForwardRefExoticComponent<Omit<{
5958
6402
  lg?: "0" | "1" | "2" | "3";
5959
6403
  xl?: "0" | "1" | "2" | "3";
5960
6404
  };
5961
- maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5962
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5963
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5964
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5965
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5966
- };
5967
- maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5968
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5969
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5970
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5971
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5972
- };
5973
- size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5974
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5975
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5976
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5977
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5978
- };
5979
- w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5980
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5981
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5982
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5983
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5984
- };
5985
- h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
5986
- base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5987
- md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5988
- lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5989
- xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6405
+ maxH?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6406
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6407
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6408
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6409
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6410
+ };
6411
+ maxW?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6412
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6413
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6414
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6415
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6416
+ };
6417
+ size?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6418
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6419
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6420
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6421
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6422
+ };
6423
+ w?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6424
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6425
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6426
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6427
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6428
+ };
6429
+ h?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22" | {
6430
+ base?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6431
+ md?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6432
+ lg?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
6433
+ xl?: "0" | "1" | "2" | "3" | "10" | "20" | "4" | "5" | "6" | "7" | "8" | "full" | "screen" | "1/2" | "1/3" | "2/3" | "1/4" | "3/4" | "9" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "21" | "22";
5990
6434
  };
5991
6435
  p?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl" | {
5992
6436
  base?: "0" | "1" | "2" | "none" | "3" | "10" | "md" | "lg" | "xl" | "4" | "5" | "6" | "7" | "8" | "9" | "11" | "12" | "2xs" | "xs" | "sm" | "2xl" | "3xl" | "4xl";
@@ -6186,5 +6630,5 @@ declare namespace TooltipTrigger {
6186
6630
  var displayName: string;
6187
6631
  }
6188
6632
 
6189
- export { AccountIcon, AlbumIcon, AnalyticsIcon, AppsIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArtistIcon, AssetIcon, AudioIcon, AudioOffIcon, BookmarkIcon, BookmarkOffIcon, Box, BroadcastIcon, CalendarIcon, CatalogIcon, ChannelIcon, ChatIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CinemaIcon, ClaimIcon, CloseIcon, ColumnChooserIcon, CompositionIcon, ConcertIcon, ConflictIcon, ConvertIcon, CopyIcon, CueSheetIcon, DashboardIcon, DataTable, DataTableBody, DataTableBulkActions, DataTableCheckbox, DataTableCounter, DataTableEditColumns, DataTableHeader, DatasetIcon, DeleteIcon, DeliveryIcon, DetailsIcon, Dialog, DialogBody, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DigitalIcon, DistributionIcon, DownloadIcon, EarningsIcon, EditIcon, EntitiesIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FavoriteIcon, FavoriteOffIcon, FileIcon, FilterIcon, FlagIcon, FlagOffIcon, ForwardIcon, FreezeIcon, HelpIcon, ICONS, Icon, ImageIcon, ImageOffIcon, IncomeIcon, InformationalIcon, InsightIcon, InvoiceIcon, IssueIcon, KeywordIcon, LanguageIcon, LegalIcon, LicenseIcon, LinkIcon, LocationIcon, LockIcon, LoginIcon, LogoutIcon, MailIcon, ManualIcon, MediaFileIcon, Menu, MenuContent, MenuDescription, MenuHeader, MenuIcon, MenuItem, MenuLabel, MenuSection, MenuSeparator, MenuSubmenu, MenuTrigger, MinusIcon, MoreOptionsIcon, NextIcon, NotificationIcon, OrganizationIcon, PageFirstIcon, PageLastIcon, PairIcon, PauseIcon, PendingIcon, PlayIcon, PlaycountIcon, PlusIcon, PolicyIcon, Popover, PopoverBody, PopoverContent, PopoverDescription, PopoverFooter, PopoverHeader, PopoverTitle, PopoverTrigger, PreviousIcon, PublicPerformanceIcon, PublisherIcon, RadioIcon, RecordLabelIcon, RecordingIcon, RedoIcon, RefreshIcon, ReportIcon, RestoreIcon, ResumeIcon, ReviewIcon, RewindIcon, RoleIcon, SearchFilledIcon, SearchIcon, SettingsIcon, ShareIcon, SortAscendingIcon, SortDescendingIcon, SortIcon, StatusIndicatorIcon, StopIcon, SuccessIcon, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, TagIcon, TelevisionIcon, Text, ThemeProvider, ThumbsDownIcon, ThumbsUpIcon, Tooltip, TooltipContent, TooltipTrigger, TrendingDownIcon, TrendingUpIcon, TriangleDownIcon, TriangleLeftIcon, TriangleRightIcon, TriangleUpIcon, UndoIcon, UnfreezeIcon, UnlinkIcon, UnlockIcon, UnpairIcon, UnverifiedIcon, UpdateIcon, UploadIcon, UsageIcon, UserIcon, UsersIcon, VerifiedIcon, VideoIcon, VideoOffIcon, WarningIcon, WorkIcon, WriterIcon, YouTubeIcon, extractBoxProps, useTheme };
6190
- export type { BoxProps, DataTableBodyProps, DataTableBulkActionsProps, DataTableCheckboxProps, DataTableCounterProps, DataTableHeaderProps, DataTableProps, DialogBodyProps, DialogDescriptionProps, DialogFooterProps, DialogHeaderProps, DialogTitleProps, IconProps, MenuContentProps, MenuHeaderProps, MenuItemProps, MenuSectionProps, MenuTriggerProps, PopoverContentProps, PopoverProps, TableBodyProps, TableCellProps, TableFooterProps, TableHeaderCellProps, TableHeaderProps, TableProps, TableRowProps, TextProps, TooltipContentProps, TooltipProps };
6633
+ export { AccountIcon, AlbumIcon, AnalyticsIcon, AppsIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArtistIcon, AssetIcon, AudioIcon, AudioOffIcon, BookmarkIcon, BookmarkOffIcon, Box, BroadcastIcon, CalendarIcon, CatalogIcon, ChannelIcon, ChatIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CinemaIcon, ClaimIcon, CloseIcon, ColumnChooserIcon, CompositionIcon, ConcertIcon, ConflictIcon, ConvertIcon, CopyIcon, CueSheetIcon, DashboardIcon, DataTable, DataTableBody, DataTableBulkActions, DataTableCheckbox, DataTableCounter, DataTableEditColumns, DataTableHeader, DatasetIcon, DeleteIcon, DeliveryIcon, DetailsIcon, Dialog, DialogBody, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DigitalIcon, DistributionIcon, DownloadIcon, EarningsIcon, EditIcon, EntitiesIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FavoriteIcon, FavoriteOffIcon, FileIcon, FilterIcon, FlagIcon, FlagOffIcon, ForwardIcon, FreezeIcon, HelpIcon, ICONS, Icon, ImageIcon, ImageOffIcon, IncomeIcon, InformationalIcon, InsightIcon, InvoiceIcon, IssueIcon, KeywordIcon, LanguageIcon, LegalIcon, LicenseIcon, LinkIcon, LocationIcon, LockIcon, LoginIcon, LogoutIcon, MailIcon, ManualIcon, MediaFileIcon, Menu, MenuContent, MenuDescription, MenuHeader, MenuIcon, MenuItem, MenuLabel, MenuSection, MenuSeparator, MenuSubmenu, MenuTrigger, MinusIcon, MoreOptionsIcon, NextIcon, NotificationIcon, OrganizationIcon, PageFirstIcon, PageLastIcon, PairIcon, PauseIcon, PendingIcon, PlayIcon, PlaycountIcon, PlusIcon, PolicyIcon, Popover, PopoverBody, PopoverContent, PopoverDescription, PopoverFooter, PopoverHeader, PopoverTitle, PopoverTrigger, PreviousIcon, PublicPerformanceIcon, PublisherIcon, RadioIcon, RecordLabelIcon, RecordingIcon, RedoIcon, RefreshIcon, ReportIcon, RestoreIcon, ResumeIcon, ReviewIcon, RewindIcon, RoleIcon, SearchFilledIcon, SearchIcon, SettingsIcon, ShareIcon, Skeleton, SortAscendingIcon, SortDescendingIcon, SortIcon, StatusIndicatorIcon, StopIcon, SuccessIcon, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, TagIcon, TelevisionIcon, Text, ThemeProvider, ThumbsDownIcon, ThumbsUpIcon, Tooltip, TooltipContent, TooltipTrigger, TrendingDownIcon, TrendingUpIcon, TriangleDownIcon, TriangleLeftIcon, TriangleRightIcon, TriangleUpIcon, UndoIcon, UnfreezeIcon, UnlinkIcon, UnlockIcon, UnpairIcon, UnverifiedIcon, UpdateIcon, UploadIcon, UsageIcon, UserIcon, UsersIcon, VerifiedIcon, VideoIcon, VideoOffIcon, WarningIcon, WorkIcon, WriterIcon, YouTubeIcon, cn, extractBoxProps, useTheme };
6634
+ export type { BoxProps, DataTableBodyProps, DataTableBulkActionsProps, DataTableCheckboxProps, DataTableCounterProps, DataTableHeaderProps, DataTableProps, DialogBodyProps, DialogDescriptionProps, DialogFooterProps, DialogHeaderProps, DialogTitleProps, IconProps, MenuContentProps, MenuHeaderProps, MenuItemProps, MenuSectionProps, MenuTriggerProps, PopoverContentProps, PopoverProps, SkeletonProps, TableBodyProps, TableCellProps, TableFooterProps, TableHeaderCellProps, TableHeaderProps, TableProps, TableRowProps, TextProps, TooltipContentProps, TooltipProps };