@dito-uai/components 5.1.0-alpha.39 → 5.1.0-alpha.40
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/global.css +1 -1
- package/dist/index.cjs +51 -46
- package/dist/index.d.cts +919 -2849
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -13
- package/dist/ui/alert.d.ts +4 -220
- package/dist/ui/alert.d.ts.map +1 -1
- package/dist/ui/avatar.d.ts +4 -124
- package/dist/ui/avatar.d.ts.map +1 -1
- package/dist/ui/badge.d.ts +4 -148
- package/dist/ui/badge.d.ts.map +1 -1
- package/dist/ui/button.d.ts +94 -448
- package/dist/ui/button.d.ts.map +1 -1
- package/dist/ui/card.d.ts +2 -66
- package/dist/ui/card.d.ts.map +1 -1
- package/dist/ui/chips.d.ts +4 -236
- package/dist/ui/chips.d.ts.map +1 -1
- package/dist/ui/indicator.d.ts +4 -60
- package/dist/ui/indicator.d.ts.map +1 -1
- package/dist/ui/input-description.d.ts +2 -26
- package/dist/ui/input-description.d.ts.map +1 -1
- package/dist/ui/input.d.ts +4 -292
- package/dist/ui/input.d.ts.map +1 -1
- package/dist/ui/label.d.ts +2 -18
- package/dist/ui/label.d.ts.map +1 -1
- package/dist/ui/message.d.ts +2 -34
- package/dist/ui/message.d.ts.map +1 -1
- package/dist/ui/popover.d.ts +7 -0
- package/dist/ui/popover.d.ts.map +1 -0
- package/dist/ui/progress.d.ts +2 -22
- package/dist/ui/progress.d.ts.map +1 -1
- package/dist/ui/scope.d.ts +2 -106
- package/dist/ui/scope.d.ts.map +1 -1
- package/dist/ui/search.d.ts +2 -146
- package/dist/ui/search.d.ts.map +1 -1
- package/dist/ui/status.d.ts +2 -34
- package/dist/ui/status.d.ts.map +1 -1
- package/dist/ui/text.d.ts +2 -62
- package/dist/ui/text.d.ts.map +1 -1
- package/dist/ui/toggle.d.ts +4 -60
- package/dist/ui/toggle.d.ts.map +1 -1
- package/package.json +5 -4
- package/tailwind-preset.ts +4 -0
package/dist/ui/input.d.ts
CHANGED
|
@@ -41,79 +41,7 @@ export declare const inputVariants: import("tailwind-variants").TVReturnType<{
|
|
|
41
41
|
prefix: string;
|
|
42
42
|
input: string;
|
|
43
43
|
suffix: string;
|
|
44
|
-
}, undefined,
|
|
45
|
-
disabled: {
|
|
46
|
-
true: {
|
|
47
|
-
wrapper: string;
|
|
48
|
-
input: string;
|
|
49
|
-
prefix: string;
|
|
50
|
-
suffix: string;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
invalid: {
|
|
54
|
-
true: {
|
|
55
|
-
wrapper: string;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
size: {
|
|
59
|
-
small: {
|
|
60
|
-
wrapper: string;
|
|
61
|
-
input: string;
|
|
62
|
-
prefix: string;
|
|
63
|
-
suffix: string;
|
|
64
|
-
};
|
|
65
|
-
medium: {
|
|
66
|
-
wrapper: string;
|
|
67
|
-
input: string;
|
|
68
|
-
prefix: string;
|
|
69
|
-
suffix: string;
|
|
70
|
-
};
|
|
71
|
-
};
|
|
72
|
-
withAffix: {
|
|
73
|
-
false: {
|
|
74
|
-
wrapper: string;
|
|
75
|
-
};
|
|
76
|
-
true: {
|
|
77
|
-
wrapper: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
}, {
|
|
81
|
-
disabled: {
|
|
82
|
-
true: {
|
|
83
|
-
wrapper: string;
|
|
84
|
-
input: string;
|
|
85
|
-
prefix: string;
|
|
86
|
-
suffix: string;
|
|
87
|
-
};
|
|
88
|
-
};
|
|
89
|
-
invalid: {
|
|
90
|
-
true: {
|
|
91
|
-
wrapper: string;
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
size: {
|
|
95
|
-
small: {
|
|
96
|
-
wrapper: string;
|
|
97
|
-
input: string;
|
|
98
|
-
prefix: string;
|
|
99
|
-
suffix: string;
|
|
100
|
-
};
|
|
101
|
-
medium: {
|
|
102
|
-
wrapper: string;
|
|
103
|
-
input: string;
|
|
104
|
-
prefix: string;
|
|
105
|
-
suffix: string;
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
|
-
withAffix: {
|
|
109
|
-
false: {
|
|
110
|
-
wrapper: string;
|
|
111
|
-
};
|
|
112
|
-
true: {
|
|
113
|
-
wrapper: string;
|
|
114
|
-
};
|
|
115
|
-
};
|
|
116
|
-
}>, {
|
|
44
|
+
}, undefined, {
|
|
117
45
|
disabled: {
|
|
118
46
|
true: {
|
|
119
47
|
wrapper: string;
|
|
@@ -195,79 +123,7 @@ export declare const inputVariants: import("tailwind-variants").TVReturnType<{
|
|
|
195
123
|
prefix: string;
|
|
196
124
|
input: string;
|
|
197
125
|
suffix: string;
|
|
198
|
-
}, undefined,
|
|
199
|
-
disabled: {
|
|
200
|
-
true: {
|
|
201
|
-
wrapper: string;
|
|
202
|
-
input: string;
|
|
203
|
-
prefix: string;
|
|
204
|
-
suffix: string;
|
|
205
|
-
};
|
|
206
|
-
};
|
|
207
|
-
invalid: {
|
|
208
|
-
true: {
|
|
209
|
-
wrapper: string;
|
|
210
|
-
};
|
|
211
|
-
};
|
|
212
|
-
size: {
|
|
213
|
-
small: {
|
|
214
|
-
wrapper: string;
|
|
215
|
-
input: string;
|
|
216
|
-
prefix: string;
|
|
217
|
-
suffix: string;
|
|
218
|
-
};
|
|
219
|
-
medium: {
|
|
220
|
-
wrapper: string;
|
|
221
|
-
input: string;
|
|
222
|
-
prefix: string;
|
|
223
|
-
suffix: string;
|
|
224
|
-
};
|
|
225
|
-
};
|
|
226
|
-
withAffix: {
|
|
227
|
-
false: {
|
|
228
|
-
wrapper: string;
|
|
229
|
-
};
|
|
230
|
-
true: {
|
|
231
|
-
wrapper: string;
|
|
232
|
-
};
|
|
233
|
-
};
|
|
234
|
-
}, {
|
|
235
|
-
disabled: {
|
|
236
|
-
true: {
|
|
237
|
-
wrapper: string;
|
|
238
|
-
input: string;
|
|
239
|
-
prefix: string;
|
|
240
|
-
suffix: string;
|
|
241
|
-
};
|
|
242
|
-
};
|
|
243
|
-
invalid: {
|
|
244
|
-
true: {
|
|
245
|
-
wrapper: string;
|
|
246
|
-
};
|
|
247
|
-
};
|
|
248
|
-
size: {
|
|
249
|
-
small: {
|
|
250
|
-
wrapper: string;
|
|
251
|
-
input: string;
|
|
252
|
-
prefix: string;
|
|
253
|
-
suffix: string;
|
|
254
|
-
};
|
|
255
|
-
medium: {
|
|
256
|
-
wrapper: string;
|
|
257
|
-
input: string;
|
|
258
|
-
prefix: string;
|
|
259
|
-
suffix: string;
|
|
260
|
-
};
|
|
261
|
-
};
|
|
262
|
-
withAffix: {
|
|
263
|
-
false: {
|
|
264
|
-
wrapper: string;
|
|
265
|
-
};
|
|
266
|
-
true: {
|
|
267
|
-
wrapper: string;
|
|
268
|
-
};
|
|
269
|
-
};
|
|
270
|
-
}>, unknown, unknown, undefined>>;
|
|
126
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
271
127
|
export type InputProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size' | 'prefix' | 'suffix' | 'withAffix'> & VariantProps<typeof inputVariants> & {
|
|
272
128
|
id?: string;
|
|
273
129
|
value?: string;
|
|
@@ -318,79 +174,7 @@ declare const Input: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttribu
|
|
|
318
174
|
prefix: string;
|
|
319
175
|
input: string;
|
|
320
176
|
suffix: string;
|
|
321
|
-
}, undefined,
|
|
322
|
-
disabled: {
|
|
323
|
-
true: {
|
|
324
|
-
wrapper: string;
|
|
325
|
-
input: string;
|
|
326
|
-
prefix: string;
|
|
327
|
-
suffix: string;
|
|
328
|
-
};
|
|
329
|
-
};
|
|
330
|
-
invalid: {
|
|
331
|
-
true: {
|
|
332
|
-
wrapper: string;
|
|
333
|
-
};
|
|
334
|
-
};
|
|
335
|
-
size: {
|
|
336
|
-
small: {
|
|
337
|
-
wrapper: string;
|
|
338
|
-
input: string;
|
|
339
|
-
prefix: string;
|
|
340
|
-
suffix: string;
|
|
341
|
-
};
|
|
342
|
-
medium: {
|
|
343
|
-
wrapper: string;
|
|
344
|
-
input: string;
|
|
345
|
-
prefix: string;
|
|
346
|
-
suffix: string;
|
|
347
|
-
};
|
|
348
|
-
};
|
|
349
|
-
withAffix: {
|
|
350
|
-
false: {
|
|
351
|
-
wrapper: string;
|
|
352
|
-
};
|
|
353
|
-
true: {
|
|
354
|
-
wrapper: string;
|
|
355
|
-
};
|
|
356
|
-
};
|
|
357
|
-
}, {
|
|
358
|
-
disabled: {
|
|
359
|
-
true: {
|
|
360
|
-
wrapper: string;
|
|
361
|
-
input: string;
|
|
362
|
-
prefix: string;
|
|
363
|
-
suffix: string;
|
|
364
|
-
};
|
|
365
|
-
};
|
|
366
|
-
invalid: {
|
|
367
|
-
true: {
|
|
368
|
-
wrapper: string;
|
|
369
|
-
};
|
|
370
|
-
};
|
|
371
|
-
size: {
|
|
372
|
-
small: {
|
|
373
|
-
wrapper: string;
|
|
374
|
-
input: string;
|
|
375
|
-
prefix: string;
|
|
376
|
-
suffix: string;
|
|
377
|
-
};
|
|
378
|
-
medium: {
|
|
379
|
-
wrapper: string;
|
|
380
|
-
input: string;
|
|
381
|
-
prefix: string;
|
|
382
|
-
suffix: string;
|
|
383
|
-
};
|
|
384
|
-
};
|
|
385
|
-
withAffix: {
|
|
386
|
-
false: {
|
|
387
|
-
wrapper: string;
|
|
388
|
-
};
|
|
389
|
-
true: {
|
|
390
|
-
wrapper: string;
|
|
391
|
-
};
|
|
392
|
-
};
|
|
393
|
-
}>, {
|
|
177
|
+
}, undefined, {
|
|
394
178
|
disabled: {
|
|
395
179
|
true: {
|
|
396
180
|
wrapper: string;
|
|
@@ -472,79 +256,7 @@ declare const Input: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttribu
|
|
|
472
256
|
prefix: string;
|
|
473
257
|
input: string;
|
|
474
258
|
suffix: string;
|
|
475
|
-
}, undefined,
|
|
476
|
-
disabled: {
|
|
477
|
-
true: {
|
|
478
|
-
wrapper: string;
|
|
479
|
-
input: string;
|
|
480
|
-
prefix: string;
|
|
481
|
-
suffix: string;
|
|
482
|
-
};
|
|
483
|
-
};
|
|
484
|
-
invalid: {
|
|
485
|
-
true: {
|
|
486
|
-
wrapper: string;
|
|
487
|
-
};
|
|
488
|
-
};
|
|
489
|
-
size: {
|
|
490
|
-
small: {
|
|
491
|
-
wrapper: string;
|
|
492
|
-
input: string;
|
|
493
|
-
prefix: string;
|
|
494
|
-
suffix: string;
|
|
495
|
-
};
|
|
496
|
-
medium: {
|
|
497
|
-
wrapper: string;
|
|
498
|
-
input: string;
|
|
499
|
-
prefix: string;
|
|
500
|
-
suffix: string;
|
|
501
|
-
};
|
|
502
|
-
};
|
|
503
|
-
withAffix: {
|
|
504
|
-
false: {
|
|
505
|
-
wrapper: string;
|
|
506
|
-
};
|
|
507
|
-
true: {
|
|
508
|
-
wrapper: string;
|
|
509
|
-
};
|
|
510
|
-
};
|
|
511
|
-
}, {
|
|
512
|
-
disabled: {
|
|
513
|
-
true: {
|
|
514
|
-
wrapper: string;
|
|
515
|
-
input: string;
|
|
516
|
-
prefix: string;
|
|
517
|
-
suffix: string;
|
|
518
|
-
};
|
|
519
|
-
};
|
|
520
|
-
invalid: {
|
|
521
|
-
true: {
|
|
522
|
-
wrapper: string;
|
|
523
|
-
};
|
|
524
|
-
};
|
|
525
|
-
size: {
|
|
526
|
-
small: {
|
|
527
|
-
wrapper: string;
|
|
528
|
-
input: string;
|
|
529
|
-
prefix: string;
|
|
530
|
-
suffix: string;
|
|
531
|
-
};
|
|
532
|
-
medium: {
|
|
533
|
-
wrapper: string;
|
|
534
|
-
input: string;
|
|
535
|
-
prefix: string;
|
|
536
|
-
suffix: string;
|
|
537
|
-
};
|
|
538
|
-
};
|
|
539
|
-
withAffix: {
|
|
540
|
-
false: {
|
|
541
|
-
wrapper: string;
|
|
542
|
-
};
|
|
543
|
-
true: {
|
|
544
|
-
wrapper: string;
|
|
545
|
-
};
|
|
546
|
-
};
|
|
547
|
-
}>, unknown, unknown, undefined>>> & {
|
|
259
|
+
}, undefined, unknown, unknown, undefined>>> & {
|
|
548
260
|
id?: string;
|
|
549
261
|
value?: string;
|
|
550
262
|
defaultValue?: string;
|
package/dist/ui/input.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../src/ui/input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAM,KAAK,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAI1D,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../src/ui/input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAM,KAAK,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAI1D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CA4DxB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,IAAI,CAC3B,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAC3C,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,WAAW,CAC3C,GACC,YAAY,CAAC,OAAO,aAAa,CAAC,GAAG;IACnC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC;AAEJ,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SATF,MAAM;YACH,MAAM;mBACC,MAAM;aACZ,KAAK,CAAC,SAAS;aACf,KAAK,CAAC,SAAS;cACd,OAAO;qBACA,MAAM;0CAoD1B,CAAC;AAGF,eAAe,KAAK,CAAC"}
|
package/dist/ui/label.d.ts
CHANGED
|
@@ -5,15 +5,7 @@ declare const labelVariants: import("tailwind-variants").TVReturnType<{
|
|
|
5
5
|
invalid: {
|
|
6
6
|
true: string;
|
|
7
7
|
};
|
|
8
|
-
}, undefined, "text-navy-600 text-base font-medium",
|
|
9
|
-
invalid: {
|
|
10
|
-
true: string;
|
|
11
|
-
};
|
|
12
|
-
}, {
|
|
13
|
-
invalid: {
|
|
14
|
-
true: string;
|
|
15
|
-
};
|
|
16
|
-
}>, {
|
|
8
|
+
}, undefined, "text-navy-600 text-base font-medium", {
|
|
17
9
|
invalid: {
|
|
18
10
|
true: string;
|
|
19
11
|
};
|
|
@@ -21,15 +13,7 @@ declare const labelVariants: import("tailwind-variants").TVReturnType<{
|
|
|
21
13
|
invalid: {
|
|
22
14
|
true: string;
|
|
23
15
|
};
|
|
24
|
-
}, undefined, "text-navy-600 text-base font-medium",
|
|
25
|
-
invalid: {
|
|
26
|
-
true: string;
|
|
27
|
-
};
|
|
28
|
-
}, {
|
|
29
|
-
invalid: {
|
|
30
|
-
true: string;
|
|
31
|
-
};
|
|
32
|
-
}>, unknown, unknown, undefined>>;
|
|
16
|
+
}, undefined, "text-navy-600 text-base font-medium", unknown, unknown, undefined>>;
|
|
33
17
|
export type LabelProps = HTMLAttributes<HTMLSpanElement> & VariantProps<typeof labelVariants> & {
|
|
34
18
|
text?: string;
|
|
35
19
|
suffix?: React.ElementType;
|
package/dist/ui/label.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../src/ui/label.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,YAAY,EAAM,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEvC,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../src/ui/label.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,YAAY,EAAM,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEvC,QAAA,MAAM,aAAa;;;;;;;;;;;;kFAOjB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,cAAc,CAAC,eAAe,CAAC,GACtD,YAAY,CAAC,OAAO,aAAa,CAAC,GAAG;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEJ,QAAA,MAAM,KAAK;sEAOR,UAAU;;CAUZ,CAAC;AAIF,eAAe,KAAK,CAAC"}
|
package/dist/ui/message.d.ts
CHANGED
|
@@ -16,23 +16,7 @@ declare const messageVariants: import("tailwind-variants").TVReturnType<{
|
|
|
16
16
|
info: string;
|
|
17
17
|
loading: string;
|
|
18
18
|
};
|
|
19
|
-
}, undefined, "!rounded-m !flex !min-h-5 !w-fit !items-center !gap-1 !p-0 !font-sans !text-base !font-medium",
|
|
20
|
-
type: {
|
|
21
|
-
success: string;
|
|
22
|
-
error: string;
|
|
23
|
-
warning: string;
|
|
24
|
-
info: string;
|
|
25
|
-
loading: string;
|
|
26
|
-
};
|
|
27
|
-
}, {
|
|
28
|
-
type: {
|
|
29
|
-
success: string;
|
|
30
|
-
error: string;
|
|
31
|
-
warning: string;
|
|
32
|
-
info: string;
|
|
33
|
-
loading: string;
|
|
34
|
-
};
|
|
35
|
-
}>, {
|
|
19
|
+
}, undefined, "!rounded-m !flex !min-h-5 !w-fit !items-center !gap-1 !p-0 !font-sans !text-base !font-medium", {
|
|
36
20
|
type: {
|
|
37
21
|
success: string;
|
|
38
22
|
error: string;
|
|
@@ -48,23 +32,7 @@ declare const messageVariants: import("tailwind-variants").TVReturnType<{
|
|
|
48
32
|
info: string;
|
|
49
33
|
loading: string;
|
|
50
34
|
};
|
|
51
|
-
}, undefined, "!rounded-m !flex !min-h-5 !w-fit !items-center !gap-1 !p-0 !font-sans !text-base !font-medium",
|
|
52
|
-
type: {
|
|
53
|
-
success: string;
|
|
54
|
-
error: string;
|
|
55
|
-
warning: string;
|
|
56
|
-
info: string;
|
|
57
|
-
loading: string;
|
|
58
|
-
};
|
|
59
|
-
}, {
|
|
60
|
-
type: {
|
|
61
|
-
success: string;
|
|
62
|
-
error: string;
|
|
63
|
-
warning: string;
|
|
64
|
-
info: string;
|
|
65
|
-
loading: string;
|
|
66
|
-
};
|
|
67
|
-
}>, unknown, unknown, undefined>>;
|
|
35
|
+
}, undefined, "!rounded-m !flex !min-h-5 !w-fit !items-center !gap-1 !p-0 !font-sans !text-base !font-medium", unknown, unknown, undefined>>;
|
|
68
36
|
export type MessageProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof messageVariants> & {
|
|
69
37
|
text: string | React.ReactNode;
|
|
70
38
|
closable?: boolean;
|
package/dist/ui/message.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/ui/message.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEL,mBAAmB,EACnB,YAAY,EAEb,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAErD,OAAO,2CAA2C,CAAC;AAEnD,oBAAY,WAAW;IACrB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,MAAM,UAAU;IAChB,OAAO,YAAY;CACpB;AAED,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/ui/message.tsx"],"names":[],"mappings":"AAQA,OAAO,EAEL,mBAAmB,EACnB,YAAY,EAEb,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAErD,OAAO,2CAA2C,CAAC;AAEnD,oBAAY,WAAW;IACrB,OAAO,YAAY;IACnB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,MAAM,UAAU;IAChB,OAAO,YAAY;CACpB;AAED,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;4IAgBnB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAC7D,YAAY,CAAC,OAAO,eAAe,CAAC,GAAG;IACrC,IAAI,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,GAAG,IAAI,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;AAiDjC,QAAA,MAAM,OAAO;oBAEK,YAAY,CAAC,MAAM,CAAC,aAAa,YAAY,CAAC,UAAU,CAAC;kBAG3D,YAAY,CAAC,MAAM,CAAC,aAAa,YAAY,CAAC,UAAU,CAAC;iBAG1D,YAAY,CAAC,MAAM,CAAC,aAAa,YAAY,CAAC,UAAU,CAAC;oBAGtD,YAAY,CAAC,MAAM,CAAC,aAAa,YAAY,CAAC,UAAU,CAAC;oBAGzD,YAAY,CAAC,MAAM,CAAC,aAAa,YAAY,CAAC,UAAU,CAAC;;uFA5CtE,YAAY;CAgDhB,CAAC;AAEF,eAAO,MAAM,gBAAgB,UAAW,mBAAmB,4CAiB1D,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
3
|
+
declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
|
|
4
|
+
declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
export { Popover, PopoverTrigger, PopoverContent };
|
|
7
|
+
//# sourceMappingURL=popover.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../src/ui/popover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAG5D,QAAA,MAAM,OAAO,yCAAwB,CAAC;AAEtC,QAAA,MAAM,cAAc,gHAA2B,CAAC;AAEhD,QAAA,MAAM,cAAc,gKAgBlB,CAAC;AAGH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC"}
|
package/dist/ui/progress.d.ts
CHANGED
|
@@ -5,17 +5,7 @@ declare const progressVariants: import("tailwind-variants").TVReturnType<{
|
|
|
5
5
|
indigo: string;
|
|
6
6
|
white: string;
|
|
7
7
|
};
|
|
8
|
-
}, undefined, "text-midnight-blue-600",
|
|
9
|
-
bg: {
|
|
10
|
-
indigo: string;
|
|
11
|
-
white: string;
|
|
12
|
-
};
|
|
13
|
-
}, {
|
|
14
|
-
bg: {
|
|
15
|
-
indigo: string;
|
|
16
|
-
white: string;
|
|
17
|
-
};
|
|
18
|
-
}>, {
|
|
8
|
+
}, undefined, "text-midnight-blue-600", {
|
|
19
9
|
bg: {
|
|
20
10
|
indigo: string;
|
|
21
11
|
white: string;
|
|
@@ -25,17 +15,7 @@ declare const progressVariants: import("tailwind-variants").TVReturnType<{
|
|
|
25
15
|
indigo: string;
|
|
26
16
|
white: string;
|
|
27
17
|
};
|
|
28
|
-
}, undefined, "text-midnight-blue-600",
|
|
29
|
-
bg: {
|
|
30
|
-
indigo: string;
|
|
31
|
-
white: string;
|
|
32
|
-
};
|
|
33
|
-
}, {
|
|
34
|
-
bg: {
|
|
35
|
-
indigo: string;
|
|
36
|
-
white: string;
|
|
37
|
-
};
|
|
38
|
-
}>, unknown, unknown, undefined>>;
|
|
18
|
+
}, undefined, "text-midnight-blue-600", unknown, unknown, undefined>>;
|
|
39
19
|
type CommonProps = {
|
|
40
20
|
value: number;
|
|
41
21
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../src/ui/progress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAOrD,QAAA,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../src/ui/progress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAOrD,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;qEAQpB,CAAC;AAEH,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GACvE,YAAY,CAAC,OAAO,gBAAgB,CAAC,GACrC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,GAAG;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AA8BJ,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAC5D,YAAY,CAAC,OAAO,gBAAgB,CAAC,GACrC,WAAW,GAAG;IACZ,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CAC1B,CAAC;AAyCJ,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAC9D,YAAY,CAAC,OAAO,gBAAgB,CAAC,GACrC,WAAW,GAAG;IACZ,IAAI,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,CAAC;CAChC,CAAC;AA4BJ,QAAA,MAAM,QAAQ,EAAE;IACd,SAAS,EAAE,KAAK,CAAC,yBAAyB,CAAC,sBAAsB,CAAC,CAAC;IACnE,MAAM,EAAE,KAAK,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAC;IACrD,QAAQ,EAAE,KAAK,CAAC,yBAAyB,CAAC,aAAa,CAAC,CAAC;CAK1D,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/dist/ui/scope.d.ts
CHANGED
|
@@ -31,59 +31,7 @@ declare const scopeVariants: import("tailwind-variants").TVReturnType<{
|
|
|
31
31
|
container: string;
|
|
32
32
|
icon: string;
|
|
33
33
|
text: string;
|
|
34
|
-
}, undefined,
|
|
35
|
-
variant: {
|
|
36
|
-
default: string;
|
|
37
|
-
light: string;
|
|
38
|
-
green: string;
|
|
39
|
-
red: string;
|
|
40
|
-
};
|
|
41
|
-
size: {
|
|
42
|
-
default: {
|
|
43
|
-
container: string;
|
|
44
|
-
};
|
|
45
|
-
small: {
|
|
46
|
-
container: string;
|
|
47
|
-
text: string;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
disabled: {
|
|
51
|
-
true: {
|
|
52
|
-
container: string;
|
|
53
|
-
icon: string;
|
|
54
|
-
};
|
|
55
|
-
false: {
|
|
56
|
-
container: string;
|
|
57
|
-
icon: string;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
}, {
|
|
61
|
-
variant: {
|
|
62
|
-
default: string;
|
|
63
|
-
light: string;
|
|
64
|
-
green: string;
|
|
65
|
-
red: string;
|
|
66
|
-
};
|
|
67
|
-
size: {
|
|
68
|
-
default: {
|
|
69
|
-
container: string;
|
|
70
|
-
};
|
|
71
|
-
small: {
|
|
72
|
-
container: string;
|
|
73
|
-
text: string;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
disabled: {
|
|
77
|
-
true: {
|
|
78
|
-
container: string;
|
|
79
|
-
icon: string;
|
|
80
|
-
};
|
|
81
|
-
false: {
|
|
82
|
-
container: string;
|
|
83
|
-
icon: string;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
}>, {
|
|
34
|
+
}, undefined, {
|
|
87
35
|
variant: {
|
|
88
36
|
default: string;
|
|
89
37
|
light: string;
|
|
@@ -143,59 +91,7 @@ declare const scopeVariants: import("tailwind-variants").TVReturnType<{
|
|
|
143
91
|
container: string;
|
|
144
92
|
icon: string;
|
|
145
93
|
text: string;
|
|
146
|
-
}, undefined,
|
|
147
|
-
variant: {
|
|
148
|
-
default: string;
|
|
149
|
-
light: string;
|
|
150
|
-
green: string;
|
|
151
|
-
red: string;
|
|
152
|
-
};
|
|
153
|
-
size: {
|
|
154
|
-
default: {
|
|
155
|
-
container: string;
|
|
156
|
-
};
|
|
157
|
-
small: {
|
|
158
|
-
container: string;
|
|
159
|
-
text: string;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
disabled: {
|
|
163
|
-
true: {
|
|
164
|
-
container: string;
|
|
165
|
-
icon: string;
|
|
166
|
-
};
|
|
167
|
-
false: {
|
|
168
|
-
container: string;
|
|
169
|
-
icon: string;
|
|
170
|
-
};
|
|
171
|
-
};
|
|
172
|
-
}, {
|
|
173
|
-
variant: {
|
|
174
|
-
default: string;
|
|
175
|
-
light: string;
|
|
176
|
-
green: string;
|
|
177
|
-
red: string;
|
|
178
|
-
};
|
|
179
|
-
size: {
|
|
180
|
-
default: {
|
|
181
|
-
container: string;
|
|
182
|
-
};
|
|
183
|
-
small: {
|
|
184
|
-
container: string;
|
|
185
|
-
text: string;
|
|
186
|
-
};
|
|
187
|
-
};
|
|
188
|
-
disabled: {
|
|
189
|
-
true: {
|
|
190
|
-
container: string;
|
|
191
|
-
icon: string;
|
|
192
|
-
};
|
|
193
|
-
false: {
|
|
194
|
-
container: string;
|
|
195
|
-
icon: string;
|
|
196
|
-
};
|
|
197
|
-
};
|
|
198
|
-
}>, unknown, unknown, undefined>>;
|
|
94
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
199
95
|
export type ScopeGroupProps = Omit<React.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root>, 'type'> & VariantProps<typeof scopeVariants>;
|
|
200
96
|
export type ScopeItemProps = React.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof scopeVariants> & {
|
|
201
97
|
text: string;
|
package/dist/ui/scope.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../src/ui/scope.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,oBAAoB,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAM7D,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../src/ui/scope.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,oBAAoB,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAM7D,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAkFjB,CAAC;AAUH,MAAM,MAAM,eAAe,GAAG,IAAI,CAChC,KAAK,CAAC,wBAAwB,CAAC,OAAO,oBAAoB,CAAC,IAAI,CAAC,EAChE,MAAM,CACP,GACC,YAAY,CAAC,OAAO,aAAa,CAAC,CAAC;AA0BrC,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,wBAAwB,CACzD,OAAO,oBAAoB,CAAC,IAAI,CACjC,GACC,YAAY,CAAC,OAAO,aAAa,CAAC,GAAG;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CAC1B,CAAC;AA+BJ,QAAA,MAAM,KAAK,EAAE;IACX,KAAK,EAAE,KAAK,CAAC,yBAAyB,CAAC,eAAe,CAAC,CAAC;IACxD,IAAI,EAAE,KAAK,CAAC,yBAAyB,CAAC,cAAc,CAAC,CAAC;CAIvD,CAAC;AAEF,eAAe,KAAK,CAAC"}
|