galaxy-design 0.2.69 → 0.2.71

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.
@@ -16,6 +16,52 @@
16
16
  "exports": [
17
17
  "GalaxyAccordion",
18
18
  "GalaxyAccordionItem"
19
+ ],
20
+ "category": "layout",
21
+ "props": [
22
+ {
23
+ "name": "items",
24
+ "type": {
25
+ "kind": "array",
26
+ "of": {
27
+ "kind": "custom",
28
+ "name": "GalaxyAccordionItem"
29
+ }
30
+ },
31
+ "description": "Accordion items to render."
32
+ },
33
+ {
34
+ "name": "allowMultipleExpanded",
35
+ "type": {
36
+ "kind": "primitive",
37
+ "name": "boolean"
38
+ },
39
+ "default": false,
40
+ "description": "Allow multiple items expanded at once."
41
+ }
42
+ ],
43
+ "children": [
44
+ {
45
+ "name": "AccordionItem",
46
+ "props": [
47
+ {
48
+ "name": "title",
49
+ "type": {
50
+ "kind": "custom",
51
+ "name": "Widget"
52
+ },
53
+ "description": "Accordion item title widget."
54
+ },
55
+ {
56
+ "name": "content",
57
+ "type": {
58
+ "kind": "custom",
59
+ "name": "Widget"
60
+ },
61
+ "description": "Accordion item content widget."
62
+ }
63
+ ]
64
+ }
19
65
  ]
20
66
  },
21
67
  "alert": {
@@ -31,6 +77,87 @@
31
77
  ],
32
78
  "exports": [
33
79
  "GalaxyAlert"
80
+ ],
81
+ "category": "feedback",
82
+ "props": [
83
+ {
84
+ "name": "child",
85
+ "type": {
86
+ "kind": "custom",
87
+ "name": "Widget"
88
+ },
89
+ "description": "Alert content widget."
90
+ },
91
+ {
92
+ "name": "variant",
93
+ "type": {
94
+ "kind": "union",
95
+ "values": [
96
+ {
97
+ "kind": "literal",
98
+ "value": "default_"
99
+ },
100
+ {
101
+ "kind": "literal",
102
+ "value": "destructive"
103
+ }
104
+ ]
105
+ },
106
+ "default": "default_",
107
+ "description": "Visual style variant for the alert."
108
+ },
109
+ {
110
+ "name": "padding",
111
+ "type": {
112
+ "kind": "custom",
113
+ "name": "EdgeInsetsGeometry"
114
+ },
115
+ "description": "Padding inside the alert container."
116
+ }
117
+ ],
118
+ "children": [
119
+ {
120
+ "name": "AlertTitle",
121
+ "props": [
122
+ {
123
+ "name": "title",
124
+ "type": {
125
+ "kind": "primitive",
126
+ "name": "string"
127
+ },
128
+ "description": "Title text."
129
+ },
130
+ {
131
+ "name": "style",
132
+ "type": {
133
+ "kind": "custom",
134
+ "name": "TextStyle"
135
+ },
136
+ "description": "Optional text style override."
137
+ }
138
+ ]
139
+ },
140
+ {
141
+ "name": "AlertDescription",
142
+ "props": [
143
+ {
144
+ "name": "description",
145
+ "type": {
146
+ "kind": "primitive",
147
+ "name": "string"
148
+ },
149
+ "description": "Description text."
150
+ },
151
+ {
152
+ "name": "style",
153
+ "type": {
154
+ "kind": "custom",
155
+ "name": "TextStyle"
156
+ },
157
+ "description": "Optional text style override."
158
+ }
159
+ ]
160
+ }
34
161
  ]
35
162
  },
36
163
  "alert-dialog": {
@@ -46,6 +173,75 @@
46
173
  ],
47
174
  "exports": [
48
175
  "GalaxyAlertDialog"
176
+ ],
177
+ "category": "feedback",
178
+ "props": [
179
+ {
180
+ "name": "title",
181
+ "type": {
182
+ "kind": "primitive",
183
+ "name": "string"
184
+ },
185
+ "description": "Optional title text."
186
+ },
187
+ {
188
+ "name": "description",
189
+ "type": {
190
+ "kind": "primitive",
191
+ "name": "string"
192
+ },
193
+ "description": "Optional description text."
194
+ },
195
+ {
196
+ "name": "cancelText",
197
+ "type": {
198
+ "kind": "primitive",
199
+ "name": "string"
200
+ },
201
+ "description": "Label for the cancel button."
202
+ },
203
+ {
204
+ "name": "confirmText",
205
+ "type": {
206
+ "kind": "primitive",
207
+ "name": "string"
208
+ },
209
+ "description": "Label for the confirm button."
210
+ },
211
+ {
212
+ "name": "onCancel",
213
+ "type": {
214
+ "kind": "function",
215
+ "signature": "() => void"
216
+ },
217
+ "description": "Called after the dialog is dismissed via the cancel action."
218
+ },
219
+ {
220
+ "name": "onConfirm",
221
+ "type": {
222
+ "kind": "function",
223
+ "signature": "() => void"
224
+ },
225
+ "description": "Called after the dialog is dismissed via the confirm action."
226
+ },
227
+ {
228
+ "name": "variant",
229
+ "type": {
230
+ "kind": "union",
231
+ "values": [
232
+ {
233
+ "kind": "literal",
234
+ "value": "default_"
235
+ },
236
+ {
237
+ "kind": "literal",
238
+ "value": "destructive"
239
+ }
240
+ ]
241
+ },
242
+ "default": "default_",
243
+ "description": "Visual style for the confirm action."
244
+ }
49
245
  ]
50
246
  },
51
247
  "aspect-ratio": {
@@ -61,6 +257,25 @@
61
257
  ],
62
258
  "exports": [
63
259
  "GalaxyAspectRatio"
260
+ ],
261
+ "category": "layout",
262
+ "props": [
263
+ {
264
+ "name": "ratio",
265
+ "type": {
266
+ "kind": "primitive",
267
+ "name": "number"
268
+ },
269
+ "description": "Desired aspect ratio."
270
+ },
271
+ {
272
+ "name": "child",
273
+ "type": {
274
+ "kind": "custom",
275
+ "name": "Widget"
276
+ },
277
+ "description": "Content constrained by the ratio."
278
+ }
64
279
  ]
65
280
  },
66
281
  "avatar": {
@@ -75,8 +290,68 @@
75
290
  "flutter"
76
291
  ],
77
292
  "exports": [
78
- "GalaxyAvatar",
79
- "GalaxyAvatarGroup"
293
+ "GalaxyAvatar"
294
+ ],
295
+ "category": "data-display",
296
+ "props": [
297
+ {
298
+ "name": "imageUrl",
299
+ "type": {
300
+ "kind": "primitive",
301
+ "name": "string"
302
+ },
303
+ "description": "Image source URL."
304
+ },
305
+ {
306
+ "name": "fallbackText",
307
+ "type": {
308
+ "kind": "primitive",
309
+ "name": "string"
310
+ },
311
+ "description": "Fallback text used when no image is available."
312
+ },
313
+ {
314
+ "name": "size",
315
+ "type": {
316
+ "kind": "union",
317
+ "values": [
318
+ {
319
+ "kind": "literal",
320
+ "value": "sm"
321
+ },
322
+ {
323
+ "kind": "literal",
324
+ "value": "md"
325
+ },
326
+ {
327
+ "kind": "literal",
328
+ "value": "lg"
329
+ },
330
+ {
331
+ "kind": "literal",
332
+ "value": "xl"
333
+ }
334
+ ]
335
+ },
336
+ "default": "md",
337
+ "description": "Avatar size variant."
338
+ },
339
+ {
340
+ "name": "backgroundColor",
341
+ "type": {
342
+ "kind": "custom",
343
+ "name": "Color"
344
+ },
345
+ "description": "Background color of the avatar."
346
+ },
347
+ {
348
+ "name": "foregroundColor",
349
+ "type": {
350
+ "kind": "custom",
351
+ "name": "Color"
352
+ },
353
+ "description": "Foreground color of the fallback text."
354
+ }
80
355
  ]
81
356
  },
82
357
  "badge": {
@@ -92,7 +367,61 @@
92
367
  ],
93
368
  "exports": [
94
369
  "GalaxyBadge",
370
+ "GalaxyBadgeCount",
95
371
  "GalaxyBadgePositioned"
372
+ ],
373
+ "category": "data-display",
374
+ "props": [
375
+ {
376
+ "name": "text",
377
+ "type": {
378
+ "kind": "primitive",
379
+ "name": "string"
380
+ },
381
+ "description": "Badge text content."
382
+ },
383
+ {
384
+ "name": "child",
385
+ "type": {
386
+ "kind": "custom",
387
+ "name": "Widget"
388
+ },
389
+ "description": "Custom badge content widget."
390
+ },
391
+ {
392
+ "name": "variant",
393
+ "type": {
394
+ "kind": "union",
395
+ "values": [
396
+ {
397
+ "kind": "literal",
398
+ "value": "default_"
399
+ },
400
+ {
401
+ "kind": "literal",
402
+ "value": "secondary"
403
+ },
404
+ {
405
+ "kind": "literal",
406
+ "value": "destructive"
407
+ },
408
+ {
409
+ "kind": "literal",
410
+ "value": "outline"
411
+ }
412
+ ]
413
+ },
414
+ "default": "default_",
415
+ "description": "Visual style variant for the badge."
416
+ },
417
+ {
418
+ "name": "padding",
419
+ "type": {
420
+ "kind": "custom",
421
+ "name": "EdgeInsets"
422
+ },
423
+ "description": "Padding inside the badge."
424
+ }
96
425
  ]
97
426
  },
98
427
  "button": {
@@ -108,6 +437,63 @@
108
437
  ],
109
438
  "exports": [
110
439
  "GalaxyButton"
440
+ ],
441
+ "props": [
442
+ {
443
+ "name": "variant",
444
+ "type": {
445
+ "kind": "union",
446
+ "values": [
447
+ "primary",
448
+ "destructive",
449
+ "outline",
450
+ "secondary",
451
+ "ghost",
452
+ "link"
453
+ ]
454
+ },
455
+ "default": "primary",
456
+ "description": "Visual style variant."
457
+ },
458
+ {
459
+ "name": "size",
460
+ "type": {
461
+ "kind": "union",
462
+ "values": [
463
+ "defaultSize",
464
+ "sm",
465
+ "lg",
466
+ "icon"
467
+ ]
468
+ },
469
+ "default": "defaultSize",
470
+ "description": "Size variant."
471
+ },
472
+ {
473
+ "name": "onPressed",
474
+ "type": {
475
+ "kind": "function",
476
+ "signature": "() => void"
477
+ },
478
+ "description": "Press handler."
479
+ },
480
+ {
481
+ "name": "disabled",
482
+ "type": {
483
+ "kind": "primitive",
484
+ "name": "boolean"
485
+ },
486
+ "default": false,
487
+ "description": "Disables the button."
488
+ },
489
+ {
490
+ "name": "child",
491
+ "type": {
492
+ "kind": "custom",
493
+ "name": "Widget"
494
+ },
495
+ "description": "Button content."
496
+ }
111
497
  ]
112
498
  },
113
499
  "card": {
@@ -126,6 +512,141 @@
126
512
  "GalaxyCardHeader",
127
513
  "GalaxyCardContent",
128
514
  "GalaxyCardFooter"
515
+ ],
516
+ "category": "layout",
517
+ "props": [
518
+ {
519
+ "name": "child",
520
+ "type": {
521
+ "kind": "custom",
522
+ "name": "Widget"
523
+ },
524
+ "description": "Card content widget."
525
+ },
526
+ {
527
+ "name": "padding",
528
+ "type": {
529
+ "kind": "custom",
530
+ "name": "EdgeInsetsGeometry"
531
+ },
532
+ "description": "Optional padding applied around the child."
533
+ },
534
+ {
535
+ "name": "elevation",
536
+ "type": {
537
+ "kind": "primitive",
538
+ "name": "number"
539
+ },
540
+ "default": 1,
541
+ "description": "Card elevation."
542
+ }
543
+ ],
544
+ "children": [
545
+ {
546
+ "name": "CardHeader",
547
+ "props": [
548
+ {
549
+ "name": "child",
550
+ "type": {
551
+ "kind": "custom",
552
+ "name": "Widget"
553
+ },
554
+ "description": "Header content widget."
555
+ },
556
+ {
557
+ "name": "padding",
558
+ "type": {
559
+ "kind": "custom",
560
+ "name": "EdgeInsetsGeometry"
561
+ },
562
+ "description": "Padding for the header section."
563
+ }
564
+ ]
565
+ },
566
+ {
567
+ "name": "CardTitle",
568
+ "props": [
569
+ {
570
+ "name": "title",
571
+ "type": {
572
+ "kind": "primitive",
573
+ "name": "string"
574
+ },
575
+ "description": "Title text."
576
+ },
577
+ {
578
+ "name": "style",
579
+ "type": {
580
+ "kind": "custom",
581
+ "name": "TextStyle"
582
+ },
583
+ "description": "Optional text style override."
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "name": "CardDescription",
589
+ "props": [
590
+ {
591
+ "name": "description",
592
+ "type": {
593
+ "kind": "primitive",
594
+ "name": "string"
595
+ },
596
+ "description": "Description text."
597
+ },
598
+ {
599
+ "name": "style",
600
+ "type": {
601
+ "kind": "custom",
602
+ "name": "TextStyle"
603
+ },
604
+ "description": "Optional text style override."
605
+ }
606
+ ]
607
+ },
608
+ {
609
+ "name": "CardContent",
610
+ "props": [
611
+ {
612
+ "name": "child",
613
+ "type": {
614
+ "kind": "custom",
615
+ "name": "Widget"
616
+ },
617
+ "description": "Content widget."
618
+ },
619
+ {
620
+ "name": "padding",
621
+ "type": {
622
+ "kind": "custom",
623
+ "name": "EdgeInsetsGeometry"
624
+ },
625
+ "description": "Padding for the content section."
626
+ }
627
+ ]
628
+ },
629
+ {
630
+ "name": "CardFooter",
631
+ "props": [
632
+ {
633
+ "name": "child",
634
+ "type": {
635
+ "kind": "custom",
636
+ "name": "Widget"
637
+ },
638
+ "description": "Footer content widget."
639
+ },
640
+ {
641
+ "name": "padding",
642
+ "type": {
643
+ "kind": "custom",
644
+ "name": "EdgeInsetsGeometry"
645
+ },
646
+ "description": "Padding for the footer section."
647
+ }
648
+ ]
649
+ }
129
650
  ]
130
651
  },
131
652
  "checkbox": {
@@ -141,6 +662,41 @@
141
662
  ],
142
663
  "exports": [
143
664
  "GalaxyCheckbox"
665
+ ],
666
+ "props": [
667
+ {
668
+ "name": "value",
669
+ "type": {
670
+ "kind": "primitive",
671
+ "name": "boolean"
672
+ },
673
+ "description": "Controlled checked state."
674
+ },
675
+ {
676
+ "name": "onChanged",
677
+ "type": {
678
+ "kind": "function",
679
+ "signature": "(value: boolean | null) => void"
680
+ },
681
+ "description": "Called when the checked state changes."
682
+ },
683
+ {
684
+ "name": "label",
685
+ "type": {
686
+ "kind": "primitive",
687
+ "name": "string"
688
+ },
689
+ "description": "Label text."
690
+ },
691
+ {
692
+ "name": "disabled",
693
+ "type": {
694
+ "kind": "primitive",
695
+ "name": "boolean"
696
+ },
697
+ "default": false,
698
+ "description": "Disables the checkbox."
699
+ }
144
700
  ]
145
701
  },
146
702
  "collapsible": {
@@ -156,6 +712,42 @@
156
712
  ],
157
713
  "exports": [
158
714
  "GalaxyCollapsible"
715
+ ],
716
+ "category": "layout",
717
+ "props": [
718
+ {
719
+ "name": "trigger",
720
+ "type": {
721
+ "kind": "custom",
722
+ "name": "Widget"
723
+ },
724
+ "description": "Widget used to toggle the collapsible state."
725
+ },
726
+ {
727
+ "name": "content",
728
+ "type": {
729
+ "kind": "custom",
730
+ "name": "Widget"
731
+ },
732
+ "description": "Widget revealed when expanded."
733
+ },
734
+ {
735
+ "name": "initiallyExpanded",
736
+ "type": {
737
+ "kind": "primitive",
738
+ "name": "boolean"
739
+ },
740
+ "default": false,
741
+ "description": "Whether the collapsible starts expanded."
742
+ },
743
+ {
744
+ "name": "onExpansionChanged",
745
+ "type": {
746
+ "kind": "function",
747
+ "signature": "(expanded: bool) => void"
748
+ },
749
+ "description": "Called when the expansion state changes."
750
+ }
159
751
  ]
160
752
  },
161
753
  "context-menu": {
@@ -172,6 +764,81 @@
172
764
  "exports": [
173
765
  "GalaxyContextMenu",
174
766
  "GalaxyContextMenuItem"
767
+ ],
768
+ "category": "navigation",
769
+ "props": [
770
+ {
771
+ "name": "child",
772
+ "type": {
773
+ "kind": "custom",
774
+ "name": "Widget"
775
+ },
776
+ "description": "Widget that receives the long-press or secondary-tap gesture."
777
+ },
778
+ {
779
+ "name": "items",
780
+ "type": {
781
+ "kind": "custom",
782
+ "name": "List<GalaxyContextMenuItem<T>>"
783
+ },
784
+ "description": "Items shown in the context menu."
785
+ },
786
+ {
787
+ "name": "onSelected",
788
+ "type": {
789
+ "kind": "function",
790
+ "signature": "(T value) => void"
791
+ },
792
+ "description": "Called when a menu item is selected."
793
+ }
794
+ ],
795
+ "children": [
796
+ {
797
+ "name": "GalaxyContextMenuItem",
798
+ "props": [
799
+ {
800
+ "name": "value",
801
+ "type": {
802
+ "kind": "custom",
803
+ "name": "T"
804
+ },
805
+ "description": "Value returned when the item is selected."
806
+ },
807
+ {
808
+ "name": "child",
809
+ "type": {
810
+ "kind": "custom",
811
+ "name": "Widget"
812
+ },
813
+ "description": "Main item content."
814
+ },
815
+ {
816
+ "name": "leading",
817
+ "type": {
818
+ "kind": "custom",
819
+ "name": "Widget"
820
+ },
821
+ "description": "Optional leading widget."
822
+ },
823
+ {
824
+ "name": "trailing",
825
+ "type": {
826
+ "kind": "custom",
827
+ "name": "Widget"
828
+ },
829
+ "description": "Optional trailing widget."
830
+ },
831
+ {
832
+ "name": "disabled",
833
+ "type": {
834
+ "kind": "primitive",
835
+ "name": "boolean"
836
+ },
837
+ "description": "Disables the item.",
838
+ "default": false
839
+ }
840
+ ]
841
+ }
175
842
  ]
176
843
  },
177
844
  "date-picker": {
@@ -189,6 +856,128 @@
189
856
  "exports": [
190
857
  "GalaxyDatePicker",
191
858
  "GalaxyDateRangePicker"
859
+ ],
860
+ "category": "form",
861
+ "props": [
862
+ {
863
+ "name": "selected",
864
+ "type": {
865
+ "kind": "custom",
866
+ "name": "DateTime"
867
+ },
868
+ "description": "Selected date for the single-date picker."
869
+ },
870
+ {
871
+ "name": "minDate",
872
+ "type": {
873
+ "kind": "custom",
874
+ "name": "DateTime"
875
+ },
876
+ "description": "Earliest date available for selection."
877
+ },
878
+ {
879
+ "name": "maxDate",
880
+ "type": {
881
+ "kind": "custom",
882
+ "name": "DateTime"
883
+ },
884
+ "description": "Latest date available for selection."
885
+ },
886
+ {
887
+ "name": "onChanged",
888
+ "type": {
889
+ "kind": "function",
890
+ "signature": "(date: DateTime?) => void"
891
+ },
892
+ "description": "Called when the selected date changes."
893
+ },
894
+ {
895
+ "name": "format",
896
+ "type": {
897
+ "kind": "primitive",
898
+ "name": "string"
899
+ },
900
+ "description": "Date format pattern used for display."
901
+ },
902
+ {
903
+ "name": "placeholder",
904
+ "type": {
905
+ "kind": "primitive",
906
+ "name": "string"
907
+ },
908
+ "description": "Placeholder text shown when no date is selected."
909
+ },
910
+ {
911
+ "name": "header",
912
+ "type": {
913
+ "kind": "custom",
914
+ "name": "Widget"
915
+ },
916
+ "description": "Optional header widget rendered above the picker."
917
+ }
918
+ ],
919
+ "children": [
920
+ {
921
+ "name": "DateRangePicker",
922
+ "props": [
923
+ {
924
+ "name": "selected",
925
+ "type": {
926
+ "kind": "custom",
927
+ "name": "DateTimeRange"
928
+ },
929
+ "description": "Selected date range."
930
+ },
931
+ {
932
+ "name": "minDate",
933
+ "type": {
934
+ "kind": "custom",
935
+ "name": "DateTime"
936
+ },
937
+ "description": "Earliest date available for range selection."
938
+ },
939
+ {
940
+ "name": "maxDate",
941
+ "type": {
942
+ "kind": "custom",
943
+ "name": "DateTime"
944
+ },
945
+ "description": "Latest date available for range selection."
946
+ },
947
+ {
948
+ "name": "onChanged",
949
+ "type": {
950
+ "kind": "function",
951
+ "signature": "(range: DateTimeRange?) => void"
952
+ },
953
+ "description": "Called when the selected date range changes."
954
+ },
955
+ {
956
+ "name": "format",
957
+ "type": {
958
+ "kind": "primitive",
959
+ "name": "string"
960
+ },
961
+ "description": "Date format pattern used for display."
962
+ },
963
+ {
964
+ "name": "placeholder",
965
+ "type": {
966
+ "kind": "primitive",
967
+ "name": "string"
968
+ },
969
+ "description": "Placeholder text shown when no range is selected."
970
+ },
971
+ {
972
+ "name": "header",
973
+ "type": {
974
+ "kind": "custom",
975
+ "name": "Widget"
976
+ },
977
+ "description": "Optional header widget rendered above the picker."
978
+ }
979
+ ]
980
+ }
192
981
  ]
193
982
  },
194
983
  "dialog": {
@@ -204,6 +993,44 @@
204
993
  ],
205
994
  "exports": [
206
995
  "GalaxyDialog"
996
+ ],
997
+ "category": "layout",
998
+ "props": [
999
+ {
1000
+ "name": "title",
1001
+ "type": {
1002
+ "kind": "custom",
1003
+ "name": "Widget"
1004
+ },
1005
+ "description": "Optional widget rendered as the dialog title."
1006
+ },
1007
+ {
1008
+ "name": "content",
1009
+ "type": {
1010
+ "kind": "custom",
1011
+ "name": "Widget"
1012
+ },
1013
+ "description": "Optional widget rendered as the main dialog content."
1014
+ },
1015
+ {
1016
+ "name": "actions",
1017
+ "type": {
1018
+ "kind": "array",
1019
+ "of": {
1020
+ "kind": "custom",
1021
+ "name": "Widget"
1022
+ }
1023
+ },
1024
+ "description": "Optional action widgets rendered in the footer row."
1025
+ },
1026
+ {
1027
+ "name": "contentPadding",
1028
+ "type": {
1029
+ "kind": "custom",
1030
+ "name": "EdgeInsetsGeometry"
1031
+ },
1032
+ "description": "Padding applied around the content widget."
1033
+ }
207
1034
  ]
208
1035
  },
209
1036
  "dropdown-menu": {
@@ -220,6 +1047,84 @@
220
1047
  "exports": [
221
1048
  "GalaxyDropdownMenu",
222
1049
  "GalaxyDropdownMenuItem"
1050
+ ],
1051
+ "category": "navigation",
1052
+ "props": [
1053
+ {
1054
+ "name": "trigger",
1055
+ "type": {
1056
+ "kind": "custom",
1057
+ "name": "Widget"
1058
+ },
1059
+ "description": "Widget used to open the menu."
1060
+ },
1061
+ {
1062
+ "name": "items",
1063
+ "type": {
1064
+ "kind": "array",
1065
+ "of": {
1066
+ "kind": "custom",
1067
+ "name": "GalaxyDropdownMenuItem<T>"
1068
+ }
1069
+ },
1070
+ "description": "Menu items rendered in the popup."
1071
+ },
1072
+ {
1073
+ "name": "onSelected",
1074
+ "type": {
1075
+ "kind": "function",
1076
+ "signature": "(value: T) => void"
1077
+ },
1078
+ "description": "Called when an item is selected."
1079
+ }
1080
+ ],
1081
+ "children": [
1082
+ {
1083
+ "name": "GalaxyDropdownMenuItem",
1084
+ "props": [
1085
+ {
1086
+ "name": "value",
1087
+ "type": {
1088
+ "kind": "custom",
1089
+ "name": "T"
1090
+ },
1091
+ "description": "Value returned when the item is selected."
1092
+ },
1093
+ {
1094
+ "name": "child",
1095
+ "type": {
1096
+ "kind": "custom",
1097
+ "name": "Widget"
1098
+ },
1099
+ "description": "Primary content widget."
1100
+ },
1101
+ {
1102
+ "name": "leading",
1103
+ "type": {
1104
+ "kind": "custom",
1105
+ "name": "Widget"
1106
+ },
1107
+ "description": "Optional leading widget."
1108
+ },
1109
+ {
1110
+ "name": "trailing",
1111
+ "type": {
1112
+ "kind": "custom",
1113
+ "name": "Widget"
1114
+ },
1115
+ "description": "Optional trailing widget."
1116
+ },
1117
+ {
1118
+ "name": "disabled",
1119
+ "type": {
1120
+ "kind": "primitive",
1121
+ "name": "boolean"
1122
+ },
1123
+ "default": false,
1124
+ "description": "Disables the item."
1125
+ }
1126
+ ]
1127
+ }
223
1128
  ]
224
1129
  },
225
1130
  "empty": {
@@ -235,6 +1140,90 @@
235
1140
  ],
236
1141
  "exports": [
237
1142
  "GalaxyEmpty"
1143
+ ],
1144
+ "category": "feedback",
1145
+ "props": [
1146
+ {
1147
+ "name": "icon",
1148
+ "type": {
1149
+ "kind": "custom",
1150
+ "name": "Widget"
1151
+ },
1152
+ "description": "Optional icon widget."
1153
+ },
1154
+ {
1155
+ "name": "title",
1156
+ "type": {
1157
+ "kind": "primitive",
1158
+ "name": "string"
1159
+ },
1160
+ "description": "Optional title text."
1161
+ },
1162
+ {
1163
+ "name": "description",
1164
+ "type": {
1165
+ "kind": "primitive",
1166
+ "name": "string"
1167
+ },
1168
+ "description": "Optional description text."
1169
+ },
1170
+ {
1171
+ "name": "action",
1172
+ "type": {
1173
+ "kind": "custom",
1174
+ "name": "Widget"
1175
+ },
1176
+ "description": "Optional action widget."
1177
+ },
1178
+ {
1179
+ "name": "padding",
1180
+ "type": {
1181
+ "kind": "custom",
1182
+ "name": "EdgeInsets"
1183
+ },
1184
+ "default": "EdgeInsets.all(32)",
1185
+ "description": "Padding around the empty state content."
1186
+ },
1187
+ {
1188
+ "name": "iconSize",
1189
+ "type": {
1190
+ "kind": "primitive",
1191
+ "name": "number"
1192
+ },
1193
+ "default": 64,
1194
+ "description": "Size applied to the icon theme."
1195
+ },
1196
+ {
1197
+ "name": "spacing",
1198
+ "type": {
1199
+ "kind": "primitive",
1200
+ "name": "number"
1201
+ },
1202
+ "default": 16,
1203
+ "description": "Base spacing used between sections."
1204
+ }
1205
+ ],
1206
+ "children": [
1207
+ {
1208
+ "name": "GalaxyEmpty.noData",
1209
+ "props": []
1210
+ },
1211
+ {
1212
+ "name": "GalaxyEmpty.noResults",
1213
+ "props": []
1214
+ },
1215
+ {
1216
+ "name": "GalaxyEmpty.error",
1217
+ "props": []
1218
+ },
1219
+ {
1220
+ "name": "GalaxyEmpty.offline",
1221
+ "props": []
1222
+ },
1223
+ {
1224
+ "name": "GalaxyEmpty.emptyList",
1225
+ "props": []
1226
+ }
238
1227
  ]
239
1228
  },
240
1229
  "hover-card": {
@@ -250,6 +1239,49 @@
250
1239
  ],
251
1240
  "exports": [
252
1241
  "GalaxyHoverCard"
1242
+ ],
1243
+ "category": "data-display",
1244
+ "props": [
1245
+ {
1246
+ "name": "trigger",
1247
+ "type": {
1248
+ "kind": "custom",
1249
+ "name": "Widget"
1250
+ },
1251
+ "description": "Widget used as the hover or tap trigger."
1252
+ },
1253
+ {
1254
+ "name": "content",
1255
+ "type": {
1256
+ "kind": "custom",
1257
+ "name": "Widget"
1258
+ },
1259
+ "description": "Widget displayed inside the hover card."
1260
+ },
1261
+ {
1262
+ "name": "width",
1263
+ "type": {
1264
+ "kind": "primitive",
1265
+ "name": "number"
1266
+ },
1267
+ "description": "Optional width of the hover card."
1268
+ },
1269
+ {
1270
+ "name": "padding",
1271
+ "type": {
1272
+ "kind": "custom",
1273
+ "name": "EdgeInsets"
1274
+ },
1275
+ "description": "Padding inside the hover card."
1276
+ },
1277
+ {
1278
+ "name": "openDelay",
1279
+ "type": {
1280
+ "kind": "custom",
1281
+ "name": "Duration"
1282
+ },
1283
+ "description": "Configured open delay; currently declared but not applied by the implementation."
1284
+ }
253
1285
  ]
254
1286
  },
255
1287
  "input": {
@@ -265,6 +1297,91 @@
265
1297
  ],
266
1298
  "exports": [
267
1299
  "GalaxyInput"
1300
+ ],
1301
+ "props": [
1302
+ {
1303
+ "name": "controller",
1304
+ "type": {
1305
+ "kind": "custom",
1306
+ "name": "TextEditingController"
1307
+ },
1308
+ "description": "Controller for the text field."
1309
+ },
1310
+ {
1311
+ "name": "label",
1312
+ "type": {
1313
+ "kind": "primitive",
1314
+ "name": "string"
1315
+ },
1316
+ "description": "Label text."
1317
+ },
1318
+ {
1319
+ "name": "placeholder",
1320
+ "type": {
1321
+ "kind": "primitive",
1322
+ "name": "string"
1323
+ },
1324
+ "description": "Placeholder text."
1325
+ },
1326
+ {
1327
+ "name": "error",
1328
+ "type": {
1329
+ "kind": "primitive",
1330
+ "name": "string"
1331
+ },
1332
+ "description": "Error text."
1333
+ },
1334
+ {
1335
+ "name": "enabled",
1336
+ "type": {
1337
+ "kind": "primitive",
1338
+ "name": "boolean"
1339
+ },
1340
+ "default": true,
1341
+ "description": "Whether the input is enabled."
1342
+ },
1343
+ {
1344
+ "name": "obscureText",
1345
+ "type": {
1346
+ "kind": "primitive",
1347
+ "name": "boolean"
1348
+ },
1349
+ "default": false,
1350
+ "description": "Obscures the input text."
1351
+ },
1352
+ {
1353
+ "name": "keyboardType",
1354
+ "type": {
1355
+ "kind": "custom",
1356
+ "name": "TextInputType"
1357
+ },
1358
+ "description": "Keyboard type."
1359
+ },
1360
+ {
1361
+ "name": "maxLines",
1362
+ "type": {
1363
+ "kind": "primitive",
1364
+ "name": "number"
1365
+ },
1366
+ "default": 1,
1367
+ "description": "Max lines."
1368
+ },
1369
+ {
1370
+ "name": "onChanged",
1371
+ "type": {
1372
+ "kind": "function",
1373
+ "signature": "(value: string) => void"
1374
+ },
1375
+ "description": "Change handler."
1376
+ },
1377
+ {
1378
+ "name": "onSubmitted",
1379
+ "type": {
1380
+ "kind": "function",
1381
+ "signature": "(value: string) => void"
1382
+ },
1383
+ "description": "Submit handler."
1384
+ }
268
1385
  ]
269
1386
  },
270
1387
  "label": {
@@ -280,6 +1397,41 @@
280
1397
  ],
281
1398
  "exports": [
282
1399
  "GalaxyLabel"
1400
+ ],
1401
+ "props": [
1402
+ {
1403
+ "name": "text",
1404
+ "type": {
1405
+ "kind": "primitive",
1406
+ "name": "string"
1407
+ },
1408
+ "description": "Label text."
1409
+ },
1410
+ {
1411
+ "name": "required",
1412
+ "type": {
1413
+ "kind": "primitive",
1414
+ "name": "boolean"
1415
+ },
1416
+ "default": false,
1417
+ "description": "Marks label as required and appends an asterisk."
1418
+ },
1419
+ {
1420
+ "name": "style",
1421
+ "type": {
1422
+ "kind": "custom",
1423
+ "name": "TextStyle"
1424
+ },
1425
+ "description": "Text style."
1426
+ },
1427
+ {
1428
+ "name": "color",
1429
+ "type": {
1430
+ "kind": "custom",
1431
+ "name": "Color"
1432
+ },
1433
+ "description": "Text color."
1434
+ }
283
1435
  ]
284
1436
  },
285
1437
  "menubar": {
@@ -295,7 +1447,55 @@
295
1447
  ],
296
1448
  "exports": [
297
1449
  "GalaxyMenubar",
298
- "GalaxyMenubarItem"
1450
+ "GalaxyMenubarMenu"
1451
+ ],
1452
+ "category": "navigation",
1453
+ "props": [
1454
+ {
1455
+ "name": "menus",
1456
+ "type": {
1457
+ "kind": "array",
1458
+ "of": {
1459
+ "kind": "custom",
1460
+ "name": "GalaxyMenubarMenu"
1461
+ }
1462
+ },
1463
+ "description": "Menus rendered in the menubar."
1464
+ }
1465
+ ],
1466
+ "children": [
1467
+ {
1468
+ "name": "GalaxyMenubarMenu",
1469
+ "props": [
1470
+ {
1471
+ "name": "label",
1472
+ "type": {
1473
+ "kind": "primitive",
1474
+ "name": "string"
1475
+ },
1476
+ "description": "Visible label for the menu trigger."
1477
+ },
1478
+ {
1479
+ "name": "items",
1480
+ "type": {
1481
+ "kind": "array",
1482
+ "of": {
1483
+ "kind": "custom",
1484
+ "name": "PopupMenuEntry"
1485
+ }
1486
+ },
1487
+ "description": "Popup menu entries."
1488
+ },
1489
+ {
1490
+ "name": "onSelected",
1491
+ "type": {
1492
+ "kind": "function",
1493
+ "signature": "(value: dynamic) => void"
1494
+ },
1495
+ "description": "Called when an item is selected."
1496
+ }
1497
+ ]
1498
+ }
299
1499
  ]
300
1500
  },
301
1501
  "navigation-menu": {
@@ -311,7 +1511,162 @@
311
1511
  ],
312
1512
  "exports": [
313
1513
  "GalaxyNavigationMenu",
314
- "NavigationMenuItem"
1514
+ "NavigationMenuItem",
1515
+ "NavigationMenuVariant",
1516
+ "showGalaxyDrawer"
1517
+ ],
1518
+ "category": "navigation",
1519
+ "props": [
1520
+ {
1521
+ "name": "items",
1522
+ "type": {
1523
+ "kind": "custom",
1524
+ "name": "List<NavigationMenuItem>"
1525
+ },
1526
+ "description": "Items rendered in the navigation menu."
1527
+ },
1528
+ {
1529
+ "name": "selectedId",
1530
+ "type": {
1531
+ "kind": "primitive",
1532
+ "name": "string"
1533
+ },
1534
+ "description": "Currently selected item id."
1535
+ },
1536
+ {
1537
+ "name": "onSelect",
1538
+ "type": {
1539
+ "kind": "function",
1540
+ "signature": "(String id) => void"
1541
+ },
1542
+ "description": "Called when a navigation item is selected."
1543
+ },
1544
+ {
1545
+ "name": "variant",
1546
+ "type": {
1547
+ "kind": "custom",
1548
+ "name": "NavigationMenuVariant"
1549
+ },
1550
+ "description": "Visual variant of the navigation menu.",
1551
+ "default": "NavigationMenuVariant.bottom"
1552
+ },
1553
+ {
1554
+ "name": "header",
1555
+ "type": {
1556
+ "kind": "custom",
1557
+ "name": "Widget"
1558
+ },
1559
+ "description": "Optional header widget for the drawer variant."
1560
+ },
1561
+ {
1562
+ "name": "footer",
1563
+ "type": {
1564
+ "kind": "custom",
1565
+ "name": "Widget"
1566
+ },
1567
+ "description": "Optional footer widget for the drawer variant."
1568
+ }
1569
+ ],
1570
+ "children": [
1571
+ {
1572
+ "name": "NavigationMenuItem",
1573
+ "props": [
1574
+ {
1575
+ "name": "id",
1576
+ "type": {
1577
+ "kind": "primitive",
1578
+ "name": "string"
1579
+ },
1580
+ "description": "Unique item id."
1581
+ },
1582
+ {
1583
+ "name": "label",
1584
+ "type": {
1585
+ "kind": "primitive",
1586
+ "name": "string"
1587
+ },
1588
+ "description": "Item label text."
1589
+ },
1590
+ {
1591
+ "name": "icon",
1592
+ "type": {
1593
+ "kind": "custom",
1594
+ "name": "IconData"
1595
+ },
1596
+ "description": "Item icon."
1597
+ },
1598
+ {
1599
+ "name": "badge",
1600
+ "type": {
1601
+ "kind": "primitive",
1602
+ "name": "string"
1603
+ },
1604
+ "description": "Optional badge text."
1605
+ },
1606
+ {
1607
+ "name": "disabled",
1608
+ "type": {
1609
+ "kind": "primitive",
1610
+ "name": "boolean"
1611
+ },
1612
+ "description": "Disables the item.",
1613
+ "default": false
1614
+ }
1615
+ ]
1616
+ },
1617
+ {
1618
+ "name": "showGalaxyDrawer",
1619
+ "props": [
1620
+ {
1621
+ "name": "context",
1622
+ "type": {
1623
+ "kind": "custom",
1624
+ "name": "BuildContext"
1625
+ },
1626
+ "description": "Build context used to present the drawer."
1627
+ },
1628
+ {
1629
+ "name": "items",
1630
+ "type": {
1631
+ "kind": "custom",
1632
+ "name": "List<NavigationMenuItem>"
1633
+ },
1634
+ "description": "Items rendered in the drawer."
1635
+ },
1636
+ {
1637
+ "name": "selectedId",
1638
+ "type": {
1639
+ "kind": "primitive",
1640
+ "name": "string"
1641
+ },
1642
+ "description": "Currently selected item id."
1643
+ },
1644
+ {
1645
+ "name": "onSelect",
1646
+ "type": {
1647
+ "kind": "function",
1648
+ "signature": "(String id) => void"
1649
+ },
1650
+ "description": "Called when a navigation item is selected."
1651
+ },
1652
+ {
1653
+ "name": "header",
1654
+ "type": {
1655
+ "kind": "custom",
1656
+ "name": "Widget"
1657
+ },
1658
+ "description": "Optional header widget for the drawer."
1659
+ },
1660
+ {
1661
+ "name": "footer",
1662
+ "type": {
1663
+ "kind": "custom",
1664
+ "name": "Widget"
1665
+ },
1666
+ "description": "Optional footer widget for the drawer."
1667
+ }
1668
+ ]
1669
+ }
315
1670
  ]
316
1671
  },
317
1672
  "pagination": {
@@ -327,6 +1682,95 @@
327
1682
  ],
328
1683
  "exports": [
329
1684
  "GalaxyPagination"
1685
+ ],
1686
+ "category": "navigation",
1687
+ "props": [
1688
+ {
1689
+ "name": "currentPage",
1690
+ "type": {
1691
+ "kind": "primitive",
1692
+ "name": "number"
1693
+ },
1694
+ "description": "Current page number."
1695
+ },
1696
+ {
1697
+ "name": "totalPages",
1698
+ "type": {
1699
+ "kind": "primitive",
1700
+ "name": "number"
1701
+ },
1702
+ "description": "Total number of pages."
1703
+ },
1704
+ {
1705
+ "name": "onPageChange",
1706
+ "type": {
1707
+ "kind": "function",
1708
+ "signature": "(page: int) => void"
1709
+ },
1710
+ "description": "Called when the page changes."
1711
+ },
1712
+ {
1713
+ "name": "variant",
1714
+ "type": {
1715
+ "kind": "union",
1716
+ "values": [
1717
+ {
1718
+ "kind": "literal",
1719
+ "value": "compact"
1720
+ },
1721
+ {
1722
+ "kind": "literal",
1723
+ "value": "full"
1724
+ },
1725
+ {
1726
+ "kind": "literal",
1727
+ "value": "loadMore"
1728
+ }
1729
+ ]
1730
+ },
1731
+ "default": "compact",
1732
+ "description": "Pagination presentation variant."
1733
+ },
1734
+ {
1735
+ "name": "visiblePages",
1736
+ "type": {
1737
+ "kind": "primitive",
1738
+ "name": "number"
1739
+ },
1740
+ "default": 5,
1741
+ "description": "Number of visible pages in compact mode."
1742
+ },
1743
+ {
1744
+ "name": "loadMoreText",
1745
+ "type": {
1746
+ "kind": "primitive",
1747
+ "name": "string"
1748
+ },
1749
+ "description": "Label for load-more mode."
1750
+ },
1751
+ {
1752
+ "name": "isLoading",
1753
+ "type": {
1754
+ "kind": "primitive",
1755
+ "name": "boolean"
1756
+ },
1757
+ "default": false,
1758
+ "description": "Loading state for load-more mode."
1759
+ }
1760
+ ],
1761
+ "children": [
1762
+ {
1763
+ "name": "GalaxyPagination.compact",
1764
+ "props": []
1765
+ },
1766
+ {
1767
+ "name": "GalaxyPagination.full",
1768
+ "props": []
1769
+ },
1770
+ {
1771
+ "name": "GalaxyPagination.loadMore",
1772
+ "props": []
1773
+ }
330
1774
  ]
331
1775
  },
332
1776
  "popover": {
@@ -342,6 +1786,41 @@
342
1786
  ],
343
1787
  "exports": [
344
1788
  "GalaxyPopover"
1789
+ ],
1790
+ "category": "navigation",
1791
+ "props": [
1792
+ {
1793
+ "name": "trigger",
1794
+ "type": {
1795
+ "kind": "custom",
1796
+ "name": "Widget"
1797
+ },
1798
+ "description": "Widget that opens the popover."
1799
+ },
1800
+ {
1801
+ "name": "content",
1802
+ "type": {
1803
+ "kind": "custom",
1804
+ "name": "Widget"
1805
+ },
1806
+ "description": "Popover content widget."
1807
+ },
1808
+ {
1809
+ "name": "width",
1810
+ "type": {
1811
+ "kind": "primitive",
1812
+ "name": "number"
1813
+ },
1814
+ "description": "Optional width of the popover panel."
1815
+ },
1816
+ {
1817
+ "name": "padding",
1818
+ "type": {
1819
+ "kind": "custom",
1820
+ "name": "EdgeInsets"
1821
+ },
1822
+ "description": "Padding inside the popover panel."
1823
+ }
345
1824
  ]
346
1825
  },
347
1826
  "progress": {
@@ -357,6 +1836,42 @@
357
1836
  ],
358
1837
  "exports": [
359
1838
  "GalaxyProgress"
1839
+ ],
1840
+ "category": "feedback",
1841
+ "props": [
1842
+ {
1843
+ "name": "value",
1844
+ "type": {
1845
+ "kind": "primitive",
1846
+ "name": "number"
1847
+ },
1848
+ "description": "Progress value between 0 and 1, or null for indeterminate."
1849
+ },
1850
+ {
1851
+ "name": "backgroundColor",
1852
+ "type": {
1853
+ "kind": "custom",
1854
+ "name": "Color"
1855
+ },
1856
+ "description": "Background color of the progress track."
1857
+ },
1858
+ {
1859
+ "name": "valueColor",
1860
+ "type": {
1861
+ "kind": "custom",
1862
+ "name": "Color"
1863
+ },
1864
+ "description": "Color of the progress indicator."
1865
+ },
1866
+ {
1867
+ "name": "height",
1868
+ "type": {
1869
+ "kind": "primitive",
1870
+ "name": "number"
1871
+ },
1872
+ "default": 4,
1873
+ "description": "Height of the progress bar."
1874
+ }
360
1875
  ]
361
1876
  },
362
1877
  "radio-group": {
@@ -373,6 +1888,76 @@
373
1888
  "exports": [
374
1889
  "GalaxyRadioGroup",
375
1890
  "GalaxyRadio"
1891
+ ],
1892
+ "props": [
1893
+ {
1894
+ "name": "value",
1895
+ "type": {
1896
+ "kind": "custom",
1897
+ "name": "T?"
1898
+ },
1899
+ "description": "Controlled selected value."
1900
+ },
1901
+ {
1902
+ "name": "onChanged",
1903
+ "type": {
1904
+ "kind": "function",
1905
+ "signature": "(value: T?) => void"
1906
+ },
1907
+ "description": "Called when the value changes."
1908
+ },
1909
+ {
1910
+ "name": "options",
1911
+ "type": {
1912
+ "kind": "array",
1913
+ "of": {
1914
+ "kind": "custom",
1915
+ "name": "GalaxyRadioOption<T>"
1916
+ }
1917
+ },
1918
+ "description": "Radio options."
1919
+ },
1920
+ {
1921
+ "name": "direction",
1922
+ "type": {
1923
+ "kind": "custom",
1924
+ "name": "Axis"
1925
+ },
1926
+ "default": "Axis.vertical",
1927
+ "description": "Layout direction."
1928
+ }
1929
+ ],
1930
+ "children": [
1931
+ {
1932
+ "name": "RadioGroupItem",
1933
+ "props": [
1934
+ {
1935
+ "name": "value",
1936
+ "type": {
1937
+ "kind": "custom",
1938
+ "name": "T"
1939
+ },
1940
+ "description": "Item value."
1941
+ },
1942
+ {
1943
+ "name": "label",
1944
+ "type": {
1945
+ "kind": "primitive",
1946
+ "name": "string"
1947
+ },
1948
+ "description": "Item label."
1949
+ },
1950
+ {
1951
+ "name": "disabled",
1952
+ "type": {
1953
+ "kind": "primitive",
1954
+ "name": "boolean"
1955
+ },
1956
+ "default": false,
1957
+ "description": "Disables the item."
1958
+ }
1959
+ ]
1960
+ }
376
1961
  ]
377
1962
  },
378
1963
  "select": {
@@ -389,6 +1974,84 @@
389
1974
  "exports": [
390
1975
  "GalaxySelect",
391
1976
  "GalaxySelectItem"
1977
+ ],
1978
+ "props": [
1979
+ {
1980
+ "name": "value",
1981
+ "type": {
1982
+ "kind": "custom",
1983
+ "name": "T?"
1984
+ },
1985
+ "description": "Controlled selected value."
1986
+ },
1987
+ {
1988
+ "name": "items",
1989
+ "type": {
1990
+ "kind": "array",
1991
+ "of": {
1992
+ "kind": "custom",
1993
+ "name": "GalaxySelectItem<T>"
1994
+ }
1995
+ },
1996
+ "description": "Selectable items."
1997
+ },
1998
+ {
1999
+ "name": "onChanged",
2000
+ "type": {
2001
+ "kind": "function",
2002
+ "signature": "(value: T?) => void"
2003
+ },
2004
+ "description": "Called when the value changes."
2005
+ },
2006
+ {
2007
+ "name": "label",
2008
+ "type": {
2009
+ "kind": "primitive",
2010
+ "name": "string"
2011
+ },
2012
+ "description": "Label text shown above the select."
2013
+ },
2014
+ {
2015
+ "name": "placeholder",
2016
+ "type": {
2017
+ "kind": "primitive",
2018
+ "name": "string"
2019
+ },
2020
+ "default": "Select an option",
2021
+ "description": "Placeholder when no value is selected."
2022
+ },
2023
+ {
2024
+ "name": "enabled",
2025
+ "type": {
2026
+ "kind": "primitive",
2027
+ "name": "boolean"
2028
+ },
2029
+ "default": true,
2030
+ "description": "Whether the select is enabled."
2031
+ }
2032
+ ],
2033
+ "children": [
2034
+ {
2035
+ "name": "SelectItem",
2036
+ "props": [
2037
+ {
2038
+ "name": "value",
2039
+ "type": {
2040
+ "kind": "custom",
2041
+ "name": "T"
2042
+ },
2043
+ "description": "Item value."
2044
+ },
2045
+ {
2046
+ "name": "label",
2047
+ "type": {
2048
+ "kind": "primitive",
2049
+ "name": "string"
2050
+ },
2051
+ "description": "Item label."
2052
+ }
2053
+ ]
2054
+ }
392
2055
  ]
393
2056
  },
394
2057
  "separator": {
@@ -404,6 +2067,59 @@
404
2067
  ],
405
2068
  "exports": [
406
2069
  "GalaxySeparator"
2070
+ ],
2071
+ "category": "layout",
2072
+ "props": [
2073
+ {
2074
+ "name": "orientation",
2075
+ "type": {
2076
+ "kind": "union",
2077
+ "values": [
2078
+ {
2079
+ "kind": "literal",
2080
+ "value": "horizontal"
2081
+ },
2082
+ {
2083
+ "kind": "literal",
2084
+ "value": "vertical"
2085
+ }
2086
+ ]
2087
+ },
2088
+ "default": "horizontal",
2089
+ "description": "Separator orientation."
2090
+ },
2091
+ {
2092
+ "name": "thickness",
2093
+ "type": {
2094
+ "kind": "primitive",
2095
+ "name": "number"
2096
+ },
2097
+ "description": "Line thickness."
2098
+ },
2099
+ {
2100
+ "name": "color",
2101
+ "type": {
2102
+ "kind": "custom",
2103
+ "name": "Color"
2104
+ },
2105
+ "description": "Separator color."
2106
+ },
2107
+ {
2108
+ "name": "indent",
2109
+ "type": {
2110
+ "kind": "primitive",
2111
+ "name": "number"
2112
+ },
2113
+ "description": "Leading inset for the divider."
2114
+ },
2115
+ {
2116
+ "name": "endIndent",
2117
+ "type": {
2118
+ "kind": "primitive",
2119
+ "name": "number"
2120
+ },
2121
+ "description": "Trailing inset for the divider."
2122
+ }
407
2123
  ]
408
2124
  },
409
2125
  "sheet": {
@@ -419,7 +2135,122 @@
419
2135
  ],
420
2136
  "exports": [
421
2137
  "GalaxySheet",
422
- "GalaxySheetContent"
2138
+ "GalaxySheetContent",
2139
+ "GalaxySheetHeader",
2140
+ "GalaxySheetFooter"
2141
+ ],
2142
+ "category": "layout",
2143
+ "props": [
2144
+ {
2145
+ "name": "show",
2146
+ "type": {
2147
+ "kind": "function",
2148
+ "signature": "({ context, builder, side, isDismissible, enableDrag, backgroundColor, elevation, shape, constraints }) => Future<T?>"
2149
+ },
2150
+ "description": "Static API to present a modal or side sheet."
2151
+ }
2152
+ ],
2153
+ "children": [
2154
+ {
2155
+ "name": "GalaxySheetContent",
2156
+ "props": [
2157
+ {
2158
+ "name": "header",
2159
+ "type": {
2160
+ "kind": "custom",
2161
+ "name": "Widget"
2162
+ },
2163
+ "description": "Optional header widget."
2164
+ },
2165
+ {
2166
+ "name": "body",
2167
+ "type": {
2168
+ "kind": "custom",
2169
+ "name": "Widget"
2170
+ },
2171
+ "description": "Main sheet body."
2172
+ },
2173
+ {
2174
+ "name": "footer",
2175
+ "type": {
2176
+ "kind": "custom",
2177
+ "name": "Widget"
2178
+ },
2179
+ "description": "Optional footer widget."
2180
+ },
2181
+ {
2182
+ "name": "padding",
2183
+ "type": {
2184
+ "kind": "custom",
2185
+ "name": "EdgeInsets"
2186
+ },
2187
+ "default": "EdgeInsets.all(16)",
2188
+ "description": "Padding inside the sheet."
2189
+ },
2190
+ {
2191
+ "name": "showCloseButton",
2192
+ "type": {
2193
+ "kind": "primitive",
2194
+ "name": "boolean"
2195
+ },
2196
+ "default": true,
2197
+ "description": "Whether to show the close button."
2198
+ },
2199
+ {
2200
+ "name": "onClose",
2201
+ "type": {
2202
+ "kind": "function",
2203
+ "signature": "() => void"
2204
+ },
2205
+ "description": "Custom close handler."
2206
+ }
2207
+ ]
2208
+ },
2209
+ {
2210
+ "name": "GalaxySheetHeader",
2211
+ "props": [
2212
+ {
2213
+ "name": "title",
2214
+ "type": {
2215
+ "kind": "primitive",
2216
+ "name": "string"
2217
+ },
2218
+ "description": "Header title text."
2219
+ },
2220
+ {
2221
+ "name": "description",
2222
+ "type": {
2223
+ "kind": "primitive",
2224
+ "name": "string"
2225
+ },
2226
+ "description": "Optional header description text."
2227
+ }
2228
+ ]
2229
+ },
2230
+ {
2231
+ "name": "GalaxySheetFooter",
2232
+ "props": [
2233
+ {
2234
+ "name": "children",
2235
+ "type": {
2236
+ "kind": "array",
2237
+ "of": {
2238
+ "kind": "custom",
2239
+ "name": "Widget"
2240
+ }
2241
+ },
2242
+ "description": "Footer action widgets."
2243
+ },
2244
+ {
2245
+ "name": "mainAxisAlignment",
2246
+ "type": {
2247
+ "kind": "custom",
2248
+ "name": "MainAxisAlignment"
2249
+ },
2250
+ "description": "Alignment of footer actions."
2251
+ }
2252
+ ]
2253
+ }
423
2254
  ]
424
2255
  },
425
2256
  "skeleton": {
@@ -435,6 +2266,106 @@
435
2266
  ],
436
2267
  "exports": [
437
2268
  "GalaxySkeleton"
2269
+ ],
2270
+ "props": [
2271
+ {
2272
+ "name": "width",
2273
+ "type": {
2274
+ "kind": "primitive",
2275
+ "name": "number"
2276
+ },
2277
+ "description": "Explicit width for the skeleton."
2278
+ },
2279
+ {
2280
+ "name": "height",
2281
+ "type": {
2282
+ "kind": "primitive",
2283
+ "name": "number"
2284
+ },
2285
+ "default": 16,
2286
+ "description": "Explicit height for the skeleton."
2287
+ },
2288
+ {
2289
+ "name": "borderRadius",
2290
+ "type": {
2291
+ "kind": "primitive",
2292
+ "name": "number"
2293
+ },
2294
+ "default": 4,
2295
+ "description": "Border radius of the skeleton shape."
2296
+ },
2297
+ {
2298
+ "name": "baseColor",
2299
+ "type": {
2300
+ "kind": "custom",
2301
+ "name": "Color"
2302
+ },
2303
+ "description": "Base shimmer color."
2304
+ },
2305
+ {
2306
+ "name": "highlightColor",
2307
+ "type": {
2308
+ "kind": "custom",
2309
+ "name": "Color"
2310
+ },
2311
+ "description": "Highlight shimmer color."
2312
+ }
2313
+ ]
2314
+ },
2315
+ "spinner": {
2316
+ "name": "Spinner",
2317
+ "type": "feedback",
2318
+ "description": "Animated loading spinner.",
2319
+ "files": [
2320
+ "spinner.dart"
2321
+ ],
2322
+ "dependencies": [],
2323
+ "peerDependencies": [
2324
+ "flutter"
2325
+ ],
2326
+ "exports": [
2327
+ "GalaxySpinner"
2328
+ ],
2329
+ "props": [
2330
+ {
2331
+ "name": "size",
2332
+ "type": {
2333
+ "kind": "union",
2334
+ "values": [
2335
+ {
2336
+ "kind": "literal",
2337
+ "value": "sm"
2338
+ },
2339
+ {
2340
+ "kind": "literal",
2341
+ "value": "default"
2342
+ },
2343
+ {
2344
+ "kind": "literal",
2345
+ "value": "lg"
2346
+ }
2347
+ ]
2348
+ },
2349
+ "default": "default",
2350
+ "description": "Visual size of the spinner."
2351
+ },
2352
+ {
2353
+ "name": "label",
2354
+ "type": {
2355
+ "kind": "primitive",
2356
+ "name": "string"
2357
+ },
2358
+ "default": "Loading...",
2359
+ "description": "Accessibility label announced to assistive technology."
2360
+ },
2361
+ {
2362
+ "name": "color",
2363
+ "type": {
2364
+ "kind": "custom",
2365
+ "name": "Color"
2366
+ },
2367
+ "description": "Override color for the spinner stroke."
2368
+ }
438
2369
  ]
439
2370
  },
440
2371
  "slider": {
@@ -450,6 +2381,68 @@
450
2381
  ],
451
2382
  "exports": [
452
2383
  "GalaxySlider"
2384
+ ],
2385
+ "category": "form",
2386
+ "props": [
2387
+ {
2388
+ "name": "value",
2389
+ "type": {
2390
+ "kind": "primitive",
2391
+ "name": "number"
2392
+ },
2393
+ "description": "Current slider value."
2394
+ },
2395
+ {
2396
+ "name": "onChanged",
2397
+ "type": {
2398
+ "kind": "function",
2399
+ "signature": "(value: number) => void"
2400
+ },
2401
+ "description": "Called when the slider value changes."
2402
+ },
2403
+ {
2404
+ "name": "min",
2405
+ "type": {
2406
+ "kind": "primitive",
2407
+ "name": "number"
2408
+ },
2409
+ "default": 0,
2410
+ "description": "Minimum value."
2411
+ },
2412
+ {
2413
+ "name": "max",
2414
+ "type": {
2415
+ "kind": "primitive",
2416
+ "name": "number"
2417
+ },
2418
+ "default": 100,
2419
+ "description": "Maximum value."
2420
+ },
2421
+ {
2422
+ "name": "divisions",
2423
+ "type": {
2424
+ "kind": "primitive",
2425
+ "name": "number"
2426
+ },
2427
+ "description": "Number of discrete divisions."
2428
+ },
2429
+ {
2430
+ "name": "label",
2431
+ "type": {
2432
+ "kind": "primitive",
2433
+ "name": "string"
2434
+ },
2435
+ "description": "Optional label rendered above the slider."
2436
+ },
2437
+ {
2438
+ "name": "disabled",
2439
+ "type": {
2440
+ "kind": "primitive",
2441
+ "name": "boolean"
2442
+ },
2443
+ "default": false,
2444
+ "description": "Disables the slider."
2445
+ }
453
2446
  ]
454
2447
  },
455
2448
  "switch": {
@@ -465,6 +2458,57 @@
465
2458
  ],
466
2459
  "exports": [
467
2460
  "GalaxySwitch"
2461
+ ],
2462
+ "props": [
2463
+ {
2464
+ "name": "value",
2465
+ "type": {
2466
+ "kind": "primitive",
2467
+ "name": "boolean"
2468
+ },
2469
+ "description": "Controlled checked state."
2470
+ },
2471
+ {
2472
+ "name": "onChanged",
2473
+ "type": {
2474
+ "kind": "function",
2475
+ "signature": "(value: boolean) => void"
2476
+ },
2477
+ "description": "Called when the checked state changes."
2478
+ },
2479
+ {
2480
+ "name": "activeColor",
2481
+ "type": {
2482
+ "kind": "custom",
2483
+ "name": "Color"
2484
+ },
2485
+ "description": "Active thumb color."
2486
+ },
2487
+ {
2488
+ "name": "inactiveColor",
2489
+ "type": {
2490
+ "kind": "custom",
2491
+ "name": "Color"
2492
+ },
2493
+ "description": "Inactive thumb color."
2494
+ },
2495
+ {
2496
+ "name": "trackColor",
2497
+ "type": {
2498
+ "kind": "custom",
2499
+ "name": "Color"
2500
+ },
2501
+ "description": "Active track color."
2502
+ },
2503
+ {
2504
+ "name": "disabled",
2505
+ "type": {
2506
+ "kind": "primitive",
2507
+ "name": "boolean"
2508
+ },
2509
+ "default": false,
2510
+ "description": "Disables the switch."
2511
+ }
468
2512
  ]
469
2513
  },
470
2514
  "table": {
@@ -482,6 +2526,79 @@
482
2526
  "GalaxyTable",
483
2527
  "GalaxyTableRow",
484
2528
  "GalaxyTableCell"
2529
+ ],
2530
+ "category": "data-display",
2531
+ "props": [
2532
+ {
2533
+ "name": "columns",
2534
+ "type": {
2535
+ "kind": "array",
2536
+ "of": {
2537
+ "kind": "custom",
2538
+ "name": "GalaxyTableColumn"
2539
+ }
2540
+ },
2541
+ "description": "Column definitions."
2542
+ },
2543
+ {
2544
+ "name": "rows",
2545
+ "type": {
2546
+ "kind": "array",
2547
+ "of": {
2548
+ "kind": "custom",
2549
+ "name": "GalaxyTableRow"
2550
+ }
2551
+ },
2552
+ "description": "Table rows."
2553
+ },
2554
+ {
2555
+ "name": "caption",
2556
+ "type": {
2557
+ "kind": "primitive",
2558
+ "name": "string"
2559
+ },
2560
+ "description": "Optional caption displayed below the table."
2561
+ },
2562
+ {
2563
+ "name": "showBorder",
2564
+ "type": {
2565
+ "kind": "primitive",
2566
+ "name": "boolean"
2567
+ },
2568
+ "default": true,
2569
+ "description": "Whether to show the data table border."
2570
+ }
2571
+ ],
2572
+ "children": [
2573
+ {
2574
+ "name": "GalaxyTableColumn",
2575
+ "props": [
2576
+ {
2577
+ "name": "label",
2578
+ "type": {
2579
+ "kind": "primitive",
2580
+ "name": "string"
2581
+ },
2582
+ "description": "Column label."
2583
+ }
2584
+ ]
2585
+ },
2586
+ {
2587
+ "name": "GalaxyTableRow",
2588
+ "props": [
2589
+ {
2590
+ "name": "cells",
2591
+ "type": {
2592
+ "kind": "array",
2593
+ "of": {
2594
+ "kind": "custom",
2595
+ "name": "Widget"
2596
+ }
2597
+ },
2598
+ "description": "Cell widgets for the row."
2599
+ }
2600
+ ]
2601
+ }
485
2602
  ]
486
2603
  },
487
2604
  "tabs": {
@@ -498,6 +2615,68 @@
498
2615
  "exports": [
499
2616
  "GalaxyTabs",
500
2617
  "GalaxyTab"
2618
+ ],
2619
+ "category": "layout",
2620
+ "props": [
2621
+ {
2622
+ "name": "tabs",
2623
+ "type": {
2624
+ "kind": "array",
2625
+ "of": {
2626
+ "kind": "custom",
2627
+ "name": "GalaxyTab"
2628
+ }
2629
+ },
2630
+ "description": "Tab definitions rendered by the widget."
2631
+ },
2632
+ {
2633
+ "name": "initialIndex",
2634
+ "type": {
2635
+ "kind": "primitive",
2636
+ "name": "number"
2637
+ },
2638
+ "default": 0,
2639
+ "description": "Initial selected tab index."
2640
+ },
2641
+ {
2642
+ "name": "onTabChanged",
2643
+ "type": {
2644
+ "kind": "function",
2645
+ "signature": "(index: int) => void"
2646
+ },
2647
+ "description": "Called when the selected tab changes."
2648
+ }
2649
+ ],
2650
+ "children": [
2651
+ {
2652
+ "name": "GalaxyTab",
2653
+ "props": [
2654
+ {
2655
+ "name": "label",
2656
+ "type": {
2657
+ "kind": "primitive",
2658
+ "name": "string"
2659
+ },
2660
+ "description": "Visible text for the tab."
2661
+ },
2662
+ {
2663
+ "name": "content",
2664
+ "type": {
2665
+ "kind": "custom",
2666
+ "name": "Widget"
2667
+ },
2668
+ "description": "Widget rendered inside the tab panel."
2669
+ },
2670
+ {
2671
+ "name": "icon",
2672
+ "type": {
2673
+ "kind": "custom",
2674
+ "name": "Widget"
2675
+ },
2676
+ "description": "Optional icon shown in the tab trigger."
2677
+ }
2678
+ ]
2679
+ }
501
2680
  ]
502
2681
  },
503
2682
  "textarea": {
@@ -513,6 +2692,99 @@
513
2692
  ],
514
2693
  "exports": [
515
2694
  "GalaxyTextarea"
2695
+ ],
2696
+ "category": "form",
2697
+ "props": [
2698
+ {
2699
+ "name": "controller",
2700
+ "type": {
2701
+ "kind": "custom",
2702
+ "name": "TextEditingController"
2703
+ },
2704
+ "description": "Optional controller for the textarea value."
2705
+ },
2706
+ {
2707
+ "name": "label",
2708
+ "type": {
2709
+ "kind": "primitive",
2710
+ "name": "string"
2711
+ },
2712
+ "description": "Optional label rendered above the textarea."
2713
+ },
2714
+ {
2715
+ "name": "placeholder",
2716
+ "type": {
2717
+ "kind": "primitive",
2718
+ "name": "string"
2719
+ },
2720
+ "description": "Placeholder text."
2721
+ },
2722
+ {
2723
+ "name": "error",
2724
+ "type": {
2725
+ "kind": "primitive",
2726
+ "name": "string"
2727
+ },
2728
+ "description": "Optional error message rendered below the textarea."
2729
+ },
2730
+ {
2731
+ "name": "enabled",
2732
+ "type": {
2733
+ "kind": "primitive",
2734
+ "name": "boolean"
2735
+ },
2736
+ "default": true,
2737
+ "description": "Whether the textarea is enabled."
2738
+ },
2739
+ {
2740
+ "name": "maxLines",
2741
+ "type": {
2742
+ "kind": "primitive",
2743
+ "name": "number"
2744
+ },
2745
+ "description": "Maximum number of visible lines."
2746
+ },
2747
+ {
2748
+ "name": "minLines",
2749
+ "type": {
2750
+ "kind": "primitive",
2751
+ "name": "number"
2752
+ },
2753
+ "default": 3,
2754
+ "description": "Minimum number of visible lines."
2755
+ },
2756
+ {
2757
+ "name": "maxLength",
2758
+ "type": {
2759
+ "kind": "primitive",
2760
+ "name": "number"
2761
+ },
2762
+ "description": "Maximum number of characters allowed."
2763
+ },
2764
+ {
2765
+ "name": "keyboardType",
2766
+ "type": {
2767
+ "kind": "custom",
2768
+ "name": "TextInputType"
2769
+ },
2770
+ "description": "Keyboard type used by the text field."
2771
+ },
2772
+ {
2773
+ "name": "onChanged",
2774
+ "type": {
2775
+ "kind": "function",
2776
+ "signature": "(value: string) => void"
2777
+ },
2778
+ "description": "Called when the textarea value changes."
2779
+ },
2780
+ {
2781
+ "name": "onSubmitted",
2782
+ "type": {
2783
+ "kind": "function",
2784
+ "signature": "(value: string) => void"
2785
+ },
2786
+ "description": "Called when the value is submitted."
2787
+ }
516
2788
  ]
517
2789
  },
518
2790
  "toggle": {
@@ -528,6 +2800,82 @@
528
2800
  ],
529
2801
  "exports": [
530
2802
  "GalaxyToggle"
2803
+ ],
2804
+ "category": "interactive",
2805
+ "props": [
2806
+ {
2807
+ "name": "value",
2808
+ "type": {
2809
+ "kind": "primitive",
2810
+ "name": "boolean"
2811
+ },
2812
+ "description": "Controlled toggle state."
2813
+ },
2814
+ {
2815
+ "name": "onPressed",
2816
+ "type": {
2817
+ "kind": "function",
2818
+ "signature": "(value: bool) => void"
2819
+ },
2820
+ "description": "Called when the toggle is pressed."
2821
+ },
2822
+ {
2823
+ "name": "child",
2824
+ "type": {
2825
+ "kind": "custom",
2826
+ "name": "Widget"
2827
+ },
2828
+ "description": "Toggle content."
2829
+ },
2830
+ {
2831
+ "name": "variant",
2832
+ "type": {
2833
+ "kind": "union",
2834
+ "values": [
2835
+ {
2836
+ "kind": "literal",
2837
+ "value": "default_"
2838
+ },
2839
+ {
2840
+ "kind": "literal",
2841
+ "value": "outline"
2842
+ }
2843
+ ]
2844
+ },
2845
+ "default": "default_",
2846
+ "description": "Visual style variant."
2847
+ },
2848
+ {
2849
+ "name": "size",
2850
+ "type": {
2851
+ "kind": "union",
2852
+ "values": [
2853
+ {
2854
+ "kind": "literal",
2855
+ "value": "default_"
2856
+ },
2857
+ {
2858
+ "kind": "literal",
2859
+ "value": "sm"
2860
+ },
2861
+ {
2862
+ "kind": "literal",
2863
+ "value": "lg"
2864
+ }
2865
+ ]
2866
+ },
2867
+ "default": "default_",
2868
+ "description": "Size variant."
2869
+ },
2870
+ {
2871
+ "name": "disabled",
2872
+ "type": {
2873
+ "kind": "primitive",
2874
+ "name": "boolean"
2875
+ },
2876
+ "default": false,
2877
+ "description": "Disables the toggle."
2878
+ }
531
2879
  ]
532
2880
  },
533
2881
  "toggle-group": {
@@ -543,6 +2891,117 @@
543
2891
  ],
544
2892
  "exports": [
545
2893
  "GalaxyToggleGroup"
2894
+ ],
2895
+ "category": "interactive",
2896
+ "props": [
2897
+ {
2898
+ "name": "value",
2899
+ "type": {
2900
+ "kind": "custom",
2901
+ "name": "T?"
2902
+ },
2903
+ "description": "Currently selected value."
2904
+ },
2905
+ {
2906
+ "name": "onValueChanged",
2907
+ "type": {
2908
+ "kind": "function",
2909
+ "signature": "(value: T?) => void"
2910
+ },
2911
+ "description": "Called when the selected value changes."
2912
+ },
2913
+ {
2914
+ "name": "items",
2915
+ "type": {
2916
+ "kind": "array",
2917
+ "of": {
2918
+ "kind": "custom",
2919
+ "name": "GalaxyToggleGroupItem<T>"
2920
+ }
2921
+ },
2922
+ "description": "Toggle items."
2923
+ },
2924
+ {
2925
+ "name": "variant",
2926
+ "type": {
2927
+ "kind": "union",
2928
+ "values": [
2929
+ {
2930
+ "kind": "literal",
2931
+ "value": "default_"
2932
+ },
2933
+ {
2934
+ "kind": "literal",
2935
+ "value": "outline"
2936
+ }
2937
+ ]
2938
+ },
2939
+ "default": "default_",
2940
+ "description": "Shared visual style variant for items."
2941
+ },
2942
+ {
2943
+ "name": "size",
2944
+ "type": {
2945
+ "kind": "union",
2946
+ "values": [
2947
+ {
2948
+ "kind": "literal",
2949
+ "value": "default_"
2950
+ },
2951
+ {
2952
+ "kind": "literal",
2953
+ "value": "sm"
2954
+ },
2955
+ {
2956
+ "kind": "literal",
2957
+ "value": "lg"
2958
+ }
2959
+ ]
2960
+ },
2961
+ "default": "default_",
2962
+ "description": "Shared size variant for items."
2963
+ },
2964
+ {
2965
+ "name": "allowDeselect",
2966
+ "type": {
2967
+ "kind": "primitive",
2968
+ "name": "boolean"
2969
+ },
2970
+ "default": false,
2971
+ "description": "Allow clearing the current selection."
2972
+ }
2973
+ ],
2974
+ "children": [
2975
+ {
2976
+ "name": "GalaxyToggleGroupItem",
2977
+ "props": [
2978
+ {
2979
+ "name": "value",
2980
+ "type": {
2981
+ "kind": "custom",
2982
+ "name": "T"
2983
+ },
2984
+ "description": "Unique item value."
2985
+ },
2986
+ {
2987
+ "name": "child",
2988
+ "type": {
2989
+ "kind": "custom",
2990
+ "name": "Widget"
2991
+ },
2992
+ "description": "Item content."
2993
+ },
2994
+ {
2995
+ "name": "disabled",
2996
+ "type": {
2997
+ "kind": "primitive",
2998
+ "name": "boolean"
2999
+ },
3000
+ "default": false,
3001
+ "description": "Disables the item."
3002
+ }
3003
+ ]
3004
+ }
546
3005
  ]
547
3006
  },
548
3007
  "tooltip": {
@@ -558,6 +3017,73 @@
558
3017
  ],
559
3018
  "exports": [
560
3019
  "GalaxyTooltip"
3020
+ ],
3021
+ "category": "navigation",
3022
+ "props": [
3023
+ {
3024
+ "name": "child",
3025
+ "type": {
3026
+ "kind": "custom",
3027
+ "name": "Widget"
3028
+ },
3029
+ "description": "Widget that triggers the tooltip."
3030
+ },
3031
+ {
3032
+ "name": "message",
3033
+ "type": {
3034
+ "kind": "primitive",
3035
+ "name": "string"
3036
+ },
3037
+ "description": "Tooltip text."
3038
+ },
3039
+ {
3040
+ "name": "padding",
3041
+ "type": {
3042
+ "kind": "custom",
3043
+ "name": "EdgeInsetsGeometry"
3044
+ },
3045
+ "description": "Padding inside the tooltip bubble."
3046
+ },
3047
+ {
3048
+ "name": "margin",
3049
+ "type": {
3050
+ "kind": "custom",
3051
+ "name": "EdgeInsetsGeometry"
3052
+ },
3053
+ "description": "Margin around the tooltip bubble."
3054
+ },
3055
+ {
3056
+ "name": "height",
3057
+ "type": {
3058
+ "kind": "primitive",
3059
+ "name": "number"
3060
+ },
3061
+ "description": "Tooltip height override."
3062
+ },
3063
+ {
3064
+ "name": "preferBelow",
3065
+ "type": {
3066
+ "kind": "primitive",
3067
+ "name": "boolean"
3068
+ },
3069
+ "description": "Prefer showing the tooltip below the trigger."
3070
+ },
3071
+ {
3072
+ "name": "waitDuration",
3073
+ "type": {
3074
+ "kind": "custom",
3075
+ "name": "Duration"
3076
+ },
3077
+ "description": "Delay before showing the tooltip."
3078
+ },
3079
+ {
3080
+ "name": "showDuration",
3081
+ "type": {
3082
+ "kind": "custom",
3083
+ "name": "Duration"
3084
+ },
3085
+ "description": "How long the tooltip remains visible."
3086
+ }
561
3087
  ]
562
3088
  },
563
3089
  "typography": {
@@ -573,6 +3099,181 @@
573
3099
  ],
574
3100
  "exports": [
575
3101
  "GalaxyTypography"
3102
+ ],
3103
+ "props": [
3104
+ {
3105
+ "name": "text",
3106
+ "type": {
3107
+ "kind": "primitive",
3108
+ "name": "string"
3109
+ },
3110
+ "description": "Text content."
3111
+ },
3112
+ {
3113
+ "name": "variant",
3114
+ "type": {
3115
+ "kind": "union",
3116
+ "values": [
3117
+ {
3118
+ "kind": "literal",
3119
+ "value": "h1"
3120
+ },
3121
+ {
3122
+ "kind": "literal",
3123
+ "value": "h2"
3124
+ },
3125
+ {
3126
+ "kind": "literal",
3127
+ "value": "h3"
3128
+ },
3129
+ {
3130
+ "kind": "literal",
3131
+ "value": "h4"
3132
+ },
3133
+ {
3134
+ "kind": "literal",
3135
+ "value": "p"
3136
+ },
3137
+ {
3138
+ "kind": "literal",
3139
+ "value": "lead"
3140
+ },
3141
+ {
3142
+ "kind": "literal",
3143
+ "value": "large"
3144
+ },
3145
+ {
3146
+ "kind": "literal",
3147
+ "value": "small"
3148
+ },
3149
+ {
3150
+ "kind": "literal",
3151
+ "value": "muted"
3152
+ },
3153
+ {
3154
+ "kind": "literal",
3155
+ "value": "blockquote"
3156
+ },
3157
+ {
3158
+ "kind": "literal",
3159
+ "value": "code"
3160
+ }
3161
+ ]
3162
+ },
3163
+ "default": "p",
3164
+ "description": "Typography style variant."
3165
+ },
3166
+ {
3167
+ "name": "weight",
3168
+ "type": {
3169
+ "kind": "union",
3170
+ "values": [
3171
+ {
3172
+ "kind": "literal",
3173
+ "value": "normal"
3174
+ },
3175
+ {
3176
+ "kind": "literal",
3177
+ "value": "medium"
3178
+ },
3179
+ {
3180
+ "kind": "literal",
3181
+ "value": "semiBold"
3182
+ },
3183
+ {
3184
+ "kind": "literal",
3185
+ "value": "bold"
3186
+ }
3187
+ ]
3188
+ },
3189
+ "description": "Optional weight override."
3190
+ },
3191
+ {
3192
+ "name": "color",
3193
+ "type": {
3194
+ "kind": "custom",
3195
+ "name": "Color"
3196
+ },
3197
+ "description": "Text color override."
3198
+ },
3199
+ {
3200
+ "name": "textAlign",
3201
+ "type": {
3202
+ "kind": "custom",
3203
+ "name": "TextAlign"
3204
+ },
3205
+ "description": "Text alignment."
3206
+ },
3207
+ {
3208
+ "name": "maxLines",
3209
+ "type": {
3210
+ "kind": "primitive",
3211
+ "name": "number"
3212
+ },
3213
+ "description": "Maximum number of lines."
3214
+ },
3215
+ {
3216
+ "name": "overflow",
3217
+ "type": {
3218
+ "kind": "custom",
3219
+ "name": "TextOverflow"
3220
+ },
3221
+ "description": "Overflow behavior."
3222
+ },
3223
+ {
3224
+ "name": "softWrap",
3225
+ "type": {
3226
+ "kind": "primitive",
3227
+ "name": "boolean"
3228
+ },
3229
+ "description": "Whether text should soft wrap."
3230
+ }
3231
+ ],
3232
+ "children": [
3233
+ {
3234
+ "name": "GalaxyTypography.h1",
3235
+ "props": []
3236
+ },
3237
+ {
3238
+ "name": "GalaxyTypography.h2",
3239
+ "props": []
3240
+ },
3241
+ {
3242
+ "name": "GalaxyTypography.h3",
3243
+ "props": []
3244
+ },
3245
+ {
3246
+ "name": "GalaxyTypography.h4",
3247
+ "props": []
3248
+ },
3249
+ {
3250
+ "name": "GalaxyTypography.p",
3251
+ "props": []
3252
+ },
3253
+ {
3254
+ "name": "GalaxyTypography.lead",
3255
+ "props": []
3256
+ },
3257
+ {
3258
+ "name": "GalaxyTypography.large",
3259
+ "props": []
3260
+ },
3261
+ {
3262
+ "name": "GalaxyTypography.small",
3263
+ "props": []
3264
+ },
3265
+ {
3266
+ "name": "GalaxyTypography.muted",
3267
+ "props": []
3268
+ },
3269
+ {
3270
+ "name": "GalaxyTypography.blockquote",
3271
+ "props": []
3272
+ },
3273
+ {
3274
+ "name": "GalaxyTypography.code",
3275
+ "props": []
3276
+ }
576
3277
  ]
577
3278
  },
578
3279
  "line-chart": {
@@ -593,7 +3294,149 @@
593
3294
  ],
594
3295
  "exports": [
595
3296
  "GalaxyLineChart"
596
- ]
3297
+ ],
3298
+ "props": [
3299
+ {
3300
+ "name": "data",
3301
+ "type": {
3302
+ "kind": "custom",
3303
+ "name": "ChartData"
3304
+ },
3305
+ "description": "Chart data including labels and datasets."
3306
+ },
3307
+ {
3308
+ "name": "height",
3309
+ "type": {
3310
+ "kind": "primitive",
3311
+ "name": "number"
3312
+ },
3313
+ "description": "Chart height in pixels.",
3314
+ "default": 300
3315
+ },
3316
+ {
3317
+ "name": "width",
3318
+ "type": {
3319
+ "kind": "primitive",
3320
+ "name": "number"
3321
+ },
3322
+ "description": "Chart width in pixels."
3323
+ },
3324
+ {
3325
+ "name": "theme",
3326
+ "type": {
3327
+ "kind": "custom",
3328
+ "name": "ChartTheme"
3329
+ },
3330
+ "description": "Theme mode used by the chart.",
3331
+ "default": "ChartTheme.light"
3332
+ },
3333
+ {
3334
+ "name": "legend",
3335
+ "type": {
3336
+ "kind": "primitive",
3337
+ "name": "boolean"
3338
+ },
3339
+ "description": "Whether to show the legend.",
3340
+ "default": true
3341
+ },
3342
+ {
3343
+ "name": "legendPosition",
3344
+ "type": {
3345
+ "kind": "custom",
3346
+ "name": "LegendPosition"
3347
+ },
3348
+ "description": "Legend position.",
3349
+ "default": "LegendPosition.top"
3350
+ },
3351
+ {
3352
+ "name": "grid",
3353
+ "type": {
3354
+ "kind": "custom",
3355
+ "name": "GridConfig"
3356
+ },
3357
+ "description": "Grid configuration."
3358
+ },
3359
+ {
3360
+ "name": "tooltip",
3361
+ "type": {
3362
+ "kind": "custom",
3363
+ "name": "TooltipConfig"
3364
+ },
3365
+ "description": "Tooltip configuration."
3366
+ },
3367
+ {
3368
+ "name": "animation",
3369
+ "type": {
3370
+ "kind": "primitive",
3371
+ "name": "boolean"
3372
+ },
3373
+ "description": "Whether chart animations are enabled.",
3374
+ "default": true
3375
+ },
3376
+ {
3377
+ "name": "smooth",
3378
+ "type": {
3379
+ "kind": "primitive",
3380
+ "name": "boolean"
3381
+ },
3382
+ "description": "Whether lines are rendered as smooth curves.",
3383
+ "default": true
3384
+ },
3385
+ {
3386
+ "name": "showPoints",
3387
+ "type": {
3388
+ "kind": "primitive",
3389
+ "name": "boolean"
3390
+ },
3391
+ "description": "Whether data points are shown.",
3392
+ "default": true
3393
+ },
3394
+ {
3395
+ "name": "pointSize",
3396
+ "type": {
3397
+ "kind": "primitive",
3398
+ "name": "number"
3399
+ },
3400
+ "description": "Size of data point markers.",
3401
+ "default": 4
3402
+ },
3403
+ {
3404
+ "name": "area",
3405
+ "type": {
3406
+ "kind": "primitive",
3407
+ "name": "boolean"
3408
+ },
3409
+ "description": "Whether to fill the area under the line.",
3410
+ "default": false
3411
+ },
3412
+ {
3413
+ "name": "loading",
3414
+ "type": {
3415
+ "kind": "primitive",
3416
+ "name": "boolean"
3417
+ },
3418
+ "description": "Whether the loading state is shown.",
3419
+ "default": false
3420
+ },
3421
+ {
3422
+ "name": "emptyText",
3423
+ "type": {
3424
+ "kind": "primitive",
3425
+ "name": "string"
3426
+ },
3427
+ "description": "Text shown when there is no data.",
3428
+ "default": "No data available"
3429
+ },
3430
+ {
3431
+ "name": "padding",
3432
+ "type": {
3433
+ "kind": "custom",
3434
+ "name": "EdgeInsets"
3435
+ },
3436
+ "description": "Padding inside the chart container."
3437
+ }
3438
+ ],
3439
+ "category": "charts"
597
3440
  },
598
3441
  "bar-chart": {
599
3442
  "name": "BarChart",
@@ -613,7 +3456,140 @@
613
3456
  ],
614
3457
  "exports": [
615
3458
  "GalaxyBarChart"
616
- ]
3459
+ ],
3460
+ "props": [
3461
+ {
3462
+ "name": "data",
3463
+ "type": {
3464
+ "kind": "custom",
3465
+ "name": "ChartData"
3466
+ },
3467
+ "description": "Chart data including labels and datasets."
3468
+ },
3469
+ {
3470
+ "name": "height",
3471
+ "type": {
3472
+ "kind": "primitive",
3473
+ "name": "number"
3474
+ },
3475
+ "description": "Chart height in pixels.",
3476
+ "default": 300
3477
+ },
3478
+ {
3479
+ "name": "width",
3480
+ "type": {
3481
+ "kind": "primitive",
3482
+ "name": "number"
3483
+ },
3484
+ "description": "Chart width in pixels."
3485
+ },
3486
+ {
3487
+ "name": "theme",
3488
+ "type": {
3489
+ "kind": "custom",
3490
+ "name": "ChartTheme"
3491
+ },
3492
+ "description": "Theme mode used by the chart.",
3493
+ "default": "ChartTheme.light"
3494
+ },
3495
+ {
3496
+ "name": "legend",
3497
+ "type": {
3498
+ "kind": "primitive",
3499
+ "name": "boolean"
3500
+ },
3501
+ "description": "Whether to show the legend.",
3502
+ "default": true
3503
+ },
3504
+ {
3505
+ "name": "legendPosition",
3506
+ "type": {
3507
+ "kind": "custom",
3508
+ "name": "LegendPosition"
3509
+ },
3510
+ "description": "Legend position.",
3511
+ "default": "LegendPosition.top"
3512
+ },
3513
+ {
3514
+ "name": "grid",
3515
+ "type": {
3516
+ "kind": "custom",
3517
+ "name": "GridConfig"
3518
+ },
3519
+ "description": "Grid configuration."
3520
+ },
3521
+ {
3522
+ "name": "tooltip",
3523
+ "type": {
3524
+ "kind": "custom",
3525
+ "name": "TooltipConfig"
3526
+ },
3527
+ "description": "Tooltip configuration."
3528
+ },
3529
+ {
3530
+ "name": "animation",
3531
+ "type": {
3532
+ "kind": "primitive",
3533
+ "name": "boolean"
3534
+ },
3535
+ "description": "Whether chart animations are enabled.",
3536
+ "default": true
3537
+ },
3538
+ {
3539
+ "name": "horizontal",
3540
+ "type": {
3541
+ "kind": "primitive",
3542
+ "name": "boolean"
3543
+ },
3544
+ "description": "Whether to render horizontal bars.",
3545
+ "default": false
3546
+ },
3547
+ {
3548
+ "name": "stacked",
3549
+ "type": {
3550
+ "kind": "primitive",
3551
+ "name": "boolean"
3552
+ },
3553
+ "description": "Whether datasets are stacked.",
3554
+ "default": false
3555
+ },
3556
+ {
3557
+ "name": "showDataLabels",
3558
+ "type": {
3559
+ "kind": "primitive",
3560
+ "name": "boolean"
3561
+ },
3562
+ "description": "Whether to show data labels on bars.",
3563
+ "default": false
3564
+ },
3565
+ {
3566
+ "name": "loading",
3567
+ "type": {
3568
+ "kind": "primitive",
3569
+ "name": "boolean"
3570
+ },
3571
+ "description": "Whether the loading state is shown.",
3572
+ "default": false
3573
+ },
3574
+ {
3575
+ "name": "emptyText",
3576
+ "type": {
3577
+ "kind": "primitive",
3578
+ "name": "string"
3579
+ },
3580
+ "description": "Text shown when there is no data.",
3581
+ "default": "No data available"
3582
+ },
3583
+ {
3584
+ "name": "padding",
3585
+ "type": {
3586
+ "kind": "custom",
3587
+ "name": "EdgeInsets"
3588
+ },
3589
+ "description": "Padding inside the chart container."
3590
+ }
3591
+ ],
3592
+ "category": "charts"
617
3593
  },
618
3594
  "pie-chart": {
619
3595
  "name": "PieChart",
@@ -633,7 +3609,124 @@
633
3609
  ],
634
3610
  "exports": [
635
3611
  "GalaxyPieChart"
636
- ]
3612
+ ],
3613
+ "props": [
3614
+ {
3615
+ "name": "data",
3616
+ "type": {
3617
+ "kind": "custom",
3618
+ "name": "ChartData"
3619
+ },
3620
+ "description": "Chart data including labels and datasets."
3621
+ },
3622
+ {
3623
+ "name": "height",
3624
+ "type": {
3625
+ "kind": "primitive",
3626
+ "name": "number"
3627
+ },
3628
+ "description": "Chart height in pixels.",
3629
+ "default": 300
3630
+ },
3631
+ {
3632
+ "name": "width",
3633
+ "type": {
3634
+ "kind": "primitive",
3635
+ "name": "number"
3636
+ },
3637
+ "description": "Chart width in pixels."
3638
+ },
3639
+ {
3640
+ "name": "theme",
3641
+ "type": {
3642
+ "kind": "custom",
3643
+ "name": "ChartTheme"
3644
+ },
3645
+ "description": "Theme mode used by the chart.",
3646
+ "default": "ChartTheme.light"
3647
+ },
3648
+ {
3649
+ "name": "legend",
3650
+ "type": {
3651
+ "kind": "primitive",
3652
+ "name": "boolean"
3653
+ },
3654
+ "description": "Whether to show the legend.",
3655
+ "default": true
3656
+ },
3657
+ {
3658
+ "name": "legendPosition",
3659
+ "type": {
3660
+ "kind": "custom",
3661
+ "name": "LegendPosition"
3662
+ },
3663
+ "description": "Legend position.",
3664
+ "default": "LegendPosition.right"
3665
+ },
3666
+ {
3667
+ "name": "animation",
3668
+ "type": {
3669
+ "kind": "primitive",
3670
+ "name": "boolean"
3671
+ },
3672
+ "description": "Whether chart animations are enabled.",
3673
+ "default": true
3674
+ },
3675
+ {
3676
+ "name": "innerRadius",
3677
+ "type": {
3678
+ "kind": "primitive",
3679
+ "name": "number"
3680
+ },
3681
+ "description": "Inner radius percentage.",
3682
+ "default": 0
3683
+ },
3684
+ {
3685
+ "name": "outerRadius",
3686
+ "type": {
3687
+ "kind": "primitive",
3688
+ "name": "number"
3689
+ },
3690
+ "description": "Outer radius percentage.",
3691
+ "default": 70
3692
+ },
3693
+ {
3694
+ "name": "showPercentage",
3695
+ "type": {
3696
+ "kind": "primitive",
3697
+ "name": "boolean"
3698
+ },
3699
+ "description": "Whether to show percentage labels.",
3700
+ "default": true
3701
+ },
3702
+ {
3703
+ "name": "loading",
3704
+ "type": {
3705
+ "kind": "primitive",
3706
+ "name": "boolean"
3707
+ },
3708
+ "description": "Whether the loading state is shown.",
3709
+ "default": false
3710
+ },
3711
+ {
3712
+ "name": "emptyText",
3713
+ "type": {
3714
+ "kind": "primitive",
3715
+ "name": "string"
3716
+ },
3717
+ "description": "Text shown when there is no data.",
3718
+ "default": "No data available"
3719
+ },
3720
+ {
3721
+ "name": "padding",
3722
+ "type": {
3723
+ "kind": "custom",
3724
+ "name": "EdgeInsets"
3725
+ },
3726
+ "description": "Padding inside the chart container."
3727
+ }
3728
+ ],
3729
+ "category": "charts"
637
3730
  },
638
3731
  "area-chart": {
639
3732
  "name": "AreaChart",
@@ -653,7 +3746,151 @@
653
3746
  ],
654
3747
  "exports": [
655
3748
  "GalaxyAreaChart"
656
- ]
3749
+ ],
3750
+ "props": [
3751
+ {
3752
+ "name": "data",
3753
+ "type": {
3754
+ "kind": "custom",
3755
+ "name": "ChartData"
3756
+ },
3757
+ "description": "Chart data including labels and datasets."
3758
+ },
3759
+ {
3760
+ "name": "height",
3761
+ "type": {
3762
+ "kind": "primitive",
3763
+ "name": "number"
3764
+ },
3765
+ "description": "Chart height in pixels.",
3766
+ "default": 300
3767
+ },
3768
+ {
3769
+ "name": "width",
3770
+ "type": {
3771
+ "kind": "primitive",
3772
+ "name": "number"
3773
+ },
3774
+ "description": "Chart width in pixels."
3775
+ },
3776
+ {
3777
+ "name": "theme",
3778
+ "type": {
3779
+ "kind": "custom",
3780
+ "name": "ChartTheme"
3781
+ },
3782
+ "description": "Theme mode used by the chart.",
3783
+ "default": "ChartTheme.light"
3784
+ },
3785
+ {
3786
+ "name": "legend",
3787
+ "type": {
3788
+ "kind": "primitive",
3789
+ "name": "boolean"
3790
+ },
3791
+ "description": "Whether to show the legend.",
3792
+ "default": true
3793
+ },
3794
+ {
3795
+ "name": "legendPosition",
3796
+ "type": {
3797
+ "kind": "custom",
3798
+ "name": "LegendPosition"
3799
+ },
3800
+ "description": "Legend position.",
3801
+ "default": "LegendPosition.top"
3802
+ },
3803
+ {
3804
+ "name": "animation",
3805
+ "type": {
3806
+ "kind": "primitive",
3807
+ "name": "boolean"
3808
+ },
3809
+ "description": "Whether chart animations are enabled.",
3810
+ "default": true
3811
+ },
3812
+ {
3813
+ "name": "smooth",
3814
+ "type": {
3815
+ "kind": "primitive",
3816
+ "name": "boolean"
3817
+ },
3818
+ "description": "Whether lines are rendered as smooth curves.",
3819
+ "default": true
3820
+ },
3821
+ {
3822
+ "name": "showPoints",
3823
+ "type": {
3824
+ "kind": "primitive",
3825
+ "name": "boolean"
3826
+ },
3827
+ "description": "Whether data points are shown.",
3828
+ "default": true
3829
+ },
3830
+ {
3831
+ "name": "pointSize",
3832
+ "type": {
3833
+ "kind": "primitive",
3834
+ "name": "number"
3835
+ },
3836
+ "description": "Size of data point markers.",
3837
+ "default": 4
3838
+ },
3839
+ {
3840
+ "name": "stack",
3841
+ "type": {
3842
+ "kind": "primitive",
3843
+ "name": "boolean"
3844
+ },
3845
+ "description": "Whether datasets are stacked.",
3846
+ "default": false
3847
+ },
3848
+ {
3849
+ "name": "opacity",
3850
+ "type": {
3851
+ "kind": "primitive",
3852
+ "name": "number"
3853
+ },
3854
+ "description": "Fill opacity for the area.",
3855
+ "default": 0.3
3856
+ },
3857
+ {
3858
+ "name": "gradient",
3859
+ "type": {
3860
+ "kind": "primitive",
3861
+ "name": "boolean"
3862
+ },
3863
+ "description": "Whether to use gradient area fills.",
3864
+ "default": false
3865
+ },
3866
+ {
3867
+ "name": "loading",
3868
+ "type": {
3869
+ "kind": "primitive",
3870
+ "name": "boolean"
3871
+ },
3872
+ "description": "Whether the loading state is shown.",
3873
+ "default": false
3874
+ },
3875
+ {
3876
+ "name": "emptyText",
3877
+ "type": {
3878
+ "kind": "primitive",
3879
+ "name": "string"
3880
+ },
3881
+ "description": "Text shown when there is no data.",
3882
+ "default": "No data available"
3883
+ },
3884
+ {
3885
+ "name": "padding",
3886
+ "type": {
3887
+ "kind": "custom",
3888
+ "name": "EdgeInsets"
3889
+ },
3890
+ "description": "Padding inside the chart container."
3891
+ }
3892
+ ],
3893
+ "category": "charts"
657
3894
  },
658
3895
  "radar-chart": {
659
3896
  "name": "RadarChart",
@@ -673,7 +3910,107 @@
673
3910
  ],
674
3911
  "exports": [
675
3912
  "GalaxyRadarChart"
676
- ]
3913
+ ],
3914
+ "props": [
3915
+ {
3916
+ "name": "data",
3917
+ "type": {
3918
+ "kind": "custom",
3919
+ "name": "ChartData"
3920
+ },
3921
+ "description": "Chart data including labels and datasets."
3922
+ },
3923
+ {
3924
+ "name": "height",
3925
+ "type": {
3926
+ "kind": "primitive",
3927
+ "name": "number"
3928
+ },
3929
+ "description": "Chart height in pixels.",
3930
+ "default": 300
3931
+ },
3932
+ {
3933
+ "name": "width",
3934
+ "type": {
3935
+ "kind": "primitive",
3936
+ "name": "number"
3937
+ },
3938
+ "description": "Chart width in pixels."
3939
+ },
3940
+ {
3941
+ "name": "theme",
3942
+ "type": {
3943
+ "kind": "custom",
3944
+ "name": "ChartTheme"
3945
+ },
3946
+ "description": "Theme mode used by the chart.",
3947
+ "default": "ChartTheme.light"
3948
+ },
3949
+ {
3950
+ "name": "legend",
3951
+ "type": {
3952
+ "kind": "primitive",
3953
+ "name": "boolean"
3954
+ },
3955
+ "description": "Whether to show the legend.",
3956
+ "default": true
3957
+ },
3958
+ {
3959
+ "name": "legendPosition",
3960
+ "type": {
3961
+ "kind": "custom",
3962
+ "name": "LegendPosition"
3963
+ },
3964
+ "description": "Legend position.",
3965
+ "default": "LegendPosition.top"
3966
+ },
3967
+ {
3968
+ "name": "loading",
3969
+ "type": {
3970
+ "kind": "primitive",
3971
+ "name": "boolean"
3972
+ },
3973
+ "description": "Whether the loading state is shown.",
3974
+ "default": false
3975
+ },
3976
+ {
3977
+ "name": "emptyText",
3978
+ "type": {
3979
+ "kind": "primitive",
3980
+ "name": "string"
3981
+ },
3982
+ "description": "Text shown when there is no data.",
3983
+ "default": "No data available"
3984
+ },
3985
+ {
3986
+ "name": "fill",
3987
+ "type": {
3988
+ "kind": "primitive",
3989
+ "name": "boolean"
3990
+ },
3991
+ "description": "Whether to fill the radar area.",
3992
+ "default": true
3993
+ },
3994
+ {
3995
+ "name": "opacity",
3996
+ "type": {
3997
+ "kind": "primitive",
3998
+ "name": "number"
3999
+ },
4000
+ "description": "Fill opacity.",
4001
+ "default": 0.3
4002
+ },
4003
+ {
4004
+ "name": "numberOfConcentriccircles",
4005
+ "type": {
4006
+ "kind": "primitive",
4007
+ "name": "number"
4008
+ },
4009
+ "description": "Number of concentric guide circles.",
4010
+ "default": 4
4011
+ }
4012
+ ],
4013
+ "category": "charts"
677
4014
  },
678
4015
  "scatter-chart": {
679
4016
  "name": "ScatterChart",
@@ -693,7 +4030,114 @@
693
4030
  ],
694
4031
  "exports": [
695
4032
  "GalaxyScatterChart"
696
- ]
4033
+ ],
4034
+ "props": [
4035
+ {
4036
+ "name": "data",
4037
+ "type": {
4038
+ "kind": "custom",
4039
+ "name": "ChartData"
4040
+ },
4041
+ "description": "Chart data including labels and datasets."
4042
+ },
4043
+ {
4044
+ "name": "height",
4045
+ "type": {
4046
+ "kind": "primitive",
4047
+ "name": "number"
4048
+ },
4049
+ "description": "Chart height in pixels.",
4050
+ "default": 300
4051
+ },
4052
+ {
4053
+ "name": "width",
4054
+ "type": {
4055
+ "kind": "primitive",
4056
+ "name": "number"
4057
+ },
4058
+ "description": "Chart width in pixels."
4059
+ },
4060
+ {
4061
+ "name": "theme",
4062
+ "type": {
4063
+ "kind": "custom",
4064
+ "name": "ChartTheme"
4065
+ },
4066
+ "description": "Theme mode used by the chart.",
4067
+ "default": "ChartTheme.light"
4068
+ },
4069
+ {
4070
+ "name": "legend",
4071
+ "type": {
4072
+ "kind": "primitive",
4073
+ "name": "boolean"
4074
+ },
4075
+ "description": "Whether to show the legend.",
4076
+ "default": true
4077
+ },
4078
+ {
4079
+ "name": "legendPosition",
4080
+ "type": {
4081
+ "kind": "custom",
4082
+ "name": "LegendPosition"
4083
+ },
4084
+ "description": "Legend position.",
4085
+ "default": "LegendPosition.top"
4086
+ },
4087
+ {
4088
+ "name": "loading",
4089
+ "type": {
4090
+ "kind": "primitive",
4091
+ "name": "boolean"
4092
+ },
4093
+ "description": "Whether the loading state is shown.",
4094
+ "default": false
4095
+ },
4096
+ {
4097
+ "name": "emptyText",
4098
+ "type": {
4099
+ "kind": "primitive",
4100
+ "name": "string"
4101
+ },
4102
+ "description": "Text shown when there is no data.",
4103
+ "default": "No data available"
4104
+ },
4105
+ {
4106
+ "name": "symbolSize",
4107
+ "type": {
4108
+ "kind": "primitive",
4109
+ "name": "number"
4110
+ },
4111
+ "description": "Size of scatter points.",
4112
+ "default": 8
4113
+ },
4114
+ {
4115
+ "name": "opacity",
4116
+ "type": {
4117
+ "kind": "primitive",
4118
+ "name": "number"
4119
+ },
4120
+ "description": "Opacity of scatter points.",
4121
+ "default": 0.8
4122
+ },
4123
+ {
4124
+ "name": "xAxisLabel",
4125
+ "type": {
4126
+ "kind": "primitive",
4127
+ "name": "string"
4128
+ },
4129
+ "description": "Label for the X axis."
4130
+ },
4131
+ {
4132
+ "name": "yAxisLabel",
4133
+ "type": {
4134
+ "kind": "primitive",
4135
+ "name": "string"
4136
+ },
4137
+ "description": "Label for the Y axis."
4138
+ }
4139
+ ],
4140
+ "category": "charts"
697
4141
  },
698
4142
  "mixed-chart": {
699
4143
  "name": "MixedChart",
@@ -713,7 +4157,113 @@
713
4157
  ],
714
4158
  "exports": [
715
4159
  "GalaxyMixedChart"
716
- ]
4160
+ ],
4161
+ "props": [
4162
+ {
4163
+ "name": "data",
4164
+ "type": {
4165
+ "kind": "custom",
4166
+ "name": "ChartData"
4167
+ },
4168
+ "description": "Chart data including labels and datasets."
4169
+ },
4170
+ {
4171
+ "name": "height",
4172
+ "type": {
4173
+ "kind": "primitive",
4174
+ "name": "number"
4175
+ },
4176
+ "description": "Chart height in pixels.",
4177
+ "default": 300
4178
+ },
4179
+ {
4180
+ "name": "width",
4181
+ "type": {
4182
+ "kind": "primitive",
4183
+ "name": "number"
4184
+ },
4185
+ "description": "Chart width in pixels."
4186
+ },
4187
+ {
4188
+ "name": "theme",
4189
+ "type": {
4190
+ "kind": "custom",
4191
+ "name": "ChartTheme"
4192
+ },
4193
+ "description": "Theme mode used by the chart.",
4194
+ "default": "ChartTheme.light"
4195
+ },
4196
+ {
4197
+ "name": "legend",
4198
+ "type": {
4199
+ "kind": "primitive",
4200
+ "name": "boolean"
4201
+ },
4202
+ "description": "Whether to show the legend.",
4203
+ "default": true
4204
+ },
4205
+ {
4206
+ "name": "legendPosition",
4207
+ "type": {
4208
+ "kind": "custom",
4209
+ "name": "LegendPosition"
4210
+ },
4211
+ "description": "Legend position.",
4212
+ "default": "LegendPosition.top"
4213
+ },
4214
+ {
4215
+ "name": "grid",
4216
+ "type": {
4217
+ "kind": "custom",
4218
+ "name": "GridConfig"
4219
+ },
4220
+ "description": "Grid configuration."
4221
+ },
4222
+ {
4223
+ "name": "tooltip",
4224
+ "type": {
4225
+ "kind": "custom",
4226
+ "name": "TooltipConfig"
4227
+ },
4228
+ "description": "Tooltip configuration."
4229
+ },
4230
+ {
4231
+ "name": "animation",
4232
+ "type": {
4233
+ "kind": "primitive",
4234
+ "name": "boolean"
4235
+ },
4236
+ "description": "Whether chart animations are enabled.",
4237
+ "default": true
4238
+ },
4239
+ {
4240
+ "name": "loading",
4241
+ "type": {
4242
+ "kind": "primitive",
4243
+ "name": "boolean"
4244
+ },
4245
+ "description": "Whether the loading state is shown.",
4246
+ "default": false
4247
+ },
4248
+ {
4249
+ "name": "emptyText",
4250
+ "type": {
4251
+ "kind": "primitive",
4252
+ "name": "string"
4253
+ },
4254
+ "description": "Text shown when there is no data.",
4255
+ "default": "No data available"
4256
+ },
4257
+ {
4258
+ "name": "padding",
4259
+ "type": {
4260
+ "kind": "custom",
4261
+ "name": "EdgeInsets"
4262
+ },
4263
+ "description": "Padding inside the chart container."
4264
+ }
4265
+ ],
4266
+ "category": "charts"
717
4267
  },
718
4268
  "donut-chart": {
719
4269
  "name": "DonutChart",
@@ -726,11 +4276,133 @@
726
4276
  "index.dart"
727
4277
  ],
728
4278
  "dependencies": [
729
- "fl_chart"
4279
+ "fl_chart: ^0.68.0"
730
4280
  ],
731
4281
  "devDependencies": [],
732
4282
  "registryDependencies": [],
733
- "category": "charts"
4283
+ "category": "charts",
4284
+ "props": [
4285
+ {
4286
+ "name": "data",
4287
+ "type": {
4288
+ "kind": "custom",
4289
+ "name": "ChartData"
4290
+ },
4291
+ "description": "Chart data including labels and datasets."
4292
+ },
4293
+ {
4294
+ "name": "height",
4295
+ "type": {
4296
+ "kind": "primitive",
4297
+ "name": "number"
4298
+ },
4299
+ "description": "Chart height in pixels.",
4300
+ "default": 300
4301
+ },
4302
+ {
4303
+ "name": "width",
4304
+ "type": {
4305
+ "kind": "primitive",
4306
+ "name": "number"
4307
+ },
4308
+ "description": "Chart width in pixels."
4309
+ },
4310
+ {
4311
+ "name": "theme",
4312
+ "type": {
4313
+ "kind": "custom",
4314
+ "name": "ChartTheme"
4315
+ },
4316
+ "description": "Theme mode used by the chart.",
4317
+ "default": "ChartTheme.light"
4318
+ },
4319
+ {
4320
+ "name": "legend",
4321
+ "type": {
4322
+ "kind": "primitive",
4323
+ "name": "boolean"
4324
+ },
4325
+ "description": "Whether to show the legend.",
4326
+ "default": true
4327
+ },
4328
+ {
4329
+ "name": "legendPosition",
4330
+ "type": {
4331
+ "kind": "custom",
4332
+ "name": "LegendPosition"
4333
+ },
4334
+ "description": "Legend position.",
4335
+ "default": "LegendPosition.right"
4336
+ },
4337
+ {
4338
+ "name": "animation",
4339
+ "type": {
4340
+ "kind": "primitive",
4341
+ "name": "boolean"
4342
+ },
4343
+ "description": "Whether chart animations are enabled.",
4344
+ "default": true
4345
+ },
4346
+ {
4347
+ "name": "innerRadius",
4348
+ "type": {
4349
+ "kind": "primitive",
4350
+ "name": "number"
4351
+ },
4352
+ "description": "Inner radius percentage.",
4353
+ "default": 50
4354
+ },
4355
+ {
4356
+ "name": "outerRadius",
4357
+ "type": {
4358
+ "kind": "primitive",
4359
+ "name": "number"
4360
+ },
4361
+ "description": "Outer radius percentage.",
4362
+ "default": 70
4363
+ },
4364
+ {
4365
+ "name": "showPercentage",
4366
+ "type": {
4367
+ "kind": "primitive",
4368
+ "name": "boolean"
4369
+ },
4370
+ "description": "Whether to show percentage labels.",
4371
+ "default": true
4372
+ },
4373
+ {
4374
+ "name": "loading",
4375
+ "type": {
4376
+ "kind": "primitive",
4377
+ "name": "boolean"
4378
+ },
4379
+ "description": "Whether the loading state is shown.",
4380
+ "default": false
4381
+ },
4382
+ {
4383
+ "name": "emptyText",
4384
+ "type": {
4385
+ "kind": "primitive",
4386
+ "name": "string"
4387
+ },
4388
+ "description": "Text shown when there is no data.",
4389
+ "default": "No data available"
4390
+ },
4391
+ {
4392
+ "name": "padding",
4393
+ "type": {
4394
+ "kind": "custom",
4395
+ "name": "EdgeInsets"
4396
+ },
4397
+ "description": "Padding inside the chart container."
4398
+ }
4399
+ ],
4400
+ "peerDependencies": [
4401
+ "flutter"
4402
+ ],
4403
+ "exports": [
4404
+ "GalaxyDonutChart"
4405
+ ]
734
4406
  },
735
4407
  "gauge-chart": {
736
4408
  "name": "GaugeChart",
@@ -743,11 +4415,164 @@
743
4415
  "index.dart"
744
4416
  ],
745
4417
  "dependencies": [
746
- "fl_chart"
4418
+ "fl_chart: ^0.68.0"
747
4419
  ],
748
4420
  "devDependencies": [],
749
4421
  "registryDependencies": [],
750
- "category": "charts"
4422
+ "category": "charts",
4423
+ "props": [
4424
+ {
4425
+ "name": "value",
4426
+ "type": {
4427
+ "kind": "primitive",
4428
+ "name": "number"
4429
+ },
4430
+ "description": "Current gauge value."
4431
+ },
4432
+ {
4433
+ "name": "min",
4434
+ "type": {
4435
+ "kind": "primitive",
4436
+ "name": "number"
4437
+ },
4438
+ "description": "Minimum gauge value.",
4439
+ "default": 0
4440
+ },
4441
+ {
4442
+ "name": "max",
4443
+ "type": {
4444
+ "kind": "primitive",
4445
+ "name": "number"
4446
+ },
4447
+ "description": "Maximum gauge value.",
4448
+ "default": 100
4449
+ },
4450
+ {
4451
+ "name": "height",
4452
+ "type": {
4453
+ "kind": "primitive",
4454
+ "name": "number"
4455
+ },
4456
+ "description": "Chart height in pixels.",
4457
+ "default": 300
4458
+ },
4459
+ {
4460
+ "name": "width",
4461
+ "type": {
4462
+ "kind": "primitive",
4463
+ "name": "number"
4464
+ },
4465
+ "description": "Chart width in pixels."
4466
+ },
4467
+ {
4468
+ "name": "theme",
4469
+ "type": {
4470
+ "kind": "custom",
4471
+ "name": "ChartTheme"
4472
+ },
4473
+ "description": "Theme mode used by the chart.",
4474
+ "default": "ChartTheme.light"
4475
+ },
4476
+ {
4477
+ "name": "startAngle",
4478
+ "type": {
4479
+ "kind": "primitive",
4480
+ "name": "number"
4481
+ },
4482
+ "description": "Start angle for the gauge arc."
4483
+ },
4484
+ {
4485
+ "name": "endAngle",
4486
+ "type": {
4487
+ "kind": "primitive",
4488
+ "name": "number"
4489
+ },
4490
+ "description": "End angle for the gauge arc."
4491
+ },
4492
+ {
4493
+ "name": "showProgress",
4494
+ "type": {
4495
+ "kind": "primitive",
4496
+ "name": "boolean"
4497
+ },
4498
+ "description": "Whether to show the progress arc.",
4499
+ "default": true
4500
+ },
4501
+ {
4502
+ "name": "showPointer",
4503
+ "type": {
4504
+ "kind": "primitive",
4505
+ "name": "boolean"
4506
+ },
4507
+ "description": "Whether to show the gauge pointer.",
4508
+ "default": true
4509
+ },
4510
+ {
4511
+ "name": "title",
4512
+ "type": {
4513
+ "kind": "primitive",
4514
+ "name": "string"
4515
+ },
4516
+ "description": "Optional gauge title."
4517
+ },
4518
+ {
4519
+ "name": "unit",
4520
+ "type": {
4521
+ "kind": "primitive",
4522
+ "name": "string"
4523
+ },
4524
+ "description": "Optional value unit."
4525
+ },
4526
+ {
4527
+ "name": "zones",
4528
+ "type": {
4529
+ "kind": "custom",
4530
+ "name": "List<GaugeZone>"
4531
+ },
4532
+ "description": "Color ranges for the gauge."
4533
+ },
4534
+ {
4535
+ "name": "color",
4536
+ "type": {
4537
+ "kind": "custom",
4538
+ "name": "Color"
4539
+ },
4540
+ "description": "Single color for the gauge."
4541
+ },
4542
+ {
4543
+ "name": "loading",
4544
+ "type": {
4545
+ "kind": "primitive",
4546
+ "name": "boolean"
4547
+ },
4548
+ "description": "Whether the loading state is shown.",
4549
+ "default": false
4550
+ },
4551
+ {
4552
+ "name": "emptyText",
4553
+ "type": {
4554
+ "kind": "primitive",
4555
+ "name": "string"
4556
+ },
4557
+ "description": "Text shown when there is no data.",
4558
+ "default": "No data available"
4559
+ },
4560
+ {
4561
+ "name": "padding",
4562
+ "type": {
4563
+ "kind": "custom",
4564
+ "name": "EdgeInsets"
4565
+ },
4566
+ "description": "Padding inside the chart container."
4567
+ }
4568
+ ],
4569
+ "peerDependencies": [
4570
+ "flutter"
4571
+ ],
4572
+ "exports": [
4573
+ "GalaxyGaugeChart",
4574
+ "GaugeZone"
4575
+ ]
751
4576
  }
752
4577
  },
753
4578
  "groups": {
@@ -839,4 +4664,4 @@
839
4664
  ]
840
4665
  }
841
4666
  }
842
- }
4667
+ }