@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,202 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .drawer-overlay {
3
+ position: fixed;
4
+ inset: calc(0.25rem * 0);
5
+ z-index: 50;
6
+ background-color: var(--color-black);
7
+ @supports (color: color-mix(in lab, red, red)) {
8
+ background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
9
+ }
10
+ --tw-backdrop-blur: blur(4px);
11
+ -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,);
12
+ 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,);
13
+ }
14
+ .drawer-content {
15
+ border-style: var(--tw-border-style);
16
+ border-width: 1px;
17
+ border-color: var(--color-border-overlay);
18
+ background-color: var(--color-background-overlay);
19
+ --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));
20
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
21
+ --tw-shadow-color: rgba(0, 0, 0, 0.1);
22
+ @supports (color: color-mix(in lab, red, red)) {
23
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.1) var(--tw-shadow-alpha), transparent);
24
+ }
25
+ margin-top: calc(0.25rem * 24);
26
+ border-top-left-radius: 10px;
27
+ border-top-right-radius: 10px;
28
+ position: fixed;
29
+ inset-inline: calc(0.25rem * 0);
30
+ bottom: calc(0.25rem * 0);
31
+ z-index: 50;
32
+ height: auto;
33
+ }
34
+ .drawer-content-divider {
35
+ background-color: var(--color-border);
36
+ height: calc(0.25rem * 2);
37
+ width: 100px;
38
+ border-radius: calc(infinity * 1px);
39
+ margin-inline: auto;
40
+ margin-top: calc(0.25rem * 4);
41
+ }
42
+ .drawer-header {
43
+ display: grid;
44
+ grid-template-columns: 1fr auto;
45
+ gap: calc(0.25rem * 1.5);
46
+ &>* {
47
+ grid-column-start: 1;
48
+ }
49
+ padding: calc(0.25rem * 4);
50
+ text-align: center;
51
+ @media (width >= 40rem) {
52
+ text-align: left;
53
+ }
54
+ }
55
+ .drawer-header-actions {
56
+ grid-column-start: 2;
57
+ grid-row: span var(--row-span) / span var(--row-span);
58
+ grid-row-start: 1;
59
+ }
60
+ .drawer-footer {
61
+ margin-top: auto;
62
+ padding: calc(0.25rem * 4);
63
+ display: flex;
64
+ flex-direction: column;
65
+ gap: calc(0.25rem * 2);
66
+ }
67
+ .drawer-title {
68
+ font-size: 1.125rem;
69
+ line-height: var(--tw-leading, calc(1.75 / 1.125));
70
+ --tw-leading: 1;
71
+ line-height: 1;
72
+ --tw-font-weight: 600;
73
+ font-weight: 600;
74
+ --tw-tracking: -0.025em;
75
+ letter-spacing: -0.025em;
76
+ }
77
+ .drawer-description {
78
+ font-size: 0.875rem;
79
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
80
+ color: var(--color-text-secondary);
81
+ }
82
+ .drawer-inner-content {
83
+ padding-inline: calc(0.25rem * 4);
84
+ }
85
+ @property --tw-backdrop-blur {
86
+ syntax: "*";
87
+ inherits: false;
88
+ }
89
+ @property --tw-backdrop-brightness {
90
+ syntax: "*";
91
+ inherits: false;
92
+ }
93
+ @property --tw-backdrop-contrast {
94
+ syntax: "*";
95
+ inherits: false;
96
+ }
97
+ @property --tw-backdrop-grayscale {
98
+ syntax: "*";
99
+ inherits: false;
100
+ }
101
+ @property --tw-backdrop-hue-rotate {
102
+ syntax: "*";
103
+ inherits: false;
104
+ }
105
+ @property --tw-backdrop-invert {
106
+ syntax: "*";
107
+ inherits: false;
108
+ }
109
+ @property --tw-backdrop-opacity {
110
+ syntax: "*";
111
+ inherits: false;
112
+ }
113
+ @property --tw-backdrop-saturate {
114
+ syntax: "*";
115
+ inherits: false;
116
+ }
117
+ @property --tw-backdrop-sepia {
118
+ syntax: "*";
119
+ inherits: false;
120
+ }
121
+ @property --tw-border-style {
122
+ syntax: "*";
123
+ inherits: false;
124
+ initial-value: solid;
125
+ }
126
+ @property --tw-shadow {
127
+ syntax: "*";
128
+ inherits: false;
129
+ initial-value: 0 0 #0000;
130
+ }
131
+ @property --tw-shadow-color {
132
+ syntax: "*";
133
+ inherits: false;
134
+ }
135
+ @property --tw-shadow-alpha {
136
+ syntax: "<percentage>";
137
+ inherits: false;
138
+ initial-value: 100%;
139
+ }
140
+ @property --tw-inset-shadow {
141
+ syntax: "*";
142
+ inherits: false;
143
+ initial-value: 0 0 #0000;
144
+ }
145
+ @property --tw-inset-shadow-color {
146
+ syntax: "*";
147
+ inherits: false;
148
+ }
149
+ @property --tw-inset-shadow-alpha {
150
+ syntax: "<percentage>";
151
+ inherits: false;
152
+ initial-value: 100%;
153
+ }
154
+ @property --tw-ring-color {
155
+ syntax: "*";
156
+ inherits: false;
157
+ }
158
+ @property --tw-ring-shadow {
159
+ syntax: "*";
160
+ inherits: false;
161
+ initial-value: 0 0 #0000;
162
+ }
163
+ @property --tw-inset-ring-color {
164
+ syntax: "*";
165
+ inherits: false;
166
+ }
167
+ @property --tw-inset-ring-shadow {
168
+ syntax: "*";
169
+ inherits: false;
170
+ initial-value: 0 0 #0000;
171
+ }
172
+ @property --tw-ring-inset {
173
+ syntax: "*";
174
+ inherits: false;
175
+ }
176
+ @property --tw-ring-offset-width {
177
+ syntax: "<length>";
178
+ inherits: false;
179
+ initial-value: 0px;
180
+ }
181
+ @property --tw-ring-offset-color {
182
+ syntax: "*";
183
+ inherits: false;
184
+ initial-value: #fff;
185
+ }
186
+ @property --tw-ring-offset-shadow {
187
+ syntax: "*";
188
+ inherits: false;
189
+ initial-value: 0 0 #0000;
190
+ }
191
+ @property --tw-leading {
192
+ syntax: "*";
193
+ inherits: false;
194
+ }
195
+ @property --tw-font-weight {
196
+ syntax: "*";
197
+ inherits: false;
198
+ }
199
+ @property --tw-tracking {
200
+ syntax: "*";
201
+ inherits: false;
202
+ }
@@ -0,0 +1,271 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .dropdown-menu-inset {
3
+ padding-left: calc(0.25rem * 8);
4
+ }
5
+ .dropdown-menu-sub-content,
6
+ .dropdown-menu-content {
7
+ border-style: var(--tw-border-style);
8
+ border-width: 1px;
9
+ border-color: var(--color-border);
10
+ background-color: var(--color-background-floating);
11
+ color: var(--color-text-primary);
12
+ z-index: 50;
13
+ border-radius: var(--radius-md, 0.375rem);
14
+ padding: calc(0.25rem * 1);
15
+ overflow-x: hidden;
16
+ overflow-y: auto;
17
+ max-height: calc(0.25rem * 80);
18
+ min-width: calc(0.25rem * 32);
19
+ &[data-side="bottom"] {
20
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
21
+ }
22
+ &[data-side="left"] {
23
+ --tw-enter-translate-x: calc(2*var(--spacing));
24
+ }
25
+ &[data-side="right"] {
26
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
27
+ }
28
+ &[data-side="top"] {
29
+ --tw-enter-translate-y: calc(2*var(--spacing));
30
+ }
31
+ &[data-state="open"] {
32
+ 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);
33
+ }
34
+ &[data-state="open"] {
35
+ --tw-enter-opacity: calc(0/100);
36
+ --tw-enter-opacity: 0;
37
+ }
38
+ &[data-state="open"] {
39
+ --tw-enter-scale: calc(95*1%);
40
+ --tw-enter-scale: .95;
41
+ }
42
+ &[data-state="closed"] {
43
+ 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);
44
+ }
45
+ &[data-state="closed"] {
46
+ --tw-exit-opacity: calc(0/100);
47
+ --tw-exit-opacity: 0;
48
+ }
49
+ &[data-state="closed"] {
50
+ --tw-exit-scale: calc(95*1%);
51
+ --tw-exit-scale: .95;
52
+ }
53
+ transform-origin: var(--radix-dropdown-menu-content-transform-origin);
54
+ max-height: var(--radix-dropdown-menu-content-available-height);
55
+ }
56
+ .dropdown-menu-trigger,
57
+ .dropdown-menu-item {
58
+ padding-inline: calc(0.25rem * 2);
59
+ padding-block: calc(0.25rem * 1.5);
60
+ gap: calc(0.25rem * 2);
61
+ & svg {
62
+ pointer-events: none;
63
+ }
64
+ & svg {
65
+ width: calc(0.25rem * 4);
66
+ height: calc(0.25rem * 4);
67
+ }
68
+ & svg {
69
+ flex-shrink: 0;
70
+ }
71
+ }
72
+ .dropdown-menu-checkbox-item,
73
+ .dropdown-menu-radio-item {
74
+ padding-block: calc(0.25rem * 1.5);
75
+ padding-right: calc(0.25rem * 2);
76
+ padding-left: calc(0.25rem * 8);
77
+ }
78
+ .dropdown-menu-trigger,
79
+ .dropdown-menu-item,
80
+ .dropdown-menu-checkbox-item,
81
+ .dropdown-menu-radio-item {
82
+ --mix-color: var(--color-background);
83
+ cursor: pointer;
84
+ display: flex;
85
+ align-items: center;
86
+ font-size: 0.875rem;
87
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
88
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
89
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
90
+ transition-duration: var(--tw-duration, 150ms);
91
+ position: relative;
92
+ border-radius: 0.25rem;
93
+ --tw-outline-style: none;
94
+ outline-style: none;
95
+ @media (forced-colors: active) {
96
+ outline: 2px solid transparent;
97
+ outline-offset: 2px;
98
+ }
99
+ -webkit-user-select: none;
100
+ user-select: none;
101
+ &:hover {
102
+ @media (hover: hover) {
103
+ &:not(*:disabled) {
104
+ background-color: var(--mix-color);
105
+ @supports (color: color-mix(in lab, red, red)) {
106
+ background-color: color-mix(in oklch, var(--mix-color), white var(--hover-lighten, 20%));
107
+ }
108
+ }
109
+ }
110
+ }
111
+ &:focus {
112
+ background-color: var(--mix-color);
113
+ @supports (color: color-mix(in lab, red, red)) {
114
+ background-color: color-mix(in oklch, var(--mix-color), white var(--hover-lighten, 20%));
115
+ }
116
+ }
117
+ &[data-disabled] {
118
+ pointer-events: none;
119
+ }
120
+ &[data-disabled] {
121
+ opacity: 50%;
122
+ }
123
+ }
124
+ .dropdown-menu-item-indicator-checkbox,
125
+ .dropdown-menu-item-indicator-radio {
126
+ position: absolute;
127
+ left: calc(0.25rem * 2);
128
+ width: calc(0.25rem * 3.5);
129
+ height: calc(0.25rem * 3.5);
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: center;
133
+ border-style: var(--tw-border-style);
134
+ border-width: 1px;
135
+ border-color: var(--color-text-secondary);
136
+ }
137
+ .dropdown-menu-item-indicator-checkbox {
138
+ border-radius: 0.25rem;
139
+ }
140
+ .dropdown-menu-item-indicator-radio {
141
+ border-radius: calc(infinity * 1px);
142
+ }
143
+ .icon-size {
144
+ width: calc(0.25rem * 3);
145
+ height: calc(0.25rem * 3);
146
+ }
147
+ .radio-icon {
148
+ width: calc(0.25rem * 2);
149
+ height: calc(0.25rem * 2);
150
+ fill: currentcolor;
151
+ }
152
+ .dropdown-menu-label {
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: space-between;
156
+ gap: calc(0.25rem * 2);
157
+ padding-inline: calc(0.25rem * 2);
158
+ padding-block: calc(0.25rem * 1.5);
159
+ font-size: 0.875rem;
160
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
161
+ --tw-font-weight: 500;
162
+ font-weight: 500;
163
+ }
164
+ .dropdown-menu-separator {
165
+ background-color: var(--color-border);
166
+ margin-inline: calc(0.25rem * -1);
167
+ margin-block: calc(0.25rem * 1);
168
+ height: 1px;
169
+ }
170
+ .dropdown-menu-shortcut {
171
+ font-size: 0.75rem;
172
+ line-height: var(--tw-leading, calc(1 / 0.75));
173
+ color: var(--color-text-secondary);
174
+ margin-left: auto;
175
+ }
176
+ .dropdown-menu-content {
177
+ border-color: var(--color-border-floating);
178
+ background-color: var(--color-background-floating);
179
+ --tw-shadow-color: rgba(0, 0, 0, 0.15);
180
+ @supports (color: color-mix(in lab, red, red)) {
181
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.15) var(--tw-shadow-alpha), transparent);
182
+ }
183
+ }
184
+ @property --tw-border-style {
185
+ syntax: "*";
186
+ inherits: false;
187
+ initial-value: solid;
188
+ }
189
+ @property --tw-font-weight {
190
+ syntax: "*";
191
+ inherits: false;
192
+ }
193
+ @property --tw-shadow {
194
+ syntax: "*";
195
+ inherits: false;
196
+ initial-value: 0 0 #0000;
197
+ }
198
+ @property --tw-shadow-color {
199
+ syntax: "*";
200
+ inherits: false;
201
+ }
202
+ @property --tw-shadow-alpha {
203
+ syntax: "<percentage>";
204
+ inherits: false;
205
+ initial-value: 100%;
206
+ }
207
+ @property --tw-inset-shadow {
208
+ syntax: "*";
209
+ inherits: false;
210
+ initial-value: 0 0 #0000;
211
+ }
212
+ @property --tw-inset-shadow-color {
213
+ syntax: "*";
214
+ inherits: false;
215
+ }
216
+ @property --tw-inset-shadow-alpha {
217
+ syntax: "<percentage>";
218
+ inherits: false;
219
+ initial-value: 100%;
220
+ }
221
+ @property --tw-ring-color {
222
+ syntax: "*";
223
+ inherits: false;
224
+ }
225
+ @property --tw-ring-shadow {
226
+ syntax: "*";
227
+ inherits: false;
228
+ initial-value: 0 0 #0000;
229
+ }
230
+ @property --tw-inset-ring-color {
231
+ syntax: "*";
232
+ inherits: false;
233
+ }
234
+ @property --tw-inset-ring-shadow {
235
+ syntax: "*";
236
+ inherits: false;
237
+ initial-value: 0 0 #0000;
238
+ }
239
+ @property --tw-ring-inset {
240
+ syntax: "*";
241
+ inherits: false;
242
+ }
243
+ @property --tw-ring-offset-width {
244
+ syntax: "<length>";
245
+ inherits: false;
246
+ initial-value: 0px;
247
+ }
248
+ @property --tw-ring-offset-color {
249
+ syntax: "*";
250
+ inherits: false;
251
+ initial-value: #fff;
252
+ }
253
+ @property --tw-ring-offset-shadow {
254
+ syntax: "*";
255
+ inherits: false;
256
+ initial-value: 0 0 #0000;
257
+ }
258
+ @keyframes enter {
259
+ from {
260
+ opacity: var(--tw-enter-opacity,1);
261
+ 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));
262
+ filter: blur(var(--tw-enter-blur,0));
263
+ }
264
+ }
265
+ @keyframes exit {
266
+ to {
267
+ opacity: var(--tw-exit-opacity,1);
268
+ 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));
269
+ filter: blur(var(--tw-exit-blur,0));
270
+ }
271
+ }
@@ -0,0 +1,34 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .empty-table-state {
3
+ display: flex;
4
+ flex-direction: column;
5
+ align-items: center;
6
+ justify-content: center;
7
+ gap: calc(0.25rem * 1);
8
+ text-align: center;
9
+ }
10
+ .icon-and-title-container {
11
+ display: flex;
12
+ flex-direction: column;
13
+ align-items: center;
14
+ gap: calc(0.25rem * 4);
15
+ color: var(--color-text-primary);
16
+ }
17
+ .title {
18
+ font-size: 0.875rem;
19
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
20
+ --tw-font-weight: 500;
21
+ font-weight: 500;
22
+ }
23
+ .description {
24
+ font-size: 0.875rem;
25
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
26
+ color: var(--color-text-secondary);
27
+ }
28
+ .clear-button {
29
+ margin-top: calc(0.25rem * 2);
30
+ }
31
+ @property --tw-font-weight {
32
+ syntax: "*";
33
+ inherits: false;
34
+ }
@@ -0,0 +1,18 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .selector-button {
3
+ min-width: calc(0.25rem * 32);
4
+ justify-content: space-between;
5
+ }
6
+ .selector-button-inner {
7
+ display: flex;
8
+ align-items: center;
9
+ gap: calc(0.25rem * 1);
10
+ }
11
+ .chevron-icon {
12
+ color: var(--color-text-secondary);
13
+ }
14
+ .dropdown-menu-content {
15
+ max-height: calc(0.25rem * 80);
16
+ width: calc(0.25rem * 56);
17
+ overflow: auto;
18
+ }
@@ -0,0 +1,35 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .form-item {
3
+ :where(& > :not(:last-child)) {
4
+ --tw-space-y-reverse: 0;
5
+ margin-block-start: calc(calc(0.25rem * 2) * var(--tw-space-y-reverse));
6
+ margin-block-end: calc(calc(0.25rem * 2) * calc(1 - var(--tw-space-y-reverse)));
7
+ }
8
+ }
9
+ .form-label {
10
+ display: inline-block;
11
+ }
12
+ .form-label--failure {
13
+ color: var(--color-button-danger-text);
14
+ }
15
+ .form-description {
16
+ font-size: 0.875rem;
17
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
18
+ color: var(--color-text-secondary);
19
+ }
20
+ .form-message {
21
+ font-size: 0.875rem;
22
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
23
+ --tw-font-weight: 500;
24
+ font-weight: 500;
25
+ color: var(--color-button-danger-text);
26
+ }
27
+ @property --tw-space-y-reverse {
28
+ syntax: "*";
29
+ inherits: false;
30
+ initial-value: 0;
31
+ }
32
+ @property --tw-font-weight {
33
+ syntax: "*";
34
+ inherits: false;
35
+ }