@illinois-grad/grad-vue 2.4.1 → 2.5.0

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.
@@ -0,0 +1,2201 @@
1
+ {
2
+ "schemaVersion": "2.0.0",
3
+ "modules": [
4
+ {
5
+ "kind": "javascript-module",
6
+ "path": "dist/web-components.js",
7
+ "declarations": [
8
+ {
9
+ "kind": "custom-element",
10
+ "name": "GAlertDialogElement",
11
+ "tagName": "g-alert-dialog",
12
+ "members": [
13
+ {
14
+ "kind": "field",
15
+ "name": "label",
16
+ "type": {
17
+ "text": "string"
18
+ },
19
+ "optional": true,
20
+ "description": "Dialog label",
21
+ "default": "\"Confirmation\""
22
+ },
23
+ {
24
+ "kind": "field",
25
+ "name": "buttonText",
26
+ "type": {
27
+ "text": "string"
28
+ },
29
+ "optional": true,
30
+ "description": "Accept button text",
31
+ "default": "\"Continue\""
32
+ },
33
+ {
34
+ "kind": "field",
35
+ "name": "buttonColor",
36
+ "type": {
37
+ "text": "\"primary\" | \"secondary\" | \"danger\""
38
+ },
39
+ "optional": true,
40
+ "description": "Accept button color",
41
+ "default": "\"primary\""
42
+ }
43
+ ],
44
+ "events": [
45
+ {
46
+ "name": "cancel",
47
+ "type": {
48
+ "text": "CustomEvent"
49
+ }
50
+ },
51
+ {
52
+ "name": "confirm",
53
+ "type": {
54
+ "text": "CustomEvent"
55
+ }
56
+ }
57
+ ]
58
+ }
59
+ ]
60
+ },
61
+ {
62
+ "kind": "javascript-module",
63
+ "path": "dist/web-components.js",
64
+ "declarations": [
65
+ {
66
+ "kind": "custom-element",
67
+ "name": "GAppHeaderElement",
68
+ "tagName": "g-app-header",
69
+ "members": [
70
+ {
71
+ "kind": "field",
72
+ "name": "illinois",
73
+ "type": {
74
+ "text": "boolean"
75
+ },
76
+ "optional": true,
77
+ "description": "Whether to show the Illinois logo",
78
+ "default": "false"
79
+ },
80
+ {
81
+ "kind": "field",
82
+ "name": "brand",
83
+ "type": {
84
+ "text": "string"
85
+ },
86
+ "optional": true,
87
+ "description": "Top-left corner text You can customize this text element with the \"left\" slot.",
88
+ "default": "\"GRAD\""
89
+ }
90
+ ],
91
+ "events": []
92
+ }
93
+ ]
94
+ },
95
+ {
96
+ "kind": "javascript-module",
97
+ "path": "dist/web-components.js",
98
+ "declarations": [
99
+ {
100
+ "kind": "custom-element",
101
+ "name": "GButtonElement",
102
+ "tagName": "g-button",
103
+ "members": [
104
+ {
105
+ "kind": "field",
106
+ "name": "size",
107
+ "type": {
108
+ "text": "\"small\" | \"medium\" | \"large\""
109
+ },
110
+ "optional": true,
111
+ "description": "Button size",
112
+ "default": "\"medium\""
113
+ },
114
+ {
115
+ "kind": "field",
116
+ "name": "theme",
117
+ "type": {
118
+ "text": "\"primary\" | \"secondary\" | \"accent\" | \"danger\" | \"none\""
119
+ },
120
+ "optional": true,
121
+ "description": "Button color theme",
122
+ "default": "\"primary\""
123
+ },
124
+ {
125
+ "kind": "field",
126
+ "name": "outlined",
127
+ "type": {
128
+ "text": "boolean"
129
+ },
130
+ "optional": true,
131
+ "description": "Use outlined style",
132
+ "default": "false"
133
+ },
134
+ {
135
+ "kind": "field",
136
+ "name": "text",
137
+ "type": {
138
+ "text": "boolean"
139
+ },
140
+ "optional": true,
141
+ "description": "Use text style",
142
+ "default": "false"
143
+ },
144
+ {
145
+ "kind": "field",
146
+ "name": "to",
147
+ "type": {
148
+ "text": "string | Record<string, any>"
149
+ },
150
+ "optional": true,
151
+ "description": "The to target for when using the button as a router-link",
152
+ "default": "undefined"
153
+ },
154
+ {
155
+ "kind": "field",
156
+ "name": "component",
157
+ "type": {
158
+ "text": "string"
159
+ },
160
+ "optional": true,
161
+ "description": "The component to use for the button",
162
+ "default": "undefined"
163
+ },
164
+ {
165
+ "kind": "field",
166
+ "name": "icon",
167
+ "type": {
168
+ "text": "string"
169
+ },
170
+ "optional": true,
171
+ "description": "Optional icon classes to render an icon span before the label. Example: \"fa-solid fa-plus\" or \"material-symbols:add\". If a named slot `icon` is provided, it takes precedence over this prop.",
172
+ "default": "undefined"
173
+ }
174
+ ],
175
+ "events": [
176
+ {
177
+ "name": "click",
178
+ "type": {
179
+ "text": "CustomEvent"
180
+ }
181
+ },
182
+ {
183
+ "name": "focus",
184
+ "type": {
185
+ "text": "CustomEvent"
186
+ }
187
+ },
188
+ {
189
+ "name": "blur",
190
+ "type": {
191
+ "text": "CustomEvent"
192
+ }
193
+ },
194
+ {
195
+ "name": "keydown",
196
+ "type": {
197
+ "text": "CustomEvent"
198
+ }
199
+ },
200
+ {
201
+ "name": "keyup",
202
+ "type": {
203
+ "text": "CustomEvent"
204
+ }
205
+ },
206
+ {
207
+ "name": "mousedown",
208
+ "type": {
209
+ "text": "CustomEvent"
210
+ }
211
+ },
212
+ {
213
+ "name": "mouseup",
214
+ "type": {
215
+ "text": "CustomEvent"
216
+ }
217
+ },
218
+ {
219
+ "name": "mouseenter",
220
+ "type": {
221
+ "text": "CustomEvent"
222
+ }
223
+ },
224
+ {
225
+ "name": "mouseleave",
226
+ "type": {
227
+ "text": "CustomEvent"
228
+ }
229
+ }
230
+ ]
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "kind": "javascript-module",
236
+ "path": "dist/web-components.js",
237
+ "declarations": [
238
+ {
239
+ "kind": "custom-element",
240
+ "name": "GClipboardElement",
241
+ "tagName": "g-clipboard",
242
+ "members": [
243
+ {
244
+ "kind": "field",
245
+ "name": "text",
246
+ "type": {
247
+ "text": "string"
248
+ },
249
+ "optional": false,
250
+ "description": "Text"
251
+ },
252
+ {
253
+ "kind": "field",
254
+ "name": "hideText",
255
+ "type": {
256
+ "text": "boolean"
257
+ },
258
+ "optional": true,
259
+ "description": "Hide the visible text"
260
+ },
261
+ {
262
+ "kind": "field",
263
+ "name": "copyLabel",
264
+ "type": {
265
+ "text": "string"
266
+ },
267
+ "optional": true,
268
+ "description": "Copy button label"
269
+ }
270
+ ],
271
+ "events": []
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "kind": "javascript-module",
277
+ "path": "dist/web-components.js",
278
+ "declarations": [
279
+ {
280
+ "kind": "custom-element",
281
+ "name": "GCurrencyInputElement",
282
+ "tagName": "g-currency-input",
283
+ "members": [
284
+ {
285
+ "kind": "field",
286
+ "name": "label",
287
+ "type": {
288
+ "text": "string"
289
+ },
290
+ "optional": true,
291
+ "description": "Label",
292
+ "default": "undefined"
293
+ },
294
+ {
295
+ "kind": "field",
296
+ "name": "placeholder",
297
+ "type": {
298
+ "text": "string"
299
+ },
300
+ "optional": true,
301
+ "description": "Placeholder text",
302
+ "default": "\"\""
303
+ },
304
+ {
305
+ "kind": "field",
306
+ "name": "disabled",
307
+ "type": {
308
+ "text": "boolean"
309
+ },
310
+ "optional": true,
311
+ "description": "Disabled",
312
+ "default": "false"
313
+ },
314
+ {
315
+ "kind": "field",
316
+ "name": "errors",
317
+ "type": {
318
+ "text": "string[]"
319
+ },
320
+ "optional": true,
321
+ "description": "Error messages array (supports multiple validation errors)",
322
+ "default": "() => []"
323
+ },
324
+ {
325
+ "kind": "field",
326
+ "name": "instructions",
327
+ "type": {
328
+ "text": "string"
329
+ },
330
+ "optional": true,
331
+ "description": "Instructions",
332
+ "default": "\"\""
333
+ },
334
+ {
335
+ "kind": "field",
336
+ "name": "name",
337
+ "type": {
338
+ "text": "string"
339
+ },
340
+ "optional": true,
341
+ "description": "Name for form registration",
342
+ "default": "undefined"
343
+ },
344
+ {
345
+ "kind": "field",
346
+ "name": "modelValue",
347
+ "type": {
348
+ "text": "string | null"
349
+ },
350
+ "optional": true
351
+ }
352
+ ],
353
+ "events": []
354
+ }
355
+ ]
356
+ },
357
+ {
358
+ "kind": "javascript-module",
359
+ "path": "dist/web-components.js",
360
+ "declarations": [
361
+ {
362
+ "kind": "custom-element",
363
+ "name": "GDateInputElement",
364
+ "tagName": "g-date-input",
365
+ "members": [
366
+ {
367
+ "kind": "field",
368
+ "name": "label",
369
+ "type": {
370
+ "text": "string"
371
+ },
372
+ "optional": true,
373
+ "description": "Label",
374
+ "default": "undefined"
375
+ },
376
+ {
377
+ "kind": "field",
378
+ "name": "placeholder",
379
+ "type": {
380
+ "text": "string"
381
+ },
382
+ "optional": true,
383
+ "description": "Placeholder text",
384
+ "default": "\"\""
385
+ },
386
+ {
387
+ "kind": "field",
388
+ "name": "disabled",
389
+ "type": {
390
+ "text": "boolean"
391
+ },
392
+ "optional": true,
393
+ "description": "Disabled",
394
+ "default": "false"
395
+ },
396
+ {
397
+ "kind": "field",
398
+ "name": "errors",
399
+ "type": {
400
+ "text": "string[]"
401
+ },
402
+ "optional": true,
403
+ "description": "Error messages array (supports multiple validation errors)",
404
+ "default": "() => []"
405
+ },
406
+ {
407
+ "kind": "field",
408
+ "name": "instructions",
409
+ "type": {
410
+ "text": "string"
411
+ },
412
+ "optional": true,
413
+ "description": "Instructions",
414
+ "default": "\"\""
415
+ },
416
+ {
417
+ "kind": "field",
418
+ "name": "name",
419
+ "type": {
420
+ "text": "string"
421
+ },
422
+ "optional": true,
423
+ "description": "Name for form registration",
424
+ "default": "undefined"
425
+ },
426
+ {
427
+ "kind": "field",
428
+ "name": "modelValue",
429
+ "type": {
430
+ "text": "string | null"
431
+ },
432
+ "optional": true
433
+ }
434
+ ],
435
+ "events": []
436
+ }
437
+ ]
438
+ },
439
+ {
440
+ "kind": "javascript-module",
441
+ "path": "dist/web-components.js",
442
+ "declarations": [
443
+ {
444
+ "kind": "custom-element",
445
+ "name": "GDateRangeInputElement",
446
+ "tagName": "g-date-range-input",
447
+ "members": [
448
+ {
449
+ "kind": "field",
450
+ "name": "label",
451
+ "type": {
452
+ "text": "string"
453
+ },
454
+ "optional": true,
455
+ "description": "Label for the component",
456
+ "default": "undefined"
457
+ },
458
+ {
459
+ "kind": "field",
460
+ "name": "startLabel",
461
+ "type": {
462
+ "text": "string"
463
+ },
464
+ "optional": true,
465
+ "description": "Label for the start date input",
466
+ "default": "\"Start Date\""
467
+ },
468
+ {
469
+ "kind": "field",
470
+ "name": "endLabel",
471
+ "type": {
472
+ "text": "string"
473
+ },
474
+ "optional": true,
475
+ "description": "Label for the end date input",
476
+ "default": "\"End Date\""
477
+ },
478
+ {
479
+ "kind": "field",
480
+ "name": "disabled",
481
+ "type": {
482
+ "text": "boolean"
483
+ },
484
+ "optional": true,
485
+ "description": "Disabled",
486
+ "default": "false"
487
+ },
488
+ {
489
+ "kind": "field",
490
+ "name": "errors",
491
+ "type": {
492
+ "text": "string[]"
493
+ },
494
+ "optional": true,
495
+ "description": "Error messages array (supports multiple validation errors)",
496
+ "default": "() => []"
497
+ },
498
+ {
499
+ "kind": "field",
500
+ "name": "instructions",
501
+ "type": {
502
+ "text": "string"
503
+ },
504
+ "optional": true,
505
+ "description": "Instructions",
506
+ "default": "\"\""
507
+ },
508
+ {
509
+ "kind": "field",
510
+ "name": "name",
511
+ "type": {
512
+ "text": "string"
513
+ },
514
+ "optional": true,
515
+ "description": "Name for form registration",
516
+ "default": "undefined"
517
+ },
518
+ {
519
+ "kind": "field",
520
+ "name": "modelValue",
521
+ "type": {
522
+ "text": "DateRange"
523
+ },
524
+ "optional": true
525
+ }
526
+ ],
527
+ "events": []
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "kind": "javascript-module",
533
+ "path": "dist/web-components.js",
534
+ "declarations": [
535
+ {
536
+ "kind": "custom-element",
537
+ "name": "GDetailListElement",
538
+ "tagName": "g-detail-list",
539
+ "members": [
540
+ {
541
+ "kind": "field",
542
+ "name": "variant",
543
+ "type": {
544
+ "text": "\"grid\" | \"vertical\""
545
+ },
546
+ "optional": true,
547
+ "description": "Layout style for the items.",
548
+ "default": "\"grid\""
549
+ }
550
+ ],
551
+ "events": []
552
+ }
553
+ ]
554
+ },
555
+ {
556
+ "kind": "javascript-module",
557
+ "path": "dist/web-components.js",
558
+ "declarations": [
559
+ {
560
+ "kind": "custom-element",
561
+ "name": "GDetailListItemElement",
562
+ "tagName": "g-detail-list-item",
563
+ "members": [
564
+ {
565
+ "kind": "field",
566
+ "name": "label",
567
+ "type": {
568
+ "text": "string"
569
+ },
570
+ "optional": false,
571
+ "description": "Label shown for the item."
572
+ }
573
+ ],
574
+ "events": []
575
+ }
576
+ ]
577
+ },
578
+ {
579
+ "kind": "javascript-module",
580
+ "path": "dist/web-components.js",
581
+ "declarations": [
582
+ {
583
+ "kind": "custom-element",
584
+ "name": "GEmailInputElement",
585
+ "tagName": "g-email-input",
586
+ "members": [
587
+ {
588
+ "kind": "field",
589
+ "name": "label",
590
+ "type": {
591
+ "text": "string"
592
+ },
593
+ "optional": true,
594
+ "description": "Label",
595
+ "default": "undefined"
596
+ },
597
+ {
598
+ "kind": "field",
599
+ "name": "placeholder",
600
+ "type": {
601
+ "text": "string"
602
+ },
603
+ "optional": true,
604
+ "description": "Placeholder text",
605
+ "default": "\"\""
606
+ },
607
+ {
608
+ "kind": "field",
609
+ "name": "disabled",
610
+ "type": {
611
+ "text": "boolean"
612
+ },
613
+ "optional": true,
614
+ "description": "Disabled",
615
+ "default": "false"
616
+ },
617
+ {
618
+ "kind": "field",
619
+ "name": "errors",
620
+ "type": {
621
+ "text": "string[]"
622
+ },
623
+ "optional": true,
624
+ "description": "Error messages array (supports multiple validation errors)",
625
+ "default": "() => []"
626
+ },
627
+ {
628
+ "kind": "field",
629
+ "name": "instructions",
630
+ "type": {
631
+ "text": "string"
632
+ },
633
+ "optional": true,
634
+ "description": "Instructions",
635
+ "default": "\"\""
636
+ },
637
+ {
638
+ "kind": "field",
639
+ "name": "name",
640
+ "type": {
641
+ "text": "string"
642
+ },
643
+ "optional": true,
644
+ "description": "Name for form registration",
645
+ "default": "undefined"
646
+ },
647
+ {
648
+ "kind": "field",
649
+ "name": "modelValue",
650
+ "type": {
651
+ "text": "string | null"
652
+ },
653
+ "optional": true
654
+ }
655
+ ],
656
+ "events": []
657
+ }
658
+ ]
659
+ },
660
+ {
661
+ "kind": "javascript-module",
662
+ "path": "dist/web-components.js",
663
+ "declarations": [
664
+ {
665
+ "kind": "custom-element",
666
+ "name": "GFormElement",
667
+ "tagName": "g-form",
668
+ "members": [
669
+ {
670
+ "kind": "field",
671
+ "name": "action",
672
+ "type": {
673
+ "text": "string"
674
+ },
675
+ "optional": true,
676
+ "description": "Action URL (optional, for native form submission)",
677
+ "default": "undefined"
678
+ },
679
+ {
680
+ "kind": "field",
681
+ "name": "method",
682
+ "type": {
683
+ "text": "string"
684
+ },
685
+ "optional": true,
686
+ "description": "HTTP method (optional, for native form submission)",
687
+ "default": "\"post\""
688
+ },
689
+ {
690
+ "kind": "field",
691
+ "name": "modelValue",
692
+ "type": {
693
+ "text": "Record<string, any>"
694
+ },
695
+ "optional": true
696
+ }
697
+ ],
698
+ "events": [
699
+ {
700
+ "name": "submit",
701
+ "type": {
702
+ "text": "CustomEvent"
703
+ }
704
+ }
705
+ ]
706
+ }
707
+ ]
708
+ },
709
+ {
710
+ "kind": "javascript-module",
711
+ "path": "dist/web-components.js",
712
+ "declarations": [
713
+ {
714
+ "kind": "custom-element",
715
+ "name": "GHamburgerMenuElement",
716
+ "tagName": "g-hamburger-menu",
717
+ "members": [
718
+ {
719
+ "kind": "field",
720
+ "name": "label",
721
+ "type": {
722
+ "text": "string"
723
+ },
724
+ "optional": true,
725
+ "description": "Accessible label",
726
+ "default": "\"Main Navigation\""
727
+ }
728
+ ],
729
+ "events": [
730
+ {
731
+ "name": "toggle",
732
+ "type": {
733
+ "text": "CustomEvent"
734
+ }
735
+ }
736
+ ]
737
+ }
738
+ ]
739
+ },
740
+ {
741
+ "kind": "javascript-module",
742
+ "path": "dist/web-components.js",
743
+ "declarations": [
744
+ {
745
+ "kind": "custom-element",
746
+ "name": "GHistoryScrollerElement",
747
+ "tagName": "g-history-scroller",
748
+ "members": [
749
+ {
750
+ "kind": "field",
751
+ "name": "label",
752
+ "type": {
753
+ "text": "string"
754
+ },
755
+ "optional": true,
756
+ "description": "Accessible label"
757
+ },
758
+ {
759
+ "kind": "field",
760
+ "name": "entries",
761
+ "type": {
762
+ "text": "{ id: string | number }[]"
763
+ },
764
+ "optional": true,
765
+ "description": "History entries passed to default slot",
766
+ "default": "() => []"
767
+ }
768
+ ],
769
+ "events": []
770
+ }
771
+ ]
772
+ },
773
+ {
774
+ "kind": "javascript-module",
775
+ "path": "dist/web-components.js",
776
+ "declarations": [
777
+ {
778
+ "kind": "custom-element",
779
+ "name": "GModalElement",
780
+ "tagName": "g-modal",
781
+ "members": [
782
+ {
783
+ "kind": "field",
784
+ "name": "label",
785
+ "type": {
786
+ "text": "string"
787
+ },
788
+ "optional": false,
789
+ "description": "Modal label"
790
+ },
791
+ {
792
+ "kind": "field",
793
+ "name": "describedby",
794
+ "type": {
795
+ "text": "string"
796
+ },
797
+ "optional": true,
798
+ "description": "ID for aria-describedby",
799
+ "default": "undefined"
800
+ },
801
+ {
802
+ "kind": "field",
803
+ "name": "hiddenLabel",
804
+ "type": {
805
+ "text": "boolean"
806
+ },
807
+ "optional": true,
808
+ "description": "Hide label The label is still used as the `aria-label` for accessibility, but it will not be visible in the UI.",
809
+ "default": "false"
810
+ },
811
+ {
812
+ "kind": "field",
813
+ "name": "size",
814
+ "type": {
815
+ "text": "\"small\" | \"medium\" | \"large\" | \"full\""
816
+ },
817
+ "optional": true,
818
+ "description": "Modal size",
819
+ "default": "\"medium\""
820
+ },
821
+ {
822
+ "kind": "field",
823
+ "name": "classes",
824
+ "type": {
825
+ "text": "string | string[]"
826
+ },
827
+ "optional": true,
828
+ "description": "Modal classes"
829
+ }
830
+ ],
831
+ "events": [
832
+ {
833
+ "name": "close",
834
+ "type": {
835
+ "text": "CustomEvent"
836
+ }
837
+ }
838
+ ]
839
+ }
840
+ ]
841
+ },
842
+ {
843
+ "kind": "javascript-module",
844
+ "path": "dist/web-components.js",
845
+ "declarations": [
846
+ {
847
+ "kind": "custom-element",
848
+ "name": "GOverlayElement",
849
+ "tagName": "g-overlay",
850
+ "members": [],
851
+ "events": []
852
+ }
853
+ ]
854
+ },
855
+ {
856
+ "kind": "javascript-module",
857
+ "path": "dist/web-components.js",
858
+ "declarations": [
859
+ {
860
+ "kind": "custom-element",
861
+ "name": "GPopoverElement",
862
+ "tagName": "g-popover",
863
+ "members": [
864
+ {
865
+ "kind": "field",
866
+ "name": "minimal",
867
+ "type": {
868
+ "text": "boolean"
869
+ },
870
+ "optional": true,
871
+ "description": "Render without padding",
872
+ "default": "false"
873
+ },
874
+ {
875
+ "kind": "field",
876
+ "name": "modelValue",
877
+ "type": {
878
+ "text": "boolean"
879
+ },
880
+ "optional": true
881
+ }
882
+ ],
883
+ "events": [
884
+ {
885
+ "name": "show",
886
+ "type": {
887
+ "text": "CustomEvent"
888
+ }
889
+ },
890
+ {
891
+ "name": "hide",
892
+ "type": {
893
+ "text": "CustomEvent"
894
+ }
895
+ }
896
+ ]
897
+ }
898
+ ]
899
+ },
900
+ {
901
+ "kind": "javascript-module",
902
+ "path": "dist/web-components.js",
903
+ "declarations": [
904
+ {
905
+ "kind": "custom-element",
906
+ "name": "GProgressElement",
907
+ "tagName": "g-progress",
908
+ "members": [
909
+ {
910
+ "kind": "field",
911
+ "name": "label",
912
+ "type": {
913
+ "text": "string"
914
+ },
915
+ "optional": true,
916
+ "description": "Accessible label",
917
+ "default": "\"Loading\""
918
+ },
919
+ {
920
+ "kind": "field",
921
+ "name": "value",
922
+ "type": {
923
+ "text": "number"
924
+ },
925
+ "optional": true,
926
+ "description": "Progress 1-100 or blank",
927
+ "default": "undefined"
928
+ },
929
+ {
930
+ "kind": "field",
931
+ "name": "size",
932
+ "type": {
933
+ "text": "\"tiny\" | \"small\" | \"medium\" | \"large\""
934
+ },
935
+ "optional": true,
936
+ "description": "Progress circle size",
937
+ "default": "\"medium\""
938
+ }
939
+ ],
940
+ "events": []
941
+ }
942
+ ]
943
+ },
944
+ {
945
+ "kind": "javascript-module",
946
+ "path": "dist/web-components.js",
947
+ "declarations": [
948
+ {
949
+ "kind": "custom-element",
950
+ "name": "GSearchElement",
951
+ "tagName": "g-search",
952
+ "members": [
953
+ {
954
+ "kind": "field",
955
+ "name": "results",
956
+ "type": {
957
+ "text": "GSearchGroup<{ id: string | number; title: string; }>[] | { id: string | number; title: string; }[]"
958
+ },
959
+ "optional": false
960
+ },
961
+ {
962
+ "kind": "field",
963
+ "name": "placeholder",
964
+ "type": {
965
+ "text": "string"
966
+ },
967
+ "optional": true,
968
+ "description": "Placeholder",
969
+ "default": "\"Search...\""
970
+ },
971
+ {
972
+ "kind": "field",
973
+ "name": "label",
974
+ "type": {
975
+ "text": "string"
976
+ },
977
+ "optional": true,
978
+ "description": "Accessible label",
979
+ "default": "\"Search\""
980
+ },
981
+ {
982
+ "kind": "field",
983
+ "name": "auto",
984
+ "type": {
985
+ "text": "boolean"
986
+ },
987
+ "optional": true,
988
+ "description": "Automatic search",
989
+ "default": "true"
990
+ },
991
+ {
992
+ "kind": "field",
993
+ "name": "loading",
994
+ "type": {
995
+ "text": "boolean"
996
+ },
997
+ "optional": true,
998
+ "description": "Show search loading indicator"
999
+ },
1000
+ {
1001
+ "kind": "field",
1002
+ "name": "modelValue",
1003
+ "type": {
1004
+ "text": "string | null"
1005
+ },
1006
+ "optional": true
1007
+ }
1008
+ ],
1009
+ "events": [
1010
+ {
1011
+ "name": "select",
1012
+ "type": {
1013
+ "text": "CustomEvent"
1014
+ }
1015
+ },
1016
+ {
1017
+ "name": "submit",
1018
+ "type": {
1019
+ "text": "CustomEvent"
1020
+ }
1021
+ }
1022
+ ]
1023
+ }
1024
+ ]
1025
+ },
1026
+ {
1027
+ "kind": "javascript-module",
1028
+ "path": "dist/web-components.js",
1029
+ "declarations": [
1030
+ {
1031
+ "kind": "custom-element",
1032
+ "name": "GSelectElement",
1033
+ "tagName": "g-select",
1034
+ "members": [
1035
+ {
1036
+ "kind": "field",
1037
+ "name": "options",
1038
+ "type": {
1039
+ "text": "Array<string | OptionType>"
1040
+ },
1041
+ "optional": false,
1042
+ "description": "List of options to choose from"
1043
+ },
1044
+ {
1045
+ "kind": "field",
1046
+ "name": "label",
1047
+ "type": {
1048
+ "text": "string"
1049
+ },
1050
+ "optional": false,
1051
+ "description": "Accessible label"
1052
+ },
1053
+ {
1054
+ "kind": "field",
1055
+ "name": "hiddenLabel",
1056
+ "type": {
1057
+ "text": "boolean"
1058
+ },
1059
+ "optional": true,
1060
+ "description": "Hide the label visually"
1061
+ },
1062
+ {
1063
+ "kind": "field",
1064
+ "name": "placeholder",
1065
+ "type": {
1066
+ "text": "string"
1067
+ },
1068
+ "optional": true,
1069
+ "description": "Placeholder Only used if the component is searchable."
1070
+ },
1071
+ {
1072
+ "kind": "field",
1073
+ "name": "disabled",
1074
+ "type": {
1075
+ "text": "boolean"
1076
+ },
1077
+ "optional": true,
1078
+ "description": "Disabled",
1079
+ "default": "false"
1080
+ },
1081
+ {
1082
+ "kind": "field",
1083
+ "name": "name",
1084
+ "type": {
1085
+ "text": "string"
1086
+ },
1087
+ "optional": true,
1088
+ "description": "Name for form registration",
1089
+ "default": "undefined"
1090
+ },
1091
+ {
1092
+ "kind": "field",
1093
+ "name": "searchable",
1094
+ "type": {
1095
+ "text": "boolean"
1096
+ },
1097
+ "optional": true,
1098
+ "description": "Searchable",
1099
+ "default": "false"
1100
+ },
1101
+ {
1102
+ "kind": "field",
1103
+ "name": "clearButton",
1104
+ "type": {
1105
+ "text": "boolean"
1106
+ },
1107
+ "optional": true,
1108
+ "description": "Show clear button"
1109
+ },
1110
+ {
1111
+ "kind": "field",
1112
+ "name": "compact",
1113
+ "type": {
1114
+ "text": "boolean"
1115
+ },
1116
+ "optional": true,
1117
+ "description": "Compact",
1118
+ "default": "false"
1119
+ },
1120
+ {
1121
+ "kind": "field",
1122
+ "name": "errors",
1123
+ "type": {
1124
+ "text": "string[]"
1125
+ },
1126
+ "optional": true,
1127
+ "description": "Error messages array (supports multiple validation errors)",
1128
+ "default": "() => []"
1129
+ },
1130
+ {
1131
+ "kind": "field",
1132
+ "name": "modelValue",
1133
+ "type": {
1134
+ "text": "string | number | null"
1135
+ },
1136
+ "optional": true
1137
+ }
1138
+ ],
1139
+ "events": [
1140
+ {
1141
+ "name": "change",
1142
+ "type": {
1143
+ "text": "CustomEvent"
1144
+ }
1145
+ }
1146
+ ]
1147
+ }
1148
+ ]
1149
+ },
1150
+ {
1151
+ "kind": "javascript-module",
1152
+ "path": "dist/web-components.js",
1153
+ "declarations": [
1154
+ {
1155
+ "kind": "custom-element",
1156
+ "name": "GSelectButtonElement",
1157
+ "tagName": "g-select-button",
1158
+ "members": [
1159
+ {
1160
+ "kind": "field",
1161
+ "name": "options",
1162
+ "type": {
1163
+ "text": "Array<string | OptionType>"
1164
+ },
1165
+ "optional": false,
1166
+ "description": "List of options to select from"
1167
+ },
1168
+ {
1169
+ "kind": "field",
1170
+ "name": "label",
1171
+ "type": {
1172
+ "text": "string"
1173
+ },
1174
+ "optional": false,
1175
+ "description": "Accessible label"
1176
+ },
1177
+ {
1178
+ "kind": "field",
1179
+ "name": "size",
1180
+ "type": {
1181
+ "text": "\"small\" | \"medium\" | \"large\""
1182
+ },
1183
+ "optional": true,
1184
+ "description": "Size",
1185
+ "default": "\"medium\""
1186
+ },
1187
+ {
1188
+ "kind": "field",
1189
+ "name": "name",
1190
+ "type": {
1191
+ "text": "string"
1192
+ },
1193
+ "optional": true,
1194
+ "description": "Name for form registration",
1195
+ "default": "undefined"
1196
+ },
1197
+ {
1198
+ "kind": "field",
1199
+ "name": "disabled",
1200
+ "type": {
1201
+ "text": "boolean"
1202
+ },
1203
+ "optional": true,
1204
+ "description": "Disabled",
1205
+ "default": "false"
1206
+ },
1207
+ {
1208
+ "kind": "field",
1209
+ "name": "errors",
1210
+ "type": {
1211
+ "text": "string[]"
1212
+ },
1213
+ "optional": true,
1214
+ "description": "Error messages array (supports multiple validation errors)",
1215
+ "default": "() => []"
1216
+ },
1217
+ {
1218
+ "kind": "field",
1219
+ "name": "modelValue",
1220
+ "type": {
1221
+ "text": "string | number"
1222
+ },
1223
+ "optional": true
1224
+ }
1225
+ ],
1226
+ "events": [
1227
+ {
1228
+ "name": "change",
1229
+ "type": {
1230
+ "text": "CustomEvent"
1231
+ }
1232
+ }
1233
+ ]
1234
+ }
1235
+ ]
1236
+ },
1237
+ {
1238
+ "kind": "javascript-module",
1239
+ "path": "dist/web-components.js",
1240
+ "declarations": [
1241
+ {
1242
+ "kind": "custom-element",
1243
+ "name": "GSidebarElement",
1244
+ "tagName": "g-sidebar",
1245
+ "members": [
1246
+ {
1247
+ "kind": "field",
1248
+ "name": "backgroundColor",
1249
+ "type": {
1250
+ "text": "string"
1251
+ },
1252
+ "optional": true,
1253
+ "description": "Custom background color",
1254
+ "default": "\"\""
1255
+ },
1256
+ {
1257
+ "kind": "field",
1258
+ "name": "backgroundImage",
1259
+ "type": {
1260
+ "text": "string"
1261
+ },
1262
+ "optional": true,
1263
+ "description": "Custom background image",
1264
+ "default": "\"none\""
1265
+ },
1266
+ {
1267
+ "kind": "field",
1268
+ "name": "theme",
1269
+ "type": {
1270
+ "text": "\"light\" | \"dark\""
1271
+ },
1272
+ "optional": true,
1273
+ "description": "Sidebar theme",
1274
+ "default": "\"dark\""
1275
+ },
1276
+ {
1277
+ "kind": "field",
1278
+ "name": "topOffset",
1279
+ "type": {
1280
+ "text": "string"
1281
+ },
1282
+ "optional": true,
1283
+ "description": "Offset from the top of the viewport",
1284
+ "default": "\"\""
1285
+ },
1286
+ {
1287
+ "kind": "field",
1288
+ "name": "topOffsetVar",
1289
+ "type": {
1290
+ "text": "string"
1291
+ },
1292
+ "optional": true,
1293
+ "description": "Top offset variable to use instead of topOffset",
1294
+ "default": "\"\""
1295
+ },
1296
+ {
1297
+ "kind": "field",
1298
+ "name": "width",
1299
+ "type": {
1300
+ "text": "string"
1301
+ },
1302
+ "optional": true,
1303
+ "description": "Width Width of the sidebar",
1304
+ "default": "\"300px\""
1305
+ }
1306
+ ],
1307
+ "events": []
1308
+ }
1309
+ ]
1310
+ },
1311
+ {
1312
+ "kind": "javascript-module",
1313
+ "path": "dist/web-components.js",
1314
+ "declarations": [
1315
+ {
1316
+ "kind": "custom-element",
1317
+ "name": "GSidebarMenuElement",
1318
+ "tagName": "g-sidebar-menu",
1319
+ "members": [
1320
+ {
1321
+ "kind": "field",
1322
+ "name": "title",
1323
+ "type": {
1324
+ "text": "string"
1325
+ },
1326
+ "optional": true,
1327
+ "description": "Title and accessible name"
1328
+ },
1329
+ {
1330
+ "kind": "field",
1331
+ "name": "items",
1332
+ "type": {
1333
+ "text": "MenuItem[]"
1334
+ },
1335
+ "optional": false,
1336
+ "description": "Items for the menu"
1337
+ },
1338
+ {
1339
+ "kind": "field",
1340
+ "name": "offset",
1341
+ "type": {
1342
+ "text": "number"
1343
+ },
1344
+ "optional": true,
1345
+ "description": "Offset for tracking active position to account for toolbars",
1346
+ "default": "70"
1347
+ },
1348
+ {
1349
+ "kind": "field",
1350
+ "name": "spy",
1351
+ "type": {
1352
+ "text": "boolean"
1353
+ },
1354
+ "optional": true,
1355
+ "description": "Track active position for in-page links",
1356
+ "default": "true"
1357
+ },
1358
+ {
1359
+ "kind": "field",
1360
+ "name": "theme",
1361
+ "type": {
1362
+ "text": "\"light\" | \"dark\""
1363
+ },
1364
+ "optional": true,
1365
+ "description": "Sidebar theme",
1366
+ "default": "\"light\""
1367
+ },
1368
+ {
1369
+ "kind": "field",
1370
+ "name": "compact",
1371
+ "type": {
1372
+ "text": "boolean"
1373
+ },
1374
+ "optional": true,
1375
+ "description": "Use compact layout",
1376
+ "default": "false"
1377
+ },
1378
+ {
1379
+ "kind": "field",
1380
+ "name": "modelValue",
1381
+ "type": {
1382
+ "text": "string | null"
1383
+ },
1384
+ "optional": true
1385
+ }
1386
+ ],
1387
+ "events": []
1388
+ }
1389
+ ]
1390
+ },
1391
+ {
1392
+ "kind": "javascript-module",
1393
+ "path": "dist/web-components.js",
1394
+ "declarations": [
1395
+ {
1396
+ "kind": "custom-element",
1397
+ "name": "GSubmitButtonElement",
1398
+ "tagName": "g-submit-button",
1399
+ "members": [
1400
+ {
1401
+ "kind": "field",
1402
+ "name": "disabled",
1403
+ "type": {
1404
+ "text": "boolean"
1405
+ },
1406
+ "optional": true,
1407
+ "description": "Disabled state",
1408
+ "default": "false"
1409
+ },
1410
+ {
1411
+ "kind": "field",
1412
+ "name": "loadingText",
1413
+ "type": {
1414
+ "text": "string"
1415
+ },
1416
+ "optional": true,
1417
+ "description": "Loading text to show during submission",
1418
+ "default": "\"Submitting...\""
1419
+ },
1420
+ {
1421
+ "kind": "field",
1422
+ "name": "variant",
1423
+ "type": {
1424
+ "text": "\"primary\" | \"secondary\" | \"danger\""
1425
+ },
1426
+ "optional": true,
1427
+ "description": "Variant",
1428
+ "default": "\"primary\""
1429
+ }
1430
+ ],
1431
+ "events": []
1432
+ }
1433
+ ]
1434
+ },
1435
+ {
1436
+ "kind": "javascript-module",
1437
+ "path": "dist/web-components.js",
1438
+ "declarations": [
1439
+ {
1440
+ "kind": "custom-element",
1441
+ "name": "GTableElement",
1442
+ "tagName": "g-table",
1443
+ "members": [
1444
+ {
1445
+ "kind": "field",
1446
+ "name": "label",
1447
+ "type": {
1448
+ "text": "string"
1449
+ },
1450
+ "optional": false,
1451
+ "description": "Accessible label"
1452
+ },
1453
+ {
1454
+ "kind": "field",
1455
+ "name": "data",
1456
+ "type": {
1457
+ "text": "TableRow[]"
1458
+ },
1459
+ "optional": false,
1460
+ "description": "The data to display in the table The data should be an array of objects, each representing a row in the table. Each object should have a unique `key` property that can be used to identify the row."
1461
+ },
1462
+ {
1463
+ "kind": "field",
1464
+ "name": "columns",
1465
+ "type": {
1466
+ "text": "TableColumn<TableRow>[]"
1467
+ },
1468
+ "optional": false,
1469
+ "description": "The columns to display in the table Each column's key needs to match the key of a property in the data objects, which determines the data to display in that column by default. You can also provide a custom display function to customize the data display."
1470
+ },
1471
+ {
1472
+ "kind": "field",
1473
+ "name": "resultCount",
1474
+ "type": {
1475
+ "text": "number"
1476
+ },
1477
+ "optional": true,
1478
+ "description": "Result count for all of the possible results (not just the current page) This is shown in the toolbar."
1479
+ },
1480
+ {
1481
+ "kind": "field",
1482
+ "name": "groupBy",
1483
+ "type": {
1484
+ "text": "keyof TableRow"
1485
+ },
1486
+ "optional": true,
1487
+ "description": "A column key to group the data by If provided, the `groupRender` render function will be used to render the group header."
1488
+ },
1489
+ {
1490
+ "kind": "field",
1491
+ "name": "groupRender",
1492
+ "type": {
1493
+ "text": "(groupValue: any, row: TableRow) => VNode"
1494
+ },
1495
+ "optional": true,
1496
+ "description": "A render function to customize the display of the group header."
1497
+ },
1498
+ {
1499
+ "kind": "field",
1500
+ "name": "filtering",
1501
+ "type": {
1502
+ "text": "UseFilteringReturn<any>"
1503
+ },
1504
+ "optional": true,
1505
+ "description": "Filtering object created with useFiltering()"
1506
+ },
1507
+ {
1508
+ "kind": "field",
1509
+ "name": "rowClickable",
1510
+ "type": {
1511
+ "text": "boolean"
1512
+ },
1513
+ "optional": true,
1514
+ "description": "Make the table rows clickable"
1515
+ },
1516
+ {
1517
+ "kind": "field",
1518
+ "name": "rowClass",
1519
+ "type": {
1520
+ "text": "(row: TableRow) => string | string[] | undefined"
1521
+ },
1522
+ "optional": true,
1523
+ "description": "A function to customize the classes applied to table rows"
1524
+ },
1525
+ {
1526
+ "kind": "field",
1527
+ "name": "startIndex",
1528
+ "type": {
1529
+ "text": "number"
1530
+ },
1531
+ "optional": false,
1532
+ "description": "The starting index for this page This is used for the ARIA rowindex attribute, and is VERY important to not get wrong."
1533
+ },
1534
+ {
1535
+ "kind": "field",
1536
+ "name": "bulkSelectionEnabled",
1537
+ "type": {
1538
+ "text": "boolean"
1539
+ },
1540
+ "optional": true,
1541
+ "description": "Enable bulk selection with checkboxes",
1542
+ "default": "false"
1543
+ },
1544
+ {
1545
+ "kind": "field",
1546
+ "name": "bulkActions",
1547
+ "type": {
1548
+ "text": "BulkAction[]"
1549
+ },
1550
+ "optional": true,
1551
+ "description": "Array of actions to show in the sticky toolbar when rows are selected",
1552
+ "default": "() => []"
1553
+ },
1554
+ {
1555
+ "kind": "field",
1556
+ "name": "changeTracker",
1557
+ "type": {
1558
+ "text": "UseTableChangesReturn<TableRow>"
1559
+ },
1560
+ "optional": true,
1561
+ "description": "Optional change tracker for editable tables. Pass a composable from useTableChanges() to track user edits."
1562
+ },
1563
+ {
1564
+ "kind": "field",
1565
+ "name": "showPagination",
1566
+ "type": {
1567
+ "text": "boolean"
1568
+ },
1569
+ "optional": true,
1570
+ "description": "Explicitly show the pagination bar even if the slot is empty",
1571
+ "default": "false"
1572
+ },
1573
+ {
1574
+ "kind": "field",
1575
+ "name": "sortField",
1576
+ "type": {
1577
+ "text": "keyof TableRow"
1578
+ },
1579
+ "optional": true
1580
+ },
1581
+ {
1582
+ "kind": "field",
1583
+ "name": "sortOrder",
1584
+ "type": {
1585
+ "text": "1 | -1"
1586
+ },
1587
+ "optional": true
1588
+ },
1589
+ {
1590
+ "kind": "field",
1591
+ "name": "filter",
1592
+ "type": {
1593
+ "text": "Partial<Record<keyof TableRow, any>>"
1594
+ },
1595
+ "optional": true
1596
+ },
1597
+ {
1598
+ "kind": "field",
1599
+ "name": "selectedRows",
1600
+ "type": {
1601
+ "text": "string[]"
1602
+ },
1603
+ "optional": true
1604
+ }
1605
+ ],
1606
+ "events": [
1607
+ {
1608
+ "name": "row-click",
1609
+ "type": {
1610
+ "text": "CustomEvent"
1611
+ }
1612
+ },
1613
+ {
1614
+ "name": "bulk-action",
1615
+ "type": {
1616
+ "text": "CustomEvent"
1617
+ }
1618
+ },
1619
+ {
1620
+ "name": "cell-change",
1621
+ "type": {
1622
+ "text": "CustomEvent"
1623
+ }
1624
+ }
1625
+ ]
1626
+ }
1627
+ ]
1628
+ },
1629
+ {
1630
+ "kind": "javascript-module",
1631
+ "path": "dist/web-components.js",
1632
+ "declarations": [
1633
+ {
1634
+ "kind": "custom-element",
1635
+ "name": "GTableBodyElement",
1636
+ "tagName": "g-table-body",
1637
+ "members": [
1638
+ {
1639
+ "kind": "field",
1640
+ "name": "data",
1641
+ "type": {
1642
+ "text": "TableRow[]"
1643
+ },
1644
+ "optional": false
1645
+ },
1646
+ {
1647
+ "kind": "field",
1648
+ "name": "groupBy",
1649
+ "type": {
1650
+ "text": "keyof TableRow"
1651
+ },
1652
+ "optional": true
1653
+ },
1654
+ {
1655
+ "kind": "field",
1656
+ "name": "columns",
1657
+ "type": {
1658
+ "text": "TableColumn<TableRow>[]"
1659
+ },
1660
+ "optional": false
1661
+ },
1662
+ {
1663
+ "kind": "field",
1664
+ "name": "groupRender",
1665
+ "type": {
1666
+ "text": "(groupValue: any, row: TableRow) => VNode"
1667
+ },
1668
+ "optional": true
1669
+ },
1670
+ {
1671
+ "kind": "field",
1672
+ "name": "rowClickable",
1673
+ "type": {
1674
+ "text": "boolean"
1675
+ },
1676
+ "optional": true
1677
+ },
1678
+ {
1679
+ "kind": "field",
1680
+ "name": "rowClass",
1681
+ "type": {
1682
+ "text": "(row: TableRow) => string | string[] | undefined"
1683
+ },
1684
+ "optional": true
1685
+ },
1686
+ {
1687
+ "kind": "field",
1688
+ "name": "startIndex",
1689
+ "type": {
1690
+ "text": "number"
1691
+ },
1692
+ "optional": false
1693
+ },
1694
+ {
1695
+ "kind": "field",
1696
+ "name": "bulkSelectionEnabled",
1697
+ "type": {
1698
+ "text": "boolean"
1699
+ },
1700
+ "optional": true
1701
+ },
1702
+ {
1703
+ "kind": "field",
1704
+ "name": "selectedRows",
1705
+ "type": {
1706
+ "text": "string[]"
1707
+ },
1708
+ "optional": true
1709
+ },
1710
+ {
1711
+ "kind": "field",
1712
+ "name": "tableId",
1713
+ "type": {
1714
+ "text": "string"
1715
+ },
1716
+ "optional": false
1717
+ },
1718
+ {
1719
+ "kind": "field",
1720
+ "name": "changeTracker",
1721
+ "type": {
1722
+ "text": "UseTableChangesReturn<TableRow>"
1723
+ },
1724
+ "optional": true
1725
+ }
1726
+ ],
1727
+ "events": [
1728
+ {
1729
+ "name": "row-click",
1730
+ "type": {
1731
+ "text": "CustomEvent"
1732
+ }
1733
+ },
1734
+ {
1735
+ "name": "toggle-row",
1736
+ "type": {
1737
+ "text": "CustomEvent"
1738
+ }
1739
+ },
1740
+ {
1741
+ "name": "cell-change",
1742
+ "type": {
1743
+ "text": "CustomEvent"
1744
+ }
1745
+ }
1746
+ ]
1747
+ }
1748
+ ]
1749
+ },
1750
+ {
1751
+ "kind": "javascript-module",
1752
+ "path": "dist/web-components.js",
1753
+ "declarations": [
1754
+ {
1755
+ "kind": "custom-element",
1756
+ "name": "GTablePaginationElement",
1757
+ "tagName": "g-table-pagination",
1758
+ "members": [
1759
+ {
1760
+ "kind": "field",
1761
+ "name": "start",
1762
+ "type": {
1763
+ "text": "number"
1764
+ },
1765
+ "optional": true
1766
+ },
1767
+ {
1768
+ "kind": "field",
1769
+ "name": "pageSize",
1770
+ "type": {
1771
+ "text": "number"
1772
+ },
1773
+ "optional": true
1774
+ }
1775
+ ],
1776
+ "events": []
1777
+ }
1778
+ ]
1779
+ },
1780
+ {
1781
+ "kind": "javascript-module",
1782
+ "path": "dist/web-components.js",
1783
+ "declarations": [
1784
+ {
1785
+ "kind": "custom-element",
1786
+ "name": "GTermSelectorElement",
1787
+ "tagName": "g-term-selector",
1788
+ "members": [
1789
+ {
1790
+ "kind": "field",
1791
+ "name": "title",
1792
+ "type": {
1793
+ "text": "string"
1794
+ },
1795
+ "optional": true,
1796
+ "description": "Title for the popover.",
1797
+ "default": "\"Period Selection\""
1798
+ },
1799
+ {
1800
+ "kind": "field",
1801
+ "name": "yearLabel",
1802
+ "type": {
1803
+ "text": "string"
1804
+ },
1805
+ "optional": true,
1806
+ "description": "Label for year select."
1807
+ },
1808
+ {
1809
+ "kind": "field",
1810
+ "name": "periodLabel",
1811
+ "type": {
1812
+ "text": "string"
1813
+ },
1814
+ "optional": true,
1815
+ "description": "Label for period select."
1816
+ },
1817
+ {
1818
+ "kind": "field",
1819
+ "name": "termYears",
1820
+ "type": {
1821
+ "text": "string[]"
1822
+ },
1823
+ "optional": true,
1824
+ "description": "List of possible term years",
1825
+ "default": "() => [\"2026\"]"
1826
+ },
1827
+ {
1828
+ "kind": "field",
1829
+ "name": "termNames",
1830
+ "type": {
1831
+ "text": "string[]"
1832
+ },
1833
+ "optional": true,
1834
+ "description": "List of possible term names",
1835
+ "default": "() => [\"Spring\", \"Summer\", \"Fall\"]"
1836
+ },
1837
+ {
1838
+ "kind": "field",
1839
+ "name": "modelValue",
1840
+ "type": {
1841
+ "text": "{year: string, name: string}"
1842
+ },
1843
+ "optional": true
1844
+ }
1845
+ ],
1846
+ "events": []
1847
+ }
1848
+ ]
1849
+ },
1850
+ {
1851
+ "kind": "javascript-module",
1852
+ "path": "dist/web-components.js",
1853
+ "declarations": [
1854
+ {
1855
+ "kind": "custom-element",
1856
+ "name": "GTermSelectorControlElement",
1857
+ "tagName": "g-term-selector-control",
1858
+ "members": [
1859
+ {
1860
+ "kind": "field",
1861
+ "name": "termYears",
1862
+ "type": {
1863
+ "text": "string[]"
1864
+ },
1865
+ "optional": true,
1866
+ "description": "List of possible term years. Defaults to [\"2026\"].",
1867
+ "default": "() => [\"2026\"]"
1868
+ },
1869
+ {
1870
+ "kind": "field",
1871
+ "name": "termNames",
1872
+ "type": {
1873
+ "text": "string[]"
1874
+ },
1875
+ "optional": true,
1876
+ "description": "List of possible term names. Defaults to [\"Spring\", \"Summer\", \"Fall\"].",
1877
+ "default": "() => [\"Spring\", \"Summer\", \"Fall\"]"
1878
+ },
1879
+ {
1880
+ "kind": "field",
1881
+ "name": "yearLabel",
1882
+ "type": {
1883
+ "text": "string"
1884
+ },
1885
+ "optional": true,
1886
+ "description": "Label for year select. Defaults to \"Select Year\".",
1887
+ "default": "\"Select Year\""
1888
+ },
1889
+ {
1890
+ "kind": "field",
1891
+ "name": "periodLabel",
1892
+ "type": {
1893
+ "text": "string"
1894
+ },
1895
+ "optional": true,
1896
+ "description": "Label for period select. Defaults to \"Term\".",
1897
+ "default": "\"Term\""
1898
+ },
1899
+ {
1900
+ "kind": "field",
1901
+ "name": "modelValue",
1902
+ "type": {
1903
+ "text": "{year: string, name: string}"
1904
+ },
1905
+ "optional": true
1906
+ }
1907
+ ],
1908
+ "events": []
1909
+ }
1910
+ ]
1911
+ },
1912
+ {
1913
+ "kind": "javascript-module",
1914
+ "path": "dist/web-components.js",
1915
+ "declarations": [
1916
+ {
1917
+ "kind": "custom-element",
1918
+ "name": "GTextInputElement",
1919
+ "tagName": "g-text-input",
1920
+ "members": [
1921
+ {
1922
+ "kind": "field",
1923
+ "name": "label",
1924
+ "type": {
1925
+ "text": "string"
1926
+ },
1927
+ "optional": true,
1928
+ "description": "Label",
1929
+ "default": "undefined"
1930
+ },
1931
+ {
1932
+ "kind": "field",
1933
+ "name": "placeholder",
1934
+ "type": {
1935
+ "text": "string"
1936
+ },
1937
+ "optional": true,
1938
+ "description": "Placeholder text",
1939
+ "default": "\"\""
1940
+ },
1941
+ {
1942
+ "kind": "field",
1943
+ "name": "disabled",
1944
+ "type": {
1945
+ "text": "boolean"
1946
+ },
1947
+ "optional": true,
1948
+ "description": "Disabled",
1949
+ "default": "false"
1950
+ },
1951
+ {
1952
+ "kind": "field",
1953
+ "name": "errors",
1954
+ "type": {
1955
+ "text": "string[]"
1956
+ },
1957
+ "optional": true,
1958
+ "description": "Error messages array (supports multiple validation errors)",
1959
+ "default": "() => []"
1960
+ },
1961
+ {
1962
+ "kind": "field",
1963
+ "name": "instructions",
1964
+ "type": {
1965
+ "text": "string"
1966
+ },
1967
+ "optional": true,
1968
+ "description": "Instructions",
1969
+ "default": "\"\""
1970
+ },
1971
+ {
1972
+ "kind": "field",
1973
+ "name": "prefix",
1974
+ "type": {
1975
+ "text": "string"
1976
+ },
1977
+ "optional": true,
1978
+ "description": "Prefix text (displayed before input)",
1979
+ "default": "\"\""
1980
+ },
1981
+ {
1982
+ "kind": "field",
1983
+ "name": "suffix",
1984
+ "type": {
1985
+ "text": "string"
1986
+ },
1987
+ "optional": true,
1988
+ "description": "Suffix text (displayed after input)",
1989
+ "default": "\"\""
1990
+ },
1991
+ {
1992
+ "kind": "field",
1993
+ "name": "debounce",
1994
+ "type": {
1995
+ "text": "number"
1996
+ },
1997
+ "optional": true,
1998
+ "description": "Debounce in milliseconds",
1999
+ "default": "100"
2000
+ },
2001
+ {
2002
+ "kind": "field",
2003
+ "name": "name",
2004
+ "type": {
2005
+ "text": "string"
2006
+ },
2007
+ "optional": true,
2008
+ "description": "Name for form registration",
2009
+ "default": "undefined"
2010
+ },
2011
+ {
2012
+ "kind": "field",
2013
+ "name": "modelValue",
2014
+ "type": {
2015
+ "text": "string | null"
2016
+ },
2017
+ "optional": true
2018
+ }
2019
+ ],
2020
+ "events": [
2021
+ {
2022
+ "name": "change",
2023
+ "type": {
2024
+ "text": "CustomEvent"
2025
+ }
2026
+ }
2027
+ ]
2028
+ }
2029
+ ]
2030
+ },
2031
+ {
2032
+ "kind": "javascript-module",
2033
+ "path": "dist/web-components.js",
2034
+ "declarations": [
2035
+ {
2036
+ "kind": "custom-element",
2037
+ "name": "GThreeWayToggleElement",
2038
+ "tagName": "g-three-way-toggle",
2039
+ "members": [
2040
+ {
2041
+ "kind": "field",
2042
+ "name": "label",
2043
+ "type": {
2044
+ "text": "string"
2045
+ },
2046
+ "optional": false,
2047
+ "description": "Accessible label"
2048
+ },
2049
+ {
2050
+ "kind": "field",
2051
+ "name": "describedby",
2052
+ "type": {
2053
+ "text": "string"
2054
+ },
2055
+ "optional": true,
2056
+ "description": "ID of an element that describes the input"
2057
+ },
2058
+ {
2059
+ "kind": "field",
2060
+ "name": "error",
2061
+ "type": {
2062
+ "text": "string"
2063
+ },
2064
+ "optional": true,
2065
+ "description": "Error message"
2066
+ },
2067
+ {
2068
+ "kind": "field",
2069
+ "name": "disabled",
2070
+ "type": {
2071
+ "text": "boolean"
2072
+ },
2073
+ "optional": true,
2074
+ "description": "Disabled"
2075
+ },
2076
+ {
2077
+ "kind": "field",
2078
+ "name": "modelValue",
2079
+ "type": {
2080
+ "text": "boolean | null"
2081
+ },
2082
+ "optional": true
2083
+ }
2084
+ ],
2085
+ "events": [
2086
+ {
2087
+ "name": "change",
2088
+ "type": {
2089
+ "text": "CustomEvent"
2090
+ }
2091
+ }
2092
+ ]
2093
+ }
2094
+ ]
2095
+ },
2096
+ {
2097
+ "kind": "javascript-module",
2098
+ "path": "dist/web-components.js",
2099
+ "declarations": [
2100
+ {
2101
+ "kind": "custom-element",
2102
+ "name": "GTreeMenuElement",
2103
+ "tagName": "g-tree-menu",
2104
+ "members": [
2105
+ {
2106
+ "kind": "field",
2107
+ "name": "title",
2108
+ "type": {
2109
+ "text": "string"
2110
+ },
2111
+ "optional": true,
2112
+ "description": "Title and accessible name for the nav landmark"
2113
+ },
2114
+ {
2115
+ "kind": "field",
2116
+ "name": "items",
2117
+ "type": {
2118
+ "text": "TreeMenuItem[]"
2119
+ },
2120
+ "optional": false,
2121
+ "description": "Items for the menu"
2122
+ },
2123
+ {
2124
+ "kind": "field",
2125
+ "name": "listType",
2126
+ "type": {
2127
+ "text": "\"ul\" | \"ol\""
2128
+ },
2129
+ "optional": true,
2130
+ "description": "List element type — use `ol` for numbered hierarchies like book chapters",
2131
+ "default": "\"ul\""
2132
+ },
2133
+ {
2134
+ "kind": "field",
2135
+ "name": "theme",
2136
+ "type": {
2137
+ "text": "\"light\" | \"dark\""
2138
+ },
2139
+ "optional": true,
2140
+ "description": "Theme",
2141
+ "default": "\"light\""
2142
+ }
2143
+ ],
2144
+ "events": []
2145
+ }
2146
+ ]
2147
+ },
2148
+ {
2149
+ "kind": "javascript-module",
2150
+ "path": "dist/web-components.js",
2151
+ "declarations": [
2152
+ {
2153
+ "kind": "custom-element",
2154
+ "name": "GUserMenuElement",
2155
+ "tagName": "g-user-menu",
2156
+ "members": [
2157
+ {
2158
+ "kind": "field",
2159
+ "name": "initials",
2160
+ "type": {
2161
+ "text": "string"
2162
+ },
2163
+ "optional": false,
2164
+ "description": "User initial(s)"
2165
+ },
2166
+ {
2167
+ "kind": "field",
2168
+ "name": "email",
2169
+ "type": {
2170
+ "text": "string"
2171
+ },
2172
+ "optional": false,
2173
+ "description": "User email"
2174
+ },
2175
+ {
2176
+ "kind": "field",
2177
+ "name": "color",
2178
+ "type": {
2179
+ "text": "string"
2180
+ },
2181
+ "optional": true,
2182
+ "description": "Background color",
2183
+ "default": "\"var(--g-surface-700)\""
2184
+ },
2185
+ {
2186
+ "kind": "field",
2187
+ "name": "label",
2188
+ "type": {
2189
+ "text": "string"
2190
+ },
2191
+ "optional": true,
2192
+ "description": "Accessible label",
2193
+ "default": "\"User menu\""
2194
+ }
2195
+ ],
2196
+ "events": []
2197
+ }
2198
+ ]
2199
+ }
2200
+ ]
2201
+ }