@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,25 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .info-card-content {
3
+ display: flex;
4
+ align-items: center;
5
+ gap: calc(0.25rem * 3);
6
+ }
7
+ .copy-container {
8
+ flex: 1;
9
+ }
10
+ .label {
11
+ font-size: 0.75rem;
12
+ line-height: var(--tw-leading, calc(1 / 0.75));
13
+ color: var(--color-text-secondary);
14
+ }
15
+ .description {
16
+ font-size: 0.875rem;
17
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
18
+ --tw-font-weight: 600;
19
+ font-weight: 600;
20
+ color: var(--color-text-primary);
21
+ }
22
+ @property --tw-font-weight {
23
+ syntax: "*";
24
+ inherits: false;
25
+ }
@@ -0,0 +1,231 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .input {
3
+ --tw-outline-style: none;
4
+ outline-style: none;
5
+ @media (forced-colors: active) {
6
+ outline: 2px solid transparent;
7
+ outline-offset: 2px;
8
+ }
9
+ border-style: var(--tw-border-style);
10
+ border-width: 1px;
11
+ border-color: var(--color-border);
12
+ background-color: var(--color-popover-background);
13
+ padding: calc(0.25rem * 2);
14
+ display: flex;
15
+ height: calc(0.25rem * 10);
16
+ width: 100%;
17
+ border-radius: 0.5rem;
18
+ color: var(--color-text-primary);
19
+ &::placeholder {
20
+ color: var(--color-text-secondary);
21
+ }
22
+ font-size: 0.875rem;
23
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
24
+ &::file-selector-button {
25
+ --tw-font-weight: 500;
26
+ font-weight: 500;
27
+ }
28
+ &::file-selector-button {
29
+ color: var(--color-text-primary);
30
+ }
31
+ &::file-selector-button {
32
+ border-style: var(--tw-border-style);
33
+ border-width: 0px;
34
+ }
35
+ &::file-selector-button {
36
+ background-color: transparent;
37
+ }
38
+ &::file-selector-button {
39
+ font-size: 0.875rem;
40
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
41
+ }
42
+ &:disabled {
43
+ cursor: not-allowed;
44
+ }
45
+ &:disabled {
46
+ opacity: 50%;
47
+ }
48
+ --tw-ring-offset-color: var(--color-background);
49
+ &:focus-visible {
50
+ --tw-ring-color: var(--color-focus-ring);
51
+ }
52
+ &:focus-visible {
53
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
54
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
55
+ }
56
+ &:focus-visible {
57
+ --tw-ring-offset-width: 2px;
58
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
59
+ }
60
+ &:focus-visible {
61
+ --tw-outline-style: none;
62
+ outline-style: none;
63
+ }
64
+ }
65
+ .input-wrapper {
66
+ border-style: var(--tw-border-style);
67
+ border-width: 1px;
68
+ border-color: var(--color-border);
69
+ background-color: var(--color-popover-background);
70
+ display: flex;
71
+ height: calc(0.25rem * 10);
72
+ width: 100%;
73
+ align-items: center;
74
+ gap: calc(0.25rem * 2);
75
+ border-radius: 0.5rem;
76
+ padding: calc(0.25rem * 2);
77
+ &:has(*:is(:disabled)) {
78
+ cursor: not-allowed;
79
+ }
80
+ &:has(*:is(:disabled)) {
81
+ opacity: 50%;
82
+ }
83
+ &:has(*:is(:focus)) {
84
+ --tw-ring-offset-color: var(--color-background);
85
+ &:focus-visible {
86
+ --tw-ring-color: var(--color-focus-ring);
87
+ }
88
+ &:focus-visible {
89
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
90
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
91
+ }
92
+ &:focus-visible {
93
+ --tw-ring-offset-width: 2px;
94
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
95
+ }
96
+ &:focus-visible {
97
+ --tw-outline-style: none;
98
+ outline-style: none;
99
+ }
100
+ }
101
+ & svg {
102
+ pointer-events: none;
103
+ }
104
+ & svg {
105
+ width: calc(0.25rem * 4);
106
+ height: calc(0.25rem * 4);
107
+ }
108
+ & svg {
109
+ flex-shrink: 0;
110
+ }
111
+ & svg {
112
+ color: var(--color-text-secondary);
113
+ }
114
+ }
115
+ .input-element {
116
+ --tw-outline-style: none;
117
+ outline-style: none;
118
+ @media (forced-colors: active) {
119
+ outline: 2px solid transparent;
120
+ outline-offset: 2px;
121
+ }
122
+ background-color: transparent;
123
+ flex: 1;
124
+ color: var(--color-text-primary);
125
+ &::placeholder {
126
+ color: var(--color-text-secondary);
127
+ }
128
+ font-size: 0.875rem;
129
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
130
+ &::file-selector-button {
131
+ --tw-font-weight: 500;
132
+ font-weight: 500;
133
+ }
134
+ &::file-selector-button {
135
+ color: var(--color-text-primary);
136
+ }
137
+ &::file-selector-button {
138
+ border-style: var(--tw-border-style);
139
+ border-width: 0px;
140
+ }
141
+ &::file-selector-button {
142
+ background-color: transparent;
143
+ }
144
+ &::file-selector-button {
145
+ font-size: 0.875rem;
146
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
147
+ }
148
+ &:disabled {
149
+ cursor: not-allowed;
150
+ }
151
+ }
152
+ .input-prefix,
153
+ .input-suffix {
154
+ display: flex;
155
+ align-items: center;
156
+ color: var(--color-text-secondary);
157
+ }
158
+ @property --tw-border-style {
159
+ syntax: "*";
160
+ inherits: false;
161
+ initial-value: solid;
162
+ }
163
+ @property --tw-font-weight {
164
+ syntax: "*";
165
+ inherits: false;
166
+ }
167
+ @property --tw-shadow {
168
+ syntax: "*";
169
+ inherits: false;
170
+ initial-value: 0 0 #0000;
171
+ }
172
+ @property --tw-shadow-color {
173
+ syntax: "*";
174
+ inherits: false;
175
+ }
176
+ @property --tw-shadow-alpha {
177
+ syntax: "<percentage>";
178
+ inherits: false;
179
+ initial-value: 100%;
180
+ }
181
+ @property --tw-inset-shadow {
182
+ syntax: "*";
183
+ inherits: false;
184
+ initial-value: 0 0 #0000;
185
+ }
186
+ @property --tw-inset-shadow-color {
187
+ syntax: "*";
188
+ inherits: false;
189
+ }
190
+ @property --tw-inset-shadow-alpha {
191
+ syntax: "<percentage>";
192
+ inherits: false;
193
+ initial-value: 100%;
194
+ }
195
+ @property --tw-ring-color {
196
+ syntax: "*";
197
+ inherits: false;
198
+ }
199
+ @property --tw-ring-shadow {
200
+ syntax: "*";
201
+ inherits: false;
202
+ initial-value: 0 0 #0000;
203
+ }
204
+ @property --tw-inset-ring-color {
205
+ syntax: "*";
206
+ inherits: false;
207
+ }
208
+ @property --tw-inset-ring-shadow {
209
+ syntax: "*";
210
+ inherits: false;
211
+ initial-value: 0 0 #0000;
212
+ }
213
+ @property --tw-ring-inset {
214
+ syntax: "*";
215
+ inherits: false;
216
+ }
217
+ @property --tw-ring-offset-width {
218
+ syntax: "<length>";
219
+ inherits: false;
220
+ initial-value: 0px;
221
+ }
222
+ @property --tw-ring-offset-color {
223
+ syntax: "*";
224
+ inherits: false;
225
+ initial-value: #fff;
226
+ }
227
+ @property --tw-ring-offset-shadow {
228
+ syntax: "*";
229
+ inherits: false;
230
+ initial-value: 0 0 #0000;
231
+ }
@@ -0,0 +1,23 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .label {
3
+ font-size: 0.875rem;
4
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
5
+ --tw-leading: 1;
6
+ line-height: 1;
7
+ --tw-font-weight: 500;
8
+ font-weight: 500;
9
+ &:is(:where(.peer):disabled ~ *) {
10
+ cursor: not-allowed;
11
+ }
12
+ &:is(:where(.peer):disabled ~ *) {
13
+ opacity: 70%;
14
+ }
15
+ }
16
+ @property --tw-leading {
17
+ syntax: "*";
18
+ inherits: false;
19
+ }
20
+ @property --tw-font-weight {
21
+ syntax: "*";
22
+ inherits: false;
23
+ }
@@ -0,0 +1,52 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .list-or-grid-view-toggle {
3
+ border-style: var(--tw-border-style);
4
+ border-width: 1px;
5
+ border-color: var(--color-button-tertiary-border);
6
+ display: flex;
7
+ border-radius: var(--radius-md, 0.375rem);
8
+ width: max-content;
9
+ overflow: hidden;
10
+ background-color: var(--color-button-tertiary-fill);
11
+ position: relative;
12
+ }
13
+ .icon-button {
14
+ border-radius: 0 !important;
15
+ border-style: var(--tw-border-style);
16
+ border-width: 0px;
17
+ position: relative;
18
+ z-index: 10;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: center;
22
+ width: calc(0.25rem * 8);
23
+ height: calc(0.25rem * 8);
24
+ cursor: pointer;
25
+ background-color: transparent;
26
+ }
27
+ .icon-button--active {
28
+ color: var(--color-button-primary-text);
29
+ }
30
+ .icon-button--inactive {
31
+ color: var(--color-text-secondary);
32
+ &:hover {
33
+ @media (hover: hover) {
34
+ color: var(--color-text-primary);
35
+ }
36
+ }
37
+ }
38
+ .active-button-indicator {
39
+ position: absolute;
40
+ top: calc(0.25rem * 0);
41
+ bottom: calc(0.25rem * 0);
42
+ left: calc(0.25rem * 0);
43
+ background-color: var(--color-button-primary-fill);
44
+ transition-property: transform, translate, scale, rotate;
45
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
46
+ transition-duration: var(--tw-duration, 150ms);
47
+ }
48
+ @property --tw-border-style {
49
+ syntax: "*";
50
+ inherits: false;
51
+ initial-value: solid;
52
+ }
@@ -0,0 +1,151 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .loading-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
+ display: flex;
14
+ align-items: center;
15
+ justify-content: center;
16
+ }
17
+ .content {
18
+ border-radius: 0.5rem;
19
+ background-color: var(--color-background);
20
+ padding: calc(0.25rem * 6);
21
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
22
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
26
+ flex-direction: column;
27
+ }
28
+ .icon {
29
+ height: calc(0.25rem * 10);
30
+ width: calc(0.25rem * 10);
31
+ animation: spin 1s linear infinite;
32
+ color: var(--color-brand-primary);
33
+ }
34
+ .message {
35
+ margin-top: calc(0.25rem * 4);
36
+ font-size: 1.125rem;
37
+ line-height: var(--tw-leading, calc(1.75 / 1.125));
38
+ --tw-font-weight: 500;
39
+ font-weight: 500;
40
+ color: var(--color-text-primary);
41
+ }
42
+ @property --tw-backdrop-blur {
43
+ syntax: "*";
44
+ inherits: false;
45
+ }
46
+ @property --tw-backdrop-brightness {
47
+ syntax: "*";
48
+ inherits: false;
49
+ }
50
+ @property --tw-backdrop-contrast {
51
+ syntax: "*";
52
+ inherits: false;
53
+ }
54
+ @property --tw-backdrop-grayscale {
55
+ syntax: "*";
56
+ inherits: false;
57
+ }
58
+ @property --tw-backdrop-hue-rotate {
59
+ syntax: "*";
60
+ inherits: false;
61
+ }
62
+ @property --tw-backdrop-invert {
63
+ syntax: "*";
64
+ inherits: false;
65
+ }
66
+ @property --tw-backdrop-opacity {
67
+ syntax: "*";
68
+ inherits: false;
69
+ }
70
+ @property --tw-backdrop-saturate {
71
+ syntax: "*";
72
+ inherits: false;
73
+ }
74
+ @property --tw-backdrop-sepia {
75
+ syntax: "*";
76
+ inherits: false;
77
+ }
78
+ @property --tw-shadow {
79
+ syntax: "*";
80
+ inherits: false;
81
+ initial-value: 0 0 #0000;
82
+ }
83
+ @property --tw-shadow-color {
84
+ syntax: "*";
85
+ inherits: false;
86
+ }
87
+ @property --tw-shadow-alpha {
88
+ syntax: "<percentage>";
89
+ inherits: false;
90
+ initial-value: 100%;
91
+ }
92
+ @property --tw-inset-shadow {
93
+ syntax: "*";
94
+ inherits: false;
95
+ initial-value: 0 0 #0000;
96
+ }
97
+ @property --tw-inset-shadow-color {
98
+ syntax: "*";
99
+ inherits: false;
100
+ }
101
+ @property --tw-inset-shadow-alpha {
102
+ syntax: "<percentage>";
103
+ inherits: false;
104
+ initial-value: 100%;
105
+ }
106
+ @property --tw-ring-color {
107
+ syntax: "*";
108
+ inherits: false;
109
+ }
110
+ @property --tw-ring-shadow {
111
+ syntax: "*";
112
+ inherits: false;
113
+ initial-value: 0 0 #0000;
114
+ }
115
+ @property --tw-inset-ring-color {
116
+ syntax: "*";
117
+ inherits: false;
118
+ }
119
+ @property --tw-inset-ring-shadow {
120
+ syntax: "*";
121
+ inherits: false;
122
+ initial-value: 0 0 #0000;
123
+ }
124
+ @property --tw-ring-inset {
125
+ syntax: "*";
126
+ inherits: false;
127
+ }
128
+ @property --tw-ring-offset-width {
129
+ syntax: "<length>";
130
+ inherits: false;
131
+ initial-value: 0px;
132
+ }
133
+ @property --tw-ring-offset-color {
134
+ syntax: "*";
135
+ inherits: false;
136
+ initial-value: #fff;
137
+ }
138
+ @property --tw-ring-offset-shadow {
139
+ syntax: "*";
140
+ inherits: false;
141
+ initial-value: 0 0 #0000;
142
+ }
143
+ @property --tw-font-weight {
144
+ syntax: "*";
145
+ inherits: false;
146
+ }
147
+ @keyframes spin {
148
+ to {
149
+ transform: rotate(360deg);
150
+ }
151
+ }
@@ -0,0 +1,171 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .metric-card {
3
+ border-radius: var(--radius-md, 0.375rem);
4
+ border-style: var(--tw-border-style);
5
+ border-width: 1px;
6
+ padding: calc(0.25rem * 3);
7
+ display: flex;
8
+ flex-direction: column;
9
+ justify-content: space-between;
10
+ }
11
+ .value-container {
12
+ display: flex;
13
+ align-items: center;
14
+ justify-content: space-between;
15
+ gap: calc(0.25rem * 2);
16
+ }
17
+ .value {
18
+ font-size: 1.5rem;
19
+ line-height: var(--tw-leading, calc(2 / 1.5));
20
+ --tw-font-weight: 500;
21
+ font-weight: 500;
22
+ }
23
+ .label {
24
+ font-size: 0.875rem;
25
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
26
+ color: var(--color-text-primary);
27
+ }
28
+ .text-default {
29
+ background-color: var(--color-badge-text-neutral);
30
+ }
31
+ .text-danger {
32
+ color: var(--color-badge-text-danger);
33
+ }
34
+ .text-primary {
35
+ color: var(--color-badge-text-primary);
36
+ }
37
+ .text-success {
38
+ color: var(--color-badge-text-success);
39
+ }
40
+ .text-warning {
41
+ color: var(--color-badge-text-warning);
42
+ }
43
+ .value-container .bg-default {
44
+ background-color: var(--color-background-overlay);
45
+ }
46
+ .value-container .bg-danger {
47
+ background-color: var(--color-badge-background-danger);
48
+ }
49
+ .value-container .bg-primary {
50
+ background-color: var(--color-badge-background-primary);
51
+ }
52
+ .value-container .bg-success {
53
+ background-color: var(--color-badge-background-success);
54
+ }
55
+ .value-container .bg-warning {
56
+ background-color: var(--color-badge-background-warning);
57
+ }
58
+ .metric-card--sunken {
59
+ border-color: var(--color-border-sunken);
60
+ background-color: var(--color-background-sunken);
61
+ --tw-shadow-color: rgba(0, 0, 0, 0.05);
62
+ @supports (color: color-mix(in lab, red, red)) {
63
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
64
+ }
65
+ }
66
+ .metric-card--base {
67
+ border-color: var(--color-border-base);
68
+ background-color: var(--color-background-base);
69
+ --tw-shadow-color: transparent;
70
+ @supports (color: color-mix(in lab, red, red)) {
71
+ --tw-shadow-color: color-mix(in oklab, transparent var(--tw-shadow-alpha), transparent);
72
+ }
73
+ }
74
+ .metric-card--raised {
75
+ border-color: var(--color-border-raised);
76
+ background-color: var(--color-background-raised);
77
+ --tw-shadow-color: rgba(0, 0, 0, 0.05);
78
+ @supports (color: color-mix(in lab, red, red)) {
79
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
80
+ }
81
+ }
82
+ .metric-card--overlay {
83
+ border-color: var(--color-border-overlay);
84
+ background-color: var(--color-background-overlay);
85
+ --tw-shadow-color: rgba(0, 0, 0, 0.1);
86
+ @supports (color: color-mix(in lab, red, red)) {
87
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.1) var(--tw-shadow-alpha), transparent);
88
+ }
89
+ }
90
+ .metric-card--floating {
91
+ border-color: var(--color-border-floating);
92
+ background-color: var(--color-background-floating);
93
+ --tw-shadow-color: rgba(0, 0, 0, 0.15);
94
+ @supports (color: color-mix(in lab, red, red)) {
95
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.15) var(--tw-shadow-alpha), transparent);
96
+ }
97
+ }
98
+ @property --tw-border-style {
99
+ syntax: "*";
100
+ inherits: false;
101
+ initial-value: solid;
102
+ }
103
+ @property --tw-font-weight {
104
+ syntax: "*";
105
+ inherits: false;
106
+ }
107
+ @property --tw-shadow {
108
+ syntax: "*";
109
+ inherits: false;
110
+ initial-value: 0 0 #0000;
111
+ }
112
+ @property --tw-shadow-color {
113
+ syntax: "*";
114
+ inherits: false;
115
+ }
116
+ @property --tw-shadow-alpha {
117
+ syntax: "<percentage>";
118
+ inherits: false;
119
+ initial-value: 100%;
120
+ }
121
+ @property --tw-inset-shadow {
122
+ syntax: "*";
123
+ inherits: false;
124
+ initial-value: 0 0 #0000;
125
+ }
126
+ @property --tw-inset-shadow-color {
127
+ syntax: "*";
128
+ inherits: false;
129
+ }
130
+ @property --tw-inset-shadow-alpha {
131
+ syntax: "<percentage>";
132
+ inherits: false;
133
+ initial-value: 100%;
134
+ }
135
+ @property --tw-ring-color {
136
+ syntax: "*";
137
+ inherits: false;
138
+ }
139
+ @property --tw-ring-shadow {
140
+ syntax: "*";
141
+ inherits: false;
142
+ initial-value: 0 0 #0000;
143
+ }
144
+ @property --tw-inset-ring-color {
145
+ syntax: "*";
146
+ inherits: false;
147
+ }
148
+ @property --tw-inset-ring-shadow {
149
+ syntax: "*";
150
+ inherits: false;
151
+ initial-value: 0 0 #0000;
152
+ }
153
+ @property --tw-ring-inset {
154
+ syntax: "*";
155
+ inherits: false;
156
+ }
157
+ @property --tw-ring-offset-width {
158
+ syntax: "<length>";
159
+ inherits: false;
160
+ initial-value: 0px;
161
+ }
162
+ @property --tw-ring-offset-color {
163
+ syntax: "*";
164
+ inherits: false;
165
+ initial-value: #fff;
166
+ }
167
+ @property --tw-ring-offset-shadow {
168
+ syntax: "*";
169
+ inherits: false;
170
+ initial-value: 0 0 #0000;
171
+ }
@@ -0,0 +1,4 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .motion-collapsible {
3
+ overflow: hidden;
4
+ }