@ng-primitives/mcp 0.116.0 → 0.117.1

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",
@@ -860,8 +1125,15 @@
860
1125
  },
861
1126
  {
862
1127
  "name": "ngpDialogTriggerCloseOnEscape",
863
- "type": "boolean | undefined",
864
- "description": "Whether the dialog should close on escape.",
1128
+ "type": "NgpDismissGuard<KeyboardEvent>",
1129
+ "description": "Whether the dialog should close on escape, or a guard function.",
1130
+ "isRequired": false,
1131
+ "defaultValue": "`true`"
1132
+ },
1133
+ {
1134
+ "name": "ngpDialogTriggerCloseOnOutsideClick",
1135
+ "type": "NgpDismissGuard<Element>",
1136
+ "description": "Whether the dialog should close on outside click, or a guard function.",
865
1137
  "isRequired": false,
866
1138
  "defaultValue": "`true`"
867
1139
  }
@@ -886,7 +1158,8 @@
886
1158
  "name": "ngpDialogRole",
887
1159
  "type": "NgpDialogRole | undefined",
888
1160
  "description": "The dialog role.",
889
- "isRequired": false
1161
+ "isRequired": false,
1162
+ "defaultValue": "'dialog'"
890
1163
  },
891
1164
  {
892
1165
  "name": "ngpDialogModal",
@@ -925,25 +1198,29 @@
925
1198
  "name": "ngpFileUploadMultiple",
926
1199
  "type": "boolean",
927
1200
  "description": "Whether to allow multiple files to be selected.",
928
- "isRequired": false
1201
+ "isRequired": false,
1202
+ "defaultValue": "false"
929
1203
  },
930
1204
  {
931
1205
  "name": "ngpFileUploadDirectory",
932
1206
  "type": "boolean",
933
1207
  "description": "Whether to allow the user to select directories.",
934
- "isRequired": false
1208
+ "isRequired": false,
1209
+ "defaultValue": "false"
935
1210
  },
936
1211
  {
937
1212
  "name": "ngpFileUploadDragDrop",
938
1213
  "type": "boolean",
939
1214
  "description": "Whether drag-and-drop is enabled.",
940
- "isRequired": false
1215
+ "isRequired": false,
1216
+ "defaultValue": "true"
941
1217
  },
942
1218
  {
943
1219
  "name": "ngpFileUploadDisabled",
944
1220
  "type": "boolean",
945
1221
  "description": "Whether the file upload is disabled.",
946
- "isRequired": false
1222
+ "isRequired": false,
1223
+ "defaultValue": "false"
947
1224
  }
948
1225
  ],
949
1226
  "outputs": [
@@ -987,19 +1264,22 @@
987
1264
  "name": "ngpFileDropzoneMultiple",
988
1265
  "type": "boolean",
989
1266
  "description": "Whether to allow multiple files to be selected.",
990
- "isRequired": false
1267
+ "isRequired": false,
1268
+ "defaultValue": "false"
991
1269
  },
992
1270
  {
993
1271
  "name": "ngpFileDropzoneDirectory",
994
1272
  "type": "boolean",
995
1273
  "description": "Whether to allow the user to select directories.",
996
- "isRequired": false
1274
+ "isRequired": false,
1275
+ "defaultValue": "false"
997
1276
  },
998
1277
  {
999
1278
  "name": "ngpFileDropzoneDisabled",
1000
1279
  "type": "boolean",
1001
1280
  "description": "Whether the file upload is disabled.",
1002
- "isRequired": false
1281
+ "isRequired": false,
1282
+ "defaultValue": "false"
1003
1283
  }
1004
1284
  ],
1005
1285
  "outputs": [
@@ -1032,7 +1312,8 @@
1032
1312
  "name": "ngpFocusTrapDisabled",
1033
1313
  "type": "boolean",
1034
1314
  "description": "Whether the focus trap is disabled.",
1035
- "isRequired": false
1315
+ "isRequired": false,
1316
+ "defaultValue": "false"
1036
1317
  }
1037
1318
  ],
1038
1319
  "outputs": []
@@ -1049,7 +1330,8 @@
1049
1330
  "name": "ngpErrorValidator",
1050
1331
  "type": "string | null",
1051
1332
  "description": "The validator associated with the error message.",
1052
- "isRequired": false
1333
+ "isRequired": false,
1334
+ "defaultValue": "null"
1053
1335
  }
1054
1336
  ],
1055
1337
  "outputs": []
@@ -1096,7 +1378,8 @@
1096
1378
  "name": "ngpFormControlDisabled",
1097
1379
  "type": "boolean",
1098
1380
  "description": "Whether the form control is disabled by a parent.",
1099
- "isRequired": false
1381
+ "isRequired": false,
1382
+ "defaultValue": "false"
1100
1383
  }
1101
1384
  ],
1102
1385
  "outputs": []
@@ -1150,19 +1433,22 @@
1150
1433
  "name": "ngpInputOtpValue",
1151
1434
  "type": "string",
1152
1435
  "description": "The current value of the OTP.",
1153
- "isRequired": false
1436
+ "isRequired": false,
1437
+ "defaultValue": "''"
1154
1438
  },
1155
1439
  {
1156
1440
  "name": "ngpInputOtpPattern",
1157
1441
  "type": "string",
1158
1442
  "description": "The regex pattern for allowed characters.",
1159
- "isRequired": false
1443
+ "isRequired": false,
1444
+ "defaultValue": "'[0-9]'"
1160
1445
  },
1161
1446
  {
1162
1447
  "name": "ngpInputOtpInputMode",
1163
1448
  "type": "'numeric' | 'text' | 'decimal' | 'tel' | 'search' | 'email' | 'url'",
1164
1449
  "description": "The input mode for the hidden input.",
1165
- "isRequired": false
1450
+ "isRequired": false,
1451
+ "defaultValue": "'text'"
1166
1452
  },
1167
1453
  {
1168
1454
  "name": "ngpInputOtpPasteTransformer",
@@ -1174,13 +1460,15 @@
1174
1460
  "name": "ngpInputOtpDisabled",
1175
1461
  "type": "boolean",
1176
1462
  "description": "Whether the input-otp is disabled.",
1177
- "isRequired": false
1463
+ "isRequired": false,
1464
+ "defaultValue": "false"
1178
1465
  },
1179
1466
  {
1180
1467
  "name": "ngpInputOtpPlaceholder",
1181
1468
  "type": "string",
1182
1469
  "description": "The placeholder character to display when a slot is empty.",
1183
- "isRequired": false
1470
+ "isRequired": false,
1471
+ "defaultValue": "''"
1184
1472
  }
1185
1473
  ],
1186
1474
  "outputs": [
@@ -1208,7 +1496,8 @@
1208
1496
  "name": "ngpFocusDisabled",
1209
1497
  "type": "boolean",
1210
1498
  "description": "Whether listening for focus events is disabled.",
1211
- "isRequired": false
1499
+ "isRequired": false,
1500
+ "defaultValue": "false"
1212
1501
  }
1213
1502
  ],
1214
1503
  "outputs": [
@@ -1231,7 +1520,8 @@
1231
1520
  "name": "ngpPressDisabled",
1232
1521
  "type": "boolean",
1233
1522
  "description": "Whether listening for press events is disabled.",
1234
- "isRequired": false
1523
+ "isRequired": false,
1524
+ "defaultValue": "false"
1235
1525
  }
1236
1526
  ],
1237
1527
  "outputs": [
@@ -1264,7 +1554,8 @@
1264
1554
  "name": "ngpHoverDisabled",
1265
1555
  "type": "boolean",
1266
1556
  "description": "Whether hoving should be disabled.",
1267
- "isRequired": false
1557
+ "isRequired": false,
1558
+ "defaultValue": "false"
1268
1559
  }
1269
1560
  ],
1270
1561
  "outputs": [
@@ -1297,7 +1588,8 @@
1297
1588
  "name": "ngpFocusVisibleDisabled",
1298
1589
  "type": "boolean",
1299
1590
  "description": "Whether focus events are listened to.",
1300
- "isRequired": false
1591
+ "isRequired": false,
1592
+ "defaultValue": "false"
1301
1593
  }
1302
1594
  ],
1303
1595
  "outputs": [
@@ -1320,7 +1612,8 @@
1320
1612
  "name": "ngpMoveDisabled",
1321
1613
  "type": "boolean",
1322
1614
  "description": "Whether movement is disabled.",
1323
- "isRequired": false
1615
+ "isRequired": false,
1616
+ "defaultValue": "false"
1324
1617
  }
1325
1618
  ],
1326
1619
  "outputs": [
@@ -1399,7 +1692,8 @@
1399
1692
  "name": "ngpListboxOptionDisabled",
1400
1693
  "type": "boolean",
1401
1694
  "description": "Whether the option is disabled.",
1402
- "isRequired": false
1695
+ "isRequired": false,
1696
+ "defaultValue": "false"
1403
1697
  }
1404
1698
  ],
1405
1699
  "outputs": []
@@ -1416,19 +1710,22 @@
1416
1710
  "name": "ngpListboxMode",
1417
1711
  "type": "'single' | 'multiple'",
1418
1712
  "description": "The listbox selection mode.",
1419
- "isRequired": false
1713
+ "isRequired": false,
1714
+ "defaultValue": "'single'"
1420
1715
  },
1421
1716
  {
1422
1717
  "name": "ngpListboxValue",
1423
1718
  "type": "T[]",
1424
1719
  "description": "The listbox selection.",
1425
- "isRequired": false
1720
+ "isRequired": false,
1721
+ "defaultValue": "[]"
1426
1722
  },
1427
1723
  {
1428
1724
  "name": "ngpListboxDisabled",
1429
1725
  "type": "boolean",
1430
1726
  "description": "The listbox disabled state.",
1431
- "isRequired": false
1727
+ "isRequired": false,
1728
+ "defaultValue": "false"
1432
1729
  },
1433
1730
  {
1434
1731
  "name": "ngpListboxCompareWith",
@@ -1457,7 +1754,8 @@
1457
1754
  "name": "ngpMenuItemRadioGroupValue",
1458
1755
  "type": "string | null",
1459
1756
  "description": "The current value of the radio group",
1460
- "isRequired": false
1757
+ "isRequired": false,
1758
+ "defaultValue": "null"
1461
1759
  }
1462
1760
  ],
1463
1761
  "outputs": [
@@ -1480,13 +1778,15 @@
1480
1778
  "name": "ngpMenuItemDisabled",
1481
1779
  "type": "boolean",
1482
1780
  "description": "Whether the menu item is disabled",
1483
- "isRequired": false
1781
+ "isRequired": false,
1782
+ "defaultValue": "false"
1484
1783
  },
1485
1784
  {
1486
1785
  "name": "ngpMenuItemCloseOnSelect",
1487
1786
  "type": "boolean",
1488
1787
  "description": "Whether the menu should close when this item is selected",
1489
- "isRequired": false
1788
+ "isRequired": false,
1789
+ "defaultValue": "true"
1490
1790
  }
1491
1791
  ],
1492
1792
  "outputs": []
@@ -1509,7 +1809,8 @@
1509
1809
  "name": "ngpMenuItemRadioDisabled",
1510
1810
  "type": "boolean",
1511
1811
  "description": "Whether the radio item is disabled",
1512
- "isRequired": false
1812
+ "isRequired": false,
1813
+ "defaultValue": "false"
1513
1814
  }
1514
1815
  ],
1515
1816
  "outputs": []
@@ -1526,13 +1827,15 @@
1526
1827
  "name": "ngpMenuItemCheckboxChecked",
1527
1828
  "type": "boolean",
1528
1829
  "description": "Whether the checkbox is checked",
1529
- "isRequired": false
1830
+ "isRequired": false,
1831
+ "defaultValue": "false"
1530
1832
  },
1531
1833
  {
1532
1834
  "name": "ngpMenuItemCheckboxDisabled",
1533
1835
  "type": "boolean",
1534
1836
  "description": "Whether the menu item checkbox is disabled",
1535
- "isRequired": false
1837
+ "isRequired": false,
1838
+ "defaultValue": "false"
1536
1839
  }
1537
1840
  ],
1538
1841
  "outputs": [
@@ -1768,19 +2071,22 @@
1768
2071
  "name": "ngpMeterValue",
1769
2072
  "type": "number",
1770
2073
  "description": "The value of the meter.",
1771
- "isRequired": false
2074
+ "isRequired": false,
2075
+ "defaultValue": "0"
1772
2076
  },
1773
2077
  {
1774
2078
  "name": "ngpMeterMin",
1775
2079
  "type": "number",
1776
2080
  "description": "The minimum value of the meter.",
1777
- "isRequired": false
2081
+ "isRequired": false,
2082
+ "defaultValue": "0"
1778
2083
  },
1779
2084
  {
1780
2085
  "name": "ngpMeterMax",
1781
2086
  "type": "number",
1782
2087
  "description": "The maximum value of the meter.",
1783
- "isRequired": false
2088
+ "isRequired": false,
2089
+ "defaultValue": "100"
1784
2090
  },
1785
2091
  {
1786
2092
  "name": "ngpMeterValueLabel",
@@ -1884,7 +2190,8 @@
1884
2190
  "name": "ngpNavigationMenuValue",
1885
2191
  "type": "string | null",
1886
2192
  "description": "The currently active (open) item value.",
1887
- "isRequired": false
2193
+ "isRequired": false,
2194
+ "defaultValue": "null"
1888
2195
  }
1889
2196
  ],
1890
2197
  "outputs": [
@@ -2036,7 +2343,8 @@
2036
2343
  "name": "ngpNumberFieldInputAllowWheelScrub",
2037
2344
  "type": "boolean",
2038
2345
  "description": "Whether mouse wheel changes the value when the input is focused.",
2039
- "isRequired": false
2346
+ "isRequired": false,
2347
+ "defaultValue": "false"
2040
2348
  }
2041
2349
  ],
2042
2350
  "outputs": []
@@ -2053,7 +2361,8 @@
2053
2361
  "name": "ngpNumberFieldValue",
2054
2362
  "type": "number | null",
2055
2363
  "description": "The value of the number field.",
2056
- "isRequired": false
2364
+ "isRequired": false,
2365
+ "defaultValue": "null"
2057
2366
  },
2058
2367
  {
2059
2368
  "name": "ngpNumberFieldMin",
@@ -2071,25 +2380,29 @@
2071
2380
  "name": "ngpNumberFieldStep",
2072
2381
  "type": "number",
2073
2382
  "description": "The step value.",
2074
- "isRequired": false
2383
+ "isRequired": false,
2384
+ "defaultValue": "1"
2075
2385
  },
2076
2386
  {
2077
2387
  "name": "ngpNumberFieldLargeStep",
2078
2388
  "type": "number",
2079
2389
  "description": "The large step value (used with Shift key).",
2080
- "isRequired": false
2390
+ "isRequired": false,
2391
+ "defaultValue": "10"
2081
2392
  },
2082
2393
  {
2083
2394
  "name": "ngpNumberFieldDisabled",
2084
2395
  "type": "boolean",
2085
2396
  "description": "The disabled state of the number field.",
2086
- "isRequired": false
2397
+ "isRequired": false,
2398
+ "defaultValue": "false"
2087
2399
  },
2088
2400
  {
2089
2401
  "name": "ngpNumberFieldReadonly",
2090
2402
  "type": "boolean",
2091
2403
  "description": "The readonly state of the number field.",
2092
- "isRequired": false
2404
+ "isRequired": false,
2405
+ "defaultValue": "false"
2093
2406
  }
2094
2407
  ],
2095
2408
  "outputs": [
@@ -2112,19 +2425,22 @@
2112
2425
  "name": "ngpPaginationPage",
2113
2426
  "type": "number",
2114
2427
  "description": "The currently selected page.",
2115
- "isRequired": false
2428
+ "isRequired": false,
2429
+ "defaultValue": "1"
2116
2430
  },
2117
2431
  {
2118
2432
  "name": "ngpPaginationPageCount",
2119
2433
  "type": "number",
2120
2434
  "description": "The total number of pages.",
2121
- "isRequired": false
2435
+ "isRequired": false,
2436
+ "defaultValue": "0"
2122
2437
  },
2123
2438
  {
2124
2439
  "name": "ngpPaginationDisabled",
2125
2440
  "type": "boolean",
2126
2441
  "description": "Whether the pagination is disabled.",
2127
- "isRequired": false
2442
+ "isRequired": false,
2443
+ "defaultValue": "false"
2128
2444
  }
2129
2445
  ],
2130
2446
  "outputs": [
@@ -2147,7 +2463,8 @@
2147
2463
  "name": "ngpPaginationFirstDisabled",
2148
2464
  "type": "boolean",
2149
2465
  "description": "Whether the button is disabled.",
2150
- "isRequired": false
2466
+ "isRequired": false,
2467
+ "defaultValue": "false"
2151
2468
  }
2152
2469
  ],
2153
2470
  "outputs": []
@@ -2164,7 +2481,8 @@
2164
2481
  "name": "ngpPaginationLastDisabled",
2165
2482
  "type": "boolean",
2166
2483
  "description": "Whether the button is disabled.",
2167
- "isRequired": false
2484
+ "isRequired": false,
2485
+ "defaultValue": "false"
2168
2486
  }
2169
2487
  ],
2170
2488
  "outputs": []
@@ -2181,7 +2499,8 @@
2181
2499
  "name": "ngpPaginationNextDisabled",
2182
2500
  "type": "boolean",
2183
2501
  "description": "Whether the button is disabled.",
2184
- "isRequired": false
2502
+ "isRequired": false,
2503
+ "defaultValue": "false"
2185
2504
  }
2186
2505
  ],
2187
2506
  "outputs": []
@@ -2198,7 +2517,8 @@
2198
2517
  "name": "ngpPaginationPreviousDisabled",
2199
2518
  "type": "boolean",
2200
2519
  "description": "Whether the button is disabled.",
2201
- "isRequired": false
2520
+ "isRequired": false,
2521
+ "defaultValue": "false"
2202
2522
  }
2203
2523
  ],
2204
2524
  "outputs": []
@@ -2221,7 +2541,8 @@
2221
2541
  "name": "ngpPaginationButtonDisabled",
2222
2542
  "type": "boolean",
2223
2543
  "description": "Whether the button is disabled.",
2224
- "isRequired": false
2544
+ "isRequired": false,
2545
+ "defaultValue": "false"
2225
2546
  }
2226
2547
  ],
2227
2548
  "outputs": []
@@ -2325,15 +2646,15 @@
2325
2646
  },
2326
2647
  {
2327
2648
  "name": "ngpPopoverTriggerCloseOnOutsideClick",
2328
- "type": "boolean",
2329
- "description": "Define whether the popover should close when clicking outside of it.",
2649
+ "type": "NgpDismissGuard<Element>",
2650
+ "description": "Define whether the popover should close when clicking outside of it, or a guard function.",
2330
2651
  "isRequired": false,
2331
2652
  "defaultValue": "true"
2332
2653
  },
2333
2654
  {
2334
2655
  "name": "ngpPopoverTriggerCloseOnEscape",
2335
- "type": "boolean",
2336
- "description": "Define whether the popover should close when the escape key is pressed.",
2656
+ "type": "NgpDismissGuard<KeyboardEvent>",
2657
+ "description": "Define whether the popover should close when the escape key is pressed, or a guard function.",
2337
2658
  "isRequired": false,
2338
2659
  "defaultValue": "true"
2339
2660
  },
@@ -2354,7 +2675,8 @@
2354
2675
  "name": "ngpPopoverTriggerAnchor",
2355
2676
  "type": "HTMLElement | null",
2356
2677
  "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
2678
+ "isRequired": false,
2679
+ "defaultValue": "null"
2358
2680
  },
2359
2681
  {
2360
2682
  "name": "ngpPopoverTriggerTrackPosition",
@@ -2427,7 +2749,8 @@
2427
2749
  "name": "ngpProgressValue",
2428
2750
  "type": "number | null",
2429
2751
  "description": "Define the progress value.",
2430
- "isRequired": false
2752
+ "isRequired": false,
2753
+ "defaultValue": "0"
2431
2754
  },
2432
2755
  {
2433
2756
  "name": "ngpProgressMin",
@@ -2492,13 +2815,15 @@
2492
2815
  "name": "ngpRadioGroupValue",
2493
2816
  "type": "T | null",
2494
2817
  "description": "The value of the radio group.",
2495
- "isRequired": false
2818
+ "isRequired": false,
2819
+ "defaultValue": "null"
2496
2820
  },
2497
2821
  {
2498
2822
  "name": "ngpRadioGroupDisabled",
2499
2823
  "type": "boolean",
2500
2824
  "description": "Whether the radio group is disabled.",
2501
- "isRequired": false
2825
+ "isRequired": false,
2826
+ "defaultValue": "false"
2502
2827
  },
2503
2828
  {
2504
2829
  "name": "ngpRadioGroupOrientation",
@@ -2549,7 +2874,8 @@
2549
2874
  "name": "ngpRovingFocusItemDisabled",
2550
2875
  "type": "boolean",
2551
2876
  "description": "Define if the item is disabled.",
2552
- "isRequired": false
2877
+ "isRequired": false,
2878
+ "defaultValue": "false"
2553
2879
  }
2554
2880
  ],
2555
2881
  "outputs": []
@@ -2573,19 +2899,22 @@
2573
2899
  "name": "ngpRovingFocusGroupWrap",
2574
2900
  "type": "boolean",
2575
2901
  "description": "Determine if focus should wrap when the end or beginning is reached.",
2576
- "isRequired": false
2902
+ "isRequired": false,
2903
+ "defaultValue": "true"
2577
2904
  },
2578
2905
  {
2579
2906
  "name": "ngpRovingFocusGroupHomeEnd",
2580
2907
  "type": "boolean",
2581
2908
  "description": "Determine if the home and end keys should navigate to the first and last items.",
2582
- "isRequired": false
2909
+ "isRequired": false,
2910
+ "defaultValue": "true"
2583
2911
  },
2584
2912
  {
2585
2913
  "name": "ngpRovingFocusGroupDisabled",
2586
2914
  "type": "boolean",
2587
2915
  "description": "Determine if the roving focus group is disabled.",
2588
- "isRequired": false
2916
+ "isRequired": false,
2917
+ "defaultValue": "false"
2589
2918
  }
2590
2919
  ],
2591
2920
  "outputs": []
@@ -2642,7 +2971,8 @@
2642
2971
  "name": "ngpNativeSelectDisabled",
2643
2972
  "type": "boolean",
2644
2973
  "description": "Whether the select is disabled.",
2645
- "isRequired": false
2974
+ "isRequired": false,
2975
+ "defaultValue": "false"
2646
2976
  }
2647
2977
  ],
2648
2978
  "outputs": []
@@ -2665,7 +2995,8 @@
2665
2995
  "name": "ngpSelectOptionDisabled",
2666
2996
  "type": "boolean",
2667
2997
  "description": "The disabled state of the option.",
2668
- "isRequired": false
2998
+ "isRequired": false,
2999
+ "defaultValue": "false"
2669
3000
  },
2670
3001
  {
2671
3002
  "name": "ngpSelectOptionIndex",
@@ -2700,13 +3031,15 @@
2700
3031
  "name": "ngpSelectMultiple",
2701
3032
  "type": "boolean",
2702
3033
  "description": "Whether the select is multiple selection.",
2703
- "isRequired": false
3034
+ "isRequired": false,
3035
+ "defaultValue": "false"
2704
3036
  },
2705
3037
  {
2706
3038
  "name": "ngpSelectDisabled",
2707
3039
  "type": "boolean",
2708
3040
  "description": "Whether the select is disabled.",
2709
- "isRequired": false
3041
+ "isRequired": false,
3042
+ "defaultValue": "false"
2710
3043
  },
2711
3044
  {
2712
3045
  "name": "ngpSelectCompareWith",
@@ -2718,19 +3051,22 @@
2718
3051
  "name": "ngpSelectDropdownPlacement",
2719
3052
  "type": "Placement",
2720
3053
  "description": "The position of the dropdown.",
2721
- "isRequired": false
3054
+ "isRequired": false,
3055
+ "defaultValue": "'bottom'"
2722
3056
  },
2723
3057
  {
2724
3058
  "name": "ngpSelectDropdownContainer",
2725
3059
  "type": "string | HTMLElement | null",
2726
3060
  "description": "The container for the dropdown.",
2727
- "isRequired": false
3061
+ "isRequired": false,
3062
+ "defaultValue": "'body'"
2728
3063
  },
2729
3064
  {
2730
3065
  "name": "ngpSelectDropdownFlip",
2731
3066
  "type": "NgpFlip",
2732
3067
  "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
3068
+ "isRequired": false,
3069
+ "defaultValue": "true"
2734
3070
  },
2735
3071
  {
2736
3072
  "name": "ngpSelectScrollToOption",
@@ -2770,7 +3106,8 @@
2770
3106
  "name": "ngpSeparatorOrientation",
2771
3107
  "type": "'horizontal' | 'vertical'",
2772
3108
  "description": "The orientation of the separator.",
2773
- "isRequired": false
3109
+ "isRequired": false,
3110
+ "defaultValue": "'horizontal'"
2774
3111
  }
2775
3112
  ],
2776
3113
  "outputs": []
@@ -2869,37 +3206,43 @@
2869
3206
  "name": "ngpSliderValue",
2870
3207
  "type": "number",
2871
3208
  "description": "The value of the slider.",
2872
- "isRequired": false
3209
+ "isRequired": false,
3210
+ "defaultValue": "0"
2873
3211
  },
2874
3212
  {
2875
3213
  "name": "ngpSliderMin",
2876
3214
  "type": "number",
2877
3215
  "description": "The minimum value of the slider.",
2878
- "isRequired": false
3216
+ "isRequired": false,
3217
+ "defaultValue": "0"
2879
3218
  },
2880
3219
  {
2881
3220
  "name": "ngpSliderMax",
2882
3221
  "type": "number",
2883
3222
  "description": "The maximum value of the slider.",
2884
- "isRequired": false
3223
+ "isRequired": false,
3224
+ "defaultValue": "100"
2885
3225
  },
2886
3226
  {
2887
3227
  "name": "ngpSliderStep",
2888
3228
  "type": "number",
2889
3229
  "description": "The step value of the slider.",
2890
- "isRequired": false
3230
+ "isRequired": false,
3231
+ "defaultValue": "1"
2891
3232
  },
2892
3233
  {
2893
3234
  "name": "ngpSliderOrientation",
2894
3235
  "type": "'horizontal' | 'vertical'",
2895
3236
  "description": "The orientation of the slider.",
2896
- "isRequired": false
3237
+ "isRequired": false,
3238
+ "defaultValue": "'horizontal'"
2897
3239
  },
2898
3240
  {
2899
3241
  "name": "ngpSliderDisabled",
2900
3242
  "type": "boolean",
2901
3243
  "description": "The disabled state of the slider.",
2902
- "isRequired": false
3244
+ "isRequired": false,
3245
+ "defaultValue": "false"
2903
3246
  }
2904
3247
  ],
2905
3248
  "outputs": [
@@ -2922,43 +3265,50 @@
2922
3265
  "name": "ngpRangeSliderLow",
2923
3266
  "type": "number",
2924
3267
  "description": "The low value of the range slider.",
2925
- "isRequired": false
3268
+ "isRequired": false,
3269
+ "defaultValue": "0"
2926
3270
  },
2927
3271
  {
2928
3272
  "name": "ngpRangeSliderHigh",
2929
3273
  "type": "number",
2930
3274
  "description": "The high value of the range slider.",
2931
- "isRequired": false
3275
+ "isRequired": false,
3276
+ "defaultValue": "100"
2932
3277
  },
2933
3278
  {
2934
3279
  "name": "ngpRangeSliderMin",
2935
3280
  "type": "number",
2936
3281
  "description": "The minimum value of the range slider.",
2937
- "isRequired": false
3282
+ "isRequired": false,
3283
+ "defaultValue": "0"
2938
3284
  },
2939
3285
  {
2940
3286
  "name": "ngpRangeSliderMax",
2941
3287
  "type": "number",
2942
3288
  "description": "The maximum value of the range slider.",
2943
- "isRequired": false
3289
+ "isRequired": false,
3290
+ "defaultValue": "100"
2944
3291
  },
2945
3292
  {
2946
3293
  "name": "ngpRangeSliderStep",
2947
3294
  "type": "number",
2948
3295
  "description": "The step value of the range slider.",
2949
- "isRequired": false
3296
+ "isRequired": false,
3297
+ "defaultValue": "1"
2950
3298
  },
2951
3299
  {
2952
3300
  "name": "ngpRangeSliderOrientation",
2953
3301
  "type": "'horizontal' | 'vertical'",
2954
3302
  "description": "The orientation of the range slider.",
2955
- "isRequired": false
3303
+ "isRequired": false,
3304
+ "defaultValue": "'horizontal'"
2956
3305
  },
2957
3306
  {
2958
3307
  "name": "ngpRangeSliderDisabled",
2959
3308
  "type": "boolean",
2960
3309
  "description": "The disabled state of the range slider.",
2961
- "isRequired": false
3310
+ "isRequired": false,
3311
+ "defaultValue": "false"
2962
3312
  }
2963
3313
  ],
2964
3314
  "outputs": [
@@ -3089,7 +3439,8 @@
3089
3439
  "name": "ngpTabsetActivateOnFocus",
3090
3440
  "type": "boolean",
3091
3441
  "description": "Whether tabs should activate on focus",
3092
- "isRequired": false
3442
+ "isRequired": false,
3443
+ "defaultValue": "true"
3093
3444
  }
3094
3445
  ],
3095
3446
  "outputs": [
@@ -3182,7 +3533,8 @@
3182
3533
  "name": "ngpToggleGroupItemDisabled",
3183
3534
  "type": "boolean",
3184
3535
  "description": "Whether the item is disabled.",
3185
- "isRequired": false
3536
+ "isRequired": false,
3537
+ "defaultValue": "false"
3186
3538
  }
3187
3539
  ],
3188
3540
  "outputs": []
@@ -3199,7 +3551,8 @@
3199
3551
  "name": "ngpToggleGroupOrientation",
3200
3552
  "type": "'horizontal' | 'vertical'",
3201
3553
  "description": "The orientation of the toggle group.",
3202
- "isRequired": false
3554
+ "isRequired": false,
3555
+ "defaultValue": "'horizontal'"
3203
3556
  },
3204
3557
  {
3205
3558
  "name": "ngpToggleGroupWrap",
@@ -3219,7 +3572,8 @@
3219
3572
  "name": "ngpToggleGroupType",
3220
3573
  "type": "\"single\" | \"multiple\"",
3221
3574
  "description": "The type of the toggle group, whether only one item can be selected or multiple.",
3222
- "isRequired": false
3575
+ "isRequired": false,
3576
+ "defaultValue": "'single'"
3223
3577
  },
3224
3578
  {
3225
3579
  "name": "ngpToggleGroupValue",
@@ -3238,7 +3592,8 @@
3238
3592
  "name": "ngpToggleGroupDisabled",
3239
3593
  "type": "boolean",
3240
3594
  "description": "Whether the toggle group is disabled.",
3241
- "isRequired": false
3595
+ "isRequired": false,
3596
+ "defaultValue": "false"
3242
3597
  }
3243
3598
  ],
3244
3599
  "outputs": [
@@ -3261,7 +3616,8 @@
3261
3616
  "name": "ngpToolbarOrientation",
3262
3617
  "type": "'horizontal' | 'vertical'",
3263
3618
  "description": "The orientation of the toolbar.",
3264
- "isRequired": false
3619
+ "isRequired": false,
3620
+ "defaultValue": "'horizontal'"
3265
3621
  }
3266
3622
  ],
3267
3623
  "outputs": []
@@ -3305,7 +3661,8 @@
3305
3661
  "name": "ngpTooltipTrigger",
3306
3662
  "type": "string | NgpOverlayContent<T> | null",
3307
3663
  "description": "Access the tooltip template ref.",
3308
- "isRequired": false
3664
+ "isRequired": false,
3665
+ "defaultValue": "null"
3309
3666
  },
3310
3667
  {
3311
3668
  "name": "ngpTooltipTriggerDisabled",
@@ -3394,7 +3751,8 @@
3394
3751
  "name": "ngpTooltipTriggerPosition",
3395
3752
  "type": "NgpPosition | null",
3396
3753
  "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.",
3397
- "isRequired": false
3754
+ "isRequired": false,
3755
+ "defaultValue": "null"
3398
3756
  },
3399
3757
  {
3400
3758
  "name": "ngpTooltipTriggerScrollBehavior",
@@ -3419,5 +3777,814 @@
3419
3777
  }
3420
3778
  ],
3421
3779
  "outputs": []
3780
+ },
3781
+ "NgpAccordionConfig": {
3782
+ "name": "NgpAccordionConfig",
3783
+ "properties": [
3784
+ {
3785
+ "name": "type",
3786
+ "type": "'single' | 'multiple'",
3787
+ "description": "The default type of the accordion",
3788
+ "default": "'single'"
3789
+ },
3790
+ {
3791
+ "name": "collapsible",
3792
+ "type": "boolean",
3793
+ "description": "Whether the accordion is collapsible",
3794
+ "default": "false"
3795
+ },
3796
+ {
3797
+ "name": "orientation",
3798
+ "type": "'vertical' | 'horizontal'",
3799
+ "description": "The default orientation of the accordion",
3800
+ "default": "'vertical'"
3801
+ }
3802
+ ]
3803
+ },
3804
+ "NgpAvatarConfig": {
3805
+ "name": "NgpAvatarConfig",
3806
+ "properties": [
3807
+ {
3808
+ "name": "delay",
3809
+ "type": "number",
3810
+ "description": "Define a delay before the fallback is shown. This is useful to only show the fallback for those with slower connections.",
3811
+ "default": "0"
3812
+ }
3813
+ ]
3814
+ },
3815
+ "NgpComboboxConfig": {
3816
+ "name": "NgpComboboxConfig",
3817
+ "properties": [
3818
+ {
3819
+ "name": "placement",
3820
+ "type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
3821
+ "description": "The default placement for the combobox dropdown.",
3822
+ "default": "'bottom'"
3823
+ },
3824
+ {
3825
+ "name": "container",
3826
+ "type": "HTMLElement | string | null",
3827
+ "description": "The container element or selector for the combobox dropdown. This can be used to control where the dropdown is rendered in the DOM.",
3828
+ "default": "'body'"
3829
+ },
3830
+ {
3831
+ "name": "flip",
3832
+ "type": "NgpFlip",
3833
+ "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.",
3834
+ "default": "true"
3835
+ }
3836
+ ]
3837
+ },
3838
+ "NgpContextMenuConfig": {
3839
+ "name": "NgpContextMenuConfig",
3840
+ "properties": [
3841
+ {
3842
+ "name": "offset",
3843
+ "type": "NgpOffset",
3844
+ "description": "Define the offset of the context menu relative to the cursor position.",
3845
+ "default": "2"
3846
+ },
3847
+ {
3848
+ "name": "flip",
3849
+ "type": "NgpFlip",
3850
+ "description": "Define whether the context menu should flip when there is not enough space.",
3851
+ "default": "true"
3852
+ },
3853
+ {
3854
+ "name": "container",
3855
+ "type": "HTMLElement | string | null",
3856
+ "description": "Define the container element or selector in which the context menu should be attached.",
3857
+ "default": "'body'"
3858
+ },
3859
+ {
3860
+ "name": "scrollBehavior",
3861
+ "type": "'reposition' | 'block' | 'close'",
3862
+ "description": "Defines how the context menu behaves when the window is scrolled.",
3863
+ "default": "'close'"
3864
+ },
3865
+ {
3866
+ "name": "shift",
3867
+ "type": "NgpShift",
3868
+ "description": "Configure shift behavior to keep the context menu in view.",
3869
+ "default": "undefined"
3870
+ }
3871
+ ]
3872
+ },
3873
+ "NgpDatePickerConfig": {
3874
+ "name": "NgpDatePickerConfig",
3875
+ "properties": [
3876
+ {
3877
+ "name": "firstDayOfWeek",
3878
+ "type": "1 | 2 | 3 | 4 | 5 | 6 | 7",
3879
+ "description": "Define the first day of the week for the date picker calendar.",
3880
+ "default": "7 (Sunday)"
3881
+ }
3882
+ ]
3883
+ },
3884
+ "NgpDialogConfig": {
3885
+ "name": "NgpDialogConfig",
3886
+ "properties": [
3887
+ {
3888
+ "name": "viewContainerRef",
3889
+ "type": "ViewContainerRef",
3890
+ "description": "The view container to attach the dialog to."
3891
+ },
3892
+ {
3893
+ "name": "injector",
3894
+ "type": "Injector",
3895
+ "description": "The injector to use for the dialog. Defaults to the view container's injector."
3896
+ },
3897
+ {
3898
+ "name": "id",
3899
+ "type": "string",
3900
+ "description": "ID for the dialog. If omitted, a unique one will be generated."
3901
+ },
3902
+ {
3903
+ "name": "role",
3904
+ "type": "'dialog' | 'alertdialog'",
3905
+ "description": "The role of the dialog.",
3906
+ "default": "'dialog'"
3907
+ },
3908
+ {
3909
+ "name": "modal",
3910
+ "type": "boolean",
3911
+ "description": "Whether this is a modal dialog. Used to set the `aria-modal` attribute.",
3912
+ "default": "true"
3913
+ },
3914
+ {
3915
+ "name": "closeOnNavigation",
3916
+ "type": "boolean",
3917
+ "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()).",
3918
+ "default": "true"
3919
+ },
3920
+ {
3921
+ "name": "closeOnEscape",
3922
+ "type": "NgpDismissGuard<KeyboardEvent>",
3923
+ "description": "Whether the dialog should close when the user presses the escape key, or a guard function.",
3924
+ "default": "true"
3925
+ },
3926
+ {
3927
+ "name": "closeOnOutsideClick",
3928
+ "type": "NgpDismissGuard<Element>",
3929
+ "description": "Whether the dialog should close when clicking outside (on the overlay), or a guard function."
3930
+ },
3931
+ {
3932
+ "name": "closeOnClick",
3933
+ "type": "boolean",
3934
+ "description": "Whether the dialog should close when the user clicks the overlay.",
3935
+ "default": "true"
3936
+ },
3937
+ {
3938
+ "name": "scrollStrategy",
3939
+ "type": "ScrollStrategy",
3940
+ "description": "Scroll strategy to be used for the dialog."
3941
+ },
3942
+ {
3943
+ "name": "data",
3944
+ "type": "T",
3945
+ "description": ""
3946
+ }
3947
+ ]
3948
+ },
3949
+ "NgpInteractionsConfig": {
3950
+ "name": "NgpInteractionsConfig",
3951
+ "properties": [
3952
+ {
3953
+ "name": "disabled",
3954
+ "type": "boolean",
3955
+ "description": "Whether all interactions are disabled",
3956
+ "default": "false"
3957
+ },
3958
+ {
3959
+ "name": "hover",
3960
+ "type": "boolean",
3961
+ "description": "Whether hover interactions are enabled",
3962
+ "default": "true"
3963
+ },
3964
+ {
3965
+ "name": "focus",
3966
+ "type": "boolean",
3967
+ "description": "Whether focus interactions are enabled",
3968
+ "default": "true"
3969
+ },
3970
+ {
3971
+ "name": "focusVisible",
3972
+ "type": "boolean",
3973
+ "description": "Whether focus-visible interactions are enabled",
3974
+ "default": "true"
3975
+ },
3976
+ {
3977
+ "name": "press",
3978
+ "type": "boolean",
3979
+ "description": "Whether press interactions are enabled",
3980
+ "default": "true"
3981
+ }
3982
+ ]
3983
+ },
3984
+ "NgpMenuConfig": {
3985
+ "name": "NgpMenuConfig",
3986
+ "properties": [
3987
+ {
3988
+ "name": "offset",
3989
+ "type": "NgpOffset",
3990
+ "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.",
3991
+ "default": "4"
3992
+ },
3993
+ {
3994
+ "name": "placement",
3995
+ "type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
3996
+ "description": "Define the placement of the menu relative to the trigger.",
3997
+ "default": "'bottom-start'"
3998
+ },
3999
+ {
4000
+ "name": "flip",
4001
+ "type": "NgpFlip",
4002
+ "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.",
4003
+ "default": "true"
4004
+ },
4005
+ {
4006
+ "name": "container",
4007
+ "type": "HTMLElement | string | null",
4008
+ "description": "Define the container element or selector in to which the menu should be attached.",
4009
+ "default": "'body'"
4010
+ },
4011
+ {
4012
+ "name": "scrollBehavior",
4013
+ "type": "'reposition' | 'block' | 'close'",
4014
+ "description": "Defines how the menu behaves when the window is scrolled.",
4015
+ "default": "scroll"
4016
+ },
4017
+ {
4018
+ "name": "shift",
4019
+ "type": "NgpShift",
4020
+ "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.",
4021
+ "default": "undefined (enabled by default in overlay)"
4022
+ },
4023
+ {
4024
+ "name": "wrap",
4025
+ "type": "boolean",
4026
+ "description": "Whether focus should wrap around when reaching the end of the menu.",
4027
+ "default": "true"
4028
+ },
4029
+ {
4030
+ "name": "cooldown",
4031
+ "type": "number",
4032
+ "description": "Cooldown duration in milliseconds. When moving from one menu to another within this duration, the showDelay is skipped for the new menu.",
4033
+ "default": "0"
4034
+ },
4035
+ {
4036
+ "name": "triggers",
4037
+ "type": "('click' | 'hover' | 'focus' | 'enter' | 'arrowkey')[]",
4038
+ "description": "Define which trigger types are enabled for the menu.",
4039
+ "default": "['click']"
4040
+ },
4041
+ {
4042
+ "name": "showDelay",
4043
+ "type": "number",
4044
+ "description": "Define the delay before the menu is displayed (hover/focus triggers).",
4045
+ "default": "0"
4046
+ },
4047
+ {
4048
+ "name": "hideDelay",
4049
+ "type": "number",
4050
+ "description": "Define the delay before the menu is hidden (hover/focus triggers).",
4051
+ "default": "0"
4052
+ }
4053
+ ]
4054
+ },
4055
+ "NgpNavigationMenuConfig": {
4056
+ "name": "NgpNavigationMenuConfig",
4057
+ "properties": [
4058
+ {
4059
+ "name": "orientation",
4060
+ "type": "'horizontal' | 'vertical'",
4061
+ "description": "Define the orientation of the navigation menu.",
4062
+ "default": "'horizontal'"
4063
+ },
4064
+ {
4065
+ "name": "showDelay",
4066
+ "type": "number",
4067
+ "description": "Define the delay in milliseconds before the content is shown.",
4068
+ "default": "200"
4069
+ },
4070
+ {
4071
+ "name": "hideDelay",
4072
+ "type": "number",
4073
+ "description": "Define the delay in milliseconds before the content is hidden.",
4074
+ "default": "150"
4075
+ },
4076
+ {
4077
+ "name": "placement",
4078
+ "type": "Placement",
4079
+ "description": "Define the placement of the content relative to the trigger.",
4080
+ "default": "'bottom-start'"
4081
+ },
4082
+ {
4083
+ "name": "offset",
4084
+ "type": "NgpOffset",
4085
+ "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.",
4086
+ "default": "4"
4087
+ },
4088
+ {
4089
+ "name": "flip",
4090
+ "type": "NgpFlip",
4091
+ "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.",
4092
+ "default": "true"
4093
+ },
4094
+ {
4095
+ "name": "shift",
4096
+ "type": "NgpShift",
4097
+ "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.",
4098
+ "default": "undefined (enabled by default in overlay)"
4099
+ },
4100
+ {
4101
+ "name": "container",
4102
+ "type": "HTMLElement | string | null",
4103
+ "description": "Define the container element or selector in to which the content should be attached.",
4104
+ "default": "'body'"
4105
+ },
4106
+ {
4107
+ "name": "wrap",
4108
+ "type": "boolean",
4109
+ "description": "Whether focus should wrap around when reaching the end of the list.",
4110
+ "default": "true"
4111
+ },
4112
+ {
4113
+ "name": "cooldown",
4114
+ "type": "number",
4115
+ "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.",
4116
+ "default": "300"
4117
+ }
4118
+ ]
4119
+ },
4120
+ "NgpPopoverConfig": {
4121
+ "name": "NgpPopoverConfig",
4122
+ "properties": [
4123
+ {
4124
+ "name": "offset",
4125
+ "type": "NgpOffset",
4126
+ "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.",
4127
+ "default": "4"
4128
+ },
4129
+ {
4130
+ "name": "placement",
4131
+ "type": "Placement",
4132
+ "description": "Define the placement of the popover relative to the trigger.",
4133
+ "default": "'bottom'"
4134
+ },
4135
+ {
4136
+ "name": "showDelay",
4137
+ "type": "number",
4138
+ "description": "Define the delay before the popover is shown.",
4139
+ "default": "0"
4140
+ },
4141
+ {
4142
+ "name": "hideDelay",
4143
+ "type": "number",
4144
+ "description": "Define the delay before the popover is hidden.",
4145
+ "default": "0"
4146
+ },
4147
+ {
4148
+ "name": "flip",
4149
+ "type": "NgpFlip",
4150
+ "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.",
4151
+ "default": "true"
4152
+ },
4153
+ {
4154
+ "name": "container",
4155
+ "type": "HTMLElement | string | null",
4156
+ "description": "Define the container element or selector in to which the popover should be attached.",
4157
+ "default": "'body'"
4158
+ },
4159
+ {
4160
+ "name": "closeOnOutsideClick",
4161
+ "type": "NgpDismissGuard<Element>",
4162
+ "description": "Define whether the popover should close when clicking outside of it, or a guard function.",
4163
+ "default": "true"
4164
+ },
4165
+ {
4166
+ "name": "closeOnEscape",
4167
+ "type": "NgpDismissGuard<KeyboardEvent>",
4168
+ "description": "Define whether the popover should close when the escape key is pressed, or a guard function.",
4169
+ "default": "true"
4170
+ },
4171
+ {
4172
+ "name": "scrollBehavior",
4173
+ "type": "'reposition' | 'block' | 'close'",
4174
+ "description": "Defines how the popover behaves when the window is scrolled.",
4175
+ "default": "scroll"
4176
+ },
4177
+ {
4178
+ "name": "shift",
4179
+ "type": "NgpShift",
4180
+ "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.",
4181
+ "default": "undefined (enabled by default in overlay)"
4182
+ },
4183
+ {
4184
+ "name": "trackPosition",
4185
+ "type": "boolean",
4186
+ "description": "Whether to track the trigger element position on every animation frame. Useful for moving elements like slider thumbs.",
4187
+ "default": "false"
4188
+ },
4189
+ {
4190
+ "name": "cooldown",
4191
+ "type": "number",
4192
+ "description": "Cooldown duration in milliseconds. When moving from one popover to another within this duration, the showDelay is skipped for the new popover.",
4193
+ "default": "0"
4194
+ }
4195
+ ]
4196
+ },
4197
+ "NgpOverlayConfig": {
4198
+ "name": "NgpOverlayConfig",
4199
+ "properties": [
4200
+ {
4201
+ "name": "content",
4202
+ "type": "NgpOverlayContent<T>",
4203
+ "description": "Content to display in the overlay (component or template)"
4204
+ },
4205
+ {
4206
+ "name": "triggerElement",
4207
+ "type": "HTMLElement",
4208
+ "description": "The element that triggers the overlay"
4209
+ },
4210
+ {
4211
+ "name": "anchorElement",
4212
+ "type": "HTMLElement | null",
4213
+ "description": "The element to use for positioning the overlay (if different from trigger)"
4214
+ },
4215
+ {
4216
+ "name": "injector",
4217
+ "type": "Injector",
4218
+ "description": "The injector to use for creating the portal"
4219
+ },
4220
+ {
4221
+ "name": "viewContainerRef",
4222
+ "type": "ViewContainerRef",
4223
+ "description": "ViewContainerRef to use for creating the portal"
4224
+ },
4225
+ {
4226
+ "name": "context",
4227
+ "type": "Signal<T | undefined>",
4228
+ "description": "Context data to pass to the overlay content"
4229
+ },
4230
+ {
4231
+ "name": "container",
4232
+ "type": "HTMLElement | string | null",
4233
+ "description": "Container element or selector to attach the overlay to (defaults to document.body)"
4234
+ },
4235
+ {
4236
+ "name": "placement",
4237
+ "type": "Signal<Placement>",
4238
+ "description": "Preferred placement of the overlay relative to the trigger."
4239
+ },
4240
+ {
4241
+ "name": "offset",
4242
+ "type": "NgpOffset",
4243
+ "description": "Offset distance between the overlay and trigger. Can be a number or an object with axis-specific offsets"
4244
+ },
4245
+ {
4246
+ "name": "shift",
4247
+ "type": "NgpShift",
4248
+ "description": "Shift configuration to keep the overlay in view. Can be a boolean, an object with options, or undefined"
4249
+ },
4250
+ {
4251
+ "name": "flip",
4252
+ "type": "NgpFlip",
4253
+ "description": "Whether to enable flip behavior when space is limited, or an object with flip options"
4254
+ },
4255
+ {
4256
+ "name": "showDelay",
4257
+ "type": "number",
4258
+ "description": "Delay before showing the overlay in milliseconds"
4259
+ },
4260
+ {
4261
+ "name": "hideDelay",
4262
+ "type": "number",
4263
+ "description": "Delay before hiding the overlay in milliseconds"
4264
+ },
4265
+ {
4266
+ "name": "strategy",
4267
+ "type": "Strategy",
4268
+ "description": "Whether the overlay should be positioned with fixed or absolute strategy"
4269
+ },
4270
+ {
4271
+ "name": "scrollBehaviour",
4272
+ "type": "'reposition' | 'block' | 'close'",
4273
+ "description": "The scroll strategy to use for the overlay"
4274
+ },
4275
+ {
4276
+ "name": "closeOnOutsideClick",
4277
+ "type": "NgpDismissGuard<Element>",
4278
+ "description": "Whether to close the overlay when clicking outside, or a guard function"
4279
+ },
4280
+ {
4281
+ "name": "closeOnEscape",
4282
+ "type": "NgpDismissGuard<KeyboardEvent>",
4283
+ "description": "Whether to close the overlay when pressing escape, or a guard function"
4284
+ },
4285
+ {
4286
+ "name": "restoreFocus",
4287
+ "type": "boolean | Signal<boolean>",
4288
+ "description": "Whether to restore focus to the trigger element when hiding the overlay. Can be a boolean or a signal that returns a boolean."
4289
+ },
4290
+ {
4291
+ "name": "onClose",
4292
+ "type": "(origin: FocusOrigin) => void",
4293
+ "description": "Optional callback to update an external close origin signal. Called when the overlay is hidden with the focus origin."
4294
+ },
4295
+ {
4296
+ "name": "additionalMiddleware",
4297
+ "type": "Middleware[]",
4298
+ "description": "Additional middleware for floating UI positioning"
4299
+ },
4300
+ {
4301
+ "name": "providers",
4302
+ "type": "Provider[]",
4303
+ "description": "Additional providers"
4304
+ },
4305
+ {
4306
+ "name": "trackPosition",
4307
+ "type": "boolean",
4308
+ "description": "Whether to track the trigger element position on every animation frame. Useful for moving elements like slider thumbs."
4309
+ },
4310
+ {
4311
+ "name": "position",
4312
+ "type": "Signal<NgpPosition | null>",
4313
+ "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."
4314
+ },
4315
+ {
4316
+ "name": "treatTriggerClickAsOutside",
4317
+ "type": "boolean",
4318
+ "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."
4319
+ },
4320
+ {
4321
+ "name": "overlayType",
4322
+ "type": "string",
4323
+ "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."
4324
+ },
4325
+ {
4326
+ "name": "cooldown",
4327
+ "type": "number",
4328
+ "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.",
4329
+ "default": "300"
4330
+ }
4331
+ ]
4332
+ },
4333
+ "NgpSelectConfig": {
4334
+ "name": "NgpSelectConfig",
4335
+ "properties": [
4336
+ {
4337
+ "name": "placement",
4338
+ "type": "Placement",
4339
+ "description": "The default placement for the select dropdown.",
4340
+ "default": "'bottom'"
4341
+ },
4342
+ {
4343
+ "name": "container",
4344
+ "type": "HTMLElement | string | null",
4345
+ "description": "The container element or selector for the select dropdown. This can be used to control where the dropdown is rendered in the DOM.",
4346
+ "default": "'body'"
4347
+ },
4348
+ {
4349
+ "name": "flip",
4350
+ "type": "NgpFlip",
4351
+ "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.",
4352
+ "default": "true"
4353
+ }
4354
+ ]
4355
+ },
4356
+ "NgpSeparatorConfig": {
4357
+ "name": "NgpSeparatorConfig",
4358
+ "properties": [
4359
+ {
4360
+ "name": "orientation",
4361
+ "type": "'horizontal' | 'vertical'",
4362
+ "description": "The default separator orientation",
4363
+ "default": "'horizontal'"
4364
+ }
4365
+ ]
4366
+ },
4367
+ "NgpTabsConfig": {
4368
+ "name": "NgpTabsConfig",
4369
+ "properties": [
4370
+ {
4371
+ "name": "orientation",
4372
+ "type": "'horizontal' | 'vertical'",
4373
+ "description": "The orientation of the tabset",
4374
+ "default": "'horizontal'"
4375
+ },
4376
+ {
4377
+ "name": "activateOnFocus",
4378
+ "type": "boolean",
4379
+ "description": "Whether tabs should activate on focus",
4380
+ "default": "true"
4381
+ },
4382
+ {
4383
+ "name": "wrap",
4384
+ "type": "boolean",
4385
+ "description": "Whether focus should wrap within the tab list when using the keyboard.",
4386
+ "default": "true"
4387
+ }
4388
+ ]
4389
+ },
4390
+ "NgpToastConfig": {
4391
+ "name": "NgpToastConfig",
4392
+ "properties": [
4393
+ {
4394
+ "name": "placement",
4395
+ "type": "'top-start' | 'top-end' | 'top-center' | 'bottom-start' | 'bottom-end' | 'bottom-center'",
4396
+ "description": "The position of the toast.",
4397
+ "default": "'top-end'"
4398
+ },
4399
+ {
4400
+ "name": "duration",
4401
+ "type": "number",
4402
+ "description": "The duration of each toast.",
4403
+ "default": "3000"
4404
+ },
4405
+ {
4406
+ "name": "offsetTop",
4407
+ "type": "number",
4408
+ "description": "The offset from the top of the viewport in pixels.",
4409
+ "default": "24"
4410
+ },
4411
+ {
4412
+ "name": "offsetBottom",
4413
+ "type": "number",
4414
+ "description": "The offset from the bottom of the viewport in pixels.",
4415
+ "default": "24"
4416
+ },
4417
+ {
4418
+ "name": "offsetLeft",
4419
+ "type": "number",
4420
+ "description": "The offset from the left of the viewport in pixels.",
4421
+ "default": "24"
4422
+ },
4423
+ {
4424
+ "name": "offsetRight",
4425
+ "type": "number",
4426
+ "description": "The offset from the right of the viewport in pixels.",
4427
+ "default": "24"
4428
+ },
4429
+ {
4430
+ "name": "dismissible",
4431
+ "type": "boolean",
4432
+ "description": "Whether a toast can be dismissed by swiping.",
4433
+ "default": "true"
4434
+ },
4435
+ {
4436
+ "name": "swipeThreshold",
4437
+ "type": "number",
4438
+ "description": "The amount a toast must be swiped before it is considered dismissed.",
4439
+ "default": "45"
4440
+ },
4441
+ {
4442
+ "name": "swipeDirections",
4443
+ "type": "('top' | 'right' | 'bottom' | 'left')[]",
4444
+ "description": "The default swipe directions supported by the toast."
4445
+ },
4446
+ {
4447
+ "name": "maxToasts",
4448
+ "type": "number",
4449
+ "description": "The maximum number of toasts that can be displayed at once.",
4450
+ "default": "3"
4451
+ },
4452
+ {
4453
+ "name": "ariaLive",
4454
+ "type": "string",
4455
+ "description": "The aria live setting.",
4456
+ "default": "'polite'"
4457
+ },
4458
+ {
4459
+ "name": "gap",
4460
+ "type": "number",
4461
+ "description": "The gap between each toast.",
4462
+ "default": "14"
4463
+ },
4464
+ {
4465
+ "name": "zIndex",
4466
+ "type": "number",
4467
+ "description": "The z-index of the toast container. This is used to ensure that the toast container is always on top of other elements.",
4468
+ "default": "9999999"
4469
+ },
4470
+ {
4471
+ "name": "sequential",
4472
+ "type": "boolean",
4473
+ "description": "When true, only the front toast's timer will run. When a toast is dismissed, the timer will start on the next toast.",
4474
+ "default": "false"
4475
+ }
4476
+ ]
4477
+ },
4478
+ "NgpToggleGroupConfig": {
4479
+ "name": "NgpToggleGroupConfig",
4480
+ "properties": [
4481
+ {
4482
+ "name": "orientation",
4483
+ "type": "'horizontal' | 'vertical'",
4484
+ "description": "The orientation of the toggle group.",
4485
+ "default": "'horizontal'"
4486
+ },
4487
+ {
4488
+ "name": "type",
4489
+ "type": "'single' | 'multiple'",
4490
+ "description": "The type of the toggle group, whether only one item can be selected or multiple.",
4491
+ "default": "'single'"
4492
+ },
4493
+ {
4494
+ "name": "allowDeselection",
4495
+ "type": "boolean",
4496
+ "description": "Whether a toggle button can be deselected.",
4497
+ "default": "true"
4498
+ },
4499
+ {
4500
+ "name": "wrap",
4501
+ "type": "boolean",
4502
+ "description": "Whether focus should wrap around when reaching the end of the toggle group.",
4503
+ "default": "true"
4504
+ }
4505
+ ]
4506
+ },
4507
+ "NgpTooltipConfig": {
4508
+ "name": "NgpTooltipConfig",
4509
+ "properties": [
4510
+ {
4511
+ "name": "offset",
4512
+ "type": "NgpOffset",
4513
+ "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.",
4514
+ "default": "4"
4515
+ },
4516
+ {
4517
+ "name": "placement",
4518
+ "type": "Placement",
4519
+ "description": "Define the placement of the tooltip relative to the trigger.",
4520
+ "default": "'top'"
4521
+ },
4522
+ {
4523
+ "name": "showDelay",
4524
+ "type": "number",
4525
+ "description": "Define the delay before the tooltip is shown.",
4526
+ "default": "0"
4527
+ },
4528
+ {
4529
+ "name": "hideDelay",
4530
+ "type": "number",
4531
+ "description": "Define the delay before the tooltip is hidden.",
4532
+ "default": "500"
4533
+ },
4534
+ {
4535
+ "name": "flip",
4536
+ "type": "NgpFlip",
4537
+ "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.",
4538
+ "default": "true"
4539
+ },
4540
+ {
4541
+ "name": "container",
4542
+ "type": "HTMLElement | string | null",
4543
+ "description": "Define the container element or selector into which the tooltip should be attached.",
4544
+ "default": "'body'"
4545
+ },
4546
+ {
4547
+ "name": "showOnOverflow",
4548
+ "type": "boolean",
4549
+ "description": "Whether the tooltip should only show when the trigger element overflows.",
4550
+ "default": "false"
4551
+ },
4552
+ {
4553
+ "name": "useTextContent",
4554
+ "type": "boolean",
4555
+ "description": "Whether to use the text content of the trigger element as the tooltip content.",
4556
+ "default": "true"
4557
+ },
4558
+ {
4559
+ "name": "shift",
4560
+ "type": "NgpShift",
4561
+ "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.",
4562
+ "default": "undefined (enabled by default in overlay)"
4563
+ },
4564
+ {
4565
+ "name": "trackPosition",
4566
+ "type": "boolean",
4567
+ "description": "Whether to track the trigger element position on every animation frame. Useful for moving elements like slider thumbs.",
4568
+ "default": "false"
4569
+ },
4570
+ {
4571
+ "name": "scrollBehavior",
4572
+ "type": "'reposition' | 'close'",
4573
+ "description": "Defines how the tooltip behaves when the window is scrolled.",
4574
+ "default": "'reposition'"
4575
+ },
4576
+ {
4577
+ "name": "cooldown",
4578
+ "type": "number",
4579
+ "description": "Cooldown duration in milliseconds. When moving from one tooltip to another within this duration, the showDelay is skipped for the new tooltip.",
4580
+ "default": "300"
4581
+ },
4582
+ {
4583
+ "name": "hoverableContent",
4584
+ "type": "boolean",
4585
+ "description": "Whether hovering the tooltip content keeps it open while moving from the trigger.",
4586
+ "default": "false"
4587
+ }
4588
+ ]
3422
4589
  }
3423
4590
  }