coveragebook_components 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/build/coco/app.css +1513 -1605
- data/app/assets/build/coco/app.js +35 -27
- data/app/assets/build/coco/book.css +1212 -1303
- data/app/assets/build/coco/book.js +10 -6
- data/app/assets/build/coco/coco.css +6908 -0
- data/app/assets/build/coco/coco.js +10 -6
- data/app/assets/build/coco/tailwind.preset.js +2759 -0
- data/app/assets/css/base/setup.css +0 -11
- data/app/assets/css/base/tippy.css +40 -43
- data/app/assets/css/base/utils/text.css +0 -210
- data/app/assets/css/coco.css +3 -0
- data/app/assets/css/plugins/aspect.js +27 -0
- data/app/assets/css/plugins/colors.js +30 -0
- data/app/assets/css/plugins/icons.js +17 -0
- data/app/assets/css/plugins/layout.js +15 -0
- data/app/assets/css/plugins/text.js +183 -0
- data/app/components/coco/app/nav_drawer/nav_drawer.css +2 -2
- data/app/components/coco/app/plan_card/plan_card.css +1 -1
- data/app/components/coco/buttons/button/button.css +5 -5
- data/app/components/coco/buttons/button_group/button_group.css +1 -1
- data/app/components/coco/buttons/color_picker_button/color_picker_button.css +1 -1
- data/app/components/coco/buttons/menu/menu.css +1 -1
- data/app/components/coco/buttons/menu_items/user_profile/user_profile.css +1 -1
- data/app/components/coco/indicators/badge/badge.css +1 -1
- data/app/components/coco/layout/panel/panel.css +1 -1
- data/app/components/coco/modals/modal/modal.css +1 -1
- data/app/components/coco/modals/modal_dialog/modal_dialog.css +1 -1
- data/app/components/coco/utilities/placeholder/placeholder.css +1 -1
- data/app/helpers/coco/integration_helper.rb +25 -3
- data/config/exports.js +0 -0
- data/config/tailwind.config.js +1 -83
- data/config/tailwind.preset.js +66 -0
- data/config/tokens.js +25 -21
- data/lib/coco.rb +1 -1
- metadata +12 -5
- data/app/assets/css/base/utils/colors.css +0 -30
- data/app/assets/css/base/utils/icons.css +0 -16
- data/app/assets/css/base/utils/layout.css +0 -13
@@ -0,0 +1,2759 @@
|
|
1
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
2
|
+
var __commonJS = (cb, mod) => function __require() {
|
3
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
4
|
+
};
|
5
|
+
|
6
|
+
// node_modules/tailwindcss/lib/util/cloneDeep.js
|
7
|
+
var require_cloneDeep = __commonJS({
|
8
|
+
"node_modules/tailwindcss/lib/util/cloneDeep.js"(exports2) {
|
9
|
+
"use strict";
|
10
|
+
Object.defineProperty(exports2, "__esModule", {
|
11
|
+
value: true
|
12
|
+
});
|
13
|
+
Object.defineProperty(exports2, "cloneDeep", {
|
14
|
+
enumerable: true,
|
15
|
+
get: function() {
|
16
|
+
return cloneDeep;
|
17
|
+
}
|
18
|
+
});
|
19
|
+
function cloneDeep(value) {
|
20
|
+
if (Array.isArray(value)) {
|
21
|
+
return value.map((child) => cloneDeep(child));
|
22
|
+
}
|
23
|
+
if (typeof value === "object" && value !== null) {
|
24
|
+
return Object.fromEntries(Object.entries(value).map(([k, v]) => [
|
25
|
+
k,
|
26
|
+
cloneDeep(v)
|
27
|
+
]));
|
28
|
+
}
|
29
|
+
return value;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
});
|
33
|
+
|
34
|
+
// node_modules/tailwindcss/stubs/config.full.js
|
35
|
+
var require_config_full = __commonJS({
|
36
|
+
"node_modules/tailwindcss/stubs/config.full.js"(exports2, module2) {
|
37
|
+
module2.exports = {
|
38
|
+
content: [],
|
39
|
+
presets: [],
|
40
|
+
darkMode: "media",
|
41
|
+
// or 'class'
|
42
|
+
theme: {
|
43
|
+
accentColor: ({ theme }) => ({
|
44
|
+
...theme("colors"),
|
45
|
+
auto: "auto"
|
46
|
+
}),
|
47
|
+
animation: {
|
48
|
+
none: "none",
|
49
|
+
spin: "spin 1s linear infinite",
|
50
|
+
ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
|
51
|
+
pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
|
52
|
+
bounce: "bounce 1s infinite"
|
53
|
+
},
|
54
|
+
aria: {
|
55
|
+
busy: 'busy="true"',
|
56
|
+
checked: 'checked="true"',
|
57
|
+
disabled: 'disabled="true"',
|
58
|
+
expanded: 'expanded="true"',
|
59
|
+
hidden: 'hidden="true"',
|
60
|
+
pressed: 'pressed="true"',
|
61
|
+
readonly: 'readonly="true"',
|
62
|
+
required: 'required="true"',
|
63
|
+
selected: 'selected="true"'
|
64
|
+
},
|
65
|
+
aspectRatio: {
|
66
|
+
auto: "auto",
|
67
|
+
square: "1 / 1",
|
68
|
+
video: "16 / 9"
|
69
|
+
},
|
70
|
+
backdropBlur: ({ theme }) => theme("blur"),
|
71
|
+
backdropBrightness: ({ theme }) => theme("brightness"),
|
72
|
+
backdropContrast: ({ theme }) => theme("contrast"),
|
73
|
+
backdropGrayscale: ({ theme }) => theme("grayscale"),
|
74
|
+
backdropHueRotate: ({ theme }) => theme("hueRotate"),
|
75
|
+
backdropInvert: ({ theme }) => theme("invert"),
|
76
|
+
backdropOpacity: ({ theme }) => theme("opacity"),
|
77
|
+
backdropSaturate: ({ theme }) => theme("saturate"),
|
78
|
+
backdropSepia: ({ theme }) => theme("sepia"),
|
79
|
+
backgroundColor: ({ theme }) => theme("colors"),
|
80
|
+
backgroundImage: {
|
81
|
+
none: "none",
|
82
|
+
"gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))",
|
83
|
+
"gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))",
|
84
|
+
"gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))",
|
85
|
+
"gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))",
|
86
|
+
"gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))",
|
87
|
+
"gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))",
|
88
|
+
"gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))",
|
89
|
+
"gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))"
|
90
|
+
},
|
91
|
+
backgroundOpacity: ({ theme }) => theme("opacity"),
|
92
|
+
backgroundPosition: {
|
93
|
+
bottom: "bottom",
|
94
|
+
center: "center",
|
95
|
+
left: "left",
|
96
|
+
"left-bottom": "left bottom",
|
97
|
+
"left-top": "left top",
|
98
|
+
right: "right",
|
99
|
+
"right-bottom": "right bottom",
|
100
|
+
"right-top": "right top",
|
101
|
+
top: "top"
|
102
|
+
},
|
103
|
+
backgroundSize: {
|
104
|
+
auto: "auto",
|
105
|
+
cover: "cover",
|
106
|
+
contain: "contain"
|
107
|
+
},
|
108
|
+
blur: {
|
109
|
+
0: "0",
|
110
|
+
none: "0",
|
111
|
+
sm: "4px",
|
112
|
+
DEFAULT: "8px",
|
113
|
+
md: "12px",
|
114
|
+
lg: "16px",
|
115
|
+
xl: "24px",
|
116
|
+
"2xl": "40px",
|
117
|
+
"3xl": "64px"
|
118
|
+
},
|
119
|
+
borderColor: ({ theme }) => ({
|
120
|
+
...theme("colors"),
|
121
|
+
DEFAULT: theme("colors.gray.200", "currentColor")
|
122
|
+
}),
|
123
|
+
borderOpacity: ({ theme }) => theme("opacity"),
|
124
|
+
borderRadius: {
|
125
|
+
none: "0px",
|
126
|
+
sm: "0.125rem",
|
127
|
+
DEFAULT: "0.25rem",
|
128
|
+
md: "0.375rem",
|
129
|
+
lg: "0.5rem",
|
130
|
+
xl: "0.75rem",
|
131
|
+
"2xl": "1rem",
|
132
|
+
"3xl": "1.5rem",
|
133
|
+
full: "9999px"
|
134
|
+
},
|
135
|
+
borderSpacing: ({ theme }) => ({
|
136
|
+
...theme("spacing")
|
137
|
+
}),
|
138
|
+
borderWidth: {
|
139
|
+
DEFAULT: "1px",
|
140
|
+
0: "0px",
|
141
|
+
2: "2px",
|
142
|
+
4: "4px",
|
143
|
+
8: "8px"
|
144
|
+
},
|
145
|
+
boxShadow: {
|
146
|
+
sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
147
|
+
DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
148
|
+
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
149
|
+
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
150
|
+
xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
|
151
|
+
"2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
|
152
|
+
inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
|
153
|
+
none: "none"
|
154
|
+
},
|
155
|
+
boxShadowColor: ({ theme }) => theme("colors"),
|
156
|
+
brightness: {
|
157
|
+
0: "0",
|
158
|
+
50: ".5",
|
159
|
+
75: ".75",
|
160
|
+
90: ".9",
|
161
|
+
95: ".95",
|
162
|
+
100: "1",
|
163
|
+
105: "1.05",
|
164
|
+
110: "1.1",
|
165
|
+
125: "1.25",
|
166
|
+
150: "1.5",
|
167
|
+
200: "2"
|
168
|
+
},
|
169
|
+
caretColor: ({ theme }) => theme("colors"),
|
170
|
+
colors: ({ colors: colors2 }) => ({
|
171
|
+
inherit: colors2.inherit,
|
172
|
+
current: colors2.current,
|
173
|
+
transparent: colors2.transparent,
|
174
|
+
black: colors2.black,
|
175
|
+
white: colors2.white,
|
176
|
+
slate: colors2.slate,
|
177
|
+
gray: colors2.gray,
|
178
|
+
zinc: colors2.zinc,
|
179
|
+
neutral: colors2.neutral,
|
180
|
+
stone: colors2.stone,
|
181
|
+
red: colors2.red,
|
182
|
+
orange: colors2.orange,
|
183
|
+
amber: colors2.amber,
|
184
|
+
yellow: colors2.yellow,
|
185
|
+
lime: colors2.lime,
|
186
|
+
green: colors2.green,
|
187
|
+
emerald: colors2.emerald,
|
188
|
+
teal: colors2.teal,
|
189
|
+
cyan: colors2.cyan,
|
190
|
+
sky: colors2.sky,
|
191
|
+
blue: colors2.blue,
|
192
|
+
indigo: colors2.indigo,
|
193
|
+
violet: colors2.violet,
|
194
|
+
purple: colors2.purple,
|
195
|
+
fuchsia: colors2.fuchsia,
|
196
|
+
pink: colors2.pink,
|
197
|
+
rose: colors2.rose
|
198
|
+
}),
|
199
|
+
columns: {
|
200
|
+
auto: "auto",
|
201
|
+
1: "1",
|
202
|
+
2: "2",
|
203
|
+
3: "3",
|
204
|
+
4: "4",
|
205
|
+
5: "5",
|
206
|
+
6: "6",
|
207
|
+
7: "7",
|
208
|
+
8: "8",
|
209
|
+
9: "9",
|
210
|
+
10: "10",
|
211
|
+
11: "11",
|
212
|
+
12: "12",
|
213
|
+
"3xs": "16rem",
|
214
|
+
"2xs": "18rem",
|
215
|
+
xs: "20rem",
|
216
|
+
sm: "24rem",
|
217
|
+
md: "28rem",
|
218
|
+
lg: "32rem",
|
219
|
+
xl: "36rem",
|
220
|
+
"2xl": "42rem",
|
221
|
+
"3xl": "48rem",
|
222
|
+
"4xl": "56rem",
|
223
|
+
"5xl": "64rem",
|
224
|
+
"6xl": "72rem",
|
225
|
+
"7xl": "80rem"
|
226
|
+
},
|
227
|
+
container: {},
|
228
|
+
content: {
|
229
|
+
none: "none"
|
230
|
+
},
|
231
|
+
contrast: {
|
232
|
+
0: "0",
|
233
|
+
50: ".5",
|
234
|
+
75: ".75",
|
235
|
+
100: "1",
|
236
|
+
125: "1.25",
|
237
|
+
150: "1.5",
|
238
|
+
200: "2"
|
239
|
+
},
|
240
|
+
cursor: {
|
241
|
+
auto: "auto",
|
242
|
+
default: "default",
|
243
|
+
pointer: "pointer",
|
244
|
+
wait: "wait",
|
245
|
+
text: "text",
|
246
|
+
move: "move",
|
247
|
+
help: "help",
|
248
|
+
"not-allowed": "not-allowed",
|
249
|
+
none: "none",
|
250
|
+
"context-menu": "context-menu",
|
251
|
+
progress: "progress",
|
252
|
+
cell: "cell",
|
253
|
+
crosshair: "crosshair",
|
254
|
+
"vertical-text": "vertical-text",
|
255
|
+
alias: "alias",
|
256
|
+
copy: "copy",
|
257
|
+
"no-drop": "no-drop",
|
258
|
+
grab: "grab",
|
259
|
+
grabbing: "grabbing",
|
260
|
+
"all-scroll": "all-scroll",
|
261
|
+
"col-resize": "col-resize",
|
262
|
+
"row-resize": "row-resize",
|
263
|
+
"n-resize": "n-resize",
|
264
|
+
"e-resize": "e-resize",
|
265
|
+
"s-resize": "s-resize",
|
266
|
+
"w-resize": "w-resize",
|
267
|
+
"ne-resize": "ne-resize",
|
268
|
+
"nw-resize": "nw-resize",
|
269
|
+
"se-resize": "se-resize",
|
270
|
+
"sw-resize": "sw-resize",
|
271
|
+
"ew-resize": "ew-resize",
|
272
|
+
"ns-resize": "ns-resize",
|
273
|
+
"nesw-resize": "nesw-resize",
|
274
|
+
"nwse-resize": "nwse-resize",
|
275
|
+
"zoom-in": "zoom-in",
|
276
|
+
"zoom-out": "zoom-out"
|
277
|
+
},
|
278
|
+
divideColor: ({ theme }) => theme("borderColor"),
|
279
|
+
divideOpacity: ({ theme }) => theme("borderOpacity"),
|
280
|
+
divideWidth: ({ theme }) => theme("borderWidth"),
|
281
|
+
dropShadow: {
|
282
|
+
sm: "0 1px 1px rgb(0 0 0 / 0.05)",
|
283
|
+
DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
|
284
|
+
md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
|
285
|
+
lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
|
286
|
+
xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
|
287
|
+
"2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
|
288
|
+
none: "0 0 #0000"
|
289
|
+
},
|
290
|
+
fill: ({ theme }) => ({
|
291
|
+
none: "none",
|
292
|
+
...theme("colors")
|
293
|
+
}),
|
294
|
+
flex: {
|
295
|
+
1: "1 1 0%",
|
296
|
+
auto: "1 1 auto",
|
297
|
+
initial: "0 1 auto",
|
298
|
+
none: "none"
|
299
|
+
},
|
300
|
+
flexBasis: ({ theme }) => ({
|
301
|
+
auto: "auto",
|
302
|
+
...theme("spacing"),
|
303
|
+
"1/2": "50%",
|
304
|
+
"1/3": "33.333333%",
|
305
|
+
"2/3": "66.666667%",
|
306
|
+
"1/4": "25%",
|
307
|
+
"2/4": "50%",
|
308
|
+
"3/4": "75%",
|
309
|
+
"1/5": "20%",
|
310
|
+
"2/5": "40%",
|
311
|
+
"3/5": "60%",
|
312
|
+
"4/5": "80%",
|
313
|
+
"1/6": "16.666667%",
|
314
|
+
"2/6": "33.333333%",
|
315
|
+
"3/6": "50%",
|
316
|
+
"4/6": "66.666667%",
|
317
|
+
"5/6": "83.333333%",
|
318
|
+
"1/12": "8.333333%",
|
319
|
+
"2/12": "16.666667%",
|
320
|
+
"3/12": "25%",
|
321
|
+
"4/12": "33.333333%",
|
322
|
+
"5/12": "41.666667%",
|
323
|
+
"6/12": "50%",
|
324
|
+
"7/12": "58.333333%",
|
325
|
+
"8/12": "66.666667%",
|
326
|
+
"9/12": "75%",
|
327
|
+
"10/12": "83.333333%",
|
328
|
+
"11/12": "91.666667%",
|
329
|
+
full: "100%"
|
330
|
+
}),
|
331
|
+
flexGrow: {
|
332
|
+
0: "0",
|
333
|
+
DEFAULT: "1"
|
334
|
+
},
|
335
|
+
flexShrink: {
|
336
|
+
0: "0",
|
337
|
+
DEFAULT: "1"
|
338
|
+
},
|
339
|
+
fontFamily: {
|
340
|
+
sans: [
|
341
|
+
"ui-sans-serif",
|
342
|
+
"system-ui",
|
343
|
+
"sans-serif",
|
344
|
+
'"Apple Color Emoji"',
|
345
|
+
'"Segoe UI Emoji"',
|
346
|
+
'"Segoe UI Symbol"',
|
347
|
+
'"Noto Color Emoji"'
|
348
|
+
],
|
349
|
+
serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
|
350
|
+
mono: [
|
351
|
+
"ui-monospace",
|
352
|
+
"SFMono-Regular",
|
353
|
+
"Menlo",
|
354
|
+
"Monaco",
|
355
|
+
"Consolas",
|
356
|
+
'"Liberation Mono"',
|
357
|
+
'"Courier New"',
|
358
|
+
"monospace"
|
359
|
+
]
|
360
|
+
},
|
361
|
+
fontSize: {
|
362
|
+
xs: ["0.75rem", { lineHeight: "1rem" }],
|
363
|
+
sm: ["0.875rem", { lineHeight: "1.25rem" }],
|
364
|
+
base: ["1rem", { lineHeight: "1.5rem" }],
|
365
|
+
lg: ["1.125rem", { lineHeight: "1.75rem" }],
|
366
|
+
xl: ["1.25rem", { lineHeight: "1.75rem" }],
|
367
|
+
"2xl": ["1.5rem", { lineHeight: "2rem" }],
|
368
|
+
"3xl": ["1.875rem", { lineHeight: "2.25rem" }],
|
369
|
+
"4xl": ["2.25rem", { lineHeight: "2.5rem" }],
|
370
|
+
"5xl": ["3rem", { lineHeight: "1" }],
|
371
|
+
"6xl": ["3.75rem", { lineHeight: "1" }],
|
372
|
+
"7xl": ["4.5rem", { lineHeight: "1" }],
|
373
|
+
"8xl": ["6rem", { lineHeight: "1" }],
|
374
|
+
"9xl": ["8rem", { lineHeight: "1" }]
|
375
|
+
},
|
376
|
+
fontWeight: {
|
377
|
+
thin: "100",
|
378
|
+
extralight: "200",
|
379
|
+
light: "300",
|
380
|
+
normal: "400",
|
381
|
+
medium: "500",
|
382
|
+
semibold: "600",
|
383
|
+
bold: "700",
|
384
|
+
extrabold: "800",
|
385
|
+
black: "900"
|
386
|
+
},
|
387
|
+
gap: ({ theme }) => theme("spacing"),
|
388
|
+
gradientColorStops: ({ theme }) => theme("colors"),
|
389
|
+
gradientColorStopPositions: {
|
390
|
+
"0%": "0%",
|
391
|
+
"5%": "5%",
|
392
|
+
"10%": "10%",
|
393
|
+
"15%": "15%",
|
394
|
+
"20%": "20%",
|
395
|
+
"25%": "25%",
|
396
|
+
"30%": "30%",
|
397
|
+
"35%": "35%",
|
398
|
+
"40%": "40%",
|
399
|
+
"45%": "45%",
|
400
|
+
"50%": "50%",
|
401
|
+
"55%": "55%",
|
402
|
+
"60%": "60%",
|
403
|
+
"65%": "65%",
|
404
|
+
"70%": "70%",
|
405
|
+
"75%": "75%",
|
406
|
+
"80%": "80%",
|
407
|
+
"85%": "85%",
|
408
|
+
"90%": "90%",
|
409
|
+
"95%": "95%",
|
410
|
+
"100%": "100%"
|
411
|
+
},
|
412
|
+
grayscale: {
|
413
|
+
0: "0",
|
414
|
+
DEFAULT: "100%"
|
415
|
+
},
|
416
|
+
gridAutoColumns: {
|
417
|
+
auto: "auto",
|
418
|
+
min: "min-content",
|
419
|
+
max: "max-content",
|
420
|
+
fr: "minmax(0, 1fr)"
|
421
|
+
},
|
422
|
+
gridAutoRows: {
|
423
|
+
auto: "auto",
|
424
|
+
min: "min-content",
|
425
|
+
max: "max-content",
|
426
|
+
fr: "minmax(0, 1fr)"
|
427
|
+
},
|
428
|
+
gridColumn: {
|
429
|
+
auto: "auto",
|
430
|
+
"span-1": "span 1 / span 1",
|
431
|
+
"span-2": "span 2 / span 2",
|
432
|
+
"span-3": "span 3 / span 3",
|
433
|
+
"span-4": "span 4 / span 4",
|
434
|
+
"span-5": "span 5 / span 5",
|
435
|
+
"span-6": "span 6 / span 6",
|
436
|
+
"span-7": "span 7 / span 7",
|
437
|
+
"span-8": "span 8 / span 8",
|
438
|
+
"span-9": "span 9 / span 9",
|
439
|
+
"span-10": "span 10 / span 10",
|
440
|
+
"span-11": "span 11 / span 11",
|
441
|
+
"span-12": "span 12 / span 12",
|
442
|
+
"span-full": "1 / -1"
|
443
|
+
},
|
444
|
+
gridColumnEnd: {
|
445
|
+
auto: "auto",
|
446
|
+
1: "1",
|
447
|
+
2: "2",
|
448
|
+
3: "3",
|
449
|
+
4: "4",
|
450
|
+
5: "5",
|
451
|
+
6: "6",
|
452
|
+
7: "7",
|
453
|
+
8: "8",
|
454
|
+
9: "9",
|
455
|
+
10: "10",
|
456
|
+
11: "11",
|
457
|
+
12: "12",
|
458
|
+
13: "13"
|
459
|
+
},
|
460
|
+
gridColumnStart: {
|
461
|
+
auto: "auto",
|
462
|
+
1: "1",
|
463
|
+
2: "2",
|
464
|
+
3: "3",
|
465
|
+
4: "4",
|
466
|
+
5: "5",
|
467
|
+
6: "6",
|
468
|
+
7: "7",
|
469
|
+
8: "8",
|
470
|
+
9: "9",
|
471
|
+
10: "10",
|
472
|
+
11: "11",
|
473
|
+
12: "12",
|
474
|
+
13: "13"
|
475
|
+
},
|
476
|
+
gridRow: {
|
477
|
+
auto: "auto",
|
478
|
+
"span-1": "span 1 / span 1",
|
479
|
+
"span-2": "span 2 / span 2",
|
480
|
+
"span-3": "span 3 / span 3",
|
481
|
+
"span-4": "span 4 / span 4",
|
482
|
+
"span-5": "span 5 / span 5",
|
483
|
+
"span-6": "span 6 / span 6",
|
484
|
+
"span-7": "span 7 / span 7",
|
485
|
+
"span-8": "span 8 / span 8",
|
486
|
+
"span-9": "span 9 / span 9",
|
487
|
+
"span-10": "span 10 / span 10",
|
488
|
+
"span-11": "span 11 / span 11",
|
489
|
+
"span-12": "span 12 / span 12",
|
490
|
+
"span-full": "1 / -1"
|
491
|
+
},
|
492
|
+
gridRowEnd: {
|
493
|
+
auto: "auto",
|
494
|
+
1: "1",
|
495
|
+
2: "2",
|
496
|
+
3: "3",
|
497
|
+
4: "4",
|
498
|
+
5: "5",
|
499
|
+
6: "6",
|
500
|
+
7: "7",
|
501
|
+
8: "8",
|
502
|
+
9: "9",
|
503
|
+
10: "10",
|
504
|
+
11: "11",
|
505
|
+
12: "12",
|
506
|
+
13: "13"
|
507
|
+
},
|
508
|
+
gridRowStart: {
|
509
|
+
auto: "auto",
|
510
|
+
1: "1",
|
511
|
+
2: "2",
|
512
|
+
3: "3",
|
513
|
+
4: "4",
|
514
|
+
5: "5",
|
515
|
+
6: "6",
|
516
|
+
7: "7",
|
517
|
+
8: "8",
|
518
|
+
9: "9",
|
519
|
+
10: "10",
|
520
|
+
11: "11",
|
521
|
+
12: "12",
|
522
|
+
13: "13"
|
523
|
+
},
|
524
|
+
gridTemplateColumns: {
|
525
|
+
none: "none",
|
526
|
+
subgrid: "subgrid",
|
527
|
+
1: "repeat(1, minmax(0, 1fr))",
|
528
|
+
2: "repeat(2, minmax(0, 1fr))",
|
529
|
+
3: "repeat(3, minmax(0, 1fr))",
|
530
|
+
4: "repeat(4, minmax(0, 1fr))",
|
531
|
+
5: "repeat(5, minmax(0, 1fr))",
|
532
|
+
6: "repeat(6, minmax(0, 1fr))",
|
533
|
+
7: "repeat(7, minmax(0, 1fr))",
|
534
|
+
8: "repeat(8, minmax(0, 1fr))",
|
535
|
+
9: "repeat(9, minmax(0, 1fr))",
|
536
|
+
10: "repeat(10, minmax(0, 1fr))",
|
537
|
+
11: "repeat(11, minmax(0, 1fr))",
|
538
|
+
12: "repeat(12, minmax(0, 1fr))"
|
539
|
+
},
|
540
|
+
gridTemplateRows: {
|
541
|
+
none: "none",
|
542
|
+
subgrid: "subgrid",
|
543
|
+
1: "repeat(1, minmax(0, 1fr))",
|
544
|
+
2: "repeat(2, minmax(0, 1fr))",
|
545
|
+
3: "repeat(3, minmax(0, 1fr))",
|
546
|
+
4: "repeat(4, minmax(0, 1fr))",
|
547
|
+
5: "repeat(5, minmax(0, 1fr))",
|
548
|
+
6: "repeat(6, minmax(0, 1fr))",
|
549
|
+
7: "repeat(7, minmax(0, 1fr))",
|
550
|
+
8: "repeat(8, minmax(0, 1fr))",
|
551
|
+
9: "repeat(9, minmax(0, 1fr))",
|
552
|
+
10: "repeat(10, minmax(0, 1fr))",
|
553
|
+
11: "repeat(11, minmax(0, 1fr))",
|
554
|
+
12: "repeat(12, minmax(0, 1fr))"
|
555
|
+
},
|
556
|
+
height: ({ theme }) => ({
|
557
|
+
auto: "auto",
|
558
|
+
...theme("spacing"),
|
559
|
+
"1/2": "50%",
|
560
|
+
"1/3": "33.333333%",
|
561
|
+
"2/3": "66.666667%",
|
562
|
+
"1/4": "25%",
|
563
|
+
"2/4": "50%",
|
564
|
+
"3/4": "75%",
|
565
|
+
"1/5": "20%",
|
566
|
+
"2/5": "40%",
|
567
|
+
"3/5": "60%",
|
568
|
+
"4/5": "80%",
|
569
|
+
"1/6": "16.666667%",
|
570
|
+
"2/6": "33.333333%",
|
571
|
+
"3/6": "50%",
|
572
|
+
"4/6": "66.666667%",
|
573
|
+
"5/6": "83.333333%",
|
574
|
+
full: "100%",
|
575
|
+
screen: "100vh",
|
576
|
+
svh: "100svh",
|
577
|
+
lvh: "100lvh",
|
578
|
+
dvh: "100dvh",
|
579
|
+
min: "min-content",
|
580
|
+
max: "max-content",
|
581
|
+
fit: "fit-content"
|
582
|
+
}),
|
583
|
+
hueRotate: {
|
584
|
+
0: "0deg",
|
585
|
+
15: "15deg",
|
586
|
+
30: "30deg",
|
587
|
+
60: "60deg",
|
588
|
+
90: "90deg",
|
589
|
+
180: "180deg"
|
590
|
+
},
|
591
|
+
inset: ({ theme }) => ({
|
592
|
+
auto: "auto",
|
593
|
+
...theme("spacing"),
|
594
|
+
"1/2": "50%",
|
595
|
+
"1/3": "33.333333%",
|
596
|
+
"2/3": "66.666667%",
|
597
|
+
"1/4": "25%",
|
598
|
+
"2/4": "50%",
|
599
|
+
"3/4": "75%",
|
600
|
+
full: "100%"
|
601
|
+
}),
|
602
|
+
invert: {
|
603
|
+
0: "0",
|
604
|
+
DEFAULT: "100%"
|
605
|
+
},
|
606
|
+
keyframes: {
|
607
|
+
spin: {
|
608
|
+
to: {
|
609
|
+
transform: "rotate(360deg)"
|
610
|
+
}
|
611
|
+
},
|
612
|
+
ping: {
|
613
|
+
"75%, 100%": {
|
614
|
+
transform: "scale(2)",
|
615
|
+
opacity: "0"
|
616
|
+
}
|
617
|
+
},
|
618
|
+
pulse: {
|
619
|
+
"50%": {
|
620
|
+
opacity: ".5"
|
621
|
+
}
|
622
|
+
},
|
623
|
+
bounce: {
|
624
|
+
"0%, 100%": {
|
625
|
+
transform: "translateY(-25%)",
|
626
|
+
animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
|
627
|
+
},
|
628
|
+
"50%": {
|
629
|
+
transform: "none",
|
630
|
+
animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
|
631
|
+
}
|
632
|
+
}
|
633
|
+
},
|
634
|
+
letterSpacing: {
|
635
|
+
tighter: "-0.05em",
|
636
|
+
tight: "-0.025em",
|
637
|
+
normal: "0em",
|
638
|
+
wide: "0.025em",
|
639
|
+
wider: "0.05em",
|
640
|
+
widest: "0.1em"
|
641
|
+
},
|
642
|
+
lineHeight: {
|
643
|
+
none: "1",
|
644
|
+
tight: "1.25",
|
645
|
+
snug: "1.375",
|
646
|
+
normal: "1.5",
|
647
|
+
relaxed: "1.625",
|
648
|
+
loose: "2",
|
649
|
+
3: ".75rem",
|
650
|
+
4: "1rem",
|
651
|
+
5: "1.25rem",
|
652
|
+
6: "1.5rem",
|
653
|
+
7: "1.75rem",
|
654
|
+
8: "2rem",
|
655
|
+
9: "2.25rem",
|
656
|
+
10: "2.5rem"
|
657
|
+
},
|
658
|
+
listStyleType: {
|
659
|
+
none: "none",
|
660
|
+
disc: "disc",
|
661
|
+
decimal: "decimal"
|
662
|
+
},
|
663
|
+
listStyleImage: {
|
664
|
+
none: "none"
|
665
|
+
},
|
666
|
+
margin: ({ theme }) => ({
|
667
|
+
auto: "auto",
|
668
|
+
...theme("spacing")
|
669
|
+
}),
|
670
|
+
lineClamp: {
|
671
|
+
1: "1",
|
672
|
+
2: "2",
|
673
|
+
3: "3",
|
674
|
+
4: "4",
|
675
|
+
5: "5",
|
676
|
+
6: "6"
|
677
|
+
},
|
678
|
+
maxHeight: ({ theme }) => ({
|
679
|
+
...theme("spacing"),
|
680
|
+
none: "none",
|
681
|
+
full: "100%",
|
682
|
+
screen: "100vh",
|
683
|
+
svh: "100svh",
|
684
|
+
lvh: "100lvh",
|
685
|
+
dvh: "100dvh",
|
686
|
+
min: "min-content",
|
687
|
+
max: "max-content",
|
688
|
+
fit: "fit-content"
|
689
|
+
}),
|
690
|
+
maxWidth: ({ theme, breakpoints }) => ({
|
691
|
+
...theme("spacing"),
|
692
|
+
none: "none",
|
693
|
+
xs: "20rem",
|
694
|
+
sm: "24rem",
|
695
|
+
md: "28rem",
|
696
|
+
lg: "32rem",
|
697
|
+
xl: "36rem",
|
698
|
+
"2xl": "42rem",
|
699
|
+
"3xl": "48rem",
|
700
|
+
"4xl": "56rem",
|
701
|
+
"5xl": "64rem",
|
702
|
+
"6xl": "72rem",
|
703
|
+
"7xl": "80rem",
|
704
|
+
full: "100%",
|
705
|
+
min: "min-content",
|
706
|
+
max: "max-content",
|
707
|
+
fit: "fit-content",
|
708
|
+
prose: "65ch",
|
709
|
+
...breakpoints(theme("screens"))
|
710
|
+
}),
|
711
|
+
minHeight: ({ theme }) => ({
|
712
|
+
...theme("spacing"),
|
713
|
+
full: "100%",
|
714
|
+
screen: "100vh",
|
715
|
+
svh: "100svh",
|
716
|
+
lvh: "100lvh",
|
717
|
+
dvh: "100dvh",
|
718
|
+
min: "min-content",
|
719
|
+
max: "max-content",
|
720
|
+
fit: "fit-content"
|
721
|
+
}),
|
722
|
+
minWidth: ({ theme }) => ({
|
723
|
+
...theme("spacing"),
|
724
|
+
full: "100%",
|
725
|
+
min: "min-content",
|
726
|
+
max: "max-content",
|
727
|
+
fit: "fit-content"
|
728
|
+
}),
|
729
|
+
objectPosition: {
|
730
|
+
bottom: "bottom",
|
731
|
+
center: "center",
|
732
|
+
left: "left",
|
733
|
+
"left-bottom": "left bottom",
|
734
|
+
"left-top": "left top",
|
735
|
+
right: "right",
|
736
|
+
"right-bottom": "right bottom",
|
737
|
+
"right-top": "right top",
|
738
|
+
top: "top"
|
739
|
+
},
|
740
|
+
opacity: {
|
741
|
+
0: "0",
|
742
|
+
5: "0.05",
|
743
|
+
10: "0.1",
|
744
|
+
15: "0.15",
|
745
|
+
20: "0.2",
|
746
|
+
25: "0.25",
|
747
|
+
30: "0.3",
|
748
|
+
35: "0.35",
|
749
|
+
40: "0.4",
|
750
|
+
45: "0.45",
|
751
|
+
50: "0.5",
|
752
|
+
55: "0.55",
|
753
|
+
60: "0.6",
|
754
|
+
65: "0.65",
|
755
|
+
70: "0.7",
|
756
|
+
75: "0.75",
|
757
|
+
80: "0.8",
|
758
|
+
85: "0.85",
|
759
|
+
90: "0.9",
|
760
|
+
95: "0.95",
|
761
|
+
100: "1"
|
762
|
+
},
|
763
|
+
order: {
|
764
|
+
first: "-9999",
|
765
|
+
last: "9999",
|
766
|
+
none: "0",
|
767
|
+
1: "1",
|
768
|
+
2: "2",
|
769
|
+
3: "3",
|
770
|
+
4: "4",
|
771
|
+
5: "5",
|
772
|
+
6: "6",
|
773
|
+
7: "7",
|
774
|
+
8: "8",
|
775
|
+
9: "9",
|
776
|
+
10: "10",
|
777
|
+
11: "11",
|
778
|
+
12: "12"
|
779
|
+
},
|
780
|
+
outlineColor: ({ theme }) => theme("colors"),
|
781
|
+
outlineOffset: {
|
782
|
+
0: "0px",
|
783
|
+
1: "1px",
|
784
|
+
2: "2px",
|
785
|
+
4: "4px",
|
786
|
+
8: "8px"
|
787
|
+
},
|
788
|
+
outlineWidth: {
|
789
|
+
0: "0px",
|
790
|
+
1: "1px",
|
791
|
+
2: "2px",
|
792
|
+
4: "4px",
|
793
|
+
8: "8px"
|
794
|
+
},
|
795
|
+
padding: ({ theme }) => theme("spacing"),
|
796
|
+
placeholderColor: ({ theme }) => theme("colors"),
|
797
|
+
placeholderOpacity: ({ theme }) => theme("opacity"),
|
798
|
+
ringColor: ({ theme }) => ({
|
799
|
+
DEFAULT: theme("colors.blue.500", "#3b82f6"),
|
800
|
+
...theme("colors")
|
801
|
+
}),
|
802
|
+
ringOffsetColor: ({ theme }) => theme("colors"),
|
803
|
+
ringOffsetWidth: {
|
804
|
+
0: "0px",
|
805
|
+
1: "1px",
|
806
|
+
2: "2px",
|
807
|
+
4: "4px",
|
808
|
+
8: "8px"
|
809
|
+
},
|
810
|
+
ringOpacity: ({ theme }) => ({
|
811
|
+
DEFAULT: "0.5",
|
812
|
+
...theme("opacity")
|
813
|
+
}),
|
814
|
+
ringWidth: {
|
815
|
+
DEFAULT: "3px",
|
816
|
+
0: "0px",
|
817
|
+
1: "1px",
|
818
|
+
2: "2px",
|
819
|
+
4: "4px",
|
820
|
+
8: "8px"
|
821
|
+
},
|
822
|
+
rotate: {
|
823
|
+
0: "0deg",
|
824
|
+
1: "1deg",
|
825
|
+
2: "2deg",
|
826
|
+
3: "3deg",
|
827
|
+
6: "6deg",
|
828
|
+
12: "12deg",
|
829
|
+
45: "45deg",
|
830
|
+
90: "90deg",
|
831
|
+
180: "180deg"
|
832
|
+
},
|
833
|
+
saturate: {
|
834
|
+
0: "0",
|
835
|
+
50: ".5",
|
836
|
+
100: "1",
|
837
|
+
150: "1.5",
|
838
|
+
200: "2"
|
839
|
+
},
|
840
|
+
scale: {
|
841
|
+
0: "0",
|
842
|
+
50: ".5",
|
843
|
+
75: ".75",
|
844
|
+
90: ".9",
|
845
|
+
95: ".95",
|
846
|
+
100: "1",
|
847
|
+
105: "1.05",
|
848
|
+
110: "1.1",
|
849
|
+
125: "1.25",
|
850
|
+
150: "1.5"
|
851
|
+
},
|
852
|
+
screens: {
|
853
|
+
sm: "640px",
|
854
|
+
md: "768px",
|
855
|
+
lg: "1024px",
|
856
|
+
xl: "1280px",
|
857
|
+
"2xl": "1536px"
|
858
|
+
},
|
859
|
+
scrollMargin: ({ theme }) => ({
|
860
|
+
...theme("spacing")
|
861
|
+
}),
|
862
|
+
scrollPadding: ({ theme }) => theme("spacing"),
|
863
|
+
sepia: {
|
864
|
+
0: "0",
|
865
|
+
DEFAULT: "100%"
|
866
|
+
},
|
867
|
+
skew: {
|
868
|
+
0: "0deg",
|
869
|
+
1: "1deg",
|
870
|
+
2: "2deg",
|
871
|
+
3: "3deg",
|
872
|
+
6: "6deg",
|
873
|
+
12: "12deg"
|
874
|
+
},
|
875
|
+
space: ({ theme }) => ({
|
876
|
+
...theme("spacing")
|
877
|
+
}),
|
878
|
+
spacing: {
|
879
|
+
px: "1px",
|
880
|
+
0: "0px",
|
881
|
+
0.5: "0.125rem",
|
882
|
+
1: "0.25rem",
|
883
|
+
1.5: "0.375rem",
|
884
|
+
2: "0.5rem",
|
885
|
+
2.5: "0.625rem",
|
886
|
+
3: "0.75rem",
|
887
|
+
3.5: "0.875rem",
|
888
|
+
4: "1rem",
|
889
|
+
5: "1.25rem",
|
890
|
+
6: "1.5rem",
|
891
|
+
7: "1.75rem",
|
892
|
+
8: "2rem",
|
893
|
+
9: "2.25rem",
|
894
|
+
10: "2.5rem",
|
895
|
+
11: "2.75rem",
|
896
|
+
12: "3rem",
|
897
|
+
14: "3.5rem",
|
898
|
+
16: "4rem",
|
899
|
+
20: "5rem",
|
900
|
+
24: "6rem",
|
901
|
+
28: "7rem",
|
902
|
+
32: "8rem",
|
903
|
+
36: "9rem",
|
904
|
+
40: "10rem",
|
905
|
+
44: "11rem",
|
906
|
+
48: "12rem",
|
907
|
+
52: "13rem",
|
908
|
+
56: "14rem",
|
909
|
+
60: "15rem",
|
910
|
+
64: "16rem",
|
911
|
+
72: "18rem",
|
912
|
+
80: "20rem",
|
913
|
+
96: "24rem"
|
914
|
+
},
|
915
|
+
stroke: ({ theme }) => ({
|
916
|
+
none: "none",
|
917
|
+
...theme("colors")
|
918
|
+
}),
|
919
|
+
strokeWidth: {
|
920
|
+
0: "0",
|
921
|
+
1: "1",
|
922
|
+
2: "2"
|
923
|
+
},
|
924
|
+
supports: {},
|
925
|
+
data: {},
|
926
|
+
textColor: ({ theme }) => theme("colors"),
|
927
|
+
textDecorationColor: ({ theme }) => theme("colors"),
|
928
|
+
textDecorationThickness: {
|
929
|
+
auto: "auto",
|
930
|
+
"from-font": "from-font",
|
931
|
+
0: "0px",
|
932
|
+
1: "1px",
|
933
|
+
2: "2px",
|
934
|
+
4: "4px",
|
935
|
+
8: "8px"
|
936
|
+
},
|
937
|
+
textIndent: ({ theme }) => ({
|
938
|
+
...theme("spacing")
|
939
|
+
}),
|
940
|
+
textOpacity: ({ theme }) => theme("opacity"),
|
941
|
+
textUnderlineOffset: {
|
942
|
+
auto: "auto",
|
943
|
+
0: "0px",
|
944
|
+
1: "1px",
|
945
|
+
2: "2px",
|
946
|
+
4: "4px",
|
947
|
+
8: "8px"
|
948
|
+
},
|
949
|
+
transformOrigin: {
|
950
|
+
center: "center",
|
951
|
+
top: "top",
|
952
|
+
"top-right": "top right",
|
953
|
+
right: "right",
|
954
|
+
"bottom-right": "bottom right",
|
955
|
+
bottom: "bottom",
|
956
|
+
"bottom-left": "bottom left",
|
957
|
+
left: "left",
|
958
|
+
"top-left": "top left"
|
959
|
+
},
|
960
|
+
transitionDelay: {
|
961
|
+
0: "0s",
|
962
|
+
75: "75ms",
|
963
|
+
100: "100ms",
|
964
|
+
150: "150ms",
|
965
|
+
200: "200ms",
|
966
|
+
300: "300ms",
|
967
|
+
500: "500ms",
|
968
|
+
700: "700ms",
|
969
|
+
1e3: "1000ms"
|
970
|
+
},
|
971
|
+
transitionDuration: {
|
972
|
+
DEFAULT: "150ms",
|
973
|
+
0: "0s",
|
974
|
+
75: "75ms",
|
975
|
+
100: "100ms",
|
976
|
+
150: "150ms",
|
977
|
+
200: "200ms",
|
978
|
+
300: "300ms",
|
979
|
+
500: "500ms",
|
980
|
+
700: "700ms",
|
981
|
+
1e3: "1000ms"
|
982
|
+
},
|
983
|
+
transitionProperty: {
|
984
|
+
none: "none",
|
985
|
+
all: "all",
|
986
|
+
DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
|
987
|
+
colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
|
988
|
+
opacity: "opacity",
|
989
|
+
shadow: "box-shadow",
|
990
|
+
transform: "transform"
|
991
|
+
},
|
992
|
+
transitionTimingFunction: {
|
993
|
+
DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
|
994
|
+
linear: "linear",
|
995
|
+
in: "cubic-bezier(0.4, 0, 1, 1)",
|
996
|
+
out: "cubic-bezier(0, 0, 0.2, 1)",
|
997
|
+
"in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
|
998
|
+
},
|
999
|
+
translate: ({ theme }) => ({
|
1000
|
+
...theme("spacing"),
|
1001
|
+
"1/2": "50%",
|
1002
|
+
"1/3": "33.333333%",
|
1003
|
+
"2/3": "66.666667%",
|
1004
|
+
"1/4": "25%",
|
1005
|
+
"2/4": "50%",
|
1006
|
+
"3/4": "75%",
|
1007
|
+
full: "100%"
|
1008
|
+
}),
|
1009
|
+
size: ({ theme }) => ({
|
1010
|
+
auto: "auto",
|
1011
|
+
...theme("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
|
+
min: "min-content",
|
1040
|
+
max: "max-content",
|
1041
|
+
fit: "fit-content"
|
1042
|
+
}),
|
1043
|
+
width: ({ theme }) => ({
|
1044
|
+
auto: "auto",
|
1045
|
+
...theme("spacing"),
|
1046
|
+
"1/2": "50%",
|
1047
|
+
"1/3": "33.333333%",
|
1048
|
+
"2/3": "66.666667%",
|
1049
|
+
"1/4": "25%",
|
1050
|
+
"2/4": "50%",
|
1051
|
+
"3/4": "75%",
|
1052
|
+
"1/5": "20%",
|
1053
|
+
"2/5": "40%",
|
1054
|
+
"3/5": "60%",
|
1055
|
+
"4/5": "80%",
|
1056
|
+
"1/6": "16.666667%",
|
1057
|
+
"2/6": "33.333333%",
|
1058
|
+
"3/6": "50%",
|
1059
|
+
"4/6": "66.666667%",
|
1060
|
+
"5/6": "83.333333%",
|
1061
|
+
"1/12": "8.333333%",
|
1062
|
+
"2/12": "16.666667%",
|
1063
|
+
"3/12": "25%",
|
1064
|
+
"4/12": "33.333333%",
|
1065
|
+
"5/12": "41.666667%",
|
1066
|
+
"6/12": "50%",
|
1067
|
+
"7/12": "58.333333%",
|
1068
|
+
"8/12": "66.666667%",
|
1069
|
+
"9/12": "75%",
|
1070
|
+
"10/12": "83.333333%",
|
1071
|
+
"11/12": "91.666667%",
|
1072
|
+
full: "100%",
|
1073
|
+
screen: "100vw",
|
1074
|
+
svw: "100svw",
|
1075
|
+
lvw: "100lvw",
|
1076
|
+
dvw: "100dvw",
|
1077
|
+
min: "min-content",
|
1078
|
+
max: "max-content",
|
1079
|
+
fit: "fit-content"
|
1080
|
+
}),
|
1081
|
+
willChange: {
|
1082
|
+
auto: "auto",
|
1083
|
+
scroll: "scroll-position",
|
1084
|
+
contents: "contents",
|
1085
|
+
transform: "transform"
|
1086
|
+
},
|
1087
|
+
zIndex: {
|
1088
|
+
auto: "auto",
|
1089
|
+
0: "0",
|
1090
|
+
10: "10",
|
1091
|
+
20: "20",
|
1092
|
+
30: "30",
|
1093
|
+
40: "40",
|
1094
|
+
50: "50"
|
1095
|
+
}
|
1096
|
+
},
|
1097
|
+
plugins: []
|
1098
|
+
};
|
1099
|
+
}
|
1100
|
+
});
|
1101
|
+
|
1102
|
+
// node_modules/tailwindcss/lib/public/default-theme.js
|
1103
|
+
var require_default_theme = __commonJS({
|
1104
|
+
"node_modules/tailwindcss/lib/public/default-theme.js"(exports2) {
|
1105
|
+
"use strict";
|
1106
|
+
Object.defineProperty(exports2, "__esModule", {
|
1107
|
+
value: true
|
1108
|
+
});
|
1109
|
+
Object.defineProperty(exports2, "default", {
|
1110
|
+
enumerable: true,
|
1111
|
+
get: function() {
|
1112
|
+
return _default;
|
1113
|
+
}
|
1114
|
+
});
|
1115
|
+
var _cloneDeep = require_cloneDeep();
|
1116
|
+
var _configfull = /* @__PURE__ */ _interop_require_default(require_config_full());
|
1117
|
+
function _interop_require_default(obj) {
|
1118
|
+
return obj && obj.__esModule ? obj : {
|
1119
|
+
default: obj
|
1120
|
+
};
|
1121
|
+
}
|
1122
|
+
var _default = (0, _cloneDeep.cloneDeep)(_configfull.default.theme);
|
1123
|
+
}
|
1124
|
+
});
|
1125
|
+
|
1126
|
+
// node_modules/tailwindcss/defaultTheme.js
|
1127
|
+
var require_defaultTheme = __commonJS({
|
1128
|
+
"node_modules/tailwindcss/defaultTheme.js"(exports2, module2) {
|
1129
|
+
var defaultTheme2 = require_default_theme();
|
1130
|
+
module2.exports = (defaultTheme2.__esModule ? defaultTheme2 : { default: defaultTheme2 }).default;
|
1131
|
+
}
|
1132
|
+
});
|
1133
|
+
|
1134
|
+
// config/tokens.js
|
1135
|
+
var require_tokens = __commonJS({
|
1136
|
+
"config/tokens.js"(exports2, module2) {
|
1137
|
+
var colors2 = {
|
1138
|
+
transparent: "transparent",
|
1139
|
+
current: "currentColor",
|
1140
|
+
black: "#000000",
|
1141
|
+
white: "#FFFFFF",
|
1142
|
+
coco: {
|
1143
|
+
gray: {
|
1144
|
+
50: "#F9FAFB",
|
1145
|
+
100: "#F3F4F6",
|
1146
|
+
200: "#E5E7EB",
|
1147
|
+
300: "#D1D5DB",
|
1148
|
+
400: "#9CA3AF",
|
1149
|
+
500: "#6B7280",
|
1150
|
+
600: "#4B5563",
|
1151
|
+
700: "#374151",
|
1152
|
+
800: "#1F2937",
|
1153
|
+
900: "#111827"
|
1154
|
+
}
|
1155
|
+
},
|
1156
|
+
gray: {
|
1157
|
+
transparent: {
|
1158
|
+
50: "rgba(0, 12, 39, 0.06)",
|
1159
|
+
100: "rgba(0, 12, 39, 0.1)",
|
1160
|
+
200: "rgba(0, 12, 39, 0.18)"
|
1161
|
+
}
|
1162
|
+
},
|
1163
|
+
green: {
|
1164
|
+
50: "#E8F3F1",
|
1165
|
+
100: "#D1E7E2",
|
1166
|
+
200: "#A3CFC5",
|
1167
|
+
300: "#76B8AA",
|
1168
|
+
400: "#48A08D",
|
1169
|
+
500: "#1A8871",
|
1170
|
+
600: "#137464",
|
1171
|
+
700: "#0D6159",
|
1172
|
+
800: "#084C4E",
|
1173
|
+
900: "#013C43"
|
1174
|
+
},
|
1175
|
+
red: {
|
1176
|
+
50: "#FEF2F2",
|
1177
|
+
100: "#FEE2E2",
|
1178
|
+
200: "#FECACA",
|
1179
|
+
300: "#FCA5A5",
|
1180
|
+
400: "#F87171",
|
1181
|
+
500: "#EF4444",
|
1182
|
+
600: "#DC2626",
|
1183
|
+
700: "#B91C1C",
|
1184
|
+
800: "#991B1B",
|
1185
|
+
900: "#7F1D1D"
|
1186
|
+
},
|
1187
|
+
amber: {
|
1188
|
+
50: "#FFFBEB",
|
1189
|
+
100: "#FEF3C7",
|
1190
|
+
200: "#FDE68A",
|
1191
|
+
300: "#FCD34D",
|
1192
|
+
400: "#FBBF24",
|
1193
|
+
500: "#F59E0B",
|
1194
|
+
600: "#D97706",
|
1195
|
+
700: "#B45309",
|
1196
|
+
800: "#92400E",
|
1197
|
+
900: "#78350F"
|
1198
|
+
},
|
1199
|
+
blue: {
|
1200
|
+
50: "#F0F9FF",
|
1201
|
+
100: "#E0F2FE",
|
1202
|
+
200: "#BAE6FD",
|
1203
|
+
300: "#7DD3FC",
|
1204
|
+
400: "#38BDF8",
|
1205
|
+
500: "#0EA5E9",
|
1206
|
+
600: "#0284C7",
|
1207
|
+
700: "#0369A1",
|
1208
|
+
800: "#075985",
|
1209
|
+
900: "#0C4A6E"
|
1210
|
+
},
|
1211
|
+
teal: {
|
1212
|
+
50: "#F0FDFA",
|
1213
|
+
100: "#CCFBF1",
|
1214
|
+
200: "#99F6E4",
|
1215
|
+
300: "#5EEAD4",
|
1216
|
+
400: "#2DD4BF",
|
1217
|
+
500: "#14B8A6",
|
1218
|
+
600: "#0D9488",
|
1219
|
+
700: "#0F766E",
|
1220
|
+
800: "#115E59",
|
1221
|
+
900: "#134E4A"
|
1222
|
+
}
|
1223
|
+
};
|
1224
|
+
var colorAliases = {
|
1225
|
+
primary: {
|
1226
|
+
...colors2.green
|
1227
|
+
},
|
1228
|
+
positive: {
|
1229
|
+
...colors2.green
|
1230
|
+
},
|
1231
|
+
negative: {
|
1232
|
+
...colors2.red
|
1233
|
+
},
|
1234
|
+
warning: {
|
1235
|
+
...colors2.amber
|
1236
|
+
},
|
1237
|
+
info: {
|
1238
|
+
...colors2.blue
|
1239
|
+
},
|
1240
|
+
background: {
|
1241
|
+
header: {
|
1242
|
+
DEFAULT: "#427484"
|
1243
|
+
},
|
1244
|
+
light: {
|
1245
|
+
1: colors2.white,
|
1246
|
+
2: colors2.coco.gray[50],
|
1247
|
+
3: colors2.coco.gray[100]
|
1248
|
+
},
|
1249
|
+
dark: {
|
1250
|
+
1: colors2.coco.gray[900],
|
1251
|
+
2: colors2.coco.gray[800],
|
1252
|
+
3: colors2.coco.gray[700]
|
1253
|
+
},
|
1254
|
+
primary: {
|
1255
|
+
DEFAULT: colors2.green[500],
|
1256
|
+
light: colors2.green[100]
|
1257
|
+
},
|
1258
|
+
negative: {
|
1259
|
+
DEFAULT: colors2.red[600],
|
1260
|
+
light: colors2.red[100]
|
1261
|
+
},
|
1262
|
+
warning: {
|
1263
|
+
DEFAULT: colors2.amber[500],
|
1264
|
+
light: colors2.amber[50]
|
1265
|
+
},
|
1266
|
+
positive: {
|
1267
|
+
DEFAULT: colors2.green[500],
|
1268
|
+
light: colors2.green[100]
|
1269
|
+
},
|
1270
|
+
info: {
|
1271
|
+
DEFAULT: colors2.blue[600],
|
1272
|
+
light: colors2.blue[100]
|
1273
|
+
}
|
1274
|
+
},
|
1275
|
+
content: {
|
1276
|
+
dark: {
|
1277
|
+
1: colors2.coco.gray[900],
|
1278
|
+
2: colors2.coco.gray[800],
|
1279
|
+
3: colors2.coco.gray[600],
|
1280
|
+
muted: colors2.coco.gray[400]
|
1281
|
+
},
|
1282
|
+
light: {
|
1283
|
+
1: colors2.white,
|
1284
|
+
2: colors2.coco.gray[200],
|
1285
|
+
muted: colors2.coco.gray[400]
|
1286
|
+
},
|
1287
|
+
primary: {
|
1288
|
+
DEFAULT: colors2.green[500],
|
1289
|
+
dark: colors2.green[600],
|
1290
|
+
inverse: colors2.green[300],
|
1291
|
+
"inverse-vivid": "#009979"
|
1292
|
+
},
|
1293
|
+
negative: {
|
1294
|
+
DEFAULT: colors2.red[600],
|
1295
|
+
dark: colors2.red[700],
|
1296
|
+
inverse: colors2.red[300]
|
1297
|
+
},
|
1298
|
+
warning: {
|
1299
|
+
DEFAULT: colors2.amber[600],
|
1300
|
+
dark: colors2.amber[700],
|
1301
|
+
inverse: colors2.amber[300]
|
1302
|
+
},
|
1303
|
+
positive: {
|
1304
|
+
DEFAULT: colors2.green[500],
|
1305
|
+
dark: colors2.green[600],
|
1306
|
+
inverse: colors2.green[300]
|
1307
|
+
},
|
1308
|
+
info: {
|
1309
|
+
DEFAULT: colors2.blue[600],
|
1310
|
+
dark: colors2.blue[700],
|
1311
|
+
inverse: colors2.blue[300]
|
1312
|
+
}
|
1313
|
+
}
|
1314
|
+
};
|
1315
|
+
var screens2 = {
|
1316
|
+
xs: "380px",
|
1317
|
+
sm: "576px",
|
1318
|
+
md: "768px",
|
1319
|
+
lg: "992px",
|
1320
|
+
xl: "1200px",
|
1321
|
+
"2xl": "1400px",
|
1322
|
+
"3xl": "1600px",
|
1323
|
+
max: "1800px",
|
1324
|
+
"max-sm": { max: "576px" },
|
1325
|
+
"max-md": { max: "768px" },
|
1326
|
+
"max-lg": { max: "992px" },
|
1327
|
+
"max-xl": { max: "1200px" },
|
1328
|
+
"max-2xl": { max: "1400px" },
|
1329
|
+
"max-max": { max: "1800px" },
|
1330
|
+
letterbox: { raw: "(max-height: 760px) and (min-width: 576px)" },
|
1331
|
+
print: { raw: "print" }
|
1332
|
+
// Note: PDFs are rendered at a viewport width of 1280px
|
1333
|
+
};
|
1334
|
+
var fontSize2 = {
|
1335
|
+
"para-xs": ["12px", "16px"],
|
1336
|
+
"para-sm": ["14px", "20px"],
|
1337
|
+
"para-md": ["16px", "24px"],
|
1338
|
+
"para-lg": ["18px", "27px"],
|
1339
|
+
"label-xxs": ["10px", "12px"],
|
1340
|
+
"label-xs": ["12px", "14px"],
|
1341
|
+
"label-sm": ["14px", "16px"],
|
1342
|
+
"label-md": ["16px", "20px"],
|
1343
|
+
"label-lg": ["18px", "24px"],
|
1344
|
+
"display-1": ["96px", "96px"],
|
1345
|
+
"display-2": ["80px", "84px"],
|
1346
|
+
"display-3": ["64px", "68px"],
|
1347
|
+
"display-4": ["48px", "52px"],
|
1348
|
+
"relaxed-display-1": ["96px", "104px"],
|
1349
|
+
"relaxed-display-2": ["80px", "88px"],
|
1350
|
+
"relaxed-display-3": ["64px", "72px"],
|
1351
|
+
"relaxed-display-4": ["48px", "56px"],
|
1352
|
+
"heading-1": ["40px", "48px"],
|
1353
|
+
"heading-2": ["32px", "40px"],
|
1354
|
+
"heading-3": ["28px", "36px"],
|
1355
|
+
"heading-4": ["24px", "30px"],
|
1356
|
+
"heading-5": ["20px", "24px"],
|
1357
|
+
"heading-6": ["16px", "20px"],
|
1358
|
+
"subheading-1": ["32px", "40px"],
|
1359
|
+
"subheading-2": ["24px", "32px"],
|
1360
|
+
"subheading-3": ["20px", "28px"],
|
1361
|
+
"subheading-4": ["16px", "24px"]
|
1362
|
+
};
|
1363
|
+
module2.exports = {
|
1364
|
+
colors: {
|
1365
|
+
...colors2,
|
1366
|
+
...colorAliases
|
1367
|
+
},
|
1368
|
+
screens: screens2,
|
1369
|
+
fontSize: fontSize2,
|
1370
|
+
fontFamily: {
|
1371
|
+
displaySans: "proxima-nova",
|
1372
|
+
bodySans: "proxima-nova",
|
1373
|
+
displaySerif: "merriweather"
|
1374
|
+
}
|
1375
|
+
};
|
1376
|
+
}
|
1377
|
+
});
|
1378
|
+
|
1379
|
+
// node_modules/mini-svg-data-uri/shorter-css-color-names.js
|
1380
|
+
var require_shorter_css_color_names = __commonJS({
|
1381
|
+
"node_modules/mini-svg-data-uri/shorter-css-color-names.js"(exports2, module2) {
|
1382
|
+
module2.exports = {
|
1383
|
+
aqua: /#00ffff(ff)?(?!\w)|#0ff(f)?(?!\w)/gi,
|
1384
|
+
azure: /#f0ffff(ff)?(?!\w)/gi,
|
1385
|
+
beige: /#f5f5dc(ff)?(?!\w)/gi,
|
1386
|
+
bisque: /#ffe4c4(ff)?(?!\w)/gi,
|
1387
|
+
black: /#000000(ff)?(?!\w)|#000(f)?(?!\w)/gi,
|
1388
|
+
blue: /#0000ff(ff)?(?!\w)|#00f(f)?(?!\w)/gi,
|
1389
|
+
brown: /#a52a2a(ff)?(?!\w)/gi,
|
1390
|
+
coral: /#ff7f50(ff)?(?!\w)/gi,
|
1391
|
+
cornsilk: /#fff8dc(ff)?(?!\w)/gi,
|
1392
|
+
crimson: /#dc143c(ff)?(?!\w)/gi,
|
1393
|
+
cyan: /#00ffff(ff)?(?!\w)|#0ff(f)?(?!\w)/gi,
|
1394
|
+
darkblue: /#00008b(ff)?(?!\w)/gi,
|
1395
|
+
darkcyan: /#008b8b(ff)?(?!\w)/gi,
|
1396
|
+
darkgrey: /#a9a9a9(ff)?(?!\w)/gi,
|
1397
|
+
darkred: /#8b0000(ff)?(?!\w)/gi,
|
1398
|
+
deeppink: /#ff1493(ff)?(?!\w)/gi,
|
1399
|
+
dimgrey: /#696969(ff)?(?!\w)/gi,
|
1400
|
+
gold: /#ffd700(ff)?(?!\w)/gi,
|
1401
|
+
green: /#008000(ff)?(?!\w)/gi,
|
1402
|
+
grey: /#808080(ff)?(?!\w)/gi,
|
1403
|
+
honeydew: /#f0fff0(ff)?(?!\w)/gi,
|
1404
|
+
hotpink: /#ff69b4(ff)?(?!\w)/gi,
|
1405
|
+
indigo: /#4b0082(ff)?(?!\w)/gi,
|
1406
|
+
ivory: /#fffff0(ff)?(?!\w)/gi,
|
1407
|
+
khaki: /#f0e68c(ff)?(?!\w)/gi,
|
1408
|
+
lavender: /#e6e6fa(ff)?(?!\w)/gi,
|
1409
|
+
lime: /#00ff00(ff)?(?!\w)|#0f0(f)?(?!\w)/gi,
|
1410
|
+
linen: /#faf0e6(ff)?(?!\w)/gi,
|
1411
|
+
maroon: /#800000(ff)?(?!\w)/gi,
|
1412
|
+
moccasin: /#ffe4b5(ff)?(?!\w)/gi,
|
1413
|
+
navy: /#000080(ff)?(?!\w)/gi,
|
1414
|
+
oldlace: /#fdf5e6(ff)?(?!\w)/gi,
|
1415
|
+
olive: /#808000(ff)?(?!\w)/gi,
|
1416
|
+
orange: /#ffa500(ff)?(?!\w)/gi,
|
1417
|
+
orchid: /#da70d6(ff)?(?!\w)/gi,
|
1418
|
+
peru: /#cd853f(ff)?(?!\w)/gi,
|
1419
|
+
pink: /#ffc0cb(ff)?(?!\w)/gi,
|
1420
|
+
plum: /#dda0dd(ff)?(?!\w)/gi,
|
1421
|
+
purple: /#800080(ff)?(?!\w)/gi,
|
1422
|
+
red: /#ff0000(ff)?(?!\w)|#f00(f)?(?!\w)/gi,
|
1423
|
+
salmon: /#fa8072(ff)?(?!\w)/gi,
|
1424
|
+
seagreen: /#2e8b57(ff)?(?!\w)/gi,
|
1425
|
+
seashell: /#fff5ee(ff)?(?!\w)/gi,
|
1426
|
+
sienna: /#a0522d(ff)?(?!\w)/gi,
|
1427
|
+
silver: /#c0c0c0(ff)?(?!\w)/gi,
|
1428
|
+
skyblue: /#87ceeb(ff)?(?!\w)/gi,
|
1429
|
+
snow: /#fffafa(ff)?(?!\w)/gi,
|
1430
|
+
tan: /#d2b48c(ff)?(?!\w)/gi,
|
1431
|
+
teal: /#008080(ff)?(?!\w)/gi,
|
1432
|
+
thistle: /#d8bfd8(ff)?(?!\w)/gi,
|
1433
|
+
tomato: /#ff6347(ff)?(?!\w)/gi,
|
1434
|
+
violet: /#ee82ee(ff)?(?!\w)/gi,
|
1435
|
+
wheat: /#f5deb3(ff)?(?!\w)/gi,
|
1436
|
+
white: /#ffffff(ff)?(?!\w)|#fff(f)?(?!\w)/gi
|
1437
|
+
};
|
1438
|
+
}
|
1439
|
+
});
|
1440
|
+
|
1441
|
+
// node_modules/mini-svg-data-uri/index.js
|
1442
|
+
var require_mini_svg_data_uri = __commonJS({
|
1443
|
+
"node_modules/mini-svg-data-uri/index.js"(exports2, module2) {
|
1444
|
+
var shorterNames = require_shorter_css_color_names();
|
1445
|
+
var REGEX = {
|
1446
|
+
whitespace: /\s+/g,
|
1447
|
+
urlHexPairs: /%[\dA-F]{2}/g,
|
1448
|
+
quotes: /"/g
|
1449
|
+
};
|
1450
|
+
function collapseWhitespace(str) {
|
1451
|
+
return str.trim().replace(REGEX.whitespace, " ");
|
1452
|
+
}
|
1453
|
+
function dataURIPayload(string) {
|
1454
|
+
return encodeURIComponent(string).replace(REGEX.urlHexPairs, specialHexEncode);
|
1455
|
+
}
|
1456
|
+
function colorCodeToShorterNames(string) {
|
1457
|
+
Object.keys(shorterNames).forEach(function(key) {
|
1458
|
+
if (shorterNames[key].test(string)) {
|
1459
|
+
string = string.replace(shorterNames[key], key);
|
1460
|
+
}
|
1461
|
+
});
|
1462
|
+
return string;
|
1463
|
+
}
|
1464
|
+
function specialHexEncode(match) {
|
1465
|
+
switch (match) {
|
1466
|
+
case "%20":
|
1467
|
+
return " ";
|
1468
|
+
case "%3D":
|
1469
|
+
return "=";
|
1470
|
+
case "%3A":
|
1471
|
+
return ":";
|
1472
|
+
case "%2F":
|
1473
|
+
return "/";
|
1474
|
+
default:
|
1475
|
+
return match.toLowerCase();
|
1476
|
+
}
|
1477
|
+
}
|
1478
|
+
function svgToTinyDataUri(svgString) {
|
1479
|
+
if (typeof svgString !== "string") {
|
1480
|
+
throw new TypeError("Expected a string, but received " + typeof svgString);
|
1481
|
+
}
|
1482
|
+
if (svgString.charCodeAt(0) === 65279) {
|
1483
|
+
svgString = svgString.slice(1);
|
1484
|
+
}
|
1485
|
+
var body = colorCodeToShorterNames(collapseWhitespace(svgString)).replace(REGEX.quotes, "'");
|
1486
|
+
return "data:image/svg+xml," + dataURIPayload(body);
|
1487
|
+
}
|
1488
|
+
svgToTinyDataUri.toSrcset = function toSrcset(svgString) {
|
1489
|
+
return svgToTinyDataUri(svgString).replace(/ /g, "%20");
|
1490
|
+
};
|
1491
|
+
module2.exports = svgToTinyDataUri;
|
1492
|
+
}
|
1493
|
+
});
|
1494
|
+
|
1495
|
+
// node_modules/tailwindcss/lib/util/createPlugin.js
|
1496
|
+
var require_createPlugin = __commonJS({
|
1497
|
+
"node_modules/tailwindcss/lib/util/createPlugin.js"(exports2) {
|
1498
|
+
"use strict";
|
1499
|
+
Object.defineProperty(exports2, "__esModule", {
|
1500
|
+
value: true
|
1501
|
+
});
|
1502
|
+
Object.defineProperty(exports2, "default", {
|
1503
|
+
enumerable: true,
|
1504
|
+
get: function() {
|
1505
|
+
return _default;
|
1506
|
+
}
|
1507
|
+
});
|
1508
|
+
function createPlugin(plugin, config) {
|
1509
|
+
return {
|
1510
|
+
handler: plugin,
|
1511
|
+
config
|
1512
|
+
};
|
1513
|
+
}
|
1514
|
+
createPlugin.withOptions = function(pluginFunction, configFunction = () => ({})) {
|
1515
|
+
const optionsFunction = function(options) {
|
1516
|
+
return {
|
1517
|
+
__options: options,
|
1518
|
+
handler: pluginFunction(options),
|
1519
|
+
config: configFunction(options)
|
1520
|
+
};
|
1521
|
+
};
|
1522
|
+
optionsFunction.__isOptionsFunction = true;
|
1523
|
+
optionsFunction.__pluginFunction = pluginFunction;
|
1524
|
+
optionsFunction.__configFunction = configFunction;
|
1525
|
+
return optionsFunction;
|
1526
|
+
};
|
1527
|
+
var _default = createPlugin;
|
1528
|
+
}
|
1529
|
+
});
|
1530
|
+
|
1531
|
+
// node_modules/tailwindcss/lib/public/create-plugin.js
|
1532
|
+
var require_create_plugin = __commonJS({
|
1533
|
+
"node_modules/tailwindcss/lib/public/create-plugin.js"(exports2) {
|
1534
|
+
"use strict";
|
1535
|
+
Object.defineProperty(exports2, "__esModule", {
|
1536
|
+
value: true
|
1537
|
+
});
|
1538
|
+
Object.defineProperty(exports2, "default", {
|
1539
|
+
enumerable: true,
|
1540
|
+
get: function() {
|
1541
|
+
return _default;
|
1542
|
+
}
|
1543
|
+
});
|
1544
|
+
var _createPlugin = /* @__PURE__ */ _interop_require_default(require_createPlugin());
|
1545
|
+
function _interop_require_default(obj) {
|
1546
|
+
return obj && obj.__esModule ? obj : {
|
1547
|
+
default: obj
|
1548
|
+
};
|
1549
|
+
}
|
1550
|
+
var _default = _createPlugin.default;
|
1551
|
+
}
|
1552
|
+
});
|
1553
|
+
|
1554
|
+
// node_modules/tailwindcss/plugin.js
|
1555
|
+
var require_plugin = __commonJS({
|
1556
|
+
"node_modules/tailwindcss/plugin.js"(exports2, module2) {
|
1557
|
+
var createPlugin = require_create_plugin();
|
1558
|
+
module2.exports = (createPlugin.__esModule ? createPlugin : { default: createPlugin }).default;
|
1559
|
+
}
|
1560
|
+
});
|
1561
|
+
|
1562
|
+
// node_modules/picocolors/picocolors.browser.js
|
1563
|
+
var require_picocolors_browser = __commonJS({
|
1564
|
+
"node_modules/picocolors/picocolors.browser.js"(exports2, module2) {
|
1565
|
+
var x = String;
|
1566
|
+
var create = function() {
|
1567
|
+
return { isColorSupported: false, reset: x, bold: x, dim: x, italic: x, underline: x, inverse: x, hidden: x, strikethrough: x, black: x, red: x, green: x, yellow: x, blue: x, magenta: x, cyan: x, white: x, gray: x, bgBlack: x, bgRed: x, bgGreen: x, bgYellow: x, bgBlue: x, bgMagenta: x, bgCyan: x, bgWhite: x };
|
1568
|
+
};
|
1569
|
+
module2.exports = create();
|
1570
|
+
module2.exports.createColors = create;
|
1571
|
+
}
|
1572
|
+
});
|
1573
|
+
|
1574
|
+
// node_modules/tailwindcss/lib/util/log.js
|
1575
|
+
var require_log = __commonJS({
|
1576
|
+
"node_modules/tailwindcss/lib/util/log.js"(exports2) {
|
1577
|
+
"use strict";
|
1578
|
+
Object.defineProperty(exports2, "__esModule", {
|
1579
|
+
value: true
|
1580
|
+
});
|
1581
|
+
function _export(target, all) {
|
1582
|
+
for (var name in all)
|
1583
|
+
Object.defineProperty(target, name, {
|
1584
|
+
enumerable: true,
|
1585
|
+
get: all[name]
|
1586
|
+
});
|
1587
|
+
}
|
1588
|
+
_export(exports2, {
|
1589
|
+
dim: function() {
|
1590
|
+
return dim;
|
1591
|
+
},
|
1592
|
+
default: function() {
|
1593
|
+
return _default;
|
1594
|
+
}
|
1595
|
+
});
|
1596
|
+
var _picocolors = /* @__PURE__ */ _interop_require_default(require_picocolors_browser());
|
1597
|
+
function _interop_require_default(obj) {
|
1598
|
+
return obj && obj.__esModule ? obj : {
|
1599
|
+
default: obj
|
1600
|
+
};
|
1601
|
+
}
|
1602
|
+
var alreadyShown = /* @__PURE__ */ new Set();
|
1603
|
+
function log(type, messages, key) {
|
1604
|
+
if (typeof process !== "undefined" && process.env.JEST_WORKER_ID)
|
1605
|
+
return;
|
1606
|
+
if (key && alreadyShown.has(key))
|
1607
|
+
return;
|
1608
|
+
if (key)
|
1609
|
+
alreadyShown.add(key);
|
1610
|
+
console.warn("");
|
1611
|
+
messages.forEach((message) => console.warn(type, "-", message));
|
1612
|
+
}
|
1613
|
+
function dim(input) {
|
1614
|
+
return _picocolors.default.dim(input);
|
1615
|
+
}
|
1616
|
+
var _default = {
|
1617
|
+
info(key, messages) {
|
1618
|
+
log(_picocolors.default.bold(_picocolors.default.cyan("info")), ...Array.isArray(key) ? [
|
1619
|
+
key
|
1620
|
+
] : [
|
1621
|
+
messages,
|
1622
|
+
key
|
1623
|
+
]);
|
1624
|
+
},
|
1625
|
+
warn(key, messages) {
|
1626
|
+
log(_picocolors.default.bold(_picocolors.default.yellow("warn")), ...Array.isArray(key) ? [
|
1627
|
+
key
|
1628
|
+
] : [
|
1629
|
+
messages,
|
1630
|
+
key
|
1631
|
+
]);
|
1632
|
+
},
|
1633
|
+
risk(key, messages) {
|
1634
|
+
log(_picocolors.default.bold(_picocolors.default.magenta("risk")), ...Array.isArray(key) ? [
|
1635
|
+
key
|
1636
|
+
] : [
|
1637
|
+
messages,
|
1638
|
+
key
|
1639
|
+
]);
|
1640
|
+
}
|
1641
|
+
};
|
1642
|
+
}
|
1643
|
+
});
|
1644
|
+
|
1645
|
+
// node_modules/tailwindcss/lib/public/colors.js
|
1646
|
+
var require_colors = __commonJS({
|
1647
|
+
"node_modules/tailwindcss/lib/public/colors.js"(exports2) {
|
1648
|
+
"use strict";
|
1649
|
+
Object.defineProperty(exports2, "__esModule", {
|
1650
|
+
value: true
|
1651
|
+
});
|
1652
|
+
Object.defineProperty(exports2, "default", {
|
1653
|
+
enumerable: true,
|
1654
|
+
get: function() {
|
1655
|
+
return _default;
|
1656
|
+
}
|
1657
|
+
});
|
1658
|
+
var _log = /* @__PURE__ */ _interop_require_default(require_log());
|
1659
|
+
function _interop_require_default(obj) {
|
1660
|
+
return obj && obj.__esModule ? obj : {
|
1661
|
+
default: obj
|
1662
|
+
};
|
1663
|
+
}
|
1664
|
+
function warn({ version, from, to }) {
|
1665
|
+
_log.default.warn(`${from}-color-renamed`, [
|
1666
|
+
`As of Tailwind CSS ${version}, \`${from}\` has been renamed to \`${to}\`.`,
|
1667
|
+
"Update your configuration file to silence this warning."
|
1668
|
+
]);
|
1669
|
+
}
|
1670
|
+
var _default = {
|
1671
|
+
inherit: "inherit",
|
1672
|
+
current: "currentColor",
|
1673
|
+
transparent: "transparent",
|
1674
|
+
black: "#000",
|
1675
|
+
white: "#fff",
|
1676
|
+
slate: {
|
1677
|
+
50: "#f8fafc",
|
1678
|
+
100: "#f1f5f9",
|
1679
|
+
200: "#e2e8f0",
|
1680
|
+
300: "#cbd5e1",
|
1681
|
+
400: "#94a3b8",
|
1682
|
+
500: "#64748b",
|
1683
|
+
600: "#475569",
|
1684
|
+
700: "#334155",
|
1685
|
+
800: "#1e293b",
|
1686
|
+
900: "#0f172a",
|
1687
|
+
950: "#020617"
|
1688
|
+
},
|
1689
|
+
gray: {
|
1690
|
+
50: "#f9fafb",
|
1691
|
+
100: "#f3f4f6",
|
1692
|
+
200: "#e5e7eb",
|
1693
|
+
300: "#d1d5db",
|
1694
|
+
400: "#9ca3af",
|
1695
|
+
500: "#6b7280",
|
1696
|
+
600: "#4b5563",
|
1697
|
+
700: "#374151",
|
1698
|
+
800: "#1f2937",
|
1699
|
+
900: "#111827",
|
1700
|
+
950: "#030712"
|
1701
|
+
},
|
1702
|
+
zinc: {
|
1703
|
+
50: "#fafafa",
|
1704
|
+
100: "#f4f4f5",
|
1705
|
+
200: "#e4e4e7",
|
1706
|
+
300: "#d4d4d8",
|
1707
|
+
400: "#a1a1aa",
|
1708
|
+
500: "#71717a",
|
1709
|
+
600: "#52525b",
|
1710
|
+
700: "#3f3f46",
|
1711
|
+
800: "#27272a",
|
1712
|
+
900: "#18181b",
|
1713
|
+
950: "#09090b"
|
1714
|
+
},
|
1715
|
+
neutral: {
|
1716
|
+
50: "#fafafa",
|
1717
|
+
100: "#f5f5f5",
|
1718
|
+
200: "#e5e5e5",
|
1719
|
+
300: "#d4d4d4",
|
1720
|
+
400: "#a3a3a3",
|
1721
|
+
500: "#737373",
|
1722
|
+
600: "#525252",
|
1723
|
+
700: "#404040",
|
1724
|
+
800: "#262626",
|
1725
|
+
900: "#171717",
|
1726
|
+
950: "#0a0a0a"
|
1727
|
+
},
|
1728
|
+
stone: {
|
1729
|
+
50: "#fafaf9",
|
1730
|
+
100: "#f5f5f4",
|
1731
|
+
200: "#e7e5e4",
|
1732
|
+
300: "#d6d3d1",
|
1733
|
+
400: "#a8a29e",
|
1734
|
+
500: "#78716c",
|
1735
|
+
600: "#57534e",
|
1736
|
+
700: "#44403c",
|
1737
|
+
800: "#292524",
|
1738
|
+
900: "#1c1917",
|
1739
|
+
950: "#0c0a09"
|
1740
|
+
},
|
1741
|
+
red: {
|
1742
|
+
50: "#fef2f2",
|
1743
|
+
100: "#fee2e2",
|
1744
|
+
200: "#fecaca",
|
1745
|
+
300: "#fca5a5",
|
1746
|
+
400: "#f87171",
|
1747
|
+
500: "#ef4444",
|
1748
|
+
600: "#dc2626",
|
1749
|
+
700: "#b91c1c",
|
1750
|
+
800: "#991b1b",
|
1751
|
+
900: "#7f1d1d",
|
1752
|
+
950: "#450a0a"
|
1753
|
+
},
|
1754
|
+
orange: {
|
1755
|
+
50: "#fff7ed",
|
1756
|
+
100: "#ffedd5",
|
1757
|
+
200: "#fed7aa",
|
1758
|
+
300: "#fdba74",
|
1759
|
+
400: "#fb923c",
|
1760
|
+
500: "#f97316",
|
1761
|
+
600: "#ea580c",
|
1762
|
+
700: "#c2410c",
|
1763
|
+
800: "#9a3412",
|
1764
|
+
900: "#7c2d12",
|
1765
|
+
950: "#431407"
|
1766
|
+
},
|
1767
|
+
amber: {
|
1768
|
+
50: "#fffbeb",
|
1769
|
+
100: "#fef3c7",
|
1770
|
+
200: "#fde68a",
|
1771
|
+
300: "#fcd34d",
|
1772
|
+
400: "#fbbf24",
|
1773
|
+
500: "#f59e0b",
|
1774
|
+
600: "#d97706",
|
1775
|
+
700: "#b45309",
|
1776
|
+
800: "#92400e",
|
1777
|
+
900: "#78350f",
|
1778
|
+
950: "#451a03"
|
1779
|
+
},
|
1780
|
+
yellow: {
|
1781
|
+
50: "#fefce8",
|
1782
|
+
100: "#fef9c3",
|
1783
|
+
200: "#fef08a",
|
1784
|
+
300: "#fde047",
|
1785
|
+
400: "#facc15",
|
1786
|
+
500: "#eab308",
|
1787
|
+
600: "#ca8a04",
|
1788
|
+
700: "#a16207",
|
1789
|
+
800: "#854d0e",
|
1790
|
+
900: "#713f12",
|
1791
|
+
950: "#422006"
|
1792
|
+
},
|
1793
|
+
lime: {
|
1794
|
+
50: "#f7fee7",
|
1795
|
+
100: "#ecfccb",
|
1796
|
+
200: "#d9f99d",
|
1797
|
+
300: "#bef264",
|
1798
|
+
400: "#a3e635",
|
1799
|
+
500: "#84cc16",
|
1800
|
+
600: "#65a30d",
|
1801
|
+
700: "#4d7c0f",
|
1802
|
+
800: "#3f6212",
|
1803
|
+
900: "#365314",
|
1804
|
+
950: "#1a2e05"
|
1805
|
+
},
|
1806
|
+
green: {
|
1807
|
+
50: "#f0fdf4",
|
1808
|
+
100: "#dcfce7",
|
1809
|
+
200: "#bbf7d0",
|
1810
|
+
300: "#86efac",
|
1811
|
+
400: "#4ade80",
|
1812
|
+
500: "#22c55e",
|
1813
|
+
600: "#16a34a",
|
1814
|
+
700: "#15803d",
|
1815
|
+
800: "#166534",
|
1816
|
+
900: "#14532d",
|
1817
|
+
950: "#052e16"
|
1818
|
+
},
|
1819
|
+
emerald: {
|
1820
|
+
50: "#ecfdf5",
|
1821
|
+
100: "#d1fae5",
|
1822
|
+
200: "#a7f3d0",
|
1823
|
+
300: "#6ee7b7",
|
1824
|
+
400: "#34d399",
|
1825
|
+
500: "#10b981",
|
1826
|
+
600: "#059669",
|
1827
|
+
700: "#047857",
|
1828
|
+
800: "#065f46",
|
1829
|
+
900: "#064e3b",
|
1830
|
+
950: "#022c22"
|
1831
|
+
},
|
1832
|
+
teal: {
|
1833
|
+
50: "#f0fdfa",
|
1834
|
+
100: "#ccfbf1",
|
1835
|
+
200: "#99f6e4",
|
1836
|
+
300: "#5eead4",
|
1837
|
+
400: "#2dd4bf",
|
1838
|
+
500: "#14b8a6",
|
1839
|
+
600: "#0d9488",
|
1840
|
+
700: "#0f766e",
|
1841
|
+
800: "#115e59",
|
1842
|
+
900: "#134e4a",
|
1843
|
+
950: "#042f2e"
|
1844
|
+
},
|
1845
|
+
cyan: {
|
1846
|
+
50: "#ecfeff",
|
1847
|
+
100: "#cffafe",
|
1848
|
+
200: "#a5f3fc",
|
1849
|
+
300: "#67e8f9",
|
1850
|
+
400: "#22d3ee",
|
1851
|
+
500: "#06b6d4",
|
1852
|
+
600: "#0891b2",
|
1853
|
+
700: "#0e7490",
|
1854
|
+
800: "#155e75",
|
1855
|
+
900: "#164e63",
|
1856
|
+
950: "#083344"
|
1857
|
+
},
|
1858
|
+
sky: {
|
1859
|
+
50: "#f0f9ff",
|
1860
|
+
100: "#e0f2fe",
|
1861
|
+
200: "#bae6fd",
|
1862
|
+
300: "#7dd3fc",
|
1863
|
+
400: "#38bdf8",
|
1864
|
+
500: "#0ea5e9",
|
1865
|
+
600: "#0284c7",
|
1866
|
+
700: "#0369a1",
|
1867
|
+
800: "#075985",
|
1868
|
+
900: "#0c4a6e",
|
1869
|
+
950: "#082f49"
|
1870
|
+
},
|
1871
|
+
blue: {
|
1872
|
+
50: "#eff6ff",
|
1873
|
+
100: "#dbeafe",
|
1874
|
+
200: "#bfdbfe",
|
1875
|
+
300: "#93c5fd",
|
1876
|
+
400: "#60a5fa",
|
1877
|
+
500: "#3b82f6",
|
1878
|
+
600: "#2563eb",
|
1879
|
+
700: "#1d4ed8",
|
1880
|
+
800: "#1e40af",
|
1881
|
+
900: "#1e3a8a",
|
1882
|
+
950: "#172554"
|
1883
|
+
},
|
1884
|
+
indigo: {
|
1885
|
+
50: "#eef2ff",
|
1886
|
+
100: "#e0e7ff",
|
1887
|
+
200: "#c7d2fe",
|
1888
|
+
300: "#a5b4fc",
|
1889
|
+
400: "#818cf8",
|
1890
|
+
500: "#6366f1",
|
1891
|
+
600: "#4f46e5",
|
1892
|
+
700: "#4338ca",
|
1893
|
+
800: "#3730a3",
|
1894
|
+
900: "#312e81",
|
1895
|
+
950: "#1e1b4b"
|
1896
|
+
},
|
1897
|
+
violet: {
|
1898
|
+
50: "#f5f3ff",
|
1899
|
+
100: "#ede9fe",
|
1900
|
+
200: "#ddd6fe",
|
1901
|
+
300: "#c4b5fd",
|
1902
|
+
400: "#a78bfa",
|
1903
|
+
500: "#8b5cf6",
|
1904
|
+
600: "#7c3aed",
|
1905
|
+
700: "#6d28d9",
|
1906
|
+
800: "#5b21b6",
|
1907
|
+
900: "#4c1d95",
|
1908
|
+
950: "#2e1065"
|
1909
|
+
},
|
1910
|
+
purple: {
|
1911
|
+
50: "#faf5ff",
|
1912
|
+
100: "#f3e8ff",
|
1913
|
+
200: "#e9d5ff",
|
1914
|
+
300: "#d8b4fe",
|
1915
|
+
400: "#c084fc",
|
1916
|
+
500: "#a855f7",
|
1917
|
+
600: "#9333ea",
|
1918
|
+
700: "#7e22ce",
|
1919
|
+
800: "#6b21a8",
|
1920
|
+
900: "#581c87",
|
1921
|
+
950: "#3b0764"
|
1922
|
+
},
|
1923
|
+
fuchsia: {
|
1924
|
+
50: "#fdf4ff",
|
1925
|
+
100: "#fae8ff",
|
1926
|
+
200: "#f5d0fe",
|
1927
|
+
300: "#f0abfc",
|
1928
|
+
400: "#e879f9",
|
1929
|
+
500: "#d946ef",
|
1930
|
+
600: "#c026d3",
|
1931
|
+
700: "#a21caf",
|
1932
|
+
800: "#86198f",
|
1933
|
+
900: "#701a75",
|
1934
|
+
950: "#4a044e"
|
1935
|
+
},
|
1936
|
+
pink: {
|
1937
|
+
50: "#fdf2f8",
|
1938
|
+
100: "#fce7f3",
|
1939
|
+
200: "#fbcfe8",
|
1940
|
+
300: "#f9a8d4",
|
1941
|
+
400: "#f472b6",
|
1942
|
+
500: "#ec4899",
|
1943
|
+
600: "#db2777",
|
1944
|
+
700: "#be185d",
|
1945
|
+
800: "#9d174d",
|
1946
|
+
900: "#831843",
|
1947
|
+
950: "#500724"
|
1948
|
+
},
|
1949
|
+
rose: {
|
1950
|
+
50: "#fff1f2",
|
1951
|
+
100: "#ffe4e6",
|
1952
|
+
200: "#fecdd3",
|
1953
|
+
300: "#fda4af",
|
1954
|
+
400: "#fb7185",
|
1955
|
+
500: "#f43f5e",
|
1956
|
+
600: "#e11d48",
|
1957
|
+
700: "#be123c",
|
1958
|
+
800: "#9f1239",
|
1959
|
+
900: "#881337",
|
1960
|
+
950: "#4c0519"
|
1961
|
+
},
|
1962
|
+
get lightBlue() {
|
1963
|
+
warn({
|
1964
|
+
version: "v2.2",
|
1965
|
+
from: "lightBlue",
|
1966
|
+
to: "sky"
|
1967
|
+
});
|
1968
|
+
return this.sky;
|
1969
|
+
},
|
1970
|
+
get warmGray() {
|
1971
|
+
warn({
|
1972
|
+
version: "v3.0",
|
1973
|
+
from: "warmGray",
|
1974
|
+
to: "stone"
|
1975
|
+
});
|
1976
|
+
return this.stone;
|
1977
|
+
},
|
1978
|
+
get trueGray() {
|
1979
|
+
warn({
|
1980
|
+
version: "v3.0",
|
1981
|
+
from: "trueGray",
|
1982
|
+
to: "neutral"
|
1983
|
+
});
|
1984
|
+
return this.neutral;
|
1985
|
+
},
|
1986
|
+
get coolGray() {
|
1987
|
+
warn({
|
1988
|
+
version: "v3.0",
|
1989
|
+
from: "coolGray",
|
1990
|
+
to: "gray"
|
1991
|
+
});
|
1992
|
+
return this.gray;
|
1993
|
+
},
|
1994
|
+
get blueGray() {
|
1995
|
+
warn({
|
1996
|
+
version: "v3.0",
|
1997
|
+
from: "blueGray",
|
1998
|
+
to: "slate"
|
1999
|
+
});
|
2000
|
+
return this.slate;
|
2001
|
+
}
|
2002
|
+
};
|
2003
|
+
}
|
2004
|
+
});
|
2005
|
+
|
2006
|
+
// node_modules/tailwindcss/colors.js
|
2007
|
+
var require_colors2 = __commonJS({
|
2008
|
+
"node_modules/tailwindcss/colors.js"(exports2, module2) {
|
2009
|
+
var colors2 = require_colors();
|
2010
|
+
module2.exports = (colors2.__esModule ? colors2 : { default: colors2 }).default;
|
2011
|
+
}
|
2012
|
+
});
|
2013
|
+
|
2014
|
+
// node_modules/@tailwindcss/forms/src/index.js
|
2015
|
+
var require_src = __commonJS({
|
2016
|
+
"node_modules/@tailwindcss/forms/src/index.js"(exports2, module2) {
|
2017
|
+
var svgToDataUri = require_mini_svg_data_uri();
|
2018
|
+
var plugin = require_plugin();
|
2019
|
+
var defaultTheme2 = require_defaultTheme();
|
2020
|
+
var colors2 = require_colors2();
|
2021
|
+
var [baseFontSize, { lineHeight: baseLineHeight }] = defaultTheme2.fontSize.base;
|
2022
|
+
var { spacing, borderWidth, borderRadius } = defaultTheme2;
|
2023
|
+
function resolveColor(color, opacityVariableName) {
|
2024
|
+
return color.replace("<alpha-value>", `var(${opacityVariableName}, 1)`);
|
2025
|
+
}
|
2026
|
+
var forms = plugin.withOptions(function(options = { strategy: void 0 }) {
|
2027
|
+
return function({ addBase, addComponents, theme }) {
|
2028
|
+
const strategy = options.strategy === void 0 ? ["base", "class"] : [options.strategy];
|
2029
|
+
const rules = [
|
2030
|
+
{
|
2031
|
+
base: [
|
2032
|
+
"[type='text']",
|
2033
|
+
"input:where(:not([type]))",
|
2034
|
+
"[type='email']",
|
2035
|
+
"[type='url']",
|
2036
|
+
"[type='password']",
|
2037
|
+
"[type='number']",
|
2038
|
+
"[type='date']",
|
2039
|
+
"[type='datetime-local']",
|
2040
|
+
"[type='month']",
|
2041
|
+
"[type='search']",
|
2042
|
+
"[type='tel']",
|
2043
|
+
"[type='time']",
|
2044
|
+
"[type='week']",
|
2045
|
+
"[multiple]",
|
2046
|
+
"textarea",
|
2047
|
+
"select"
|
2048
|
+
],
|
2049
|
+
class: [".form-input", ".form-textarea", ".form-select", ".form-multiselect"],
|
2050
|
+
styles: {
|
2051
|
+
appearance: "none",
|
2052
|
+
"background-color": "#fff",
|
2053
|
+
"border-color": resolveColor(
|
2054
|
+
theme("colors.gray.500", colors2.gray[500]),
|
2055
|
+
"--tw-border-opacity"
|
2056
|
+
),
|
2057
|
+
"border-width": borderWidth["DEFAULT"],
|
2058
|
+
"border-radius": borderRadius.none,
|
2059
|
+
"padding-top": spacing[2],
|
2060
|
+
"padding-right": spacing[3],
|
2061
|
+
"padding-bottom": spacing[2],
|
2062
|
+
"padding-left": spacing[3],
|
2063
|
+
"font-size": baseFontSize,
|
2064
|
+
"line-height": baseLineHeight,
|
2065
|
+
"--tw-shadow": "0 0 #0000",
|
2066
|
+
"&:focus": {
|
2067
|
+
outline: "2px solid transparent",
|
2068
|
+
"outline-offset": "2px",
|
2069
|
+
"--tw-ring-inset": "var(--tw-empty,/*!*/ /*!*/)",
|
2070
|
+
"--tw-ring-offset-width": "0px",
|
2071
|
+
"--tw-ring-offset-color": "#fff",
|
2072
|
+
"--tw-ring-color": resolveColor(
|
2073
|
+
theme("colors.blue.600", colors2.blue[600]),
|
2074
|
+
"--tw-ring-opacity"
|
2075
|
+
),
|
2076
|
+
"--tw-ring-offset-shadow": `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`,
|
2077
|
+
"--tw-ring-shadow": `var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)`,
|
2078
|
+
"box-shadow": `var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)`,
|
2079
|
+
"border-color": resolveColor(
|
2080
|
+
theme("colors.blue.600", colors2.blue[600]),
|
2081
|
+
"--tw-border-opacity"
|
2082
|
+
)
|
2083
|
+
}
|
2084
|
+
}
|
2085
|
+
},
|
2086
|
+
{
|
2087
|
+
base: ["input::placeholder", "textarea::placeholder"],
|
2088
|
+
class: [".form-input::placeholder", ".form-textarea::placeholder"],
|
2089
|
+
styles: {
|
2090
|
+
color: resolveColor(theme("colors.gray.500", colors2.gray[500]), "--tw-text-opacity"),
|
2091
|
+
opacity: "1"
|
2092
|
+
}
|
2093
|
+
},
|
2094
|
+
{
|
2095
|
+
base: ["::-webkit-datetime-edit-fields-wrapper"],
|
2096
|
+
class: [".form-input::-webkit-datetime-edit-fields-wrapper"],
|
2097
|
+
styles: {
|
2098
|
+
padding: "0"
|
2099
|
+
}
|
2100
|
+
},
|
2101
|
+
{
|
2102
|
+
// Unfortunate hack until https://bugs.webkit.org/show_bug.cgi?id=198959 is fixed.
|
2103
|
+
// This sucks because users can't change line-height with a utility on date inputs now.
|
2104
|
+
// Reference: https://github.com/twbs/bootstrap/pull/31993
|
2105
|
+
base: ["::-webkit-date-and-time-value"],
|
2106
|
+
class: [".form-input::-webkit-date-and-time-value"],
|
2107
|
+
styles: {
|
2108
|
+
"min-height": "1.5em"
|
2109
|
+
}
|
2110
|
+
},
|
2111
|
+
{
|
2112
|
+
// In Safari on iOS date and time inputs are centered instead of left-aligned and can't be
|
2113
|
+
// changed with `text-align` utilities on the input by default. Resetting this to `inherit`
|
2114
|
+
// makes them left-aligned by default and makes it possible to override the alignment with
|
2115
|
+
// utility classes without using an arbitrary variant to target the pseudo-elements.
|
2116
|
+
base: ["::-webkit-date-and-time-value"],
|
2117
|
+
class: [".form-input::-webkit-date-and-time-value"],
|
2118
|
+
styles: {
|
2119
|
+
"text-align": "inherit"
|
2120
|
+
}
|
2121
|
+
},
|
2122
|
+
{
|
2123
|
+
// In Safari on macOS date time inputs that are set to `display: block` have unexpected
|
2124
|
+
// extra bottom spacing. This can be corrected by setting the `::-webkit-datetime-edit`
|
2125
|
+
// pseudo-element to `display: inline-flex`, instead of the browser default of
|
2126
|
+
// `display: inline-block`.
|
2127
|
+
base: ["::-webkit-datetime-edit"],
|
2128
|
+
class: [".form-input::-webkit-datetime-edit"],
|
2129
|
+
styles: {
|
2130
|
+
display: "inline-flex"
|
2131
|
+
}
|
2132
|
+
},
|
2133
|
+
{
|
2134
|
+
// In Safari on macOS date time inputs are 4px taller than normal inputs
|
2135
|
+
// This is because there is extra padding on the datetime-edit and datetime-edit-{part}-field pseudo elements
|
2136
|
+
// See https://github.com/tailwindlabs/tailwindcss-forms/issues/95
|
2137
|
+
base: [
|
2138
|
+
"::-webkit-datetime-edit",
|
2139
|
+
"::-webkit-datetime-edit-year-field",
|
2140
|
+
"::-webkit-datetime-edit-month-field",
|
2141
|
+
"::-webkit-datetime-edit-day-field",
|
2142
|
+
"::-webkit-datetime-edit-hour-field",
|
2143
|
+
"::-webkit-datetime-edit-minute-field",
|
2144
|
+
"::-webkit-datetime-edit-second-field",
|
2145
|
+
"::-webkit-datetime-edit-millisecond-field",
|
2146
|
+
"::-webkit-datetime-edit-meridiem-field"
|
2147
|
+
],
|
2148
|
+
class: [
|
2149
|
+
".form-input::-webkit-datetime-edit",
|
2150
|
+
".form-input::-webkit-datetime-edit-year-field",
|
2151
|
+
".form-input::-webkit-datetime-edit-month-field",
|
2152
|
+
".form-input::-webkit-datetime-edit-day-field",
|
2153
|
+
".form-input::-webkit-datetime-edit-hour-field",
|
2154
|
+
".form-input::-webkit-datetime-edit-minute-field",
|
2155
|
+
".form-input::-webkit-datetime-edit-second-field",
|
2156
|
+
".form-input::-webkit-datetime-edit-millisecond-field",
|
2157
|
+
".form-input::-webkit-datetime-edit-meridiem-field"
|
2158
|
+
],
|
2159
|
+
styles: {
|
2160
|
+
"padding-top": 0,
|
2161
|
+
"padding-bottom": 0
|
2162
|
+
}
|
2163
|
+
},
|
2164
|
+
{
|
2165
|
+
base: ["select"],
|
2166
|
+
class: [".form-select"],
|
2167
|
+
styles: {
|
2168
|
+
"background-image": `url("${svgToDataUri(
|
2169
|
+
`<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="${resolveColor(
|
2170
|
+
theme("colors.gray.500", colors2.gray[500]),
|
2171
|
+
"--tw-stroke-opacity"
|
2172
|
+
)}" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M6 8l4 4 4-4"/></svg>`
|
2173
|
+
)}")`,
|
2174
|
+
"background-position": `right ${spacing[2]} center`,
|
2175
|
+
"background-repeat": `no-repeat`,
|
2176
|
+
"background-size": `1.5em 1.5em`,
|
2177
|
+
"padding-right": spacing[10],
|
2178
|
+
"print-color-adjust": `exact`
|
2179
|
+
}
|
2180
|
+
},
|
2181
|
+
{
|
2182
|
+
base: ["[multiple]", '[size]:where(select:not([size="1"]))'],
|
2183
|
+
class: ['.form-select:where([size]:not([size="1"]))'],
|
2184
|
+
styles: {
|
2185
|
+
"background-image": "initial",
|
2186
|
+
"background-position": "initial",
|
2187
|
+
"background-repeat": "unset",
|
2188
|
+
"background-size": "initial",
|
2189
|
+
"padding-right": spacing[3],
|
2190
|
+
"print-color-adjust": "unset"
|
2191
|
+
}
|
2192
|
+
},
|
2193
|
+
{
|
2194
|
+
base: [`[type='checkbox']`, `[type='radio']`],
|
2195
|
+
class: [".form-checkbox", ".form-radio"],
|
2196
|
+
styles: {
|
2197
|
+
appearance: "none",
|
2198
|
+
padding: "0",
|
2199
|
+
"print-color-adjust": "exact",
|
2200
|
+
display: "inline-block",
|
2201
|
+
"vertical-align": "middle",
|
2202
|
+
"background-origin": "border-box",
|
2203
|
+
"user-select": "none",
|
2204
|
+
"flex-shrink": "0",
|
2205
|
+
height: spacing[4],
|
2206
|
+
width: spacing[4],
|
2207
|
+
color: resolveColor(theme("colors.blue.600", colors2.blue[600]), "--tw-text-opacity"),
|
2208
|
+
"background-color": "#fff",
|
2209
|
+
"border-color": resolveColor(
|
2210
|
+
theme("colors.gray.500", colors2.gray[500]),
|
2211
|
+
"--tw-border-opacity"
|
2212
|
+
),
|
2213
|
+
"border-width": borderWidth["DEFAULT"],
|
2214
|
+
"--tw-shadow": "0 0 #0000"
|
2215
|
+
}
|
2216
|
+
},
|
2217
|
+
{
|
2218
|
+
base: [`[type='checkbox']`],
|
2219
|
+
class: [".form-checkbox"],
|
2220
|
+
styles: {
|
2221
|
+
"border-radius": borderRadius["none"]
|
2222
|
+
}
|
2223
|
+
},
|
2224
|
+
{
|
2225
|
+
base: [`[type='radio']`],
|
2226
|
+
class: [".form-radio"],
|
2227
|
+
styles: {
|
2228
|
+
"border-radius": "100%"
|
2229
|
+
}
|
2230
|
+
},
|
2231
|
+
{
|
2232
|
+
base: [`[type='checkbox']:focus`, `[type='radio']:focus`],
|
2233
|
+
class: [".form-checkbox:focus", ".form-radio:focus"],
|
2234
|
+
styles: {
|
2235
|
+
outline: "2px solid transparent",
|
2236
|
+
"outline-offset": "2px",
|
2237
|
+
"--tw-ring-inset": "var(--tw-empty,/*!*/ /*!*/)",
|
2238
|
+
"--tw-ring-offset-width": "2px",
|
2239
|
+
"--tw-ring-offset-color": "#fff",
|
2240
|
+
"--tw-ring-color": resolveColor(
|
2241
|
+
theme("colors.blue.600", colors2.blue[600]),
|
2242
|
+
"--tw-ring-opacity"
|
2243
|
+
),
|
2244
|
+
"--tw-ring-offset-shadow": `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`,
|
2245
|
+
"--tw-ring-shadow": `var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)`,
|
2246
|
+
"box-shadow": `var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)`
|
2247
|
+
}
|
2248
|
+
},
|
2249
|
+
{
|
2250
|
+
base: [`[type='checkbox']:checked`, `[type='radio']:checked`],
|
2251
|
+
class: [".form-checkbox:checked", ".form-radio:checked"],
|
2252
|
+
styles: {
|
2253
|
+
"border-color": `transparent`,
|
2254
|
+
"background-color": `currentColor`,
|
2255
|
+
"background-size": `100% 100%`,
|
2256
|
+
"background-position": `center`,
|
2257
|
+
"background-repeat": `no-repeat`
|
2258
|
+
}
|
2259
|
+
},
|
2260
|
+
{
|
2261
|
+
base: [`[type='checkbox']:checked`],
|
2262
|
+
class: [".form-checkbox:checked"],
|
2263
|
+
styles: {
|
2264
|
+
"background-image": `url("${svgToDataUri(
|
2265
|
+
`<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z"/></svg>`
|
2266
|
+
)}")`,
|
2267
|
+
"@media (forced-colors: active) ": {
|
2268
|
+
appearance: "auto"
|
2269
|
+
}
|
2270
|
+
}
|
2271
|
+
},
|
2272
|
+
{
|
2273
|
+
base: [`[type='radio']:checked`],
|
2274
|
+
class: [".form-radio:checked"],
|
2275
|
+
styles: {
|
2276
|
+
"background-image": `url("${svgToDataUri(
|
2277
|
+
`<svg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="3"/></svg>`
|
2278
|
+
)}")`,
|
2279
|
+
"@media (forced-colors: active) ": {
|
2280
|
+
appearance: "auto"
|
2281
|
+
}
|
2282
|
+
}
|
2283
|
+
},
|
2284
|
+
{
|
2285
|
+
base: [
|
2286
|
+
`[type='checkbox']:checked:hover`,
|
2287
|
+
`[type='checkbox']:checked:focus`,
|
2288
|
+
`[type='radio']:checked:hover`,
|
2289
|
+
`[type='radio']:checked:focus`
|
2290
|
+
],
|
2291
|
+
class: [
|
2292
|
+
".form-checkbox:checked:hover",
|
2293
|
+
".form-checkbox:checked:focus",
|
2294
|
+
".form-radio:checked:hover",
|
2295
|
+
".form-radio:checked:focus"
|
2296
|
+
],
|
2297
|
+
styles: {
|
2298
|
+
"border-color": "transparent",
|
2299
|
+
"background-color": "currentColor"
|
2300
|
+
}
|
2301
|
+
},
|
2302
|
+
{
|
2303
|
+
base: [`[type='checkbox']:indeterminate`],
|
2304
|
+
class: [".form-checkbox:indeterminate"],
|
2305
|
+
styles: {
|
2306
|
+
"background-image": `url("${svgToDataUri(
|
2307
|
+
`<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16"><path stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8h8"/></svg>`
|
2308
|
+
)}")`,
|
2309
|
+
"border-color": `transparent`,
|
2310
|
+
"background-color": `currentColor`,
|
2311
|
+
"background-size": `100% 100%`,
|
2312
|
+
"background-position": `center`,
|
2313
|
+
"background-repeat": `no-repeat`,
|
2314
|
+
"@media (forced-colors: active) ": {
|
2315
|
+
appearance: "auto"
|
2316
|
+
}
|
2317
|
+
}
|
2318
|
+
},
|
2319
|
+
{
|
2320
|
+
base: [`[type='checkbox']:indeterminate:hover`, `[type='checkbox']:indeterminate:focus`],
|
2321
|
+
class: [".form-checkbox:indeterminate:hover", ".form-checkbox:indeterminate:focus"],
|
2322
|
+
styles: {
|
2323
|
+
"border-color": "transparent",
|
2324
|
+
"background-color": "currentColor"
|
2325
|
+
}
|
2326
|
+
},
|
2327
|
+
{
|
2328
|
+
base: [`[type='file']`],
|
2329
|
+
class: null,
|
2330
|
+
styles: {
|
2331
|
+
background: "unset",
|
2332
|
+
"border-color": "inherit",
|
2333
|
+
"border-width": "0",
|
2334
|
+
"border-radius": "0",
|
2335
|
+
padding: "0",
|
2336
|
+
"font-size": "unset",
|
2337
|
+
"line-height": "inherit"
|
2338
|
+
}
|
2339
|
+
},
|
2340
|
+
{
|
2341
|
+
base: [`[type='file']:focus`],
|
2342
|
+
class: null,
|
2343
|
+
styles: {
|
2344
|
+
outline: [`1px solid ButtonText`, `1px auto -webkit-focus-ring-color`]
|
2345
|
+
}
|
2346
|
+
}
|
2347
|
+
];
|
2348
|
+
const getStrategyRules = (strategy2) => rules.map((rule) => {
|
2349
|
+
if (rule[strategy2] === null)
|
2350
|
+
return null;
|
2351
|
+
return { [rule[strategy2]]: rule.styles };
|
2352
|
+
}).filter(Boolean);
|
2353
|
+
if (strategy.includes("base")) {
|
2354
|
+
addBase(getStrategyRules("base"));
|
2355
|
+
}
|
2356
|
+
if (strategy.includes("class")) {
|
2357
|
+
addComponents(getStrategyRules("class"));
|
2358
|
+
}
|
2359
|
+
};
|
2360
|
+
});
|
2361
|
+
module2.exports = forms;
|
2362
|
+
}
|
2363
|
+
});
|
2364
|
+
|
2365
|
+
// node_modules/@tailwindcss/container-queries/dist/index.js
|
2366
|
+
var require_dist = __commonJS({
|
2367
|
+
"node_modules/@tailwindcss/container-queries/dist/index.js"(exports2, module2) {
|
2368
|
+
"use strict";
|
2369
|
+
var _plugin = /* @__PURE__ */ _interopRequireDefault(require_plugin());
|
2370
|
+
function _interopRequireDefault(obj) {
|
2371
|
+
return obj && obj.__esModule ? obj : {
|
2372
|
+
default: obj
|
2373
|
+
};
|
2374
|
+
}
|
2375
|
+
module2.exports = (0, _plugin.default)(function containerQueries(param) {
|
2376
|
+
var matchUtilities = param.matchUtilities, matchVariant = param.matchVariant, theme = param.theme;
|
2377
|
+
var parseValue = function parseValue2(value) {
|
2378
|
+
var _value_match;
|
2379
|
+
var _value_match_;
|
2380
|
+
var numericValue = (_value_match_ = (_value_match = value.match(/^(\d+\.\d+|\d+|\.\d+)\D+/)) === null || _value_match === void 0 ? void 0 : _value_match[1]) !== null && _value_match_ !== void 0 ? _value_match_ : null;
|
2381
|
+
if (numericValue === null)
|
2382
|
+
return null;
|
2383
|
+
return parseFloat(value);
|
2384
|
+
};
|
2385
|
+
var _theme;
|
2386
|
+
var values = (_theme = theme("containers")) !== null && _theme !== void 0 ? _theme : {};
|
2387
|
+
matchUtilities({
|
2388
|
+
"@container": function(value, param2) {
|
2389
|
+
var modifier = param2.modifier;
|
2390
|
+
return {
|
2391
|
+
"container-type": value,
|
2392
|
+
"container-name": modifier
|
2393
|
+
};
|
2394
|
+
}
|
2395
|
+
}, {
|
2396
|
+
values: {
|
2397
|
+
DEFAULT: "inline-size",
|
2398
|
+
normal: "normal"
|
2399
|
+
},
|
2400
|
+
modifiers: "any"
|
2401
|
+
});
|
2402
|
+
matchVariant("@", function() {
|
2403
|
+
var value = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "", modifier = (arguments.length > 1 ? arguments[1] : void 0).modifier;
|
2404
|
+
var parsed = parseValue(value);
|
2405
|
+
return parsed !== null ? "@container ".concat(modifier !== null && modifier !== void 0 ? modifier : "", " (min-width: ").concat(value, ")") : [];
|
2406
|
+
}, {
|
2407
|
+
values,
|
2408
|
+
sort: function sort(aVariant, zVariant) {
|
2409
|
+
var a = parseFloat(aVariant.value);
|
2410
|
+
var z = parseFloat(zVariant.value);
|
2411
|
+
if (a === null || z === null)
|
2412
|
+
return 0;
|
2413
|
+
if (a - z !== 0)
|
2414
|
+
return a - z;
|
2415
|
+
var _aVariant_modifier;
|
2416
|
+
var aLabel = (_aVariant_modifier = aVariant.modifier) !== null && _aVariant_modifier !== void 0 ? _aVariant_modifier : "";
|
2417
|
+
var _zVariant_modifier;
|
2418
|
+
var zLabel = (_zVariant_modifier = zVariant.modifier) !== null && _zVariant_modifier !== void 0 ? _zVariant_modifier : "";
|
2419
|
+
if (aLabel === "" && zLabel !== "") {
|
2420
|
+
return 1;
|
2421
|
+
} else if (aLabel !== "" && zLabel === "") {
|
2422
|
+
return -1;
|
2423
|
+
}
|
2424
|
+
return aLabel.localeCompare(zLabel, "en", {
|
2425
|
+
numeric: true
|
2426
|
+
});
|
2427
|
+
}
|
2428
|
+
});
|
2429
|
+
}, {
|
2430
|
+
theme: {
|
2431
|
+
containers: {
|
2432
|
+
xs: "20rem",
|
2433
|
+
sm: "24rem",
|
2434
|
+
md: "28rem",
|
2435
|
+
lg: "32rem",
|
2436
|
+
xl: "36rem",
|
2437
|
+
"2xl": "42rem",
|
2438
|
+
"3xl": "48rem",
|
2439
|
+
"4xl": "56rem",
|
2440
|
+
"5xl": "64rem",
|
2441
|
+
"6xl": "72rem",
|
2442
|
+
"7xl": "80rem"
|
2443
|
+
}
|
2444
|
+
}
|
2445
|
+
});
|
2446
|
+
}
|
2447
|
+
});
|
2448
|
+
|
2449
|
+
// app/assets/css/plugins/colors.js
|
2450
|
+
var require_colors3 = __commonJS({
|
2451
|
+
"app/assets/css/plugins/colors.js"(exports2, module2) {
|
2452
|
+
var plugin = require_plugin();
|
2453
|
+
module2.exports = plugin(function({ addUtilities }) {
|
2454
|
+
addUtilities({
|
2455
|
+
".bg-gray-blend-50": {
|
2456
|
+
"@apply bg-gray-transparent-50": {},
|
2457
|
+
"background-blend-mode": "hard-light"
|
2458
|
+
},
|
2459
|
+
".bg-gray-blend-100": {
|
2460
|
+
"@apply bg-gray-transparent-100": {},
|
2461
|
+
"background-blend-mode": "hard-light"
|
2462
|
+
},
|
2463
|
+
".bg-gray-blend-200": {
|
2464
|
+
"@apply bg-gray-transparent-200": {},
|
2465
|
+
"background-blend-mode": "hard-light"
|
2466
|
+
},
|
2467
|
+
".border-gray-blend-50": {
|
2468
|
+
"@apply border-gray-transparent-50": {},
|
2469
|
+
"background-blend-mode": "hard-light"
|
2470
|
+
},
|
2471
|
+
".border-gray-blend-100": {
|
2472
|
+
"@apply border-gray-transparent-100": {},
|
2473
|
+
"background-blend-mode": "hard-light"
|
2474
|
+
},
|
2475
|
+
".border-gray-blend-200": {
|
2476
|
+
"@apply border-gray-transparent-200": {},
|
2477
|
+
"background-blend-mode": "hard-light"
|
2478
|
+
}
|
2479
|
+
});
|
2480
|
+
});
|
2481
|
+
}
|
2482
|
+
});
|
2483
|
+
|
2484
|
+
// app/assets/css/plugins/icons.js
|
2485
|
+
var require_icons = __commonJS({
|
2486
|
+
"app/assets/css/plugins/icons.js"(exports2, module2) {
|
2487
|
+
var plugin = require_plugin();
|
2488
|
+
module2.exports = plugin(function({ addUtilities }) {
|
2489
|
+
addUtilities({
|
2490
|
+
".icon": {},
|
2491
|
+
".icon-stroke": {
|
2492
|
+
"@apply fill-none stroke-2 stroke-current text-current": {},
|
2493
|
+
"stroke-linecap": "round",
|
2494
|
+
"stroke-linejoin": "round"
|
2495
|
+
},
|
2496
|
+
".icon-fill": {
|
2497
|
+
"@apply fill-current text-current": {},
|
2498
|
+
"stroke-linecap": "round",
|
2499
|
+
"stroke-linejoin": "round"
|
2500
|
+
}
|
2501
|
+
});
|
2502
|
+
});
|
2503
|
+
}
|
2504
|
+
});
|
2505
|
+
|
2506
|
+
// app/assets/css/plugins/layout.js
|
2507
|
+
var require_layout = __commonJS({
|
2508
|
+
"app/assets/css/plugins/layout.js"(exports2, module2) {
|
2509
|
+
var plugin = require_plugin();
|
2510
|
+
module2.exports = plugin(function({ addUtilities }) {
|
2511
|
+
addUtilities({
|
2512
|
+
".pl-app": {
|
2513
|
+
"@apply pl-3 sm:pl-6 md:pl-8 lg:pl-10 xl:pl-11": {}
|
2514
|
+
},
|
2515
|
+
".pr-app": {
|
2516
|
+
"@apply pr-3 sm:pr-6 md:pr-8 lg:pr-10 xl:pr-11": {}
|
2517
|
+
},
|
2518
|
+
".px-app": {
|
2519
|
+
"@apply pl-app pr-app": {}
|
2520
|
+
}
|
2521
|
+
});
|
2522
|
+
});
|
2523
|
+
}
|
2524
|
+
});
|
2525
|
+
|
2526
|
+
// app/assets/css/plugins/text.js
|
2527
|
+
var require_text = __commonJS({
|
2528
|
+
"app/assets/css/plugins/text.js"(exports2, module2) {
|
2529
|
+
var plugin = require_plugin();
|
2530
|
+
module2.exports = plugin(function({ addUtilities }) {
|
2531
|
+
addUtilities({
|
2532
|
+
".para-lg, .para-md, .para-sm, .para-xs": {
|
2533
|
+
"@apply font-body": {}
|
2534
|
+
},
|
2535
|
+
".para-lg": {
|
2536
|
+
"@apply text-para-lg": {}
|
2537
|
+
},
|
2538
|
+
".para-md": {
|
2539
|
+
"@apply text-para-md": {}
|
2540
|
+
},
|
2541
|
+
".para-sm": {
|
2542
|
+
"@apply text-para-sm": {}
|
2543
|
+
},
|
2544
|
+
".para-xs": {
|
2545
|
+
"@apply text-para-xs": {}
|
2546
|
+
},
|
2547
|
+
/* labels */
|
2548
|
+
".label-lg, .label-md, .label-sm, .label-xs, .label-xxs": {
|
2549
|
+
"@apply font-body font-semibold": {}
|
2550
|
+
},
|
2551
|
+
".label-lg": {
|
2552
|
+
"@apply text-label-lg": {}
|
2553
|
+
},
|
2554
|
+
".label-md": {
|
2555
|
+
"@apply text-label-md": {}
|
2556
|
+
},
|
2557
|
+
".label-sm": {
|
2558
|
+
"@apply text-label-sm": {}
|
2559
|
+
},
|
2560
|
+
".label-xs": {
|
2561
|
+
"@apply text-label-xs": {}
|
2562
|
+
},
|
2563
|
+
".label-xxs": {
|
2564
|
+
"@apply text-label-xxs": {}
|
2565
|
+
},
|
2566
|
+
/* standard subheadings */
|
2567
|
+
".subheading-1, .subheading-2, .subheading-3, .subheading-4": {
|
2568
|
+
"@apply font-body font-[500]": {}
|
2569
|
+
},
|
2570
|
+
".subheading-1": {
|
2571
|
+
"@apply text-subheading-1": {}
|
2572
|
+
},
|
2573
|
+
".subheading-2": {
|
2574
|
+
"@apply text-subheading-2": {}
|
2575
|
+
},
|
2576
|
+
".subheading-3": {
|
2577
|
+
"@apply text-subheading-3": {}
|
2578
|
+
},
|
2579
|
+
".subheading-4": {
|
2580
|
+
"@apply text-subheading-4": {}
|
2581
|
+
},
|
2582
|
+
/* standard headings */
|
2583
|
+
".heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6": {
|
2584
|
+
"@apply font-body font-bold": {}
|
2585
|
+
},
|
2586
|
+
".heading-1": {
|
2587
|
+
"@apply text-heading-1": {}
|
2588
|
+
},
|
2589
|
+
".heading-2": {
|
2590
|
+
"@apply text-heading-2": {}
|
2591
|
+
},
|
2592
|
+
".heading-3": {
|
2593
|
+
"@apply text-heading-3": {}
|
2594
|
+
},
|
2595
|
+
".heading-4": {
|
2596
|
+
"@apply text-heading-4": {}
|
2597
|
+
},
|
2598
|
+
".heading-5": {
|
2599
|
+
"@apply text-heading-5": {}
|
2600
|
+
},
|
2601
|
+
".heading-6": {
|
2602
|
+
"@apply text-heading-6": {}
|
2603
|
+
},
|
2604
|
+
/* display headings */
|
2605
|
+
".display-1, .display-2, .display-3, .display-4": {
|
2606
|
+
"@apply font-display font-bold": {}
|
2607
|
+
},
|
2608
|
+
".display-1": {
|
2609
|
+
"@apply text-display-1": {}
|
2610
|
+
},
|
2611
|
+
".display-2": {
|
2612
|
+
"@apply text-display-2": {}
|
2613
|
+
},
|
2614
|
+
".display-3": {
|
2615
|
+
"@apply text-display-3": {}
|
2616
|
+
},
|
2617
|
+
".display-4": {
|
2618
|
+
"@apply text-display-4": {}
|
2619
|
+
},
|
2620
|
+
/* branded headings */
|
2621
|
+
".branded-heading-1, .branded-heading-2, .branded-heading-3, .branded-heading-4, .branded-heading-5, .branded-heading-6": {
|
2622
|
+
"@apply font-branded font-bold": {}
|
2623
|
+
},
|
2624
|
+
".branded-heading-1": {
|
2625
|
+
"@apply text-heading-1": {}
|
2626
|
+
},
|
2627
|
+
".branded-heading-2": {
|
2628
|
+
"@apply text-heading-2": {}
|
2629
|
+
},
|
2630
|
+
".branded-heading-3": {
|
2631
|
+
"@apply text-heading-3": {}
|
2632
|
+
},
|
2633
|
+
".branded-heading-4": {
|
2634
|
+
"@apply text-heading-4": {}
|
2635
|
+
},
|
2636
|
+
".branded-heading-5": {
|
2637
|
+
"@apply text-heading-5": {}
|
2638
|
+
},
|
2639
|
+
".branded-heading-6": {
|
2640
|
+
"@apply text-heading-6": {}
|
2641
|
+
},
|
2642
|
+
".coco-branded-heading-6": {
|
2643
|
+
"@apply font-branded text-heading-6 font-bold": {}
|
2644
|
+
},
|
2645
|
+
/* branded display headings */
|
2646
|
+
".branded-display-1, .branded-display-2, .branded-display-3, .branded-display-4": {
|
2647
|
+
"@apply font-branded font-bold": {}
|
2648
|
+
},
|
2649
|
+
".branded-display-1": {
|
2650
|
+
"@apply text-display-1": {}
|
2651
|
+
},
|
2652
|
+
".branded-display-2": {
|
2653
|
+
"@apply text-display-2": {}
|
2654
|
+
},
|
2655
|
+
".branded-display-3": {
|
2656
|
+
"@apply text-display-3": {}
|
2657
|
+
},
|
2658
|
+
".branded-display-4": {
|
2659
|
+
"@apply text-display-4": {}
|
2660
|
+
}
|
2661
|
+
});
|
2662
|
+
});
|
2663
|
+
}
|
2664
|
+
});
|
2665
|
+
|
2666
|
+
// app/assets/css/plugins/aspect.js
|
2667
|
+
var require_aspect = __commonJS({
|
2668
|
+
"app/assets/css/plugins/aspect.js"(exports2, module2) {
|
2669
|
+
var plugin = require_plugin();
|
2670
|
+
module2.exports = plugin(function({ matchUtilities, theme }) {
|
2671
|
+
matchUtilities(
|
2672
|
+
{
|
2673
|
+
aspect: (value) => ({
|
2674
|
+
"@supports (aspect-ratio: 1 / 1)": {
|
2675
|
+
aspectRatio: value
|
2676
|
+
},
|
2677
|
+
"@supports not (aspect-ratio: 1 / 1)": {
|
2678
|
+
"&::before": {
|
2679
|
+
content: '""',
|
2680
|
+
float: "left",
|
2681
|
+
paddingTop: `calc(100% / (${value}))`
|
2682
|
+
},
|
2683
|
+
"&::after": {
|
2684
|
+
clear: "left",
|
2685
|
+
content: '""',
|
2686
|
+
display: "block"
|
2687
|
+
}
|
2688
|
+
}
|
2689
|
+
})
|
2690
|
+
},
|
2691
|
+
{ values: theme("aspectRatio") }
|
2692
|
+
);
|
2693
|
+
});
|
2694
|
+
}
|
2695
|
+
});
|
2696
|
+
|
2697
|
+
// config/tailwind.preset.js
|
2698
|
+
var defaultTheme = require_defaultTheme();
|
2699
|
+
var { fontSize, fontFamily, colors, screens } = require_tokens();
|
2700
|
+
module.exports = {
|
2701
|
+
theme: {
|
2702
|
+
colors,
|
2703
|
+
screens,
|
2704
|
+
fontFamily: {
|
2705
|
+
display: [fontFamily.displaySans, ...defaultTheme.fontFamily.sans],
|
2706
|
+
body: [fontFamily.bodySans, ...defaultTheme.fontFamily.sans],
|
2707
|
+
branded: [fontFamily.displaySerif, ...defaultTheme.fontFamily.serif]
|
2708
|
+
},
|
2709
|
+
extend: {
|
2710
|
+
fontSize,
|
2711
|
+
containers: {
|
2712
|
+
"slide-fluid": "700px"
|
2713
|
+
},
|
2714
|
+
aspectRatio: {
|
2715
|
+
slide: "16 / 10"
|
2716
|
+
},
|
2717
|
+
animation: {
|
2718
|
+
spin: "spin 1.5s linear infinite",
|
2719
|
+
"spin-reverse": "spin 1.5s linear infinite reverse"
|
2720
|
+
},
|
2721
|
+
spacing: {
|
2722
|
+
4.5: "1.125rem",
|
2723
|
+
5.5: "1.375rem",
|
2724
|
+
6.5: "1.675rem",
|
2725
|
+
7.5: "1.875rem",
|
2726
|
+
13: "3.25rem",
|
2727
|
+
15: "3.75rem",
|
2728
|
+
17: "4.25rem",
|
2729
|
+
18: "4.5rem"
|
2730
|
+
},
|
2731
|
+
customForms: () => ({
|
2732
|
+
DEFAULT: {
|
2733
|
+
checkbox: {
|
2734
|
+
"&:indeterminate": {
|
2735
|
+
background: `url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='2' x='4' y='7' rx='1'/%3E%3C/svg%3E");`,
|
2736
|
+
borderColor: "transparent",
|
2737
|
+
backgroundColor: "currentColor",
|
2738
|
+
backgroundSize: "100% 100%",
|
2739
|
+
backgroundPosition: "center",
|
2740
|
+
backgroundRepeat: "no-repeat"
|
2741
|
+
}
|
2742
|
+
}
|
2743
|
+
}
|
2744
|
+
})
|
2745
|
+
}
|
2746
|
+
},
|
2747
|
+
corePlugins: {
|
2748
|
+
aspectRatio: false
|
2749
|
+
},
|
2750
|
+
plugins: [
|
2751
|
+
require_src(),
|
2752
|
+
require_dist(),
|
2753
|
+
require_colors3(),
|
2754
|
+
require_icons(),
|
2755
|
+
require_layout(),
|
2756
|
+
require_text(),
|
2757
|
+
require_aspect()
|
2758
|
+
]
|
2759
|
+
};
|