@niagads/table 0.2.0-alpha.0 → 0.2.5-alpha.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/index.js +1 -1
- package/dist/niagads-table.css +648 -0
- package/dist/niagads-table.css.map +1 -0
- package/package.json +11 -5
- package/dist/styles/global.css.js +0 -2
- package/dist/styles/global.css.js.map +0 -1
package/dist/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
import
|
1
|
+
import e from"./Table.js";export{Badge,BooleanBadge}from"./CellRenderers/Badge.js";export{LargeText,Text,TextList}from"./CellRenderers/BasicText.js";export{Link,LinkList}from"./CellRenderers/Link.js";export{Float,formatFloat}from"./CellRenderers/Number.js";export{PercentageBar}from"./CellRenderers/SparkChart.js";export{ICONS,buildElementStyle,getIconElement,renderNullValue,renderStyledText,renderWithIcon,renderWithInfo}from"./CellRenderers/TextRenderer.js";export{e as default};
|
2
2
|
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1,648 @@
|
|
1
|
+
/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */
|
2
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
|
3
|
+
@layer theme, base, components, utilities;
|
4
|
+
@layer theme {
|
5
|
+
:root, :host {
|
6
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
7
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
8
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
9
|
+
"Courier New", monospace;
|
10
|
+
--color-red-950: oklch(0.258 0.092 26.042);
|
11
|
+
--color-green-600: oklch(0.627 0.194 149.214);
|
12
|
+
--color-blue-700: oklch(0.488 0.243 264.376);
|
13
|
+
--color-purple-900: oklch(0.381 0.176 304.987);
|
14
|
+
--color-slate-50: oklch(0.984 0.003 247.858);
|
15
|
+
--color-slate-200: oklch(0.929 0.013 255.508);
|
16
|
+
--color-slate-300: oklch(0.869 0.022 252.894);
|
17
|
+
--color-slate-700: oklch(0.372 0.044 257.287);
|
18
|
+
--color-gray-50: oklch(0.985 0.002 247.839);
|
19
|
+
--color-gray-100: oklch(0.967 0.003 264.542);
|
20
|
+
--color-gray-200: oklch(0.928 0.006 264.531);
|
21
|
+
--color-gray-300: oklch(0.872 0.01 258.338);
|
22
|
+
--color-gray-700: oklch(0.373 0.034 259.733);
|
23
|
+
--color-gray-900: oklch(0.21 0.034 264.665);
|
24
|
+
--color-black: #000;
|
25
|
+
--color-white: #fff;
|
26
|
+
--spacing: 0.25rem;
|
27
|
+
--text-xs: 0.75rem;
|
28
|
+
--text-xs--line-height: calc(1 / 0.75);
|
29
|
+
--text-sm: 0.875rem;
|
30
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
31
|
+
--font-weight-bold: 700;
|
32
|
+
--radius-md: 0.375rem;
|
33
|
+
--default-font-family: var(--font-sans);
|
34
|
+
--default-mono-font-family: var(--font-mono);
|
35
|
+
--color-primary: #3d5263;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
@layer base {
|
39
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
40
|
+
box-sizing: border-box;
|
41
|
+
margin: 0;
|
42
|
+
padding: 0;
|
43
|
+
border: 0 solid;
|
44
|
+
}
|
45
|
+
html, :host {
|
46
|
+
line-height: 1.5;
|
47
|
+
-webkit-text-size-adjust: 100%;
|
48
|
+
tab-size: 4;
|
49
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
50
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
51
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
52
|
+
-webkit-tap-highlight-color: transparent;
|
53
|
+
}
|
54
|
+
hr {
|
55
|
+
height: 0;
|
56
|
+
color: inherit;
|
57
|
+
border-top-width: 1px;
|
58
|
+
}
|
59
|
+
abbr:where([title]) {
|
60
|
+
-webkit-text-decoration: underline dotted;
|
61
|
+
text-decoration: underline dotted;
|
62
|
+
}
|
63
|
+
h1, h2, h3, h4, h5, h6 {
|
64
|
+
font-size: inherit;
|
65
|
+
font-weight: inherit;
|
66
|
+
}
|
67
|
+
a {
|
68
|
+
color: inherit;
|
69
|
+
-webkit-text-decoration: inherit;
|
70
|
+
text-decoration: inherit;
|
71
|
+
}
|
72
|
+
b, strong {
|
73
|
+
font-weight: bolder;
|
74
|
+
}
|
75
|
+
code, kbd, samp, pre {
|
76
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
77
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
78
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
79
|
+
font-size: 1em;
|
80
|
+
}
|
81
|
+
small {
|
82
|
+
font-size: 80%;
|
83
|
+
}
|
84
|
+
sub, sup {
|
85
|
+
font-size: 75%;
|
86
|
+
line-height: 0;
|
87
|
+
position: relative;
|
88
|
+
vertical-align: baseline;
|
89
|
+
}
|
90
|
+
sub {
|
91
|
+
bottom: -0.25em;
|
92
|
+
}
|
93
|
+
sup {
|
94
|
+
top: -0.5em;
|
95
|
+
}
|
96
|
+
table {
|
97
|
+
text-indent: 0;
|
98
|
+
border-color: inherit;
|
99
|
+
border-collapse: collapse;
|
100
|
+
}
|
101
|
+
:-moz-focusring {
|
102
|
+
outline: auto;
|
103
|
+
}
|
104
|
+
progress {
|
105
|
+
vertical-align: baseline;
|
106
|
+
}
|
107
|
+
summary {
|
108
|
+
display: list-item;
|
109
|
+
}
|
110
|
+
ol, ul, menu {
|
111
|
+
list-style: none;
|
112
|
+
}
|
113
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
114
|
+
display: block;
|
115
|
+
vertical-align: middle;
|
116
|
+
}
|
117
|
+
img, video {
|
118
|
+
max-width: 100%;
|
119
|
+
height: auto;
|
120
|
+
}
|
121
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
122
|
+
font: inherit;
|
123
|
+
font-feature-settings: inherit;
|
124
|
+
font-variation-settings: inherit;
|
125
|
+
letter-spacing: inherit;
|
126
|
+
color: inherit;
|
127
|
+
border-radius: 0;
|
128
|
+
background-color: transparent;
|
129
|
+
opacity: 1;
|
130
|
+
}
|
131
|
+
:where(select:is([multiple], [size])) optgroup {
|
132
|
+
font-weight: bolder;
|
133
|
+
}
|
134
|
+
:where(select:is([multiple], [size])) optgroup option {
|
135
|
+
padding-inline-start: 20px;
|
136
|
+
}
|
137
|
+
::file-selector-button {
|
138
|
+
margin-inline-end: 4px;
|
139
|
+
}
|
140
|
+
::placeholder {
|
141
|
+
opacity: 1;
|
142
|
+
}
|
143
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
144
|
+
::placeholder {
|
145
|
+
color: color-mix(in oklab, currentColor 50%, transparent);
|
146
|
+
}
|
147
|
+
}
|
148
|
+
textarea {
|
149
|
+
resize: vertical;
|
150
|
+
}
|
151
|
+
::-webkit-search-decoration {
|
152
|
+
-webkit-appearance: none;
|
153
|
+
}
|
154
|
+
::-webkit-date-and-time-value {
|
155
|
+
min-height: 1lh;
|
156
|
+
text-align: inherit;
|
157
|
+
}
|
158
|
+
::-webkit-datetime-edit {
|
159
|
+
display: inline-flex;
|
160
|
+
}
|
161
|
+
::-webkit-datetime-edit-fields-wrapper {
|
162
|
+
padding: 0;
|
163
|
+
}
|
164
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
165
|
+
padding-block: 0;
|
166
|
+
}
|
167
|
+
:-moz-ui-invalid {
|
168
|
+
box-shadow: none;
|
169
|
+
}
|
170
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
171
|
+
appearance: button;
|
172
|
+
}
|
173
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
174
|
+
height: auto;
|
175
|
+
}
|
176
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
177
|
+
display: none !important;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
@layer utilities {
|
181
|
+
.invisible {
|
182
|
+
visibility: hidden;
|
183
|
+
}
|
184
|
+
.visible {
|
185
|
+
visibility: visible;
|
186
|
+
}
|
187
|
+
.absolute {
|
188
|
+
position: absolute;
|
189
|
+
}
|
190
|
+
.relative {
|
191
|
+
position: relative;
|
192
|
+
}
|
193
|
+
.right-0 {
|
194
|
+
right: calc(var(--spacing) * 0);
|
195
|
+
}
|
196
|
+
.bottom-\[2px\] {
|
197
|
+
bottom: 2px;
|
198
|
+
}
|
199
|
+
.left-0 {
|
200
|
+
left: calc(var(--spacing) * 0);
|
201
|
+
}
|
202
|
+
.z-50 {
|
203
|
+
z-index: 50;
|
204
|
+
}
|
205
|
+
.m-2 {
|
206
|
+
margin: calc(var(--spacing) * 2);
|
207
|
+
}
|
208
|
+
.mt-2 {
|
209
|
+
margin-top: calc(var(--spacing) * 2);
|
210
|
+
}
|
211
|
+
.ml-1 {
|
212
|
+
margin-left: calc(var(--spacing) * 1);
|
213
|
+
}
|
214
|
+
.ml-2 {
|
215
|
+
margin-left: calc(var(--spacing) * 2);
|
216
|
+
}
|
217
|
+
.ml-4 {
|
218
|
+
margin-left: calc(var(--spacing) * 4);
|
219
|
+
}
|
220
|
+
.ml-5 {
|
221
|
+
margin-left: calc(var(--spacing) * 5);
|
222
|
+
}
|
223
|
+
.flex {
|
224
|
+
display: flex;
|
225
|
+
}
|
226
|
+
.hidden {
|
227
|
+
display: none;
|
228
|
+
}
|
229
|
+
.inline {
|
230
|
+
display: inline;
|
231
|
+
}
|
232
|
+
.inline-block {
|
233
|
+
display: inline-block;
|
234
|
+
}
|
235
|
+
.inline-flex {
|
236
|
+
display: inline-flex;
|
237
|
+
}
|
238
|
+
.table {
|
239
|
+
display: table;
|
240
|
+
}
|
241
|
+
.size-3 {
|
242
|
+
width: calc(var(--spacing) * 3);
|
243
|
+
height: calc(var(--spacing) * 3);
|
244
|
+
}
|
245
|
+
.h-\[19px\] {
|
246
|
+
height: 19px;
|
247
|
+
}
|
248
|
+
.w-56 {
|
249
|
+
width: calc(var(--spacing) * 56);
|
250
|
+
}
|
251
|
+
.w-\[20px\] {
|
252
|
+
width: 20px;
|
253
|
+
}
|
254
|
+
.max-w-\[300px\] {
|
255
|
+
max-width: 300px;
|
256
|
+
}
|
257
|
+
.origin-top-left {
|
258
|
+
transform-origin: top left;
|
259
|
+
}
|
260
|
+
.origin-top-right {
|
261
|
+
transform-origin: top right;
|
262
|
+
}
|
263
|
+
.cursor-default {
|
264
|
+
cursor: default;
|
265
|
+
}
|
266
|
+
.cursor-pointer {
|
267
|
+
cursor: pointer;
|
268
|
+
}
|
269
|
+
.flex-col {
|
270
|
+
flex-direction: column;
|
271
|
+
}
|
272
|
+
.flex-row {
|
273
|
+
flex-direction: row;
|
274
|
+
}
|
275
|
+
.items-center {
|
276
|
+
align-items: center;
|
277
|
+
}
|
278
|
+
.justify-between {
|
279
|
+
justify-content: space-between;
|
280
|
+
}
|
281
|
+
.justify-center {
|
282
|
+
justify-content: center;
|
283
|
+
}
|
284
|
+
.justify-end {
|
285
|
+
justify-content: flex-end;
|
286
|
+
}
|
287
|
+
.gap-2 {
|
288
|
+
gap: calc(var(--spacing) * 2);
|
289
|
+
}
|
290
|
+
.gap-4 {
|
291
|
+
gap: calc(var(--spacing) * 4);
|
292
|
+
}
|
293
|
+
.divide-y {
|
294
|
+
:where(& > :not(:last-child)) {
|
295
|
+
--tw-divide-y-reverse: 0;
|
296
|
+
border-bottom-style: var(--tw-border-style);
|
297
|
+
border-top-style: var(--tw-border-style);
|
298
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
299
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
300
|
+
}
|
301
|
+
}
|
302
|
+
.divide-gray-100 {
|
303
|
+
:where(& > :not(:last-child)) {
|
304
|
+
border-color: var(--color-gray-100);
|
305
|
+
}
|
306
|
+
}
|
307
|
+
.self-center {
|
308
|
+
align-self: center;
|
309
|
+
}
|
310
|
+
.overflow-auto {
|
311
|
+
overflow: auto;
|
312
|
+
}
|
313
|
+
.rounded-md {
|
314
|
+
border-radius: var(--radius-md);
|
315
|
+
}
|
316
|
+
.border {
|
317
|
+
border-style: var(--tw-border-style);
|
318
|
+
border-width: 1px;
|
319
|
+
}
|
320
|
+
.border-gray-200 {
|
321
|
+
border-color: var(--color-gray-200);
|
322
|
+
}
|
323
|
+
.bg-white {
|
324
|
+
background-color: var(--color-white);
|
325
|
+
}
|
326
|
+
.stroke-black {
|
327
|
+
stroke: var(--color-black);
|
328
|
+
}
|
329
|
+
.stroke-white {
|
330
|
+
stroke: var(--color-white);
|
331
|
+
}
|
332
|
+
.stroke-1 {
|
333
|
+
stroke-width: 1;
|
334
|
+
}
|
335
|
+
.px-2 {
|
336
|
+
padding-inline: calc(var(--spacing) * 2);
|
337
|
+
}
|
338
|
+
.px-4 {
|
339
|
+
padding-inline: calc(var(--spacing) * 4);
|
340
|
+
}
|
341
|
+
.py-1 {
|
342
|
+
padding-block: calc(var(--spacing) * 1);
|
343
|
+
}
|
344
|
+
.py-3 {
|
345
|
+
padding-block: calc(var(--spacing) * 3);
|
346
|
+
}
|
347
|
+
.text-left {
|
348
|
+
text-align: left;
|
349
|
+
}
|
350
|
+
.text-sm {
|
351
|
+
font-size: var(--text-sm);
|
352
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
353
|
+
}
|
354
|
+
.text-xs {
|
355
|
+
font-size: var(--text-xs);
|
356
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
357
|
+
}
|
358
|
+
.break-words {
|
359
|
+
overflow-wrap: break-word;
|
360
|
+
}
|
361
|
+
.text-gray-200 {
|
362
|
+
color: var(--color-gray-200);
|
363
|
+
}
|
364
|
+
.text-gray-900 {
|
365
|
+
color: var(--color-gray-900);
|
366
|
+
}
|
367
|
+
.uppercase {
|
368
|
+
text-transform: uppercase;
|
369
|
+
}
|
370
|
+
.shadow-lg {
|
371
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
372
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
373
|
+
}
|
374
|
+
.filter {
|
375
|
+
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,);
|
376
|
+
}
|
377
|
+
.outline-none {
|
378
|
+
--tw-outline-style: none;
|
379
|
+
outline-style: none;
|
380
|
+
}
|
381
|
+
}
|
382
|
+
.table-container {
|
383
|
+
margin-inline: calc(var(--spacing) * 2);
|
384
|
+
display: block;
|
385
|
+
max-width: 100%;
|
386
|
+
font-family: Inter;
|
387
|
+
}
|
388
|
+
.table-border {
|
389
|
+
border-collapse: collapse;
|
390
|
+
border-top-style: var(--tw-border-style);
|
391
|
+
border-top-width: 4px;
|
392
|
+
--tw-border-style: solid;
|
393
|
+
border-style: solid;
|
394
|
+
border-color: var(--color-primary);
|
395
|
+
}
|
396
|
+
.table-text {
|
397
|
+
text-align: left;
|
398
|
+
font-size: var(--text-sm);
|
399
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
400
|
+
color: var(--color-primary);
|
401
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
402
|
+
text-align: right;
|
403
|
+
}
|
404
|
+
}
|
405
|
+
.table-layout {
|
406
|
+
width: 100%;
|
407
|
+
overflow-x: scroll;
|
408
|
+
}
|
409
|
+
.table-td {
|
410
|
+
border-style: var(--tw-border-style);
|
411
|
+
border-width: 0px;
|
412
|
+
border-right-style: var(--tw-border-style);
|
413
|
+
border-right-width: 1px;
|
414
|
+
border-bottom-style: var(--tw-border-style);
|
415
|
+
border-bottom-width: 1px;
|
416
|
+
--tw-border-style: solid;
|
417
|
+
border-style: solid;
|
418
|
+
border-color: var(--color-slate-200);
|
419
|
+
padding-block: calc(var(--spacing) * 1.5);
|
420
|
+
padding-right: calc(var(--spacing) * 6);
|
421
|
+
padding-left: calc(var(--spacing) * 4);
|
422
|
+
font-family: Noto Sans;
|
423
|
+
font-size: var(--text-xs);
|
424
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
425
|
+
}
|
426
|
+
.table-dtr {
|
427
|
+
border-bottom-style: var(--tw-border-style);
|
428
|
+
border-bottom-width: 1px;
|
429
|
+
background-color: var(--color-white);
|
430
|
+
&:nth-child(odd) {
|
431
|
+
border-color: var(--color-gray-700);
|
432
|
+
}
|
433
|
+
&:hover {
|
434
|
+
@media (hover: hover) {
|
435
|
+
background-color: var(--color-gray-50);
|
436
|
+
}
|
437
|
+
}
|
438
|
+
}
|
439
|
+
.column-header {
|
440
|
+
border-style: var(--tw-border-style);
|
441
|
+
border-width: 0px;
|
442
|
+
border-right-style: var(--tw-border-style);
|
443
|
+
border-right-width: 1px;
|
444
|
+
--tw-border-style: solid;
|
445
|
+
border-style: solid;
|
446
|
+
border-color: var(--color-slate-50);
|
447
|
+
background-color: color-mix(in oklab, var(--color-primary) 20%, transparent);
|
448
|
+
padding-inline: calc(var(--spacing) * 6);
|
449
|
+
padding-block: calc(var(--spacing) * 3);
|
450
|
+
}
|
451
|
+
.column-header-text {
|
452
|
+
font-size: var(--text-sm);
|
453
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
454
|
+
--tw-font-weight: var(--font-weight-bold);
|
455
|
+
font-weight: var(--font-weight-bold);
|
456
|
+
text-wrap: nowrap;
|
457
|
+
color: var(--color-slate-700);
|
458
|
+
}
|
459
|
+
.column-header-icon {
|
460
|
+
margin-left: calc(var(--spacing) * 1);
|
461
|
+
width: calc(var(--spacing) * 5);
|
462
|
+
height: calc(var(--spacing) * 5);
|
463
|
+
padding-left: 1px;
|
464
|
+
color: var(--color-slate-700);
|
465
|
+
}
|
466
|
+
.cell {
|
467
|
+
font-family: Inter;
|
468
|
+
}
|
469
|
+
.cell-badge {
|
470
|
+
border-radius: calc(infinity * 1px);
|
471
|
+
padding-inline: calc(var(--spacing) * 2);
|
472
|
+
padding-block: calc(var(--spacing) * 1);
|
473
|
+
}
|
474
|
+
.cell-badge-icon {
|
475
|
+
width: calc(var(--spacing) * 5);
|
476
|
+
height: calc(var(--spacing) * 5);
|
477
|
+
padding-block: calc(var(--spacing) * 1);
|
478
|
+
}
|
479
|
+
.cell-icon-only-badge {
|
480
|
+
margin: auto;
|
481
|
+
width: calc(var(--spacing) * 5);
|
482
|
+
height: calc(var(--spacing) * 5);
|
483
|
+
}
|
484
|
+
.cell-spark {
|
485
|
+
display: inline-block;
|
486
|
+
height: 20px;
|
487
|
+
}
|
488
|
+
.cell-spark-value {
|
489
|
+
width: 35px;
|
490
|
+
align-self: center;
|
491
|
+
}
|
492
|
+
.cell-spark-bar {
|
493
|
+
width: 100px;
|
494
|
+
}
|
495
|
+
.cell-spark-bar-observed {
|
496
|
+
background-color: var(--color-green-600);
|
497
|
+
}
|
498
|
+
.cell-spark-bar-remainder {
|
499
|
+
background-color: var(--color-gray-300);
|
500
|
+
}
|
501
|
+
.cell-link, .info-link {
|
502
|
+
color: var(--color-blue-700);
|
503
|
+
&:visited {
|
504
|
+
color: var(--color-purple-900);
|
505
|
+
}
|
506
|
+
&:hover {
|
507
|
+
@media (hover: hover) {
|
508
|
+
text-decoration-line: underline;
|
509
|
+
}
|
510
|
+
}
|
511
|
+
&:active {
|
512
|
+
color: var(--color-red-950);
|
513
|
+
}
|
514
|
+
}
|
515
|
+
.info-link {
|
516
|
+
cursor: pointer;
|
517
|
+
text-decoration-line: underline;
|
518
|
+
text-decoration-color: var(--color-blue-700);
|
519
|
+
text-decoration-style: dashed;
|
520
|
+
text-underline-offset: 4px;
|
521
|
+
}
|
522
|
+
.icon-disabled {
|
523
|
+
stroke: var(--color-slate-300);
|
524
|
+
}
|
525
|
+
.info-bubble {
|
526
|
+
width: calc(var(--spacing) * 4);
|
527
|
+
height: calc(var(--spacing) * 4);
|
528
|
+
stroke: var(--color-primary);
|
529
|
+
color: transparent;
|
530
|
+
}
|
531
|
+
.icon-button {
|
532
|
+
width: calc(var(--spacing) * 4);
|
533
|
+
height: calc(var(--spacing) * 4);
|
534
|
+
stroke-width: 4;
|
535
|
+
}
|
536
|
+
.dropdown:focus-within .dropdown-menu {
|
537
|
+
display: block;
|
538
|
+
}
|
539
|
+
@property --tw-divide-y-reverse {
|
540
|
+
syntax: "*";
|
541
|
+
inherits: false;
|
542
|
+
initial-value: 0;
|
543
|
+
}
|
544
|
+
@property --tw-border-style {
|
545
|
+
syntax: "*";
|
546
|
+
inherits: false;
|
547
|
+
initial-value: solid;
|
548
|
+
}
|
549
|
+
@property --tw-shadow {
|
550
|
+
syntax: "*";
|
551
|
+
inherits: false;
|
552
|
+
initial-value: 0 0 #0000;
|
553
|
+
}
|
554
|
+
@property --tw-shadow-color {
|
555
|
+
syntax: "*";
|
556
|
+
inherits: false;
|
557
|
+
}
|
558
|
+
@property --tw-inset-shadow {
|
559
|
+
syntax: "*";
|
560
|
+
inherits: false;
|
561
|
+
initial-value: 0 0 #0000;
|
562
|
+
}
|
563
|
+
@property --tw-inset-shadow-color {
|
564
|
+
syntax: "*";
|
565
|
+
inherits: false;
|
566
|
+
}
|
567
|
+
@property --tw-ring-color {
|
568
|
+
syntax: "*";
|
569
|
+
inherits: false;
|
570
|
+
}
|
571
|
+
@property --tw-ring-shadow {
|
572
|
+
syntax: "*";
|
573
|
+
inherits: false;
|
574
|
+
initial-value: 0 0 #0000;
|
575
|
+
}
|
576
|
+
@property --tw-inset-ring-color {
|
577
|
+
syntax: "*";
|
578
|
+
inherits: false;
|
579
|
+
}
|
580
|
+
@property --tw-inset-ring-shadow {
|
581
|
+
syntax: "*";
|
582
|
+
inherits: false;
|
583
|
+
initial-value: 0 0 #0000;
|
584
|
+
}
|
585
|
+
@property --tw-ring-inset {
|
586
|
+
syntax: "*";
|
587
|
+
inherits: false;
|
588
|
+
}
|
589
|
+
@property --tw-ring-offset-width {
|
590
|
+
syntax: "<length>";
|
591
|
+
inherits: false;
|
592
|
+
initial-value: 0px;
|
593
|
+
}
|
594
|
+
@property --tw-ring-offset-color {
|
595
|
+
syntax: "*";
|
596
|
+
inherits: false;
|
597
|
+
initial-value: #fff;
|
598
|
+
}
|
599
|
+
@property --tw-ring-offset-shadow {
|
600
|
+
syntax: "*";
|
601
|
+
inherits: false;
|
602
|
+
initial-value: 0 0 #0000;
|
603
|
+
}
|
604
|
+
@property --tw-blur {
|
605
|
+
syntax: "*";
|
606
|
+
inherits: false;
|
607
|
+
}
|
608
|
+
@property --tw-brightness {
|
609
|
+
syntax: "*";
|
610
|
+
inherits: false;
|
611
|
+
}
|
612
|
+
@property --tw-contrast {
|
613
|
+
syntax: "*";
|
614
|
+
inherits: false;
|
615
|
+
}
|
616
|
+
@property --tw-grayscale {
|
617
|
+
syntax: "*";
|
618
|
+
inherits: false;
|
619
|
+
}
|
620
|
+
@property --tw-hue-rotate {
|
621
|
+
syntax: "*";
|
622
|
+
inherits: false;
|
623
|
+
}
|
624
|
+
@property --tw-invert {
|
625
|
+
syntax: "*";
|
626
|
+
inherits: false;
|
627
|
+
}
|
628
|
+
@property --tw-opacity {
|
629
|
+
syntax: "*";
|
630
|
+
inherits: false;
|
631
|
+
}
|
632
|
+
@property --tw-saturate {
|
633
|
+
syntax: "*";
|
634
|
+
inherits: false;
|
635
|
+
}
|
636
|
+
@property --tw-sepia {
|
637
|
+
syntax: "*";
|
638
|
+
inherits: false;
|
639
|
+
}
|
640
|
+
@property --tw-drop-shadow {
|
641
|
+
syntax: "*";
|
642
|
+
inherits: false;
|
643
|
+
}
|
644
|
+
@property --tw-font-weight {
|
645
|
+
syntax: "*";
|
646
|
+
inherits: false;
|
647
|
+
}
|
648
|
+
/*# sourceMappingURL=niagads-table.css.map */
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["global.css"],"names":[],"mappings":"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","file":"niagads-table.css","sourcesContent":["@import url(\"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap\");\n\n@import \"tailwindcss\";\n\n@theme {\n --color-primary: #3d5263;\n --color-secondary: #f9c664;\n --color-accent: #618eb5;\n --color-accent-dark: #27333f;\n}\n\n@import \"./table.css\";\n@import \"./cell.css\";\n@import \"./ui.css\";"]}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@niagads/table",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.5-alpha.0",
|
4
4
|
"scripts": {
|
5
5
|
"build": "rollup -c"
|
6
6
|
},
|
@@ -38,7 +38,7 @@
|
|
38
38
|
"dependencies": {
|
39
39
|
"@heroicons/react": "^2.2.0",
|
40
40
|
"@niagads/common": "^0.2.0-alpha.0",
|
41
|
-
"@niagads/ui": "^0.
|
41
|
+
"@niagads/ui": "^0.2.5-alpha.0",
|
42
42
|
"@tanstack/react-table": "^8.11.8",
|
43
43
|
"export-from-json": "github:NIAGADS/export-from-json#niagads",
|
44
44
|
"lodash.countby": "^4.6.0",
|
@@ -48,13 +48,19 @@
|
|
48
48
|
"lodash.range": "^3.2.0",
|
49
49
|
"style-inject": "^0.3.0"
|
50
50
|
},
|
51
|
-
"main": "dist/index.js",
|
52
|
-
"types": "dist/index.d.ts",
|
53
51
|
"files": [
|
54
52
|
"dist"
|
55
53
|
],
|
56
54
|
"publishConfig": {
|
57
55
|
"access": "public"
|
58
56
|
},
|
59
|
-
"
|
57
|
+
"exports": {
|
58
|
+
".": {
|
59
|
+
"default": "./dist/index.js",
|
60
|
+
"types": "./dist/index.d.ts"
|
61
|
+
},
|
62
|
+
"./package.json": "./package.json",
|
63
|
+
"./css": "./dist/niagads-table.css"
|
64
|
+
},
|
65
|
+
"gitHead": "c8d2876935ae86be040643c81ff0fe5e0a142633"
|
60
66
|
}
|
@@ -1,2 +0,0 @@
|
|
1
|
-
import n from"style-inject";var e='/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */\n@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",\n "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";\n --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",\n "Courier New", monospace;\n --color-red-950: oklch(0.258 0.092 26.042);\n --color-green-600: oklch(0.627 0.194 149.214);\n --color-blue-700: oklch(0.488 0.243 264.376);\n --color-purple-900: oklch(0.381 0.176 304.987);\n --color-slate-50: oklch(0.984 0.003 247.858);\n --color-slate-200: oklch(0.929 0.013 255.508);\n --color-slate-300: oklch(0.869 0.022 252.894);\n --color-slate-700: oklch(0.372 0.044 257.287);\n --color-gray-50: oklch(0.985 0.002 247.839);\n --color-gray-100: oklch(0.967 0.003 264.542);\n --color-gray-200: oklch(0.928 0.006 264.531);\n --color-gray-300: oklch(0.872 0.01 258.338);\n --color-gray-700: oklch(0.373 0.034 259.733);\n --color-gray-900: oklch(0.21 0.034 264.665);\n --color-black: #000;\n --color-white: #fff;\n --spacing: 0.25rem;\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --font-weight-bold: 700;\n --radius-md: 0.375rem;\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n --color-primary: #3d5263;\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: color-mix(in oklab, currentColor 50%, transparent);\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden="until-found"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .invisible {\n visibility: hidden;\n }\n .visible {\n visibility: visible;\n }\n .absolute {\n position: absolute;\n }\n .relative {\n position: relative;\n }\n .right-0 {\n right: calc(var(--spacing) * 0);\n }\n .bottom-\\[2px\\] {\n bottom: 2px;\n }\n .left-0 {\n left: calc(var(--spacing) * 0);\n }\n .z-50 {\n z-index: 50;\n }\n .m-2 {\n margin: calc(var(--spacing) * 2);\n }\n .mt-2 {\n margin-top: calc(var(--spacing) * 2);\n }\n .ml-1 {\n margin-left: calc(var(--spacing) * 1);\n }\n .ml-2 {\n margin-left: calc(var(--spacing) * 2);\n }\n .ml-4 {\n margin-left: calc(var(--spacing) * 4);\n }\n .ml-5 {\n margin-left: calc(var(--spacing) * 5);\n }\n .flex {\n display: flex;\n }\n .hidden {\n display: none;\n }\n .inline {\n display: inline;\n }\n .inline-block {\n display: inline-block;\n }\n .inline-flex {\n display: inline-flex;\n }\n .table {\n display: table;\n }\n .size-3 {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n .h-\\[19px\\] {\n height: 19px;\n }\n .w-56 {\n width: calc(var(--spacing) * 56);\n }\n .w-\\[20px\\] {\n width: 20px;\n }\n .max-w-\\[300px\\] {\n max-width: 300px;\n }\n .origin-top-left {\n transform-origin: top left;\n }\n .origin-top-right {\n transform-origin: top right;\n }\n .cursor-default {\n cursor: default;\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .flex-col {\n flex-direction: column;\n }\n .flex-row {\n flex-direction: row;\n }\n .items-center {\n align-items: center;\n }\n .justify-between {\n justify-content: space-between;\n }\n .justify-center {\n justify-content: center;\n }\n .justify-end {\n justify-content: flex-end;\n }\n .gap-2 {\n gap: calc(var(--spacing) * 2);\n }\n .gap-4 {\n gap: calc(var(--spacing) * 4);\n }\n .divide-y {\n :where(& > :not(:last-child)) {\n --tw-divide-y-reverse: 0;\n border-bottom-style: var(--tw-border-style);\n border-top-style: var(--tw-border-style);\n border-top-width: calc(1px * var(--tw-divide-y-reverse));\n border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));\n }\n }\n .divide-gray-100 {\n :where(& > :not(:last-child)) {\n border-color: var(--color-gray-100);\n }\n }\n .self-center {\n align-self: center;\n }\n .overflow-auto {\n overflow: auto;\n }\n .rounded-md {\n border-radius: var(--radius-md);\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-gray-200 {\n border-color: var(--color-gray-200);\n }\n .bg-white {\n background-color: var(--color-white);\n }\n .stroke-black {\n stroke: var(--color-black);\n }\n .stroke-white {\n stroke: var(--color-white);\n }\n .stroke-1 {\n stroke-width: 1;\n }\n .px-2 {\n padding-inline: calc(var(--spacing) * 2);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .py-1 {\n padding-block: calc(var(--spacing) * 1);\n }\n .py-3 {\n padding-block: calc(var(--spacing) * 3);\n }\n .text-left {\n text-align: left;\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-xs {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n .break-words {\n overflow-wrap: break-word;\n }\n .text-gray-200 {\n color: var(--color-gray-200);\n }\n .text-gray-900 {\n color: var(--color-gray-900);\n }\n .uppercase {\n text-transform: uppercase;\n }\n .shadow-lg {\n --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .filter {\n 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,);\n }\n .outline-none {\n --tw-outline-style: none;\n outline-style: none;\n }\n}\n.table-container {\n margin-inline: calc(var(--spacing) * 2);\n display: block;\n max-width: 100%;\n font-family: Inter;\n}\n.table-border {\n border-collapse: collapse;\n border-top-style: var(--tw-border-style);\n border-top-width: 4px;\n --tw-border-style: solid;\n border-style: solid;\n border-color: var(--color-primary);\n}\n.table-text {\n text-align: left;\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n color: var(--color-primary);\n &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {\n text-align: right;\n }\n}\n.table-layout {\n width: 100%;\n overflow-x: scroll;\n}\n.table-td {\n border-style: var(--tw-border-style);\n border-width: 0px;\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n --tw-border-style: solid;\n border-style: solid;\n border-color: var(--color-slate-200);\n padding-block: calc(var(--spacing) * 1.5);\n padding-right: calc(var(--spacing) * 6);\n padding-left: calc(var(--spacing) * 4);\n font-family: Noto Sans;\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n}\n.table-dtr {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n background-color: var(--color-white);\n &:nth-child(odd) {\n border-color: var(--color-gray-700);\n }\n &:hover {\n @media (hover: hover) {\n background-color: var(--color-gray-50);\n }\n }\n}\n.column-header {\n border-style: var(--tw-border-style);\n border-width: 0px;\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n --tw-border-style: solid;\n border-style: solid;\n border-color: var(--color-slate-50);\n background-color: color-mix(in oklab, var(--color-primary) 20%, transparent);\n padding-inline: calc(var(--spacing) * 6);\n padding-block: calc(var(--spacing) * 3);\n}\n.column-header-text {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n --tw-font-weight: var(--font-weight-bold);\n font-weight: var(--font-weight-bold);\n text-wrap: nowrap;\n color: var(--color-slate-700);\n}\n.column-header-icon {\n margin-left: calc(var(--spacing) * 1);\n width: calc(var(--spacing) * 5);\n height: calc(var(--spacing) * 5);\n padding-left: 1px;\n color: var(--color-slate-700);\n}\n.cell {\n font-family: Inter;\n}\n.cell-badge {\n border-radius: calc(infinity * 1px);\n padding-inline: calc(var(--spacing) * 2);\n padding-block: calc(var(--spacing) * 1);\n}\n.cell-badge-icon {\n width: calc(var(--spacing) * 5);\n height: calc(var(--spacing) * 5);\n padding-block: calc(var(--spacing) * 1);\n}\n.cell-icon-only-badge {\n margin: auto;\n width: calc(var(--spacing) * 5);\n height: calc(var(--spacing) * 5);\n}\n.cell-spark {\n display: inline-block;\n height: 20px;\n}\n.cell-spark-value {\n width: 35px;\n align-self: center;\n}\n.cell-spark-bar {\n width: 100px;\n}\n.cell-spark-bar-observed {\n background-color: var(--color-green-600);\n}\n.cell-spark-bar-remainder {\n background-color: var(--color-gray-300);\n}\n.cell-link, .info-link {\n color: var(--color-blue-700);\n &:visited {\n color: var(--color-purple-900);\n }\n &:hover {\n @media (hover: hover) {\n text-decoration-line: underline;\n }\n }\n &:active {\n color: var(--color-red-950);\n }\n}\n.info-link {\n cursor: pointer;\n text-decoration-line: underline;\n text-decoration-color: var(--color-blue-700);\n text-decoration-style: dashed;\n text-underline-offset: 4px;\n}\n.icon-disabled {\n stroke: var(--color-slate-300);\n}\n.info-bubble {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n stroke: var(--color-primary);\n color: transparent;\n}\n.icon-button {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n stroke-width: 4;\n}\n.dropdown:focus-within .dropdown-menu {\n display: block;\n}\n@property --tw-divide-y-reverse {\n syntax: "*";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-border-style {\n syntax: "*";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-shadow {\n syntax: "*";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-shadow-color {\n syntax: "*";\n inherits: false;\n}\n@property --tw-inset-shadow {\n syntax: "*";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-shadow-color {\n syntax: "*";\n inherits: false;\n}\n@property --tw-ring-color {\n syntax: "*";\n inherits: false;\n}\n@property --tw-ring-shadow {\n syntax: "*";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-ring-color {\n syntax: "*";\n inherits: false;\n}\n@property --tw-inset-ring-shadow {\n syntax: "*";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-ring-inset {\n syntax: "*";\n inherits: false;\n}\n@property --tw-ring-offset-width {\n syntax: "<length>";\n inherits: false;\n initial-value: 0px;\n}\n@property --tw-ring-offset-color {\n syntax: "*";\n inherits: false;\n initial-value: #fff;\n}\n@property --tw-ring-offset-shadow {\n syntax: "*";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-blur {\n syntax: "*";\n inherits: false;\n}\n@property --tw-brightness {\n syntax: "*";\n inherits: false;\n}\n@property --tw-contrast {\n syntax: "*";\n inherits: false;\n}\n@property --tw-grayscale {\n syntax: "*";\n inherits: false;\n}\n@property --tw-hue-rotate {\n syntax: "*";\n inherits: false;\n}\n@property --tw-invert {\n syntax: "*";\n inherits: false;\n}\n@property --tw-opacity {\n syntax: "*";\n inherits: false;\n}\n@property --tw-saturate {\n syntax: "*";\n inherits: false;\n}\n@property --tw-sepia {\n syntax: "*";\n inherits: false;\n}\n@property --tw-drop-shadow {\n syntax: "*";\n inherits: false;\n}\n@property --tw-font-weight {\n syntax: "*";\n inherits: false;\n}';n(e);export{e as default};
|
2
|
-
//# sourceMappingURL=global.css.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"global.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|