@player-ui/reference-assets-plugin-react 0.10.0-next.0 → 0.10.0-next.2
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 +35 -28
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/index.css +125 -378
- package/dist/index.legacy-esm.js +35 -28
- package/dist/index.mjs +35 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/assets/choice/Choice.tsx +4 -4
- package/src/assets/collection/Collection.tsx +1 -1
- package/src/assets/image/Image.tsx +7 -3
- package/src/assets/info/Info.tsx +8 -8
- package/src/assets/input/Input.tsx +3 -3
- package/src/assets/text/Text.tsx +1 -1
- package/src/components/Button.tsx +11 -11
- package/src/components/ChoiceItem.tsx +2 -2
- package/src/components/Input.tsx +1 -1
- package/src/components/Label.tsx +1 -1
- package/src/components/Separator.tsx +4 -2
- package/src/global.css +41 -53
package/dist/index.css
CHANGED
|
@@ -1,259 +1,25 @@
|
|
|
1
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
2
|
: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;
|
|
3
|
+
--player-background: 0 0% 100%;
|
|
4
|
+
--player-foreground: 222.2 47.4% 11.2%;
|
|
5
|
+
--player-muted: 210 40% 96.1%;
|
|
6
|
+
--player-muted-foreground: 215.4 16.3% 46.9%;
|
|
7
|
+
--player-popover: 0 0% 100%;
|
|
8
|
+
--player-popover-foreground: 222.2 47.4% 11.2%;
|
|
9
|
+
--player-border: 214.3 31.8% 91.4%;
|
|
10
|
+
--player-input: 214.3 31.8% 91.4%;
|
|
11
|
+
--player-card: 0 0% 100%;
|
|
12
|
+
--player-card-foreground: 222.2 47.4% 11.2%;
|
|
13
|
+
--player-primary: 222.2 47.4% 11.2%;
|
|
14
|
+
--player-primary-foreground: 210 40% 98%;
|
|
15
|
+
--player-secondary: 210 40% 96.1%;
|
|
16
|
+
--player-secondary-foreground: 222.2 47.4% 11.2%;
|
|
17
|
+
--player-accent: 210 40% 96.1%;
|
|
18
|
+
--player-accent-foreground: 222.2 47.4% 11.2%;
|
|
19
|
+
--player-destructive: 0 100% 50%;
|
|
20
|
+
--player-destructive-foreground: 210 40% 98%;
|
|
21
|
+
--player-ring: 215 20.2% 65.1%;
|
|
22
|
+
--player-radius: 0.5rem;
|
|
257
23
|
}
|
|
258
24
|
*,
|
|
259
25
|
::before,
|
|
@@ -363,205 +129,199 @@ body {
|
|
|
363
129
|
--tw-contain-paint: ;
|
|
364
130
|
--tw-contain-style: ;
|
|
365
131
|
}
|
|
366
|
-
.flex {
|
|
132
|
+
.player-flex {
|
|
367
133
|
display: flex;
|
|
368
134
|
}
|
|
369
|
-
.inline-flex {
|
|
135
|
+
.player-inline-flex {
|
|
370
136
|
display: inline-flex;
|
|
371
137
|
}
|
|
372
|
-
.grid {
|
|
138
|
+
.player-grid {
|
|
373
139
|
display: grid;
|
|
374
140
|
}
|
|
375
|
-
.h-10 {
|
|
141
|
+
.player-h-10 {
|
|
376
142
|
height: 2.5rem;
|
|
377
143
|
}
|
|
378
|
-
.h-8 {
|
|
144
|
+
.player-h-8 {
|
|
379
145
|
height: 2rem;
|
|
380
146
|
}
|
|
381
|
-
.h-9 {
|
|
147
|
+
.player-h-9 {
|
|
382
148
|
height: 2.25rem;
|
|
383
149
|
}
|
|
384
|
-
.h-\[1px\] {
|
|
150
|
+
.player-h-\[1px\] {
|
|
385
151
|
height: 1px;
|
|
386
152
|
}
|
|
387
|
-
.h-fit {
|
|
153
|
+
.player-h-fit {
|
|
388
154
|
height: -moz-fit-content;
|
|
389
155
|
height: fit-content;
|
|
390
156
|
}
|
|
391
|
-
.h-full {
|
|
157
|
+
.player-h-full {
|
|
392
158
|
height: 100%;
|
|
393
159
|
}
|
|
394
|
-
.w-9 {
|
|
160
|
+
.player-w-9 {
|
|
395
161
|
width: 2.25rem;
|
|
396
162
|
}
|
|
397
|
-
.w-\[1px\] {
|
|
163
|
+
.player-w-\[1px\] {
|
|
398
164
|
width: 1px;
|
|
399
165
|
}
|
|
400
|
-
.w-fit {
|
|
166
|
+
.player-w-fit {
|
|
401
167
|
width: -moz-fit-content;
|
|
402
168
|
width: fit-content;
|
|
403
169
|
}
|
|
404
|
-
.w-full {
|
|
170
|
+
.player-w-full {
|
|
405
171
|
width: 100%;
|
|
406
172
|
}
|
|
407
|
-
.max-w-full {
|
|
173
|
+
.player-max-w-full {
|
|
408
174
|
max-width: 100%;
|
|
409
175
|
}
|
|
410
|
-
.max-w-sm {
|
|
176
|
+
.player-max-w-sm {
|
|
411
177
|
max-width: 24rem;
|
|
412
178
|
}
|
|
413
|
-
.shrink-0 {
|
|
179
|
+
.player-shrink-0 {
|
|
414
180
|
flex-shrink: 0;
|
|
415
181
|
}
|
|
416
|
-
.
|
|
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 {
|
|
182
|
+
.player-scroll-m-20 {
|
|
420
183
|
scroll-margin: 5rem;
|
|
421
184
|
}
|
|
422
|
-
.flex-col {
|
|
185
|
+
.player-flex-col {
|
|
423
186
|
flex-direction: column;
|
|
424
187
|
}
|
|
425
|
-
.flex-col-reverse {
|
|
188
|
+
.player-flex-col-reverse {
|
|
426
189
|
flex-direction: column-reverse;
|
|
427
190
|
}
|
|
428
|
-
.items-center {
|
|
191
|
+
.player-items-center {
|
|
429
192
|
align-items: center;
|
|
430
193
|
}
|
|
431
|
-
.justify-center {
|
|
194
|
+
.player-justify-center {
|
|
432
195
|
justify-content: center;
|
|
433
196
|
}
|
|
434
|
-
.justify-between {
|
|
197
|
+
.player-justify-between {
|
|
435
198
|
justify-content: space-between;
|
|
436
199
|
}
|
|
437
|
-
.gap-1 {
|
|
200
|
+
.player-gap-1 {
|
|
438
201
|
gap: 0.25rem;
|
|
439
202
|
}
|
|
440
|
-
.gap-1\.5 {
|
|
203
|
+
.player-gap-1\.5 {
|
|
441
204
|
gap: 0.375rem;
|
|
442
205
|
}
|
|
443
|
-
.gap-2 {
|
|
206
|
+
.player-gap-2 {
|
|
444
207
|
gap: 0.5rem;
|
|
445
208
|
}
|
|
446
|
-
.gap-3 {
|
|
209
|
+
.player-gap-3 {
|
|
447
210
|
gap: 0.75rem;
|
|
448
211
|
}
|
|
449
|
-
.gap-4 {
|
|
212
|
+
.player-gap-4 {
|
|
450
213
|
gap: 1rem;
|
|
451
214
|
}
|
|
452
|
-
.whitespace-nowrap {
|
|
215
|
+
.player-whitespace-nowrap {
|
|
453
216
|
white-space: nowrap;
|
|
454
217
|
}
|
|
455
|
-
.rounded-md {
|
|
456
|
-
border-radius: calc(var(--radius) - 2px);
|
|
218
|
+
.player-rounded-md {
|
|
219
|
+
border-radius: calc(var(--player-radius) - 2px);
|
|
457
220
|
}
|
|
458
|
-
.border {
|
|
221
|
+
.player-border {
|
|
459
222
|
border-width: 1px;
|
|
460
223
|
}
|
|
461
|
-
.border-input {
|
|
462
|
-
border-color: hsl(var(--input));
|
|
224
|
+
.player-border-input {
|
|
225
|
+
border-color: hsl(var(--player-input));
|
|
463
226
|
}
|
|
464
|
-
.bg-background {
|
|
465
|
-
background-color: hsl(var(--background));
|
|
227
|
+
.player-bg-background {
|
|
228
|
+
background-color: hsl(var(--player-background));
|
|
466
229
|
}
|
|
467
|
-
.bg-border {
|
|
468
|
-
background-color: hsl(var(--border));
|
|
230
|
+
.player-bg-border {
|
|
231
|
+
background-color: hsl(var(--player-border));
|
|
469
232
|
}
|
|
470
|
-
.bg-destructive {
|
|
471
|
-
background-color: hsl(var(--destructive));
|
|
233
|
+
.player-bg-destructive {
|
|
234
|
+
background-color: hsl(var(--player-destructive));
|
|
472
235
|
}
|
|
473
|
-
.bg-primary {
|
|
474
|
-
background-color: hsl(var(--primary));
|
|
236
|
+
.player-bg-primary {
|
|
237
|
+
background-color: hsl(var(--player-primary));
|
|
475
238
|
}
|
|
476
|
-
.bg-secondary {
|
|
477
|
-
background-color: hsl(var(--secondary));
|
|
239
|
+
.player-bg-secondary {
|
|
240
|
+
background-color: hsl(var(--player-secondary));
|
|
478
241
|
}
|
|
479
|
-
.bg-transparent {
|
|
242
|
+
.player-bg-transparent {
|
|
480
243
|
background-color: transparent;
|
|
481
244
|
}
|
|
482
|
-
.px-3 {
|
|
245
|
+
.player-px-3 {
|
|
483
246
|
padding-left: 0.75rem;
|
|
484
247
|
padding-right: 0.75rem;
|
|
485
248
|
}
|
|
486
|
-
.px-4 {
|
|
249
|
+
.player-px-4 {
|
|
487
250
|
padding-left: 1rem;
|
|
488
251
|
padding-right: 1rem;
|
|
489
252
|
}
|
|
490
|
-
.px-8 {
|
|
253
|
+
.player-px-8 {
|
|
491
254
|
padding-left: 2rem;
|
|
492
255
|
padding-right: 2rem;
|
|
493
256
|
}
|
|
494
|
-
.py-1 {
|
|
257
|
+
.player-py-1 {
|
|
495
258
|
padding-top: 0.25rem;
|
|
496
259
|
padding-bottom: 0.25rem;
|
|
497
260
|
}
|
|
498
|
-
.py-2 {
|
|
261
|
+
.player-py-2 {
|
|
499
262
|
padding-top: 0.5rem;
|
|
500
263
|
padding-bottom: 0.5rem;
|
|
501
264
|
}
|
|
502
|
-
.text-2xl {
|
|
265
|
+
.player-text-2xl {
|
|
503
266
|
font-size: 1.5rem;
|
|
504
267
|
line-height: 2rem;
|
|
505
268
|
}
|
|
506
|
-
.text-4xl {
|
|
269
|
+
.player-text-4xl {
|
|
507
270
|
font-size: 2.25rem;
|
|
508
271
|
line-height: 2.5rem;
|
|
509
272
|
}
|
|
510
|
-
.text-\[0\.8rem\] {
|
|
273
|
+
.player-text-\[0\.8rem\] {
|
|
511
274
|
font-size: 0.8rem;
|
|
512
275
|
}
|
|
513
|
-
.text-sm {
|
|
276
|
+
.player-text-sm {
|
|
514
277
|
font-size: 0.875rem;
|
|
515
278
|
line-height: 1.25rem;
|
|
516
279
|
}
|
|
517
|
-
.text-xs {
|
|
280
|
+
.player-text-xs {
|
|
518
281
|
font-size: 0.75rem;
|
|
519
282
|
line-height: 1rem;
|
|
520
283
|
}
|
|
521
|
-
.font-extrabold {
|
|
284
|
+
.player-font-extrabold {
|
|
522
285
|
font-weight: 800;
|
|
523
286
|
}
|
|
524
|
-
.font-medium {
|
|
287
|
+
.player-font-medium {
|
|
525
288
|
font-weight: 500;
|
|
526
289
|
}
|
|
527
|
-
.font-semibold {
|
|
290
|
+
.player-font-semibold {
|
|
528
291
|
font-weight: 600;
|
|
529
292
|
}
|
|
530
|
-
.leading-none {
|
|
293
|
+
.player-leading-none {
|
|
531
294
|
line-height: 1;
|
|
532
295
|
}
|
|
533
|
-
.tracking-tight {
|
|
296
|
+
.player-tracking-tight {
|
|
534
297
|
letter-spacing: -0.025em;
|
|
535
298
|
}
|
|
536
|
-
.text-blue-600 {
|
|
299
|
+
.player-text-blue-600 {
|
|
537
300
|
--tw-text-opacity: 1;
|
|
538
301
|
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
539
302
|
}
|
|
540
|
-
.text-destructive {
|
|
541
|
-
color: hsl(var(--destructive));
|
|
303
|
+
.player-text-destructive {
|
|
304
|
+
color: hsl(var(--player-destructive));
|
|
542
305
|
}
|
|
543
|
-
.text-
|
|
544
|
-
color: hsl(var(--
|
|
306
|
+
.player-text-muted-foreground {
|
|
307
|
+
color: hsl(var(--player-muted-foreground));
|
|
545
308
|
}
|
|
546
|
-
.text-
|
|
547
|
-
color: hsl(var(--
|
|
309
|
+
.player-text-primary {
|
|
310
|
+
color: hsl(var(--player-primary));
|
|
548
311
|
}
|
|
549
|
-
.text-primary {
|
|
550
|
-
color: hsl(var(--primary));
|
|
312
|
+
.player-text-primary-foreground {
|
|
313
|
+
color: hsl(var(--player-primary-foreground));
|
|
551
314
|
}
|
|
552
|
-
.text-
|
|
553
|
-
color: hsl(var(--
|
|
315
|
+
.player-text-secondary-foreground {
|
|
316
|
+
color: hsl(var(--player-secondary-foreground));
|
|
554
317
|
}
|
|
555
|
-
.
|
|
556
|
-
color: hsl(var(--secondary-foreground));
|
|
557
|
-
}
|
|
558
|
-
.underline {
|
|
318
|
+
.player-underline {
|
|
559
319
|
text-decoration-line: underline;
|
|
560
320
|
}
|
|
561
|
-
.underline-offset-4 {
|
|
321
|
+
.player-underline-offset-4 {
|
|
562
322
|
text-underline-offset: 4px;
|
|
563
323
|
}
|
|
564
|
-
.shadow {
|
|
324
|
+
.player-shadow {
|
|
565
325
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
566
326
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
567
327
|
box-shadow:
|
|
@@ -569,7 +329,7 @@ body {
|
|
|
569
329
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
570
330
|
var(--tw-shadow);
|
|
571
331
|
}
|
|
572
|
-
.shadow-none {
|
|
332
|
+
.player-shadow-none {
|
|
573
333
|
--tw-shadow: 0 0 #0000;
|
|
574
334
|
--tw-shadow-colored: 0 0 #0000;
|
|
575
335
|
box-shadow:
|
|
@@ -577,7 +337,7 @@ body {
|
|
|
577
337
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
578
338
|
var(--tw-shadow);
|
|
579
339
|
}
|
|
580
|
-
.shadow-sm {
|
|
340
|
+
.player-shadow-sm {
|
|
581
341
|
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
582
342
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
583
343
|
box-shadow:
|
|
@@ -585,14 +345,7 @@ body {
|
|
|
585
345
|
var(--tw-ring-shadow, 0 0 #0000),
|
|
586
346
|
var(--tw-shadow);
|
|
587
347
|
}
|
|
588
|
-
.
|
|
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 {
|
|
348
|
+
.player-transition-colors {
|
|
596
349
|
transition-property:
|
|
597
350
|
color,
|
|
598
351
|
background-color,
|
|
@@ -615,55 +368,52 @@ body {
|
|
|
615
368
|
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
369
|
}
|
|
617
370
|
}
|
|
618
|
-
.file\:border-0::file-selector-button {
|
|
371
|
+
.file\:player-border-0::file-selector-button {
|
|
619
372
|
border-width: 0px;
|
|
620
373
|
}
|
|
621
|
-
.file\:bg-transparent::file-selector-button {
|
|
374
|
+
.file\:player-bg-transparent::file-selector-button {
|
|
622
375
|
background-color: transparent;
|
|
623
376
|
}
|
|
624
|
-
.file\:text-sm::file-selector-button {
|
|
377
|
+
.file\:player-text-sm::file-selector-button {
|
|
625
378
|
font-size: 0.875rem;
|
|
626
379
|
line-height: 1.25rem;
|
|
627
380
|
}
|
|
628
|
-
.file\:font-medium::file-selector-button {
|
|
381
|
+
.file\:player-font-medium::file-selector-button {
|
|
629
382
|
font-weight: 500;
|
|
630
383
|
}
|
|
631
|
-
.placeholder\:text-muted-foreground::-moz-placeholder {
|
|
632
|
-
color: hsl(var(--muted-foreground));
|
|
384
|
+
.placeholder\:player-text-muted-foreground::-moz-placeholder {
|
|
385
|
+
color: hsl(var(--player-muted-foreground));
|
|
633
386
|
}
|
|
634
|
-
.placeholder\:text-muted-foreground::placeholder {
|
|
635
|
-
color: hsl(var(--muted-foreground));
|
|
387
|
+
.placeholder\:player-text-muted-foreground::placeholder {
|
|
388
|
+
color: hsl(var(--player-muted-foreground));
|
|
636
389
|
}
|
|
637
|
-
.visited\:text-purple-600:visited {
|
|
390
|
+
.visited\:player-text-purple-600:visited {
|
|
638
391
|
color: rgb(147 51 234);
|
|
639
392
|
}
|
|
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);
|
|
393
|
+
.hover\:player-bg-accent:hover {
|
|
394
|
+
background-color: hsl(var(--player-accent));
|
|
645
395
|
}
|
|
646
|
-
.hover\:bg-primary\/90:hover {
|
|
647
|
-
background-color: hsl(var(--primary) / 0.9);
|
|
396
|
+
.hover\:player-bg-primary\/90:hover {
|
|
397
|
+
background-color: hsl(var(--player-primary) / 0.9);
|
|
648
398
|
}
|
|
649
|
-
.hover\:bg-secondary\/80:hover {
|
|
650
|
-
background-color: hsl(var(--secondary) / 0.8);
|
|
399
|
+
.hover\:player-bg-secondary\/80:hover {
|
|
400
|
+
background-color: hsl(var(--player-secondary) / 0.8);
|
|
651
401
|
}
|
|
652
|
-
.hover\:text-accent-foreground:hover {
|
|
653
|
-
color: hsl(var(--accent-foreground));
|
|
402
|
+
.hover\:player-text-accent-foreground:hover {
|
|
403
|
+
color: hsl(var(--player-accent-foreground));
|
|
654
404
|
}
|
|
655
|
-
.hover\:text-blue-800:hover {
|
|
405
|
+
.hover\:player-text-blue-800:hover {
|
|
656
406
|
--tw-text-opacity: 1;
|
|
657
407
|
color: rgb(30 64 175 / var(--tw-text-opacity));
|
|
658
408
|
}
|
|
659
|
-
.hover\:underline:hover {
|
|
409
|
+
.hover\:player-underline:hover {
|
|
660
410
|
text-decoration-line: underline;
|
|
661
411
|
}
|
|
662
|
-
.focus-visible\:outline-none:focus-visible {
|
|
412
|
+
.focus-visible\:player-outline-none:focus-visible {
|
|
663
413
|
outline: 2px solid transparent;
|
|
664
414
|
outline-offset: 2px;
|
|
665
415
|
}
|
|
666
|
-
.focus-visible\:ring-1:focus-visible {
|
|
416
|
+
.focus-visible\:player-ring-1:focus-visible {
|
|
667
417
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
668
418
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
669
419
|
box-shadow:
|
|
@@ -671,31 +421,28 @@ body {
|
|
|
671
421
|
var(--tw-ring-shadow),
|
|
672
422
|
var(--tw-shadow, 0 0 #0000);
|
|
673
423
|
}
|
|
674
|
-
.focus-visible\:ring-ring:focus-visible {
|
|
675
|
-
--tw-ring-color: hsl(var(--ring));
|
|
424
|
+
.focus-visible\:player-ring-ring:focus-visible {
|
|
425
|
+
--tw-ring-color: hsl(var(--player-ring));
|
|
676
426
|
}
|
|
677
|
-
.disabled\:pointer-events-none:disabled {
|
|
427
|
+
.disabled\:player-pointer-events-none:disabled {
|
|
678
428
|
pointer-events: none;
|
|
679
429
|
}
|
|
680
|
-
.disabled\:
|
|
681
|
-
cursor: not-allowed;
|
|
682
|
-
}
|
|
683
|
-
.disabled\:opacity-50:disabled {
|
|
430
|
+
.disabled\:player-opacity-50:disabled {
|
|
684
431
|
opacity: 0.5;
|
|
685
432
|
}
|
|
686
|
-
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
433
|
+
.player-peer:disabled ~ .peer-disabled\:player-cursor-not-allowed {
|
|
687
434
|
cursor: not-allowed;
|
|
688
435
|
}
|
|
689
|
-
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
436
|
+
.player-peer:disabled ~ .peer-disabled\:player-opacity-70 {
|
|
690
437
|
opacity: 0.7;
|
|
691
438
|
}
|
|
692
439
|
@media (min-width: 640px) {
|
|
693
|
-
.sm\:flex-row {
|
|
440
|
+
.sm\:player-flex-row {
|
|
694
441
|
flex-direction: row;
|
|
695
442
|
}
|
|
696
443
|
}
|
|
697
444
|
@media (min-width: 1024px) {
|
|
698
|
-
.lg\:text-5xl {
|
|
445
|
+
.lg\:player-text-5xl {
|
|
699
446
|
font-size: 3rem;
|
|
700
447
|
line-height: 1;
|
|
701
448
|
}
|