@player-ui/reference-assets-plugin-react 0.8.0--canary.307.9621 → 0.8.0-next.0
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.
- package/dist/cjs/index.cjs +581 -0
- package/dist/cjs/index.cjs.map +1 -0
- package/dist/index.css +703 -0
- package/dist/index.legacy-esm.js +529 -0
- package/dist/index.mjs +529 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +34 -63
- package/src/__tests__/integration.test.tsx +158 -0
- package/src/assets/action/Action.tsx +10 -14
- package/src/assets/action/hooks.tsx +6 -6
- package/src/assets/action/index.ts +2 -2
- package/src/assets/choice/Choice.tsx +52 -0
- package/src/assets/choice/hooks.tsx +34 -0
- package/src/assets/choice/index.ts +2 -0
- package/src/assets/collection/Collection.tsx +6 -9
- package/src/assets/collection/index.tsx +1 -1
- package/src/assets/image/Image.tsx +4 -4
- package/src/assets/image/index.tsx +1 -1
- package/src/assets/index.tsx +7 -6
- package/src/assets/info/Info.tsx +26 -29
- package/src/assets/info/index.tsx +1 -1
- package/src/assets/input/Input.tsx +27 -19
- package/src/assets/input/hooks.tsx +35 -35
- package/src/assets/input/index.tsx +2 -2
- package/src/assets/input/types.ts +2 -2
- package/src/assets/text/Text.tsx +13 -7
- package/src/assets/text/hooks.tsx +6 -6
- package/src/assets/text/index.tsx +2 -2
- package/src/components/Button.tsx +56 -0
- package/src/components/ChoiceItem.tsx +31 -0
- package/src/components/Input.tsx +26 -0
- package/src/components/Label.tsx +26 -0
- package/src/components/Separator.tsx +30 -0
- package/src/global.css +83 -0
- package/src/index.tsx +4 -2
- package/src/intro.stories.mdx +9 -9
- package/src/plugin.tsx +22 -43
- package/src/utils.ts +6 -0
- package/types/assets/action/Action.d.ts +7 -0
- package/types/assets/action/hooks.d.ts +9 -0
- package/types/assets/action/index.d.ts +3 -0
- package/types/assets/choice/Choice.d.ts +6 -0
- package/types/assets/choice/hooks.d.ts +5 -0
- package/types/assets/choice/index.d.ts +3 -0
- package/types/assets/collection/Collection.d.ts +4 -0
- package/types/assets/collection/index.d.ts +2 -0
- package/types/assets/image/Image.d.ts +4 -0
- package/types/assets/image/index.d.ts +2 -0
- package/types/assets/index.d.ts +8 -0
- package/types/assets/info/Info.d.ts +5 -0
- package/types/assets/info/index.d.ts +2 -0
- package/types/assets/input/Input.d.ts +6 -0
- package/types/assets/input/hooks.d.ts +40 -0
- package/types/assets/input/index.d.ts +3 -0
- package/types/assets/input/types.d.ts +3 -0
- package/types/assets/text/Text.d.ts +7 -0
- package/types/assets/text/hooks.d.ts +9 -0
- package/types/assets/text/index.d.ts +3 -0
- package/types/components/Button.d.ts +12 -0
- package/types/components/ChoiceItem.d.ts +7 -0
- package/types/components/Input.d.ts +6 -0
- package/types/components/Label.d.ts +6 -0
- package/types/components/Separator.d.ts +5 -0
- package/types/index.d.ts +4 -0
- package/types/plugin.d.ts +19 -0
- package/types/utils.d.ts +3 -0
- package/dist/index.cjs.js +0 -501
- package/dist/index.d.ts +0 -94
- package/dist/index.esm.js +0 -479
- package/dist/xlr/ActionAsset.json +0 -126
- package/dist/xlr/CollectionAsset.json +0 -40
- package/dist/xlr/InfoAsset.json +0 -58
- package/dist/xlr/InputAsset.json +0 -109
- package/dist/xlr/TextAsset.json +0 -125
- package/dist/xlr/manifest.js +0 -16
- package/dist/xlr/manifest.json +0 -22
package/dist/index.css
ADDED
|
@@ -0,0 +1,703 @@
|
|
|
1
|
+
/* ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/plugins/reference-assets/react/src/global.css */
|
|
2
|
+
*,
|
|
3
|
+
::before,
|
|
4
|
+
::after {
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
border-width: 0;
|
|
7
|
+
border-style: solid;
|
|
8
|
+
border-color: #e5e7eb;
|
|
9
|
+
}
|
|
10
|
+
::before,
|
|
11
|
+
::after {
|
|
12
|
+
--tw-content: "";
|
|
13
|
+
}
|
|
14
|
+
html,
|
|
15
|
+
:host {
|
|
16
|
+
line-height: 1.5;
|
|
17
|
+
-webkit-text-size-adjust: 100%;
|
|
18
|
+
-moz-tab-size: 4;
|
|
19
|
+
-o-tab-size: 4;
|
|
20
|
+
tab-size: 4;
|
|
21
|
+
font-family:
|
|
22
|
+
var(--font-sans),
|
|
23
|
+
ui-sans-serif,
|
|
24
|
+
system-ui,
|
|
25
|
+
sans-serif,
|
|
26
|
+
"Apple Color Emoji",
|
|
27
|
+
"Segoe UI Emoji",
|
|
28
|
+
"Segoe UI Symbol",
|
|
29
|
+
"Noto Color Emoji";
|
|
30
|
+
font-feature-settings: normal;
|
|
31
|
+
font-variation-settings: normal;
|
|
32
|
+
-webkit-tap-highlight-color: transparent;
|
|
33
|
+
}
|
|
34
|
+
body {
|
|
35
|
+
margin: 0;
|
|
36
|
+
line-height: inherit;
|
|
37
|
+
}
|
|
38
|
+
hr {
|
|
39
|
+
height: 0;
|
|
40
|
+
color: inherit;
|
|
41
|
+
border-top-width: 1px;
|
|
42
|
+
}
|
|
43
|
+
abbr:where([title]) {
|
|
44
|
+
-webkit-text-decoration: underline dotted;
|
|
45
|
+
text-decoration: underline dotted;
|
|
46
|
+
}
|
|
47
|
+
h1,
|
|
48
|
+
h2,
|
|
49
|
+
h3,
|
|
50
|
+
h4,
|
|
51
|
+
h5,
|
|
52
|
+
h6 {
|
|
53
|
+
font-size: inherit;
|
|
54
|
+
font-weight: inherit;
|
|
55
|
+
}
|
|
56
|
+
a {
|
|
57
|
+
color: inherit;
|
|
58
|
+
text-decoration: inherit;
|
|
59
|
+
}
|
|
60
|
+
b,
|
|
61
|
+
strong {
|
|
62
|
+
font-weight: bolder;
|
|
63
|
+
}
|
|
64
|
+
code,
|
|
65
|
+
kbd,
|
|
66
|
+
samp,
|
|
67
|
+
pre {
|
|
68
|
+
font-family:
|
|
69
|
+
ui-monospace,
|
|
70
|
+
SFMono-Regular,
|
|
71
|
+
Menlo,
|
|
72
|
+
Monaco,
|
|
73
|
+
Consolas,
|
|
74
|
+
"Liberation Mono",
|
|
75
|
+
"Courier New",
|
|
76
|
+
monospace;
|
|
77
|
+
font-feature-settings: normal;
|
|
78
|
+
font-variation-settings: normal;
|
|
79
|
+
font-size: 1em;
|
|
80
|
+
}
|
|
81
|
+
small {
|
|
82
|
+
font-size: 80%;
|
|
83
|
+
}
|
|
84
|
+
sub,
|
|
85
|
+
sup {
|
|
86
|
+
font-size: 75%;
|
|
87
|
+
line-height: 0;
|
|
88
|
+
position: relative;
|
|
89
|
+
vertical-align: baseline;
|
|
90
|
+
}
|
|
91
|
+
sub {
|
|
92
|
+
bottom: -0.25em;
|
|
93
|
+
}
|
|
94
|
+
sup {
|
|
95
|
+
top: -0.5em;
|
|
96
|
+
}
|
|
97
|
+
table {
|
|
98
|
+
text-indent: 0;
|
|
99
|
+
border-color: inherit;
|
|
100
|
+
border-collapse: collapse;
|
|
101
|
+
}
|
|
102
|
+
button,
|
|
103
|
+
input,
|
|
104
|
+
optgroup,
|
|
105
|
+
select,
|
|
106
|
+
textarea {
|
|
107
|
+
font-family: inherit;
|
|
108
|
+
font-feature-settings: inherit;
|
|
109
|
+
font-variation-settings: inherit;
|
|
110
|
+
font-size: 100%;
|
|
111
|
+
font-weight: inherit;
|
|
112
|
+
line-height: inherit;
|
|
113
|
+
letter-spacing: inherit;
|
|
114
|
+
color: inherit;
|
|
115
|
+
margin: 0;
|
|
116
|
+
padding: 0;
|
|
117
|
+
}
|
|
118
|
+
button,
|
|
119
|
+
select {
|
|
120
|
+
text-transform: none;
|
|
121
|
+
}
|
|
122
|
+
button,
|
|
123
|
+
input:where([type=button]),
|
|
124
|
+
input:where([type=reset]),
|
|
125
|
+
input:where([type=submit]) {
|
|
126
|
+
-webkit-appearance: button;
|
|
127
|
+
background-color: transparent;
|
|
128
|
+
background-image: none;
|
|
129
|
+
}
|
|
130
|
+
:-moz-focusring {
|
|
131
|
+
outline: auto;
|
|
132
|
+
}
|
|
133
|
+
:-moz-ui-invalid {
|
|
134
|
+
box-shadow: none;
|
|
135
|
+
}
|
|
136
|
+
progress {
|
|
137
|
+
vertical-align: baseline;
|
|
138
|
+
}
|
|
139
|
+
::-webkit-inner-spin-button,
|
|
140
|
+
::-webkit-outer-spin-button {
|
|
141
|
+
height: auto;
|
|
142
|
+
}
|
|
143
|
+
[type=search] {
|
|
144
|
+
-webkit-appearance: textfield;
|
|
145
|
+
outline-offset: -2px;
|
|
146
|
+
}
|
|
147
|
+
::-webkit-search-decoration {
|
|
148
|
+
-webkit-appearance: none;
|
|
149
|
+
}
|
|
150
|
+
::-webkit-file-upload-button {
|
|
151
|
+
-webkit-appearance: button;
|
|
152
|
+
font: inherit;
|
|
153
|
+
}
|
|
154
|
+
summary {
|
|
155
|
+
display: list-item;
|
|
156
|
+
}
|
|
157
|
+
blockquote,
|
|
158
|
+
dl,
|
|
159
|
+
dd,
|
|
160
|
+
h1,
|
|
161
|
+
h2,
|
|
162
|
+
h3,
|
|
163
|
+
h4,
|
|
164
|
+
h5,
|
|
165
|
+
h6,
|
|
166
|
+
hr,
|
|
167
|
+
figure,
|
|
168
|
+
p,
|
|
169
|
+
pre {
|
|
170
|
+
margin: 0;
|
|
171
|
+
}
|
|
172
|
+
fieldset {
|
|
173
|
+
margin: 0;
|
|
174
|
+
padding: 0;
|
|
175
|
+
}
|
|
176
|
+
legend {
|
|
177
|
+
padding: 0;
|
|
178
|
+
}
|
|
179
|
+
ol,
|
|
180
|
+
ul,
|
|
181
|
+
menu {
|
|
182
|
+
list-style: none;
|
|
183
|
+
margin: 0;
|
|
184
|
+
padding: 0;
|
|
185
|
+
}
|
|
186
|
+
dialog {
|
|
187
|
+
padding: 0;
|
|
188
|
+
}
|
|
189
|
+
textarea {
|
|
190
|
+
resize: vertical;
|
|
191
|
+
}
|
|
192
|
+
input::-moz-placeholder,
|
|
193
|
+
textarea::-moz-placeholder {
|
|
194
|
+
opacity: 1;
|
|
195
|
+
color: #9ca3af;
|
|
196
|
+
}
|
|
197
|
+
input::placeholder,
|
|
198
|
+
textarea::placeholder {
|
|
199
|
+
opacity: 1;
|
|
200
|
+
color: #9ca3af;
|
|
201
|
+
}
|
|
202
|
+
button,
|
|
203
|
+
[role=button] {
|
|
204
|
+
cursor: pointer;
|
|
205
|
+
}
|
|
206
|
+
:disabled {
|
|
207
|
+
cursor: default;
|
|
208
|
+
}
|
|
209
|
+
img,
|
|
210
|
+
svg,
|
|
211
|
+
video,
|
|
212
|
+
canvas,
|
|
213
|
+
audio,
|
|
214
|
+
iframe,
|
|
215
|
+
embed,
|
|
216
|
+
object {
|
|
217
|
+
display: block;
|
|
218
|
+
vertical-align: middle;
|
|
219
|
+
}
|
|
220
|
+
img,
|
|
221
|
+
video {
|
|
222
|
+
max-width: 100%;
|
|
223
|
+
height: auto;
|
|
224
|
+
}
|
|
225
|
+
[hidden] {
|
|
226
|
+
display: none;
|
|
227
|
+
}
|
|
228
|
+
:root {
|
|
229
|
+
--background: 0 0% 100%;
|
|
230
|
+
--foreground: 222.2 47.4% 11.2%;
|
|
231
|
+
--muted: 210 40% 96.1%;
|
|
232
|
+
--muted-foreground: 215.4 16.3% 46.9%;
|
|
233
|
+
--popover: 0 0% 100%;
|
|
234
|
+
--popover-foreground: 222.2 47.4% 11.2%;
|
|
235
|
+
--border: 214.3 31.8% 91.4%;
|
|
236
|
+
--input: 214.3 31.8% 91.4%;
|
|
237
|
+
--card: 0 0% 100%;
|
|
238
|
+
--card-foreground: 222.2 47.4% 11.2%;
|
|
239
|
+
--primary: 222.2 47.4% 11.2%;
|
|
240
|
+
--primary-foreground: 210 40% 98%;
|
|
241
|
+
--secondary: 210 40% 96.1%;
|
|
242
|
+
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
243
|
+
--accent: 210 40% 96.1%;
|
|
244
|
+
--accent-foreground: 222.2 47.4% 11.2%;
|
|
245
|
+
--destructive: 0 100% 50%;
|
|
246
|
+
--destructive-foreground: 210 40% 98%;
|
|
247
|
+
--ring: 215 20.2% 65.1%;
|
|
248
|
+
--radius: 0.5rem;
|
|
249
|
+
}
|
|
250
|
+
* {
|
|
251
|
+
border-color: hsl(var(--border));
|
|
252
|
+
}
|
|
253
|
+
body {
|
|
254
|
+
background-color: hsl(var(--background));
|
|
255
|
+
color: hsl(var(--foreground));
|
|
256
|
+
font-feature-settings: "rlig" 1, "calt" 1;
|
|
257
|
+
}
|
|
258
|
+
*,
|
|
259
|
+
::before,
|
|
260
|
+
::after {
|
|
261
|
+
--tw-border-spacing-x: 0;
|
|
262
|
+
--tw-border-spacing-y: 0;
|
|
263
|
+
--tw-translate-x: 0;
|
|
264
|
+
--tw-translate-y: 0;
|
|
265
|
+
--tw-rotate: 0;
|
|
266
|
+
--tw-skew-x: 0;
|
|
267
|
+
--tw-skew-y: 0;
|
|
268
|
+
--tw-scale-x: 1;
|
|
269
|
+
--tw-scale-y: 1;
|
|
270
|
+
--tw-pan-x: ;
|
|
271
|
+
--tw-pan-y: ;
|
|
272
|
+
--tw-pinch-zoom: ;
|
|
273
|
+
--tw-scroll-snap-strictness: proximity;
|
|
274
|
+
--tw-gradient-from-position: ;
|
|
275
|
+
--tw-gradient-via-position: ;
|
|
276
|
+
--tw-gradient-to-position: ;
|
|
277
|
+
--tw-ordinal: ;
|
|
278
|
+
--tw-slashed-zero: ;
|
|
279
|
+
--tw-numeric-figure: ;
|
|
280
|
+
--tw-numeric-spacing: ;
|
|
281
|
+
--tw-numeric-fraction: ;
|
|
282
|
+
--tw-ring-inset: ;
|
|
283
|
+
--tw-ring-offset-width: 0px;
|
|
284
|
+
--tw-ring-offset-color: #fff;
|
|
285
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
286
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
287
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
288
|
+
--tw-shadow: 0 0 #0000;
|
|
289
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
290
|
+
--tw-blur: ;
|
|
291
|
+
--tw-brightness: ;
|
|
292
|
+
--tw-contrast: ;
|
|
293
|
+
--tw-grayscale: ;
|
|
294
|
+
--tw-hue-rotate: ;
|
|
295
|
+
--tw-invert: ;
|
|
296
|
+
--tw-saturate: ;
|
|
297
|
+
--tw-sepia: ;
|
|
298
|
+
--tw-drop-shadow: ;
|
|
299
|
+
--tw-backdrop-blur: ;
|
|
300
|
+
--tw-backdrop-brightness: ;
|
|
301
|
+
--tw-backdrop-contrast: ;
|
|
302
|
+
--tw-backdrop-grayscale: ;
|
|
303
|
+
--tw-backdrop-hue-rotate: ;
|
|
304
|
+
--tw-backdrop-invert: ;
|
|
305
|
+
--tw-backdrop-opacity: ;
|
|
306
|
+
--tw-backdrop-saturate: ;
|
|
307
|
+
--tw-backdrop-sepia: ;
|
|
308
|
+
--tw-contain-size: ;
|
|
309
|
+
--tw-contain-layout: ;
|
|
310
|
+
--tw-contain-paint: ;
|
|
311
|
+
--tw-contain-style: ;
|
|
312
|
+
}
|
|
313
|
+
::backdrop {
|
|
314
|
+
--tw-border-spacing-x: 0;
|
|
315
|
+
--tw-border-spacing-y: 0;
|
|
316
|
+
--tw-translate-x: 0;
|
|
317
|
+
--tw-translate-y: 0;
|
|
318
|
+
--tw-rotate: 0;
|
|
319
|
+
--tw-skew-x: 0;
|
|
320
|
+
--tw-skew-y: 0;
|
|
321
|
+
--tw-scale-x: 1;
|
|
322
|
+
--tw-scale-y: 1;
|
|
323
|
+
--tw-pan-x: ;
|
|
324
|
+
--tw-pan-y: ;
|
|
325
|
+
--tw-pinch-zoom: ;
|
|
326
|
+
--tw-scroll-snap-strictness: proximity;
|
|
327
|
+
--tw-gradient-from-position: ;
|
|
328
|
+
--tw-gradient-via-position: ;
|
|
329
|
+
--tw-gradient-to-position: ;
|
|
330
|
+
--tw-ordinal: ;
|
|
331
|
+
--tw-slashed-zero: ;
|
|
332
|
+
--tw-numeric-figure: ;
|
|
333
|
+
--tw-numeric-spacing: ;
|
|
334
|
+
--tw-numeric-fraction: ;
|
|
335
|
+
--tw-ring-inset: ;
|
|
336
|
+
--tw-ring-offset-width: 0px;
|
|
337
|
+
--tw-ring-offset-color: #fff;
|
|
338
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
339
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
340
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
341
|
+
--tw-shadow: 0 0 #0000;
|
|
342
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
343
|
+
--tw-blur: ;
|
|
344
|
+
--tw-brightness: ;
|
|
345
|
+
--tw-contrast: ;
|
|
346
|
+
--tw-grayscale: ;
|
|
347
|
+
--tw-hue-rotate: ;
|
|
348
|
+
--tw-invert: ;
|
|
349
|
+
--tw-saturate: ;
|
|
350
|
+
--tw-sepia: ;
|
|
351
|
+
--tw-drop-shadow: ;
|
|
352
|
+
--tw-backdrop-blur: ;
|
|
353
|
+
--tw-backdrop-brightness: ;
|
|
354
|
+
--tw-backdrop-contrast: ;
|
|
355
|
+
--tw-backdrop-grayscale: ;
|
|
356
|
+
--tw-backdrop-hue-rotate: ;
|
|
357
|
+
--tw-backdrop-invert: ;
|
|
358
|
+
--tw-backdrop-opacity: ;
|
|
359
|
+
--tw-backdrop-saturate: ;
|
|
360
|
+
--tw-backdrop-sepia: ;
|
|
361
|
+
--tw-contain-size: ;
|
|
362
|
+
--tw-contain-layout: ;
|
|
363
|
+
--tw-contain-paint: ;
|
|
364
|
+
--tw-contain-style: ;
|
|
365
|
+
}
|
|
366
|
+
.flex {
|
|
367
|
+
display: flex;
|
|
368
|
+
}
|
|
369
|
+
.inline-flex {
|
|
370
|
+
display: inline-flex;
|
|
371
|
+
}
|
|
372
|
+
.grid {
|
|
373
|
+
display: grid;
|
|
374
|
+
}
|
|
375
|
+
.h-10 {
|
|
376
|
+
height: 2.5rem;
|
|
377
|
+
}
|
|
378
|
+
.h-8 {
|
|
379
|
+
height: 2rem;
|
|
380
|
+
}
|
|
381
|
+
.h-9 {
|
|
382
|
+
height: 2.25rem;
|
|
383
|
+
}
|
|
384
|
+
.h-\[1px\] {
|
|
385
|
+
height: 1px;
|
|
386
|
+
}
|
|
387
|
+
.h-fit {
|
|
388
|
+
height: -moz-fit-content;
|
|
389
|
+
height: fit-content;
|
|
390
|
+
}
|
|
391
|
+
.h-full {
|
|
392
|
+
height: 100%;
|
|
393
|
+
}
|
|
394
|
+
.w-9 {
|
|
395
|
+
width: 2.25rem;
|
|
396
|
+
}
|
|
397
|
+
.w-\[1px\] {
|
|
398
|
+
width: 1px;
|
|
399
|
+
}
|
|
400
|
+
.w-fit {
|
|
401
|
+
width: -moz-fit-content;
|
|
402
|
+
width: fit-content;
|
|
403
|
+
}
|
|
404
|
+
.w-full {
|
|
405
|
+
width: 100%;
|
|
406
|
+
}
|
|
407
|
+
.max-w-full {
|
|
408
|
+
max-width: 100%;
|
|
409
|
+
}
|
|
410
|
+
.max-w-sm {
|
|
411
|
+
max-width: 24rem;
|
|
412
|
+
}
|
|
413
|
+
.shrink-0 {
|
|
414
|
+
flex-shrink: 0;
|
|
415
|
+
}
|
|
416
|
+
.transform {
|
|
417
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
418
|
+
}
|
|
419
|
+
.scroll-m-20 {
|
|
420
|
+
scroll-margin: 5rem;
|
|
421
|
+
}
|
|
422
|
+
.flex-col {
|
|
423
|
+
flex-direction: column;
|
|
424
|
+
}
|
|
425
|
+
.flex-col-reverse {
|
|
426
|
+
flex-direction: column-reverse;
|
|
427
|
+
}
|
|
428
|
+
.items-center {
|
|
429
|
+
align-items: center;
|
|
430
|
+
}
|
|
431
|
+
.justify-center {
|
|
432
|
+
justify-content: center;
|
|
433
|
+
}
|
|
434
|
+
.justify-between {
|
|
435
|
+
justify-content: space-between;
|
|
436
|
+
}
|
|
437
|
+
.gap-1 {
|
|
438
|
+
gap: 0.25rem;
|
|
439
|
+
}
|
|
440
|
+
.gap-1\.5 {
|
|
441
|
+
gap: 0.375rem;
|
|
442
|
+
}
|
|
443
|
+
.gap-2 {
|
|
444
|
+
gap: 0.5rem;
|
|
445
|
+
}
|
|
446
|
+
.gap-3 {
|
|
447
|
+
gap: 0.75rem;
|
|
448
|
+
}
|
|
449
|
+
.gap-4 {
|
|
450
|
+
gap: 1rem;
|
|
451
|
+
}
|
|
452
|
+
.whitespace-nowrap {
|
|
453
|
+
white-space: nowrap;
|
|
454
|
+
}
|
|
455
|
+
.rounded-md {
|
|
456
|
+
border-radius: calc(var(--radius) - 2px);
|
|
457
|
+
}
|
|
458
|
+
.border {
|
|
459
|
+
border-width: 1px;
|
|
460
|
+
}
|
|
461
|
+
.border-input {
|
|
462
|
+
border-color: hsl(var(--input));
|
|
463
|
+
}
|
|
464
|
+
.bg-background {
|
|
465
|
+
background-color: hsl(var(--background));
|
|
466
|
+
}
|
|
467
|
+
.bg-border {
|
|
468
|
+
background-color: hsl(var(--border));
|
|
469
|
+
}
|
|
470
|
+
.bg-destructive {
|
|
471
|
+
background-color: hsl(var(--destructive));
|
|
472
|
+
}
|
|
473
|
+
.bg-primary {
|
|
474
|
+
background-color: hsl(var(--primary));
|
|
475
|
+
}
|
|
476
|
+
.bg-secondary {
|
|
477
|
+
background-color: hsl(var(--secondary));
|
|
478
|
+
}
|
|
479
|
+
.bg-transparent {
|
|
480
|
+
background-color: transparent;
|
|
481
|
+
}
|
|
482
|
+
.px-3 {
|
|
483
|
+
padding-left: 0.75rem;
|
|
484
|
+
padding-right: 0.75rem;
|
|
485
|
+
}
|
|
486
|
+
.px-4 {
|
|
487
|
+
padding-left: 1rem;
|
|
488
|
+
padding-right: 1rem;
|
|
489
|
+
}
|
|
490
|
+
.px-8 {
|
|
491
|
+
padding-left: 2rem;
|
|
492
|
+
padding-right: 2rem;
|
|
493
|
+
}
|
|
494
|
+
.py-1 {
|
|
495
|
+
padding-top: 0.25rem;
|
|
496
|
+
padding-bottom: 0.25rem;
|
|
497
|
+
}
|
|
498
|
+
.py-2 {
|
|
499
|
+
padding-top: 0.5rem;
|
|
500
|
+
padding-bottom: 0.5rem;
|
|
501
|
+
}
|
|
502
|
+
.text-2xl {
|
|
503
|
+
font-size: 1.5rem;
|
|
504
|
+
line-height: 2rem;
|
|
505
|
+
}
|
|
506
|
+
.text-4xl {
|
|
507
|
+
font-size: 2.25rem;
|
|
508
|
+
line-height: 2.5rem;
|
|
509
|
+
}
|
|
510
|
+
.text-\[0\.8rem\] {
|
|
511
|
+
font-size: 0.8rem;
|
|
512
|
+
}
|
|
513
|
+
.text-sm {
|
|
514
|
+
font-size: 0.875rem;
|
|
515
|
+
line-height: 1.25rem;
|
|
516
|
+
}
|
|
517
|
+
.text-xs {
|
|
518
|
+
font-size: 0.75rem;
|
|
519
|
+
line-height: 1rem;
|
|
520
|
+
}
|
|
521
|
+
.font-extrabold {
|
|
522
|
+
font-weight: 800;
|
|
523
|
+
}
|
|
524
|
+
.font-medium {
|
|
525
|
+
font-weight: 500;
|
|
526
|
+
}
|
|
527
|
+
.font-semibold {
|
|
528
|
+
font-weight: 600;
|
|
529
|
+
}
|
|
530
|
+
.leading-none {
|
|
531
|
+
line-height: 1;
|
|
532
|
+
}
|
|
533
|
+
.tracking-tight {
|
|
534
|
+
letter-spacing: -0.025em;
|
|
535
|
+
}
|
|
536
|
+
.text-blue-600 {
|
|
537
|
+
--tw-text-opacity: 1;
|
|
538
|
+
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
539
|
+
}
|
|
540
|
+
.text-destructive {
|
|
541
|
+
color: hsl(var(--destructive));
|
|
542
|
+
}
|
|
543
|
+
.text-destructive-foreground {
|
|
544
|
+
color: hsl(var(--destructive-foreground));
|
|
545
|
+
}
|
|
546
|
+
.text-muted-foreground {
|
|
547
|
+
color: hsl(var(--muted-foreground));
|
|
548
|
+
}
|
|
549
|
+
.text-primary {
|
|
550
|
+
color: hsl(var(--primary));
|
|
551
|
+
}
|
|
552
|
+
.text-primary-foreground {
|
|
553
|
+
color: hsl(var(--primary-foreground));
|
|
554
|
+
}
|
|
555
|
+
.text-secondary-foreground {
|
|
556
|
+
color: hsl(var(--secondary-foreground));
|
|
557
|
+
}
|
|
558
|
+
.underline {
|
|
559
|
+
text-decoration-line: underline;
|
|
560
|
+
}
|
|
561
|
+
.underline-offset-4 {
|
|
562
|
+
text-underline-offset: 4px;
|
|
563
|
+
}
|
|
564
|
+
.shadow {
|
|
565
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
566
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
567
|
+
box-shadow:
|
|
568
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
569
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
570
|
+
var(--tw-shadow);
|
|
571
|
+
}
|
|
572
|
+
.shadow-none {
|
|
573
|
+
--tw-shadow: 0 0 #0000;
|
|
574
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
575
|
+
box-shadow:
|
|
576
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
577
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
578
|
+
var(--tw-shadow);
|
|
579
|
+
}
|
|
580
|
+
.shadow-sm {
|
|
581
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
582
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
583
|
+
box-shadow:
|
|
584
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
585
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
586
|
+
var(--tw-shadow);
|
|
587
|
+
}
|
|
588
|
+
.outline {
|
|
589
|
+
outline-style: solid;
|
|
590
|
+
}
|
|
591
|
+
.blur {
|
|
592
|
+
--tw-blur: blur(8px);
|
|
593
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
594
|
+
}
|
|
595
|
+
.transition-colors {
|
|
596
|
+
transition-property:
|
|
597
|
+
color,
|
|
598
|
+
background-color,
|
|
599
|
+
border-color,
|
|
600
|
+
text-decoration-color,
|
|
601
|
+
fill,
|
|
602
|
+
stroke;
|
|
603
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
604
|
+
transition-duration: 150ms;
|
|
605
|
+
}
|
|
606
|
+
@keyframes enter {
|
|
607
|
+
from {
|
|
608
|
+
opacity: var(--tw-enter-opacity, 1);
|
|
609
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
@keyframes exit {
|
|
613
|
+
to {
|
|
614
|
+
opacity: var(--tw-exit-opacity, 1);
|
|
615
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
.file\:border-0::file-selector-button {
|
|
619
|
+
border-width: 0px;
|
|
620
|
+
}
|
|
621
|
+
.file\:bg-transparent::file-selector-button {
|
|
622
|
+
background-color: transparent;
|
|
623
|
+
}
|
|
624
|
+
.file\:text-sm::file-selector-button {
|
|
625
|
+
font-size: 0.875rem;
|
|
626
|
+
line-height: 1.25rem;
|
|
627
|
+
}
|
|
628
|
+
.file\:font-medium::file-selector-button {
|
|
629
|
+
font-weight: 500;
|
|
630
|
+
}
|
|
631
|
+
.placeholder\:text-muted-foreground::-moz-placeholder {
|
|
632
|
+
color: hsl(var(--muted-foreground));
|
|
633
|
+
}
|
|
634
|
+
.placeholder\:text-muted-foreground::placeholder {
|
|
635
|
+
color: hsl(var(--muted-foreground));
|
|
636
|
+
}
|
|
637
|
+
.visited\:text-purple-600:visited {
|
|
638
|
+
color: rgb(147 51 234);
|
|
639
|
+
}
|
|
640
|
+
.hover\:bg-accent:hover {
|
|
641
|
+
background-color: hsl(var(--accent));
|
|
642
|
+
}
|
|
643
|
+
.hover\:bg-destructive\/90:hover {
|
|
644
|
+
background-color: hsl(var(--destructive) / 0.9);
|
|
645
|
+
}
|
|
646
|
+
.hover\:bg-primary\/90:hover {
|
|
647
|
+
background-color: hsl(var(--primary) / 0.9);
|
|
648
|
+
}
|
|
649
|
+
.hover\:bg-secondary\/80:hover {
|
|
650
|
+
background-color: hsl(var(--secondary) / 0.8);
|
|
651
|
+
}
|
|
652
|
+
.hover\:text-accent-foreground:hover {
|
|
653
|
+
color: hsl(var(--accent-foreground));
|
|
654
|
+
}
|
|
655
|
+
.hover\:text-blue-800:hover {
|
|
656
|
+
--tw-text-opacity: 1;
|
|
657
|
+
color: rgb(30 64 175 / var(--tw-text-opacity));
|
|
658
|
+
}
|
|
659
|
+
.hover\:underline:hover {
|
|
660
|
+
text-decoration-line: underline;
|
|
661
|
+
}
|
|
662
|
+
.focus-visible\:outline-none:focus-visible {
|
|
663
|
+
outline: 2px solid transparent;
|
|
664
|
+
outline-offset: 2px;
|
|
665
|
+
}
|
|
666
|
+
.focus-visible\:ring-1:focus-visible {
|
|
667
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
668
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
669
|
+
box-shadow:
|
|
670
|
+
var(--tw-ring-offset-shadow),
|
|
671
|
+
var(--tw-ring-shadow),
|
|
672
|
+
var(--tw-shadow, 0 0 #0000);
|
|
673
|
+
}
|
|
674
|
+
.focus-visible\:ring-ring:focus-visible {
|
|
675
|
+
--tw-ring-color: hsl(var(--ring));
|
|
676
|
+
}
|
|
677
|
+
.disabled\:pointer-events-none:disabled {
|
|
678
|
+
pointer-events: none;
|
|
679
|
+
}
|
|
680
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
681
|
+
cursor: not-allowed;
|
|
682
|
+
}
|
|
683
|
+
.disabled\:opacity-50:disabled {
|
|
684
|
+
opacity: 0.5;
|
|
685
|
+
}
|
|
686
|
+
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
687
|
+
cursor: not-allowed;
|
|
688
|
+
}
|
|
689
|
+
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
690
|
+
opacity: 0.7;
|
|
691
|
+
}
|
|
692
|
+
@media (min-width: 640px) {
|
|
693
|
+
.sm\:flex-row {
|
|
694
|
+
flex-direction: row;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
@media (min-width: 1024px) {
|
|
698
|
+
.lg\:text-5xl {
|
|
699
|
+
font-size: 3rem;
|
|
700
|
+
line-height: 1;
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
/*# sourceMappingURL=index.css.map */
|