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