@ng-primitives/mcp 0.127.0 → 0.128.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.
- package/package.json +1 -1
- package/src/generated/api-data.json +355 -235
- package/src/generated/primitives-data.json +200 -38
- package/src/generated/reusable-components.json +21 -21
|
@@ -115,6 +115,16 @@
|
|
|
115
115
|
"inputs": [],
|
|
116
116
|
"outputs": []
|
|
117
117
|
},
|
|
118
|
+
"NgpThreadMessage": {
|
|
119
|
+
"name": "NgpThreadMessage",
|
|
120
|
+
"description": "",
|
|
121
|
+
"selector": "[ngpThreadMessage]",
|
|
122
|
+
"exportAs": [
|
|
123
|
+
"ngpThreadMessage"
|
|
124
|
+
],
|
|
125
|
+
"inputs": [],
|
|
126
|
+
"outputs": []
|
|
127
|
+
},
|
|
118
128
|
"NgpPromptComposer": {
|
|
119
129
|
"name": "NgpPromptComposer",
|
|
120
130
|
"description": "",
|
|
@@ -131,6 +141,16 @@
|
|
|
131
141
|
}
|
|
132
142
|
]
|
|
133
143
|
},
|
|
144
|
+
"NgpPromptComposerInput": {
|
|
145
|
+
"name": "NgpPromptComposerInput",
|
|
146
|
+
"description": "",
|
|
147
|
+
"selector": "input[ngpPromptComposerInput], textarea[ngpPromptComposerInput]",
|
|
148
|
+
"exportAs": [
|
|
149
|
+
"ngpPromptComposerInput"
|
|
150
|
+
],
|
|
151
|
+
"inputs": [],
|
|
152
|
+
"outputs": []
|
|
153
|
+
},
|
|
134
154
|
"NgpThreadSuggestion": {
|
|
135
155
|
"name": "NgpThreadSuggestion",
|
|
136
156
|
"description": "",
|
|
@@ -156,16 +176,6 @@
|
|
|
156
176
|
],
|
|
157
177
|
"outputs": []
|
|
158
178
|
},
|
|
159
|
-
"NgpThreadMessage": {
|
|
160
|
-
"name": "NgpThreadMessage",
|
|
161
|
-
"description": "",
|
|
162
|
-
"selector": "[ngpThreadMessage]",
|
|
163
|
-
"exportAs": [
|
|
164
|
-
"ngpThreadMessage"
|
|
165
|
-
],
|
|
166
|
-
"inputs": [],
|
|
167
|
-
"outputs": []
|
|
168
|
-
},
|
|
169
179
|
"NgpPromptComposerSubmit": {
|
|
170
180
|
"name": "NgpPromptComposerSubmit",
|
|
171
181
|
"description": "",
|
|
@@ -208,16 +218,6 @@
|
|
|
208
218
|
],
|
|
209
219
|
"outputs": []
|
|
210
220
|
},
|
|
211
|
-
"NgpPromptComposerInput": {
|
|
212
|
-
"name": "NgpPromptComposerInput",
|
|
213
|
-
"description": "",
|
|
214
|
-
"selector": "input[ngpPromptComposerInput], textarea[ngpPromptComposerInput]",
|
|
215
|
-
"exportAs": [
|
|
216
|
-
"ngpPromptComposerInput"
|
|
217
|
-
],
|
|
218
|
-
"inputs": [],
|
|
219
|
-
"outputs": []
|
|
220
|
-
},
|
|
221
221
|
"NgpPromptComposerDictation": {
|
|
222
222
|
"name": "NgpPromptComposerDictation",
|
|
223
223
|
"description": "",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
{
|
|
230
230
|
"name": "disabled",
|
|
231
231
|
"type": "boolean",
|
|
232
|
-
"description": "Whether the
|
|
232
|
+
"description": "Whether the dictation button should be disabled.",
|
|
233
233
|
"isRequired": false
|
|
234
234
|
}
|
|
235
235
|
],
|
|
@@ -578,8 +578,14 @@
|
|
|
578
578
|
"inputs": [
|
|
579
579
|
{
|
|
580
580
|
"name": "ngpColorPickerValue",
|
|
581
|
+
"type": "Color | undefined",
|
|
582
|
+
"description": "The color value. When defined the picker is controlled.",
|
|
583
|
+
"isRequired": false
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"name": "ngpColorPickerDefaultValue",
|
|
581
587
|
"type": "Color",
|
|
582
|
-
"description": "The color value.",
|
|
588
|
+
"description": "The default color value for uncontrolled usage.",
|
|
583
589
|
"isRequired": false
|
|
584
590
|
}
|
|
585
591
|
],
|
|
@@ -625,10 +631,16 @@
|
|
|
625
631
|
"inputs": [
|
|
626
632
|
{
|
|
627
633
|
"name": "ngpColorWheelValue",
|
|
628
|
-
"type": "Color",
|
|
634
|
+
"type": "Color | undefined",
|
|
629
635
|
"description": "The color value.",
|
|
630
636
|
"isRequired": false
|
|
631
637
|
},
|
|
638
|
+
{
|
|
639
|
+
"name": "ngpColorWheelDefaultValue",
|
|
640
|
+
"type": "Color",
|
|
641
|
+
"description": "The default color value for uncontrolled usage.",
|
|
642
|
+
"isRequired": false
|
|
643
|
+
},
|
|
632
644
|
{
|
|
633
645
|
"name": "ngpColorWheelColorSpace",
|
|
634
646
|
"type": "'rgb' | 'hsl' | 'hsb'",
|
|
@@ -662,10 +674,16 @@
|
|
|
662
674
|
"inputs": [
|
|
663
675
|
{
|
|
664
676
|
"name": "ngpColorAreaValue",
|
|
665
|
-
"type": "Color",
|
|
677
|
+
"type": "Color | undefined",
|
|
666
678
|
"description": "The color value.",
|
|
667
679
|
"isRequired": false
|
|
668
680
|
},
|
|
681
|
+
{
|
|
682
|
+
"name": "ngpColorAreaDefaultValue",
|
|
683
|
+
"type": "Color",
|
|
684
|
+
"description": "The default color value for uncontrolled usage.",
|
|
685
|
+
"isRequired": false
|
|
686
|
+
},
|
|
669
687
|
{
|
|
670
688
|
"name": "ngpColorAreaXChannel",
|
|
671
689
|
"type": "'red' | 'green' | 'blue' | 'hue' | 'saturation' | 'lightness' | 'brightness' | 'alpha'",
|
|
@@ -712,10 +730,16 @@
|
|
|
712
730
|
"inputs": [
|
|
713
731
|
{
|
|
714
732
|
"name": "ngpColorFieldValue",
|
|
715
|
-
"type": "Color",
|
|
733
|
+
"type": "Color | undefined",
|
|
716
734
|
"description": "The color value.",
|
|
717
735
|
"isRequired": false
|
|
718
736
|
},
|
|
737
|
+
{
|
|
738
|
+
"name": "ngpColorFieldDefaultValue",
|
|
739
|
+
"type": "Color",
|
|
740
|
+
"description": "The default color value for uncontrolled usage.",
|
|
741
|
+
"isRequired": false
|
|
742
|
+
},
|
|
719
743
|
{
|
|
720
744
|
"name": "ngpColorFieldChannel",
|
|
721
745
|
"type": "ColorChannel | undefined",
|
|
@@ -754,10 +778,16 @@
|
|
|
754
778
|
"inputs": [
|
|
755
779
|
{
|
|
756
780
|
"name": "ngpColorSliderValue",
|
|
757
|
-
"type": "Color",
|
|
781
|
+
"type": "Color | undefined",
|
|
758
782
|
"description": "The color value.",
|
|
759
783
|
"isRequired": false
|
|
760
784
|
},
|
|
785
|
+
{
|
|
786
|
+
"name": "ngpColorSliderDefaultValue",
|
|
787
|
+
"type": "Color",
|
|
788
|
+
"description": "The default color value for uncontrolled usage.",
|
|
789
|
+
"isRequired": false
|
|
790
|
+
},
|
|
761
791
|
{
|
|
762
792
|
"name": "ngpColorSliderChannel",
|
|
763
793
|
"type": "'red' | 'green' | 'blue' | 'hue' | 'saturation' | 'lightness' | 'brightness' | 'alpha'",
|
|
@@ -805,7 +835,13 @@
|
|
|
805
835
|
{
|
|
806
836
|
"name": "ngpColorSwatchPickerValue",
|
|
807
837
|
"type": "Color | undefined",
|
|
808
|
-
"description": "The selected color.",
|
|
838
|
+
"description": "The selected color. When defined the swatch picker is controlled.",
|
|
839
|
+
"isRequired": false
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"name": "ngpColorSwatchPickerDefaultValue",
|
|
843
|
+
"type": "Color | undefined",
|
|
844
|
+
"description": "The default selected color for uncontrolled usage (undefined = no selection).",
|
|
809
845
|
"isRequired": false
|
|
810
846
|
},
|
|
811
847
|
{
|
|
@@ -950,7 +986,7 @@
|
|
|
950
986
|
},
|
|
951
987
|
{
|
|
952
988
|
"name": "ngpComboboxDropdownPlacement",
|
|
953
|
-
"type": "
|
|
989
|
+
"type": "Placement",
|
|
954
990
|
"description": "The position of the dropdown.",
|
|
955
991
|
"isRequired": false,
|
|
956
992
|
"defaultValue": "'bottom'"
|
|
@@ -1167,7 +1203,7 @@
|
|
|
1167
1203
|
},
|
|
1168
1204
|
{
|
|
1169
1205
|
"name": "ngpContextMenuSubmenuTriggerPlacement",
|
|
1170
|
-
"type": "
|
|
1206
|
+
"type": "Placement",
|
|
1171
1207
|
"description": "Define the placement of the submenu relative to the trigger.\n@default 'right-start'",
|
|
1172
1208
|
"isRequired": false,
|
|
1173
1209
|
"defaultValue": "'right-start'"
|
|
@@ -1263,6 +1299,36 @@
|
|
|
1263
1299
|
"inputs": [],
|
|
1264
1300
|
"outputs": []
|
|
1265
1301
|
},
|
|
1302
|
+
"NgpDatePickerNextMonth": {
|
|
1303
|
+
"name": "NgpDatePickerNextMonth",
|
|
1304
|
+
"description": "A button that navigates to the next month.",
|
|
1305
|
+
"selector": "[ngpDatePickerNextMonth]",
|
|
1306
|
+
"exportAs": [
|
|
1307
|
+
"ngpDatePickerNextMonth"
|
|
1308
|
+
],
|
|
1309
|
+
"inputs": [],
|
|
1310
|
+
"outputs": []
|
|
1311
|
+
},
|
|
1312
|
+
"NgpDatePickerPreviousMonth": {
|
|
1313
|
+
"name": "NgpDatePickerPreviousMonth",
|
|
1314
|
+
"description": "A button that navigates to the previous month.",
|
|
1315
|
+
"selector": "[ngpDatePickerPreviousMonth]",
|
|
1316
|
+
"exportAs": [
|
|
1317
|
+
"ngpDatePickerPreviousMonth"
|
|
1318
|
+
],
|
|
1319
|
+
"inputs": [],
|
|
1320
|
+
"outputs": []
|
|
1321
|
+
},
|
|
1322
|
+
"NgpDatePickerDateButton": {
|
|
1323
|
+
"name": "NgpDatePickerDateButton",
|
|
1324
|
+
"description": "A button that represents a date in the date picker grid.",
|
|
1325
|
+
"selector": "[ngpDatePickerDateButton]",
|
|
1326
|
+
"exportAs": [
|
|
1327
|
+
"ngpDatePickerDateButton"
|
|
1328
|
+
],
|
|
1329
|
+
"inputs": [],
|
|
1330
|
+
"outputs": []
|
|
1331
|
+
},
|
|
1266
1332
|
"NgpDatePickerCell": {
|
|
1267
1333
|
"name": "NgpDatePickerCell",
|
|
1268
1334
|
"description": "A cell in the date picker grid.",
|
|
@@ -1291,26 +1357,6 @@
|
|
|
1291
1357
|
],
|
|
1292
1358
|
"outputs": []
|
|
1293
1359
|
},
|
|
1294
|
-
"NgpDatePickerNextMonth": {
|
|
1295
|
-
"name": "NgpDatePickerNextMonth",
|
|
1296
|
-
"description": "A button that navigates to the next month.",
|
|
1297
|
-
"selector": "[ngpDatePickerNextMonth]",
|
|
1298
|
-
"exportAs": [
|
|
1299
|
-
"ngpDatePickerNextMonth"
|
|
1300
|
-
],
|
|
1301
|
-
"inputs": [],
|
|
1302
|
-
"outputs": []
|
|
1303
|
-
},
|
|
1304
|
-
"NgpDatePickerPreviousMonth": {
|
|
1305
|
-
"name": "NgpDatePickerPreviousMonth",
|
|
1306
|
-
"description": "A button that navigates to the previous month.",
|
|
1307
|
-
"selector": "[ngpDatePickerPreviousMonth]",
|
|
1308
|
-
"exportAs": [
|
|
1309
|
-
"ngpDatePickerPreviousMonth"
|
|
1310
|
-
],
|
|
1311
|
-
"inputs": [],
|
|
1312
|
-
"outputs": []
|
|
1313
|
-
},
|
|
1314
1360
|
"NgpDatePickerCellRender": {
|
|
1315
1361
|
"name": "NgpDatePickerCellRender",
|
|
1316
1362
|
"description": "A structural directive that renders a cell in the date picker grid.",
|
|
@@ -1321,167 +1367,187 @@
|
|
|
1321
1367
|
"inputs": [],
|
|
1322
1368
|
"outputs": []
|
|
1323
1369
|
},
|
|
1324
|
-
"
|
|
1325
|
-
"name": "
|
|
1326
|
-
"description": "
|
|
1327
|
-
"selector": "[
|
|
1328
|
-
"exportAs": [
|
|
1329
|
-
"ngpDatePickerDateButton"
|
|
1330
|
-
],
|
|
1331
|
-
"inputs": [],
|
|
1332
|
-
"outputs": []
|
|
1333
|
-
},
|
|
1334
|
-
"NgpDatePickerRowRender": {
|
|
1335
|
-
"name": "NgpDatePickerRowRender",
|
|
1336
|
-
"description": "A structural directive that renders a row of weekdays in the date picker grid.",
|
|
1337
|
-
"selector": "[ngpDatePickerRowRender]",
|
|
1338
|
-
"exportAs": [
|
|
1339
|
-
"ngpDatePickerRowRender"
|
|
1340
|
-
],
|
|
1341
|
-
"inputs": [],
|
|
1342
|
-
"outputs": []
|
|
1343
|
-
},
|
|
1344
|
-
"NgpDatePicker": {
|
|
1345
|
-
"name": "NgpDatePicker",
|
|
1346
|
-
"description": "The outermost container for the date picker.",
|
|
1347
|
-
"selector": "[ngpDatePicker]",
|
|
1370
|
+
"NgpDateRangePicker": {
|
|
1371
|
+
"name": "NgpDateRangePicker",
|
|
1372
|
+
"description": "",
|
|
1373
|
+
"selector": "[ngpDateRangePicker]",
|
|
1348
1374
|
"exportAs": [
|
|
1349
|
-
"
|
|
1375
|
+
"ngpDateRangePicker"
|
|
1350
1376
|
],
|
|
1351
1377
|
"inputs": [
|
|
1352
1378
|
{
|
|
1353
|
-
"name": "
|
|
1379
|
+
"name": "ngpDateRangePickerMin",
|
|
1354
1380
|
"type": "T | undefined",
|
|
1355
1381
|
"description": "The minimum date that can be selected.",
|
|
1356
1382
|
"isRequired": false
|
|
1357
1383
|
},
|
|
1358
1384
|
{
|
|
1359
|
-
"name": "
|
|
1385
|
+
"name": "ngpDateRangePickerMax",
|
|
1360
1386
|
"type": "T | undefined",
|
|
1361
1387
|
"description": "The maximum date that can be selected.",
|
|
1362
1388
|
"isRequired": false
|
|
1363
1389
|
},
|
|
1364
1390
|
{
|
|
1365
|
-
"name": "
|
|
1391
|
+
"name": "ngpDateRangePickerDisabled",
|
|
1366
1392
|
"type": "boolean",
|
|
1367
1393
|
"description": "Determine if the date picker is disabled.",
|
|
1368
1394
|
"isRequired": false,
|
|
1369
1395
|
"defaultValue": "false"
|
|
1370
1396
|
},
|
|
1371
1397
|
{
|
|
1372
|
-
"name": "
|
|
1398
|
+
"name": "ngpDateRangePickerDateDisabled",
|
|
1373
1399
|
"type": "(date: T) => boolean",
|
|
1374
1400
|
"description": "A function that is called to determine if a specific date should be disabled.",
|
|
1375
1401
|
"isRequired": false
|
|
1376
1402
|
},
|
|
1377
1403
|
{
|
|
1378
|
-
"name": "
|
|
1404
|
+
"name": "ngpDateRangePickerFirstDayOfWeek",
|
|
1379
1405
|
"type": "1 | 2 | 3 | 4 | 5 | 6 | 7",
|
|
1380
1406
|
"description": "Sets which day starts the week in the calendar.\nAccepts 0-7 where 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday, 7=Sunday.\nDefaults to NgpDatePickerConfig.firstDayOfWeek (default 7 if not overridden).\nNote: Update calendar header column order when changing from Sunday start.\n@default 7 (Sunday)",
|
|
1381
1407
|
"isRequired": false
|
|
1382
1408
|
},
|
|
1383
1409
|
{
|
|
1384
|
-
"name": "
|
|
1410
|
+
"name": "ngpDateRangePickerStartDate",
|
|
1385
1411
|
"type": "T | undefined",
|
|
1386
|
-
"description": "The selected
|
|
1412
|
+
"description": "The selected start date",
|
|
1387
1413
|
"isRequired": false
|
|
1388
1414
|
},
|
|
1389
1415
|
{
|
|
1390
|
-
"name": "
|
|
1391
|
-
"type": "T",
|
|
1416
|
+
"name": "ngpDateRangePickerDefaultStartDate",
|
|
1417
|
+
"type": "T | undefined",
|
|
1418
|
+
"description": "The default (uncontrolled) start date.",
|
|
1419
|
+
"isRequired": false
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"name": "ngpDateRangePickerEndDate",
|
|
1423
|
+
"type": "T | undefined",
|
|
1424
|
+
"description": "The selected end date",
|
|
1425
|
+
"isRequired": false
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"name": "ngpDateRangePickerDefaultEndDate",
|
|
1429
|
+
"type": "T | undefined",
|
|
1430
|
+
"description": "The default (uncontrolled) end date.",
|
|
1431
|
+
"isRequired": false
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
"name": "ngpDateRangePickerFocusedDate",
|
|
1435
|
+
"type": "T | undefined",
|
|
1392
1436
|
"description": "The focused value.",
|
|
1393
1437
|
"isRequired": false
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
"name": "ngpDateRangePickerDefaultFocusedDate",
|
|
1441
|
+
"type": "T",
|
|
1442
|
+
"description": "The default (uncontrolled) focused value.",
|
|
1443
|
+
"isRequired": false
|
|
1394
1444
|
}
|
|
1395
1445
|
],
|
|
1396
1446
|
"outputs": [
|
|
1397
1447
|
{
|
|
1398
|
-
"name": "
|
|
1448
|
+
"name": "ngpDateRangePickerStartDateChange",
|
|
1399
1449
|
"type": "T | undefined",
|
|
1400
1450
|
"description": "Emit when the date changes."
|
|
1401
1451
|
},
|
|
1402
1452
|
{
|
|
1403
|
-
"name": "
|
|
1453
|
+
"name": "ngpDateRangePickerEndDateChange",
|
|
1454
|
+
"type": "T | undefined",
|
|
1455
|
+
"description": "Emit when the end date changes."
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"name": "ngpDateRangePickerFocusedDateChange",
|
|
1404
1459
|
"type": "T",
|
|
1405
1460
|
"description": "Emit when the focused date changes."
|
|
1406
1461
|
}
|
|
1407
1462
|
]
|
|
1408
1463
|
},
|
|
1409
|
-
"
|
|
1410
|
-
"name": "
|
|
1411
|
-
"description": "",
|
|
1412
|
-
"selector": "[
|
|
1464
|
+
"NgpDatePicker": {
|
|
1465
|
+
"name": "NgpDatePicker",
|
|
1466
|
+
"description": "The outermost container for the date picker.",
|
|
1467
|
+
"selector": "[ngpDatePicker]",
|
|
1413
1468
|
"exportAs": [
|
|
1414
|
-
"
|
|
1469
|
+
"ngpDatePicker"
|
|
1415
1470
|
],
|
|
1416
1471
|
"inputs": [
|
|
1417
1472
|
{
|
|
1418
|
-
"name": "
|
|
1473
|
+
"name": "ngpDatePickerMin",
|
|
1419
1474
|
"type": "T | undefined",
|
|
1420
1475
|
"description": "The minimum date that can be selected.",
|
|
1421
1476
|
"isRequired": false
|
|
1422
1477
|
},
|
|
1423
1478
|
{
|
|
1424
|
-
"name": "
|
|
1479
|
+
"name": "ngpDatePickerMax",
|
|
1425
1480
|
"type": "T | undefined",
|
|
1426
1481
|
"description": "The maximum date that can be selected.",
|
|
1427
1482
|
"isRequired": false
|
|
1428
1483
|
},
|
|
1429
1484
|
{
|
|
1430
|
-
"name": "
|
|
1485
|
+
"name": "ngpDatePickerDisabled",
|
|
1431
1486
|
"type": "boolean",
|
|
1432
1487
|
"description": "Determine if the date picker is disabled.",
|
|
1433
1488
|
"isRequired": false,
|
|
1434
1489
|
"defaultValue": "false"
|
|
1435
1490
|
},
|
|
1436
1491
|
{
|
|
1437
|
-
"name": "
|
|
1492
|
+
"name": "ngpDatePickerDateDisabled",
|
|
1438
1493
|
"type": "(date: T) => boolean",
|
|
1439
1494
|
"description": "A function that is called to determine if a specific date should be disabled.",
|
|
1440
1495
|
"isRequired": false
|
|
1441
1496
|
},
|
|
1442
1497
|
{
|
|
1443
|
-
"name": "
|
|
1498
|
+
"name": "ngpDatePickerFirstDayOfWeek",
|
|
1444
1499
|
"type": "1 | 2 | 3 | 4 | 5 | 6 | 7",
|
|
1445
1500
|
"description": "Sets which day starts the week in the calendar.\nAccepts 0-7 where 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday, 7=Sunday.\nDefaults to NgpDatePickerConfig.firstDayOfWeek (default 7 if not overridden).\nNote: Update calendar header column order when changing from Sunday start.\n@default 7 (Sunday)",
|
|
1446
1501
|
"isRequired": false
|
|
1447
1502
|
},
|
|
1448
1503
|
{
|
|
1449
|
-
"name": "
|
|
1504
|
+
"name": "ngpDatePickerDate",
|
|
1450
1505
|
"type": "T | undefined",
|
|
1451
|
-
"description": "The selected
|
|
1506
|
+
"description": "The selected value.",
|
|
1452
1507
|
"isRequired": false
|
|
1453
1508
|
},
|
|
1454
1509
|
{
|
|
1455
|
-
"name": "
|
|
1510
|
+
"name": "ngpDatePickerDefaultDate",
|
|
1456
1511
|
"type": "T | undefined",
|
|
1457
|
-
"description": "The selected
|
|
1512
|
+
"description": "The default (uncontrolled) selected value.",
|
|
1458
1513
|
"isRequired": false
|
|
1459
1514
|
},
|
|
1460
1515
|
{
|
|
1461
|
-
"name": "
|
|
1462
|
-
"type": "T",
|
|
1516
|
+
"name": "ngpDatePickerFocusedDate",
|
|
1517
|
+
"type": "T | undefined",
|
|
1463
1518
|
"description": "The focused value.",
|
|
1464
1519
|
"isRequired": false
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"name": "ngpDatePickerDefaultFocusedDate",
|
|
1523
|
+
"type": "T",
|
|
1524
|
+
"description": "The default (uncontrolled) focused value.",
|
|
1525
|
+
"isRequired": false
|
|
1465
1526
|
}
|
|
1466
1527
|
],
|
|
1467
1528
|
"outputs": [
|
|
1468
1529
|
{
|
|
1469
|
-
"name": "
|
|
1530
|
+
"name": "ngpDatePickerDateChange",
|
|
1470
1531
|
"type": "T | undefined",
|
|
1471
1532
|
"description": "Emit when the date changes."
|
|
1472
1533
|
},
|
|
1473
1534
|
{
|
|
1474
|
-
"name": "
|
|
1475
|
-
"type": "T | undefined",
|
|
1476
|
-
"description": "Emit when the end date changes."
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
"name": "ngpDateRangePickerFocusedDateChange",
|
|
1535
|
+
"name": "ngpDatePickerFocusedDateChange",
|
|
1480
1536
|
"type": "T",
|
|
1481
1537
|
"description": "Emit when the focused date changes."
|
|
1482
1538
|
}
|
|
1483
1539
|
]
|
|
1484
1540
|
},
|
|
1541
|
+
"NgpDatePickerRowRender": {
|
|
1542
|
+
"name": "NgpDatePickerRowRender",
|
|
1543
|
+
"description": "A structural directive that renders a row of weekdays in the date picker grid.",
|
|
1544
|
+
"selector": "[ngpDatePickerRowRender]",
|
|
1545
|
+
"exportAs": [
|
|
1546
|
+
"ngpDatePickerRowRender"
|
|
1547
|
+
],
|
|
1548
|
+
"inputs": [],
|
|
1549
|
+
"outputs": []
|
|
1550
|
+
},
|
|
1485
1551
|
"NgpDialogTitle": {
|
|
1486
1552
|
"name": "NgpDialogTitle",
|
|
1487
1553
|
"description": "",
|
|
@@ -2052,22 +2118,22 @@
|
|
|
2052
2118
|
"inputs": [],
|
|
2053
2119
|
"outputs": []
|
|
2054
2120
|
},
|
|
2055
|
-
"
|
|
2056
|
-
"name": "
|
|
2121
|
+
"NgpListboxTrigger": {
|
|
2122
|
+
"name": "NgpListboxTrigger",
|
|
2057
2123
|
"description": "",
|
|
2058
|
-
"selector": "[
|
|
2124
|
+
"selector": "[ngpListboxTrigger]",
|
|
2059
2125
|
"exportAs": [
|
|
2060
|
-
"
|
|
2126
|
+
"ngpListboxTrigger"
|
|
2061
2127
|
],
|
|
2062
2128
|
"inputs": [],
|
|
2063
2129
|
"outputs": []
|
|
2064
2130
|
},
|
|
2065
|
-
"
|
|
2066
|
-
"name": "
|
|
2131
|
+
"NgpListboxSection": {
|
|
2132
|
+
"name": "NgpListboxSection",
|
|
2067
2133
|
"description": "",
|
|
2068
|
-
"selector": "[
|
|
2134
|
+
"selector": "[ngpListboxSection]",
|
|
2069
2135
|
"exportAs": [
|
|
2070
|
-
"
|
|
2136
|
+
"ngpListboxSection"
|
|
2071
2137
|
],
|
|
2072
2138
|
"inputs": [],
|
|
2073
2139
|
"outputs": []
|
|
@@ -2123,8 +2189,14 @@
|
|
|
2123
2189
|
},
|
|
2124
2190
|
{
|
|
2125
2191
|
"name": "ngpListboxValue",
|
|
2192
|
+
"type": "T[] | undefined",
|
|
2193
|
+
"description": "The listbox selection. When defined the listbox is controlled.",
|
|
2194
|
+
"isRequired": false
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
"name": "ngpListboxDefaultValue",
|
|
2126
2198
|
"type": "T[]",
|
|
2127
|
-
"description": "The listbox selection.",
|
|
2199
|
+
"description": "The default listbox selection for uncontrolled usage.",
|
|
2128
2200
|
"isRequired": false,
|
|
2129
2201
|
"defaultValue": "[]"
|
|
2130
2202
|
},
|
|
@@ -2160,8 +2232,14 @@
|
|
|
2160
2232
|
"inputs": [
|
|
2161
2233
|
{
|
|
2162
2234
|
"name": "ngpMenuItemRadioGroupValue",
|
|
2235
|
+
"type": "string | null | undefined",
|
|
2236
|
+
"description": "The current value of the radio group. When defined the group is controlled.",
|
|
2237
|
+
"isRequired": false
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"name": "ngpMenuItemRadioGroupDefaultValue",
|
|
2163
2241
|
"type": "string | null",
|
|
2164
|
-
"description": "The
|
|
2242
|
+
"description": "The default value for uncontrolled usage",
|
|
2165
2243
|
"isRequired": false,
|
|
2166
2244
|
"defaultValue": "null"
|
|
2167
2245
|
}
|
|
@@ -2223,6 +2301,16 @@
|
|
|
2223
2301
|
],
|
|
2224
2302
|
"outputs": []
|
|
2225
2303
|
},
|
|
2304
|
+
"NgpMenuItemIndicator": {
|
|
2305
|
+
"name": "NgpMenuItemIndicator",
|
|
2306
|
+
"description": "The `NgpMenuItemIndicator` directive renders inside a checkbox or radio menu item\nand exposes `data-checked` based on the parent item's checked state.",
|
|
2307
|
+
"selector": "[ngpMenuItemIndicator]",
|
|
2308
|
+
"exportAs": [
|
|
2309
|
+
"ngpMenuItemIndicator"
|
|
2310
|
+
],
|
|
2311
|
+
"inputs": [],
|
|
2312
|
+
"outputs": []
|
|
2313
|
+
},
|
|
2226
2314
|
"NgpMenuItemCheckbox": {
|
|
2227
2315
|
"name": "NgpMenuItemCheckbox",
|
|
2228
2316
|
"description": "The `NgpMenuItemCheckbox` directive represents a menu item that can be toggled on and off.",
|
|
@@ -2233,8 +2321,14 @@
|
|
|
2233
2321
|
"inputs": [
|
|
2234
2322
|
{
|
|
2235
2323
|
"name": "ngpMenuItemCheckboxChecked",
|
|
2324
|
+
"type": "boolean | undefined",
|
|
2325
|
+
"description": "Whether the checkbox is checked. When defined the checkbox is controlled.",
|
|
2326
|
+
"isRequired": false
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"name": "ngpMenuItemCheckboxDefaultChecked",
|
|
2236
2330
|
"type": "boolean",
|
|
2237
|
-
"description": "
|
|
2331
|
+
"description": "The default checked state for uncontrolled usage",
|
|
2238
2332
|
"isRequired": false,
|
|
2239
2333
|
"defaultValue": "false"
|
|
2240
2334
|
},
|
|
@@ -2254,16 +2348,6 @@
|
|
|
2254
2348
|
}
|
|
2255
2349
|
]
|
|
2256
2350
|
},
|
|
2257
|
-
"NgpMenuItemIndicator": {
|
|
2258
|
-
"name": "NgpMenuItemIndicator",
|
|
2259
|
-
"description": "The `NgpMenuItemIndicator` directive renders inside a checkbox or radio menu item\nand exposes `data-checked` based on the parent item's checked state.",
|
|
2260
|
-
"selector": "[ngpMenuItemIndicator]",
|
|
2261
|
-
"exportAs": [
|
|
2262
|
-
"ngpMenuItemIndicator"
|
|
2263
|
-
],
|
|
2264
|
-
"inputs": [],
|
|
2265
|
-
"outputs": []
|
|
2266
|
-
},
|
|
2267
2351
|
"NgpMenu": {
|
|
2268
2352
|
"name": "NgpMenu",
|
|
2269
2353
|
"description": "The `NgpMenu` is a container for menu items.",
|
|
@@ -2282,6 +2366,58 @@
|
|
|
2282
2366
|
],
|
|
2283
2367
|
"outputs": []
|
|
2284
2368
|
},
|
|
2369
|
+
"NgpSubmenuTrigger": {
|
|
2370
|
+
"name": "NgpSubmenuTrigger",
|
|
2371
|
+
"description": "",
|
|
2372
|
+
"selector": "[ngpSubmenuTrigger]",
|
|
2373
|
+
"exportAs": [
|
|
2374
|
+
"ngpSubmenuTrigger"
|
|
2375
|
+
],
|
|
2376
|
+
"inputs": [
|
|
2377
|
+
{
|
|
2378
|
+
"name": "ngpSubmenuTrigger",
|
|
2379
|
+
"type": "NgpOverlayContent<T> | undefined",
|
|
2380
|
+
"description": "Access the submenu template ref.",
|
|
2381
|
+
"isRequired": false
|
|
2382
|
+
},
|
|
2383
|
+
{
|
|
2384
|
+
"name": "ngpSubmenuTriggerDisabled",
|
|
2385
|
+
"type": "boolean",
|
|
2386
|
+
"description": "Define if the trigger should be disabled.\n@default false",
|
|
2387
|
+
"isRequired": false,
|
|
2388
|
+
"defaultValue": "false"
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"name": "ngpSubmenuTriggerPlacement",
|
|
2392
|
+
"type": "Placement",
|
|
2393
|
+
"description": "Define the placement of the menu relative to the trigger.\n@default 'right-start'",
|
|
2394
|
+
"isRequired": false,
|
|
2395
|
+
"defaultValue": "'right-start'"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"name": "ngpSubmenuTriggerOffset",
|
|
2399
|
+
"type": "NgpOffset",
|
|
2400
|
+
"description": "Define the offset of the menu relative to the trigger.\nCan be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.\n@default 0",
|
|
2401
|
+
"isRequired": false,
|
|
2402
|
+
"defaultValue": "0"
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"name": "ngpSubmenuTriggerFlip",
|
|
2406
|
+
"type": "NgpFlip",
|
|
2407
|
+
"description": "Define whether the menu should flip when there is not enough space for the menu.\nCan be a boolean to enable/disable, or an object with padding and fallbackPlacements options.\n@default true",
|
|
2408
|
+
"isRequired": false,
|
|
2409
|
+
"defaultValue": "true"
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
"name": "ngpSubmenuTriggerContainer",
|
|
2413
|
+
"type": "string | HTMLElement | null",
|
|
2414
|
+
"description": "Define the container in which the menu should be attached.\n@default document.body",
|
|
2415
|
+
"isRequired": false,
|
|
2416
|
+
"defaultValue": "null"
|
|
2417
|
+
}
|
|
2418
|
+
],
|
|
2419
|
+
"outputs": []
|
|
2420
|
+
},
|
|
2285
2421
|
"NgpMenuTrigger": {
|
|
2286
2422
|
"name": "NgpMenuTrigger",
|
|
2287
2423
|
"description": "The `NgpMenuTrigger` directive allows you to turn an element into a menu trigger.",
|
|
@@ -2305,7 +2441,7 @@
|
|
|
2305
2441
|
},
|
|
2306
2442
|
{
|
|
2307
2443
|
"name": "ngpMenuTriggerPlacement",
|
|
2308
|
-
"type": "
|
|
2444
|
+
"type": "Placement",
|
|
2309
2445
|
"description": "Define the placement of the menu relative to the trigger.\n@default 'bottom-start'",
|
|
2310
2446
|
"isRequired": false,
|
|
2311
2447
|
"defaultValue": "'bottom-start'"
|
|
@@ -2380,58 +2516,6 @@
|
|
|
2380
2516
|
],
|
|
2381
2517
|
"outputs": []
|
|
2382
2518
|
},
|
|
2383
|
-
"NgpSubmenuTrigger": {
|
|
2384
|
-
"name": "NgpSubmenuTrigger",
|
|
2385
|
-
"description": "",
|
|
2386
|
-
"selector": "[ngpSubmenuTrigger]",
|
|
2387
|
-
"exportAs": [
|
|
2388
|
-
"ngpSubmenuTrigger"
|
|
2389
|
-
],
|
|
2390
|
-
"inputs": [
|
|
2391
|
-
{
|
|
2392
|
-
"name": "ngpSubmenuTrigger",
|
|
2393
|
-
"type": "NgpOverlayContent<T> | undefined",
|
|
2394
|
-
"description": "Access the submenu template ref.",
|
|
2395
|
-
"isRequired": false
|
|
2396
|
-
},
|
|
2397
|
-
{
|
|
2398
|
-
"name": "ngpSubmenuTriggerDisabled",
|
|
2399
|
-
"type": "boolean",
|
|
2400
|
-
"description": "Define if the trigger should be disabled.\n@default false",
|
|
2401
|
-
"isRequired": false,
|
|
2402
|
-
"defaultValue": "false"
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
"name": "ngpSubmenuTriggerPlacement",
|
|
2406
|
-
"type": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'",
|
|
2407
|
-
"description": "Define the placement of the menu relative to the trigger.\n@default 'right-start'",
|
|
2408
|
-
"isRequired": false,
|
|
2409
|
-
"defaultValue": "'right-start'"
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"name": "ngpSubmenuTriggerOffset",
|
|
2413
|
-
"type": "NgpOffset",
|
|
2414
|
-
"description": "Define the offset of the menu relative to the trigger.\nCan be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.\n@default 0",
|
|
2415
|
-
"isRequired": false,
|
|
2416
|
-
"defaultValue": "0"
|
|
2417
|
-
},
|
|
2418
|
-
{
|
|
2419
|
-
"name": "ngpSubmenuTriggerFlip",
|
|
2420
|
-
"type": "NgpFlip",
|
|
2421
|
-
"description": "Define whether the menu should flip when there is not enough space for the menu.\nCan be a boolean to enable/disable, or an object with padding and fallbackPlacements options.\n@default true",
|
|
2422
|
-
"isRequired": false,
|
|
2423
|
-
"defaultValue": "true"
|
|
2424
|
-
},
|
|
2425
|
-
{
|
|
2426
|
-
"name": "ngpSubmenuTriggerContainer",
|
|
2427
|
-
"type": "string | HTMLElement | null",
|
|
2428
|
-
"description": "Define the container in which the menu should be attached.\n@default document.body",
|
|
2429
|
-
"isRequired": false,
|
|
2430
|
-
"defaultValue": "null"
|
|
2431
|
-
}
|
|
2432
|
-
],
|
|
2433
|
-
"outputs": []
|
|
2434
|
-
},
|
|
2435
2519
|
"NgpMeterTrack": {
|
|
2436
2520
|
"name": "NgpMeterTrack",
|
|
2437
2521
|
"description": "",
|
|
@@ -2771,8 +2855,14 @@
|
|
|
2771
2855
|
"inputs": [
|
|
2772
2856
|
{
|
|
2773
2857
|
"name": "ngpNumberFieldValue",
|
|
2858
|
+
"type": "number | null | undefined",
|
|
2859
|
+
"description": "The value of the number field. When defined the number field is controlled.",
|
|
2860
|
+
"isRequired": false
|
|
2861
|
+
},
|
|
2862
|
+
{
|
|
2863
|
+
"name": "ngpNumberFieldDefaultValue",
|
|
2774
2864
|
"type": "number | null",
|
|
2775
|
-
"description": "The value of the number field
|
|
2865
|
+
"description": "The default value of the number field for uncontrolled usage.\n@default null",
|
|
2776
2866
|
"isRequired": false,
|
|
2777
2867
|
"defaultValue": "null"
|
|
2778
2868
|
},
|
|
@@ -3004,6 +3094,30 @@
|
|
|
3004
3094
|
],
|
|
3005
3095
|
"outputs": []
|
|
3006
3096
|
},
|
|
3097
|
+
"NgpPasswordInput": {
|
|
3098
|
+
"name": "NgpPasswordInput",
|
|
3099
|
+
"description": "Apply the `ngpPasswordInput` directive to an `input` element within an `ngpPassword` container.\nIt is a complete input (form control, interactions, autofill) with password visibility toggling\nlayered on top, so it does not need to be combined with `ngpInput`.",
|
|
3100
|
+
"selector": "input[ngpPasswordInput]",
|
|
3101
|
+
"exportAs": [
|
|
3102
|
+
"ngpPasswordInput"
|
|
3103
|
+
],
|
|
3104
|
+
"inputs": [
|
|
3105
|
+
{
|
|
3106
|
+
"name": "disabled",
|
|
3107
|
+
"type": "boolean",
|
|
3108
|
+
"description": "Whether the input is disabled.",
|
|
3109
|
+
"isRequired": false
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"name": "ngpPasswordInputIgnorePasswordManagers",
|
|
3113
|
+
"type": "boolean",
|
|
3114
|
+
"description": "Whether to opt the input out of password manager injection\n(1Password, LastPass, Bitwarden, etc.).",
|
|
3115
|
+
"isRequired": false,
|
|
3116
|
+
"defaultValue": "false"
|
|
3117
|
+
}
|
|
3118
|
+
],
|
|
3119
|
+
"outputs": []
|
|
3120
|
+
},
|
|
3007
3121
|
"NgpPassword": {
|
|
3008
3122
|
"name": "NgpPassword",
|
|
3009
3123
|
"description": "The `NgpPassword` directive is a container for a password field and its visibility toggle.",
|
|
@@ -3034,30 +3148,6 @@
|
|
|
3034
3148
|
}
|
|
3035
3149
|
]
|
|
3036
3150
|
},
|
|
3037
|
-
"NgpPasswordInput": {
|
|
3038
|
-
"name": "NgpPasswordInput",
|
|
3039
|
-
"description": "Apply the `ngpPasswordInput` directive to an `input` element within an `ngpPassword` container.\nIt is a complete input (form control, interactions, autofill) with password visibility toggling\nlayered on top, so it does not need to be combined with `ngpInput`.",
|
|
3040
|
-
"selector": "input[ngpPasswordInput]",
|
|
3041
|
-
"exportAs": [
|
|
3042
|
-
"ngpPasswordInput"
|
|
3043
|
-
],
|
|
3044
|
-
"inputs": [
|
|
3045
|
-
{
|
|
3046
|
-
"name": "disabled",
|
|
3047
|
-
"type": "boolean",
|
|
3048
|
-
"description": "Whether the input is disabled.",
|
|
3049
|
-
"isRequired": false
|
|
3050
|
-
},
|
|
3051
|
-
{
|
|
3052
|
-
"name": "ngpPasswordInputIgnorePasswordManagers",
|
|
3053
|
-
"type": "boolean",
|
|
3054
|
-
"description": "Whether to opt the input out of password manager injection\n(1Password, LastPass, Bitwarden, etc.).",
|
|
3055
|
-
"isRequired": false,
|
|
3056
|
-
"defaultValue": "false"
|
|
3057
|
-
}
|
|
3058
|
-
],
|
|
3059
|
-
"outputs": []
|
|
3060
|
-
},
|
|
3061
3151
|
"NgpPopoverArrow": {
|
|
3062
3152
|
"name": "NgpPopoverArrow",
|
|
3063
3153
|
"description": "",
|
|
@@ -3108,7 +3198,7 @@
|
|
|
3108
3198
|
},
|
|
3109
3199
|
{
|
|
3110
3200
|
"name": "ngpPopoverTriggerPlacement",
|
|
3111
|
-
"type": "
|
|
3201
|
+
"type": "Placement",
|
|
3112
3202
|
"description": "Define the placement of the popover relative to the trigger.\n@default 'top'",
|
|
3113
3203
|
"isRequired": false,
|
|
3114
3204
|
"defaultValue": "'bottom'"
|
|
@@ -3373,8 +3463,14 @@
|
|
|
3373
3463
|
"inputs": [
|
|
3374
3464
|
{
|
|
3375
3465
|
"name": "ngpRatingValue",
|
|
3466
|
+
"type": "number | undefined",
|
|
3467
|
+
"description": "The value of the rating. When defined the rating is controlled.",
|
|
3468
|
+
"isRequired": false
|
|
3469
|
+
},
|
|
3470
|
+
{
|
|
3471
|
+
"name": "ngpRatingDefaultValue",
|
|
3376
3472
|
"type": "number",
|
|
3377
|
-
"description": "The value of the rating
|
|
3473
|
+
"description": "The default value of the rating for uncontrolled usage.\n@default 0",
|
|
3378
3474
|
"isRequired": false,
|
|
3379
3475
|
"defaultValue": "0"
|
|
3380
3476
|
},
|
|
@@ -3509,16 +3605,6 @@
|
|
|
3509
3605
|
],
|
|
3510
3606
|
"outputs": []
|
|
3511
3607
|
},
|
|
3512
|
-
"NgpSearchClear": {
|
|
3513
|
-
"name": "NgpSearchClear",
|
|
3514
|
-
"description": "The `NgpSearchClear` directive is can be added to a button to clear the search field on click.",
|
|
3515
|
-
"selector": "[ngpSearchClear]",
|
|
3516
|
-
"exportAs": [
|
|
3517
|
-
"ngpSearchClear"
|
|
3518
|
-
],
|
|
3519
|
-
"inputs": [],
|
|
3520
|
-
"outputs": []
|
|
3521
|
-
},
|
|
3522
3608
|
"NgpSearch": {
|
|
3523
3609
|
"name": "NgpSearch",
|
|
3524
3610
|
"description": "The `NgpSearch` directive is a container for the search field components.",
|
|
@@ -3529,6 +3615,16 @@
|
|
|
3529
3615
|
"inputs": [],
|
|
3530
3616
|
"outputs": []
|
|
3531
3617
|
},
|
|
3618
|
+
"NgpSearchClear": {
|
|
3619
|
+
"name": "NgpSearchClear",
|
|
3620
|
+
"description": "The `NgpSearchClear` directive can be added to a button to clear the search field on click.",
|
|
3621
|
+
"selector": "[ngpSearchClear]",
|
|
3622
|
+
"exportAs": [
|
|
3623
|
+
"ngpSearchClear"
|
|
3624
|
+
],
|
|
3625
|
+
"inputs": [],
|
|
3626
|
+
"outputs": []
|
|
3627
|
+
},
|
|
3532
3628
|
"NgpSelectPortal": {
|
|
3533
3629
|
"name": "NgpSelectPortal",
|
|
3534
3630
|
"description": "",
|
|
@@ -3801,15 +3897,27 @@
|
|
|
3801
3897
|
"inputs": [
|
|
3802
3898
|
{
|
|
3803
3899
|
"name": "ngpRangeSliderLow",
|
|
3900
|
+
"type": "number | undefined",
|
|
3901
|
+
"description": "The low value of the range slider. When defined the low thumb is controlled.",
|
|
3902
|
+
"isRequired": false
|
|
3903
|
+
},
|
|
3904
|
+
{
|
|
3905
|
+
"name": "ngpRangeSliderDefaultLow",
|
|
3804
3906
|
"type": "number",
|
|
3805
|
-
"description": "The low value
|
|
3907
|
+
"description": "The default low value for uncontrolled usage.\n@default 0",
|
|
3806
3908
|
"isRequired": false,
|
|
3807
3909
|
"defaultValue": "0"
|
|
3808
3910
|
},
|
|
3809
3911
|
{
|
|
3810
3912
|
"name": "ngpRangeSliderHigh",
|
|
3913
|
+
"type": "number | undefined",
|
|
3914
|
+
"description": "The high value of the range slider. When defined the high thumb is controlled.",
|
|
3915
|
+
"isRequired": false
|
|
3916
|
+
},
|
|
3917
|
+
{
|
|
3918
|
+
"name": "ngpRangeSliderDefaultHigh",
|
|
3811
3919
|
"type": "number",
|
|
3812
|
-
"description": "The high value
|
|
3920
|
+
"description": "The default high value for uncontrolled usage.\n@default 100",
|
|
3813
3921
|
"isRequired": false,
|
|
3814
3922
|
"defaultValue": "100"
|
|
3815
3923
|
},
|
|
@@ -3872,8 +3980,14 @@
|
|
|
3872
3980
|
"inputs": [
|
|
3873
3981
|
{
|
|
3874
3982
|
"name": "ngpSliderValue",
|
|
3875
|
-
"type": "number",
|
|
3983
|
+
"type": "number | undefined",
|
|
3876
3984
|
"description": "The value of the slider.",
|
|
3985
|
+
"isRequired": false
|
|
3986
|
+
},
|
|
3987
|
+
{
|
|
3988
|
+
"name": "ngpSliderDefaultValue",
|
|
3989
|
+
"type": "number",
|
|
3990
|
+
"description": "The default value of the slider for uncontrolled usage.\n@default 0",
|
|
3877
3991
|
"isRequired": false,
|
|
3878
3992
|
"defaultValue": "0"
|
|
3879
3993
|
},
|
|
@@ -3939,8 +4053,14 @@
|
|
|
3939
4053
|
"inputs": [
|
|
3940
4054
|
{
|
|
3941
4055
|
"name": "ngpSwitchChecked",
|
|
4056
|
+
"type": "boolean | undefined",
|
|
4057
|
+
"description": "Determine if the switch is checked. When defined the switch is controlled.",
|
|
4058
|
+
"isRequired": false
|
|
4059
|
+
},
|
|
4060
|
+
{
|
|
4061
|
+
"name": "ngpSwitchDefaultChecked",
|
|
3942
4062
|
"type": "boolean",
|
|
3943
|
-
"description": "
|
|
4063
|
+
"description": "The default checked state for uncontrolled usage.\n@default false",
|
|
3944
4064
|
"isRequired": false,
|
|
3945
4065
|
"defaultValue": "false"
|
|
3946
4066
|
},
|
|
@@ -4290,7 +4410,7 @@
|
|
|
4290
4410
|
},
|
|
4291
4411
|
{
|
|
4292
4412
|
"name": "ngpTooltipTriggerPlacement",
|
|
4293
|
-
"type": "
|
|
4413
|
+
"type": "Placement",
|
|
4294
4414
|
"description": "Define the placement of the tooltip relative to the trigger.\n@default 'top'",
|
|
4295
4415
|
"isRequired": false,
|
|
4296
4416
|
"defaultValue": "'top'"
|
|
@@ -4440,7 +4560,7 @@
|
|
|
4440
4560
|
"properties": [
|
|
4441
4561
|
{
|
|
4442
4562
|
"name": "placement",
|
|
4443
|
-
"type": "
|
|
4563
|
+
"type": "NgpPlacement",
|
|
4444
4564
|
"description": "The default placement for the combobox dropdown.",
|
|
4445
4565
|
"default": "'bottom'"
|
|
4446
4566
|
},
|
|
@@ -4621,7 +4741,7 @@
|
|
|
4621
4741
|
},
|
|
4622
4742
|
{
|
|
4623
4743
|
"name": "placement",
|
|
4624
|
-
"type": "
|
|
4744
|
+
"type": "NgpPlacement",
|
|
4625
4745
|
"description": "Define the placement of the menu relative to the trigger.",
|
|
4626
4746
|
"default": "'bottom-start'"
|
|
4627
4747
|
},
|
|
@@ -4704,7 +4824,7 @@
|
|
|
4704
4824
|
},
|
|
4705
4825
|
{
|
|
4706
4826
|
"name": "placement",
|
|
4707
|
-
"type": "
|
|
4827
|
+
"type": "NgpPlacement",
|
|
4708
4828
|
"description": "Define the placement of the content relative to the trigger.",
|
|
4709
4829
|
"default": "'bottom-start'"
|
|
4710
4830
|
},
|
|
@@ -4792,7 +4912,7 @@
|
|
|
4792
4912
|
},
|
|
4793
4913
|
{
|
|
4794
4914
|
"name": "placement",
|
|
4795
|
-
"type": "
|
|
4915
|
+
"type": "NgpPlacement",
|
|
4796
4916
|
"description": "Define the placement of the popover relative to the trigger.",
|
|
4797
4917
|
"default": "'bottom'"
|
|
4798
4918
|
},
|
|
@@ -4863,8 +4983,8 @@
|
|
|
4863
4983
|
"properties": [
|
|
4864
4984
|
{
|
|
4865
4985
|
"name": "content",
|
|
4866
|
-
"type": "NgpOverlayContent<T>",
|
|
4867
|
-
"description": "Content to display in the overlay (component or template)"
|
|
4986
|
+
"type": "Signal<NgpOverlayContent<T> | null | undefined>",
|
|
4987
|
+
"description": "Content to display in the overlay (component or template). Read whenever the overlay opens, and while it is open a change swaps the rendered content, so a trigger can hand over an input signal and let it change. Clearing it closes the overlay immediately - there is nothing left to render, so neither the hide delay nor the exit animation applies - and an overlay with no content will not open."
|
|
4868
4988
|
},
|
|
4869
4989
|
{
|
|
4870
4990
|
"name": "triggerElement",
|
|
@@ -4898,7 +5018,7 @@
|
|
|
4898
5018
|
},
|
|
4899
5019
|
{
|
|
4900
5020
|
"name": "placement",
|
|
4901
|
-
"type": "Signal<
|
|
5021
|
+
"type": "Signal<NgpPlacement>",
|
|
4902
5022
|
"description": "Preferred placement of the overlay relative to the trigger."
|
|
4903
5023
|
},
|
|
4904
5024
|
{
|
|
@@ -4928,7 +5048,7 @@
|
|
|
4928
5048
|
},
|
|
4929
5049
|
{
|
|
4930
5050
|
"name": "strategy",
|
|
4931
|
-
"type": "
|
|
5051
|
+
"type": "NgpPositioningStrategy",
|
|
4932
5052
|
"description": "Whether the overlay should be positioned with fixed or absolute strategy"
|
|
4933
5053
|
},
|
|
4934
5054
|
{
|
|
@@ -4958,7 +5078,7 @@
|
|
|
4958
5078
|
},
|
|
4959
5079
|
{
|
|
4960
5080
|
"name": "additionalMiddleware",
|
|
4961
|
-
"type": "
|
|
5081
|
+
"type": "NgpMiddleware[]",
|
|
4962
5082
|
"description": "Additional middleware for floating UI positioning"
|
|
4963
5083
|
},
|
|
4964
5084
|
{
|
|
@@ -5021,7 +5141,7 @@
|
|
|
5021
5141
|
"properties": [
|
|
5022
5142
|
{
|
|
5023
5143
|
"name": "placement",
|
|
5024
|
-
"type": "
|
|
5144
|
+
"type": "NgpPlacement",
|
|
5025
5145
|
"description": "The default placement for the select dropdown.",
|
|
5026
5146
|
"default": "'bottom'"
|
|
5027
5147
|
},
|
|
@@ -5213,7 +5333,7 @@
|
|
|
5213
5333
|
},
|
|
5214
5334
|
{
|
|
5215
5335
|
"name": "placement",
|
|
5216
|
-
"type": "
|
|
5336
|
+
"type": "NgpPlacement",
|
|
5217
5337
|
"description": "Define the placement of the tooltip relative to the trigger.",
|
|
5218
5338
|
"default": "'top'"
|
|
5219
5339
|
},
|