@szum-tech/design-system 3.11.1 → 3.12.1
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/components/alert/index.d.cts +3 -3
- package/dist/components/alert/index.d.ts +3 -3
- package/dist/components/badge/index.d.cts +3 -3
- package/dist/components/badge/index.d.ts +3 -3
- package/dist/components/badge-overflow/index.cjs +182 -0
- package/dist/components/badge-overflow/index.d.cts +21 -0
- package/dist/components/badge-overflow/index.d.ts +21 -0
- package/dist/components/badge-overflow/index.js +160 -0
- package/dist/components/button/index.cjs +10 -10
- package/dist/components/button/index.d.cts +5 -5
- package/dist/components/button/index.d.ts +5 -5
- package/dist/components/button/index.js +10 -10
- package/dist/components/carousel/index.cjs +261 -0
- package/dist/components/carousel/index.d.cts +47 -0
- package/dist/components/carousel/index.d.ts +47 -0
- package/dist/components/carousel/index.js +230 -0
- package/dist/components/color-swatch/index.d.cts +3 -3
- package/dist/components/color-swatch/index.d.ts +3 -3
- package/dist/components/dialog/index.d.cts +3 -3
- package/dist/components/dialog/index.d.ts +3 -3
- package/dist/components/empty/index.d.cts +3 -3
- package/dist/components/empty/index.d.ts +3 -3
- package/dist/components/field/index.d.cts +4 -4
- package/dist/components/field/index.d.ts +4 -4
- package/dist/components/index.cjs +104 -104
- package/dist/components/index.js +10 -10
- package/dist/components/item/index.d.cts +7 -7
- package/dist/components/item/index.d.ts +7 -7
- package/dist/components/radio-group/index.d.cts +12 -1
- package/dist/components/radio-group/index.d.ts +12 -1
- package/dist/components/sheet/index.d.cts +3 -3
- package/dist/components/sheet/index.d.ts +3 -3
- package/dist/components/status/index.d.cts +3 -3
- package/dist/components/status/index.d.ts +3 -3
- package/dist/components/stepper/index.cjs +10 -10
- package/dist/components/stepper/index.d.cts +1 -1
- package/dist/components/stepper/index.d.ts +1 -1
- package/dist/components/stepper/index.js +10 -10
- package/dist/components/timeline/index.d.cts +1 -1
- package/dist/components/timeline/index.d.ts +1 -1
- package/dist/components/toaster/index.cjs +10 -10
- package/dist/components/toaster/index.js +10 -10
- package/package.json +19 -18
|
@@ -5,9 +5,9 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
5
5
|
import { Label } from '../label/index.cjs';
|
|
6
6
|
import 'radix-ui';
|
|
7
7
|
|
|
8
|
-
declare const fieldVariants: (props?:
|
|
9
|
-
orientation?: "horizontal" | "vertical" | "responsive"
|
|
10
|
-
} & class_variance_authority_types.ClassProp)
|
|
8
|
+
declare const fieldVariants: (props?: {
|
|
9
|
+
orientation?: "horizontal" | "vertical" | "responsive";
|
|
10
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
11
11
|
|
|
12
12
|
type FieldProps = React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>;
|
|
13
13
|
declare function Field({ className, orientation, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
|
|
@@ -23,7 +23,7 @@ type FieldErrorProps = React.ComponentProps<"div"> & {
|
|
|
23
23
|
message?: string;
|
|
24
24
|
} | undefined>;
|
|
25
25
|
};
|
|
26
|
-
declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element
|
|
26
|
+
declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
28
28
|
type FieldGroupProps = React.ComponentProps<"div">;
|
|
29
29
|
declare function FieldGroup({ className, ...props }: FieldGroupProps): react_jsx_runtime.JSX.Element;
|
|
@@ -5,9 +5,9 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
5
5
|
import { Label } from '../label/index.js';
|
|
6
6
|
import 'radix-ui';
|
|
7
7
|
|
|
8
|
-
declare const fieldVariants: (props?:
|
|
9
|
-
orientation?: "horizontal" | "vertical" | "responsive"
|
|
10
|
-
} & class_variance_authority_types.ClassProp)
|
|
8
|
+
declare const fieldVariants: (props?: {
|
|
9
|
+
orientation?: "horizontal" | "vertical" | "responsive";
|
|
10
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
11
11
|
|
|
12
12
|
type FieldProps = React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>;
|
|
13
13
|
declare function Field({ className, orientation, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
|
|
@@ -23,7 +23,7 @@ type FieldErrorProps = React.ComponentProps<"div"> & {
|
|
|
23
23
|
message?: string;
|
|
24
24
|
} | undefined>;
|
|
25
25
|
};
|
|
26
|
-
declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element
|
|
26
|
+
declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
28
28
|
type FieldGroupProps = React.ComponentProps<"div">;
|
|
29
29
|
declare function FieldGroup({ className, ...props }: FieldGroupProps): react_jsx_runtime.JSX.Element;
|
|
@@ -3,18 +3,22 @@
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
5
|
var chunkCP43WJCN_cjs = require('../chunk-CP43WJCN.cjs');
|
|
6
|
+
var chunkDGWBE2Y3_cjs = require('../chunk-DGWBE2Y3.cjs');
|
|
7
|
+
var chunkGYXQUTWZ_cjs = require('../chunk-GYXQUTWZ.cjs');
|
|
8
|
+
var chunkYEFLGE3L_cjs = require('../chunk-YEFLGE3L.cjs');
|
|
6
9
|
var chunkNU5UQPBX_cjs = require('../chunk-NU5UQPBX.cjs');
|
|
7
|
-
var chunkUJX74PFK_cjs = require('../chunk-UJX74PFK.cjs');
|
|
8
10
|
var chunkKQ6QE7BT_cjs = require('../chunk-KQ6QE7BT.cjs');
|
|
9
|
-
var chunkA7SBXO2Y_cjs = require('../chunk-A7SBXO2Y.cjs');
|
|
10
|
-
var chunkDGWBE2Y3_cjs = require('../chunk-DGWBE2Y3.cjs');
|
|
11
11
|
var chunkEUH466AL_cjs = require('../chunk-EUH466AL.cjs');
|
|
12
|
+
var chunkA7SBXO2Y_cjs = require('../chunk-A7SBXO2Y.cjs');
|
|
13
|
+
var chunkS2BCU6WG_cjs = require('../chunk-S2BCU6WG.cjs');
|
|
14
|
+
var chunkTH44JYXB_cjs = require('../chunk-TH44JYXB.cjs');
|
|
12
15
|
var chunkXENOUBSI_cjs = require('../chunk-XENOUBSI.cjs');
|
|
16
|
+
var chunkUJX74PFK_cjs = require('../chunk-UJX74PFK.cjs');
|
|
13
17
|
var chunkXJZOANXX_cjs = require('../chunk-XJZOANXX.cjs');
|
|
14
|
-
var chunkGHV2TURY_cjs = require('../chunk-GHV2TURY.cjs');
|
|
15
18
|
var chunk3WSQRFUY_cjs = require('../chunk-3WSQRFUY.cjs');
|
|
16
|
-
var
|
|
17
|
-
var
|
|
19
|
+
var chunkGHV2TURY_cjs = require('../chunk-GHV2TURY.cjs');
|
|
20
|
+
var chunkVK5EX3OG_cjs = require('../chunk-VK5EX3OG.cjs');
|
|
21
|
+
var chunkCXHDWIGF_cjs = require('../chunk-CXHDWIGF.cjs');
|
|
18
22
|
var chunkDTYX7CYN_cjs = require('../chunk-DTYX7CYN.cjs');
|
|
19
23
|
var chunk6X26XC6P_cjs = require('../chunk-6X26XC6P.cjs');
|
|
20
24
|
var chunk5AA4IE2T_cjs = require('../chunk-5AA4IE2T.cjs');
|
|
@@ -22,15 +26,11 @@ var chunkCFJ44JVK_cjs = require('../chunk-CFJ44JVK.cjs');
|
|
|
22
26
|
var chunkUIOBJSKZ_cjs = require('../chunk-UIOBJSKZ.cjs');
|
|
23
27
|
var chunkS3ANEJJ7_cjs = require('../chunk-S3ANEJJ7.cjs');
|
|
24
28
|
var chunk2WQJ36RD_cjs = require('../chunk-2WQJ36RD.cjs');
|
|
25
|
-
var chunkS2BCU6WG_cjs = require('../chunk-S2BCU6WG.cjs');
|
|
26
|
-
var chunkTH44JYXB_cjs = require('../chunk-TH44JYXB.cjs');
|
|
27
29
|
var chunkZVF7J4EI_cjs = require('../chunk-ZVF7J4EI.cjs');
|
|
28
30
|
var chunk2Y2ZCPNV_cjs = require('../chunk-2Y2ZCPNV.cjs');
|
|
29
31
|
var chunkHCHVDUI6_cjs = require('../chunk-HCHVDUI6.cjs');
|
|
30
32
|
var chunkULEEQ723_cjs = require('../chunk-ULEEQ723.cjs');
|
|
31
33
|
var chunkUSIW3VT5_cjs = require('../chunk-USIW3VT5.cjs');
|
|
32
|
-
var chunkVK5EX3OG_cjs = require('../chunk-VK5EX3OG.cjs');
|
|
33
|
-
var chunkCXHDWIGF_cjs = require('../chunk-CXHDWIGF.cjs');
|
|
34
34
|
require('../chunk-XIQUR62A.cjs');
|
|
35
35
|
var chunkX3ZT3KGX_cjs = require('../chunk-X3ZT3KGX.cjs');
|
|
36
36
|
var chunk3GNVQFCK_cjs = require('../chunk-3GNVQFCK.cjs');
|
|
@@ -128,17 +128,41 @@ Object.defineProperty(exports, "useStepperItemContext", {
|
|
|
128
128
|
enumerable: true,
|
|
129
129
|
get: function () { return chunkCP43WJCN_cjs.useStepperItemContext; }
|
|
130
130
|
});
|
|
131
|
-
Object.defineProperty(exports, "
|
|
131
|
+
Object.defineProperty(exports, "WordRotate", {
|
|
132
132
|
enumerable: true,
|
|
133
|
-
get: function () { return
|
|
133
|
+
get: function () { return chunkDGWBE2Y3_cjs.WordRotate; }
|
|
134
134
|
});
|
|
135
|
-
Object.defineProperty(exports, "
|
|
135
|
+
Object.defineProperty(exports, "Status", {
|
|
136
136
|
enumerable: true,
|
|
137
|
-
get: function () { return
|
|
137
|
+
get: function () { return chunkGYXQUTWZ_cjs.Status; }
|
|
138
138
|
});
|
|
139
|
-
Object.defineProperty(exports, "
|
|
139
|
+
Object.defineProperty(exports, "StatusIndicator", {
|
|
140
140
|
enumerable: true,
|
|
141
|
-
get: function () { return
|
|
141
|
+
get: function () { return chunkGYXQUTWZ_cjs.StatusIndicator; }
|
|
142
|
+
});
|
|
143
|
+
Object.defineProperty(exports, "StatusLabel", {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function () { return chunkGYXQUTWZ_cjs.StatusLabel; }
|
|
146
|
+
});
|
|
147
|
+
Object.defineProperty(exports, "Tabs", {
|
|
148
|
+
enumerable: true,
|
|
149
|
+
get: function () { return chunkYEFLGE3L_cjs.Tabs; }
|
|
150
|
+
});
|
|
151
|
+
Object.defineProperty(exports, "TabsContent", {
|
|
152
|
+
enumerable: true,
|
|
153
|
+
get: function () { return chunkYEFLGE3L_cjs.TabsContent; }
|
|
154
|
+
});
|
|
155
|
+
Object.defineProperty(exports, "TabsList", {
|
|
156
|
+
enumerable: true,
|
|
157
|
+
get: function () { return chunkYEFLGE3L_cjs.TabsList; }
|
|
158
|
+
});
|
|
159
|
+
Object.defineProperty(exports, "TabsTrigger", {
|
|
160
|
+
enumerable: true,
|
|
161
|
+
get: function () { return chunkYEFLGE3L_cjs.TabsTrigger; }
|
|
162
|
+
});
|
|
163
|
+
Object.defineProperty(exports, "Textarea", {
|
|
164
|
+
enumerable: true,
|
|
165
|
+
get: function () { return chunkNU5UQPBX_cjs.Textarea; }
|
|
142
166
|
});
|
|
143
167
|
Object.defineProperty(exports, "Timeline", {
|
|
144
168
|
enumerable: true,
|
|
@@ -176,6 +200,10 @@ Object.defineProperty(exports, "TimelineTitle", {
|
|
|
176
200
|
enumerable: true,
|
|
177
201
|
get: function () { return chunkKQ6QE7BT_cjs.TimelineTitle; }
|
|
178
202
|
});
|
|
203
|
+
Object.defineProperty(exports, "TypingText", {
|
|
204
|
+
enumerable: true,
|
|
205
|
+
get: function () { return chunkEUH466AL_cjs.TypingText; }
|
|
206
|
+
});
|
|
179
207
|
Object.defineProperty(exports, "Tooltip", {
|
|
180
208
|
enumerable: true,
|
|
181
209
|
get: function () { return chunkA7SBXO2Y_cjs.Tooltip; }
|
|
@@ -188,13 +216,17 @@ Object.defineProperty(exports, "TooltipTrigger", {
|
|
|
188
216
|
enumerable: true,
|
|
189
217
|
get: function () { return chunkA7SBXO2Y_cjs.TooltipTrigger; }
|
|
190
218
|
});
|
|
191
|
-
Object.defineProperty(exports, "
|
|
219
|
+
Object.defineProperty(exports, "Masonry", {
|
|
192
220
|
enumerable: true,
|
|
193
|
-
get: function () { return
|
|
221
|
+
get: function () { return chunkS2BCU6WG_cjs.Masonry; }
|
|
194
222
|
});
|
|
195
|
-
Object.defineProperty(exports, "
|
|
223
|
+
Object.defineProperty(exports, "MasonryItem", {
|
|
196
224
|
enumerable: true,
|
|
197
|
-
get: function () { return
|
|
225
|
+
get: function () { return chunkS2BCU6WG_cjs.MasonryItem; }
|
|
226
|
+
});
|
|
227
|
+
Object.defineProperty(exports, "Progress", {
|
|
228
|
+
enumerable: true,
|
|
229
|
+
get: function () { return chunkTH44JYXB_cjs.Progress; }
|
|
198
230
|
});
|
|
199
231
|
Object.defineProperty(exports, "RadioGroup", {
|
|
200
232
|
enumerable: true,
|
|
@@ -204,6 +236,14 @@ Object.defineProperty(exports, "RadioGroupItem", {
|
|
|
204
236
|
enumerable: true,
|
|
205
237
|
get: function () { return chunkXENOUBSI_cjs.RadioGroupItem; }
|
|
206
238
|
});
|
|
239
|
+
Object.defineProperty(exports, "ScrollArea", {
|
|
240
|
+
enumerable: true,
|
|
241
|
+
get: function () { return chunkUJX74PFK_cjs.ScrollArea; }
|
|
242
|
+
});
|
|
243
|
+
Object.defineProperty(exports, "ScrollBar", {
|
|
244
|
+
enumerable: true,
|
|
245
|
+
get: function () { return chunkUJX74PFK_cjs.ScrollBar; }
|
|
246
|
+
});
|
|
207
247
|
Object.defineProperty(exports, "Select", {
|
|
208
248
|
enumerable: true,
|
|
209
249
|
get: function () { return chunkXJZOANXX_cjs.Select; }
|
|
@@ -228,6 +268,10 @@ Object.defineProperty(exports, "SelectSeparator", {
|
|
|
228
268
|
enumerable: true,
|
|
229
269
|
get: function () { return chunkXJZOANXX_cjs.SelectSeparator; }
|
|
230
270
|
});
|
|
271
|
+
Object.defineProperty(exports, "Spinner", {
|
|
272
|
+
enumerable: true,
|
|
273
|
+
get: function () { return chunk3WSQRFUY_cjs.Spinner; }
|
|
274
|
+
});
|
|
231
275
|
Object.defineProperty(exports, "Sheet", {
|
|
232
276
|
enumerable: true,
|
|
233
277
|
get: function () { return chunkGHV2TURY_cjs.Sheet; }
|
|
@@ -260,37 +304,61 @@ Object.defineProperty(exports, "SheetTrigger", {
|
|
|
260
304
|
enumerable: true,
|
|
261
305
|
get: function () { return chunkGHV2TURY_cjs.SheetTrigger; }
|
|
262
306
|
});
|
|
263
|
-
Object.defineProperty(exports, "
|
|
307
|
+
Object.defineProperty(exports, "Dialog", {
|
|
264
308
|
enumerable: true,
|
|
265
|
-
get: function () { return
|
|
309
|
+
get: function () { return chunkVK5EX3OG_cjs.Dialog; }
|
|
266
310
|
});
|
|
267
|
-
Object.defineProperty(exports, "
|
|
311
|
+
Object.defineProperty(exports, "DialogClose", {
|
|
268
312
|
enumerable: true,
|
|
269
|
-
get: function () { return
|
|
313
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogClose; }
|
|
270
314
|
});
|
|
271
|
-
Object.defineProperty(exports, "
|
|
315
|
+
Object.defineProperty(exports, "DialogContent", {
|
|
272
316
|
enumerable: true,
|
|
273
|
-
get: function () { return
|
|
317
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogContent; }
|
|
274
318
|
});
|
|
275
|
-
Object.defineProperty(exports, "
|
|
319
|
+
Object.defineProperty(exports, "DialogDescription", {
|
|
276
320
|
enumerable: true,
|
|
277
|
-
get: function () { return
|
|
321
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogDescription; }
|
|
278
322
|
});
|
|
279
|
-
Object.defineProperty(exports, "
|
|
323
|
+
Object.defineProperty(exports, "DialogFooter", {
|
|
280
324
|
enumerable: true,
|
|
281
|
-
get: function () { return
|
|
325
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogFooter; }
|
|
282
326
|
});
|
|
283
|
-
Object.defineProperty(exports, "
|
|
327
|
+
Object.defineProperty(exports, "DialogHeader", {
|
|
284
328
|
enumerable: true,
|
|
285
|
-
get: function () { return
|
|
329
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogHeader; }
|
|
286
330
|
});
|
|
287
|
-
Object.defineProperty(exports, "
|
|
331
|
+
Object.defineProperty(exports, "DialogTitle", {
|
|
288
332
|
enumerable: true,
|
|
289
|
-
get: function () { return
|
|
333
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogTitle; }
|
|
290
334
|
});
|
|
291
|
-
Object.defineProperty(exports, "
|
|
335
|
+
Object.defineProperty(exports, "DialogTrigger", {
|
|
292
336
|
enumerable: true,
|
|
293
|
-
get: function () { return
|
|
337
|
+
get: function () { return chunkVK5EX3OG_cjs.DialogTrigger; }
|
|
338
|
+
});
|
|
339
|
+
Object.defineProperty(exports, "Empty", {
|
|
340
|
+
enumerable: true,
|
|
341
|
+
get: function () { return chunkCXHDWIGF_cjs.Empty; }
|
|
342
|
+
});
|
|
343
|
+
Object.defineProperty(exports, "EmptyContent", {
|
|
344
|
+
enumerable: true,
|
|
345
|
+
get: function () { return chunkCXHDWIGF_cjs.EmptyContent; }
|
|
346
|
+
});
|
|
347
|
+
Object.defineProperty(exports, "EmptyDescription", {
|
|
348
|
+
enumerable: true,
|
|
349
|
+
get: function () { return chunkCXHDWIGF_cjs.EmptyDescription; }
|
|
350
|
+
});
|
|
351
|
+
Object.defineProperty(exports, "EmptyHeader", {
|
|
352
|
+
enumerable: true,
|
|
353
|
+
get: function () { return chunkCXHDWIGF_cjs.EmptyHeader; }
|
|
354
|
+
});
|
|
355
|
+
Object.defineProperty(exports, "EmptyMedia", {
|
|
356
|
+
enumerable: true,
|
|
357
|
+
get: function () { return chunkCXHDWIGF_cjs.EmptyMedia; }
|
|
358
|
+
});
|
|
359
|
+
Object.defineProperty(exports, "EmptyTitle", {
|
|
360
|
+
enumerable: true,
|
|
361
|
+
get: function () { return chunkCXHDWIGF_cjs.EmptyTitle; }
|
|
294
362
|
});
|
|
295
363
|
Object.defineProperty(exports, "Field", {
|
|
296
364
|
enumerable: true,
|
|
@@ -392,18 +460,6 @@ Object.defineProperty(exports, "Marquee", {
|
|
|
392
460
|
enumerable: true,
|
|
393
461
|
get: function () { return chunk2WQJ36RD_cjs.Marquee; }
|
|
394
462
|
});
|
|
395
|
-
Object.defineProperty(exports, "Masonry", {
|
|
396
|
-
enumerable: true,
|
|
397
|
-
get: function () { return chunkS2BCU6WG_cjs.Masonry; }
|
|
398
|
-
});
|
|
399
|
-
Object.defineProperty(exports, "MasonryItem", {
|
|
400
|
-
enumerable: true,
|
|
401
|
-
get: function () { return chunkS2BCU6WG_cjs.MasonryItem; }
|
|
402
|
-
});
|
|
403
|
-
Object.defineProperty(exports, "Progress", {
|
|
404
|
-
enumerable: true,
|
|
405
|
-
get: function () { return chunkTH44JYXB_cjs.Progress; }
|
|
406
|
-
});
|
|
407
463
|
Object.defineProperty(exports, "Badge", {
|
|
408
464
|
enumerable: true,
|
|
409
465
|
get: function () { return chunkZVF7J4EI_cjs.Badge; }
|
|
@@ -456,62 +512,6 @@ Object.defineProperty(exports, "CountingNumber", {
|
|
|
456
512
|
enumerable: true,
|
|
457
513
|
get: function () { return chunkUSIW3VT5_cjs.CountingNumber; }
|
|
458
514
|
});
|
|
459
|
-
Object.defineProperty(exports, "Dialog", {
|
|
460
|
-
enumerable: true,
|
|
461
|
-
get: function () { return chunkVK5EX3OG_cjs.Dialog; }
|
|
462
|
-
});
|
|
463
|
-
Object.defineProperty(exports, "DialogClose", {
|
|
464
|
-
enumerable: true,
|
|
465
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogClose; }
|
|
466
|
-
});
|
|
467
|
-
Object.defineProperty(exports, "DialogContent", {
|
|
468
|
-
enumerable: true,
|
|
469
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogContent; }
|
|
470
|
-
});
|
|
471
|
-
Object.defineProperty(exports, "DialogDescription", {
|
|
472
|
-
enumerable: true,
|
|
473
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogDescription; }
|
|
474
|
-
});
|
|
475
|
-
Object.defineProperty(exports, "DialogFooter", {
|
|
476
|
-
enumerable: true,
|
|
477
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogFooter; }
|
|
478
|
-
});
|
|
479
|
-
Object.defineProperty(exports, "DialogHeader", {
|
|
480
|
-
enumerable: true,
|
|
481
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogHeader; }
|
|
482
|
-
});
|
|
483
|
-
Object.defineProperty(exports, "DialogTitle", {
|
|
484
|
-
enumerable: true,
|
|
485
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogTitle; }
|
|
486
|
-
});
|
|
487
|
-
Object.defineProperty(exports, "DialogTrigger", {
|
|
488
|
-
enumerable: true,
|
|
489
|
-
get: function () { return chunkVK5EX3OG_cjs.DialogTrigger; }
|
|
490
|
-
});
|
|
491
|
-
Object.defineProperty(exports, "Empty", {
|
|
492
|
-
enumerable: true,
|
|
493
|
-
get: function () { return chunkCXHDWIGF_cjs.Empty; }
|
|
494
|
-
});
|
|
495
|
-
Object.defineProperty(exports, "EmptyContent", {
|
|
496
|
-
enumerable: true,
|
|
497
|
-
get: function () { return chunkCXHDWIGF_cjs.EmptyContent; }
|
|
498
|
-
});
|
|
499
|
-
Object.defineProperty(exports, "EmptyDescription", {
|
|
500
|
-
enumerable: true,
|
|
501
|
-
get: function () { return chunkCXHDWIGF_cjs.EmptyDescription; }
|
|
502
|
-
});
|
|
503
|
-
Object.defineProperty(exports, "EmptyHeader", {
|
|
504
|
-
enumerable: true,
|
|
505
|
-
get: function () { return chunkCXHDWIGF_cjs.EmptyHeader; }
|
|
506
|
-
});
|
|
507
|
-
Object.defineProperty(exports, "EmptyMedia", {
|
|
508
|
-
enumerable: true,
|
|
509
|
-
get: function () { return chunkCXHDWIGF_cjs.EmptyMedia; }
|
|
510
|
-
});
|
|
511
|
-
Object.defineProperty(exports, "EmptyTitle", {
|
|
512
|
-
enumerable: true,
|
|
513
|
-
get: function () { return chunkCXHDWIGF_cjs.EmptyTitle; }
|
|
514
|
-
});
|
|
515
515
|
Object.defineProperty(exports, "Accordion", {
|
|
516
516
|
enumerable: true,
|
|
517
517
|
get: function () { return chunkX3ZT3KGX_cjs.Accordion; }
|
package/dist/components/index.js
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
export { Button, Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, Toaster, toast, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../chunk-QTYNFISP.js';
|
|
4
|
+
export { WordRotate } from '../chunk-K5AURCK5.js';
|
|
5
|
+
export { Status, StatusIndicator, StatusLabel } from '../chunk-IWF52DDE.js';
|
|
6
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../chunk-OCOCENE6.js';
|
|
4
7
|
export { Textarea } from '../chunk-OQCNPNPS.js';
|
|
5
|
-
export { ScrollArea, ScrollBar } from '../chunk-M7NIRB3U.js';
|
|
6
8
|
export { Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineDot, TimelineHeader, TimelineItem, TimelineTime, TimelineTitle } from '../chunk-WXZE35FK.js';
|
|
7
|
-
export { Tooltip, TooltipContent, TooltipTrigger } from '../chunk-U7XZJQ4O.js';
|
|
8
|
-
export { WordRotate } from '../chunk-K5AURCK5.js';
|
|
9
9
|
export { TypingText } from '../chunk-WMGJCB7O.js';
|
|
10
|
+
export { Tooltip, TooltipContent, TooltipTrigger } from '../chunk-U7XZJQ4O.js';
|
|
11
|
+
export { Masonry, MasonryItem } from '../chunk-DL54DIMD.js';
|
|
12
|
+
export { Progress } from '../chunk-PBEZZMAB.js';
|
|
10
13
|
export { RadioGroup, RadioGroupItem } from '../chunk-4TRADSTP.js';
|
|
14
|
+
export { ScrollArea, ScrollBar } from '../chunk-M7NIRB3U.js';
|
|
11
15
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator } from '../chunk-E5TYGWGE.js';
|
|
12
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from '../chunk-DTSFPOLX.js';
|
|
13
16
|
export { Spinner } from '../chunk-P5IUC7HJ.js';
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
17
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from '../chunk-DTSFPOLX.js';
|
|
18
|
+
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../chunk-BTSHACKG.js';
|
|
19
|
+
export { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from '../chunk-HNRVLRMN.js';
|
|
16
20
|
export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from '../chunk-3MH6P44N.js';
|
|
17
21
|
export { Header } from '../chunk-VT5GDGZJ.js';
|
|
18
22
|
export { Input } from '../chunk-UGSNASZM.js';
|
|
@@ -20,15 +24,11 @@ export { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup,
|
|
|
20
24
|
export { Separator } from '../chunk-XJIUGEPN.js';
|
|
21
25
|
export { Label } from '../chunk-I3RSTJP6.js';
|
|
22
26
|
export { Marquee } from '../chunk-YUMKV5TH.js';
|
|
23
|
-
export { Masonry, MasonryItem } from '../chunk-DL54DIMD.js';
|
|
24
|
-
export { Progress } from '../chunk-PBEZZMAB.js';
|
|
25
27
|
export { Badge, BadgeButton, BadgeDot } from '../chunk-U3QKV7I4.js';
|
|
26
28
|
export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '../chunk-6BSR3O2J.js';
|
|
27
29
|
export { Checkbox } from '../chunk-5F2Y65JH.js';
|
|
28
30
|
export { ColorSwatch } from '../chunk-3RK5PCIC.js';
|
|
29
31
|
export { CountingNumber } from '../chunk-P4JIMFSL.js';
|
|
30
|
-
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../chunk-BTSHACKG.js';
|
|
31
|
-
export { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from '../chunk-HNRVLRMN.js';
|
|
32
32
|
import '../chunk-SB5UG7OC.js';
|
|
33
33
|
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '../chunk-B7RHEMZH.js';
|
|
34
34
|
export { Alert, AlertDescription, AlertTitle } from '../chunk-5MV54MWS.js';
|
|
@@ -12,18 +12,18 @@ type ItemProps = React.ComponentProps<"div"> & {
|
|
|
12
12
|
};
|
|
13
13
|
declare function Item({ className, variant, size, asChild, ...props }: ItemProps): react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
-
declare const itemVariants: (props?:
|
|
16
|
-
variant?: "outline" | "default" | "muted"
|
|
17
|
-
size?: "default" | "sm"
|
|
18
|
-
} & class_variance_authority_types.ClassProp)
|
|
15
|
+
declare const itemVariants: (props?: {
|
|
16
|
+
variant?: "outline" | "default" | "muted";
|
|
17
|
+
size?: "default" | "sm";
|
|
18
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
19
19
|
|
|
20
20
|
type ItemVariantsProps = VariantProps<typeof itemVariants>;
|
|
21
21
|
type ItemVariantType = NonNullable<ItemVariantsProps["variant"]>;
|
|
22
22
|
type ItemSizeType = NonNullable<ItemVariantsProps["size"]>;
|
|
23
23
|
|
|
24
|
-
declare const itemMediaVariants: (props?:
|
|
25
|
-
variant?: "image" | "default" | "icon"
|
|
26
|
-
} & class_variance_authority_types.ClassProp)
|
|
24
|
+
declare const itemMediaVariants: (props?: {
|
|
25
|
+
variant?: "image" | "default" | "icon";
|
|
26
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
27
27
|
|
|
28
28
|
type ItemMediaVariantsProps = VariantProps<typeof itemMediaVariants>;
|
|
29
29
|
type ItemMediaVariantType = NonNullable<ItemMediaVariantsProps["variant"]>;
|
|
@@ -12,18 +12,18 @@ type ItemProps = React.ComponentProps<"div"> & {
|
|
|
12
12
|
};
|
|
13
13
|
declare function Item({ className, variant, size, asChild, ...props }: ItemProps): react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
-
declare const itemVariants: (props?:
|
|
16
|
-
variant?: "outline" | "default" | "muted"
|
|
17
|
-
size?: "default" | "sm"
|
|
18
|
-
} & class_variance_authority_types.ClassProp)
|
|
15
|
+
declare const itemVariants: (props?: {
|
|
16
|
+
variant?: "outline" | "default" | "muted";
|
|
17
|
+
size?: "default" | "sm";
|
|
18
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
19
19
|
|
|
20
20
|
type ItemVariantsProps = VariantProps<typeof itemVariants>;
|
|
21
21
|
type ItemVariantType = NonNullable<ItemVariantsProps["variant"]>;
|
|
22
22
|
type ItemSizeType = NonNullable<ItemVariantsProps["size"]>;
|
|
23
23
|
|
|
24
|
-
declare const itemMediaVariants: (props?:
|
|
25
|
-
variant?: "image" | "default" | "icon"
|
|
26
|
-
} & class_variance_authority_types.ClassProp)
|
|
24
|
+
declare const itemMediaVariants: (props?: {
|
|
25
|
+
variant?: "image" | "default" | "icon";
|
|
26
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
27
27
|
|
|
28
28
|
type ItemMediaVariantsProps = VariantProps<typeof itemMediaVariants>;
|
|
29
29
|
type ItemMediaVariantType = NonNullable<ItemMediaVariantsProps["variant"]>;
|
|
@@ -2,7 +2,18 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { RadioGroup as RadioGroup$1 } from 'radix-ui';
|
|
4
4
|
|
|
5
|
-
type RadioGroupProps = React.
|
|
5
|
+
type RadioGroupProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
6
|
+
asChild?: boolean;
|
|
7
|
+
name?: string;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
dir?: "ltr" | "rtl";
|
|
11
|
+
orientation?: "horizontal" | "vertical";
|
|
12
|
+
loop?: boolean;
|
|
13
|
+
defaultValue?: string;
|
|
14
|
+
value?: string | null;
|
|
15
|
+
onValueChange?: (value: string) => void;
|
|
16
|
+
};
|
|
6
17
|
declare function RadioGroup({ className, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
7
18
|
|
|
8
19
|
type RadioGroupItemProps = React.ComponentProps<typeof RadioGroup$1.Item>;
|
|
@@ -2,7 +2,18 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { RadioGroup as RadioGroup$1 } from 'radix-ui';
|
|
4
4
|
|
|
5
|
-
type RadioGroupProps = React.
|
|
5
|
+
type RadioGroupProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
6
|
+
asChild?: boolean;
|
|
7
|
+
name?: string;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
dir?: "ltr" | "rtl";
|
|
11
|
+
orientation?: "horizontal" | "vertical";
|
|
12
|
+
loop?: boolean;
|
|
13
|
+
defaultValue?: string;
|
|
14
|
+
value?: string | null;
|
|
15
|
+
onValueChange?: (value: string) => void;
|
|
16
|
+
};
|
|
6
17
|
declare function RadioGroup({ className, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
7
18
|
|
|
8
19
|
type RadioGroupItemProps = React.ComponentProps<typeof RadioGroup$1.Item>;
|
|
@@ -18,9 +18,9 @@ type SheetContentProps = React.ComponentProps<typeof Dialog.Content> & {
|
|
|
18
18
|
};
|
|
19
19
|
declare function SheetContent({ side, className, children, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
|
|
20
20
|
|
|
21
|
-
declare const sheetContentStyles: (props?:
|
|
22
|
-
side?: "top" | "bottom" | "left" | "right"
|
|
23
|
-
} & class_variance_authority_types.ClassProp)
|
|
21
|
+
declare const sheetContentStyles: (props?: {
|
|
22
|
+
side?: "top" | "bottom" | "left" | "right";
|
|
23
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
24
24
|
|
|
25
25
|
type SheetContentCvaProps = VariantProps<typeof sheetContentStyles>;
|
|
26
26
|
type SheetContentSide = NonNullable<SheetContentCvaProps["side"]>;
|
|
@@ -18,9 +18,9 @@ type SheetContentProps = React.ComponentProps<typeof Dialog.Content> & {
|
|
|
18
18
|
};
|
|
19
19
|
declare function SheetContent({ side, className, children, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
|
|
20
20
|
|
|
21
|
-
declare const sheetContentStyles: (props?:
|
|
22
|
-
side?: "top" | "bottom" | "left" | "right"
|
|
23
|
-
} & class_variance_authority_types.ClassProp)
|
|
21
|
+
declare const sheetContentStyles: (props?: {
|
|
22
|
+
side?: "top" | "bottom" | "left" | "right";
|
|
23
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
24
24
|
|
|
25
25
|
type SheetContentCvaProps = VariantProps<typeof sheetContentStyles>;
|
|
26
26
|
type SheetContentSide = NonNullable<SheetContentCvaProps["side"]>;
|
|
@@ -3,9 +3,9 @@ import * as React from 'react';
|
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
|
|
6
|
-
declare const statusVariants: (props?:
|
|
7
|
-
variant?: "primary" | "success" | "warning" | "error" | "default"
|
|
8
|
-
} & class_variance_authority_types.ClassProp)
|
|
6
|
+
declare const statusVariants: (props?: {
|
|
7
|
+
variant?: "primary" | "success" | "warning" | "error" | "default";
|
|
8
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
9
9
|
|
|
10
10
|
type StatusCvaProps = VariantProps<typeof statusVariants>;
|
|
11
11
|
type StatusVariant = NonNullable<StatusCvaProps["variant"]>;
|
|
@@ -3,9 +3,9 @@ import * as React from 'react';
|
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
|
|
6
|
-
declare const statusVariants: (props?:
|
|
7
|
-
variant?: "primary" | "success" | "warning" | "error" | "default"
|
|
8
|
-
} & class_variance_authority_types.ClassProp)
|
|
6
|
+
declare const statusVariants: (props?: {
|
|
7
|
+
variant?: "primary" | "success" | "warning" | "error" | "default";
|
|
8
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
9
9
|
|
|
10
10
|
type StatusCvaProps = VariantProps<typeof statusVariants>;
|
|
11
11
|
type StatusVariant = NonNullable<StatusCvaProps["variant"]>;
|
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var chunkCP43WJCN_cjs = require('../../chunk-CP43WJCN.cjs');
|
|
4
|
+
require('../../chunk-DGWBE2Y3.cjs');
|
|
5
|
+
require('../../chunk-GYXQUTWZ.cjs');
|
|
6
|
+
require('../../chunk-YEFLGE3L.cjs');
|
|
4
7
|
require('../../chunk-NU5UQPBX.cjs');
|
|
5
|
-
require('../../chunk-UJX74PFK.cjs');
|
|
6
8
|
require('../../chunk-KQ6QE7BT.cjs');
|
|
7
|
-
require('../../chunk-A7SBXO2Y.cjs');
|
|
8
|
-
require('../../chunk-DGWBE2Y3.cjs');
|
|
9
9
|
require('../../chunk-EUH466AL.cjs');
|
|
10
|
+
require('../../chunk-A7SBXO2Y.cjs');
|
|
11
|
+
require('../../chunk-S2BCU6WG.cjs');
|
|
12
|
+
require('../../chunk-TH44JYXB.cjs');
|
|
10
13
|
require('../../chunk-XENOUBSI.cjs');
|
|
14
|
+
require('../../chunk-UJX74PFK.cjs');
|
|
11
15
|
require('../../chunk-XJZOANXX.cjs');
|
|
12
|
-
require('../../chunk-GHV2TURY.cjs');
|
|
13
16
|
require('../../chunk-3WSQRFUY.cjs');
|
|
14
|
-
require('../../chunk-
|
|
15
|
-
require('../../chunk-
|
|
17
|
+
require('../../chunk-GHV2TURY.cjs');
|
|
18
|
+
require('../../chunk-VK5EX3OG.cjs');
|
|
19
|
+
require('../../chunk-CXHDWIGF.cjs');
|
|
16
20
|
require('../../chunk-DTYX7CYN.cjs');
|
|
17
21
|
require('../../chunk-6X26XC6P.cjs');
|
|
18
22
|
require('../../chunk-5AA4IE2T.cjs');
|
|
@@ -20,15 +24,11 @@ require('../../chunk-CFJ44JVK.cjs');
|
|
|
20
24
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
21
25
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
22
26
|
require('../../chunk-2WQJ36RD.cjs');
|
|
23
|
-
require('../../chunk-S2BCU6WG.cjs');
|
|
24
|
-
require('../../chunk-TH44JYXB.cjs');
|
|
25
27
|
require('../../chunk-ZVF7J4EI.cjs');
|
|
26
28
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
27
29
|
require('../../chunk-HCHVDUI6.cjs');
|
|
28
30
|
require('../../chunk-ULEEQ723.cjs');
|
|
29
31
|
require('../../chunk-USIW3VT5.cjs');
|
|
30
|
-
require('../../chunk-VK5EX3OG.cjs');
|
|
31
|
-
require('../../chunk-CXHDWIGF.cjs');
|
|
32
32
|
require('../../chunk-XIQUR62A.cjs');
|
|
33
33
|
require('../../chunk-X3ZT3KGX.cjs');
|
|
34
34
|
require('../../chunk-3GNVQFCK.cjs');
|
|
@@ -148,7 +148,7 @@ type StepperContentProps = React.ComponentProps<"div"> & {
|
|
|
148
148
|
value: string;
|
|
149
149
|
forceMount?: boolean;
|
|
150
150
|
};
|
|
151
|
-
declare function StepperContent({ value: valueProp, asChild, forceMount, className, ...props }: StepperContentProps): react_jsx_runtime.JSX.Element
|
|
151
|
+
declare function StepperContent({ value: valueProp, asChild, forceMount, className, ...props }: StepperContentProps): react_jsx_runtime.JSX.Element;
|
|
152
152
|
|
|
153
153
|
type StepperNextTriggerProps = React.ComponentProps<"button"> & {
|
|
154
154
|
asChild?: boolean;
|
|
@@ -148,7 +148,7 @@ type StepperContentProps = React.ComponentProps<"div"> & {
|
|
|
148
148
|
value: string;
|
|
149
149
|
forceMount?: boolean;
|
|
150
150
|
};
|
|
151
|
-
declare function StepperContent({ value: valueProp, asChild, forceMount, className, ...props }: StepperContentProps): react_jsx_runtime.JSX.Element
|
|
151
|
+
declare function StepperContent({ value: valueProp, asChild, forceMount, className, ...props }: StepperContentProps): react_jsx_runtime.JSX.Element;
|
|
152
152
|
|
|
153
153
|
type StepperNextTriggerProps = React.ComponentProps<"button"> & {
|
|
154
154
|
asChild?: boolean;
|