-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy path@kobalte__core@0.13.7.patch
2156 lines (2147 loc) · 93.7 KB
/
@kobalte__core@0.13.7.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6
--- /dev/null
+++ b/.DS_Store
@@ -0,0 +1 @@
+Bud1% @� @� @� @E%DSDB`� @� @� @
\ No newline at end of file
diff --git a/dist/accordion/index.js b/dist/accordion/index.js
index 1ebfa67b3e633e326e6e60cef8461abce375acda..e41e2a0122074120e4e6f19c14c4631d3901d24f 100644
--- a/dist/accordion/index.js
+++ b/dist/accordion/index.js
@@ -1 +1 @@
-export { Accordion, AccordionContent as Content, AccordionHeader as Header, AccordionItem as Item, AccordionRoot as Root, AccordionTrigger as Trigger } from '../chunk/B2UT6A6R.js';
+export { Accordion, AccordionContent as Content, AccordionHeader as Header, AccordionItem as Item, AccordionRoot as Root, AccordionTrigger as Trigger } from '../chunk/6LHYCSB6.js';
diff --git a/dist/accordion/index.jsx b/dist/accordion/index.jsx
index 27c2a09e969f0a97f2d6d59668a8a21a68d3d561..f79fbb179a7e2ca5832195ca03b5d067ae1d027b 100644
--- a/dist/accordion/index.jsx
+++ b/dist/accordion/index.jsx
@@ -5,11 +5,11 @@ import {
AccordionItem,
AccordionRoot,
AccordionTrigger
-} from "../chunk/3FPLWEQJ.jsx";
+} from "../chunk/RNQ7C6ZT.jsx";
import "../chunk/SOM3K36D.jsx";
-import "../chunk/N3GAC5SS.jsx";
-import "../chunk/QZDH5R5B.jsx";
-import "../chunk/YRH543JR.jsx";
+import "../chunk/KBOKF5SS.jsx";
+import "../chunk/SNLZGHFR.jsx";
+import "../chunk/2LVJCACN.jsx";
import "../chunk/LR7LBJN3.jsx";
import "../chunk/XZ3MOT5A.jsx";
import "../chunk/E53DB7BS.jsx";
diff --git a/dist/alert-dialog/index.js b/dist/alert-dialog/index.js
index d6d65b6e03da9c5c17a15a1ff6c624c0123ef324..bca075ffbd2ec41117d40c85d3865932779f9aad 100644
--- a/dist/alert-dialog/index.js
+++ b/dist/alert-dialog/index.js
@@ -1,2 +1,2 @@
-export { AlertDialog, AlertDialogContent as Content } from '../chunk/MNDEGUJQ.js';
-export { DialogCloseButton as CloseButton, DialogDescription as Description, DialogOverlay as Overlay, DialogPortal as Portal, DialogRoot as Root, DialogTitle as Title, DialogTrigger as Trigger } from '../chunk/XZPN5BPK.js';
+export { AlertDialog, AlertDialogContent as Content } from '../chunk/CCOZA7EW.js';
+export { DialogCloseButton as CloseButton, DialogDescription as Description, DialogOverlay as Overlay, DialogPortal as Portal, DialogRoot as Root, DialogTitle as Title, DialogTrigger as Trigger } from '../chunk/NRV7VQMT.js';
diff --git a/dist/alert-dialog/index.jsx b/dist/alert-dialog/index.jsx
index 9b64a5720e2e780ada2884e00cc14223e2324d50..a58f309dd11d79fac9e2886739381c1940dd1380 100644
--- a/dist/alert-dialog/index.jsx
+++ b/dist/alert-dialog/index.jsx
@@ -1,7 +1,7 @@
import {
AlertDialog,
AlertDialogContent
-} from "../chunk/PRDJAVBQ.jsx";
+} from "../chunk/U5CL3ICT.jsx";
import {
DialogCloseButton,
DialogDescription,
@@ -10,13 +10,13 @@ import {
DialogRoot,
DialogTitle,
DialogTrigger
-} from "../chunk/3HJ5K5AL.jsx";
+} from "../chunk/Y3NP2EJ2.jsx";
import "../chunk/7A3GDF4Y.jsx";
import "../chunk/P6XU75ZG.jsx";
import "../chunk/JHMNWOLY.jsx";
-import "../chunk/5OEKFZ5A.jsx";
-import "../chunk/IGYOA2ZZ.jsx";
+import "../chunk/YMSORVTQ.jsx";
import "../chunk/BMMCQ7YJ.jsx";
+import "../chunk/IGYOA2ZZ.jsx";
import "../chunk/3NI6FTA2.jsx";
import "../chunk/E53DB7BS.jsx";
import "../chunk/UKTBL2JL.jsx";
diff --git a/dist/chunk/YRH543JR.jsx b/dist/chunk/2LVJCACN.jsx
similarity index 97%
rename from dist/chunk/YRH543JR.jsx
rename to dist/chunk/2LVJCACN.jsx
index 620d1b476344ac3ee1cf9380012a7f78b53ae075..93ca603cafbb4a6576b193b54ade2170985fd584 100644
--- a/dist/chunk/YRH543JR.jsx
+++ b/dist/chunk/2LVJCACN.jsx
@@ -1,8 +1,5 @@
// src/primitives/create-collection/create-collection.ts
import { access } from "@kobalte/utils";
-import {
- createMemo
-} from "solid-js";
// src/primitives/create-collection/utils.ts
import { isNumber, isString } from "@kobalte/utils";
@@ -102,7 +99,7 @@ function buildNodes(params) {
// src/primitives/create-collection/create-collection.ts
function createCollection(props, deps = []) {
- return createMemo(() => {
+ return () => {
const nodes = buildNodes({
dataSource: access(props.dataSource),
getKey: access(props.getKey),
@@ -113,7 +110,7 @@ function createCollection(props, deps = []) {
for (let i = 0; i < deps.length; i++)
deps[i]();
return props.factory(nodes);
- });
+ };
}
export {
diff --git a/dist/chunk/4UVPRB4R.jsx b/dist/chunk/2LYGDFGW.jsx
similarity index 99%
rename from dist/chunk/4UVPRB4R.jsx
rename to dist/chunk/2LYGDFGW.jsx
index 1034d907bd2d4cd6af816fd5b5656cbce01e0271..df71a8c4b8cbf2ab4f31fbd76db39d2bb34d038f 100644
--- a/dist/chunk/4UVPRB4R.jsx
+++ b/dist/chunk/2LYGDFGW.jsx
@@ -4,7 +4,7 @@ import {
} from "./KFH362HI.jsx";
import {
DismissableLayer
-} from "./5OEKFZ5A.jsx";
+} from "./YMSORVTQ.jsx";
import {
createDisclosureState
} from "./E53DB7BS.jsx";
diff --git a/dist/chunk/RP6BPYF5.jsx b/dist/chunk/2QBQEJZX.jsx
similarity index 99%
rename from dist/chunk/RP6BPYF5.jsx
rename to dist/chunk/2QBQEJZX.jsx
index 8676aa62117653112810fa06e3cf8366d0ce4e71..e7b86718f844122e75f9e1384605a9b175293335 100644
--- a/dist/chunk/RP6BPYF5.jsx
+++ b/dist/chunk/2QBQEJZX.jsx
@@ -10,7 +10,7 @@ import {
} from "./P6XU75ZG.jsx";
import {
DismissableLayer
-} from "./5OEKFZ5A.jsx";
+} from "./YMSORVTQ.jsx";
import {
createDisclosureState
} from "./E53DB7BS.jsx";
diff --git a/dist/chunk/4BY6HKXA.js b/dist/chunk/365BT4L3.js
similarity index 100%
rename from dist/chunk/4BY6HKXA.js
rename to dist/chunk/365BT4L3.js
index 448fa08c52ac97044df2d4b96b192200c5d18795..0046c91a4b944d6203223527dcd638197a189703 100644
--- a/dist/chunk/4BY6HKXA.js
+++ b/dist/chunk/365BT4L3.js
@@ -3,8 +3,8 @@ import { createFocusScope } from './ISKHZMHS.js';
import { createHideOutside } from './TZGE2AQH.js';
import { DismissableLayer } from './G7G3PFRJ.js';
import { createDisclosureState } from './7LCANGHD.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, memo, Portal } from 'solid-js/web';
diff --git a/dist/chunk/NITFI7ZU.js b/dist/chunk/444F3DY4.js
similarity index 99%
rename from dist/chunk/NITFI7ZU.js
rename to dist/chunk/444F3DY4.js
index 5b108e5687824c61faeaec6f8e993035f087be96..c712f76c86b219979b83bc406a61ffda6a65da5e 100644
--- a/dist/chunk/NITFI7ZU.js
+++ b/dist/chunk/444F3DY4.js
@@ -1,21 +1,21 @@
-import { HiddenSelectBase } from './DIKSCYO5.js';
-import { ListboxItem, ListboxItemDescription, ListboxItemIndicator, ListboxItemLabel, ListboxSection, ListboxRoot } from './5D4E5DKO.js';
+import { HiddenSelectBase } from './543QQLKH.js';
+import { ListboxItem, ListboxItemDescription, ListboxItemIndicator, ListboxItemLabel, ListboxSection, ListboxRoot } from './UVFMMSYN.js';
import { getItemCount } from './2X5XWQIS.js';
import { PopperArrow, Popper } from './4X2EKUJ3.js';
-import { ListKeyboardDelegate } from './GLKC2QFF.js';
-import { createListState, Selection, createSelectableCollection } from './H6DSIDEC.js';
-import { createFilter } from './XHJPQEZP.js';
import { createFocusScope } from './ISKHZMHS.js';
import { createHideOutside } from './TZGE2AQH.js';
import { announce } from './YA7DCYMB.js';
import { DismissableLayer } from './G7G3PFRJ.js';
+import { ListKeyboardDelegate } from './C2IQGEDN.js';
+import { createListState, Selection, createSelectableCollection } from './V5JHNUQR.js';
+import { createFilter } from './XHJPQEZP.js';
import { FORM_CONTROL_FIELD_PROP_NAMES, createFormControlField } from './HLYNC3TZ.js';
import { FormControlDescription, FormControlErrorMessage, FormControlLabel, useFormControlContext, FORM_CONTROL_PROP_NAMES, createFormControl, FormControlContext } from './Q2DJLZQE.js';
import { createFormResetListener } from './ANN3A2QM.js';
import { createDisclosureState } from './7LCANGHD.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
import { createControllableSignal } from './BLN63FDC.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, memo, Portal } from 'solid-js/web';
diff --git a/dist/chunk/EMPI3PMI.jsx b/dist/chunk/4A5RNKC6.jsx
similarity index 99%
rename from dist/chunk/EMPI3PMI.jsx
rename to dist/chunk/4A5RNKC6.jsx
index c7a63eafa3e9c6b69a773cde55fab2593d2122eb..4a225ed4838d028ad36c090b7e549e7d4569247b 100644
--- a/dist/chunk/EMPI3PMI.jsx
+++ b/dist/chunk/4A5RNKC6.jsx
@@ -17,7 +17,7 @@ import {
MenuSubTrigger,
useMenuContext,
useMenuRootContext
-} from "./IYMNQCIG.jsx";
+} from "./XNYQ7OQG.jsx";
import {
SeparatorRoot
} from "./T4C3DMHT.jsx";
diff --git a/dist/chunk/DIKSCYO5.js b/dist/chunk/543QQLKH.js
similarity index 98%
rename from dist/chunk/DIKSCYO5.js
rename to dist/chunk/543QQLKH.js
index 3649555d2199afe616b7fa732613bbaec777ce30..ef3858b0cc2b48ee0a91ddb741a424ee5269d919 100644
--- a/dist/chunk/DIKSCYO5.js
+++ b/dist/chunk/543QQLKH.js
@@ -1,4 +1,4 @@
-import { isSameSelection } from './H6DSIDEC.js';
+import { isSameSelection } from './V5JHNUQR.js';
import { useFormControlContext } from './Q2DJLZQE.js';
import { use, spread, mergeProps, insert, createComponent, effect, style, setAttribute, template } from 'solid-js/web';
import { callHandler, mergeRefs, visuallyHiddenStyles } from '@kobalte/utils';
diff --git a/dist/chunk/ZB5RP2HP.js b/dist/chunk/63HEVAFP.js
similarity index 100%
rename from dist/chunk/ZB5RP2HP.js
rename to dist/chunk/63HEVAFP.js
index 309a568b62ba38169fe7a7f120d3b47514574d4b..2017307cd4599c3b81a8f84dd78f55f5fbff537b 100644
--- a/dist/chunk/ZB5RP2HP.js
+++ b/dist/chunk/63HEVAFP.js
@@ -3,8 +3,8 @@ import { useLocale } from './XHJPQEZP.js';
import { FORM_CONTROL_FIELD_PROP_NAMES, createFormControlField } from './HLYNC3TZ.js';
import { FormControlDescription, FormControlErrorMessage, FormControlLabel, useFormControlContext, FORM_CONTROL_PROP_NAMES, createFormControl, FormControlContext } from './Q2DJLZQE.js';
import { createFormResetListener } from './ANN3A2QM.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createControllableSignal } from './BLN63FDC.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, use, spread, memo, effect, style, template } from 'solid-js/web';
diff --git a/dist/chunk/B2UT6A6R.js b/dist/chunk/6LHYCSB6.js
similarity index 98%
rename from dist/chunk/B2UT6A6R.js
rename to dist/chunk/6LHYCSB6.js
index 303dd0655dd31949fbfb1e97a391f507902f30df..f579223c8517cf6238e85bac47b33759353e58f2 100644
--- a/dist/chunk/B2UT6A6R.js
+++ b/dist/chunk/6LHYCSB6.js
@@ -1,7 +1,7 @@
import { createDomCollection, createDomCollectionItem } from './7CVNMTYF.js';
-import { createSelectableList } from './GLKC2QFF.js';
-import { createListState, createSelectableItem } from './H6DSIDEC.js';
-import { CollapsibleContent, useCollapsibleContext, CollapsibleRoot, CollapsibleTrigger } from './IHL55PMF.js';
+import { createSelectableList } from './C2IQGEDN.js';
+import { createListState, createSelectableItem } from './V5JHNUQR.js';
+import { CollapsibleContent, useCollapsibleContext, CollapsibleRoot, CollapsibleTrigger } from './LAOCJWQM.js';
import { createRegisterId } from './E4R2EMM4.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
diff --git a/dist/chunk/NO3YQ6PD.jsx b/dist/chunk/7SXKXSXB.jsx
similarity index 99%
rename from dist/chunk/NO3YQ6PD.jsx
rename to dist/chunk/7SXKXSXB.jsx
index ab3df1a0de8f26eec08ac959b72285f89f7f2b42..83811025a0235a0a8db2b529a4c449b52c76f97a 100644
--- a/dist/chunk/NO3YQ6PD.jsx
+++ b/dist/chunk/7SXKXSXB.jsx
@@ -1,6 +1,6 @@
import {
HiddenSelectBase
-} from "./SRFLFESK.jsx";
+} from "./ZEX6CEQQ.jsx";
import {
ListboxItem,
ListboxItemDescription,
@@ -8,31 +8,37 @@ import {
ListboxItemLabel,
ListboxRoot,
ListboxSection
-} from "./4UJQK74D.jsx";
+} from "./CZ4OUHJC.jsx";
import {
Popper,
PopperArrow
} from "./KFH362HI.jsx";
+import {
+ createFocusScope
+} from "./7A3GDF4Y.jsx";
+import {
+ createHideOutside
+} from "./P6XU75ZG.jsx";
+import {
+ DismissableLayer
+} from "./YMSORVTQ.jsx";
import {
ListKeyboardDelegate
-} from "./N3GAC5SS.jsx";
+} from "./KBOKF5SS.jsx";
import {
Selection,
createListState,
createTypeSelect
-} from "./QZDH5R5B.jsx";
+} from "./SNLZGHFR.jsx";
import {
createCollator
} from "./LR7LBJN3.jsx";
import {
- createFocusScope
-} from "./7A3GDF4Y.jsx";
-import {
- createHideOutside
-} from "./P6XU75ZG.jsx";
+ createDisclosureState
+} from "./E53DB7BS.jsx";
import {
- DismissableLayer
-} from "./5OEKFZ5A.jsx";
+ ButtonRoot
+} from "./UKTBL2JL.jsx";
import {
FORM_CONTROL_FIELD_PROP_NAMES,
createFormControlField
@@ -49,12 +55,6 @@ import {
import {
createFormResetListener
} from "./QJIB6BDF.jsx";
-import {
- createDisclosureState
-} from "./E53DB7BS.jsx";
-import {
- ButtonRoot
-} from "./UKTBL2JL.jsx";
import {
createRegisterId
} from "./JNCCF6MP.jsx";
@@ -383,7 +383,7 @@ function SelectBase(props) {
isFunction(optionValue) ? optionValue(option) : option[optionValue]
);
};
- const flattenOptions = createMemo(() => {
+ const flattenOptions = () => {
const optionGroupChildren = local.optionGroupChildren;
if (optionGroupChildren == null) {
return local.options;
@@ -391,7 +391,7 @@ function SelectBase(props) {
return local.options.flatMap(
(item) => item[optionGroupChildren] ?? item
);
- });
+ };
const flattenOptionKeys = createMemo(() => {
return flattenOptions().map((option) => getOptionValue(option));
});
@@ -434,9 +434,9 @@ function SelectBase(props) {
getDisabled: () => local.optionDisabled,
getSectionChildren: () => local.optionGroupChildren
});
- const selectedOptions = createMemo(() => {
+ const selectedOptions = () => {
return getOptionsFromValues(listState.selectionManager().selectedKeys());
- });
+ };
const removeOptionFromSelection = (option) => {
listState.selectionManager().toggleSelection(getOptionValue(option));
};
diff --git a/dist/chunk/IHG3HEOY.js b/dist/chunk/AU5GPIIW.js
similarity index 99%
rename from dist/chunk/IHG3HEOY.js
rename to dist/chunk/AU5GPIIW.js
index f4c70d62b7a90e92905a0eeef89d629359a2054d..277fc00f034116b2dc0b1a90582b07162c88ac4b 100644
--- a/dist/chunk/IHG3HEOY.js
+++ b/dist/chunk/AU5GPIIW.js
@@ -1,16 +1,16 @@
import { Popper } from './4X2EKUJ3.js';
-import { createDomCollectionItem, useOptionalDomCollectionContext, createDomCollection } from './7CVNMTYF.js';
-import { createSelectableList } from './GLKC2QFF.js';
-import { createSelectableItem, createListState } from './H6DSIDEC.js';
-import { useLocale } from './XHJPQEZP.js';
import { createFocusScope } from './ISKHZMHS.js';
import { createHideOutside } from './TZGE2AQH.js';
import { DismissableLayer } from './G7G3PFRJ.js';
+import { createDomCollectionItem, useOptionalDomCollectionContext, createDomCollection } from './7CVNMTYF.js';
+import { createSelectableList } from './C2IQGEDN.js';
+import { createSelectableItem, createListState } from './V5JHNUQR.js';
+import { useLocale } from './XHJPQEZP.js';
import { createToggleState } from './YGDQXQ2B.js';
import { createDisclosureState } from './7LCANGHD.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
import { createControllableSignal } from './BLN63FDC.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { createTagName } from './ET5T45DO.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { createComponent, mergeProps, memo, Portal, isServer } from 'solid-js/web';
diff --git a/dist/chunk/GVHULZ44.js b/dist/chunk/AXU76IBI.js
similarity index 99%
rename from dist/chunk/GVHULZ44.js
rename to dist/chunk/AXU76IBI.js
index c8c536a81130b9082304323ed7fca481ac363e02..c4b02e7bd33207eaa460048452479864f6a2ca4d 100644
--- a/dist/chunk/GVHULZ44.js
+++ b/dist/chunk/AXU76IBI.js
@@ -1,4 +1,4 @@
-import { MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuIcon, MenuItem, MenuItemDescription, MenuItemIndicator, MenuItemLabel, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSub, MenuSubContent, MenuSubTrigger, useMenuRootContext, MenuContent, MenuRoot, useMenuContext } from './IHG3HEOY.js';
+import { MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuIcon, MenuItem, MenuItemDescription, MenuItemIndicator, MenuItemLabel, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSub, MenuSubContent, MenuSubTrigger, useMenuRootContext, MenuContent, MenuRoot, useMenuContext } from './AU5GPIIW.js';
import { SeparatorRoot } from './STGRFJHZ.js';
import { PopperArrow } from './4X2EKUJ3.js';
import { useLocale } from './XHJPQEZP.js';
diff --git a/dist/chunk/GLKC2QFF.js b/dist/chunk/C2IQGEDN.js
similarity index 98%
rename from dist/chunk/GLKC2QFF.js
rename to dist/chunk/C2IQGEDN.js
index 77642d4d9d98b1cffb092d4cac13ce5228f2596c..3dc553f28037ff570259647aa17df2d470b69117 100644
--- a/dist/chunk/GLKC2QFF.js
+++ b/dist/chunk/C2IQGEDN.js
@@ -1,4 +1,4 @@
-import { createSelectableCollection } from './H6DSIDEC.js';
+import { createSelectableCollection } from './V5JHNUQR.js';
import { createCollator } from './XHJPQEZP.js';
import { access } from '@kobalte/utils';
import { createMemo } from 'solid-js';
diff --git a/dist/chunk/MNDEGUJQ.js b/dist/chunk/CCOZA7EW.js
similarity index 97%
rename from dist/chunk/MNDEGUJQ.js
rename to dist/chunk/CCOZA7EW.js
index 5a06e48a75fa16d3690054c023e431aff03384e6..6e31ef6c6a8b60092082ab6b2eaafac090fdc06b 100644
--- a/dist/chunk/MNDEGUJQ.js
+++ b/dist/chunk/CCOZA7EW.js
@@ -1,4 +1,4 @@
-import { DialogCloseButton, DialogDescription, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger, DialogContent } from './XZPN5BPK.js';
+import { DialogCloseButton, DialogDescription, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger, DialogContent } from './NRV7VQMT.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps } from 'solid-js/web';
diff --git a/dist/chunk/4UJQK74D.jsx b/dist/chunk/CZ4OUHJC.jsx
similarity index 99%
rename from dist/chunk/4UJQK74D.jsx
rename to dist/chunk/CZ4OUHJC.jsx
index 95fe3398f17dd4d7ddfeb04353b10e8b2ec3ebe8..0ca045518e9feb618b0a75245887f681d529c019 100644
--- a/dist/chunk/4UJQK74D.jsx
+++ b/dist/chunk/CZ4OUHJC.jsx
@@ -3,11 +3,11 @@ import {
} from "./FINWO3A5.jsx";
import {
createSelectableList
-} from "./N3GAC5SS.jsx";
+} from "./KBOKF5SS.jsx";
import {
createListState,
createSelectableItem
-} from "./QZDH5R5B.jsx";
+} from "./SNLZGHFR.jsx";
import {
createRegisterId
} from "./JNCCF6MP.jsx";
diff --git a/dist/chunk/EJ5I5XML.jsx b/dist/chunk/EJ5I5XML.jsx
old mode 100755
new mode 100644
diff --git a/dist/chunk/WAFSG7EF.jsx b/dist/chunk/FSZXBTUA.jsx
similarity index 99%
rename from dist/chunk/WAFSG7EF.jsx
rename to dist/chunk/FSZXBTUA.jsx
index 0f230e6f65baf4b494fd1f44b6eb6cbf17612876..cf55107d924ab5dae27735f9ea65d0e01acb3588 100644
--- a/dist/chunk/WAFSG7EF.jsx
+++ b/dist/chunk/FSZXBTUA.jsx
@@ -3,7 +3,7 @@ import {
} from "./XTJD7L6B.jsx";
import {
ToggleButtonRoot
-} from "./BMUFHY3D.jsx";
+} from "./WAUM5GOD.jsx";
import {
createDomCollection,
createDomCollectionItem
@@ -12,7 +12,7 @@ import {
createListState,
createSelectableCollection,
createSelectableItem
-} from "./QZDH5R5B.jsx";
+} from "./SNLZGHFR.jsx";
import {
useLocale
} from "./LR7LBJN3.jsx";
diff --git a/dist/chunk/G4JQYERT.jsx b/dist/chunk/G4JQYERT.jsx
old mode 100755
new mode 100644
diff --git a/dist/chunk/HGF3WU5A.jsx b/dist/chunk/I5FTBIYU.jsx
similarity index 99%
rename from dist/chunk/HGF3WU5A.jsx
rename to dist/chunk/I5FTBIYU.jsx
index 80b8d15c3866a05b47af806b3476944918c3d21b..f331e9800c1d1e3036b8a927a8f59901004e8068 100644
--- a/dist/chunk/HGF3WU5A.jsx
+++ b/dist/chunk/I5FTBIYU.jsx
@@ -9,7 +9,7 @@ import {
createListState,
createSelectableCollection,
createSelectableItem
-} from "./QZDH5R5B.jsx";
+} from "./SNLZGHFR.jsx";
import {
useLocale
} from "./LR7LBJN3.jsx";
diff --git a/dist/chunk/KZEYGACG.js b/dist/chunk/IS4VVEQ5.js
similarity index 92%
rename from dist/chunk/KZEYGACG.js
rename to dist/chunk/IS4VVEQ5.js
index a5e696f44c870686a6009d17b881f9a43e6208a6..00101df437a459caac7b1f24bf673c7c7b9e97a7 100644
--- a/dist/chunk/KZEYGACG.js
+++ b/dist/chunk/IS4VVEQ5.js
@@ -1,5 +1,5 @@
-import { MenubarMenu, MenubarRoot, MenubarTrigger } from './VPWYQV2B.js';
-import { MenuCheckboxItem, MenuContent, MenuGroup, MenuGroupLabel, MenuIcon, MenuItem, MenuItemDescription, MenuItemIndicator, MenuItemLabel, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSub, MenuSubContent, MenuSubTrigger } from './IHG3HEOY.js';
+import { MenubarMenu, MenubarRoot, MenubarTrigger } from './Z73SJIAK.js';
+import { MenuCheckboxItem, MenuContent, MenuGroup, MenuGroupLabel, MenuIcon, MenuItem, MenuItemDescription, MenuItemIndicator, MenuItemLabel, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSub, MenuSubContent, MenuSubTrigger } from './AU5GPIIW.js';
import { SeparatorRoot } from './STGRFJHZ.js';
import { PopperArrow } from './4X2EKUJ3.js';
import { __export } from './5ZKAE4VZ.js';
diff --git a/dist/chunk/N3GAC5SS.jsx b/dist/chunk/KBOKF5SS.jsx
similarity index 99%
rename from dist/chunk/N3GAC5SS.jsx
rename to dist/chunk/KBOKF5SS.jsx
index 551c446ee395ec65adff6df979e3991c1d92036e..f8738ad058ac1c56e0ac4247e0b4df7f3d0c0dc1 100644
--- a/dist/chunk/N3GAC5SS.jsx
+++ b/dist/chunk/KBOKF5SS.jsx
@@ -1,6 +1,6 @@
import {
createSelectableCollection
-} from "./QZDH5R5B.jsx";
+} from "./SNLZGHFR.jsx";
import {
createCollator
} from "./LR7LBJN3.jsx";
diff --git a/dist/chunk/MLJWWSII.jsx b/dist/chunk/KKJIKM7T.jsx
similarity index 99%
rename from dist/chunk/MLJWWSII.jsx
rename to dist/chunk/KKJIKM7T.jsx
index a13909c30de23d10c37aa121ed09525e6849bcbd..cc3d51ac979d6aba27edd81b141c48d688324c84 100644
--- a/dist/chunk/MLJWWSII.jsx
+++ b/dist/chunk/KKJIKM7T.jsx
@@ -4,7 +4,7 @@ import {
MenubarContext,
useMenubarContext,
useOptionalMenuContext
-} from "./IYMNQCIG.jsx";
+} from "./XNYQ7OQG.jsx";
import {
createInteractOutside
} from "./BMMCQ7YJ.jsx";
diff --git a/dist/chunk/IHL55PMF.js b/dist/chunk/LAOCJWQM.js
similarity index 100%
rename from dist/chunk/IHL55PMF.js
rename to dist/chunk/LAOCJWQM.js
index d2c2499e348cb680783e7668a67254e1247a0de6..c9aed107929a63549ad09fc166c08ba3456cd75d 100644
--- a/dist/chunk/IHL55PMF.js
+++ b/dist/chunk/LAOCJWQM.js
@@ -1,6 +1,6 @@
import { createDisclosureState } from './7LCANGHD.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, memo } from 'solid-js/web';
diff --git a/dist/chunk/WTAYHYW2.jsx b/dist/chunk/LNEZZDHI.jsx
similarity index 99%
rename from dist/chunk/WTAYHYW2.jsx
rename to dist/chunk/LNEZZDHI.jsx
index 505448a59a5e37af66721177cb88113005501ee7..dc8c9adcd171a18a56ae305e63d6e29844dd4c23 100644
--- a/dist/chunk/WTAYHYW2.jsx
+++ b/dist/chunk/LNEZZDHI.jsx
@@ -1,6 +1,6 @@
import {
HiddenSelectBase
-} from "./SRFLFESK.jsx";
+} from "./ZEX6CEQQ.jsx";
import {
ListboxItem,
ListboxItemDescription,
@@ -8,7 +8,7 @@ import {
ListboxItemLabel,
ListboxRoot,
ListboxSection
-} from "./4UJQK74D.jsx";
+} from "./CZ4OUHJC.jsx";
import {
getItemCount
} from "./FINWO3A5.jsx";
@@ -16,17 +16,6 @@ import {
Popper,
PopperArrow
} from "./KFH362HI.jsx";
-import {
- ListKeyboardDelegate
-} from "./N3GAC5SS.jsx";
-import {
- Selection,
- createListState,
- createSelectableCollection
-} from "./QZDH5R5B.jsx";
-import {
- createFilter
-} from "./LR7LBJN3.jsx";
import {
createFocusScope
} from "./7A3GDF4Y.jsx";
@@ -38,7 +27,24 @@ import {
} from "./JHMNWOLY.jsx";
import {
DismissableLayer
-} from "./5OEKFZ5A.jsx";
+} from "./YMSORVTQ.jsx";
+import {
+ ListKeyboardDelegate
+} from "./KBOKF5SS.jsx";
+import {
+ Selection,
+ createListState,
+ createSelectableCollection
+} from "./SNLZGHFR.jsx";
+import {
+ createFilter
+} from "./LR7LBJN3.jsx";
+import {
+ createDisclosureState
+} from "./E53DB7BS.jsx";
+import {
+ ButtonRoot
+} from "./UKTBL2JL.jsx";
import {
FORM_CONTROL_FIELD_PROP_NAMES,
createFormControlField
@@ -55,12 +61,6 @@ import {
import {
createFormResetListener
} from "./QJIB6BDF.jsx";
-import {
- createDisclosureState
-} from "./E53DB7BS.jsx";
-import {
- ButtonRoot
-} from "./UKTBL2JL.jsx";
import {
createRegisterId
} from "./JNCCF6MP.jsx";
diff --git a/dist/chunk/UPL2ZV2Y.js b/dist/chunk/MH73SQWO.js
similarity index 99%
rename from dist/chunk/UPL2ZV2Y.js
rename to dist/chunk/MH73SQWO.js
index 3159a0e9fc747ace765e70fdf21162fa870fb36d..681a23cedcb4d6fcd68f79cc7dda77d86909630e 100644
--- a/dist/chunk/UPL2ZV2Y.js
+++ b/dist/chunk/MH73SQWO.js
@@ -1,6 +1,6 @@
import { TabsKeyboardDelegate } from './43XIKO67.js';
import { createDomCollection, createDomCollectionItem } from './7CVNMTYF.js';
-import { createSelectableCollection, createSelectableItem, createListState } from './H6DSIDEC.js';
+import { createSelectableCollection, createSelectableItem, createListState } from './V5JHNUQR.js';
import { useLocale } from './XHJPQEZP.js';
import { createControllableSignal } from './BLN63FDC.js';
import { Polymorphic } from './6Y7B2NEO.js';
diff --git a/dist/chunk/JMA2RWU6.js b/dist/chunk/NDFJCVTZ.js
similarity index 97%
rename from dist/chunk/JMA2RWU6.js
rename to dist/chunk/NDFJCVTZ.js
index 6921950581071a5c434cc08f4db240d30ac64c1f..86dbfdc8f4580a9f6d07de050e17ee02a9d297d0 100644
--- a/dist/chunk/JMA2RWU6.js
+++ b/dist/chunk/NDFJCVTZ.js
@@ -1,5 +1,4 @@
import { access, isString, isNumber } from '@kobalte/utils';
-import { createMemo } from 'solid-js';
// src/primitives/create-collection/create-collection.ts
function buildNodes(params) {
@@ -98,7 +97,7 @@ function buildNodes(params) {
// src/primitives/create-collection/create-collection.ts
function createCollection(props, deps = []) {
- return createMemo(() => {
+ return () => {
const nodes = buildNodes({
dataSource: access(props.dataSource),
getKey: access(props.getKey),
@@ -109,7 +108,7 @@ function createCollection(props, deps = []) {
for (let i = 0; i < deps.length; i++)
deps[i]();
return props.factory(nodes);
- });
+ };
}
export { createCollection };
diff --git a/dist/chunk/XZPN5BPK.js b/dist/chunk/NRV7VQMT.js
similarity index 100%
rename from dist/chunk/XZPN5BPK.js
rename to dist/chunk/NRV7VQMT.js
index 326e41d28637c12573b14a90b770dfa36eb16e9d..62468c3664afb8eedfdfb495d12d8bd2036fc9e4 100644
--- a/dist/chunk/XZPN5BPK.js
+++ b/dist/chunk/NRV7VQMT.js
@@ -2,8 +2,8 @@ import { createFocusScope } from './ISKHZMHS.js';
import { createHideOutside } from './TZGE2AQH.js';
import { DismissableLayer } from './G7G3PFRJ.js';
import { createDisclosureState } from './7LCANGHD.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, memo, Portal } from 'solid-js/web';
diff --git a/dist/chunk/LZS5ZII3.jsx b/dist/chunk/OXFQXAMO.jsx
similarity index 99%
rename from dist/chunk/LZS5ZII3.jsx
rename to dist/chunk/OXFQXAMO.jsx
index dafd52affd04de7e4262744019399b5204b7acd7..09611ea626c3d7803da5d2bb9318c16e27928199 100644
--- a/dist/chunk/LZS5ZII3.jsx
+++ b/dist/chunk/OXFQXAMO.jsx
@@ -4,7 +4,7 @@ import {
} from "./KFH362HI.jsx";
import {
DismissableLayer
-} from "./5OEKFZ5A.jsx";
+} from "./YMSORVTQ.jsx";
import {
LinkRoot
} from "./3JA5IX2L.jsx";
diff --git a/dist/chunk/PP2KFHZP.js b/dist/chunk/PETZBP3P.js
similarity index 99%
rename from dist/chunk/PP2KFHZP.js
rename to dist/chunk/PETZBP3P.js
index efa5c900d1a3cb63c41158007bd636f35e606fd0..609fb1ab0c93bae5cb6f8ccc0cb5a234354a3e10 100644
--- a/dist/chunk/PP2KFHZP.js
+++ b/dist/chunk/PETZBP3P.js
@@ -1,7 +1,7 @@
-import { TabsKeyboardDelegate } from './43XIKO67.js';
import { ToggleButtonRoot } from './WCX7EZ72.js';
+import { TabsKeyboardDelegate } from './43XIKO67.js';
import { createDomCollectionItem, createDomCollection } from './7CVNMTYF.js';
-import { createSelectableItem, createListState, createSelectableCollection } from './H6DSIDEC.js';
+import { createSelectableItem, createListState, createSelectableCollection } from './V5JHNUQR.js';
import { useLocale } from './XHJPQEZP.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
diff --git a/dist/chunk/XIMWMCMT.js b/dist/chunk/PHSRFC7L.js
similarity index 98%
rename from dist/chunk/XIMWMCMT.js
rename to dist/chunk/PHSRFC7L.js
index 83c52cf5298a26779cb5f61cf8f01b32a43f5b5e..1445c60733e8fcb2ccb31dbf5e31710df252471b 100644
--- a/dist/chunk/XIMWMCMT.js
+++ b/dist/chunk/PHSRFC7L.js
@@ -1,18 +1,18 @@
-import { HiddenSelectBase } from './DIKSCYO5.js';
-import { ListboxItem, ListboxItemDescription, ListboxItemIndicator, ListboxItemLabel, ListboxSection, ListboxRoot } from './5D4E5DKO.js';
+import { HiddenSelectBase } from './543QQLKH.js';
+import { ListboxItem, ListboxItemDescription, ListboxItemIndicator, ListboxItemLabel, ListboxSection, ListboxRoot } from './UVFMMSYN.js';
import { PopperArrow, Popper } from './4X2EKUJ3.js';
-import { ListKeyboardDelegate } from './GLKC2QFF.js';
-import { createTypeSelect, createListState, Selection } from './H6DSIDEC.js';
-import { createCollator } from './XHJPQEZP.js';
import { createFocusScope } from './ISKHZMHS.js';
import { createHideOutside } from './TZGE2AQH.js';
import { DismissableLayer } from './G7G3PFRJ.js';
+import { ListKeyboardDelegate } from './C2IQGEDN.js';
+import { createTypeSelect, createListState, Selection } from './V5JHNUQR.js';
+import { createCollator } from './XHJPQEZP.js';
import { FORM_CONTROL_FIELD_PROP_NAMES, createFormControlField } from './HLYNC3TZ.js';
import { FormControlDescription, FormControlErrorMessage, FormControlLabel, useFormControlContext, FORM_CONTROL_PROP_NAMES, createFormControl, FormControlContext } from './Q2DJLZQE.js';
import { createFormResetListener } from './ANN3A2QM.js';
import { createDisclosureState } from './7LCANGHD.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, memo, Portal } from 'solid-js/web';
@@ -260,13 +260,13 @@ function SelectBase(props) {
}
return String(isFunction(optionValue) ? optionValue(option) : option[optionValue]);
};
- const flattenOptions = createMemo(() => {
+ const flattenOptions = () => {
const optionGroupChildren = local.optionGroupChildren;
if (optionGroupChildren == null) {
return local.options;
}
return local.options.flatMap((item) => item[optionGroupChildren] ?? item);
- });
+ };
const flattenOptionKeys = createMemo(() => {
return flattenOptions().map((option) => getOptionValue(option));
});
@@ -307,9 +307,9 @@ function SelectBase(props) {
getDisabled: () => local.optionDisabled,
getSectionChildren: () => local.optionGroupChildren
});
- const selectedOptions = createMemo(() => {
+ const selectedOptions = () => {
return getOptionsFromValues(listState.selectionManager().selectedKeys());
- });
+ };
const removeOptionFromSelection = (option) => {
listState.selectionManager().toggleSelection(getOptionValue(option));
};
diff --git a/dist/chunk/OWKXKMWZ.js b/dist/chunk/Q4QSLMWE.js
similarity index 100%
rename from dist/chunk/OWKXKMWZ.js
rename to dist/chunk/Q4QSLMWE.js
index fa5aa229d9285912bffadacccccffbc43cd20976..10ec00c82a9360fe0bd2554cca42cfe056a1792f 100644
--- a/dist/chunk/OWKXKMWZ.js
+++ b/dist/chunk/Q4QSLMWE.js
@@ -1,6 +1,6 @@
import { DATA_TOP_LAYER_ATTR } from './ZKYDDHM6.js';
-import { ButtonRoot } from './7OVKXYPU.js';
import { createRegisterId } from './E4R2EMM4.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { createComponent, mergeProps, isServer } from 'solid-js/web';
diff --git a/dist/chunk/XDF55ROR.jsx b/dist/chunk/QXUPYTEC.jsx
similarity index 97%
rename from dist/chunk/XDF55ROR.jsx
rename to dist/chunk/QXUPYTEC.jsx
index 6133581f053f4d04019daf34b48764dc71778b40..65b754a5d41dd9f4fc3783d429a736e98be651ab 100644
--- a/dist/chunk/XDF55ROR.jsx
+++ b/dist/chunk/QXUPYTEC.jsx
@@ -2,7 +2,7 @@ import {
MenubarMenu,
MenubarRoot,
MenubarTrigger
-} from "./MLJWWSII.jsx";
+} from "./KKJIKM7T.jsx";
import {
MenuCheckboxItem,
MenuContent,
@@ -19,7 +19,7 @@ import {
MenuSub,
MenuSubContent,
MenuSubTrigger
-} from "./IYMNQCIG.jsx";
+} from "./XNYQ7OQG.jsx";
import {
SeparatorRoot
} from "./T4C3DMHT.jsx";
diff --git a/dist/chunk/R5JXRO27.js b/dist/chunk/R5JXRO27.js
old mode 100755
new mode 100644
diff --git a/dist/chunk/3FPLWEQJ.jsx b/dist/chunk/RNQ7C6ZT.jsx
similarity index 99%
rename from dist/chunk/3FPLWEQJ.jsx
rename to dist/chunk/RNQ7C6ZT.jsx
index ad5c07799aecd8afcf1d8c49a1c97ba12a624284..66cea740a5b810d74739b5d2097760535b242e2d 100644
--- a/dist/chunk/3FPLWEQJ.jsx
+++ b/dist/chunk/RNQ7C6ZT.jsx
@@ -4,11 +4,11 @@ import {
} from "./SOM3K36D.jsx";
import {
createSelectableList
-} from "./N3GAC5SS.jsx";
+} from "./KBOKF5SS.jsx";
import {
createListState,
createSelectableItem
-} from "./QZDH5R5B.jsx";
+} from "./SNLZGHFR.jsx";
import {
CollapsibleContent,
CollapsibleRoot,
diff --git a/dist/chunk/B6Q5Q6BS.jsx b/dist/chunk/RSHIADR3.jsx
similarity index 100%
rename from dist/chunk/B6Q5Q6BS.jsx
rename to dist/chunk/RSHIADR3.jsx
index 802ee3387a3e6ac2bc45fcc2dce88dbf3e3c3984..f051cd0324a870486d5c991ec325e96874aecd77 100644
--- a/dist/chunk/B6Q5Q6BS.jsx
+++ b/dist/chunk/RSHIADR3.jsx
@@ -4,6 +4,9 @@ import {
import {
useLocale
} from "./LR7LBJN3.jsx";
+import {
+ ButtonRoot
+} from "./UKTBL2JL.jsx";
import {
FORM_CONTROL_FIELD_PROP_NAMES,
createFormControlField
@@ -20,9 +23,6 @@ import {
import {
createFormResetListener
} from "./QJIB6BDF.jsx";
-import {
- ButtonRoot
-} from "./UKTBL2JL.jsx";
import {
createControllableSignal
} from "./FN6EICGO.jsx";
diff --git a/dist/chunk/QZDH5R5B.jsx b/dist/chunk/SNLZGHFR.jsx
similarity index 99%
rename from dist/chunk/QZDH5R5B.jsx
rename to dist/chunk/SNLZGHFR.jsx
index c0c1a1e261d5c74d2664c8ea8f4d56a4e5001356..1b883875804d1d48cc66f757dee1b0984c88230b 100644
--- a/dist/chunk/QZDH5R5B.jsx
+++ b/dist/chunk/SNLZGHFR.jsx
@@ -1,6 +1,6 @@
import {
createCollection
-} from "./YRH543JR.jsx";
+} from "./2LVJCACN.jsx";
import {
useLocale
} from "./LR7LBJN3.jsx";
diff --git a/dist/chunk/22YZATBG.js b/dist/chunk/SVFGVY5B.js
similarity index 100%
rename from dist/chunk/22YZATBG.js
rename to dist/chunk/SVFGVY5B.js
index 3d679ce8b5db9fe5cfbe59b71086d70835853abf..dd518ecdb3a7e3039d564e04cb8e2f9f2f7e706d 100644
--- a/dist/chunk/22YZATBG.js
+++ b/dist/chunk/SVFGVY5B.js
@@ -1,5 +1,5 @@
-import { ButtonRoot } from './7OVKXYPU.js';
import { createControllableSignal } from './BLN63FDC.js';
+import { ButtonRoot } from './7OVKXYPU.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
import { insert, createComponent, mergeProps, memo, template } from 'solid-js/web';
diff --git a/dist/chunk/PRDJAVBQ.jsx b/dist/chunk/U5CL3ICT.jsx
similarity index 97%
rename from dist/chunk/PRDJAVBQ.jsx
rename to dist/chunk/U5CL3ICT.jsx
index 47058ef91c0773de9490f63b8ef1807d596044fe..2e325f7dd056e683a73d27613e596b848f886f9c 100644
--- a/dist/chunk/PRDJAVBQ.jsx
+++ b/dist/chunk/U5CL3ICT.jsx
@@ -7,7 +7,7 @@ import {
DialogRoot,
DialogTitle,
DialogTrigger
-} from "./3HJ5K5AL.jsx";
+} from "./Y3NP2EJ2.jsx";
import {
__export
} from "./5WXHJDCZ.jsx";
diff --git a/dist/chunk/UEEZAKDC.js b/dist/chunk/UEEZAKDC.js
old mode 100755
new mode 100644
diff --git a/dist/chunk/5D4E5DKO.js b/dist/chunk/UVFMMSYN.js
similarity index 99%
rename from dist/chunk/5D4E5DKO.js
rename to dist/chunk/UVFMMSYN.js
index f6b6c1679f39785219d907aea204616d92370cf1..3c0a5f98b12eb03376c2cdd6b95667252107a94a 100644
--- a/dist/chunk/5D4E5DKO.js
+++ b/dist/chunk/UVFMMSYN.js
@@ -1,6 +1,6 @@
import { getItemCount } from './2X5XWQIS.js';
-import { createSelectableList } from './GLKC2QFF.js';
-import { createSelectableItem, createListState } from './H6DSIDEC.js';
+import { createSelectableList } from './C2IQGEDN.js';
+import { createSelectableItem, createListState } from './V5JHNUQR.js';
import { createRegisterId } from './E4R2EMM4.js';
import { Polymorphic } from './6Y7B2NEO.js';
import { __export } from './5ZKAE4VZ.js';
diff --git a/dist/chunk/H6DSIDEC.js b/dist/chunk/V5JHNUQR.js
similarity index 99%
rename from dist/chunk/H6DSIDEC.js
rename to dist/chunk/V5JHNUQR.js
index 938fb65e7b65282f490603f0edc790954e30d757..a950f654495608d143ca5572ce2c1d2b575c8dbc 100644
--- a/dist/chunk/H6DSIDEC.js
+++ b/dist/chunk/V5JHNUQR.js
@@ -1,4 +1,4 @@
-import { createCollection } from './JMA2RWU6.js';
+import { createCollection } from './NDFJCVTZ.js';
import { useLocale } from './XHJPQEZP.js';
import { createControllableSignal } from './BLN63FDC.js';
import { mergeDefaultProps, access, createEventListener, scrollIntoView, focusWithoutScrolling, callHandler, getFocusableTreeWalker, isAppleDevice, isMac } from '@kobalte/utils';
diff --git a/dist/chunk/EGZ2FAE6.js b/dist/chunk/V6AUNNO3.js
similarity index 98%
rename from dist/chunk/EGZ2FAE6.js
rename to dist/chunk/V6AUNNO3.js
index a73b8481e92bb9e6e53a7ff29eaeb1117a2bddca..2a16e304e065b039b31fcd19b9e85f2316ed8021 100644
--- a/dist/chunk/EGZ2FAE6.js
+++ b/dist/chunk/V6AUNNO3.js
@@ -1,4 +1,4 @@
-import { MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuIcon, MenuItem, MenuItemDescription, MenuItemIndicator, MenuItemLabel, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSub, MenuSubContent, MenuSubTrigger, MenuTrigger, useMenuRootContext, useMenuContext, MenuContent, MenuRoot } from './IHG3HEOY.js';
+import { MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuIcon, MenuItem, MenuItemDescription, MenuItemIndicator, MenuItemLabel, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSub, MenuSubContent, MenuSubTrigger, MenuTrigger, useMenuRootContext, useMenuContext, MenuContent, MenuRoot } from './AU5GPIIW.js';
import { SeparatorRoot } from './STGRFJHZ.js';
import { PopperArrow } from './4X2EKUJ3.js';
import { __export } from './5ZKAE4VZ.js';
diff --git a/dist/chunk/BMUFHY3D.jsx b/dist/chunk/WAUM5GOD.jsx
similarity index 100%
rename from dist/chunk/BMUFHY3D.jsx
rename to dist/chunk/WAUM5GOD.jsx
index 926b028dfe338debf46ac98a3fc3fefddb580c76..d6d0a5a1a0070ae1396f9a8c0789a4095d50b2f1 100644
--- a/dist/chunk/BMUFHY3D.jsx
+++ b/dist/chunk/WAUM5GOD.jsx
@@ -1,9 +1,9 @@
-import {
- createToggleState
-} from "./VI7QYH27.jsx";
import {
ButtonRoot
} from "./UKTBL2JL.jsx";
+import {
+ createToggleState
+} from "./VI7QYH27.jsx";
import {
__export
} from "./5WXHJDCZ.jsx";
diff --git a/dist/chunk/IYMNQCIG.jsx b/dist/chunk/XNYQ7OQG.jsx
similarity index 99%
rename from dist/chunk/IYMNQCIG.jsx