@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,226 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .switch {
3
+ cursor: pointer;
4
+ border-radius: calc(infinity * 1px);
5
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
6
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
7
+ transition-duration: var(--tw-duration, 150ms);
8
+ display: inline-flex;
9
+ flex-shrink: 0;
10
+ align-items: center;
11
+ border-style: var(--tw-border-style);
12
+ border-width: 2px;
13
+ border-color: transparent;
14
+ --tw-ring-offset-color: var(--color-background);
15
+ &:focus-visible {
16
+ --tw-ring-color: var(--color-focus-ring);
17
+ }
18
+ &:focus-visible {
19
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
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
+ }
22
+ &:focus-visible {
23
+ --tw-ring-offset-width: 2px;
24
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
25
+ }
26
+ &:focus-visible {
27
+ --tw-outline-style: none;
28
+ outline-style: none;
29
+ }
30
+ &:disabled {
31
+ cursor: not-allowed;
32
+ }
33
+ &:disabled {
34
+ opacity: 50%;
35
+ }
36
+ }
37
+ .thumb {
38
+ background-color: var(--color-background);
39
+ --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));
40
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
41
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
42
+ transition-property: transform, translate, scale, rotate;
43
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
44
+ transition-duration: var(--tw-duration, 150ms);
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: center;
48
+ border-radius: calc(infinity * 1px);
49
+ pointer-events: none;
50
+ &[data-state="unchecked"] {
51
+ --tw-translate-x: calc(0.25rem * 0);
52
+ translate: var(--tw-translate-x) var(--tw-translate-y);
53
+ }
54
+ }
55
+ .thumb-icon {
56
+ color: var(--color-text-primary);
57
+ }
58
+ .switch.sm {
59
+ height: calc(0.25rem * 5);
60
+ width: calc(0.25rem * 9);
61
+ }
62
+ .switch.md {
63
+ height: calc(0.25rem * 6);
64
+ width: calc(0.25rem * 11);
65
+ }
66
+ .switch.lg {
67
+ height: calc(0.25rem * 7);
68
+ width: calc(0.25rem * 13);
69
+ }
70
+ .thumb.sm {
71
+ width: calc(0.25rem * 4);
72
+ height: calc(0.25rem * 4);
73
+ &[data-state="checked"] {
74
+ --tw-translate-x: calc(0.25rem * 4);
75
+ translate: var(--tw-translate-x) var(--tw-translate-y);
76
+ }
77
+ }
78
+ .thumb.md {
79
+ width: calc(0.25rem * 5);
80
+ height: calc(0.25rem * 5);
81
+ &[data-state="checked"] {
82
+ --tw-translate-x: calc(0.25rem * 5);
83
+ translate: var(--tw-translate-x) var(--tw-translate-y);
84
+ }
85
+ }
86
+ .thumb.lg {
87
+ width: calc(0.25rem * 6);
88
+ height: calc(0.25rem * 6);
89
+ &[data-state="checked"] {
90
+ --tw-translate-x: calc(0.25rem * 6);
91
+ translate: var(--tw-translate-x) var(--tw-translate-y);
92
+ }
93
+ }
94
+ .switch.default {
95
+ --mix-color: var(--color-button-primary-fill);
96
+ &[data-state="checked"] {
97
+ background-color: var(--mix-color);
98
+ }
99
+ &[data-state="unchecked"] {
100
+ background-color: var(--color-greyscale-700);
101
+ }
102
+ &[data-state="checked"] {
103
+ &:hover {
104
+ @media (hover: hover) {
105
+ background-color: var(--mix-color);
106
+ @supports (color: color-mix(in lab, red, red)) {
107
+ background-color: color-mix(in oklch, var(--mix-color), white var(--hover-lighten, 20%));
108
+ }
109
+ }
110
+ }
111
+ }
112
+ &[data-state="unchecked"] {
113
+ &:hover {
114
+ @media (hover: hover) {
115
+ background-color: var(--color-greyscale-600);
116
+ }
117
+ }
118
+ }
119
+ }
120
+ .switch.danger {
121
+ &[data-state="checked"] {
122
+ background-color: var(--color-red-500);
123
+ }
124
+ &[data-state="unchecked"] {
125
+ background-color: var(--color-red-700);
126
+ }
127
+ &[data-state="checked"] {
128
+ &:hover {
129
+ @media (hover: hover) {
130
+ background-color: var(--color-red-600);
131
+ }
132
+ }
133
+ }
134
+ &[data-state="unchecked"] {
135
+ &:hover {
136
+ @media (hover: hover) {
137
+ background-color: var(--color-red-600);
138
+ }
139
+ }
140
+ }
141
+ }
142
+ @property --tw-border-style {
143
+ syntax: "*";
144
+ inherits: false;
145
+ initial-value: solid;
146
+ }
147
+ @property --tw-shadow {
148
+ syntax: "*";
149
+ inherits: false;
150
+ initial-value: 0 0 #0000;
151
+ }
152
+ @property --tw-shadow-color {
153
+ syntax: "*";
154
+ inherits: false;
155
+ }
156
+ @property --tw-shadow-alpha {
157
+ syntax: "<percentage>";
158
+ inherits: false;
159
+ initial-value: 100%;
160
+ }
161
+ @property --tw-inset-shadow {
162
+ syntax: "*";
163
+ inherits: false;
164
+ initial-value: 0 0 #0000;
165
+ }
166
+ @property --tw-inset-shadow-color {
167
+ syntax: "*";
168
+ inherits: false;
169
+ }
170
+ @property --tw-inset-shadow-alpha {
171
+ syntax: "<percentage>";
172
+ inherits: false;
173
+ initial-value: 100%;
174
+ }
175
+ @property --tw-ring-color {
176
+ syntax: "*";
177
+ inherits: false;
178
+ }
179
+ @property --tw-ring-shadow {
180
+ syntax: "*";
181
+ inherits: false;
182
+ initial-value: 0 0 #0000;
183
+ }
184
+ @property --tw-inset-ring-color {
185
+ syntax: "*";
186
+ inherits: false;
187
+ }
188
+ @property --tw-inset-ring-shadow {
189
+ syntax: "*";
190
+ inherits: false;
191
+ initial-value: 0 0 #0000;
192
+ }
193
+ @property --tw-ring-inset {
194
+ syntax: "*";
195
+ inherits: false;
196
+ }
197
+ @property --tw-ring-offset-width {
198
+ syntax: "<length>";
199
+ inherits: false;
200
+ initial-value: 0px;
201
+ }
202
+ @property --tw-ring-offset-color {
203
+ syntax: "*";
204
+ inherits: false;
205
+ initial-value: #fff;
206
+ }
207
+ @property --tw-ring-offset-shadow {
208
+ syntax: "*";
209
+ inherits: false;
210
+ initial-value: 0 0 #0000;
211
+ }
212
+ @property --tw-translate-x {
213
+ syntax: "*";
214
+ inherits: false;
215
+ initial-value: 0;
216
+ }
217
+ @property --tw-translate-y {
218
+ syntax: "*";
219
+ inherits: false;
220
+ initial-value: 0;
221
+ }
222
+ @property --tw-translate-z {
223
+ syntax: "*";
224
+ inherits: false;
225
+ initial-value: 0;
226
+ }
@@ -0,0 +1,116 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .table {
3
+ position: relative;
4
+ width: 100%;
5
+ overflow: auto;
6
+ }
7
+ .table-inner {
8
+ width: 100%;
9
+ caption-side: bottom;
10
+ font-size: 0.875rem;
11
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
12
+ }
13
+ .table-header {
14
+ & tr {
15
+ border-bottom-style: var(--tw-border-style);
16
+ border-bottom-width: 1px;
17
+ }
18
+ }
19
+ .table-body {
20
+ & tr:last-child {
21
+ border-style: var(--tw-border-style);
22
+ border-width: 0px;
23
+ }
24
+ }
25
+ .table-footer {
26
+ border-top-style: var(--tw-border-style);
27
+ border-top-width: 1px;
28
+ &:last-child {
29
+ &>tr {
30
+ border-bottom-style: var(--tw-border-style);
31
+ border-bottom-width: 0px;
32
+ }
33
+ }
34
+ --tw-font-weight: 500;
35
+ font-weight: 500;
36
+ }
37
+ .table-row {
38
+ border-bottom-style: var(--tw-border-style);
39
+ border-bottom-width: 1px;
40
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
41
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
42
+ transition-duration: var(--tw-duration, 150ms);
43
+ }
44
+ .table-head {
45
+ height: calc(0.25rem * 12);
46
+ padding-inline: calc(0.25rem * 4);
47
+ vertical-align: middle;
48
+ text-align: left;
49
+ --tw-font-weight: 500;
50
+ font-weight: 500;
51
+ color: var(--color-text-primary);
52
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
53
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
54
+ transition-duration: var(--tw-duration, 150ms);
55
+ &:has([role=checkbox]) {
56
+ padding-right: calc(0.25rem * 0);
57
+ }
58
+ }
59
+ .table-cell {
60
+ padding-inline: calc(0.25rem * 4);
61
+ padding-block: calc(0.25rem * 3);
62
+ vertical-align: middle;
63
+ &:has([role=checkbox]) {
64
+ padding-right: calc(0.25rem * 0);
65
+ }
66
+ }
67
+ .table-caption {
68
+ margin-top: calc(0.25rem * 4);
69
+ font-size: 0.875rem;
70
+ line-height: var(--tw-leading, calc(1.25 / 0.875));
71
+ color: var(--color-text-secondary);
72
+ }
73
+ .table--sunken .table-header,
74
+ .table--sunken .table-footer {
75
+ background-color: var(--color-background-base);
76
+ }
77
+ .table--sunken .table-body {
78
+ background-color: var(--color-background-sunken);
79
+ }
80
+ .table--base .table-header,
81
+ .table--base .table-footer {
82
+ background-color: var(--color-background-raised);
83
+ }
84
+ .table--base .table-body {
85
+ background-color: var(--color-background-base);
86
+ }
87
+ .table--raised .table-header,
88
+ .table--raised .table-footer {
89
+ background-color: var(--color-background-overlay);
90
+ }
91
+ .table--raised .table-body {
92
+ background-color: var(--color-background-raised);
93
+ }
94
+ .table--overlay .table-header,
95
+ .table--overlay .table-footer {
96
+ background-color: var(--color-background-floating);
97
+ }
98
+ .table--overlay .table-body {
99
+ background-color: var(--color-background-overlay);
100
+ }
101
+ .table--floating .table-header,
102
+ .table--floating .table-footer {
103
+ background-color: var(--color-background-top);
104
+ }
105
+ .table--floating .table-body {
106
+ background-color: var(--color-background-floating);
107
+ }
108
+ @property --tw-border-style {
109
+ syntax: "*";
110
+ inherits: false;
111
+ initial-value: solid;
112
+ }
113
+ @property --tw-font-weight {
114
+ syntax: "*";
115
+ inherits: false;
116
+ }
@@ -0,0 +1,145 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .table {
3
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
4
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
5
+ }
6
+ .table-row-clickable {
7
+ --mix-color: var(--color-brand-primary);
8
+ --hover-darken: 50%;
9
+ cursor: pointer;
10
+ &:hover {
11
+ @media (hover: hover) {
12
+ background-color: var(--mix-color);
13
+ @supports (color: color-mix(in lab, red, red)) {
14
+ background-color: color-mix(in oklch, var(--mix-color), black var(--hover-darken, 20%));
15
+ }
16
+ }
17
+ }
18
+ &[data-state="selected"] {
19
+ background-color: var(--mix-color);
20
+ @supports (color: color-mix(in lab, red, red)) {
21
+ background-color: color-mix(in oklch, var(--mix-color), black var(--hover-darken, 20%));
22
+ }
23
+ }
24
+ }
25
+ .table-border {
26
+ border-style: var(--tw-border-style);
27
+ border-width: 1px;
28
+ overflow: hidden;
29
+ border-radius: var(--radius-md, 0.375rem);
30
+ }
31
+ .table--sunken {
32
+ --tw-shadow-color: rgba(0, 0, 0, 0.05);
33
+ @supports (color: color-mix(in lab, red, red)) {
34
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
35
+ }
36
+ }
37
+ .table--sunken.table-border {
38
+ border-color: var(--color-border-sunken);
39
+ }
40
+ .table--base {
41
+ --tw-shadow-color: transparent;
42
+ @supports (color: color-mix(in lab, red, red)) {
43
+ --tw-shadow-color: color-mix(in oklab, transparent var(--tw-shadow-alpha), transparent);
44
+ }
45
+ }
46
+ .table--base.table-border {
47
+ border-color: var(--color-border-base);
48
+ }
49
+ .table--raised {
50
+ --tw-shadow-color: rgba(0, 0, 0, 0.05);
51
+ @supports (color: color-mix(in lab, red, red)) {
52
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
53
+ }
54
+ }
55
+ .table--raised.table-border {
56
+ border-color: var(--color-border-raised);
57
+ }
58
+ .table--overlay {
59
+ --tw-shadow-color: rgba(0, 0, 0, 0.1);
60
+ @supports (color: color-mix(in lab, red, red)) {
61
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.1) var(--tw-shadow-alpha), transparent);
62
+ }
63
+ }
64
+ .table--overlay.table-border {
65
+ border-color: var(--color-border-overlay);
66
+ }
67
+ .table--floating {
68
+ --tw-shadow-color: rgba(0, 0, 0, 0.15);
69
+ @supports (color: color-mix(in lab, red, red)) {
70
+ --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.15) var(--tw-shadow-alpha), transparent);
71
+ }
72
+ }
73
+ .table--floating.table-border {
74
+ border-color: var(--color-border-floating);
75
+ }
76
+ @property --tw-shadow {
77
+ syntax: "*";
78
+ inherits: false;
79
+ initial-value: 0 0 #0000;
80
+ }
81
+ @property --tw-shadow-color {
82
+ syntax: "*";
83
+ inherits: false;
84
+ }
85
+ @property --tw-shadow-alpha {
86
+ syntax: "<percentage>";
87
+ inherits: false;
88
+ initial-value: 100%;
89
+ }
90
+ @property --tw-inset-shadow {
91
+ syntax: "*";
92
+ inherits: false;
93
+ initial-value: 0 0 #0000;
94
+ }
95
+ @property --tw-inset-shadow-color {
96
+ syntax: "*";
97
+ inherits: false;
98
+ }
99
+ @property --tw-inset-shadow-alpha {
100
+ syntax: "<percentage>";
101
+ inherits: false;
102
+ initial-value: 100%;
103
+ }
104
+ @property --tw-ring-color {
105
+ syntax: "*";
106
+ inherits: false;
107
+ }
108
+ @property --tw-ring-shadow {
109
+ syntax: "*";
110
+ inherits: false;
111
+ initial-value: 0 0 #0000;
112
+ }
113
+ @property --tw-inset-ring-color {
114
+ syntax: "*";
115
+ inherits: false;
116
+ }
117
+ @property --tw-inset-ring-shadow {
118
+ syntax: "*";
119
+ inherits: false;
120
+ initial-value: 0 0 #0000;
121
+ }
122
+ @property --tw-ring-inset {
123
+ syntax: "*";
124
+ inherits: false;
125
+ }
126
+ @property --tw-ring-offset-width {
127
+ syntax: "<length>";
128
+ inherits: false;
129
+ initial-value: 0px;
130
+ }
131
+ @property --tw-ring-offset-color {
132
+ syntax: "*";
133
+ inherits: false;
134
+ initial-value: #fff;
135
+ }
136
+ @property --tw-ring-offset-shadow {
137
+ syntax: "*";
138
+ inherits: false;
139
+ initial-value: 0 0 #0000;
140
+ }
141
+ @property --tw-border-style {
142
+ syntax: "*";
143
+ inherits: false;
144
+ initial-value: solid;
145
+ }
@@ -0,0 +1,136 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ .tabs-list {
3
+ color: var(--color-text-secondary);
4
+ height: auto;
5
+ min-height: calc(0.25rem * 10);
6
+ display: flex;
7
+ align-items: center;
8
+ }
9
+ .tabs-trigger {
10
+ position: relative;
11
+ z-index: 10;
12
+ white-space: nowrap;
13
+ transition-property: all;
14
+ transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
15
+ transition-duration: var(--tw-duration, 150ms);
16
+ padding-inline: calc(0.25rem * 3);
17
+ padding-block: calc(0.25rem * 1.5);
18
+ font-size: 1.125rem;
19
+ line-height: var(--tw-leading, calc(1.75 / 1.125));
20
+ --tw-font-weight: 500;
21
+ font-weight: 500;
22
+ gap: calc(0.25rem * 2);
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
26
+ --tw-ring-offset-color: var(--color-background);
27
+ &:focus-visible {
28
+ --tw-ring-color: var(--color-focus-ring);
29
+ }
30
+ &:focus-visible {
31
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
32
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
33
+ }
34
+ &:focus-visible {
35
+ --tw-ring-offset-width: 2px;
36
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
37
+ }
38
+ &:focus-visible {
39
+ --tw-outline-style: none;
40
+ outline-style: none;
41
+ }
42
+ &:disabled {
43
+ pointer-events: none;
44
+ }
45
+ &:disabled {
46
+ opacity: 50%;
47
+ }
48
+ }
49
+ .tabs-content {
50
+ margin-top: calc(0.25rem * 2);
51
+ --tw-ring-offset-color: var(--color-background);
52
+ &:focus-visible {
53
+ --tw-ring-color: var(--color-focus-ring);
54
+ }
55
+ &:focus-visible {
56
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
57
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
58
+ }
59
+ &:focus-visible {
60
+ --tw-ring-offset-width: 2px;
61
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
62
+ }
63
+ &:focus-visible {
64
+ --tw-outline-style: none;
65
+ outline-style: none;
66
+ }
67
+ }
68
+ @property --tw-font-weight {
69
+ syntax: "*";
70
+ inherits: false;
71
+ }
72
+ @property --tw-shadow {
73
+ syntax: "*";
74
+ inherits: false;
75
+ initial-value: 0 0 #0000;
76
+ }
77
+ @property --tw-shadow-color {
78
+ syntax: "*";
79
+ inherits: false;
80
+ }
81
+ @property --tw-shadow-alpha {
82
+ syntax: "<percentage>";
83
+ inherits: false;
84
+ initial-value: 100%;
85
+ }
86
+ @property --tw-inset-shadow {
87
+ syntax: "*";
88
+ inherits: false;
89
+ initial-value: 0 0 #0000;
90
+ }
91
+ @property --tw-inset-shadow-color {
92
+ syntax: "*";
93
+ inherits: false;
94
+ }
95
+ @property --tw-inset-shadow-alpha {
96
+ syntax: "<percentage>";
97
+ inherits: false;
98
+ initial-value: 100%;
99
+ }
100
+ @property --tw-ring-color {
101
+ syntax: "*";
102
+ inherits: false;
103
+ }
104
+ @property --tw-ring-shadow {
105
+ syntax: "*";
106
+ inherits: false;
107
+ initial-value: 0 0 #0000;
108
+ }
109
+ @property --tw-inset-ring-color {
110
+ syntax: "*";
111
+ inherits: false;
112
+ }
113
+ @property --tw-inset-ring-shadow {
114
+ syntax: "*";
115
+ inherits: false;
116
+ initial-value: 0 0 #0000;
117
+ }
118
+ @property --tw-ring-inset {
119
+ syntax: "*";
120
+ inherits: false;
121
+ }
122
+ @property --tw-ring-offset-width {
123
+ syntax: "<length>";
124
+ inherits: false;
125
+ initial-value: 0px;
126
+ }
127
+ @property --tw-ring-offset-color {
128
+ syntax: "*";
129
+ inherits: false;
130
+ initial-value: #fff;
131
+ }
132
+ @property --tw-ring-offset-shadow {
133
+ syntax: "*";
134
+ inherits: false;
135
+ initial-value: 0 0 #0000;
136
+ }