@wikicasa-dev/components 2.1.4-alpha.2 → 2.1.4-alpha.21

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 (110) hide show
  1. package/dist/UIKit/BaseAutocomplete.d.ts +14 -12
  2. package/dist/UIKit/BaseAutocomplete.js +3 -2
  3. package/dist/UIKit/BaseBadge.d.ts +2 -38
  4. package/dist/UIKit/BaseDropDown.d.ts +8 -13
  5. package/dist/UIKit/BaseInput.d.ts +4 -5
  6. package/dist/UIKit/BasePagination.d.ts +7 -1
  7. package/dist/UIKit/BasePin.d.ts +22 -0
  8. package/dist/UIKit/BaseSelect.d.ts +26 -0
  9. package/dist/UIKit/BaseSelect.js +5 -0
  10. package/dist/UIKit/BaseTextarea.js +2 -2
  11. package/dist/UIKit/Checkbox/CheckboxGroup.d.ts +3 -3
  12. package/dist/UIKit/types.d.ts +7 -3
  13. package/dist/_virtual/_commonjsHelpers.js +6 -0
  14. package/dist/_virtual/cloneDeep.js +4 -0
  15. package/dist/_virtual/create-plugin.js +4 -0
  16. package/dist/_virtual/createPlugin.js +4 -0
  17. package/dist/_virtual/default-theme.js +4 -0
  18. package/dist/_virtual/defaultTheme.js +7 -0
  19. package/dist/_virtual/plugin.js +7 -0
  20. package/dist/assets/packages/components/lib/UIKit/BaseAlert.css +1 -1
  21. package/dist/assets/packages/components/lib/UIKit/BaseAutocomplete.css +1 -0
  22. package/dist/assets/packages/components/lib/UIKit/BaseBadge.css +1 -1
  23. package/dist/assets/packages/components/lib/UIKit/BaseComplexToggle.css +1 -1
  24. package/dist/assets/packages/components/lib/UIKit/BaseInput.css +1 -1
  25. package/dist/assets/packages/components/lib/UIKit/BasePin.css +1 -1
  26. package/dist/assets/packages/components/lib/UIKit/{NativeSelect.css → BaseSelect.css} +1 -1
  27. package/dist/assets/packages/components/lib/UIKit/BaseTextarea.css +1 -1
  28. package/dist/assets/packages/components/src/tailwind.css +1 -1
  29. package/dist/index.d.ts +3 -1
  30. package/dist/index.js +94 -87
  31. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/keyboard.js +13 -13
  32. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/classes-to-selector.js +1 -1
  33. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/defaultTheme.js +11 -0
  34. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/public/create-plugin.js +25 -0
  35. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/public/default-theme.js +26 -0
  36. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/util/cloneDeep.js +23 -0
  37. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/util/createPlugin.js +34 -0
  38. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/plugin.js +11 -0
  39. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/stubs/config.full.js +1068 -0
  40. package/dist/packages/components/lazyModules/Swiper/autoplay.js +2 -2
  41. package/dist/packages/components/lazyModules/Swiper/controller.js +2 -2
  42. package/dist/packages/components/lazyModules/Swiper/free-mode.js +2 -2
  43. package/dist/packages/components/lazyModules/Swiper/keyboard.js +2 -2
  44. package/dist/packages/components/lazyModules/Swiper/navigation.js +2 -2
  45. package/dist/packages/components/lazyModules/Swiper/pagination.js +2 -2
  46. package/dist/packages/components/lazyModules/Swiper/thumbs.js +2 -2
  47. package/dist/packages/components/lib/UIKit/AccessibleSelect.vue.js +24 -24
  48. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordion.vue.js +10 -9
  49. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionBtn.vue.js +2 -2
  50. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionItem.vue.js +2 -2
  51. package/dist/packages/components/lib/UIKit/BaseAlert.vue.js +2 -2
  52. package/dist/packages/components/lib/UIKit/BaseAutocomplete.vue.js +106 -140
  53. package/dist/packages/components/lib/UIKit/BaseBadge.vue.js +16 -45
  54. package/dist/packages/components/lib/UIKit/BaseBanner.vue.js +9 -9
  55. package/dist/packages/components/lib/UIKit/BaseButton.vue.js +15 -15
  56. package/dist/packages/components/lib/UIKit/BaseChip.vue.js +2 -2
  57. package/dist/packages/components/lib/UIKit/BaseCollapse.vue.js +2 -2
  58. package/dist/packages/components/lib/UIKit/BaseDropDown.vue.js +53 -65
  59. package/dist/packages/components/lib/UIKit/BaseFloatingLabel.vue.js +4 -4
  60. package/dist/packages/components/lib/UIKit/BaseInput.vue.js +52 -51
  61. package/dist/packages/components/lib/UIKit/BaseModal.vue.js +2 -2
  62. package/dist/packages/components/lib/UIKit/BaseNotificationBadge.vue.js +1 -1
  63. package/dist/packages/components/lib/UIKit/BasePagination.vue.js +63 -40
  64. package/dist/packages/components/lib/UIKit/BasePin.vue.js +1 -1
  65. package/dist/packages/components/lib/UIKit/{NativeSelect.vue.js → BaseSelect.vue.js} +12 -12
  66. package/dist/packages/components/lib/UIKit/BaseSnackbar.vue.js +2 -2
  67. package/dist/packages/components/lib/UIKit/BaseTextarea.vue.js +8 -8
  68. package/dist/packages/components/lib/UIKit/BaseUploadFile.vue.js +1 -1
  69. package/dist/packages/components/lib/UIKit/Checkbox/CheckboxBtn.vue.js +4 -4
  70. package/dist/packages/components/lib/UIKit/Checkbox/CheckboxGroup.vue.js +7 -9
  71. package/dist/packages/components/lib/UIKit/DatePicker.vue.js +4 -4
  72. package/dist/packages/components/lib/UIKit/InputDropdown.vue.js +30 -30
  73. package/dist/packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.vue.js +1 -1
  74. package/dist/packages/components/lib/components/carousel/SwiperCarousel.vue.js +7 -6
  75. package/dist/packages/components/plugins/buttonPlugin.js +232 -0
  76. package/dist/tailwind.config.js +147 -0
  77. package/package.json +24 -31
  78. package/plugins/buttonPlugin.ts +290 -0
  79. package/dist/UIKit/NativeSelect.js +0 -5
  80. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/free-mode.css +0 -0
  81. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/navigation.css +0 -0
  82. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/pagination.css +0 -0
  83. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/zoom.css +0 -0
  84. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/swiper.css +0 -0
  85. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/ArrowFilledIcon.js +0 -0
  86. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/ArrowIcon.js +0 -0
  87. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/CheckIcon.js +0 -0
  88. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/CloseIcon.js +0 -0
  89. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/DefaultValues-CpabIgVz.js +0 -0
  90. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/PharmacyIcon.js +0 -0
  91. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/WarningIconRounded.js +0 -0
  92. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.15-alpha.1_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/svg-icons/dist/svgIconFactory-BpnFimFz.js +0 -0
  93. /package/dist/node_modules/.pnpm/{@wikicasa-dev_utilities@1.1.21 → @wikicasa-dev_utilities@1.1.22-alpha.4}/node_modules/@wikicasa-dev/utilities/dist/utils/FunctionUtils.js +0 -0
  94. /package/dist/node_modules/.pnpm/{@wikicasa-dev_utilities@1.1.21 → @wikicasa-dev_utilities@1.1.22-alpha.4}/node_modules/@wikicasa-dev/utilities/dist/utils/ObjectUtils.js +0 -0
  95. /package/dist/node_modules/.pnpm/{@wikicasa-dev_vue-composables@0.0.23_typescript@5.8.3 → @wikicasa-dev_vue-composables@0.0.24-alpha.5_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/vue-composables/dist/useBreakpoints.js +0 -0
  96. /package/dist/node_modules/.pnpm/{@wikicasa-dev_vue-composables@0.0.23_typescript@5.8.3 → @wikicasa-dev_vue-composables@0.0.24-alpha.5_vue@3.5.16_typescript@5.8.3_}/node_modules/@wikicasa-dev/vue-composables/dist/useKeyboardController.js +0 -0
  97. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/autoplay.css.js +0 -0
  98. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/autoplay.js +0 -0
  99. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/controller.css.js +0 -0
  100. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/controller.js +0 -0
  101. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/free-mode.js +0 -0
  102. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/keyboard.css.js +0 -0
  103. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/navigation.js +0 -0
  104. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/pagination.js +0 -0
  105. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/thumbs.css.js +0 -0
  106. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/thumbs.js +0 -0
  107. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/modules/zoom.js +0 -0
  108. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/create-element-if-not-defined.js +0 -0
  109. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/ssr-window.esm.js +0 -0
  110. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.10}/node_modules/swiper/shared/utils.js +0 -0
@@ -0,0 +1,1068 @@
1
+ var t, r;
2
+ function o() {
3
+ return r || (r = 1, t = {
4
+ content: [],
5
+ presets: [],
6
+ darkMode: "media",
7
+ // or 'class'
8
+ theme: {
9
+ accentColor: ({ theme: e }) => ({
10
+ ...e("colors"),
11
+ auto: "auto"
12
+ }),
13
+ animation: {
14
+ none: "none",
15
+ spin: "spin 1s linear infinite",
16
+ ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
17
+ pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
18
+ bounce: "bounce 1s infinite"
19
+ },
20
+ aria: {
21
+ busy: 'busy="true"',
22
+ checked: 'checked="true"',
23
+ disabled: 'disabled="true"',
24
+ expanded: 'expanded="true"',
25
+ hidden: 'hidden="true"',
26
+ pressed: 'pressed="true"',
27
+ readonly: 'readonly="true"',
28
+ required: 'required="true"',
29
+ selected: 'selected="true"'
30
+ },
31
+ aspectRatio: {
32
+ auto: "auto",
33
+ square: "1 / 1",
34
+ video: "16 / 9"
35
+ },
36
+ backdropBlur: ({ theme: e }) => e("blur"),
37
+ backdropBrightness: ({ theme: e }) => e("brightness"),
38
+ backdropContrast: ({ theme: e }) => e("contrast"),
39
+ backdropGrayscale: ({ theme: e }) => e("grayscale"),
40
+ backdropHueRotate: ({ theme: e }) => e("hueRotate"),
41
+ backdropInvert: ({ theme: e }) => e("invert"),
42
+ backdropOpacity: ({ theme: e }) => e("opacity"),
43
+ backdropSaturate: ({ theme: e }) => e("saturate"),
44
+ backdropSepia: ({ theme: e }) => e("sepia"),
45
+ backgroundColor: ({ theme: e }) => e("colors"),
46
+ backgroundImage: {
47
+ none: "none",
48
+ "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))",
49
+ "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))",
50
+ "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))",
51
+ "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))",
52
+ "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))",
53
+ "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))",
54
+ "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))",
55
+ "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))"
56
+ },
57
+ backgroundOpacity: ({ theme: e }) => e("opacity"),
58
+ backgroundPosition: {
59
+ bottom: "bottom",
60
+ center: "center",
61
+ left: "left",
62
+ "left-bottom": "left bottom",
63
+ "left-top": "left top",
64
+ right: "right",
65
+ "right-bottom": "right bottom",
66
+ "right-top": "right top",
67
+ top: "top"
68
+ },
69
+ backgroundSize: {
70
+ auto: "auto",
71
+ cover: "cover",
72
+ contain: "contain"
73
+ },
74
+ blur: {
75
+ 0: "0",
76
+ none: "",
77
+ sm: "4px",
78
+ DEFAULT: "8px",
79
+ md: "12px",
80
+ lg: "16px",
81
+ xl: "24px",
82
+ "2xl": "40px",
83
+ "3xl": "64px"
84
+ },
85
+ borderColor: ({ theme: e }) => ({
86
+ ...e("colors"),
87
+ DEFAULT: e("colors.gray.200", "currentColor")
88
+ }),
89
+ borderOpacity: ({ theme: e }) => e("opacity"),
90
+ borderRadius: {
91
+ none: "0px",
92
+ sm: "0.125rem",
93
+ DEFAULT: "0.25rem",
94
+ md: "0.375rem",
95
+ lg: "0.5rem",
96
+ xl: "0.75rem",
97
+ "2xl": "1rem",
98
+ "3xl": "1.5rem",
99
+ full: "9999px"
100
+ },
101
+ borderSpacing: ({ theme: e }) => ({
102
+ ...e("spacing")
103
+ }),
104
+ borderWidth: {
105
+ DEFAULT: "1px",
106
+ 0: "0px",
107
+ 2: "2px",
108
+ 4: "4px",
109
+ 8: "8px"
110
+ },
111
+ boxShadow: {
112
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
113
+ DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
114
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
115
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
116
+ xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
117
+ "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
118
+ inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
119
+ none: "none"
120
+ },
121
+ boxShadowColor: ({ theme: e }) => e("colors"),
122
+ brightness: {
123
+ 0: "0",
124
+ 50: ".5",
125
+ 75: ".75",
126
+ 90: ".9",
127
+ 95: ".95",
128
+ 100: "1",
129
+ 105: "1.05",
130
+ 110: "1.1",
131
+ 125: "1.25",
132
+ 150: "1.5",
133
+ 200: "2"
134
+ },
135
+ caretColor: ({ theme: e }) => e("colors"),
136
+ colors: ({ colors: e }) => ({
137
+ inherit: e.inherit,
138
+ current: e.current,
139
+ transparent: e.transparent,
140
+ black: e.black,
141
+ white: e.white,
142
+ slate: e.slate,
143
+ gray: e.gray,
144
+ zinc: e.zinc,
145
+ neutral: e.neutral,
146
+ stone: e.stone,
147
+ red: e.red,
148
+ orange: e.orange,
149
+ amber: e.amber,
150
+ yellow: e.yellow,
151
+ lime: e.lime,
152
+ green: e.green,
153
+ emerald: e.emerald,
154
+ teal: e.teal,
155
+ cyan: e.cyan,
156
+ sky: e.sky,
157
+ blue: e.blue,
158
+ indigo: e.indigo,
159
+ violet: e.violet,
160
+ purple: e.purple,
161
+ fuchsia: e.fuchsia,
162
+ pink: e.pink,
163
+ rose: e.rose
164
+ }),
165
+ columns: {
166
+ auto: "auto",
167
+ 1: "1",
168
+ 2: "2",
169
+ 3: "3",
170
+ 4: "4",
171
+ 5: "5",
172
+ 6: "6",
173
+ 7: "7",
174
+ 8: "8",
175
+ 9: "9",
176
+ 10: "10",
177
+ 11: "11",
178
+ 12: "12",
179
+ "3xs": "16rem",
180
+ "2xs": "18rem",
181
+ xs: "20rem",
182
+ sm: "24rem",
183
+ md: "28rem",
184
+ lg: "32rem",
185
+ xl: "36rem",
186
+ "2xl": "42rem",
187
+ "3xl": "48rem",
188
+ "4xl": "56rem",
189
+ "5xl": "64rem",
190
+ "6xl": "72rem",
191
+ "7xl": "80rem"
192
+ },
193
+ container: {},
194
+ content: {
195
+ none: "none"
196
+ },
197
+ contrast: {
198
+ 0: "0",
199
+ 50: ".5",
200
+ 75: ".75",
201
+ 100: "1",
202
+ 125: "1.25",
203
+ 150: "1.5",
204
+ 200: "2"
205
+ },
206
+ cursor: {
207
+ auto: "auto",
208
+ default: "default",
209
+ pointer: "pointer",
210
+ wait: "wait",
211
+ text: "text",
212
+ move: "move",
213
+ help: "help",
214
+ "not-allowed": "not-allowed",
215
+ none: "none",
216
+ "context-menu": "context-menu",
217
+ progress: "progress",
218
+ cell: "cell",
219
+ crosshair: "crosshair",
220
+ "vertical-text": "vertical-text",
221
+ alias: "alias",
222
+ copy: "copy",
223
+ "no-drop": "no-drop",
224
+ grab: "grab",
225
+ grabbing: "grabbing",
226
+ "all-scroll": "all-scroll",
227
+ "col-resize": "col-resize",
228
+ "row-resize": "row-resize",
229
+ "n-resize": "n-resize",
230
+ "e-resize": "e-resize",
231
+ "s-resize": "s-resize",
232
+ "w-resize": "w-resize",
233
+ "ne-resize": "ne-resize",
234
+ "nw-resize": "nw-resize",
235
+ "se-resize": "se-resize",
236
+ "sw-resize": "sw-resize",
237
+ "ew-resize": "ew-resize",
238
+ "ns-resize": "ns-resize",
239
+ "nesw-resize": "nesw-resize",
240
+ "nwse-resize": "nwse-resize",
241
+ "zoom-in": "zoom-in",
242
+ "zoom-out": "zoom-out"
243
+ },
244
+ divideColor: ({ theme: e }) => e("borderColor"),
245
+ divideOpacity: ({ theme: e }) => e("borderOpacity"),
246
+ divideWidth: ({ theme: e }) => e("borderWidth"),
247
+ dropShadow: {
248
+ sm: "0 1px 1px rgb(0 0 0 / 0.05)",
249
+ DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
250
+ md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
251
+ lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
252
+ xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
253
+ "2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
254
+ none: "0 0 #0000"
255
+ },
256
+ fill: ({ theme: e }) => ({
257
+ none: "none",
258
+ ...e("colors")
259
+ }),
260
+ flex: {
261
+ 1: "1 1 0%",
262
+ auto: "1 1 auto",
263
+ initial: "0 1 auto",
264
+ none: "none"
265
+ },
266
+ flexBasis: ({ theme: e }) => ({
267
+ auto: "auto",
268
+ ...e("spacing"),
269
+ "1/2": "50%",
270
+ "1/3": "33.333333%",
271
+ "2/3": "66.666667%",
272
+ "1/4": "25%",
273
+ "2/4": "50%",
274
+ "3/4": "75%",
275
+ "1/5": "20%",
276
+ "2/5": "40%",
277
+ "3/5": "60%",
278
+ "4/5": "80%",
279
+ "1/6": "16.666667%",
280
+ "2/6": "33.333333%",
281
+ "3/6": "50%",
282
+ "4/6": "66.666667%",
283
+ "5/6": "83.333333%",
284
+ "1/12": "8.333333%",
285
+ "2/12": "16.666667%",
286
+ "3/12": "25%",
287
+ "4/12": "33.333333%",
288
+ "5/12": "41.666667%",
289
+ "6/12": "50%",
290
+ "7/12": "58.333333%",
291
+ "8/12": "66.666667%",
292
+ "9/12": "75%",
293
+ "10/12": "83.333333%",
294
+ "11/12": "91.666667%",
295
+ full: "100%"
296
+ }),
297
+ flexGrow: {
298
+ 0: "0",
299
+ DEFAULT: "1"
300
+ },
301
+ flexShrink: {
302
+ 0: "0",
303
+ DEFAULT: "1"
304
+ },
305
+ fontFamily: {
306
+ sans: [
307
+ "ui-sans-serif",
308
+ "system-ui",
309
+ "sans-serif",
310
+ '"Apple Color Emoji"',
311
+ '"Segoe UI Emoji"',
312
+ '"Segoe UI Symbol"',
313
+ '"Noto Color Emoji"'
314
+ ],
315
+ serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
316
+ mono: [
317
+ "ui-monospace",
318
+ "SFMono-Regular",
319
+ "Menlo",
320
+ "Monaco",
321
+ "Consolas",
322
+ '"Liberation Mono"',
323
+ '"Courier New"',
324
+ "monospace"
325
+ ]
326
+ },
327
+ fontSize: {
328
+ xs: ["0.75rem", { lineHeight: "1rem" }],
329
+ sm: ["0.875rem", { lineHeight: "1.25rem" }],
330
+ base: ["1rem", { lineHeight: "1.5rem" }],
331
+ lg: ["1.125rem", { lineHeight: "1.75rem" }],
332
+ xl: ["1.25rem", { lineHeight: "1.75rem" }],
333
+ "2xl": ["1.5rem", { lineHeight: "2rem" }],
334
+ "3xl": ["1.875rem", { lineHeight: "2.25rem" }],
335
+ "4xl": ["2.25rem", { lineHeight: "2.5rem" }],
336
+ "5xl": ["3rem", { lineHeight: "1" }],
337
+ "6xl": ["3.75rem", { lineHeight: "1" }],
338
+ "7xl": ["4.5rem", { lineHeight: "1" }],
339
+ "8xl": ["6rem", { lineHeight: "1" }],
340
+ "9xl": ["8rem", { lineHeight: "1" }]
341
+ },
342
+ fontWeight: {
343
+ thin: "100",
344
+ extralight: "200",
345
+ light: "300",
346
+ normal: "400",
347
+ medium: "500",
348
+ semibold: "600",
349
+ bold: "700",
350
+ extrabold: "800",
351
+ black: "900"
352
+ },
353
+ gap: ({ theme: e }) => e("spacing"),
354
+ gradientColorStops: ({ theme: e }) => e("colors"),
355
+ gradientColorStopPositions: {
356
+ "0%": "0%",
357
+ "5%": "5%",
358
+ "10%": "10%",
359
+ "15%": "15%",
360
+ "20%": "20%",
361
+ "25%": "25%",
362
+ "30%": "30%",
363
+ "35%": "35%",
364
+ "40%": "40%",
365
+ "45%": "45%",
366
+ "50%": "50%",
367
+ "55%": "55%",
368
+ "60%": "60%",
369
+ "65%": "65%",
370
+ "70%": "70%",
371
+ "75%": "75%",
372
+ "80%": "80%",
373
+ "85%": "85%",
374
+ "90%": "90%",
375
+ "95%": "95%",
376
+ "100%": "100%"
377
+ },
378
+ grayscale: {
379
+ 0: "0",
380
+ DEFAULT: "100%"
381
+ },
382
+ gridAutoColumns: {
383
+ auto: "auto",
384
+ min: "min-content",
385
+ max: "max-content",
386
+ fr: "minmax(0, 1fr)"
387
+ },
388
+ gridAutoRows: {
389
+ auto: "auto",
390
+ min: "min-content",
391
+ max: "max-content",
392
+ fr: "minmax(0, 1fr)"
393
+ },
394
+ gridColumn: {
395
+ auto: "auto",
396
+ "span-1": "span 1 / span 1",
397
+ "span-2": "span 2 / span 2",
398
+ "span-3": "span 3 / span 3",
399
+ "span-4": "span 4 / span 4",
400
+ "span-5": "span 5 / span 5",
401
+ "span-6": "span 6 / span 6",
402
+ "span-7": "span 7 / span 7",
403
+ "span-8": "span 8 / span 8",
404
+ "span-9": "span 9 / span 9",
405
+ "span-10": "span 10 / span 10",
406
+ "span-11": "span 11 / span 11",
407
+ "span-12": "span 12 / span 12",
408
+ "span-full": "1 / -1"
409
+ },
410
+ gridColumnEnd: {
411
+ auto: "auto",
412
+ 1: "1",
413
+ 2: "2",
414
+ 3: "3",
415
+ 4: "4",
416
+ 5: "5",
417
+ 6: "6",
418
+ 7: "7",
419
+ 8: "8",
420
+ 9: "9",
421
+ 10: "10",
422
+ 11: "11",
423
+ 12: "12",
424
+ 13: "13"
425
+ },
426
+ gridColumnStart: {
427
+ auto: "auto",
428
+ 1: "1",
429
+ 2: "2",
430
+ 3: "3",
431
+ 4: "4",
432
+ 5: "5",
433
+ 6: "6",
434
+ 7: "7",
435
+ 8: "8",
436
+ 9: "9",
437
+ 10: "10",
438
+ 11: "11",
439
+ 12: "12",
440
+ 13: "13"
441
+ },
442
+ gridRow: {
443
+ auto: "auto",
444
+ "span-1": "span 1 / span 1",
445
+ "span-2": "span 2 / span 2",
446
+ "span-3": "span 3 / span 3",
447
+ "span-4": "span 4 / span 4",
448
+ "span-5": "span 5 / span 5",
449
+ "span-6": "span 6 / span 6",
450
+ "span-7": "span 7 / span 7",
451
+ "span-8": "span 8 / span 8",
452
+ "span-9": "span 9 / span 9",
453
+ "span-10": "span 10 / span 10",
454
+ "span-11": "span 11 / span 11",
455
+ "span-12": "span 12 / span 12",
456
+ "span-full": "1 / -1"
457
+ },
458
+ gridRowEnd: {
459
+ auto: "auto",
460
+ 1: "1",
461
+ 2: "2",
462
+ 3: "3",
463
+ 4: "4",
464
+ 5: "5",
465
+ 6: "6",
466
+ 7: "7",
467
+ 8: "8",
468
+ 9: "9",
469
+ 10: "10",
470
+ 11: "11",
471
+ 12: "12",
472
+ 13: "13"
473
+ },
474
+ gridRowStart: {
475
+ auto: "auto",
476
+ 1: "1",
477
+ 2: "2",
478
+ 3: "3",
479
+ 4: "4",
480
+ 5: "5",
481
+ 6: "6",
482
+ 7: "7",
483
+ 8: "8",
484
+ 9: "9",
485
+ 10: "10",
486
+ 11: "11",
487
+ 12: "12",
488
+ 13: "13"
489
+ },
490
+ gridTemplateColumns: {
491
+ none: "none",
492
+ subgrid: "subgrid",
493
+ 1: "repeat(1, minmax(0, 1fr))",
494
+ 2: "repeat(2, minmax(0, 1fr))",
495
+ 3: "repeat(3, minmax(0, 1fr))",
496
+ 4: "repeat(4, minmax(0, 1fr))",
497
+ 5: "repeat(5, minmax(0, 1fr))",
498
+ 6: "repeat(6, minmax(0, 1fr))",
499
+ 7: "repeat(7, minmax(0, 1fr))",
500
+ 8: "repeat(8, minmax(0, 1fr))",
501
+ 9: "repeat(9, minmax(0, 1fr))",
502
+ 10: "repeat(10, minmax(0, 1fr))",
503
+ 11: "repeat(11, minmax(0, 1fr))",
504
+ 12: "repeat(12, minmax(0, 1fr))"
505
+ },
506
+ gridTemplateRows: {
507
+ none: "none",
508
+ subgrid: "subgrid",
509
+ 1: "repeat(1, minmax(0, 1fr))",
510
+ 2: "repeat(2, minmax(0, 1fr))",
511
+ 3: "repeat(3, minmax(0, 1fr))",
512
+ 4: "repeat(4, minmax(0, 1fr))",
513
+ 5: "repeat(5, minmax(0, 1fr))",
514
+ 6: "repeat(6, minmax(0, 1fr))",
515
+ 7: "repeat(7, minmax(0, 1fr))",
516
+ 8: "repeat(8, minmax(0, 1fr))",
517
+ 9: "repeat(9, minmax(0, 1fr))",
518
+ 10: "repeat(10, minmax(0, 1fr))",
519
+ 11: "repeat(11, minmax(0, 1fr))",
520
+ 12: "repeat(12, minmax(0, 1fr))"
521
+ },
522
+ height: ({ theme: e }) => ({
523
+ auto: "auto",
524
+ ...e("spacing"),
525
+ "1/2": "50%",
526
+ "1/3": "33.333333%",
527
+ "2/3": "66.666667%",
528
+ "1/4": "25%",
529
+ "2/4": "50%",
530
+ "3/4": "75%",
531
+ "1/5": "20%",
532
+ "2/5": "40%",
533
+ "3/5": "60%",
534
+ "4/5": "80%",
535
+ "1/6": "16.666667%",
536
+ "2/6": "33.333333%",
537
+ "3/6": "50%",
538
+ "4/6": "66.666667%",
539
+ "5/6": "83.333333%",
540
+ full: "100%",
541
+ screen: "100vh",
542
+ svh: "100svh",
543
+ lvh: "100lvh",
544
+ dvh: "100dvh",
545
+ min: "min-content",
546
+ max: "max-content",
547
+ fit: "fit-content"
548
+ }),
549
+ hueRotate: {
550
+ 0: "0deg",
551
+ 15: "15deg",
552
+ 30: "30deg",
553
+ 60: "60deg",
554
+ 90: "90deg",
555
+ 180: "180deg"
556
+ },
557
+ inset: ({ theme: e }) => ({
558
+ auto: "auto",
559
+ ...e("spacing"),
560
+ "1/2": "50%",
561
+ "1/3": "33.333333%",
562
+ "2/3": "66.666667%",
563
+ "1/4": "25%",
564
+ "2/4": "50%",
565
+ "3/4": "75%",
566
+ full: "100%"
567
+ }),
568
+ invert: {
569
+ 0: "0",
570
+ DEFAULT: "100%"
571
+ },
572
+ keyframes: {
573
+ spin: {
574
+ to: {
575
+ transform: "rotate(360deg)"
576
+ }
577
+ },
578
+ ping: {
579
+ "75%, 100%": {
580
+ transform: "scale(2)",
581
+ opacity: "0"
582
+ }
583
+ },
584
+ pulse: {
585
+ "50%": {
586
+ opacity: ".5"
587
+ }
588
+ },
589
+ bounce: {
590
+ "0%, 100%": {
591
+ transform: "translateY(-25%)",
592
+ animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
593
+ },
594
+ "50%": {
595
+ transform: "none",
596
+ animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
597
+ }
598
+ }
599
+ },
600
+ letterSpacing: {
601
+ tighter: "-0.05em",
602
+ tight: "-0.025em",
603
+ normal: "0em",
604
+ wide: "0.025em",
605
+ wider: "0.05em",
606
+ widest: "0.1em"
607
+ },
608
+ lineHeight: {
609
+ none: "1",
610
+ tight: "1.25",
611
+ snug: "1.375",
612
+ normal: "1.5",
613
+ relaxed: "1.625",
614
+ loose: "2",
615
+ 3: ".75rem",
616
+ 4: "1rem",
617
+ 5: "1.25rem",
618
+ 6: "1.5rem",
619
+ 7: "1.75rem",
620
+ 8: "2rem",
621
+ 9: "2.25rem",
622
+ 10: "2.5rem"
623
+ },
624
+ listStyleType: {
625
+ none: "none",
626
+ disc: "disc",
627
+ decimal: "decimal"
628
+ },
629
+ listStyleImage: {
630
+ none: "none"
631
+ },
632
+ margin: ({ theme: e }) => ({
633
+ auto: "auto",
634
+ ...e("spacing")
635
+ }),
636
+ lineClamp: {
637
+ 1: "1",
638
+ 2: "2",
639
+ 3: "3",
640
+ 4: "4",
641
+ 5: "5",
642
+ 6: "6"
643
+ },
644
+ maxHeight: ({ theme: e }) => ({
645
+ ...e("spacing"),
646
+ none: "none",
647
+ full: "100%",
648
+ screen: "100vh",
649
+ svh: "100svh",
650
+ lvh: "100lvh",
651
+ dvh: "100dvh",
652
+ min: "min-content",
653
+ max: "max-content",
654
+ fit: "fit-content"
655
+ }),
656
+ maxWidth: ({ theme: e, breakpoints: n }) => ({
657
+ ...e("spacing"),
658
+ none: "none",
659
+ xs: "20rem",
660
+ sm: "24rem",
661
+ md: "28rem",
662
+ lg: "32rem",
663
+ xl: "36rem",
664
+ "2xl": "42rem",
665
+ "3xl": "48rem",
666
+ "4xl": "56rem",
667
+ "5xl": "64rem",
668
+ "6xl": "72rem",
669
+ "7xl": "80rem",
670
+ full: "100%",
671
+ min: "min-content",
672
+ max: "max-content",
673
+ fit: "fit-content",
674
+ prose: "65ch",
675
+ ...n(e("screens"))
676
+ }),
677
+ minHeight: ({ theme: e }) => ({
678
+ ...e("spacing"),
679
+ full: "100%",
680
+ screen: "100vh",
681
+ svh: "100svh",
682
+ lvh: "100lvh",
683
+ dvh: "100dvh",
684
+ min: "min-content",
685
+ max: "max-content",
686
+ fit: "fit-content"
687
+ }),
688
+ minWidth: ({ theme: e }) => ({
689
+ ...e("spacing"),
690
+ full: "100%",
691
+ min: "min-content",
692
+ max: "max-content",
693
+ fit: "fit-content"
694
+ }),
695
+ objectPosition: {
696
+ bottom: "bottom",
697
+ center: "center",
698
+ left: "left",
699
+ "left-bottom": "left bottom",
700
+ "left-top": "left top",
701
+ right: "right",
702
+ "right-bottom": "right bottom",
703
+ "right-top": "right top",
704
+ top: "top"
705
+ },
706
+ opacity: {
707
+ 0: "0",
708
+ 5: "0.05",
709
+ 10: "0.1",
710
+ 15: "0.15",
711
+ 20: "0.2",
712
+ 25: "0.25",
713
+ 30: "0.3",
714
+ 35: "0.35",
715
+ 40: "0.4",
716
+ 45: "0.45",
717
+ 50: "0.5",
718
+ 55: "0.55",
719
+ 60: "0.6",
720
+ 65: "0.65",
721
+ 70: "0.7",
722
+ 75: "0.75",
723
+ 80: "0.8",
724
+ 85: "0.85",
725
+ 90: "0.9",
726
+ 95: "0.95",
727
+ 100: "1"
728
+ },
729
+ order: {
730
+ first: "-9999",
731
+ last: "9999",
732
+ none: "0",
733
+ 1: "1",
734
+ 2: "2",
735
+ 3: "3",
736
+ 4: "4",
737
+ 5: "5",
738
+ 6: "6",
739
+ 7: "7",
740
+ 8: "8",
741
+ 9: "9",
742
+ 10: "10",
743
+ 11: "11",
744
+ 12: "12"
745
+ },
746
+ outlineColor: ({ theme: e }) => e("colors"),
747
+ outlineOffset: {
748
+ 0: "0px",
749
+ 1: "1px",
750
+ 2: "2px",
751
+ 4: "4px",
752
+ 8: "8px"
753
+ },
754
+ outlineWidth: {
755
+ 0: "0px",
756
+ 1: "1px",
757
+ 2: "2px",
758
+ 4: "4px",
759
+ 8: "8px"
760
+ },
761
+ padding: ({ theme: e }) => e("spacing"),
762
+ placeholderColor: ({ theme: e }) => e("colors"),
763
+ placeholderOpacity: ({ theme: e }) => e("opacity"),
764
+ ringColor: ({ theme: e }) => ({
765
+ DEFAULT: e("colors.blue.500", "#3b82f6"),
766
+ ...e("colors")
767
+ }),
768
+ ringOffsetColor: ({ theme: e }) => e("colors"),
769
+ ringOffsetWidth: {
770
+ 0: "0px",
771
+ 1: "1px",
772
+ 2: "2px",
773
+ 4: "4px",
774
+ 8: "8px"
775
+ },
776
+ ringOpacity: ({ theme: e }) => ({
777
+ DEFAULT: "0.5",
778
+ ...e("opacity")
779
+ }),
780
+ ringWidth: {
781
+ DEFAULT: "3px",
782
+ 0: "0px",
783
+ 1: "1px",
784
+ 2: "2px",
785
+ 4: "4px",
786
+ 8: "8px"
787
+ },
788
+ rotate: {
789
+ 0: "0deg",
790
+ 1: "1deg",
791
+ 2: "2deg",
792
+ 3: "3deg",
793
+ 6: "6deg",
794
+ 12: "12deg",
795
+ 45: "45deg",
796
+ 90: "90deg",
797
+ 180: "180deg"
798
+ },
799
+ saturate: {
800
+ 0: "0",
801
+ 50: ".5",
802
+ 100: "1",
803
+ 150: "1.5",
804
+ 200: "2"
805
+ },
806
+ scale: {
807
+ 0: "0",
808
+ 50: ".5",
809
+ 75: ".75",
810
+ 90: ".9",
811
+ 95: ".95",
812
+ 100: "1",
813
+ 105: "1.05",
814
+ 110: "1.1",
815
+ 125: "1.25",
816
+ 150: "1.5"
817
+ },
818
+ screens: {
819
+ sm: "640px",
820
+ md: "768px",
821
+ lg: "1024px",
822
+ xl: "1280px",
823
+ "2xl": "1536px"
824
+ },
825
+ scrollMargin: ({ theme: e }) => ({
826
+ ...e("spacing")
827
+ }),
828
+ scrollPadding: ({ theme: e }) => e("spacing"),
829
+ sepia: {
830
+ 0: "0",
831
+ DEFAULT: "100%"
832
+ },
833
+ skew: {
834
+ 0: "0deg",
835
+ 1: "1deg",
836
+ 2: "2deg",
837
+ 3: "3deg",
838
+ 6: "6deg",
839
+ 12: "12deg"
840
+ },
841
+ space: ({ theme: e }) => ({
842
+ ...e("spacing")
843
+ }),
844
+ spacing: {
845
+ px: "1px",
846
+ 0: "0px",
847
+ 0.5: "0.125rem",
848
+ 1: "0.25rem",
849
+ 1.5: "0.375rem",
850
+ 2: "0.5rem",
851
+ 2.5: "0.625rem",
852
+ 3: "0.75rem",
853
+ 3.5: "0.875rem",
854
+ 4: "1rem",
855
+ 5: "1.25rem",
856
+ 6: "1.5rem",
857
+ 7: "1.75rem",
858
+ 8: "2rem",
859
+ 9: "2.25rem",
860
+ 10: "2.5rem",
861
+ 11: "2.75rem",
862
+ 12: "3rem",
863
+ 14: "3.5rem",
864
+ 16: "4rem",
865
+ 20: "5rem",
866
+ 24: "6rem",
867
+ 28: "7rem",
868
+ 32: "8rem",
869
+ 36: "9rem",
870
+ 40: "10rem",
871
+ 44: "11rem",
872
+ 48: "12rem",
873
+ 52: "13rem",
874
+ 56: "14rem",
875
+ 60: "15rem",
876
+ 64: "16rem",
877
+ 72: "18rem",
878
+ 80: "20rem",
879
+ 96: "24rem"
880
+ },
881
+ stroke: ({ theme: e }) => ({
882
+ none: "none",
883
+ ...e("colors")
884
+ }),
885
+ strokeWidth: {
886
+ 0: "0",
887
+ 1: "1",
888
+ 2: "2"
889
+ },
890
+ supports: {},
891
+ data: {},
892
+ textColor: ({ theme: e }) => e("colors"),
893
+ textDecorationColor: ({ theme: e }) => e("colors"),
894
+ textDecorationThickness: {
895
+ auto: "auto",
896
+ "from-font": "from-font",
897
+ 0: "0px",
898
+ 1: "1px",
899
+ 2: "2px",
900
+ 4: "4px",
901
+ 8: "8px"
902
+ },
903
+ textIndent: ({ theme: e }) => ({
904
+ ...e("spacing")
905
+ }),
906
+ textOpacity: ({ theme: e }) => e("opacity"),
907
+ textUnderlineOffset: {
908
+ auto: "auto",
909
+ 0: "0px",
910
+ 1: "1px",
911
+ 2: "2px",
912
+ 4: "4px",
913
+ 8: "8px"
914
+ },
915
+ transformOrigin: {
916
+ center: "center",
917
+ top: "top",
918
+ "top-right": "top right",
919
+ right: "right",
920
+ "bottom-right": "bottom right",
921
+ bottom: "bottom",
922
+ "bottom-left": "bottom left",
923
+ left: "left",
924
+ "top-left": "top left"
925
+ },
926
+ transitionDelay: {
927
+ 0: "0s",
928
+ 75: "75ms",
929
+ 100: "100ms",
930
+ 150: "150ms",
931
+ 200: "200ms",
932
+ 300: "300ms",
933
+ 500: "500ms",
934
+ 700: "700ms",
935
+ 1e3: "1000ms"
936
+ },
937
+ transitionDuration: {
938
+ DEFAULT: "150ms",
939
+ 0: "0s",
940
+ 75: "75ms",
941
+ 100: "100ms",
942
+ 150: "150ms",
943
+ 200: "200ms",
944
+ 300: "300ms",
945
+ 500: "500ms",
946
+ 700: "700ms",
947
+ 1e3: "1000ms"
948
+ },
949
+ transitionProperty: {
950
+ none: "none",
951
+ all: "all",
952
+ DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
953
+ colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
954
+ opacity: "opacity",
955
+ shadow: "box-shadow",
956
+ transform: "transform"
957
+ },
958
+ transitionTimingFunction: {
959
+ DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
960
+ linear: "linear",
961
+ in: "cubic-bezier(0.4, 0, 1, 1)",
962
+ out: "cubic-bezier(0, 0, 0.2, 1)",
963
+ "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
964
+ },
965
+ translate: ({ theme: e }) => ({
966
+ ...e("spacing"),
967
+ "1/2": "50%",
968
+ "1/3": "33.333333%",
969
+ "2/3": "66.666667%",
970
+ "1/4": "25%",
971
+ "2/4": "50%",
972
+ "3/4": "75%",
973
+ full: "100%"
974
+ }),
975
+ size: ({ theme: e }) => ({
976
+ auto: "auto",
977
+ ...e("spacing"),
978
+ "1/2": "50%",
979
+ "1/3": "33.333333%",
980
+ "2/3": "66.666667%",
981
+ "1/4": "25%",
982
+ "2/4": "50%",
983
+ "3/4": "75%",
984
+ "1/5": "20%",
985
+ "2/5": "40%",
986
+ "3/5": "60%",
987
+ "4/5": "80%",
988
+ "1/6": "16.666667%",
989
+ "2/6": "33.333333%",
990
+ "3/6": "50%",
991
+ "4/6": "66.666667%",
992
+ "5/6": "83.333333%",
993
+ "1/12": "8.333333%",
994
+ "2/12": "16.666667%",
995
+ "3/12": "25%",
996
+ "4/12": "33.333333%",
997
+ "5/12": "41.666667%",
998
+ "6/12": "50%",
999
+ "7/12": "58.333333%",
1000
+ "8/12": "66.666667%",
1001
+ "9/12": "75%",
1002
+ "10/12": "83.333333%",
1003
+ "11/12": "91.666667%",
1004
+ full: "100%",
1005
+ min: "min-content",
1006
+ max: "max-content",
1007
+ fit: "fit-content"
1008
+ }),
1009
+ width: ({ theme: e }) => ({
1010
+ auto: "auto",
1011
+ ...e("spacing"),
1012
+ "1/2": "50%",
1013
+ "1/3": "33.333333%",
1014
+ "2/3": "66.666667%",
1015
+ "1/4": "25%",
1016
+ "2/4": "50%",
1017
+ "3/4": "75%",
1018
+ "1/5": "20%",
1019
+ "2/5": "40%",
1020
+ "3/5": "60%",
1021
+ "4/5": "80%",
1022
+ "1/6": "16.666667%",
1023
+ "2/6": "33.333333%",
1024
+ "3/6": "50%",
1025
+ "4/6": "66.666667%",
1026
+ "5/6": "83.333333%",
1027
+ "1/12": "8.333333%",
1028
+ "2/12": "16.666667%",
1029
+ "3/12": "25%",
1030
+ "4/12": "33.333333%",
1031
+ "5/12": "41.666667%",
1032
+ "6/12": "50%",
1033
+ "7/12": "58.333333%",
1034
+ "8/12": "66.666667%",
1035
+ "9/12": "75%",
1036
+ "10/12": "83.333333%",
1037
+ "11/12": "91.666667%",
1038
+ full: "100%",
1039
+ screen: "100vw",
1040
+ svw: "100svw",
1041
+ lvw: "100lvw",
1042
+ dvw: "100dvw",
1043
+ min: "min-content",
1044
+ max: "max-content",
1045
+ fit: "fit-content"
1046
+ }),
1047
+ willChange: {
1048
+ auto: "auto",
1049
+ scroll: "scroll-position",
1050
+ contents: "contents",
1051
+ transform: "transform"
1052
+ },
1053
+ zIndex: {
1054
+ auto: "auto",
1055
+ 0: "0",
1056
+ 10: "10",
1057
+ 20: "20",
1058
+ 30: "30",
1059
+ 40: "40",
1060
+ 50: "50"
1061
+ }
1062
+ },
1063
+ plugins: []
1064
+ }), t;
1065
+ }
1066
+ export {
1067
+ o as __require
1068
+ };