@bezdenegsvarkinet/ui-library 0.3.6 → 0.3.7
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.
- package/dist/index.css +378 -14
- package/dist/index.css.map +1 -1
- package/package.json +5 -2
package/dist/index.css
CHANGED
|
@@ -1,16 +1,319 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
@
|
|
1
|
+
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
|
+
"Courier New", monospace;
|
|
10
|
+
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
11
|
+
--color-blue-50: oklch(97% 0.014 254.604);
|
|
12
|
+
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
13
|
+
--color-blue-600: oklch(54.6% 0.245 262.881);
|
|
14
|
+
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
15
|
+
--color-gray-300: oklch(87.2% 0.01 258.338);
|
|
16
|
+
--color-gray-800: oklch(27.8% 0.033 256.848);
|
|
17
|
+
--color-white: #fff;
|
|
18
|
+
--spacing: 0.25rem;
|
|
19
|
+
--font-weight-medium: 500;
|
|
20
|
+
--default-transition-duration: 150ms;
|
|
21
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
22
|
+
--default-font-family: var(--font-sans);
|
|
23
|
+
--default-mono-font-family: var(--font-mono);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
@layer base {
|
|
27
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
margin: 0;
|
|
30
|
+
padding: 0;
|
|
31
|
+
border: 0 solid;
|
|
32
|
+
}
|
|
33
|
+
html, :host {
|
|
34
|
+
line-height: 1.5;
|
|
35
|
+
-webkit-text-size-adjust: 100%;
|
|
36
|
+
tab-size: 4;
|
|
37
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
38
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
39
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
40
|
+
-webkit-tap-highlight-color: transparent;
|
|
41
|
+
}
|
|
42
|
+
hr {
|
|
43
|
+
height: 0;
|
|
44
|
+
color: inherit;
|
|
45
|
+
border-top-width: 1px;
|
|
46
|
+
}
|
|
47
|
+
abbr:where([title]) {
|
|
48
|
+
-webkit-text-decoration: underline dotted;
|
|
49
|
+
text-decoration: underline dotted;
|
|
50
|
+
}
|
|
51
|
+
h1, h2, h3, h4, h5, h6 {
|
|
52
|
+
font-size: inherit;
|
|
53
|
+
font-weight: inherit;
|
|
54
|
+
}
|
|
55
|
+
a {
|
|
56
|
+
color: inherit;
|
|
57
|
+
-webkit-text-decoration: inherit;
|
|
58
|
+
text-decoration: inherit;
|
|
59
|
+
}
|
|
60
|
+
b, strong {
|
|
61
|
+
font-weight: bolder;
|
|
62
|
+
}
|
|
63
|
+
code, kbd, samp, pre {
|
|
64
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
65
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
66
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
67
|
+
font-size: 1em;
|
|
68
|
+
}
|
|
69
|
+
small {
|
|
70
|
+
font-size: 80%;
|
|
71
|
+
}
|
|
72
|
+
sub, sup {
|
|
73
|
+
font-size: 75%;
|
|
74
|
+
line-height: 0;
|
|
75
|
+
position: relative;
|
|
76
|
+
vertical-align: baseline;
|
|
77
|
+
}
|
|
78
|
+
sub {
|
|
79
|
+
bottom: -0.25em;
|
|
80
|
+
}
|
|
81
|
+
sup {
|
|
82
|
+
top: -0.5em;
|
|
83
|
+
}
|
|
84
|
+
table {
|
|
85
|
+
text-indent: 0;
|
|
86
|
+
border-color: inherit;
|
|
87
|
+
border-collapse: collapse;
|
|
88
|
+
}
|
|
89
|
+
:-moz-focusring {
|
|
90
|
+
outline: auto;
|
|
91
|
+
}
|
|
92
|
+
progress {
|
|
93
|
+
vertical-align: baseline;
|
|
94
|
+
}
|
|
95
|
+
summary {
|
|
96
|
+
display: list-item;
|
|
97
|
+
}
|
|
98
|
+
ol, ul, menu {
|
|
99
|
+
list-style: none;
|
|
100
|
+
}
|
|
101
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
102
|
+
display: block;
|
|
103
|
+
vertical-align: middle;
|
|
104
|
+
}
|
|
105
|
+
img, video {
|
|
106
|
+
max-width: 100%;
|
|
107
|
+
height: auto;
|
|
108
|
+
}
|
|
109
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
110
|
+
font: inherit;
|
|
111
|
+
font-feature-settings: inherit;
|
|
112
|
+
font-variation-settings: inherit;
|
|
113
|
+
letter-spacing: inherit;
|
|
114
|
+
color: inherit;
|
|
115
|
+
border-radius: 0;
|
|
116
|
+
background-color: transparent;
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
120
|
+
font-weight: bolder;
|
|
121
|
+
}
|
|
122
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
123
|
+
padding-inline-start: 20px;
|
|
124
|
+
}
|
|
125
|
+
::file-selector-button {
|
|
126
|
+
margin-inline-end: 4px;
|
|
127
|
+
}
|
|
128
|
+
::placeholder {
|
|
129
|
+
opacity: 1;
|
|
130
|
+
}
|
|
131
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
132
|
+
::placeholder {
|
|
133
|
+
color: currentcolor;
|
|
134
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
135
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
textarea {
|
|
140
|
+
resize: vertical;
|
|
141
|
+
}
|
|
142
|
+
::-webkit-search-decoration {
|
|
143
|
+
-webkit-appearance: none;
|
|
144
|
+
}
|
|
145
|
+
::-webkit-date-and-time-value {
|
|
146
|
+
min-height: 1lh;
|
|
147
|
+
text-align: inherit;
|
|
148
|
+
}
|
|
149
|
+
::-webkit-datetime-edit {
|
|
150
|
+
display: inline-flex;
|
|
151
|
+
}
|
|
152
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
153
|
+
padding: 0;
|
|
154
|
+
}
|
|
155
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
156
|
+
padding-block: 0;
|
|
157
|
+
}
|
|
158
|
+
::-webkit-calendar-picker-indicator {
|
|
159
|
+
line-height: 1;
|
|
160
|
+
}
|
|
161
|
+
:-moz-ui-invalid {
|
|
162
|
+
box-shadow: none;
|
|
163
|
+
}
|
|
164
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
165
|
+
appearance: button;
|
|
166
|
+
}
|
|
167
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
168
|
+
height: auto;
|
|
169
|
+
}
|
|
170
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
171
|
+
display: none !important;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
@layer utilities {
|
|
175
|
+
.fixed {
|
|
176
|
+
position: fixed;
|
|
177
|
+
}
|
|
178
|
+
.static {
|
|
179
|
+
position: static;
|
|
180
|
+
}
|
|
181
|
+
.flex {
|
|
182
|
+
display: flex;
|
|
183
|
+
}
|
|
184
|
+
.inline-block {
|
|
185
|
+
display: inline-block;
|
|
186
|
+
}
|
|
187
|
+
.table {
|
|
188
|
+
display: table;
|
|
189
|
+
}
|
|
190
|
+
.h-\[32px\] {
|
|
191
|
+
height: 32px;
|
|
192
|
+
}
|
|
193
|
+
.h-\[40px\] {
|
|
194
|
+
height: 40px;
|
|
195
|
+
}
|
|
196
|
+
.h-\[48px\] {
|
|
197
|
+
height: 48px;
|
|
198
|
+
}
|
|
199
|
+
.h-\[56px\] {
|
|
200
|
+
height: 56px;
|
|
201
|
+
}
|
|
202
|
+
.transform {
|
|
203
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
204
|
+
}
|
|
205
|
+
.flex-col {
|
|
206
|
+
flex-direction: column;
|
|
207
|
+
}
|
|
208
|
+
.flex-wrap {
|
|
209
|
+
flex-wrap: wrap;
|
|
210
|
+
}
|
|
211
|
+
.items-center {
|
|
212
|
+
align-items: center;
|
|
213
|
+
}
|
|
214
|
+
.items-start {
|
|
215
|
+
align-items: flex-start;
|
|
216
|
+
}
|
|
217
|
+
.gap-2 {
|
|
218
|
+
gap: calc(var(--spacing) * 2);
|
|
219
|
+
}
|
|
220
|
+
.gap-4 {
|
|
221
|
+
gap: calc(var(--spacing) * 4);
|
|
222
|
+
}
|
|
223
|
+
.rounded-\[8px\] {
|
|
224
|
+
border-radius: 8px;
|
|
225
|
+
}
|
|
226
|
+
.border {
|
|
227
|
+
border-style: var(--tw-border-style);
|
|
228
|
+
border-width: 1px;
|
|
229
|
+
}
|
|
230
|
+
.border-2 {
|
|
231
|
+
border-style: var(--tw-border-style);
|
|
232
|
+
border-width: 2px;
|
|
233
|
+
}
|
|
234
|
+
.border-blue-500 {
|
|
235
|
+
border-color: var(--color-blue-500);
|
|
236
|
+
}
|
|
237
|
+
.bg-blue-500 {
|
|
238
|
+
background-color: var(--color-blue-500);
|
|
239
|
+
}
|
|
240
|
+
.bg-gray-200 {
|
|
241
|
+
background-color: var(--color-gray-200);
|
|
242
|
+
}
|
|
243
|
+
.bg-transparent {
|
|
244
|
+
background-color: transparent;
|
|
245
|
+
}
|
|
246
|
+
.px-4 {
|
|
247
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
248
|
+
}
|
|
249
|
+
.py-2 {
|
|
250
|
+
padding-block: calc(var(--spacing) * 2);
|
|
251
|
+
}
|
|
252
|
+
.text-\[14px\] {
|
|
253
|
+
font-size: 14px;
|
|
254
|
+
}
|
|
255
|
+
.text-\[16px\] {
|
|
256
|
+
font-size: 16px;
|
|
257
|
+
}
|
|
258
|
+
.leading-\[100\%\] {
|
|
259
|
+
--tw-leading: 100%;
|
|
260
|
+
line-height: 100%;
|
|
261
|
+
}
|
|
262
|
+
.font-medium {
|
|
263
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
264
|
+
font-weight: var(--font-weight-medium);
|
|
265
|
+
}
|
|
266
|
+
.text-blue-500 {
|
|
267
|
+
color: var(--color-blue-500);
|
|
268
|
+
}
|
|
269
|
+
.text-gray-800 {
|
|
270
|
+
color: var(--color-gray-800);
|
|
271
|
+
}
|
|
272
|
+
.text-red-500 {
|
|
273
|
+
color: var(--color-red-500);
|
|
274
|
+
}
|
|
275
|
+
.text-white {
|
|
276
|
+
color: var(--color-white);
|
|
277
|
+
}
|
|
278
|
+
.outline {
|
|
279
|
+
outline-style: var(--tw-outline-style);
|
|
280
|
+
outline-width: 1px;
|
|
281
|
+
}
|
|
282
|
+
.transition-all {
|
|
283
|
+
transition-property: all;
|
|
284
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
285
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
286
|
+
}
|
|
287
|
+
.duration-300 {
|
|
288
|
+
--tw-duration: 300ms;
|
|
289
|
+
transition-duration: 300ms;
|
|
290
|
+
}
|
|
291
|
+
.hover\:bg-blue-50 {
|
|
292
|
+
&:hover {
|
|
293
|
+
@media (hover: hover) {
|
|
294
|
+
background-color: var(--color-blue-50);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
.hover\:bg-blue-600 {
|
|
299
|
+
&:hover {
|
|
300
|
+
@media (hover: hover) {
|
|
301
|
+
background-color: var(--color-blue-600);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
.hover\:bg-gray-300 {
|
|
306
|
+
&:hover {
|
|
307
|
+
@media (hover: hover) {
|
|
308
|
+
background-color: var(--color-gray-300);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
5
313
|
:root {
|
|
6
314
|
--color-primary: #3b82f6;
|
|
7
315
|
--color-secondary: #64748b;
|
|
8
|
-
--font-base:
|
|
9
|
-
system-ui,
|
|
10
|
-
Avenir,
|
|
11
|
-
Helvetica,
|
|
12
|
-
Arial,
|
|
13
|
-
sans-serif;
|
|
316
|
+
--font-base: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
14
317
|
--radius: 0.625rem;
|
|
15
318
|
--background: oklch(1 0 0);
|
|
16
319
|
--foreground: oklch(0.145 0 0);
|
|
@@ -44,7 +347,6 @@
|
|
|
44
347
|
--sidebar-border: oklch(0.922 0 0);
|
|
45
348
|
--sidebar-ring: oklch(0.708 0 0);
|
|
46
349
|
}
|
|
47
|
-
@theme inline { --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); --radius-2xl: calc(var(--radius) + 8px); --radius-3xl: calc(var(--radius) + 12px); --radius-4xl: calc(var(--radius) + 16px); --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-popover: var(--popover); --color-popover-foreground: var(--popover-foreground); --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); --color-secondary-foreground: var(--secondary-foreground); --color-muted: var(--muted); --color-muted-foreground: var(--muted-foreground); --color-accent: var(--accent); --color-accent-foreground: var(--accent-foreground); --color-destructive: var(--destructive); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); --color-chart-1: var(--chart-1); --color-chart-2: var(--chart-2); --color-chart-3: var(--chart-3); --color-chart-4: var(--chart-4); --color-chart-5: var(--chart-5); --color-sidebar: var(--sidebar); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-border: var(--sidebar-border); --color-sidebar-ring: var(--sidebar-ring); }
|
|
48
350
|
.dark {
|
|
49
351
|
--background: oklch(0.145 0 0);
|
|
50
352
|
--foreground: oklch(0.985 0 0);
|
|
@@ -80,10 +382,72 @@
|
|
|
80
382
|
}
|
|
81
383
|
@layer base {
|
|
82
384
|
* {
|
|
83
|
-
|
|
385
|
+
border-color: var(--border);
|
|
386
|
+
outline-color: var(--ring);
|
|
387
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
388
|
+
outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
389
|
+
}
|
|
84
390
|
}
|
|
85
391
|
body {
|
|
86
|
-
|
|
392
|
+
background-color: var(--background);
|
|
393
|
+
color: var(--foreground);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
@property --tw-rotate-x {
|
|
397
|
+
syntax: "*";
|
|
398
|
+
inherits: false;
|
|
399
|
+
}
|
|
400
|
+
@property --tw-rotate-y {
|
|
401
|
+
syntax: "*";
|
|
402
|
+
inherits: false;
|
|
403
|
+
}
|
|
404
|
+
@property --tw-rotate-z {
|
|
405
|
+
syntax: "*";
|
|
406
|
+
inherits: false;
|
|
407
|
+
}
|
|
408
|
+
@property --tw-skew-x {
|
|
409
|
+
syntax: "*";
|
|
410
|
+
inherits: false;
|
|
411
|
+
}
|
|
412
|
+
@property --tw-skew-y {
|
|
413
|
+
syntax: "*";
|
|
414
|
+
inherits: false;
|
|
415
|
+
}
|
|
416
|
+
@property --tw-border-style {
|
|
417
|
+
syntax: "*";
|
|
418
|
+
inherits: false;
|
|
419
|
+
initial-value: solid;
|
|
420
|
+
}
|
|
421
|
+
@property --tw-leading {
|
|
422
|
+
syntax: "*";
|
|
423
|
+
inherits: false;
|
|
424
|
+
}
|
|
425
|
+
@property --tw-font-weight {
|
|
426
|
+
syntax: "*";
|
|
427
|
+
inherits: false;
|
|
428
|
+
}
|
|
429
|
+
@property --tw-outline-style {
|
|
430
|
+
syntax: "*";
|
|
431
|
+
inherits: false;
|
|
432
|
+
initial-value: solid;
|
|
433
|
+
}
|
|
434
|
+
@property --tw-duration {
|
|
435
|
+
syntax: "*";
|
|
436
|
+
inherits: false;
|
|
437
|
+
}
|
|
438
|
+
@layer properties {
|
|
439
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
440
|
+
*, ::before, ::after, ::backdrop {
|
|
441
|
+
--tw-rotate-x: initial;
|
|
442
|
+
--tw-rotate-y: initial;
|
|
443
|
+
--tw-rotate-z: initial;
|
|
444
|
+
--tw-skew-x: initial;
|
|
445
|
+
--tw-skew-y: initial;
|
|
446
|
+
--tw-border-style: solid;
|
|
447
|
+
--tw-leading: initial;
|
|
448
|
+
--tw-font-weight: initial;
|
|
449
|
+
--tw-outline-style: solid;
|
|
450
|
+
--tw-duration: initial;
|
|
451
|
+
}
|
|
87
452
|
}
|
|
88
453
|
}
|
|
89
|
-
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.css"],"sourcesContent":["@import \"tailwindcss\";\n\n@custom-variant dark (&:is(.dark *));\n\n:root {\n --color-primary: #3b82f6;\n --color-secondary: #64748b;\n --font-base: system-ui, Avenir, Helvetica, Arial, sans-serif;\n --radius: 0.625rem;\n --background: oklch(1 0 0);\n --foreground: oklch(0.145 0 0);\n --card: oklch(1 0 0);\n --card-foreground: oklch(0.145 0 0);\n --popover: oklch(1 0 0);\n --popover-foreground: oklch(0.145 0 0);\n --primary: oklch(0.205 0 0);\n --primary-foreground: oklch(0.985 0 0);\n --secondary: oklch(0.97 0 0);\n --secondary-foreground: oklch(0.205 0 0);\n --muted: oklch(0.97 0 0);\n --muted-foreground: oklch(0.556 0 0);\n --accent: oklch(0.97 0 0);\n --accent-foreground: oklch(0.205 0 0);\n --destructive: oklch(0.577 0.245 27.325);\n --border: oklch(0.922 0 0);\n --input: oklch(0.922 0 0);\n --ring: oklch(0.708 0 0);\n --chart-1: oklch(0.646 0.222 41.116);\n --chart-2: oklch(0.6 0.118 184.704);\n --chart-3: oklch(0.398 0.07 227.392);\n --chart-4: oklch(0.828 0.189 84.429);\n --chart-5: oklch(0.769 0.188 70.08);\n --sidebar: oklch(0.985 0 0);\n --sidebar-foreground: oklch(0.145 0 0);\n --sidebar-primary: oklch(0.205 0 0);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.97 0 0);\n --sidebar-accent-foreground: oklch(0.205 0 0);\n --sidebar-border: oklch(0.922 0 0);\n --sidebar-ring: oklch(0.708 0 0);\n}\n\n@theme inline {\n --radius-sm: calc(var(--radius) - 4px);\n --radius-md: calc(var(--radius) - 2px);\n --radius-lg: var(--radius);\n --radius-xl: calc(var(--radius) + 4px);\n --radius-2xl: calc(var(--radius) + 8px);\n --radius-3xl: calc(var(--radius) + 12px);\n --radius-4xl: calc(var(--radius) + 16px);\n --color-background: var(--background);\n --color-foreground: var(--foreground);\n --color-card: var(--card);\n --color-card-foreground: var(--card-foreground);\n --color-popover: var(--popover);\n --color-popover-foreground: var(--popover-foreground);\n --color-primary: var(--primary);\n --color-primary-foreground: var(--primary-foreground);\n --color-secondary: var(--secondary);\n --color-secondary-foreground: var(--secondary-foreground);\n --color-muted: var(--muted);\n --color-muted-foreground: var(--muted-foreground);\n --color-accent: var(--accent);\n --color-accent-foreground: var(--accent-foreground);\n --color-destructive: var(--destructive);\n --color-border: var(--border);\n --color-input: var(--input);\n --color-ring: var(--ring);\n --color-chart-1: var(--chart-1);\n --color-chart-2: var(--chart-2);\n --color-chart-3: var(--chart-3);\n --color-chart-4: var(--chart-4);\n --color-chart-5: var(--chart-5);\n --color-sidebar: var(--sidebar);\n --color-sidebar-foreground: var(--sidebar-foreground);\n --color-sidebar-primary: var(--sidebar-primary);\n --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);\n --color-sidebar-accent: var(--sidebar-accent);\n --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);\n --color-sidebar-border: var(--sidebar-border);\n --color-sidebar-ring: var(--sidebar-ring);\n}\n\n.dark {\n --background: oklch(0.145 0 0);\n --foreground: oklch(0.985 0 0);\n --card: oklch(0.205 0 0);\n --card-foreground: oklch(0.985 0 0);\n --popover: oklch(0.205 0 0);\n --popover-foreground: oklch(0.985 0 0);\n --primary: oklch(0.922 0 0);\n --primary-foreground: oklch(0.205 0 0);\n --secondary: oklch(0.269 0 0);\n --secondary-foreground: oklch(0.985 0 0);\n --muted: oklch(0.269 0 0);\n --muted-foreground: oklch(0.708 0 0);\n --accent: oklch(0.269 0 0);\n --accent-foreground: oklch(0.985 0 0);\n --destructive: oklch(0.704 0.191 22.216);\n --border: oklch(1 0 0 / 10%);\n --input: oklch(1 0 0 / 15%);\n --ring: oklch(0.556 0 0);\n --chart-1: oklch(0.488 0.243 264.376);\n --chart-2: oklch(0.696 0.17 162.48);\n --chart-3: oklch(0.769 0.188 70.08);\n --chart-4: oklch(0.627 0.265 303.9);\n --chart-5: oklch(0.645 0.246 16.439);\n --sidebar: oklch(0.205 0 0);\n --sidebar-foreground: oklch(0.985 0 0);\n --sidebar-primary: oklch(0.488 0.243 264.376);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.269 0 0);\n --sidebar-accent-foreground: oklch(0.985 0 0);\n --sidebar-border: oklch(1 0 0 / 10%);\n --sidebar-ring: oklch(0.556 0 0);\n}\n\n@layer base {\n * {\n @apply border-border outline-ring/50;\n }\n body {\n @apply bg-background text-foreground;\n }\n}"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/index.css"],"sourcesContent":["@import \"tailwindcss\";\n\n@source \"../src/**/*.{ts,tsx}\";\n\n@custom-variant dark (&:is(.dark *));\n\n:root {\n --color-primary: #3b82f6;\n --color-secondary: #64748b;\n --font-base: system-ui, Avenir, Helvetica, Arial, sans-serif;\n --radius: 0.625rem;\n --background: oklch(1 0 0);\n --foreground: oklch(0.145 0 0);\n --card: oklch(1 0 0);\n --card-foreground: oklch(0.145 0 0);\n --popover: oklch(1 0 0);\n --popover-foreground: oklch(0.145 0 0);\n --primary: oklch(0.205 0 0);\n --primary-foreground: oklch(0.985 0 0);\n --secondary: oklch(0.97 0 0);\n --secondary-foreground: oklch(0.205 0 0);\n --muted: oklch(0.97 0 0);\n --muted-foreground: oklch(0.556 0 0);\n --accent: oklch(0.97 0 0);\n --accent-foreground: oklch(0.205 0 0);\n --destructive: oklch(0.577 0.245 27.325);\n --border: oklch(0.922 0 0);\n --input: oklch(0.922 0 0);\n --ring: oklch(0.708 0 0);\n --chart-1: oklch(0.646 0.222 41.116);\n --chart-2: oklch(0.6 0.118 184.704);\n --chart-3: oklch(0.398 0.07 227.392);\n --chart-4: oklch(0.828 0.189 84.429);\n --chart-5: oklch(0.769 0.188 70.08);\n --sidebar: oklch(0.985 0 0);\n --sidebar-foreground: oklch(0.145 0 0);\n --sidebar-primary: oklch(0.205 0 0);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.97 0 0);\n --sidebar-accent-foreground: oklch(0.205 0 0);\n --sidebar-border: oklch(0.922 0 0);\n --sidebar-ring: oklch(0.708 0 0);\n}\n\n@theme inline {\n --radius-sm: calc(var(--radius) - 4px);\n --radius-md: calc(var(--radius) - 2px);\n --radius-lg: var(--radius);\n --radius-xl: calc(var(--radius) + 4px);\n --radius-2xl: calc(var(--radius) + 8px);\n --radius-3xl: calc(var(--radius) + 12px);\n --radius-4xl: calc(var(--radius) + 16px);\n --color-background: var(--background);\n --color-foreground: var(--foreground);\n --color-card: var(--card);\n --color-card-foreground: var(--card-foreground);\n --color-popover: var(--popover);\n --color-popover-foreground: var(--popover-foreground);\n --color-primary: var(--primary);\n --color-primary-foreground: var(--primary-foreground);\n --color-secondary: var(--secondary);\n --color-secondary-foreground: var(--secondary-foreground);\n --color-muted: var(--muted);\n --color-muted-foreground: var(--muted-foreground);\n --color-accent: var(--accent);\n --color-accent-foreground: var(--accent-foreground);\n --color-destructive: var(--destructive);\n --color-border: var(--border);\n --color-input: var(--input);\n --color-ring: var(--ring);\n --color-chart-1: var(--chart-1);\n --color-chart-2: var(--chart-2);\n --color-chart-3: var(--chart-3);\n --color-chart-4: var(--chart-4);\n --color-chart-5: var(--chart-5);\n --color-sidebar: var(--sidebar);\n --color-sidebar-foreground: var(--sidebar-foreground);\n --color-sidebar-primary: var(--sidebar-primary);\n --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);\n --color-sidebar-accent: var(--sidebar-accent);\n --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);\n --color-sidebar-border: var(--sidebar-border);\n --color-sidebar-ring: var(--sidebar-ring);\n}\n\n.dark {\n --background: oklch(0.145 0 0);\n --foreground: oklch(0.985 0 0);\n --card: oklch(0.205 0 0);\n --card-foreground: oklch(0.985 0 0);\n --popover: oklch(0.205 0 0);\n --popover-foreground: oklch(0.985 0 0);\n --primary: oklch(0.922 0 0);\n --primary-foreground: oklch(0.205 0 0);\n --secondary: oklch(0.269 0 0);\n --secondary-foreground: oklch(0.985 0 0);\n --muted: oklch(0.269 0 0);\n --muted-foreground: oklch(0.708 0 0);\n --accent: oklch(0.269 0 0);\n --accent-foreground: oklch(0.985 0 0);\n --destructive: oklch(0.704 0.191 22.216);\n --border: oklch(1 0 0 / 10%);\n --input: oklch(1 0 0 / 15%);\n --ring: oklch(0.556 0 0);\n --chart-1: oklch(0.488 0.243 264.376);\n --chart-2: oklch(0.696 0.17 162.48);\n --chart-3: oklch(0.769 0.188 70.08);\n --chart-4: oklch(0.627 0.265 303.9);\n --chart-5: oklch(0.645 0.246 16.439);\n --sidebar: oklch(0.205 0 0);\n --sidebar-foreground: oklch(0.985 0 0);\n --sidebar-primary: oklch(0.488 0.243 264.376);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.269 0 0);\n --sidebar-accent-foreground: oklch(0.985 0 0);\n --sidebar-border: oklch(1 0 0 / 10%);\n --sidebar-ring: oklch(0.556 0 0);\n}\n\n@layer base {\n * {\n @apply border-border outline-ring/50;\n }\n body {\n @apply bg-background text-foreground;\n }\n}"],"mappings":"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","names":[]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bezdenegsvarkinet/ui-library",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "vite",
|
|
30
|
-
"build": "
|
|
30
|
+
"build:css": "tailwindcss -i src/index.css -o dist/index.css",
|
|
31
|
+
"build:js": "tsup",
|
|
32
|
+
"build": "pnpm build:js && pnpm build:css",
|
|
31
33
|
"lint": "eslint .",
|
|
32
34
|
"preview": "vite preview",
|
|
33
35
|
"storybook": "storybook dev -p 6006",
|
|
@@ -57,6 +59,7 @@
|
|
|
57
59
|
"@storybook/addon-docs": "^10.2.13",
|
|
58
60
|
"@storybook/addon-vitest": "^10.2.13",
|
|
59
61
|
"@storybook/react-vite": "^10.2.13",
|
|
62
|
+
"@tailwindcss/cli": "^4.2.1",
|
|
60
63
|
"@tailwindcss/vite": "^4.2.1",
|
|
61
64
|
"@types/node": "^24.10.1",
|
|
62
65
|
"@types/react": "^19.2.7",
|