@vuer-ai/vuer-uikit 0.0.71 → 0.0.73

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 (35) hide show
  1. package/dist/chunk-NUH6VCC7.cjs +99 -0
  2. package/dist/chunk-RE74NVMU.mjs +94 -0
  3. package/dist/highlight-cursor/enhanced-components.cjs +8 -8
  4. package/dist/highlight-cursor/enhanced-components.mjs +3 -3
  5. package/dist/highlight-cursor/index.cjs +8 -8
  6. package/dist/highlight-cursor/index.mjs +3 -3
  7. package/dist/index.cjs +102 -90
  8. package/dist/index.css +1 -7
  9. package/dist/index.d.cts +1 -1
  10. package/dist/index.d.ts +1 -1
  11. package/dist/index.mjs +8 -8
  12. package/dist/ui/UIKitBadge.cjs +32 -0
  13. package/dist/ui/UIKitBadge.d.cts +67 -0
  14. package/dist/ui/UIKitBadge.d.ts +67 -0
  15. package/dist/ui/{version-badge.mjs → UIKitBadge.mjs} +1 -2
  16. package/dist/ui/index.cjs +96 -84
  17. package/dist/ui/index.d.cts +1 -1
  18. package/dist/ui/index.d.ts +1 -1
  19. package/dist/ui/index.mjs +7 -7
  20. package/dist/ui/presets-input.cjs +3 -3
  21. package/dist/ui/presets-input.mjs +2 -2
  22. package/dist/ui/sidebar.cjs +26 -26
  23. package/dist/ui/sidebar.mjs +2 -2
  24. package/package.json +1 -1
  25. package/dist/chunk-3FQAKG2I.mjs +0 -39
  26. package/dist/chunk-L367BBLF.cjs +0 -41
  27. package/dist/ui/version-badge.cjs +0 -21
  28. package/dist/ui/version-badge.d.cts +0 -26
  29. package/dist/ui/version-badge.d.ts +0 -26
  30. package/dist/{chunk-S4EDLSFB.cjs → chunk-EDHFKW5G.cjs} +1 -1
  31. package/dist/{chunk-IGZWSOVN.cjs → chunk-JXG7KTJS.cjs} +1 -1
  32. package/dist/{chunk-TU4GGYQF.cjs → chunk-MMQQYV2I.cjs} +2 -2
  33. package/dist/{chunk-YNHK66TC.mjs → chunk-MTITDGHI.mjs} +1 -1
  34. package/dist/{chunk-T2327HPH.mjs → chunk-RVJFAWT2.mjs} +1 -1
  35. package/dist/{chunk-KFFOF5V3.mjs → chunk-TH2MJEHW.mjs} +2 -2
@@ -0,0 +1,67 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare const PACKAGE_VERSION: string;
4
+ declare const GIT_HASH: string;
5
+ interface PackageBadgeProps {
6
+ /**
7
+ * Additional CSS classes to apply to the badge
8
+ */
9
+ className?: string;
10
+ /**
11
+ * Package name to display (e.g., "vuer", "uikit")
12
+ */
13
+ packageName?: string;
14
+ /**
15
+ * Full package name for npm link (e.g., "@vuer-ai/vuer-uikit")
16
+ */
17
+ packageFullName?: string;
18
+ /**
19
+ * Version string to display (e.g., "v0.0.72" or "0.0.72")
20
+ */
21
+ versionText?: string;
22
+ /**
23
+ * Whether the version should be clickable (links to npm)
24
+ */
25
+ linkable?: boolean;
26
+ /**
27
+ * Git hash to display (if provided)
28
+ */
29
+ gitHash?: string;
30
+ }
31
+ /**
32
+ * Low-level badge component that displays package information with provided values
33
+ */
34
+ declare function PackageBadge({ className, packageName, packageFullName, versionText, linkable, gitHash, }: PackageBadgeProps): react_jsx_runtime.JSX.Element;
35
+ interface UIKitBadgeProps {
36
+ /**
37
+ * Additional CSS classes to apply to the badge
38
+ */
39
+ className?: string;
40
+ /**
41
+ * Whether to show the package name
42
+ */
43
+ package?: boolean;
44
+ /**
45
+ * Whether to show just the version or include "v" prefix
46
+ */
47
+ prefix?: boolean;
48
+ /**
49
+ * Whether the badge should be clickable (links to npm/github)
50
+ */
51
+ linkable?: boolean;
52
+ /**
53
+ * Whether to show the version
54
+ */
55
+ version?: boolean;
56
+ /**
57
+ * Whether to show the git hash
58
+ */
59
+ hash?: boolean;
60
+ }
61
+ /**
62
+ * High-level badge component that displays the current package version with boolean flags
63
+ * Format: [ vuer | v0.0.72 ] hash
64
+ */
65
+ declare function UIKitBadge({ className, package: showPackage, prefix, linkable, version, hash, }: UIKitBadgeProps): react_jsx_runtime.JSX.Element;
66
+
67
+ export { GIT_HASH, PACKAGE_VERSION, PackageBadge, type PackageBadgeProps, UIKitBadge, type UIKitBadgeProps };
@@ -1,5 +1,4 @@
1
- export { VersionBadge } from '../chunk-3FQAKG2I.mjs';
2
- import '../chunk-Q27ILZE6.mjs';
1
+ export { GIT_HASH, PACKAGE_VERSION, PackageBadge, UIKitBadge } from '../chunk-RE74NVMU.mjs';
3
2
  import '../chunk-F7ZHPSLA.mjs';
4
3
  import '../chunk-3QT5VABC.mjs';
5
4
  import '../chunk-XHJDRQD7.mjs';
package/dist/ui/index.cjs CHANGED
@@ -27,7 +27,6 @@ var chunkA5S72EIK_cjs = require('../chunk-A5S72EIK.cjs');
27
27
  var chunkA77GE42F_cjs = require('../chunk-A77GE42F.cjs');
28
28
  var chunkMK6XW5PC_cjs = require('../chunk-MK6XW5PC.cjs');
29
29
  var chunkQQH3TSI4_cjs = require('../chunk-QQH3TSI4.cjs');
30
- var chunkL367BBLF_cjs = require('../chunk-L367BBLF.cjs');
31
30
  require('../chunk-KQAZ6BRD.cjs');
32
31
  var chunkZZDIW5JV_cjs = require('../chunk-ZZDIW5JV.cjs');
33
32
  var chunkSBTB5YJV_cjs = require('../chunk-SBTB5YJV.cjs');
@@ -41,7 +40,7 @@ var chunkPWOICFNA_cjs = require('../chunk-PWOICFNA.cjs');
41
40
  var chunkKC7D4OEU_cjs = require('../chunk-KC7D4OEU.cjs');
42
41
  var chunkW3HZ6BW6_cjs = require('../chunk-W3HZ6BW6.cjs');
43
42
  var chunk5XHWH2UY_cjs = require('../chunk-5XHWH2UY.cjs');
44
- var chunkS4EDLSFB_cjs = require('../chunk-S4EDLSFB.cjs');
43
+ var chunkEDHFKW5G_cjs = require('../chunk-EDHFKW5G.cjs');
45
44
  var chunkMKKH4EGP_cjs = require('../chunk-MKKH4EGP.cjs');
46
45
  require('../chunk-NQIPNYJK.cjs');
47
46
  var chunkDDPLVMRO_cjs = require('../chunk-DDPLVMRO.cjs');
@@ -49,30 +48,31 @@ require('../chunk-MDDAL4L5.cjs');
49
48
  var chunkVBIBT2KD_cjs = require('../chunk-VBIBT2KD.cjs');
50
49
  var chunk3DDKTHKM_cjs = require('../chunk-3DDKTHKM.cjs');
51
50
  var chunkJTLBOAN6_cjs = require('../chunk-JTLBOAN6.cjs');
51
+ var chunkDQLLLY3Y_cjs = require('../chunk-DQLLLY3Y.cjs');
52
52
  var chunk3LO2GIJ4_cjs = require('../chunk-3LO2GIJ4.cjs');
53
53
  var chunk2CJREAQO_cjs = require('../chunk-2CJREAQO.cjs');
54
54
  var chunkDKAPTFG3_cjs = require('../chunk-DKAPTFG3.cjs');
55
55
  var chunkSBLDHRRT_cjs = require('../chunk-SBLDHRRT.cjs');
56
- var chunkIGZWSOVN_cjs = require('../chunk-IGZWSOVN.cjs');
56
+ var chunkJXG7KTJS_cjs = require('../chunk-JXG7KTJS.cjs');
57
57
  var chunk3TWD622T_cjs = require('../chunk-3TWD622T.cjs');
58
58
  var chunkVL72NS6K_cjs = require('../chunk-VL72NS6K.cjs');
59
+ var chunkMPDDUGHS_cjs = require('../chunk-MPDDUGHS.cjs');
59
60
  var chunk2BWTIS6U_cjs = require('../chunk-2BWTIS6U.cjs');
60
61
  var chunkPJYCN74V_cjs = require('../chunk-PJYCN74V.cjs');
61
62
  var chunk7OHIAOEL_cjs = require('../chunk-7OHIAOEL.cjs');
62
63
  var chunkK6UUQ27N_cjs = require('../chunk-K6UUQ27N.cjs');
63
64
  var chunkVEO4NX4C_cjs = require('../chunk-VEO4NX4C.cjs');
64
- var chunkDQLLLY3Y_cjs = require('../chunk-DQLLLY3Y.cjs');
65
+ var chunkNUH6VCC7_cjs = require('../chunk-NUH6VCC7.cjs');
65
66
  var chunkD57RTQ2Z_cjs = require('../chunk-D57RTQ2Z.cjs');
66
67
  var chunkUV3EORBI_cjs = require('../chunk-UV3EORBI.cjs');
67
68
  var chunkSPSBYU5V_cjs = require('../chunk-SPSBYU5V.cjs');
68
69
  var chunkLHQALBTX_cjs = require('../chunk-LHQALBTX.cjs');
69
70
  var chunkL433A745_cjs = require('../chunk-L433A745.cjs');
70
- var chunkMPDDUGHS_cjs = require('../chunk-MPDDUGHS.cjs');
71
- var chunkX6YX2NAS_cjs = require('../chunk-X6YX2NAS.cjs');
72
71
  var chunkOPVNPU6U_cjs = require('../chunk-OPVNPU6U.cjs');
72
+ var chunkX6YX2NAS_cjs = require('../chunk-X6YX2NAS.cjs');
73
73
  var chunkXKV3CDJ7_cjs = require('../chunk-XKV3CDJ7.cjs');
74
- var chunkBHC7GX53_cjs = require('../chunk-BHC7GX53.cjs');
75
74
  var chunkNFJTF2GL_cjs = require('../chunk-NFJTF2GL.cjs');
75
+ var chunkBHC7GX53_cjs = require('../chunk-BHC7GX53.cjs');
76
76
  require('../chunk-T3G35JSP.cjs');
77
77
  require('../chunk-QN4N4I3Z.cjs');
78
78
  require('../chunk-Q7E73DVJ.cjs');
@@ -195,10 +195,6 @@ Object.defineProperty(exports, "TreeView", {
195
195
  enumerable: true,
196
196
  get: function () { return chunkQQH3TSI4_cjs.TreeView; }
197
197
  });
198
- Object.defineProperty(exports, "VersionBadge", {
199
- enumerable: true,
200
- get: function () { return chunkL367BBLF_cjs.VersionBadge; }
201
- });
202
198
  Object.defineProperty(exports, "createSelectable", {
203
199
  enumerable: true,
204
200
  get: function () { return chunkZZDIW5JV_cjs.createSelectable; }
@@ -293,99 +289,99 @@ Object.defineProperty(exports, "ToolbarSeparator", {
293
289
  });
294
290
  Object.defineProperty(exports, "Sidebar", {
295
291
  enumerable: true,
296
- get: function () { return chunkS4EDLSFB_cjs.Sidebar; }
292
+ get: function () { return chunkEDHFKW5G_cjs.Sidebar; }
297
293
  });
298
294
  Object.defineProperty(exports, "SidebarContent", {
299
295
  enumerable: true,
300
- get: function () { return chunkS4EDLSFB_cjs.SidebarContent; }
296
+ get: function () { return chunkEDHFKW5G_cjs.SidebarContent; }
301
297
  });
302
298
  Object.defineProperty(exports, "SidebarFooter", {
303
299
  enumerable: true,
304
- get: function () { return chunkS4EDLSFB_cjs.SidebarFooter; }
300
+ get: function () { return chunkEDHFKW5G_cjs.SidebarFooter; }
305
301
  });
306
302
  Object.defineProperty(exports, "SidebarGroup", {
307
303
  enumerable: true,
308
- get: function () { return chunkS4EDLSFB_cjs.SidebarGroup; }
304
+ get: function () { return chunkEDHFKW5G_cjs.SidebarGroup; }
309
305
  });
310
306
  Object.defineProperty(exports, "SidebarGroupAction", {
311
307
  enumerable: true,
312
- get: function () { return chunkS4EDLSFB_cjs.SidebarGroupAction; }
308
+ get: function () { return chunkEDHFKW5G_cjs.SidebarGroupAction; }
313
309
  });
314
310
  Object.defineProperty(exports, "SidebarGroupContent", {
315
311
  enumerable: true,
316
- get: function () { return chunkS4EDLSFB_cjs.SidebarGroupContent; }
312
+ get: function () { return chunkEDHFKW5G_cjs.SidebarGroupContent; }
317
313
  });
318
314
  Object.defineProperty(exports, "SidebarGroupLabel", {
319
315
  enumerable: true,
320
- get: function () { return chunkS4EDLSFB_cjs.SidebarGroupLabel; }
316
+ get: function () { return chunkEDHFKW5G_cjs.SidebarGroupLabel; }
321
317
  });
322
318
  Object.defineProperty(exports, "SidebarHeader", {
323
319
  enumerable: true,
324
- get: function () { return chunkS4EDLSFB_cjs.SidebarHeader; }
320
+ get: function () { return chunkEDHFKW5G_cjs.SidebarHeader; }
325
321
  });
326
322
  Object.defineProperty(exports, "SidebarInput", {
327
323
  enumerable: true,
328
- get: function () { return chunkS4EDLSFB_cjs.SidebarInput; }
324
+ get: function () { return chunkEDHFKW5G_cjs.SidebarInput; }
329
325
  });
330
326
  Object.defineProperty(exports, "SidebarInset", {
331
327
  enumerable: true,
332
- get: function () { return chunkS4EDLSFB_cjs.SidebarInset; }
328
+ get: function () { return chunkEDHFKW5G_cjs.SidebarInset; }
333
329
  });
334
330
  Object.defineProperty(exports, "SidebarMenu", {
335
331
  enumerable: true,
336
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenu; }
332
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenu; }
337
333
  });
338
334
  Object.defineProperty(exports, "SidebarMenuAction", {
339
335
  enumerable: true,
340
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuAction; }
336
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuAction; }
341
337
  });
342
338
  Object.defineProperty(exports, "SidebarMenuBadge", {
343
339
  enumerable: true,
344
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuBadge; }
340
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuBadge; }
345
341
  });
346
342
  Object.defineProperty(exports, "SidebarMenuButton", {
347
343
  enumerable: true,
348
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuButton; }
344
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuButton; }
349
345
  });
350
346
  Object.defineProperty(exports, "SidebarMenuItem", {
351
347
  enumerable: true,
352
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuItem; }
348
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuItem; }
353
349
  });
354
350
  Object.defineProperty(exports, "SidebarMenuSkeleton", {
355
351
  enumerable: true,
356
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuSkeleton; }
352
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuSkeleton; }
357
353
  });
358
354
  Object.defineProperty(exports, "SidebarMenuSub", {
359
355
  enumerable: true,
360
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuSub; }
356
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuSub; }
361
357
  });
362
358
  Object.defineProperty(exports, "SidebarMenuSubButton", {
363
359
  enumerable: true,
364
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuSubButton; }
360
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuSubButton; }
365
361
  });
366
362
  Object.defineProperty(exports, "SidebarMenuSubItem", {
367
363
  enumerable: true,
368
- get: function () { return chunkS4EDLSFB_cjs.SidebarMenuSubItem; }
364
+ get: function () { return chunkEDHFKW5G_cjs.SidebarMenuSubItem; }
369
365
  });
370
366
  Object.defineProperty(exports, "SidebarProvider", {
371
367
  enumerable: true,
372
- get: function () { return chunkS4EDLSFB_cjs.SidebarProvider; }
368
+ get: function () { return chunkEDHFKW5G_cjs.SidebarProvider; }
373
369
  });
374
370
  Object.defineProperty(exports, "SidebarRail", {
375
371
  enumerable: true,
376
- get: function () { return chunkS4EDLSFB_cjs.SidebarRail; }
372
+ get: function () { return chunkEDHFKW5G_cjs.SidebarRail; }
377
373
  });
378
374
  Object.defineProperty(exports, "SidebarSeparator", {
379
375
  enumerable: true,
380
- get: function () { return chunkS4EDLSFB_cjs.SidebarSeparator; }
376
+ get: function () { return chunkEDHFKW5G_cjs.SidebarSeparator; }
381
377
  });
382
378
  Object.defineProperty(exports, "SidebarTrigger", {
383
379
  enumerable: true,
384
- get: function () { return chunkS4EDLSFB_cjs.SidebarTrigger; }
380
+ get: function () { return chunkEDHFKW5G_cjs.SidebarTrigger; }
385
381
  });
386
382
  Object.defineProperty(exports, "useSidebar", {
387
383
  enumerable: true,
388
- get: function () { return chunkS4EDLSFB_cjs.useSidebar; }
384
+ get: function () { return chunkEDHFKW5G_cjs.useSidebar; }
389
385
  });
390
386
  Object.defineProperty(exports, "Tooltip", {
391
387
  enumerable: true,
@@ -475,6 +471,46 @@ Object.defineProperty(exports, "TableRow", {
475
471
  enumerable: true,
476
472
  get: function () { return chunkJTLBOAN6_cjs.TableRow; }
477
473
  });
474
+ Object.defineProperty(exports, "Modal", {
475
+ enumerable: true,
476
+ get: function () { return chunkDQLLLY3Y_cjs.Modal; }
477
+ });
478
+ Object.defineProperty(exports, "ModalClose", {
479
+ enumerable: true,
480
+ get: function () { return chunkDQLLLY3Y_cjs.ModalClose; }
481
+ });
482
+ Object.defineProperty(exports, "ModalContent", {
483
+ enumerable: true,
484
+ get: function () { return chunkDQLLLY3Y_cjs.ModalContent; }
485
+ });
486
+ Object.defineProperty(exports, "ModalDescription", {
487
+ enumerable: true,
488
+ get: function () { return chunkDQLLLY3Y_cjs.ModalDescription; }
489
+ });
490
+ Object.defineProperty(exports, "ModalFooter", {
491
+ enumerable: true,
492
+ get: function () { return chunkDQLLLY3Y_cjs.ModalFooter; }
493
+ });
494
+ Object.defineProperty(exports, "ModalHeader", {
495
+ enumerable: true,
496
+ get: function () { return chunkDQLLLY3Y_cjs.ModalHeader; }
497
+ });
498
+ Object.defineProperty(exports, "ModalOverlay", {
499
+ enumerable: true,
500
+ get: function () { return chunkDQLLLY3Y_cjs.ModalOverlay; }
501
+ });
502
+ Object.defineProperty(exports, "ModalPortal", {
503
+ enumerable: true,
504
+ get: function () { return chunkDQLLLY3Y_cjs.ModalPortal; }
505
+ });
506
+ Object.defineProperty(exports, "ModalTitle", {
507
+ enumerable: true,
508
+ get: function () { return chunkDQLLLY3Y_cjs.ModalTitle; }
509
+ });
510
+ Object.defineProperty(exports, "ModalTrigger", {
511
+ enumerable: true,
512
+ get: function () { return chunkDQLLLY3Y_cjs.ModalTrigger; }
513
+ });
478
514
  Object.defineProperty(exports, "Navigation", {
479
515
  enumerable: true,
480
516
  get: function () { return chunk3LO2GIJ4_cjs.Navigation; }
@@ -553,7 +589,7 @@ Object.defineProperty(exports, "PopoverTrigger", {
553
589
  });
554
590
  Object.defineProperty(exports, "PresetsInput", {
555
591
  enumerable: true,
556
- get: function () { return chunkIGZWSOVN_cjs.PresetsInput; }
592
+ get: function () { return chunkJXG7KTJS_cjs.PresetsInput; }
557
593
  });
558
594
  Object.defineProperty(exports, "RadioGroup", {
559
595
  enumerable: true,
@@ -575,6 +611,10 @@ Object.defineProperty(exports, "ResizablePanelGroup", {
575
611
  enumerable: true,
576
612
  get: function () { return chunkVL72NS6K_cjs.ResizablePanelGroup; }
577
613
  });
614
+ Object.defineProperty(exports, "ColorInput", {
615
+ enumerable: true,
616
+ get: function () { return chunkMPDDUGHS_cjs.ColorInput; }
617
+ });
578
618
  Object.defineProperty(exports, "Drawer", {
579
619
  enumerable: true,
580
620
  get: function () { return chunk2BWTIS6U_cjs.Drawer; }
@@ -687,45 +727,21 @@ Object.defineProperty(exports, "Layout", {
687
727
  enumerable: true,
688
728
  get: function () { return chunkVEO4NX4C_cjs.Layout; }
689
729
  });
690
- Object.defineProperty(exports, "Modal", {
691
- enumerable: true,
692
- get: function () { return chunkDQLLLY3Y_cjs.Modal; }
693
- });
694
- Object.defineProperty(exports, "ModalClose", {
730
+ Object.defineProperty(exports, "GIT_HASH", {
695
731
  enumerable: true,
696
- get: function () { return chunkDQLLLY3Y_cjs.ModalClose; }
732
+ get: function () { return chunkNUH6VCC7_cjs.GIT_HASH; }
697
733
  });
698
- Object.defineProperty(exports, "ModalContent", {
734
+ Object.defineProperty(exports, "PACKAGE_VERSION", {
699
735
  enumerable: true,
700
- get: function () { return chunkDQLLLY3Y_cjs.ModalContent; }
736
+ get: function () { return chunkNUH6VCC7_cjs.PACKAGE_VERSION; }
701
737
  });
702
- Object.defineProperty(exports, "ModalDescription", {
738
+ Object.defineProperty(exports, "PackageBadge", {
703
739
  enumerable: true,
704
- get: function () { return chunkDQLLLY3Y_cjs.ModalDescription; }
740
+ get: function () { return chunkNUH6VCC7_cjs.PackageBadge; }
705
741
  });
706
- Object.defineProperty(exports, "ModalFooter", {
742
+ Object.defineProperty(exports, "UIKitBadge", {
707
743
  enumerable: true,
708
- get: function () { return chunkDQLLLY3Y_cjs.ModalFooter; }
709
- });
710
- Object.defineProperty(exports, "ModalHeader", {
711
- enumerable: true,
712
- get: function () { return chunkDQLLLY3Y_cjs.ModalHeader; }
713
- });
714
- Object.defineProperty(exports, "ModalOverlay", {
715
- enumerable: true,
716
- get: function () { return chunkDQLLLY3Y_cjs.ModalOverlay; }
717
- });
718
- Object.defineProperty(exports, "ModalPortal", {
719
- enumerable: true,
720
- get: function () { return chunkDQLLLY3Y_cjs.ModalPortal; }
721
- });
722
- Object.defineProperty(exports, "ModalTitle", {
723
- enumerable: true,
724
- get: function () { return chunkDQLLLY3Y_cjs.ModalTitle; }
725
- });
726
- Object.defineProperty(exports, "ModalTrigger", {
727
- enumerable: true,
728
- get: function () { return chunkDQLLLY3Y_cjs.ModalTrigger; }
744
+ get: function () { return chunkNUH6VCC7_cjs.UIKitBadge; }
729
745
  });
730
746
  Object.defineProperty(exports, "Avatar", {
731
747
  enumerable: true,
@@ -819,14 +835,6 @@ Object.defineProperty(exports, "CollapsibleTrigger", {
819
835
  enumerable: true,
820
836
  get: function () { return chunkL433A745_cjs.CollapsibleTrigger; }
821
837
  });
822
- Object.defineProperty(exports, "ColorInput", {
823
- enumerable: true,
824
- get: function () { return chunkMPDDUGHS_cjs.ColorInput; }
825
- });
826
- Object.defineProperty(exports, "Textarea", {
827
- enumerable: true,
828
- get: function () { return chunkX6YX2NAS_cjs.Textarea; }
829
- });
830
838
  Object.defineProperty(exports, "Tabs", {
831
839
  enumerable: true,
832
840
  get: function () { return chunkOPVNPU6U_cjs.Tabs; }
@@ -843,6 +851,10 @@ Object.defineProperty(exports, "TabsTrigger", {
843
851
  enumerable: true,
844
852
  get: function () { return chunkOPVNPU6U_cjs.TabsTrigger; }
845
853
  });
854
+ Object.defineProperty(exports, "Textarea", {
855
+ enumerable: true,
856
+ get: function () { return chunkX6YX2NAS_cjs.Textarea; }
857
+ });
846
858
  Object.defineProperty(exports, "Select", {
847
859
  enumerable: true,
848
860
  get: function () { return chunkXKV3CDJ7_cjs.Select; }
@@ -887,14 +899,6 @@ Object.defineProperty(exports, "selectTriggerVariants", {
887
899
  enumerable: true,
888
900
  get: function () { return chunkXKV3CDJ7_cjs.selectTriggerVariants; }
889
901
  });
890
- Object.defineProperty(exports, "Button", {
891
- enumerable: true,
892
- get: function () { return chunkBHC7GX53_cjs.Button; }
893
- });
894
- Object.defineProperty(exports, "buttonVariants", {
895
- enumerable: true,
896
- get: function () { return chunkBHC7GX53_cjs.buttonVariants; }
897
- });
898
902
  Object.defineProperty(exports, "Input", {
899
903
  enumerable: true,
900
904
  get: function () { return chunkNFJTF2GL_cjs.InputRoot; }
@@ -907,3 +911,11 @@ Object.defineProperty(exports, "InputSlot", {
907
911
  enumerable: true,
908
912
  get: function () { return chunkNFJTF2GL_cjs.InputSlot; }
909
913
  });
914
+ Object.defineProperty(exports, "Button", {
915
+ enumerable: true,
916
+ get: function () { return chunkBHC7GX53_cjs.Button; }
917
+ });
918
+ Object.defineProperty(exports, "buttonVariants", {
919
+ enumerable: true,
920
+ get: function () { return chunkBHC7GX53_cjs.buttonVariants; }
921
+ });
@@ -33,7 +33,7 @@ export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
33
33
  export { Slider, SliderProps } from './slider.cjs';
34
34
  export { Layout, LayoutProps } from './layout.cjs';
35
35
  export { Label } from './label.cjs';
36
- export { VersionBadge } from './version-badge.cjs';
36
+ export { GIT_HASH, PACKAGE_VERSION, PackageBadge, PackageBadgeProps, UIKitBadge, UIKitBadgeProps } from './UIKitBadge.cjs';
37
37
  export { NumberInput, NumberInputProps } from './form/NumberInput.cjs';
38
38
  export { IntInput, IntInputProps } from './form/IntInput.cjs';
39
39
  export { DegInput, DegInputProps } from './form/DegInput.cjs';
@@ -33,7 +33,7 @@ export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
33
33
  export { Slider, SliderProps } from './slider.js';
34
34
  export { Layout, LayoutProps } from './layout.js';
35
35
  export { Label } from './label.js';
36
- export { VersionBadge } from './version-badge.js';
36
+ export { GIT_HASH, PACKAGE_VERSION, PackageBadge, PackageBadgeProps, UIKitBadge, UIKitBadgeProps } from './UIKitBadge.js';
37
37
  export { NumberInput, NumberInputProps } from './form/NumberInput.js';
38
38
  export { IntInput, IntInputProps } from './form/IntInput.js';
39
39
  export { DegInput, DegInputProps } from './form/DegInput.js';
package/dist/ui/index.mjs CHANGED
@@ -25,7 +25,6 @@ export { KVectorInput } from '../chunk-V25THXL6.mjs';
25
25
  export { QuaternionInput } from '../chunk-ZLQIYYLM.mjs';
26
26
  export { VectorInput } from '../chunk-SIU54HGH.mjs';
27
27
  export { TreeView } from '../chunk-54AT7VFI.mjs';
28
- export { VersionBadge } from '../chunk-3FQAKG2I.mjs';
29
28
  import '../chunk-KHROZRRE.mjs';
30
29
  export { createSelectable } from '../chunk-TVKPO5VK.mjs';
31
30
  export { DragSelectProvider, useDragSelectContext } from '../chunk-JBQP2CBI.mjs';
@@ -39,7 +38,7 @@ export { ToggleButton, ToggleButtons, toggleButtonHighlightVariants, toggleButto
39
38
  export { ToggleGroup, ToggleGroupItem, toggleGroupVariants } from '../chunk-EWAKGFQG.mjs';
40
39
  export { Toggle, toggleVariants } from '../chunk-7C24XIM4.mjs';
41
40
  export { Toolbar, ToolbarGroup, ToolbarSeparator } from '../chunk-SCN6F2EN.mjs';
42
- export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar } from '../chunk-YNHK66TC.mjs';
41
+ export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar } from '../chunk-MTITDGHI.mjs';
43
42
  export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../chunk-XSJ6XVTR.mjs';
44
43
  import '../chunk-OKAV7AZP.mjs';
45
44
  export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from '../chunk-IUATO2BH.mjs';
@@ -47,30 +46,31 @@ import '../chunk-G73SWE4J.mjs';
47
46
  export { Slider } from '../chunk-6LG57RUT.mjs';
48
47
  export { Switch } from '../chunk-ERN4HL5A.mjs';
49
48
  export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow } from '../chunk-3XH7NAMK.mjs';
49
+ export { Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger } from '../chunk-FEUYP5OW.mjs';
50
50
  export { Navigation } from '../chunk-7JYI3VUI.mjs';
51
51
  export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../chunk-JEIVAYVK.mjs';
52
52
  export { Panel, PanelAction, PanelContent, PanelDescription, PanelFooter, PanelHeader, PanelTitle } from '../chunk-PJJ7CR5M.mjs';
53
53
  export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from '../chunk-5PDVUXZO.mjs';
54
- export { PresetsInput } from '../chunk-T2327HPH.mjs';
54
+ export { PresetsInput } from '../chunk-RVJFAWT2.mjs';
55
55
  export { RadioGroup, RadioGroupItem } from '../chunk-NVELFLAS.mjs';
56
56
  export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../chunk-FWH3ACEX.mjs';
57
+ export { ColorInput } from '../chunk-X46KNBED.mjs';
57
58
  export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from '../chunk-TJIDHMTK.mjs';
58
59
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../chunk-M4YQQBHS.mjs';
59
60
  export { InputNumbers } from '../chunk-MMOB4YG4.mjs';
60
61
  export { Label } from '../chunk-7LOOS5CJ.mjs';
61
62
  export { Layout } from '../chunk-NMSI7U5J.mjs';
62
- export { Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger } from '../chunk-FEUYP5OW.mjs';
63
+ export { GIT_HASH, PACKAGE_VERSION, PackageBadge, UIKitBadge } from '../chunk-RE74NVMU.mjs';
63
64
  export { Avatar, AvatarFallback, AvatarFallbackRoot, AvatarFallbackSSR, AvatarGroup, AvatarImage, AvatarImageFallback, AvatarImageRoot, AvatarRoot, AvatarSSRFallback } from '../chunk-ORNTGLPP.mjs';
64
65
  export { Badge, badgeVariants } from '../chunk-Q27ILZE6.mjs';
65
66
  export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '../chunk-R2DTBJJV.mjs';
66
67
  export { Checkbox } from '../chunk-Z6VNBZYM.mjs';
67
68
  export { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../chunk-F6VF4JAI.mjs';
68
- export { ColorInput } from '../chunk-X46KNBED.mjs';
69
- export { Textarea } from '../chunk-MXXKPTX3.mjs';
70
69
  export { Tabs, TabsContent, TabsList, TabsTrigger } from '../chunk-3GYDDYRD.mjs';
70
+ export { Textarea } from '../chunk-MXXKPTX3.mjs';
71
71
  export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, selectTriggerVariants } from '../chunk-C7WMCSNN.mjs';
72
- export { Button, buttonVariants } from '../chunk-3MSEMXKG.mjs';
73
72
  export { InputRoot as Input, InputRoot, InputSlot } from '../chunk-IWPVLQSF.mjs';
73
+ export { Button, buttonVariants } from '../chunk-3MSEMXKG.mjs';
74
74
  import '../chunk-XMG3IVGZ.mjs';
75
75
  import '../chunk-F7ZHPSLA.mjs';
76
76
  import '../chunk-3QT5VABC.mjs';
@@ -1,8 +1,8 @@
1
1
  'use strict';
2
2
 
3
- var chunkIGZWSOVN_cjs = require('../chunk-IGZWSOVN.cjs');
4
- require('../chunk-BHC7GX53.cjs');
3
+ var chunkJXG7KTJS_cjs = require('../chunk-JXG7KTJS.cjs');
5
4
  require('../chunk-NFJTF2GL.cjs');
5
+ require('../chunk-BHC7GX53.cjs');
6
6
  require('../chunk-QN4N4I3Z.cjs');
7
7
  require('../chunk-Q7E73DVJ.cjs');
8
8
  require('../chunk-JR4TVE43.cjs');
@@ -18,5 +18,5 @@ require('../chunk-DWD754BX.cjs');
18
18
 
19
19
  Object.defineProperty(exports, "PresetsInput", {
20
20
  enumerable: true,
21
- get: function () { return chunkIGZWSOVN_cjs.PresetsInput; }
21
+ get: function () { return chunkJXG7KTJS_cjs.PresetsInput; }
22
22
  });
@@ -1,6 +1,6 @@
1
- export { PresetsInput } from '../chunk-T2327HPH.mjs';
2
- import '../chunk-3MSEMXKG.mjs';
1
+ export { PresetsInput } from '../chunk-RVJFAWT2.mjs';
3
2
  import '../chunk-IWPVLQSF.mjs';
3
+ import '../chunk-3MSEMXKG.mjs';
4
4
  import '../chunk-F7ZHPSLA.mjs';
5
5
  import '../chunk-3QT5VABC.mjs';
6
6
  import '../chunk-XHJDRQD7.mjs';