@ng-primitives/mcp 0.115.2 → 0.117.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.
@@ -47,7 +47,8 @@
47
47
  "name": "ngpAccordionItemDisabled",
48
48
  "type": "boolean",
49
49
  "description": "Whether the accordion item is disabled.",
50
- "isRequired": false
50
+ "isRequired": false,
51
+ "defaultValue": "false"
51
52
  }
52
53
  ],
53
54
  "outputs": []
@@ -64,31 +65,36 @@
64
65
  "name": "ngpAccordionType",
65
66
  "type": "'single' | 'multiple'",
66
67
  "description": "The type of the accordion.",
67
- "isRequired": false
68
+ "isRequired": false,
69
+ "defaultValue": "'single'"
68
70
  },
69
71
  {
70
72
  "name": "ngpAccordionCollapsible",
71
73
  "type": "boolean",
72
74
  "description": "Whether the accordion is collapsible.",
73
- "isRequired": false
75
+ "isRequired": false,
76
+ "defaultValue": "false"
74
77
  },
75
78
  {
76
79
  "name": "ngpAccordionValue",
77
80
  "type": "T | T[] | null",
78
81
  "description": "The value of the accordion.",
79
- "isRequired": false
82
+ "isRequired": false,
83
+ "defaultValue": "null"
80
84
  },
81
85
  {
82
86
  "name": "ngpAccordionDisabled",
83
87
  "type": "boolean",
84
88
  "description": "Whether the accordion is disabled.",
85
- "isRequired": false
89
+ "isRequired": false,
90
+ "defaultValue": "false"
86
91
  },
87
92
  {
88
93
  "name": "ngpAccordionOrientation",
89
94
  "type": "'horizontal' | 'vertical'",
90
95
  "description": "The accordion orientation.",
91
- "isRequired": false
96
+ "isRequired": false,
97
+ "defaultValue": "'vertical'"
92
98
  }
93
99
  ],
94
100
  "outputs": [
@@ -137,13 +143,15 @@
137
143
  "name": "ngpThreadSuggestion",
138
144
  "type": "string",
139
145
  "description": "The suggested text to display in the input field.",
140
- "isRequired": false
146
+ "isRequired": false,
147
+ "defaultValue": "''"
141
148
  },
142
149
  {
143
150
  "name": "ngpThreadSuggestionSetPromptOnClick",
144
151
  "type": "boolean",
145
152
  "description": "Whether the suggestion should populate the prompt when clicked.",
146
- "isRequired": false
153
+ "isRequired": false,
154
+ "defaultValue": "true"
147
155
  }
148
156
  ],
149
157
  "outputs": []
@@ -194,7 +202,8 @@
194
202
  "name": "ngpThreadViewportAutoScroll",
195
203
  "type": "boolean",
196
204
  "description": "Whether the thread should automatically scroll to the bottom when new content is added.",
197
- "isRequired": false
205
+ "isRequired": false,
206
+ "defaultValue": "true"
198
207
  }
199
208
  ],
200
209
  "outputs": []
@@ -377,25 +386,29 @@
377
386
  "name": "ngpCheckboxChecked",
378
387
  "type": "boolean",
379
388
  "description": "Defines whether the checkbox is checked.",
380
- "isRequired": false
389
+ "isRequired": false,
390
+ "defaultValue": "false"
381
391
  },
382
392
  {
383
393
  "name": "ngpCheckboxIndeterminate",
384
394
  "type": "boolean",
385
395
  "description": "Defines whether the checkbox is indeterminate.",
386
- "isRequired": false
396
+ "isRequired": false,
397
+ "defaultValue": "false"
387
398
  },
388
399
  {
389
400
  "name": "ngpCheckboxRequired",
390
401
  "type": "boolean",
391
402
  "description": "Whether the checkbox is required.",
392
- "isRequired": false
403
+ "isRequired": false,
404
+ "defaultValue": "false"
393
405
  },
394
406
  {
395
407
  "name": "ngpCheckboxDisabled",
396
408
  "type": "boolean",
397
409
  "description": "Defines whether the checkbox is disabled.",
398
- "isRequired": false
410
+ "isRequired": false,
411
+ "defaultValue": "false"
399
412
  }
400
413
  ],
401
414
  "outputs": [
@@ -469,7 +482,8 @@
469
482
  "name": "ngpComboboxOptionDisabled",
470
483
  "type": "boolean",
471
484
  "description": "The disabled state of the option.",
472
- "isRequired": false
485
+ "isRequired": false,
486
+ "defaultValue": "false"
473
487
  },
474
488
  {
475
489
  "name": "ngpComboboxOptionIndex",
@@ -504,19 +518,22 @@
504
518
  "name": "ngpComboboxMultiple",
505
519
  "type": "boolean",
506
520
  "description": "Whether the combobox is multiple selection.",
507
- "isRequired": false
521
+ "isRequired": false,
522
+ "defaultValue": "false"
508
523
  },
509
524
  {
510
525
  "name": "ngpComboboxDisabled",
511
526
  "type": "boolean",
512
527
  "description": "Whether the combobox is disabled.",
513
- "isRequired": false
528
+ "isRequired": false,
529
+ "defaultValue": "false"
514
530
  },
515
531
  {
516
532
  "name": "ngpComboboxAllowDeselect",
517
533
  "type": "boolean",
518
534
  "description": "Whether the combobox allows deselection in single selection mode.",
519
- "isRequired": false
535
+ "isRequired": false,
536
+ "defaultValue": "false"
520
537
  },
521
538
  {
522
539
  "name": "ngpComboboxCompareWith",
@@ -528,19 +545,22 @@
528
545
  "name": "ngpComboboxDropdownPlacement",
529
546
  "type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
530
547
  "description": "The position of the dropdown.",
531
- "isRequired": false
548
+ "isRequired": false,
549
+ "defaultValue": "'bottom'"
532
550
  },
533
551
  {
534
552
  "name": "ngpComboboxDropdownContainer",
535
553
  "type": "string | HTMLElement | null",
536
554
  "description": "The container for the dropdown.",
537
- "isRequired": false
555
+ "isRequired": false,
556
+ "defaultValue": "'body'"
538
557
  },
539
558
  {
540
559
  "name": "ngpComboboxDropdownFlip",
541
560
  "type": "NgpFlip",
542
561
  "description": "Whether the dropdown should flip when there is not enough space. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
543
- "isRequired": false
562
+ "isRequired": false,
563
+ "defaultValue": "true"
544
564
  },
545
565
  {
546
566
  "name": "ngpComboboxScrollToOption",
@@ -578,6 +598,248 @@
578
598
  "inputs": [],
579
599
  "outputs": []
580
600
  },
601
+ "NgpContextMenuItemRadioGroup": {
602
+ "name": "NgpContextMenuItemRadioGroup",
603
+ "description": "The `NgpContextMenuItemRadioGroup` directive represents a group of radio context menu items.",
604
+ "selector": "[ngpContextMenuItemRadioGroup]",
605
+ "exportAs": [
606
+ "ngpContextMenuItemRadioGroup"
607
+ ],
608
+ "inputs": [
609
+ {
610
+ "name": "ngpContextMenuItemRadioGroupValue",
611
+ "type": "string | null",
612
+ "description": "The current value of the radio group",
613
+ "isRequired": false,
614
+ "defaultValue": "null"
615
+ }
616
+ ],
617
+ "outputs": [
618
+ {
619
+ "name": "ngpContextMenuItemRadioGroupValueChange",
620
+ "type": "string",
621
+ "description": "Event emitted when the value changes"
622
+ }
623
+ ]
624
+ },
625
+ "NgpContextMenuItemIndicator": {
626
+ "name": "NgpContextMenuItemIndicator",
627
+ "description": "The `NgpContextMenuItemIndicator` directive renders inside a checkbox or radio context menu item\nand exposes `data-checked` based on the parent item's checked state.",
628
+ "selector": "[ngpContextMenuItemIndicator]",
629
+ "exportAs": [
630
+ "ngpContextMenuItemIndicator"
631
+ ],
632
+ "inputs": [],
633
+ "outputs": []
634
+ },
635
+ "NgpContextMenuItem": {
636
+ "name": "NgpContextMenuItem",
637
+ "description": "The `NgpContextMenuItem` directive represents a context menu item.",
638
+ "selector": "[ngpContextMenuItem]",
639
+ "exportAs": [
640
+ "ngpContextMenuItem"
641
+ ],
642
+ "inputs": [
643
+ {
644
+ "name": "ngpContextMenuItemDisabled",
645
+ "type": "boolean",
646
+ "description": "Whether the menu item is disabled",
647
+ "isRequired": false,
648
+ "defaultValue": "false"
649
+ },
650
+ {
651
+ "name": "ngpContextMenuItemCloseOnSelect",
652
+ "type": "boolean",
653
+ "description": "Whether the menu should close when this item is selected",
654
+ "isRequired": false,
655
+ "defaultValue": "true"
656
+ }
657
+ ],
658
+ "outputs": []
659
+ },
660
+ "NgpContextMenuItemRadio": {
661
+ "name": "NgpContextMenuItemRadio",
662
+ "description": "The `NgpContextMenuItemRadio` directive represents a radio context menu item within a radio group.",
663
+ "selector": "[ngpContextMenuItemRadio]",
664
+ "exportAs": [
665
+ "ngpContextMenuItemRadio"
666
+ ],
667
+ "inputs": [
668
+ {
669
+ "name": "ngpContextMenuItemRadioValue",
670
+ "type": "string",
671
+ "description": "The value this radio item represents",
672
+ "isRequired": true
673
+ },
674
+ {
675
+ "name": "ngpContextMenuItemRadioDisabled",
676
+ "type": "boolean",
677
+ "description": "Whether the radio item is disabled",
678
+ "isRequired": false,
679
+ "defaultValue": "false"
680
+ }
681
+ ],
682
+ "outputs": []
683
+ },
684
+ "NgpContextMenuItemCheckbox": {
685
+ "name": "NgpContextMenuItemCheckbox",
686
+ "description": "The `NgpContextMenuItemCheckbox` directive represents a context menu item that can be toggled on and off.",
687
+ "selector": "[ngpContextMenuItemCheckbox]",
688
+ "exportAs": [
689
+ "ngpContextMenuItemCheckbox"
690
+ ],
691
+ "inputs": [
692
+ {
693
+ "name": "ngpContextMenuItemCheckboxChecked",
694
+ "type": "boolean",
695
+ "description": "Whether the checkbox is checked",
696
+ "isRequired": false,
697
+ "defaultValue": "false"
698
+ },
699
+ {
700
+ "name": "ngpContextMenuItemCheckboxDisabled",
701
+ "type": "boolean",
702
+ "description": "Whether the menu item checkbox is disabled",
703
+ "isRequired": false,
704
+ "defaultValue": "false"
705
+ }
706
+ ],
707
+ "outputs": [
708
+ {
709
+ "name": "ngpContextMenuItemCheckboxCheckedChange",
710
+ "type": "boolean",
711
+ "description": "Event emitted when the checked state changes"
712
+ }
713
+ ]
714
+ },
715
+ "NgpContextMenu": {
716
+ "name": "NgpContextMenu",
717
+ "description": "The `NgpContextMenu` is a container for context menu items.",
718
+ "selector": "[ngpContextMenu]",
719
+ "exportAs": [
720
+ "ngpContextMenu"
721
+ ],
722
+ "inputs": [
723
+ {
724
+ "name": "ngpContextMenuWrap",
725
+ "type": "boolean",
726
+ "description": "Whether focus should wrap around when reaching the end of the menu.",
727
+ "isRequired": false,
728
+ "defaultValue": "true"
729
+ }
730
+ ],
731
+ "outputs": []
732
+ },
733
+ "NgpContextMenuSubmenuTrigger": {
734
+ "name": "NgpContextMenuSubmenuTrigger",
735
+ "description": "The `NgpContextMenuSubmenuTrigger` directive turns a context menu item into a submenu trigger.",
736
+ "selector": "[ngpContextMenuSubmenuTrigger]",
737
+ "exportAs": [
738
+ "ngpContextMenuSubmenuTrigger"
739
+ ],
740
+ "inputs": [
741
+ {
742
+ "name": "ngpContextMenuSubmenuTrigger",
743
+ "type": "NgpOverlayContent<T> | undefined",
744
+ "description": "Access the submenu template ref.",
745
+ "isRequired": false
746
+ },
747
+ {
748
+ "name": "ngpContextMenuSubmenuTriggerDisabled",
749
+ "type": "boolean",
750
+ "description": "Define if the trigger should be disabled.",
751
+ "isRequired": false,
752
+ "defaultValue": "false"
753
+ },
754
+ {
755
+ "name": "ngpContextMenuSubmenuTriggerPlacement",
756
+ "type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
757
+ "description": "Define the placement of the submenu relative to the trigger.",
758
+ "isRequired": false,
759
+ "defaultValue": "'right-start'"
760
+ },
761
+ {
762
+ "name": "ngpContextMenuSubmenuTriggerOffset",
763
+ "type": "NgpOffset",
764
+ "description": "Define the offset of the submenu relative to the trigger.",
765
+ "isRequired": false,
766
+ "defaultValue": "0"
767
+ },
768
+ {
769
+ "name": "ngpContextMenuSubmenuTriggerFlip",
770
+ "type": "NgpFlip",
771
+ "description": "Define whether the submenu should flip when there is not enough space.",
772
+ "isRequired": false,
773
+ "defaultValue": "true"
774
+ }
775
+ ],
776
+ "outputs": []
777
+ },
778
+ "NgpContextMenuTrigger": {
779
+ "name": "NgpContextMenuTrigger",
780
+ "description": "The `NgpContextMenuTrigger` directive allows you to turn an element into a context menu trigger.\nRight-clicking or long-pressing the element will open the specified menu at the cursor position.",
781
+ "selector": "[ngpContextMenuTrigger]",
782
+ "exportAs": [
783
+ "ngpContextMenuTrigger"
784
+ ],
785
+ "inputs": [
786
+ {
787
+ "name": "ngpContextMenuTrigger",
788
+ "type": "NgpOverlayContent<T> | undefined",
789
+ "description": "The menu template ref or ComponentType to display.",
790
+ "isRequired": false
791
+ },
792
+ {
793
+ "name": "ngpContextMenuTriggerDisabled",
794
+ "type": "boolean",
795
+ "description": "Define if the trigger should be disabled.",
796
+ "isRequired": false,
797
+ "defaultValue": "false"
798
+ },
799
+ {
800
+ "name": "ngpContextMenuTriggerOffset",
801
+ "type": "NgpOffset",
802
+ "description": "Define the offset of the context menu relative to the cursor position.",
803
+ "isRequired": false,
804
+ "defaultValue": "2"
805
+ },
806
+ {
807
+ "name": "ngpContextMenuTriggerFlip",
808
+ "type": "NgpFlip",
809
+ "description": "Define whether the context menu should flip when there is not enough space.",
810
+ "isRequired": false,
811
+ "defaultValue": "true"
812
+ },
813
+ {
814
+ "name": "ngpContextMenuTriggerShift",
815
+ "type": "NgpShift",
816
+ "description": "Configure shift behavior to keep the context menu in view.",
817
+ "isRequired": false,
818
+ "defaultValue": "undefined"
819
+ },
820
+ {
821
+ "name": "ngpContextMenuTriggerContainer",
822
+ "type": "string | HTMLElement | null",
823
+ "description": "Define the container in which the context menu should be attached.",
824
+ "isRequired": false,
825
+ "defaultValue": "document.body"
826
+ },
827
+ {
828
+ "name": "ngpContextMenuTriggerScrollBehavior",
829
+ "type": "\"close\" | \"reposition\" | \"block\"",
830
+ "description": "Defines how the context menu behaves when the window is scrolled.",
831
+ "isRequired": false,
832
+ "defaultValue": "'close'"
833
+ },
834
+ {
835
+ "name": "ngpContextMenuTriggerContext",
836
+ "type": "T | undefined",
837
+ "description": "Provide context to the menu. This can be used to pass data to the menu content.",
838
+ "isRequired": false
839
+ }
840
+ ],
841
+ "outputs": []
842
+ },
581
843
  "NgpDatePickerGrid": {
582
844
  "name": "NgpDatePickerGrid",
583
845
  "description": "The grid that contains the days of the month.",
@@ -600,7 +862,8 @@
600
862
  "name": "aria-live",
601
863
  "type": "string",
602
864
  "description": "Define the aria live attribute.",
603
- "isRequired": false
865
+ "isRequired": false,
866
+ "defaultValue": "'polite'"
604
867
  }
605
868
  ],
606
869
  "outputs": []
@@ -689,7 +952,8 @@
689
952
  "name": "ngpDatePickerDisabled",
690
953
  "type": "boolean",
691
954
  "description": "Determine if the date picker is disabled.",
692
- "isRequired": false
955
+ "isRequired": false,
956
+ "defaultValue": "false"
693
957
  },
694
958
  {
695
959
  "name": "ngpDatePickerDateDisabled",
@@ -754,7 +1018,8 @@
754
1018
  "name": "ngpDateRangePickerDisabled",
755
1019
  "type": "boolean",
756
1020
  "description": "Determine if the date picker is disabled.",
757
- "isRequired": false
1021
+ "isRequired": false,
1022
+ "defaultValue": "false"
758
1023
  },
759
1024
  {
760
1025
  "name": "ngpDateRangePickerDateDisabled",
@@ -886,7 +1151,8 @@
886
1151
  "name": "ngpDialogRole",
887
1152
  "type": "NgpDialogRole | undefined",
888
1153
  "description": "The dialog role.",
889
- "isRequired": false
1154
+ "isRequired": false,
1155
+ "defaultValue": "'dialog'"
890
1156
  },
891
1157
  {
892
1158
  "name": "ngpDialogModal",
@@ -925,25 +1191,29 @@
925
1191
  "name": "ngpFileUploadMultiple",
926
1192
  "type": "boolean",
927
1193
  "description": "Whether to allow multiple files to be selected.",
928
- "isRequired": false
1194
+ "isRequired": false,
1195
+ "defaultValue": "false"
929
1196
  },
930
1197
  {
931
1198
  "name": "ngpFileUploadDirectory",
932
1199
  "type": "boolean",
933
1200
  "description": "Whether to allow the user to select directories.",
934
- "isRequired": false
1201
+ "isRequired": false,
1202
+ "defaultValue": "false"
935
1203
  },
936
1204
  {
937
1205
  "name": "ngpFileUploadDragDrop",
938
1206
  "type": "boolean",
939
1207
  "description": "Whether drag-and-drop is enabled.",
940
- "isRequired": false
1208
+ "isRequired": false,
1209
+ "defaultValue": "true"
941
1210
  },
942
1211
  {
943
1212
  "name": "ngpFileUploadDisabled",
944
1213
  "type": "boolean",
945
1214
  "description": "Whether the file upload is disabled.",
946
- "isRequired": false
1215
+ "isRequired": false,
1216
+ "defaultValue": "false"
947
1217
  }
948
1218
  ],
949
1219
  "outputs": [
@@ -987,19 +1257,22 @@
987
1257
  "name": "ngpFileDropzoneMultiple",
988
1258
  "type": "boolean",
989
1259
  "description": "Whether to allow multiple files to be selected.",
990
- "isRequired": false
1260
+ "isRequired": false,
1261
+ "defaultValue": "false"
991
1262
  },
992
1263
  {
993
1264
  "name": "ngpFileDropzoneDirectory",
994
1265
  "type": "boolean",
995
1266
  "description": "Whether to allow the user to select directories.",
996
- "isRequired": false
1267
+ "isRequired": false,
1268
+ "defaultValue": "false"
997
1269
  },
998
1270
  {
999
1271
  "name": "ngpFileDropzoneDisabled",
1000
1272
  "type": "boolean",
1001
1273
  "description": "Whether the file upload is disabled.",
1002
- "isRequired": false
1274
+ "isRequired": false,
1275
+ "defaultValue": "false"
1003
1276
  }
1004
1277
  ],
1005
1278
  "outputs": [
@@ -1032,8 +1305,9 @@
1032
1305
  "name": "ngpFocusTrapDisabled",
1033
1306
  "type": "boolean",
1034
1307
  "description": "Whether the focus trap is disabled.",
1035
- "isRequired": false
1036
- }
1308
+ "isRequired": false,
1309
+ "defaultValue": "false"
1310
+ }
1037
1311
  ],
1038
1312
  "outputs": []
1039
1313
  },
@@ -1049,7 +1323,8 @@
1049
1323
  "name": "ngpErrorValidator",
1050
1324
  "type": "string | null",
1051
1325
  "description": "The validator associated with the error message.",
1052
- "isRequired": false
1326
+ "isRequired": false,
1327
+ "defaultValue": "null"
1053
1328
  }
1054
1329
  ],
1055
1330
  "outputs": []
@@ -1096,7 +1371,8 @@
1096
1371
  "name": "ngpFormControlDisabled",
1097
1372
  "type": "boolean",
1098
1373
  "description": "Whether the form control is disabled by a parent.",
1099
- "isRequired": false
1374
+ "isRequired": false,
1375
+ "defaultValue": "false"
1100
1376
  }
1101
1377
  ],
1102
1378
  "outputs": []
@@ -1150,19 +1426,22 @@
1150
1426
  "name": "ngpInputOtpValue",
1151
1427
  "type": "string",
1152
1428
  "description": "The current value of the OTP.",
1153
- "isRequired": false
1429
+ "isRequired": false,
1430
+ "defaultValue": "''"
1154
1431
  },
1155
1432
  {
1156
1433
  "name": "ngpInputOtpPattern",
1157
1434
  "type": "string",
1158
1435
  "description": "The regex pattern for allowed characters.",
1159
- "isRequired": false
1436
+ "isRequired": false,
1437
+ "defaultValue": "'[0-9]'"
1160
1438
  },
1161
1439
  {
1162
1440
  "name": "ngpInputOtpInputMode",
1163
1441
  "type": "'numeric' | 'text' | 'decimal' | 'tel' | 'search' | 'email' | 'url'",
1164
1442
  "description": "The input mode for the hidden input.",
1165
- "isRequired": false
1443
+ "isRequired": false,
1444
+ "defaultValue": "'text'"
1166
1445
  },
1167
1446
  {
1168
1447
  "name": "ngpInputOtpPasteTransformer",
@@ -1174,13 +1453,15 @@
1174
1453
  "name": "ngpInputOtpDisabled",
1175
1454
  "type": "boolean",
1176
1455
  "description": "Whether the input-otp is disabled.",
1177
- "isRequired": false
1456
+ "isRequired": false,
1457
+ "defaultValue": "false"
1178
1458
  },
1179
1459
  {
1180
1460
  "name": "ngpInputOtpPlaceholder",
1181
1461
  "type": "string",
1182
1462
  "description": "The placeholder character to display when a slot is empty.",
1183
- "isRequired": false
1463
+ "isRequired": false,
1464
+ "defaultValue": "''"
1184
1465
  }
1185
1466
  ],
1186
1467
  "outputs": [
@@ -1208,7 +1489,8 @@
1208
1489
  "name": "ngpFocusDisabled",
1209
1490
  "type": "boolean",
1210
1491
  "description": "Whether listening for focus events is disabled.",
1211
- "isRequired": false
1492
+ "isRequired": false,
1493
+ "defaultValue": "false"
1212
1494
  }
1213
1495
  ],
1214
1496
  "outputs": [
@@ -1231,7 +1513,8 @@
1231
1513
  "name": "ngpPressDisabled",
1232
1514
  "type": "boolean",
1233
1515
  "description": "Whether listening for press events is disabled.",
1234
- "isRequired": false
1516
+ "isRequired": false,
1517
+ "defaultValue": "false"
1235
1518
  }
1236
1519
  ],
1237
1520
  "outputs": [
@@ -1264,7 +1547,8 @@
1264
1547
  "name": "ngpHoverDisabled",
1265
1548
  "type": "boolean",
1266
1549
  "description": "Whether hoving should be disabled.",
1267
- "isRequired": false
1550
+ "isRequired": false,
1551
+ "defaultValue": "false"
1268
1552
  }
1269
1553
  ],
1270
1554
  "outputs": [
@@ -1297,7 +1581,8 @@
1297
1581
  "name": "ngpFocusVisibleDisabled",
1298
1582
  "type": "boolean",
1299
1583
  "description": "Whether focus events are listened to.",
1300
- "isRequired": false
1584
+ "isRequired": false,
1585
+ "defaultValue": "false"
1301
1586
  }
1302
1587
  ],
1303
1588
  "outputs": [
@@ -1320,7 +1605,8 @@
1320
1605
  "name": "ngpMoveDisabled",
1321
1606
  "type": "boolean",
1322
1607
  "description": "Whether movement is disabled.",
1323
- "isRequired": false
1608
+ "isRequired": false,
1609
+ "defaultValue": "false"
1324
1610
  }
1325
1611
  ],
1326
1612
  "outputs": [
@@ -1399,7 +1685,8 @@
1399
1685
  "name": "ngpListboxOptionDisabled",
1400
1686
  "type": "boolean",
1401
1687
  "description": "Whether the option is disabled.",
1402
- "isRequired": false
1688
+ "isRequired": false,
1689
+ "defaultValue": "false"
1403
1690
  }
1404
1691
  ],
1405
1692
  "outputs": []
@@ -1416,19 +1703,22 @@
1416
1703
  "name": "ngpListboxMode",
1417
1704
  "type": "'single' | 'multiple'",
1418
1705
  "description": "The listbox selection mode.",
1419
- "isRequired": false
1706
+ "isRequired": false,
1707
+ "defaultValue": "'single'"
1420
1708
  },
1421
1709
  {
1422
1710
  "name": "ngpListboxValue",
1423
1711
  "type": "T[]",
1424
1712
  "description": "The listbox selection.",
1425
- "isRequired": false
1713
+ "isRequired": false,
1714
+ "defaultValue": "[]"
1426
1715
  },
1427
1716
  {
1428
1717
  "name": "ngpListboxDisabled",
1429
1718
  "type": "boolean",
1430
1719
  "description": "The listbox disabled state.",
1431
- "isRequired": false
1720
+ "isRequired": false,
1721
+ "defaultValue": "false"
1432
1722
  },
1433
1723
  {
1434
1724
  "name": "ngpListboxCompareWith",
@@ -1457,7 +1747,8 @@
1457
1747
  "name": "ngpMenuItemRadioGroupValue",
1458
1748
  "type": "string | null",
1459
1749
  "description": "The current value of the radio group",
1460
- "isRequired": false
1750
+ "isRequired": false,
1751
+ "defaultValue": "null"
1461
1752
  }
1462
1753
  ],
1463
1754
  "outputs": [
@@ -1480,13 +1771,15 @@
1480
1771
  "name": "ngpMenuItemDisabled",
1481
1772
  "type": "boolean",
1482
1773
  "description": "Whether the menu item is disabled",
1483
- "isRequired": false
1774
+ "isRequired": false,
1775
+ "defaultValue": "false"
1484
1776
  },
1485
1777
  {
1486
1778
  "name": "ngpMenuItemCloseOnSelect",
1487
1779
  "type": "boolean",
1488
1780
  "description": "Whether the menu should close when this item is selected",
1489
- "isRequired": false
1781
+ "isRequired": false,
1782
+ "defaultValue": "true"
1490
1783
  }
1491
1784
  ],
1492
1785
  "outputs": []
@@ -1509,7 +1802,8 @@
1509
1802
  "name": "ngpMenuItemRadioDisabled",
1510
1803
  "type": "boolean",
1511
1804
  "description": "Whether the radio item is disabled",
1512
- "isRequired": false
1805
+ "isRequired": false,
1806
+ "defaultValue": "false"
1513
1807
  }
1514
1808
  ],
1515
1809
  "outputs": []
@@ -1526,13 +1820,15 @@
1526
1820
  "name": "ngpMenuItemCheckboxChecked",
1527
1821
  "type": "boolean",
1528
1822
  "description": "Whether the checkbox is checked",
1529
- "isRequired": false
1823
+ "isRequired": false,
1824
+ "defaultValue": "false"
1530
1825
  },
1531
1826
  {
1532
1827
  "name": "ngpMenuItemCheckboxDisabled",
1533
1828
  "type": "boolean",
1534
1829
  "description": "Whether the menu item checkbox is disabled",
1535
- "isRequired": false
1830
+ "isRequired": false,
1831
+ "defaultValue": "false"
1536
1832
  }
1537
1833
  ],
1538
1834
  "outputs": [
@@ -1768,19 +2064,22 @@
1768
2064
  "name": "ngpMeterValue",
1769
2065
  "type": "number",
1770
2066
  "description": "The value of the meter.",
1771
- "isRequired": false
2067
+ "isRequired": false,
2068
+ "defaultValue": "0"
1772
2069
  },
1773
2070
  {
1774
2071
  "name": "ngpMeterMin",
1775
2072
  "type": "number",
1776
2073
  "description": "The minimum value of the meter.",
1777
- "isRequired": false
2074
+ "isRequired": false,
2075
+ "defaultValue": "0"
1778
2076
  },
1779
2077
  {
1780
2078
  "name": "ngpMeterMax",
1781
2079
  "type": "number",
1782
2080
  "description": "The maximum value of the meter.",
1783
- "isRequired": false
2081
+ "isRequired": false,
2082
+ "defaultValue": "100"
1784
2083
  },
1785
2084
  {
1786
2085
  "name": "ngpMeterValueLabel",
@@ -1884,7 +2183,8 @@
1884
2183
  "name": "ngpNavigationMenuValue",
1885
2184
  "type": "string | null",
1886
2185
  "description": "The currently active (open) item value.",
1887
- "isRequired": false
2186
+ "isRequired": false,
2187
+ "defaultValue": "null"
1888
2188
  }
1889
2189
  ],
1890
2190
  "outputs": [
@@ -2036,7 +2336,8 @@
2036
2336
  "name": "ngpNumberFieldInputAllowWheelScrub",
2037
2337
  "type": "boolean",
2038
2338
  "description": "Whether mouse wheel changes the value when the input is focused.",
2039
- "isRequired": false
2339
+ "isRequired": false,
2340
+ "defaultValue": "false"
2040
2341
  }
2041
2342
  ],
2042
2343
  "outputs": []
@@ -2053,7 +2354,8 @@
2053
2354
  "name": "ngpNumberFieldValue",
2054
2355
  "type": "number | null",
2055
2356
  "description": "The value of the number field.",
2056
- "isRequired": false
2357
+ "isRequired": false,
2358
+ "defaultValue": "null"
2057
2359
  },
2058
2360
  {
2059
2361
  "name": "ngpNumberFieldMin",
@@ -2071,25 +2373,29 @@
2071
2373
  "name": "ngpNumberFieldStep",
2072
2374
  "type": "number",
2073
2375
  "description": "The step value.",
2074
- "isRequired": false
2376
+ "isRequired": false,
2377
+ "defaultValue": "1"
2075
2378
  },
2076
2379
  {
2077
2380
  "name": "ngpNumberFieldLargeStep",
2078
2381
  "type": "number",
2079
2382
  "description": "The large step value (used with Shift key).",
2080
- "isRequired": false
2383
+ "isRequired": false,
2384
+ "defaultValue": "10"
2081
2385
  },
2082
2386
  {
2083
2387
  "name": "ngpNumberFieldDisabled",
2084
2388
  "type": "boolean",
2085
2389
  "description": "The disabled state of the number field.",
2086
- "isRequired": false
2390
+ "isRequired": false,
2391
+ "defaultValue": "false"
2087
2392
  },
2088
2393
  {
2089
2394
  "name": "ngpNumberFieldReadonly",
2090
2395
  "type": "boolean",
2091
2396
  "description": "The readonly state of the number field.",
2092
- "isRequired": false
2397
+ "isRequired": false,
2398
+ "defaultValue": "false"
2093
2399
  }
2094
2400
  ],
2095
2401
  "outputs": [
@@ -2112,19 +2418,22 @@
2112
2418
  "name": "ngpPaginationPage",
2113
2419
  "type": "number",
2114
2420
  "description": "The currently selected page.",
2115
- "isRequired": false
2421
+ "isRequired": false,
2422
+ "defaultValue": "1"
2116
2423
  },
2117
2424
  {
2118
2425
  "name": "ngpPaginationPageCount",
2119
2426
  "type": "number",
2120
2427
  "description": "The total number of pages.",
2121
- "isRequired": false
2428
+ "isRequired": false,
2429
+ "defaultValue": "0"
2122
2430
  },
2123
2431
  {
2124
2432
  "name": "ngpPaginationDisabled",
2125
2433
  "type": "boolean",
2126
2434
  "description": "Whether the pagination is disabled.",
2127
- "isRequired": false
2435
+ "isRequired": false,
2436
+ "defaultValue": "false"
2128
2437
  }
2129
2438
  ],
2130
2439
  "outputs": [
@@ -2147,7 +2456,8 @@
2147
2456
  "name": "ngpPaginationFirstDisabled",
2148
2457
  "type": "boolean",
2149
2458
  "description": "Whether the button is disabled.",
2150
- "isRequired": false
2459
+ "isRequired": false,
2460
+ "defaultValue": "false"
2151
2461
  }
2152
2462
  ],
2153
2463
  "outputs": []
@@ -2164,7 +2474,8 @@
2164
2474
  "name": "ngpPaginationLastDisabled",
2165
2475
  "type": "boolean",
2166
2476
  "description": "Whether the button is disabled.",
2167
- "isRequired": false
2477
+ "isRequired": false,
2478
+ "defaultValue": "false"
2168
2479
  }
2169
2480
  ],
2170
2481
  "outputs": []
@@ -2181,7 +2492,8 @@
2181
2492
  "name": "ngpPaginationNextDisabled",
2182
2493
  "type": "boolean",
2183
2494
  "description": "Whether the button is disabled.",
2184
- "isRequired": false
2495
+ "isRequired": false,
2496
+ "defaultValue": "false"
2185
2497
  }
2186
2498
  ],
2187
2499
  "outputs": []
@@ -2198,7 +2510,8 @@
2198
2510
  "name": "ngpPaginationPreviousDisabled",
2199
2511
  "type": "boolean",
2200
2512
  "description": "Whether the button is disabled.",
2201
- "isRequired": false
2513
+ "isRequired": false,
2514
+ "defaultValue": "false"
2202
2515
  }
2203
2516
  ],
2204
2517
  "outputs": []
@@ -2221,7 +2534,8 @@
2221
2534
  "name": "ngpPaginationButtonDisabled",
2222
2535
  "type": "boolean",
2223
2536
  "description": "Whether the button is disabled.",
2224
- "isRequired": false
2537
+ "isRequired": false,
2538
+ "defaultValue": "false"
2225
2539
  }
2226
2540
  ],
2227
2541
  "outputs": []
@@ -2354,7 +2668,8 @@
2354
2668
  "name": "ngpPopoverTriggerAnchor",
2355
2669
  "type": "HTMLElement | null",
2356
2670
  "description": "Define an anchor element for positioning the popover.\nIf provided, the popover will be positioned relative to this element instead of the trigger.",
2357
- "isRequired": false
2671
+ "isRequired": false,
2672
+ "defaultValue": "null"
2358
2673
  },
2359
2674
  {
2360
2675
  "name": "ngpPopoverTriggerTrackPosition",
@@ -2427,7 +2742,8 @@
2427
2742
  "name": "ngpProgressValue",
2428
2743
  "type": "number | null",
2429
2744
  "description": "Define the progress value.",
2430
- "isRequired": false
2745
+ "isRequired": false,
2746
+ "defaultValue": "0"
2431
2747
  },
2432
2748
  {
2433
2749
  "name": "ngpProgressMin",
@@ -2492,13 +2808,15 @@
2492
2808
  "name": "ngpRadioGroupValue",
2493
2809
  "type": "T | null",
2494
2810
  "description": "The value of the radio group.",
2495
- "isRequired": false
2811
+ "isRequired": false,
2812
+ "defaultValue": "null"
2496
2813
  },
2497
2814
  {
2498
2815
  "name": "ngpRadioGroupDisabled",
2499
2816
  "type": "boolean",
2500
2817
  "description": "Whether the radio group is disabled.",
2501
- "isRequired": false
2818
+ "isRequired": false,
2819
+ "defaultValue": "false"
2502
2820
  },
2503
2821
  {
2504
2822
  "name": "ngpRadioGroupOrientation",
@@ -2549,7 +2867,8 @@
2549
2867
  "name": "ngpRovingFocusItemDisabled",
2550
2868
  "type": "boolean",
2551
2869
  "description": "Define if the item is disabled.",
2552
- "isRequired": false
2870
+ "isRequired": false,
2871
+ "defaultValue": "false"
2553
2872
  }
2554
2873
  ],
2555
2874
  "outputs": []
@@ -2573,19 +2892,22 @@
2573
2892
  "name": "ngpRovingFocusGroupWrap",
2574
2893
  "type": "boolean",
2575
2894
  "description": "Determine if focus should wrap when the end or beginning is reached.",
2576
- "isRequired": false
2895
+ "isRequired": false,
2896
+ "defaultValue": "true"
2577
2897
  },
2578
2898
  {
2579
2899
  "name": "ngpRovingFocusGroupHomeEnd",
2580
2900
  "type": "boolean",
2581
2901
  "description": "Determine if the home and end keys should navigate to the first and last items.",
2582
- "isRequired": false
2902
+ "isRequired": false,
2903
+ "defaultValue": "true"
2583
2904
  },
2584
2905
  {
2585
2906
  "name": "ngpRovingFocusGroupDisabled",
2586
2907
  "type": "boolean",
2587
2908
  "description": "Determine if the roving focus group is disabled.",
2588
- "isRequired": false
2909
+ "isRequired": false,
2910
+ "defaultValue": "false"
2589
2911
  }
2590
2912
  ],
2591
2913
  "outputs": []
@@ -2642,7 +2964,8 @@
2642
2964
  "name": "ngpNativeSelectDisabled",
2643
2965
  "type": "boolean",
2644
2966
  "description": "Whether the select is disabled.",
2645
- "isRequired": false
2967
+ "isRequired": false,
2968
+ "defaultValue": "false"
2646
2969
  }
2647
2970
  ],
2648
2971
  "outputs": []
@@ -2665,7 +2988,8 @@
2665
2988
  "name": "ngpSelectOptionDisabled",
2666
2989
  "type": "boolean",
2667
2990
  "description": "The disabled state of the option.",
2668
- "isRequired": false
2991
+ "isRequired": false,
2992
+ "defaultValue": "false"
2669
2993
  },
2670
2994
  {
2671
2995
  "name": "ngpSelectOptionIndex",
@@ -2700,13 +3024,15 @@
2700
3024
  "name": "ngpSelectMultiple",
2701
3025
  "type": "boolean",
2702
3026
  "description": "Whether the select is multiple selection.",
2703
- "isRequired": false
3027
+ "isRequired": false,
3028
+ "defaultValue": "false"
2704
3029
  },
2705
3030
  {
2706
3031
  "name": "ngpSelectDisabled",
2707
3032
  "type": "boolean",
2708
3033
  "description": "Whether the select is disabled.",
2709
- "isRequired": false
3034
+ "isRequired": false,
3035
+ "defaultValue": "false"
2710
3036
  },
2711
3037
  {
2712
3038
  "name": "ngpSelectCompareWith",
@@ -2718,19 +3044,22 @@
2718
3044
  "name": "ngpSelectDropdownPlacement",
2719
3045
  "type": "Placement",
2720
3046
  "description": "The position of the dropdown.",
2721
- "isRequired": false
3047
+ "isRequired": false,
3048
+ "defaultValue": "'bottom'"
2722
3049
  },
2723
3050
  {
2724
3051
  "name": "ngpSelectDropdownContainer",
2725
3052
  "type": "string | HTMLElement | null",
2726
3053
  "description": "The container for the dropdown.",
2727
- "isRequired": false
3054
+ "isRequired": false,
3055
+ "defaultValue": "'body'"
2728
3056
  },
2729
3057
  {
2730
3058
  "name": "ngpSelectDropdownFlip",
2731
3059
  "type": "NgpFlip",
2732
3060
  "description": "Whether the dropdown should flip when there is not enough space. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
2733
- "isRequired": false
3061
+ "isRequired": false,
3062
+ "defaultValue": "true"
2734
3063
  },
2735
3064
  {
2736
3065
  "name": "ngpSelectScrollToOption",
@@ -2770,7 +3099,8 @@
2770
3099
  "name": "ngpSeparatorOrientation",
2771
3100
  "type": "'horizontal' | 'vertical'",
2772
3101
  "description": "The orientation of the separator.",
2773
- "isRequired": false
3102
+ "isRequired": false,
3103
+ "defaultValue": "'horizontal'"
2774
3104
  }
2775
3105
  ],
2776
3106
  "outputs": []
@@ -2869,37 +3199,43 @@
2869
3199
  "name": "ngpSliderValue",
2870
3200
  "type": "number",
2871
3201
  "description": "The value of the slider.",
2872
- "isRequired": false
3202
+ "isRequired": false,
3203
+ "defaultValue": "0"
2873
3204
  },
2874
3205
  {
2875
3206
  "name": "ngpSliderMin",
2876
3207
  "type": "number",
2877
3208
  "description": "The minimum value of the slider.",
2878
- "isRequired": false
3209
+ "isRequired": false,
3210
+ "defaultValue": "0"
2879
3211
  },
2880
3212
  {
2881
3213
  "name": "ngpSliderMax",
2882
3214
  "type": "number",
2883
3215
  "description": "The maximum value of the slider.",
2884
- "isRequired": false
3216
+ "isRequired": false,
3217
+ "defaultValue": "100"
2885
3218
  },
2886
3219
  {
2887
3220
  "name": "ngpSliderStep",
2888
3221
  "type": "number",
2889
3222
  "description": "The step value of the slider.",
2890
- "isRequired": false
3223
+ "isRequired": false,
3224
+ "defaultValue": "1"
2891
3225
  },
2892
3226
  {
2893
3227
  "name": "ngpSliderOrientation",
2894
3228
  "type": "'horizontal' | 'vertical'",
2895
3229
  "description": "The orientation of the slider.",
2896
- "isRequired": false
3230
+ "isRequired": false,
3231
+ "defaultValue": "'horizontal'"
2897
3232
  },
2898
3233
  {
2899
3234
  "name": "ngpSliderDisabled",
2900
3235
  "type": "boolean",
2901
3236
  "description": "The disabled state of the slider.",
2902
- "isRequired": false
3237
+ "isRequired": false,
3238
+ "defaultValue": "false"
2903
3239
  }
2904
3240
  ],
2905
3241
  "outputs": [
@@ -2922,43 +3258,50 @@
2922
3258
  "name": "ngpRangeSliderLow",
2923
3259
  "type": "number",
2924
3260
  "description": "The low value of the range slider.",
2925
- "isRequired": false
3261
+ "isRequired": false,
3262
+ "defaultValue": "0"
2926
3263
  },
2927
3264
  {
2928
3265
  "name": "ngpRangeSliderHigh",
2929
3266
  "type": "number",
2930
3267
  "description": "The high value of the range slider.",
2931
- "isRequired": false
3268
+ "isRequired": false,
3269
+ "defaultValue": "100"
2932
3270
  },
2933
3271
  {
2934
3272
  "name": "ngpRangeSliderMin",
2935
3273
  "type": "number",
2936
3274
  "description": "The minimum value of the range slider.",
2937
- "isRequired": false
3275
+ "isRequired": false,
3276
+ "defaultValue": "0"
2938
3277
  },
2939
3278
  {
2940
3279
  "name": "ngpRangeSliderMax",
2941
3280
  "type": "number",
2942
3281
  "description": "The maximum value of the range slider.",
2943
- "isRequired": false
3282
+ "isRequired": false,
3283
+ "defaultValue": "100"
2944
3284
  },
2945
3285
  {
2946
3286
  "name": "ngpRangeSliderStep",
2947
3287
  "type": "number",
2948
3288
  "description": "The step value of the range slider.",
2949
- "isRequired": false
3289
+ "isRequired": false,
3290
+ "defaultValue": "1"
2950
3291
  },
2951
3292
  {
2952
3293
  "name": "ngpRangeSliderOrientation",
2953
3294
  "type": "'horizontal' | 'vertical'",
2954
3295
  "description": "The orientation of the range slider.",
2955
- "isRequired": false
3296
+ "isRequired": false,
3297
+ "defaultValue": "'horizontal'"
2956
3298
  },
2957
3299
  {
2958
3300
  "name": "ngpRangeSliderDisabled",
2959
3301
  "type": "boolean",
2960
3302
  "description": "The disabled state of the range slider.",
2961
- "isRequired": false
3303
+ "isRequired": false,
3304
+ "defaultValue": "false"
2962
3305
  }
2963
3306
  ],
2964
3307
  "outputs": [
@@ -3089,7 +3432,8 @@
3089
3432
  "name": "ngpTabsetActivateOnFocus",
3090
3433
  "type": "boolean",
3091
3434
  "description": "Whether tabs should activate on focus",
3092
- "isRequired": false
3435
+ "isRequired": false,
3436
+ "defaultValue": "true"
3093
3437
  }
3094
3438
  ],
3095
3439
  "outputs": [
@@ -3137,8 +3481,14 @@
3137
3481
  "inputs": [
3138
3482
  {
3139
3483
  "name": "ngpToggleSelected",
3140
- "type": "boolean",
3484
+ "type": "boolean | undefined",
3141
3485
  "description": "Whether the toggle is selected.",
3486
+ "isRequired": false
3487
+ },
3488
+ {
3489
+ "name": "ngpToggleDefaultSelected",
3490
+ "type": "boolean",
3491
+ "description": "The default selected state for uncontrolled usage.",
3142
3492
  "isRequired": false,
3143
3493
  "defaultValue": "false"
3144
3494
  },
@@ -3176,7 +3526,8 @@
3176
3526
  "name": "ngpToggleGroupItemDisabled",
3177
3527
  "type": "boolean",
3178
3528
  "description": "Whether the item is disabled.",
3179
- "isRequired": false
3529
+ "isRequired": false,
3530
+ "defaultValue": "false"
3180
3531
  }
3181
3532
  ],
3182
3533
  "outputs": []
@@ -3193,7 +3544,8 @@
3193
3544
  "name": "ngpToggleGroupOrientation",
3194
3545
  "type": "'horizontal' | 'vertical'",
3195
3546
  "description": "The orientation of the toggle group.",
3196
- "isRequired": false
3547
+ "isRequired": false,
3548
+ "defaultValue": "'horizontal'"
3197
3549
  },
3198
3550
  {
3199
3551
  "name": "ngpToggleGroupWrap",
@@ -3213,19 +3565,28 @@
3213
3565
  "name": "ngpToggleGroupType",
3214
3566
  "type": "\"single\" | \"multiple\"",
3215
3567
  "description": "The type of the toggle group, whether only one item can be selected or multiple.",
3216
- "isRequired": false
3568
+ "isRequired": false,
3569
+ "defaultValue": "'single'"
3217
3570
  },
3218
3571
  {
3219
3572
  "name": "ngpToggleGroupValue",
3220
- "type": "string[]",
3573
+ "type": "string[] | undefined",
3221
3574
  "description": "The selected value(s) of the toggle group.",
3222
3575
  "isRequired": false
3223
3576
  },
3577
+ {
3578
+ "name": "ngpToggleGroupDefaultValue",
3579
+ "type": "string[]",
3580
+ "description": "The default selected value(s) for uncontrolled usage.",
3581
+ "isRequired": false,
3582
+ "defaultValue": "[]"
3583
+ },
3224
3584
  {
3225
3585
  "name": "ngpToggleGroupDisabled",
3226
3586
  "type": "boolean",
3227
3587
  "description": "Whether the toggle group is disabled.",
3228
- "isRequired": false
3588
+ "isRequired": false,
3589
+ "defaultValue": "false"
3229
3590
  }
3230
3591
  ],
3231
3592
  "outputs": [
@@ -3248,7 +3609,8 @@
3248
3609
  "name": "ngpToolbarOrientation",
3249
3610
  "type": "'horizontal' | 'vertical'",
3250
3611
  "description": "The orientation of the toolbar.",
3251
- "isRequired": false
3612
+ "isRequired": false,
3613
+ "defaultValue": "'horizontal'"
3252
3614
  }
3253
3615
  ],
3254
3616
  "outputs": []
@@ -3292,7 +3654,8 @@
3292
3654
  "name": "ngpTooltipTrigger",
3293
3655
  "type": "string | NgpOverlayContent<T> | null",
3294
3656
  "description": "Access the tooltip template ref.",
3295
- "isRequired": false
3657
+ "isRequired": false,
3658
+ "defaultValue": "null"
3296
3659
  },
3297
3660
  {
3298
3661
  "name": "ngpTooltipTriggerDisabled",
@@ -3381,7 +3744,8 @@
3381
3744
  "name": "ngpTooltipTriggerPosition",
3382
3745
  "type": "NgpPosition | null",
3383
3746
  "description": "Programmatic position for the tooltip. When provided, the tooltip\nwill be positioned at these coordinates instead of the trigger element.\nUse with trackPosition=\"true\" for smooth cursor following.",
3384
- "isRequired": false
3747
+ "isRequired": false,
3748
+ "defaultValue": "null"
3385
3749
  },
3386
3750
  {
3387
3751
  "name": "ngpTooltipTriggerScrollBehavior",
@@ -3406,5 +3770,809 @@
3406
3770
  }
3407
3771
  ],
3408
3772
  "outputs": []
3773
+ },
3774
+ "NgpAccordionConfig": {
3775
+ "name": "NgpAccordionConfig",
3776
+ "properties": [
3777
+ {
3778
+ "name": "type",
3779
+ "type": "'single' | 'multiple'",
3780
+ "description": "The default type of the accordion",
3781
+ "default": "'single'"
3782
+ },
3783
+ {
3784
+ "name": "collapsible",
3785
+ "type": "boolean",
3786
+ "description": "Whether the accordion is collapsible",
3787
+ "default": "false"
3788
+ },
3789
+ {
3790
+ "name": "orientation",
3791
+ "type": "'vertical' | 'horizontal'",
3792
+ "description": "The default orientation of the accordion",
3793
+ "default": "'vertical'"
3794
+ }
3795
+ ]
3796
+ },
3797
+ "NgpAvatarConfig": {
3798
+ "name": "NgpAvatarConfig",
3799
+ "properties": [
3800
+ {
3801
+ "name": "delay",
3802
+ "type": "number",
3803
+ "description": "Define a delay before the fallback is shown. This is useful to only show the fallback for those with slower connections.",
3804
+ "default": "0"
3805
+ }
3806
+ ]
3807
+ },
3808
+ "NgpComboboxConfig": {
3809
+ "name": "NgpComboboxConfig",
3810
+ "properties": [
3811
+ {
3812
+ "name": "placement",
3813
+ "type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
3814
+ "description": "The default placement for the combobox dropdown.",
3815
+ "default": "'bottom'"
3816
+ },
3817
+ {
3818
+ "name": "container",
3819
+ "type": "HTMLElement | string | null",
3820
+ "description": "The container element or selector for the combobox dropdown. This can be used to control where the dropdown is rendered in the DOM.",
3821
+ "default": "'body'"
3822
+ },
3823
+ {
3824
+ "name": "flip",
3825
+ "type": "NgpFlip",
3826
+ "description": "Whether the combobox dropdown should flip when there is not enough space. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
3827
+ "default": "true"
3828
+ }
3829
+ ]
3830
+ },
3831
+ "NgpContextMenuConfig": {
3832
+ "name": "NgpContextMenuConfig",
3833
+ "properties": [
3834
+ {
3835
+ "name": "offset",
3836
+ "type": "NgpOffset",
3837
+ "description": "Define the offset of the context menu relative to the cursor position.",
3838
+ "default": "2"
3839
+ },
3840
+ {
3841
+ "name": "flip",
3842
+ "type": "NgpFlip",
3843
+ "description": "Define whether the context menu should flip when there is not enough space.",
3844
+ "default": "true"
3845
+ },
3846
+ {
3847
+ "name": "container",
3848
+ "type": "HTMLElement | string | null",
3849
+ "description": "Define the container element or selector in which the context menu should be attached.",
3850
+ "default": "'body'"
3851
+ },
3852
+ {
3853
+ "name": "scrollBehavior",
3854
+ "type": "'reposition' | 'block' | 'close'",
3855
+ "description": "Defines how the context menu behaves when the window is scrolled.",
3856
+ "default": "'close'"
3857
+ },
3858
+ {
3859
+ "name": "shift",
3860
+ "type": "NgpShift",
3861
+ "description": "Configure shift behavior to keep the context menu in view.",
3862
+ "default": "undefined"
3863
+ }
3864
+ ]
3865
+ },
3866
+ "NgpDatePickerConfig": {
3867
+ "name": "NgpDatePickerConfig",
3868
+ "properties": [
3869
+ {
3870
+ "name": "firstDayOfWeek",
3871
+ "type": "1 | 2 | 3 | 4 | 5 | 6 | 7",
3872
+ "description": "Define the first day of the week for the date picker calendar.",
3873
+ "default": "7 (Sunday)"
3874
+ }
3875
+ ]
3876
+ },
3877
+ "NgpDialogConfig": {
3878
+ "name": "NgpDialogConfig",
3879
+ "properties": [
3880
+ {
3881
+ "name": "viewContainerRef",
3882
+ "type": "ViewContainerRef",
3883
+ "description": "The view container to attach the dialog to."
3884
+ },
3885
+ {
3886
+ "name": "injector",
3887
+ "type": "Injector",
3888
+ "description": "The injector to use for the dialog. Defaults to the view container's injector."
3889
+ },
3890
+ {
3891
+ "name": "id",
3892
+ "type": "string",
3893
+ "description": "ID for the dialog. If omitted, a unique one will be generated."
3894
+ },
3895
+ {
3896
+ "name": "role",
3897
+ "type": "'dialog' | 'alertdialog'",
3898
+ "description": "The role of the dialog.",
3899
+ "default": "'dialog'"
3900
+ },
3901
+ {
3902
+ "name": "modal",
3903
+ "type": "boolean",
3904
+ "description": "Whether this is a modal dialog. Used to set the `aria-modal` attribute.",
3905
+ "default": "true"
3906
+ },
3907
+ {
3908
+ "name": "closeOnNavigation",
3909
+ "type": "boolean",
3910
+ "description": "Whether the dialog should close when the user navigates. This includes both browser history navigation (back/forward) and programmatic route changes (e.g. router.navigate()).",
3911
+ "default": "true"
3912
+ },
3913
+ {
3914
+ "name": "closeOnEscape",
3915
+ "type": "boolean",
3916
+ "description": "Whether the dialog should close when the user presses the escape key.",
3917
+ "default": "true"
3918
+ },
3919
+ {
3920
+ "name": "closeOnClick",
3921
+ "type": "boolean",
3922
+ "description": "Whether the dialog should close when the user clicks the overlay.",
3923
+ "default": "true"
3924
+ },
3925
+ {
3926
+ "name": "scrollStrategy",
3927
+ "type": "ScrollStrategy",
3928
+ "description": "Scroll strategy to be used for the dialog."
3929
+ },
3930
+ {
3931
+ "name": "data",
3932
+ "type": "T",
3933
+ "description": ""
3934
+ }
3935
+ ]
3936
+ },
3937
+ "NgpInteractionsConfig": {
3938
+ "name": "NgpInteractionsConfig",
3939
+ "properties": [
3940
+ {
3941
+ "name": "disabled",
3942
+ "type": "boolean",
3943
+ "description": "Whether all interactions are disabled",
3944
+ "default": "false"
3945
+ },
3946
+ {
3947
+ "name": "hover",
3948
+ "type": "boolean",
3949
+ "description": "Whether hover interactions are enabled",
3950
+ "default": "true"
3951
+ },
3952
+ {
3953
+ "name": "focus",
3954
+ "type": "boolean",
3955
+ "description": "Whether focus interactions are enabled",
3956
+ "default": "true"
3957
+ },
3958
+ {
3959
+ "name": "focusVisible",
3960
+ "type": "boolean",
3961
+ "description": "Whether focus-visible interactions are enabled",
3962
+ "default": "true"
3963
+ },
3964
+ {
3965
+ "name": "press",
3966
+ "type": "boolean",
3967
+ "description": "Whether press interactions are enabled",
3968
+ "default": "true"
3969
+ }
3970
+ ]
3971
+ },
3972
+ "NgpMenuConfig": {
3973
+ "name": "NgpMenuConfig",
3974
+ "properties": [
3975
+ {
3976
+ "name": "offset",
3977
+ "type": "NgpOffset",
3978
+ "description": "Define the offset of the menu relative to the trigger. Can be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.",
3979
+ "default": "4"
3980
+ },
3981
+ {
3982
+ "name": "placement",
3983
+ "type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
3984
+ "description": "Define the placement of the menu relative to the trigger.",
3985
+ "default": "'bottom-start'"
3986
+ },
3987
+ {
3988
+ "name": "flip",
3989
+ "type": "NgpFlip",
3990
+ "description": "Define whether the menu should flip when there is not enough space for the menu. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
3991
+ "default": "true"
3992
+ },
3993
+ {
3994
+ "name": "container",
3995
+ "type": "HTMLElement | string | null",
3996
+ "description": "Define the container element or selector in to which the menu should be attached.",
3997
+ "default": "'body'"
3998
+ },
3999
+ {
4000
+ "name": "scrollBehavior",
4001
+ "type": "'reposition' | 'block' | 'close'",
4002
+ "description": "Defines how the menu behaves when the window is scrolled.",
4003
+ "default": "scroll"
4004
+ },
4005
+ {
4006
+ "name": "shift",
4007
+ "type": "NgpShift",
4008
+ "description": "Configure shift behavior to keep the menu in view. Can be a boolean to enable/disable, or an object with padding and limiter options.",
4009
+ "default": "undefined (enabled by default in overlay)"
4010
+ },
4011
+ {
4012
+ "name": "wrap",
4013
+ "type": "boolean",
4014
+ "description": "Whether focus should wrap around when reaching the end of the menu.",
4015
+ "default": "true"
4016
+ },
4017
+ {
4018
+ "name": "cooldown",
4019
+ "type": "number",
4020
+ "description": "Cooldown duration in milliseconds. When moving from one menu to another within this duration, the showDelay is skipped for the new menu.",
4021
+ "default": "0"
4022
+ },
4023
+ {
4024
+ "name": "triggers",
4025
+ "type": "('click' | 'hover' | 'focus' | 'enter' | 'arrowkey')[]",
4026
+ "description": "Define which trigger types are enabled for the menu.",
4027
+ "default": "['click']"
4028
+ },
4029
+ {
4030
+ "name": "showDelay",
4031
+ "type": "number",
4032
+ "description": "Define the delay before the menu is displayed (hover/focus triggers).",
4033
+ "default": "0"
4034
+ },
4035
+ {
4036
+ "name": "hideDelay",
4037
+ "type": "number",
4038
+ "description": "Define the delay before the menu is hidden (hover/focus triggers).",
4039
+ "default": "0"
4040
+ }
4041
+ ]
4042
+ },
4043
+ "NgpNavigationMenuConfig": {
4044
+ "name": "NgpNavigationMenuConfig",
4045
+ "properties": [
4046
+ {
4047
+ "name": "orientation",
4048
+ "type": "'horizontal' | 'vertical'",
4049
+ "description": "Define the orientation of the navigation menu.",
4050
+ "default": "'horizontal'"
4051
+ },
4052
+ {
4053
+ "name": "showDelay",
4054
+ "type": "number",
4055
+ "description": "Define the delay in milliseconds before the content is shown.",
4056
+ "default": "200"
4057
+ },
4058
+ {
4059
+ "name": "hideDelay",
4060
+ "type": "number",
4061
+ "description": "Define the delay in milliseconds before the content is hidden.",
4062
+ "default": "150"
4063
+ },
4064
+ {
4065
+ "name": "placement",
4066
+ "type": "Placement",
4067
+ "description": "Define the placement of the content relative to the trigger.",
4068
+ "default": "'bottom-start'"
4069
+ },
4070
+ {
4071
+ "name": "offset",
4072
+ "type": "NgpOffset",
4073
+ "description": "Define the offset of the content relative to the trigger. Can be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.",
4074
+ "default": "4"
4075
+ },
4076
+ {
4077
+ "name": "flip",
4078
+ "type": "NgpFlip",
4079
+ "description": "Define whether the content should flip when there is not enough space. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
4080
+ "default": "true"
4081
+ },
4082
+ {
4083
+ "name": "shift",
4084
+ "type": "NgpShift",
4085
+ "description": "Configure shift behavior to keep the content in view. Can be a boolean to enable/disable, or an object with padding and limiter options.",
4086
+ "default": "undefined (enabled by default in overlay)"
4087
+ },
4088
+ {
4089
+ "name": "container",
4090
+ "type": "HTMLElement | string | null",
4091
+ "description": "Define the container element or selector in to which the content should be attached.",
4092
+ "default": "'body'"
4093
+ },
4094
+ {
4095
+ "name": "wrap",
4096
+ "type": "boolean",
4097
+ "description": "Whether focus should wrap around when reaching the end of the list.",
4098
+ "default": "true"
4099
+ },
4100
+ {
4101
+ "name": "cooldown",
4102
+ "type": "number",
4103
+ "description": "Define the cooldown duration in milliseconds. When moving from one navigation menu item to another within this duration, the showDelay is skipped for the new item.",
4104
+ "default": "300"
4105
+ }
4106
+ ]
4107
+ },
4108
+ "NgpPopoverConfig": {
4109
+ "name": "NgpPopoverConfig",
4110
+ "properties": [
4111
+ {
4112
+ "name": "offset",
4113
+ "type": "NgpOffset",
4114
+ "description": "Define the offset of the popover relative to the trigger. Can be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.",
4115
+ "default": "4"
4116
+ },
4117
+ {
4118
+ "name": "placement",
4119
+ "type": "Placement",
4120
+ "description": "Define the placement of the popover relative to the trigger.",
4121
+ "default": "'bottom'"
4122
+ },
4123
+ {
4124
+ "name": "showDelay",
4125
+ "type": "number",
4126
+ "description": "Define the delay before the popover is shown.",
4127
+ "default": "0"
4128
+ },
4129
+ {
4130
+ "name": "hideDelay",
4131
+ "type": "number",
4132
+ "description": "Define the delay before the popover is hidden.",
4133
+ "default": "0"
4134
+ },
4135
+ {
4136
+ "name": "flip",
4137
+ "type": "NgpFlip",
4138
+ "description": "Define whether the popover should flip when there is not enough space for the popover. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
4139
+ "default": "true"
4140
+ },
4141
+ {
4142
+ "name": "container",
4143
+ "type": "HTMLElement | string | null",
4144
+ "description": "Define the container element or selector in to which the popover should be attached.",
4145
+ "default": "'body'"
4146
+ },
4147
+ {
4148
+ "name": "closeOnOutsideClick",
4149
+ "type": "boolean",
4150
+ "description": "Define whether the popover should close when clicking outside of it.",
4151
+ "default": "true"
4152
+ },
4153
+ {
4154
+ "name": "closeOnEscape",
4155
+ "type": "boolean",
4156
+ "description": "Define whether the popover should close when the escape key is pressed.",
4157
+ "default": "true"
4158
+ },
4159
+ {
4160
+ "name": "scrollBehavior",
4161
+ "type": "'reposition' | 'block' | 'close'",
4162
+ "description": "Defines how the popover behaves when the window is scrolled.",
4163
+ "default": "scroll"
4164
+ },
4165
+ {
4166
+ "name": "shift",
4167
+ "type": "NgpShift",
4168
+ "description": "Configure shift behavior to keep the popover in view. Can be a boolean to enable/disable, or an object with padding and limiter options.",
4169
+ "default": "undefined (enabled by default in overlay)"
4170
+ },
4171
+ {
4172
+ "name": "trackPosition",
4173
+ "type": "boolean",
4174
+ "description": "Whether to track the trigger element position on every animation frame. Useful for moving elements like slider thumbs.",
4175
+ "default": "false"
4176
+ },
4177
+ {
4178
+ "name": "cooldown",
4179
+ "type": "number",
4180
+ "description": "Cooldown duration in milliseconds. When moving from one popover to another within this duration, the showDelay is skipped for the new popover.",
4181
+ "default": "0"
4182
+ }
4183
+ ]
4184
+ },
4185
+ "NgpOverlayConfig": {
4186
+ "name": "NgpOverlayConfig",
4187
+ "properties": [
4188
+ {
4189
+ "name": "content",
4190
+ "type": "NgpOverlayContent<T>",
4191
+ "description": "Content to display in the overlay (component or template)"
4192
+ },
4193
+ {
4194
+ "name": "triggerElement",
4195
+ "type": "HTMLElement",
4196
+ "description": "The element that triggers the overlay"
4197
+ },
4198
+ {
4199
+ "name": "anchorElement",
4200
+ "type": "HTMLElement | null",
4201
+ "description": "The element to use for positioning the overlay (if different from trigger)"
4202
+ },
4203
+ {
4204
+ "name": "injector",
4205
+ "type": "Injector",
4206
+ "description": "The injector to use for creating the portal"
4207
+ },
4208
+ {
4209
+ "name": "viewContainerRef",
4210
+ "type": "ViewContainerRef",
4211
+ "description": "ViewContainerRef to use for creating the portal"
4212
+ },
4213
+ {
4214
+ "name": "context",
4215
+ "type": "Signal<T | undefined>",
4216
+ "description": "Context data to pass to the overlay content"
4217
+ },
4218
+ {
4219
+ "name": "container",
4220
+ "type": "HTMLElement | string | null",
4221
+ "description": "Container element or selector to attach the overlay to (defaults to document.body)"
4222
+ },
4223
+ {
4224
+ "name": "placement",
4225
+ "type": "Signal<Placement>",
4226
+ "description": "Preferred placement of the overlay relative to the trigger."
4227
+ },
4228
+ {
4229
+ "name": "offset",
4230
+ "type": "NgpOffset",
4231
+ "description": "Offset distance between the overlay and trigger. Can be a number or an object with axis-specific offsets"
4232
+ },
4233
+ {
4234
+ "name": "shift",
4235
+ "type": "NgpShift",
4236
+ "description": "Shift configuration to keep the overlay in view. Can be a boolean, an object with options, or undefined"
4237
+ },
4238
+ {
4239
+ "name": "flip",
4240
+ "type": "NgpFlip",
4241
+ "description": "Whether to enable flip behavior when space is limited, or an object with flip options"
4242
+ },
4243
+ {
4244
+ "name": "showDelay",
4245
+ "type": "number",
4246
+ "description": "Delay before showing the overlay in milliseconds"
4247
+ },
4248
+ {
4249
+ "name": "hideDelay",
4250
+ "type": "number",
4251
+ "description": "Delay before hiding the overlay in milliseconds"
4252
+ },
4253
+ {
4254
+ "name": "strategy",
4255
+ "type": "Strategy",
4256
+ "description": "Whether the overlay should be positioned with fixed or absolute strategy"
4257
+ },
4258
+ {
4259
+ "name": "scrollBehaviour",
4260
+ "type": "'reposition' | 'block' | 'close'",
4261
+ "description": "The scroll strategy to use for the overlay"
4262
+ },
4263
+ {
4264
+ "name": "closeOnOutsideClick",
4265
+ "type": "boolean",
4266
+ "description": "Whether to close the overlay when clicking outside"
4267
+ },
4268
+ {
4269
+ "name": "closeOnEscape",
4270
+ "type": "boolean",
4271
+ "description": "Whether to close the overlay when pressing escape"
4272
+ },
4273
+ {
4274
+ "name": "restoreFocus",
4275
+ "type": "boolean | Signal<boolean>",
4276
+ "description": "Whether to restore focus to the trigger element when hiding the overlay. Can be a boolean or a signal that returns a boolean."
4277
+ },
4278
+ {
4279
+ "name": "onClose",
4280
+ "type": "(origin: FocusOrigin) => void",
4281
+ "description": "Optional callback to update an external close origin signal. Called when the overlay is hidden with the focus origin."
4282
+ },
4283
+ {
4284
+ "name": "additionalMiddleware",
4285
+ "type": "Middleware[]",
4286
+ "description": "Additional middleware for floating UI positioning"
4287
+ },
4288
+ {
4289
+ "name": "providers",
4290
+ "type": "Provider[]",
4291
+ "description": "Additional providers"
4292
+ },
4293
+ {
4294
+ "name": "trackPosition",
4295
+ "type": "boolean",
4296
+ "description": "Whether to track the trigger element position on every animation frame. Useful for moving elements like slider thumbs."
4297
+ },
4298
+ {
4299
+ "name": "position",
4300
+ "type": "Signal<NgpPosition | null>",
4301
+ "description": "Programmatic position for the overlay. When provided, the overlay will be positioned at these coordinates instead of anchoring to the trigger element. Use with trackPosition for smooth cursor following."
4302
+ },
4303
+ {
4304
+ "name": "treatTriggerClickAsOutside",
4305
+ "type": "boolean",
4306
+ "description": "If true, clicks on the trigger element count as outside clicks for dismiss purposes. Useful for context menus where the trigger area is large and clicks on it should dismiss the menu."
4307
+ },
4308
+ {
4309
+ "name": "overlayType",
4310
+ "type": "string",
4311
+ "description": "Overlay type identifier for cooldown grouping. When set, overlays of the same type share a cooldown period. For example, 'tooltip' ensures quickly moving between tooltips shows the second one immediately without the showDelay."
4312
+ },
4313
+ {
4314
+ "name": "cooldown",
4315
+ "type": "number",
4316
+ "description": "Cooldown duration in milliseconds. When moving from one overlay of the same type to another within this duration, the showDelay is skipped for the new overlay.",
4317
+ "default": "300"
4318
+ }
4319
+ ]
4320
+ },
4321
+ "NgpSelectConfig": {
4322
+ "name": "NgpSelectConfig",
4323
+ "properties": [
4324
+ {
4325
+ "name": "placement",
4326
+ "type": "Placement",
4327
+ "description": "The default placement for the select dropdown.",
4328
+ "default": "'bottom'"
4329
+ },
4330
+ {
4331
+ "name": "container",
4332
+ "type": "HTMLElement | string | null",
4333
+ "description": "The container element or selector for the select dropdown. This can be used to control where the dropdown is rendered in the DOM.",
4334
+ "default": "'body'"
4335
+ },
4336
+ {
4337
+ "name": "flip",
4338
+ "type": "NgpFlip",
4339
+ "description": "Whether the select dropdown should flip when there is not enough space. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
4340
+ "default": "true"
4341
+ }
4342
+ ]
4343
+ },
4344
+ "NgpSeparatorConfig": {
4345
+ "name": "NgpSeparatorConfig",
4346
+ "properties": [
4347
+ {
4348
+ "name": "orientation",
4349
+ "type": "'horizontal' | 'vertical'",
4350
+ "description": "The default separator orientation",
4351
+ "default": "'horizontal'"
4352
+ }
4353
+ ]
4354
+ },
4355
+ "NgpTabsConfig": {
4356
+ "name": "NgpTabsConfig",
4357
+ "properties": [
4358
+ {
4359
+ "name": "orientation",
4360
+ "type": "'horizontal' | 'vertical'",
4361
+ "description": "The orientation of the tabset",
4362
+ "default": "'horizontal'"
4363
+ },
4364
+ {
4365
+ "name": "activateOnFocus",
4366
+ "type": "boolean",
4367
+ "description": "Whether tabs should activate on focus",
4368
+ "default": "true"
4369
+ },
4370
+ {
4371
+ "name": "wrap",
4372
+ "type": "boolean",
4373
+ "description": "Whether focus should wrap within the tab list when using the keyboard.",
4374
+ "default": "true"
4375
+ }
4376
+ ]
4377
+ },
4378
+ "NgpToastConfig": {
4379
+ "name": "NgpToastConfig",
4380
+ "properties": [
4381
+ {
4382
+ "name": "placement",
4383
+ "type": "'top-start' | 'top-end' | 'top-center' | 'bottom-start' | 'bottom-end' | 'bottom-center'",
4384
+ "description": "The position of the toast.",
4385
+ "default": "'top-end'"
4386
+ },
4387
+ {
4388
+ "name": "duration",
4389
+ "type": "number",
4390
+ "description": "The duration of each toast.",
4391
+ "default": "3000"
4392
+ },
4393
+ {
4394
+ "name": "offsetTop",
4395
+ "type": "number",
4396
+ "description": "The offset from the top of the viewport in pixels.",
4397
+ "default": "24"
4398
+ },
4399
+ {
4400
+ "name": "offsetBottom",
4401
+ "type": "number",
4402
+ "description": "The offset from the bottom of the viewport in pixels.",
4403
+ "default": "24"
4404
+ },
4405
+ {
4406
+ "name": "offsetLeft",
4407
+ "type": "number",
4408
+ "description": "The offset from the left of the viewport in pixels.",
4409
+ "default": "24"
4410
+ },
4411
+ {
4412
+ "name": "offsetRight",
4413
+ "type": "number",
4414
+ "description": "The offset from the right of the viewport in pixels.",
4415
+ "default": "24"
4416
+ },
4417
+ {
4418
+ "name": "dismissible",
4419
+ "type": "boolean",
4420
+ "description": "Whether a toast can be dismissed by swiping.",
4421
+ "default": "true"
4422
+ },
4423
+ {
4424
+ "name": "swipeThreshold",
4425
+ "type": "number",
4426
+ "description": "The amount a toast must be swiped before it is considered dismissed.",
4427
+ "default": "45"
4428
+ },
4429
+ {
4430
+ "name": "swipeDirections",
4431
+ "type": "('top' | 'right' | 'bottom' | 'left')[]",
4432
+ "description": "The default swipe directions supported by the toast."
4433
+ },
4434
+ {
4435
+ "name": "maxToasts",
4436
+ "type": "number",
4437
+ "description": "The maximum number of toasts that can be displayed at once.",
4438
+ "default": "3"
4439
+ },
4440
+ {
4441
+ "name": "ariaLive",
4442
+ "type": "string",
4443
+ "description": "The aria live setting.",
4444
+ "default": "'polite'"
4445
+ },
4446
+ {
4447
+ "name": "gap",
4448
+ "type": "number",
4449
+ "description": "The gap between each toast.",
4450
+ "default": "14"
4451
+ },
4452
+ {
4453
+ "name": "zIndex",
4454
+ "type": "number",
4455
+ "description": "The z-index of the toast container. This is used to ensure that the toast container is always on top of other elements.",
4456
+ "default": "9999999"
4457
+ },
4458
+ {
4459
+ "name": "sequential",
4460
+ "type": "boolean",
4461
+ "description": "When true, only the front toast's timer will run. When a toast is dismissed, the timer will start on the next toast.",
4462
+ "default": "false"
4463
+ }
4464
+ ]
4465
+ },
4466
+ "NgpToggleGroupConfig": {
4467
+ "name": "NgpToggleGroupConfig",
4468
+ "properties": [
4469
+ {
4470
+ "name": "orientation",
4471
+ "type": "'horizontal' | 'vertical'",
4472
+ "description": "The orientation of the toggle group.",
4473
+ "default": "'horizontal'"
4474
+ },
4475
+ {
4476
+ "name": "type",
4477
+ "type": "'single' | 'multiple'",
4478
+ "description": "The type of the toggle group, whether only one item can be selected or multiple.",
4479
+ "default": "'single'"
4480
+ },
4481
+ {
4482
+ "name": "allowDeselection",
4483
+ "type": "boolean",
4484
+ "description": "Whether a toggle button can be deselected.",
4485
+ "default": "true"
4486
+ },
4487
+ {
4488
+ "name": "wrap",
4489
+ "type": "boolean",
4490
+ "description": "Whether focus should wrap around when reaching the end of the toggle group.",
4491
+ "default": "true"
4492
+ }
4493
+ ]
4494
+ },
4495
+ "NgpTooltipConfig": {
4496
+ "name": "NgpTooltipConfig",
4497
+ "properties": [
4498
+ {
4499
+ "name": "offset",
4500
+ "type": "NgpOffset",
4501
+ "description": "Define the offset of the tooltip relative to the trigger. Can be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.",
4502
+ "default": "4"
4503
+ },
4504
+ {
4505
+ "name": "placement",
4506
+ "type": "Placement",
4507
+ "description": "Define the placement of the tooltip relative to the trigger.",
4508
+ "default": "'top'"
4509
+ },
4510
+ {
4511
+ "name": "showDelay",
4512
+ "type": "number",
4513
+ "description": "Define the delay before the tooltip is shown.",
4514
+ "default": "0"
4515
+ },
4516
+ {
4517
+ "name": "hideDelay",
4518
+ "type": "number",
4519
+ "description": "Define the delay before the tooltip is hidden.",
4520
+ "default": "500"
4521
+ },
4522
+ {
4523
+ "name": "flip",
4524
+ "type": "NgpFlip",
4525
+ "description": "Define whether the tooltip should flip when there is not enough space for the tooltip. Can be a boolean to enable/disable, or an object with padding and fallbackPlacements options.",
4526
+ "default": "true"
4527
+ },
4528
+ {
4529
+ "name": "container",
4530
+ "type": "HTMLElement | string | null",
4531
+ "description": "Define the container element or selector into which the tooltip should be attached.",
4532
+ "default": "'body'"
4533
+ },
4534
+ {
4535
+ "name": "showOnOverflow",
4536
+ "type": "boolean",
4537
+ "description": "Whether the tooltip should only show when the trigger element overflows.",
4538
+ "default": "false"
4539
+ },
4540
+ {
4541
+ "name": "useTextContent",
4542
+ "type": "boolean",
4543
+ "description": "Whether to use the text content of the trigger element as the tooltip content.",
4544
+ "default": "true"
4545
+ },
4546
+ {
4547
+ "name": "shift",
4548
+ "type": "NgpShift",
4549
+ "description": "Configure shift behavior to keep the tooltip in view. Can be a boolean to enable/disable, or an object with padding and limiter options.",
4550
+ "default": "undefined (enabled by default in overlay)"
4551
+ },
4552
+ {
4553
+ "name": "trackPosition",
4554
+ "type": "boolean",
4555
+ "description": "Whether to track the trigger element position on every animation frame. Useful for moving elements like slider thumbs.",
4556
+ "default": "false"
4557
+ },
4558
+ {
4559
+ "name": "scrollBehavior",
4560
+ "type": "'reposition' | 'close'",
4561
+ "description": "Defines how the tooltip behaves when the window is scrolled.",
4562
+ "default": "'reposition'"
4563
+ },
4564
+ {
4565
+ "name": "cooldown",
4566
+ "type": "number",
4567
+ "description": "Cooldown duration in milliseconds. When moving from one tooltip to another within this duration, the showDelay is skipped for the new tooltip.",
4568
+ "default": "300"
4569
+ },
4570
+ {
4571
+ "name": "hoverableContent",
4572
+ "type": "boolean",
4573
+ "description": "Whether hovering the tooltip content keeps it open while moving from the trigger.",
4574
+ "default": "false"
4575
+ }
4576
+ ]
3409
4577
  }
3410
4578
  }