@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,362 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .select-trigger {
3
+ font-size: 0.875rem;
4
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
5
+ padding-inline: calc(0.25rem * 3);
6
+ padding-block: calc(0.25rem * 2);
7
+ height: calc(0.25rem * 10);
8
+ width: 100%;
9
+ border-radius: var(--radius-md, 0.375rem);
10
+ border-style: var(--tw-border-style);
11
+ border-width: 1px;
12
+ border-color: var(--color-button-tertiary-border);
13
+ background-color: var(--color-button-tertiary-fill);
14
+ display: flex;
15
+ align-items: center;
16
+ justify-content: space-between;
17
+ gap: calc(0.25rem * 2);
18
+ --tw-ring-offset-color: var(--color-background);
19
+ &:focus-visible {
20
+ --tw-ring-color: var(--color-focus-ring);
21
+ }
22
+ &:focus-visible {
23
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
24
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
25
+ }
26
+ &:focus-visible {
27
+ --tw-ring-offset-width: 2px;
28
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
29
+ }
30
+ &:focus-visible {
31
+ --tw-outline-style: none;
32
+ outline-style: none;
33
+ }
34
+ &[data-placeholder] {
35
+ color: var(--color-text-secondary);
36
+ }
37
+ &:disabled {
38
+ cursor: not-allowed;
39
+ }
40
+ &:disabled {
41
+ opacity: 50%;
42
+ }
43
+ &>span {
44
+ overflow: hidden;
45
+ display: -webkit-box;
46
+ -webkit-box-orient: vertical;
47
+ -webkit-line-clamp: 1;
48
+ }
49
+ }
50
+ .select-icon {
51
+ width: calc(0.25rem * 4);
52
+ height: calc(0.25rem * 4);
53
+ }
54
+ .select-icon--low-opacity {
55
+ opacity: 50%;
56
+ }
57
+ .select-scroll-button {
58
+ cursor: default;
59
+ padding-block: calc(0.25rem * 1);
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ }
64
+ .select-content {
65
+ border-style: var(--tw-border-style);
66
+ border-width: 1px;
67
+ border-color: var(--color-border);
68
+ background-color: var(--color-background-floating);
69
+ color: var(--color-text-primary);
70
+ z-index: 50;
71
+ border-radius: var(--radius-md, 0.375rem);
72
+ padding: calc(0.25rem * 1);
73
+ overflow-x: hidden;
74
+ overflow-y: auto;
75
+ max-height: calc(0.25rem * 80);
76
+ min-width: calc(0.25rem * 32);
77
+ &[data-side="bottom"] {
78
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
79
+ }
80
+ &[data-side="left"] {
81
+ --tw-enter-translate-x: calc(2*var(--spacing));
82
+ }
83
+ &[data-side="right"] {
84
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
85
+ }
86
+ &[data-side="top"] {
87
+ --tw-enter-translate-y: calc(2*var(--spacing));
88
+ }
89
+ &[data-state="open"] {
90
+ 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);
91
+ }
92
+ &[data-state="open"] {
93
+ --tw-enter-opacity: calc(0/100);
94
+ --tw-enter-opacity: 0;
95
+ }
96
+ &[data-state="open"] {
97
+ --tw-enter-scale: calc(95*1%);
98
+ --tw-enter-scale: .95;
99
+ }
100
+ &[data-state="closed"] {
101
+ 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);
102
+ }
103
+ &[data-state="closed"] {
104
+ --tw-exit-opacity: calc(0/100);
105
+ --tw-exit-opacity: 0;
106
+ }
107
+ &[data-state="closed"] {
108
+ --tw-exit-scale: calc(95*1%);
109
+ --tw-exit-scale: .95;
110
+ }
111
+ max-height: var(--radix-select-content-available-height);
112
+ transform-origin: var(--radix-select-content-transform-origin);
113
+ }
114
+ .select-content--popper {
115
+ &[data-side="bottom"] {
116
+ --tw-translate-y: calc(0.25rem * 1);
117
+ translate: var(--tw-translate-x) var(--tw-translate-y);
118
+ }
119
+ &[data-side="left"] {
120
+ --tw-translate-x: calc(0.25rem * -1);
121
+ translate: var(--tw-translate-x) var(--tw-translate-y);
122
+ }
123
+ &[data-side="right"] {
124
+ --tw-translate-x: calc(0.25rem * 1);
125
+ translate: var(--tw-translate-x) var(--tw-translate-y);
126
+ }
127
+ &[data-side="top"] {
128
+ --tw-translate-y: calc(0.25rem * -1);
129
+ translate: var(--tw-translate-x) var(--tw-translate-y);
130
+ }
131
+ }
132
+ .select-viewport--popper {
133
+ height: var(--radix-select-trigger-height);
134
+ width: 100%;
135
+ min-width: var(--radix-select-trigger-width);
136
+ }
137
+ .select-label {
138
+ font-size: 0.875rem;
139
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
140
+ --tw-font-weight: 600;
141
+ font-weight: 600;
142
+ padding-inline: calc(0.25rem * 2);
143
+ padding-block: calc(0.25rem * 1.5);
144
+ }
145
+ .select-item {
146
+ --mix-color: var(--color-background);
147
+ cursor: pointer;
148
+ display: flex;
149
+ align-items: center;
150
+ font-size: 0.875rem;
151
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
152
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
153
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
154
+ transition-duration: var(--tw-duration, 150ms);
155
+ border-radius: 0.25rem;
156
+ --tw-outline-style: none;
157
+ outline-style: none;
158
+ @media (forced-colors: active) {
159
+ outline: 2px solid transparent;
160
+ outline-offset: 2px;
161
+ }
162
+ -webkit-user-select: none;
163
+ user-select: none;
164
+ &:hover {
165
+ @media (hover: hover) {
166
+ &:not(*:disabled) {
167
+ background-color: var(--mix-color);
168
+ @supports (color: color-mix(in lab, red, red)) {
169
+ background-color: color-mix(in oklch, var(--mix-color), white var(--hover-lighten, 20%));
170
+ }
171
+ }
172
+ }
173
+ }
174
+ &:focus {
175
+ background-color: var(--mix-color);
176
+ @supports (color: color-mix(in lab, red, red)) {
177
+ background-color: color-mix(in oklch, var(--mix-color), white var(--hover-lighten, 20%));
178
+ }
179
+ }
180
+ &[data-disabled] {
181
+ pointer-events: none;
182
+ }
183
+ &[data-disabled] {
184
+ opacity: 50%;
185
+ }
186
+ padding-block: calc(0.25rem * 1.5);
187
+ padding-right: calc(0.25rem * 2);
188
+ padding-left: calc(0.25rem * 2);
189
+ position: relative;
190
+ gap: calc(0.25rem * 2);
191
+ }
192
+ .select-item-indicator {
193
+ display: flex;
194
+ align-items: center;
195
+ justify-content: center;
196
+ width: calc(0.25rem * 3.5);
197
+ height: calc(0.25rem * 3.5);
198
+ }
199
+ .select-separator {
200
+ background-color: var(--color-border);
201
+ margin-inline: calc(0.25rem * -1);
202
+ margin-block: calc(0.25rem * 1);
203
+ height: 1px;
204
+ }
205
+ .select-content--sunken {
206
+ border-color: var(--color-border-sunken);
207
+ background-color: var(--color-background-sunken);
208
+ --tw-shadow-color: rgba(0, 0, 0, 0.05);
209
+ @supports (color: color-mix(in lab, red, red)) {
210
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
211
+ }
212
+ }
213
+ .select-content--sunken .select-item {
214
+ --mix-color: var(--color-background-sunken);
215
+ }
216
+ .select-content--base {
217
+ border-color: var(--color-border-base);
218
+ background-color: var(--color-background);
219
+ --tw-shadow-color: transparent;
220
+ @supports (color: color-mix(in lab, red, red)) {
221
+ --tw-shadow-color: color-mix(in oklab, transparent var(--tw-shadow-alpha), transparent);
222
+ }
223
+ }
224
+ .select-content--base .select-item {
225
+ --mix-color: var(--color-background);
226
+ }
227
+ .select-content--raised {
228
+ border-color: var(--color-border-raised);
229
+ background-color: var(--color-background-raised);
230
+ --tw-shadow-color: rgba(0, 0, 0, 0.05);
231
+ @supports (color: color-mix(in lab, red, red)) {
232
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
233
+ }
234
+ }
235
+ .select-content--raised .select-item {
236
+ --mix-color: var(--color-background-raised);
237
+ }
238
+ .select-content--overlay {
239
+ border-color: var(--color-border-overlay);
240
+ background-color: var(--color-background-overlay);
241
+ --tw-shadow-color: rgba(0, 0, 0, 0.1);
242
+ @supports (color: color-mix(in lab, red, red)) {
243
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.1) var(--tw-shadow-alpha), transparent);
244
+ }
245
+ }
246
+ .select-content--overlay .select-item {
247
+ --mix-color: var(--color-background-overlay);
248
+ }
249
+ .select-content--floating {
250
+ border-color: var(--color-border-floating);
251
+ background-color: var(--color-background-floating);
252
+ --tw-shadow-color: rgba(0, 0, 0, 0.15);
253
+ @supports (color: color-mix(in lab, red, red)) {
254
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.15) var(--tw-shadow-alpha), transparent);
255
+ }
256
+ }
257
+ .select-content--floating .select-item {
258
+ --mix-color: var(--color-background-floating);
259
+ }
260
+ @property --tw-border-style {
261
+ syntax: "*";
262
+ inherits: false;
263
+ initial-value: solid;
264
+ }
265
+ @property --tw-shadow {
266
+ syntax: "*";
267
+ inherits: false;
268
+ initial-value: 0 0 #0000;
269
+ }
270
+ @property --tw-shadow-color {
271
+ syntax: "*";
272
+ inherits: false;
273
+ }
274
+ @property --tw-shadow-alpha {
275
+ syntax: "<percentage>";
276
+ inherits: false;
277
+ initial-value: 100%;
278
+ }
279
+ @property --tw-inset-shadow {
280
+ syntax: "*";
281
+ inherits: false;
282
+ initial-value: 0 0 #0000;
283
+ }
284
+ @property --tw-inset-shadow-color {
285
+ syntax: "*";
286
+ inherits: false;
287
+ }
288
+ @property --tw-inset-shadow-alpha {
289
+ syntax: "<percentage>";
290
+ inherits: false;
291
+ initial-value: 100%;
292
+ }
293
+ @property --tw-ring-color {
294
+ syntax: "*";
295
+ inherits: false;
296
+ }
297
+ @property --tw-ring-shadow {
298
+ syntax: "*";
299
+ inherits: false;
300
+ initial-value: 0 0 #0000;
301
+ }
302
+ @property --tw-inset-ring-color {
303
+ syntax: "*";
304
+ inherits: false;
305
+ }
306
+ @property --tw-inset-ring-shadow {
307
+ syntax: "*";
308
+ inherits: false;
309
+ initial-value: 0 0 #0000;
310
+ }
311
+ @property --tw-ring-inset {
312
+ syntax: "*";
313
+ inherits: false;
314
+ }
315
+ @property --tw-ring-offset-width {
316
+ syntax: "<length>";
317
+ inherits: false;
318
+ initial-value: 0px;
319
+ }
320
+ @property --tw-ring-offset-color {
321
+ syntax: "*";
322
+ inherits: false;
323
+ initial-value: #fff;
324
+ }
325
+ @property --tw-ring-offset-shadow {
326
+ syntax: "*";
327
+ inherits: false;
328
+ initial-value: 0 0 #0000;
329
+ }
330
+ @property --tw-translate-x {
331
+ syntax: "*";
332
+ inherits: false;
333
+ initial-value: 0;
334
+ }
335
+ @property --tw-translate-y {
336
+ syntax: "*";
337
+ inherits: false;
338
+ initial-value: 0;
339
+ }
340
+ @property --tw-translate-z {
341
+ syntax: "*";
342
+ inherits: false;
343
+ initial-value: 0;
344
+ }
345
+ @property --tw-font-weight {
346
+ syntax: "*";
347
+ inherits: false;
348
+ }
349
+ @keyframes enter {
350
+ from {
351
+ opacity: var(--tw-enter-opacity,1);
352
+ 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));
353
+ filter: blur(var(--tw-enter-blur,0));
354
+ }
355
+ }
356
+ @keyframes exit {
357
+ to {
358
+ opacity: var(--tw-exit-opacity,1);
359
+ 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));
360
+ filter: blur(var(--tw-exit-blur,0));
361
+ }
362
+ }
@@ -0,0 +1,13 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .separator {
3
+ flex-shrink: 0;
4
+ background-color: var(--color-border);
5
+ }
6
+ .separator--horizontal {
7
+ height: 1px;
8
+ width: 100%;
9
+ }
10
+ .separator--vertical {
11
+ height: 100%;
12
+ width: 1px;
13
+ }