@eqtylab/equality 0.0.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.
Files changed (94) hide show
  1. package/LICENSE +190 -0
  2. package/dist/alert-dialog.module.module.css.module.css +275 -0
  3. package/dist/alert.module.module.css.module.css +112 -0
  4. package/dist/avatar.module.module.css.module.css +119 -0
  5. package/dist/badge.module.module.css.module.css +141 -0
  6. package/dist/bg-gradient.module.module.css.module.css +7 -0
  7. package/dist/button.module.module.css.module.css +253 -0
  8. package/dist/card-content-header.module.module.css.module.css +27 -0
  9. package/dist/card.module.module.css.module.css +246 -0
  10. package/dist/checkbox.module.module.css.module.css +124 -0
  11. package/dist/code-block.module.module.css.module.css +100 -0
  12. package/dist/command.module.module.css.module.css +210 -0
  13. package/dist/control-status-badge.module.module.css.module.css +49 -0
  14. package/dist/date-range-picker.module.module.css.module.css +147 -0
  15. package/dist/dialog.module.module.css.module.css +300 -0
  16. package/dist/display-field.module.module.css.module.css +250 -0
  17. package/dist/drawer.module.module.css.module.css +202 -0
  18. package/dist/dropdown-menu.module.module.css.module.css +271 -0
  19. package/dist/empty-table-state.module.module.css.module.css +34 -0
  20. package/dist/filter-dropdown.module.module.css.module.css +18 -0
  21. package/dist/form.module.module.css.module.css +35 -0
  22. package/dist/generated/color-vars.css +354 -0
  23. package/dist/generated/dark-tokens.css +105 -0
  24. package/dist/generated/global-dark-tokens.css +105 -0
  25. package/dist/generated/global-light-tokens.css +254 -0
  26. package/dist/generated/light-tokens.css +254 -0
  27. package/dist/generated/tailwind-tokens.css +252 -0
  28. package/dist/global-theme-config.css +15 -0
  29. package/dist/heading.module.module.css.module.css +41 -0
  30. package/dist/icon-button.module.module.css.module.css +196 -0
  31. package/dist/icon.module.module.css.module.css +155 -0
  32. package/dist/index.cjs +3419 -0
  33. package/dist/index.cjs.map +1 -0
  34. package/dist/index.d.cts +819 -0
  35. package/dist/index.d.ts +819 -0
  36. package/dist/index.js +3134 -0
  37. package/dist/index.js.map +1 -0
  38. package/dist/info-card.module.module.css.module.css +25 -0
  39. package/dist/input.module.module.css.module.css +231 -0
  40. package/dist/label.module.module.css.module.css +23 -0
  41. package/dist/list-or-grid-view-toggle.module.module.css.module.css +52 -0
  42. package/dist/loading-overlay.module.module.css.module.css +151 -0
  43. package/dist/metric-card.module.module.css.module.css +171 -0
  44. package/dist/motion-collapsible.module.module.css.module.css +4 -0
  45. package/dist/page-not-found.module.module.css.module.css +71 -0
  46. package/dist/pagination.module.module.css.module.css +21 -0
  47. package/dist/panel-label.module.module.css.module.css +17 -0
  48. package/dist/popover.module.module.css.module.css +136 -0
  49. package/dist/progress.module.module.css.module.css +32 -0
  50. package/dist/radial-graph.module.module.css.module.css +223 -0
  51. package/dist/radio-dropdown.module.module.css.module.css +16 -0
  52. package/dist/radio-group.module.module.css.module.css +118 -0
  53. package/dist/resource-badge.module.module.css.module.css +77 -0
  54. package/dist/scripts.cjs +116 -0
  55. package/dist/scripts.cjs.map +1 -0
  56. package/dist/scripts.d.cts +5 -0
  57. package/dist/scripts.d.ts +5 -0
  58. package/dist/scripts.js +114 -0
  59. package/dist/scripts.js.map +1 -0
  60. package/dist/scroll-area.module.module.css.module.css +46 -0
  61. package/dist/search-bar.module.module.css.module.css +9 -0
  62. package/dist/section-heading.module.module.css.module.css +42 -0
  63. package/dist/select.module.module.css.module.css +362 -0
  64. package/dist/separator.module.module.css.module.css +13 -0
  65. package/dist/sheet.module.module.css.module.css +377 -0
  66. package/dist/skeleton.module.module.css.module.css +11 -0
  67. package/dist/sort-button.module.module.css.module.css +42 -0
  68. package/dist/sort-selector.module.module.css.module.css +11 -0
  69. package/dist/spinner.module.module.css.module.css +82 -0
  70. package/dist/switch.module.module.css.module.css +226 -0
  71. package/dist/table-components.module.module.css.module.css +116 -0
  72. package/dist/table.module.module.css.module.css +145 -0
  73. package/dist/tabs-components.module.module.css.module.css +136 -0
  74. package/dist/tabs.module.module.css.module.css +139 -0
  75. package/dist/textarea.module.module.css.module.css +115 -0
  76. package/dist/theme/lib/utils.cjs +125 -0
  77. package/dist/theme/lib/utils.cjs.map +1 -0
  78. package/dist/theme/lib/utils.d.cts +26 -0
  79. package/dist/theme/lib/utils.d.ts +26 -0
  80. package/dist/theme/lib/utils.js +110 -0
  81. package/dist/theme/lib/utils.js.map +1 -0
  82. package/dist/theme-base.css +51 -0
  83. package/dist/theme-components.css +27 -0
  84. package/dist/theme-preflight-global.css +260 -0
  85. package/dist/theme-preflight-scoped.css +261 -0
  86. package/dist/theme-utilities.css +54 -0
  87. package/dist/theme.module.css +15 -0
  88. package/dist/theme.module.module.css.module.css +978 -0
  89. package/dist/toast-components.module.module.css.module.css +393 -0
  90. package/dist/toast.module.module.css.module.css +11 -0
  91. package/dist/tokens.css +3 -0
  92. package/dist/tooltip.module.module.css.module.css +139 -0
  93. package/dist/truncated-description.module.module.css.module.css +15 -0
  94. package/package.json +101 -0
@@ -0,0 +1,377 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .sheet-overlay {
3
+ background-color: var(--color-black);
4
+ @supports (color: color-mix(in lab, red, red)) {
5
+ background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
6
+ }
7
+ --tw-backdrop-blur: blur(4px);
8
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
9
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
10
+ position: fixed;
11
+ inset: calc(0.25rem * 0);
12
+ z-index: 50;
13
+ &[data-state="open"] {
14
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
15
+ }
16
+ &[data-state="open"] {
17
+ --tw-enter-opacity: calc(0/100);
18
+ --tw-enter-opacity: 0;
19
+ }
20
+ &[data-state="closed"] {
21
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
22
+ }
23
+ &[data-state="closed"] {
24
+ --tw-exit-opacity: calc(0/100);
25
+ --tw-exit-opacity: 0;
26
+ }
27
+ }
28
+ .sheet-content {
29
+ background-color: var(--color-background-overlay);
30
+ --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));
31
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
32
+ --tw-shadow-color: rgba(0, 0, 0, 0.1);
33
+ @supports (color: color-mix(in lab, red, red)) {
34
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.1) var(--tw-shadow-alpha), transparent);
35
+ }
36
+ border-color: var(--color-border-overlay);
37
+ position: fixed;
38
+ z-index: 50;
39
+ display: flex;
40
+ flex-direction: column;
41
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
42
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
43
+ transition-duration: var(--tw-duration, 150ms);
44
+ --tw-ease: cubic-bezier(0.4, 0, 0.2, 1);
45
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
46
+ &[data-state="open"] {
47
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
48
+ }
49
+ &[data-state="open"] {
50
+ --tw-duration: 500ms;
51
+ transition-duration: 500ms;
52
+ }
53
+ &[data-state="closed"] {
54
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
55
+ }
56
+ &[data-state="closed"] {
57
+ --tw-duration: 300ms;
58
+ transition-duration: 300ms;
59
+ }
60
+ }
61
+ .sheet-content--side-top {
62
+ border-bottom-style: var(--tw-border-style);
63
+ border-bottom-width: 1px;
64
+ inset-inline: calc(0.25rem * 0);
65
+ top: calc(0.25rem * 0);
66
+ &[data-state="closed"] {
67
+ --tw-exit-translate-y: -100%;
68
+ }
69
+ &[data-state="open"] {
70
+ --tw-enter-translate-y: -100%;
71
+ }
72
+ }
73
+ .sheet-content--side-bottom {
74
+ border-top-style: var(--tw-border-style);
75
+ border-top-width: 1px;
76
+ inset-inline: calc(0.25rem * 0);
77
+ bottom: calc(0.25rem * 0);
78
+ &[data-state="closed"] {
79
+ --tw-exit-translate-y: 100%;
80
+ }
81
+ &[data-state="open"] {
82
+ --tw-enter-translate-y: 100%;
83
+ }
84
+ }
85
+ .sheet-content--side-left {
86
+ border-right-style: var(--tw-border-style);
87
+ border-right-width: 1px;
88
+ inset-block: calc(0.25rem * 0);
89
+ left: calc(0.25rem * 0);
90
+ height: 100%;
91
+ width: calc(3/4 * 100%);
92
+ @media (width >= 40rem) {
93
+ width: calc(1/3 * 100%);
94
+ }
95
+ &[data-state="closed"] {
96
+ --tw-exit-translate-x: -100%;
97
+ }
98
+ &[data-state="open"] {
99
+ --tw-enter-translate-x: -100%;
100
+ }
101
+ }
102
+ .sheet-content--side-right {
103
+ border-left-style: var(--tw-border-style);
104
+ border-left-width: 1px;
105
+ inset-block: calc(0.25rem * 0);
106
+ right: calc(0.25rem * 0);
107
+ height: 100%;
108
+ width: calc(3/4 * 100%);
109
+ @media (width >= 40rem) {
110
+ width: calc(1/3 * 100%);
111
+ }
112
+ &[data-state="closed"] {
113
+ --tw-exit-translate-x: 100%;
114
+ }
115
+ &[data-state="open"] {
116
+ --tw-enter-translate-x: 100%;
117
+ }
118
+ }
119
+ .sheet-close {
120
+ flex-shrink: 0;
121
+ }
122
+ .sheet-header {
123
+ display: flex;
124
+ flex-shrink: 0;
125
+ align-items: center;
126
+ gap: calc(0.25rem * 4);
127
+ padding: calc(0.25rem * 4);
128
+ text-align: left;
129
+ border-bottom-style: var(--tw-border-style);
130
+ border-bottom-width: 1px;
131
+ --tw-gradient-position: to right in oklab;
132
+ background-image: linear-gradient(var(--tw-gradient-stops));
133
+ --tw-gradient-from: color-mix(in oklab, var(--color-brand-primary) 40%, transparent);
134
+ --tw-gradient-to: var(--color-background);
135
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
136
+ }
137
+ .sheet-header-icon {
138
+ flex-shrink: 0;
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
+ }
143
+ .sheet-header-text-content {
144
+ display: flex;
145
+ min-width: calc(0.25rem * 0);
146
+ flex: 1;
147
+ flex-direction: column;
148
+ :where(& > :not(:last-child)) {
149
+ --tw-space-y-reverse: 0;
150
+ margin-block-start: calc(calc(0.25rem * 2) * var(--tw-space-y-reverse));
151
+ margin-block-end: calc(calc(0.25rem * 2) * calc(1 - var(--tw-space-y-reverse)));
152
+ }
153
+ }
154
+ .sheet-body {
155
+ min-height: calc(0.25rem * 0);
156
+ flex: 1;
157
+ overflow: auto;
158
+ padding: calc(0.25rem * 4);
159
+ }
160
+ .sheet-footer {
161
+ display: flex;
162
+ flex-shrink: 0;
163
+ flex-direction: column-reverse;
164
+ @media (width >= 40rem) {
165
+ flex-direction: row;
166
+ }
167
+ @media (width >= 40rem) {
168
+ justify-content: flex-end;
169
+ }
170
+ @media (width >= 40rem) {
171
+ :where(& > :not(:last-child)) {
172
+ --tw-space-x-reverse: 0;
173
+ margin-inline-start: calc(calc(0.25rem * 2) * var(--tw-space-x-reverse));
174
+ margin-inline-end: calc(calc(0.25rem * 2) * calc(1 - var(--tw-space-x-reverse)));
175
+ }
176
+ }
177
+ border-top-style: var(--tw-border-style);
178
+ border-top-width: 1px;
179
+ border-color: var(--color-border);
180
+ padding: calc(0.25rem * 4);
181
+ }
182
+ .sheet-title {
183
+ font-size: 1.125rem;
184
+ line-height: var(--tw-leading, calc(1.75 / 1.125));
185
+ --tw-font-weight: 500;
186
+ font-weight: 500;
187
+ color: var(--color-text-primary);
188
+ }
189
+ .sheet-description {
190
+ font-size: 0.875rem;
191
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
192
+ color: var(--color-text-secondary);
193
+ }
194
+ @property --tw-backdrop-blur {
195
+ syntax: "*";
196
+ inherits: false;
197
+ }
198
+ @property --tw-backdrop-brightness {
199
+ syntax: "*";
200
+ inherits: false;
201
+ }
202
+ @property --tw-backdrop-contrast {
203
+ syntax: "*";
204
+ inherits: false;
205
+ }
206
+ @property --tw-backdrop-grayscale {
207
+ syntax: "*";
208
+ inherits: false;
209
+ }
210
+ @property --tw-backdrop-hue-rotate {
211
+ syntax: "*";
212
+ inherits: false;
213
+ }
214
+ @property --tw-backdrop-invert {
215
+ syntax: "*";
216
+ inherits: false;
217
+ }
218
+ @property --tw-backdrop-opacity {
219
+ syntax: "*";
220
+ inherits: false;
221
+ }
222
+ @property --tw-backdrop-saturate {
223
+ syntax: "*";
224
+ inherits: false;
225
+ }
226
+ @property --tw-backdrop-sepia {
227
+ syntax: "*";
228
+ inherits: false;
229
+ }
230
+ @property --tw-shadow {
231
+ syntax: "*";
232
+ inherits: false;
233
+ initial-value: 0 0 #0000;
234
+ }
235
+ @property --tw-shadow-color {
236
+ syntax: "*";
237
+ inherits: false;
238
+ }
239
+ @property --tw-shadow-alpha {
240
+ syntax: "<percentage>";
241
+ inherits: false;
242
+ initial-value: 100%;
243
+ }
244
+ @property --tw-inset-shadow {
245
+ syntax: "*";
246
+ inherits: false;
247
+ initial-value: 0 0 #0000;
248
+ }
249
+ @property --tw-inset-shadow-color {
250
+ syntax: "*";
251
+ inherits: false;
252
+ }
253
+ @property --tw-inset-shadow-alpha {
254
+ syntax: "<percentage>";
255
+ inherits: false;
256
+ initial-value: 100%;
257
+ }
258
+ @property --tw-ring-color {
259
+ syntax: "*";
260
+ inherits: false;
261
+ }
262
+ @property --tw-ring-shadow {
263
+ syntax: "*";
264
+ inherits: false;
265
+ initial-value: 0 0 #0000;
266
+ }
267
+ @property --tw-inset-ring-color {
268
+ syntax: "*";
269
+ inherits: false;
270
+ }
271
+ @property --tw-inset-ring-shadow {
272
+ syntax: "*";
273
+ inherits: false;
274
+ initial-value: 0 0 #0000;
275
+ }
276
+ @property --tw-ring-inset {
277
+ syntax: "*";
278
+ inherits: false;
279
+ }
280
+ @property --tw-ring-offset-width {
281
+ syntax: "<length>";
282
+ inherits: false;
283
+ initial-value: 0px;
284
+ }
285
+ @property --tw-ring-offset-color {
286
+ syntax: "*";
287
+ inherits: false;
288
+ initial-value: #fff;
289
+ }
290
+ @property --tw-ring-offset-shadow {
291
+ syntax: "*";
292
+ inherits: false;
293
+ initial-value: 0 0 #0000;
294
+ }
295
+ @property --tw-ease {
296
+ syntax: "*";
297
+ inherits: false;
298
+ }
299
+ @property --tw-duration {
300
+ syntax: "*";
301
+ inherits: false;
302
+ }
303
+ @property --tw-border-style {
304
+ syntax: "*";
305
+ inherits: false;
306
+ initial-value: solid;
307
+ }
308
+ @property --tw-gradient-position {
309
+ syntax: "*";
310
+ inherits: false;
311
+ }
312
+ @property --tw-gradient-from {
313
+ syntax: "<color>";
314
+ inherits: false;
315
+ initial-value: #0000;
316
+ }
317
+ @property --tw-gradient-via {
318
+ syntax: "<color>";
319
+ inherits: false;
320
+ initial-value: #0000;
321
+ }
322
+ @property --tw-gradient-to {
323
+ syntax: "<color>";
324
+ inherits: false;
325
+ initial-value: #0000;
326
+ }
327
+ @property --tw-gradient-stops {
328
+ syntax: "*";
329
+ inherits: false;
330
+ }
331
+ @property --tw-gradient-via-stops {
332
+ syntax: "*";
333
+ inherits: false;
334
+ }
335
+ @property --tw-gradient-from-position {
336
+ syntax: "<length-percentage>";
337
+ inherits: false;
338
+ initial-value: 0%;
339
+ }
340
+ @property --tw-gradient-via-position {
341
+ syntax: "<length-percentage>";
342
+ inherits: false;
343
+ initial-value: 50%;
344
+ }
345
+ @property --tw-gradient-to-position {
346
+ syntax: "<length-percentage>";
347
+ inherits: false;
348
+ initial-value: 100%;
349
+ }
350
+ @property --tw-space-y-reverse {
351
+ syntax: "*";
352
+ inherits: false;
353
+ initial-value: 0;
354
+ }
355
+ @property --tw-space-x-reverse {
356
+ syntax: "*";
357
+ inherits: false;
358
+ initial-value: 0;
359
+ }
360
+ @property --tw-font-weight {
361
+ syntax: "*";
362
+ inherits: false;
363
+ }
364
+ @keyframes enter {
365
+ from {
366
+ opacity: var(--tw-enter-opacity,1);
367
+ 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));
368
+ filter: blur(var(--tw-enter-blur,0));
369
+ }
370
+ }
371
+ @keyframes exit {
372
+ to {
373
+ opacity: var(--tw-exit-opacity,1);
374
+ 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));
375
+ filter: blur(var(--tw-exit-blur,0));
376
+ }
377
+ }
@@ -0,0 +1,11 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .skeleton {
3
+ border-radius: var(--radius-md, 0.375rem);
4
+ background-color: var(--color-greyscale-800);
5
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
6
+ }
7
+ @keyframes pulse {
8
+ 50% {
9
+ opacity: 0.5;
10
+ }
11
+ }
@@ -0,0 +1,42 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .sort-button {
3
+ text-align: left;
4
+ --tw-font-weight: 500;
5
+ font-weight: 500;
6
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
7
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
8
+ transition-duration: var(--tw-duration, 150ms);
9
+ display: flex;
10
+ align-items: center;
11
+ gap: calc(0.25rem * 2);
12
+ &:hover {
13
+ @media (hover: hover) {
14
+ color: var(--color-brand-primary);
15
+ }
16
+ }
17
+ &>svg {
18
+ width: calc(0.25rem * 4);
19
+ height: calc(0.25rem * 4);
20
+ }
21
+ }
22
+ .sort-button:hover .arrow-up-down-icon {
23
+ opacity: 50%;
24
+ }
25
+ .arrow-container {
26
+ display: flex;
27
+ align-items: center;
28
+ &>svg {
29
+ width: calc(0.25rem * 3);
30
+ height: calc(0.25rem * 3);
31
+ }
32
+ }
33
+ .arrow-up-down-icon {
34
+ opacity: 0%;
35
+ transition-property: opacity;
36
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
37
+ transition-duration: var(--tw-duration, 150ms);
38
+ }
39
+ @property --tw-font-weight {
40
+ syntax: "*";
41
+ inherits: false;
42
+ }
@@ -0,0 +1,11 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .sort-selector-trigger {
3
+ min-width: calc(0.25rem * 42);
4
+ justify-content: space-between;
5
+ }
6
+ .chevron-down-icon {
7
+ color: var(--color-text-secondary);
8
+ }
9
+ .dropdown-menu-content {
10
+ min-width: calc(0.25rem * 42);
11
+ }
@@ -0,0 +1,82 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .spinner-container {
3
+ position: relative;
4
+ }
5
+ .spinner {
6
+ border-top-color: transparent;
7
+ border-radius: calc(infinity * 1px);
8
+ animation: spin 1s linear infinite;
9
+ position: relative;
10
+ z-index: 10;
11
+ }
12
+ .spinner-background {
13
+ border-color: var(--color-greyscale-800);
14
+ border-radius: calc(infinity * 1px);
15
+ position: absolute;
16
+ inset: calc(0.25rem * 0);
17
+ }
18
+ .spinner-background.xs,
19
+ .spinner.xs {
20
+ width: calc(0.25rem * 4);
21
+ height: calc(0.25rem * 4);
22
+ border-style: var(--tw-border-style);
23
+ border-width: 2px;
24
+ }
25
+ .spinner-background.sm,
26
+ .spinner.sm {
27
+ width: calc(0.25rem * 6);
28
+ height: calc(0.25rem * 6);
29
+ border-style: var(--tw-border-style);
30
+ border-width: 2px;
31
+ }
32
+ .spinner-background.md,
33
+ .spinner.md {
34
+ width: calc(0.25rem * 8);
35
+ height: calc(0.25rem * 8);
36
+ border-style: var(--tw-border-style);
37
+ border-width: 3px;
38
+ }
39
+ .spinner-background.lg,
40
+ .spinner.lg {
41
+ width: calc(0.25rem * 10);
42
+ height: calc(0.25rem * 10);
43
+ border-style: var(--tw-border-style);
44
+ border-width: 3px;
45
+ }
46
+ .spinner-background.xl,
47
+ .spinner.xl {
48
+ width: calc(0.25rem * 12);
49
+ height: calc(0.25rem * 12);
50
+ border-style: var(--tw-border-style);
51
+ border-width: 4px;
52
+ }
53
+ .spinner.neutral {
54
+ border-inline-color: var(--color-text-primary);
55
+ border-bottom-color: var(--color-text-primary);
56
+ }
57
+ .spinner.primary {
58
+ border-inline-color: var(--color-brand-primary);
59
+ border-bottom-color: var(--color-brand-primary);
60
+ }
61
+ .spinner.success {
62
+ border-inline-color: var(--color-brand-green);
63
+ border-bottom-color: var(--color-brand-green);
64
+ }
65
+ .spinner.danger {
66
+ border-inline-color: var(--color-brand-red);
67
+ border-bottom-color: var(--color-brand-red);
68
+ }
69
+ .spinner.warning {
70
+ border-inline-color: var(--color-brand-yellow);
71
+ border-bottom-color: var(--color-brand-yellow);
72
+ }
73
+ @property --tw-border-style {
74
+ syntax: "*";
75
+ inherits: false;
76
+ initial-value: solid;
77
+ }
78
+ @keyframes spin {
79
+ to {
80
+ transform: rotate(360deg);
81
+ }
82
+ }