@ng-primitives/mcp 0.95.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 +30 -0
- package/src/generated/api-data.json +2802 -0
- package/src/generated/primitives-data.json +1521 -0
- package/src/generated/reusable-components.json +226 -0
- package/src/generated/types.d.ts +26 -0
- package/src/generated/types.js +4 -0
- package/src/generated/types.js.map +1 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +31 -0
- package/src/index.js.map +1 -0
- package/src/primitives-registry.d.ts +40 -0
- package/src/primitives-registry.js +97 -0
- package/src/primitives-registry.js.map +1 -0
- package/src/tools.d.ts +9 -0
- package/src/tools.js +259 -0
- package/src/tools.js.map +1 -0
|
@@ -0,0 +1,2802 @@
|
|
|
1
|
+
{
|
|
2
|
+
"NgpVisuallyHidden": {
|
|
3
|
+
"name": "NgpVisuallyHidden",
|
|
4
|
+
"description": "Hide an element visually while keeping it present in the DOM.",
|
|
5
|
+
"selector": "[ngpVisuallyHidden]",
|
|
6
|
+
"exportAs": [
|
|
7
|
+
"ngpVisuallyHidden"
|
|
8
|
+
],
|
|
9
|
+
"inputs": [],
|
|
10
|
+
"outputs": []
|
|
11
|
+
},
|
|
12
|
+
"NgpAccordionContent": {
|
|
13
|
+
"name": "NgpAccordionContent",
|
|
14
|
+
"description": "Apply the `ngpAccordionContent` directive to an element that represents the content of an accordion item.",
|
|
15
|
+
"selector": "[ngpAccordionContent]",
|
|
16
|
+
"exportAs": [
|
|
17
|
+
"ngpAccordionContent"
|
|
18
|
+
],
|
|
19
|
+
"inputs": [],
|
|
20
|
+
"outputs": []
|
|
21
|
+
},
|
|
22
|
+
"NgpAccordionTrigger": {
|
|
23
|
+
"name": "NgpAccordionTrigger",
|
|
24
|
+
"description": "Apply the `ngpAccordionTrigger` directive to an element that represents the trigger for an accordion item, such as a button.",
|
|
25
|
+
"selector": "[ngpAccordionTrigger]",
|
|
26
|
+
"exportAs": [
|
|
27
|
+
"ngpAccordionTrigger"
|
|
28
|
+
],
|
|
29
|
+
"inputs": [],
|
|
30
|
+
"outputs": []
|
|
31
|
+
},
|
|
32
|
+
"NgpAccordionItem": {
|
|
33
|
+
"name": "NgpAccordionItem",
|
|
34
|
+
"description": "Apply the `ngpAccordionItem` directive to an element that represents an accordion item.",
|
|
35
|
+
"selector": "[ngpAccordionItem]",
|
|
36
|
+
"exportAs": [
|
|
37
|
+
"ngpAccordionItem"
|
|
38
|
+
],
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"name": "ngpAccordionItemValue",
|
|
42
|
+
"type": "T",
|
|
43
|
+
"description": "The value of the accordion item.",
|
|
44
|
+
"isRequired": false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "ngpAccordionItemDisabled",
|
|
48
|
+
"type": "boolean",
|
|
49
|
+
"description": "Whether the accordion item is disabled.",
|
|
50
|
+
"isRequired": false
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"outputs": []
|
|
54
|
+
},
|
|
55
|
+
"NgpAccordion": {
|
|
56
|
+
"name": "NgpAccordion",
|
|
57
|
+
"description": "Apply the `ngpAccordion` directive to an element that represents the group of accordion items.",
|
|
58
|
+
"selector": "[ngpAccordion]",
|
|
59
|
+
"exportAs": [
|
|
60
|
+
"ngpAccordion"
|
|
61
|
+
],
|
|
62
|
+
"inputs": [
|
|
63
|
+
{
|
|
64
|
+
"name": "ngpAccordionType",
|
|
65
|
+
"type": "NgpAccordionType",
|
|
66
|
+
"description": "The type of the accordion.",
|
|
67
|
+
"isRequired": false
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "ngpAccordionCollapsible",
|
|
71
|
+
"type": "boolean",
|
|
72
|
+
"description": "Whether the accordion is collapsible.",
|
|
73
|
+
"isRequired": false
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "ngpAccordionValue",
|
|
77
|
+
"type": "T | T[] | null",
|
|
78
|
+
"description": "The value of the accordion.",
|
|
79
|
+
"isRequired": false
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "ngpAccordionDisabled",
|
|
83
|
+
"type": "boolean",
|
|
84
|
+
"description": "Whether the accordion is disabled.",
|
|
85
|
+
"isRequired": false
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "ngpAccordionOrientation",
|
|
89
|
+
"type": "NgpOrientation",
|
|
90
|
+
"description": "The accordion orientation.",
|
|
91
|
+
"isRequired": false
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"outputs": [
|
|
95
|
+
{
|
|
96
|
+
"name": "ngpAccordionValueChange",
|
|
97
|
+
"type": "T | T[] | null",
|
|
98
|
+
"description": "Event emitted when the accordion value changes."
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
"NgpThread": {
|
|
103
|
+
"name": "NgpThread",
|
|
104
|
+
"description": "",
|
|
105
|
+
"selector": "[ngpThread]",
|
|
106
|
+
"exportAs": [
|
|
107
|
+
"ngpThread"
|
|
108
|
+
],
|
|
109
|
+
"inputs": [],
|
|
110
|
+
"outputs": []
|
|
111
|
+
},
|
|
112
|
+
"NgpPromptComposer": {
|
|
113
|
+
"name": "NgpPromptComposer",
|
|
114
|
+
"description": "",
|
|
115
|
+
"selector": "[ngpPromptComposer]",
|
|
116
|
+
"exportAs": [
|
|
117
|
+
"ngpPromptComposer"
|
|
118
|
+
],
|
|
119
|
+
"inputs": [],
|
|
120
|
+
"outputs": [
|
|
121
|
+
{
|
|
122
|
+
"name": "ngpPromptComposerSubmit",
|
|
123
|
+
"type": "string",
|
|
124
|
+
"description": "Emits whenever the user submits the prompt."
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"NgpThreadSuggestion": {
|
|
129
|
+
"name": "NgpThreadSuggestion",
|
|
130
|
+
"description": "",
|
|
131
|
+
"selector": "button[ngpThreadSuggestion]",
|
|
132
|
+
"exportAs": [
|
|
133
|
+
"ngpThreadSuggestion"
|
|
134
|
+
],
|
|
135
|
+
"inputs": [
|
|
136
|
+
{
|
|
137
|
+
"name": "ngpThreadSuggestion",
|
|
138
|
+
"type": "string",
|
|
139
|
+
"description": "The suggested text to display in the input field.",
|
|
140
|
+
"isRequired": false
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "ngpThreadSuggestionSetPromptOnClick",
|
|
144
|
+
"type": "boolean",
|
|
145
|
+
"description": "Whether the suggestion should populate the prompt when clicked.",
|
|
146
|
+
"isRequired": false
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"outputs": []
|
|
150
|
+
},
|
|
151
|
+
"NgpThreadMessage": {
|
|
152
|
+
"name": "NgpThreadMessage",
|
|
153
|
+
"description": "",
|
|
154
|
+
"selector": "[ngpThreadMessage]",
|
|
155
|
+
"exportAs": [
|
|
156
|
+
"ngpThreadMessage"
|
|
157
|
+
],
|
|
158
|
+
"inputs": [],
|
|
159
|
+
"outputs": []
|
|
160
|
+
},
|
|
161
|
+
"NgpPromptComposerSubmit": {
|
|
162
|
+
"name": "NgpPromptComposerSubmit",
|
|
163
|
+
"description": "",
|
|
164
|
+
"selector": "button[ngpPromptComposerSubmit]",
|
|
165
|
+
"exportAs": [
|
|
166
|
+
"ngpPromptComposerSubmit"
|
|
167
|
+
],
|
|
168
|
+
"inputs": [
|
|
169
|
+
{
|
|
170
|
+
"name": "disabled",
|
|
171
|
+
"type": "boolean",
|
|
172
|
+
"description": "Whether the submit button should be disabled",
|
|
173
|
+
"isRequired": false
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"outputs": []
|
|
177
|
+
},
|
|
178
|
+
"NgpThreadViewport": {
|
|
179
|
+
"name": "NgpThreadViewport",
|
|
180
|
+
"description": "",
|
|
181
|
+
"selector": "[ngpThreadViewport]",
|
|
182
|
+
"exportAs": [
|
|
183
|
+
"ngpThreadViewport"
|
|
184
|
+
],
|
|
185
|
+
"inputs": [
|
|
186
|
+
{
|
|
187
|
+
"name": "ngpThreadViewportThreshold",
|
|
188
|
+
"type": "number",
|
|
189
|
+
"description": "The distance in pixels from the bottom of the scrollable container that is considered \"at the bottom\".\nWhen the user scrolls within this threshold, the thread is treated as being at the bottom.\nThis value is used to determine whether automatic scrolling to the bottom should occur,\nfor example when new content is added or the container is resized.",
|
|
190
|
+
"isRequired": false,
|
|
191
|
+
"defaultValue": "70"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "ngpThreadViewportAutoScroll",
|
|
195
|
+
"type": "boolean",
|
|
196
|
+
"description": "Whether the thread should automatically scroll to the bottom when new content is added.",
|
|
197
|
+
"isRequired": false
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"outputs": []
|
|
201
|
+
},
|
|
202
|
+
"NgpPromptComposerInput": {
|
|
203
|
+
"name": "NgpPromptComposerInput",
|
|
204
|
+
"description": "",
|
|
205
|
+
"selector": "input[ngpPromptComposerInput], textarea[ngpPromptComposerInput]",
|
|
206
|
+
"exportAs": [
|
|
207
|
+
"ngpPromptComposerInput"
|
|
208
|
+
],
|
|
209
|
+
"inputs": [],
|
|
210
|
+
"outputs": []
|
|
211
|
+
},
|
|
212
|
+
"NgpPromptComposerDictation": {
|
|
213
|
+
"name": "NgpPromptComposerDictation",
|
|
214
|
+
"description": "",
|
|
215
|
+
"selector": "button[ngpPromptComposerDictation]",
|
|
216
|
+
"exportAs": [
|
|
217
|
+
"ngpPromptComposerDictation"
|
|
218
|
+
],
|
|
219
|
+
"inputs": [
|
|
220
|
+
{
|
|
221
|
+
"name": "disabled",
|
|
222
|
+
"type": "boolean",
|
|
223
|
+
"description": "Whether the submit button should be disabled.",
|
|
224
|
+
"isRequired": false
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"outputs": []
|
|
228
|
+
},
|
|
229
|
+
"NgpAutofill": {
|
|
230
|
+
"name": "NgpAutofill",
|
|
231
|
+
"description": "Apply the `ngpAutofill` directive to an element to detect browser autofill.",
|
|
232
|
+
"selector": "[ngpAutofill]",
|
|
233
|
+
"exportAs": [
|
|
234
|
+
"ngpAutofill"
|
|
235
|
+
],
|
|
236
|
+
"inputs": [],
|
|
237
|
+
"outputs": [
|
|
238
|
+
{
|
|
239
|
+
"name": "ngpAutofill",
|
|
240
|
+
"type": "boolean",
|
|
241
|
+
"description": "Event emitted when the autofill state changes."
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
"NgpAvatarImage": {
|
|
246
|
+
"name": "NgpAvatarImage",
|
|
247
|
+
"description": "Apply the `ngpAvatarImage` directive to an element that represents the avatar image. This would typically be an `img` element or a `div` with a background image.",
|
|
248
|
+
"selector": "img[ngpAvatarImage]",
|
|
249
|
+
"exportAs": [
|
|
250
|
+
"ngpAvatarImage"
|
|
251
|
+
],
|
|
252
|
+
"inputs": [],
|
|
253
|
+
"outputs": []
|
|
254
|
+
},
|
|
255
|
+
"NgpAvatar": {
|
|
256
|
+
"name": "NgpAvatar",
|
|
257
|
+
"description": "Apply the `ngpAvatar` directive to an element that represents the avatar. This directive is a container for the image and/or fallback.",
|
|
258
|
+
"selector": "[ngpAvatar]",
|
|
259
|
+
"exportAs": [
|
|
260
|
+
"ngpAvatar"
|
|
261
|
+
],
|
|
262
|
+
"inputs": [],
|
|
263
|
+
"outputs": []
|
|
264
|
+
},
|
|
265
|
+
"NgpAvatarFallback": {
|
|
266
|
+
"name": "NgpAvatarFallback",
|
|
267
|
+
"description": "Apply the `ngpAvatarFallback` directive to an element that represents the user in the absence of an image. This is typically the user's initials.",
|
|
268
|
+
"selector": "[ngpAvatarFallback]",
|
|
269
|
+
"exportAs": [
|
|
270
|
+
"ngpAvatarFallback"
|
|
271
|
+
],
|
|
272
|
+
"inputs": [
|
|
273
|
+
{
|
|
274
|
+
"name": "ngpAvatarFallbackDelay",
|
|
275
|
+
"type": "number",
|
|
276
|
+
"description": "Define a delay before the fallback is shown. This is useful to only show the fallback for those with slower connections.",
|
|
277
|
+
"isRequired": false,
|
|
278
|
+
"defaultValue": "0"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"outputs": []
|
|
282
|
+
},
|
|
283
|
+
"NgpBreadcrumbs": {
|
|
284
|
+
"name": "NgpBreadcrumbs",
|
|
285
|
+
"description": "Apply `ngpBreadcrumbs` to the navigation element that wraps the breadcrumb trail.",
|
|
286
|
+
"selector": "[ngpBreadcrumbs]",
|
|
287
|
+
"exportAs": [
|
|
288
|
+
"ngpBreadcrumbs"
|
|
289
|
+
],
|
|
290
|
+
"inputs": [],
|
|
291
|
+
"outputs": []
|
|
292
|
+
},
|
|
293
|
+
"NgpBreadcrumbItem": {
|
|
294
|
+
"name": "NgpBreadcrumbItem",
|
|
295
|
+
"description": "Apply `ngpBreadcrumbItem` to each list item in the breadcrumb trail.",
|
|
296
|
+
"selector": "[ngpBreadcrumbItem]",
|
|
297
|
+
"exportAs": [
|
|
298
|
+
"ngpBreadcrumbItem"
|
|
299
|
+
],
|
|
300
|
+
"inputs": [],
|
|
301
|
+
"outputs": []
|
|
302
|
+
},
|
|
303
|
+
"NgpBreadcrumbLink": {
|
|
304
|
+
"name": "NgpBreadcrumbLink",
|
|
305
|
+
"description": "Apply `ngpBreadcrumbLink` to anchors or buttons that navigate to a breadcrumb destination.",
|
|
306
|
+
"selector": "[ngpBreadcrumbLink]",
|
|
307
|
+
"exportAs": [
|
|
308
|
+
"ngpBreadcrumbLink"
|
|
309
|
+
],
|
|
310
|
+
"inputs": [],
|
|
311
|
+
"outputs": []
|
|
312
|
+
},
|
|
313
|
+
"NgpBreadcrumbList": {
|
|
314
|
+
"name": "NgpBreadcrumbList",
|
|
315
|
+
"description": "Apply `ngpBreadcrumbList` to the ordered list that groups breadcrumb items.",
|
|
316
|
+
"selector": "[ngpBreadcrumbList]",
|
|
317
|
+
"exportAs": [
|
|
318
|
+
"ngpBreadcrumbList"
|
|
319
|
+
],
|
|
320
|
+
"inputs": [],
|
|
321
|
+
"outputs": []
|
|
322
|
+
},
|
|
323
|
+
"NgpBreadcrumbPage": {
|
|
324
|
+
"name": "NgpBreadcrumbPage",
|
|
325
|
+
"description": "Apply `ngpBreadcrumbPage` to non-link content that represents the active page.",
|
|
326
|
+
"selector": "[ngpBreadcrumbPage]",
|
|
327
|
+
"exportAs": [
|
|
328
|
+
"ngpBreadcrumbPage"
|
|
329
|
+
],
|
|
330
|
+
"inputs": [],
|
|
331
|
+
"outputs": []
|
|
332
|
+
},
|
|
333
|
+
"NgpBreadcrumbEllipsis": {
|
|
334
|
+
"name": "NgpBreadcrumbEllipsis",
|
|
335
|
+
"description": "Apply `ngpBreadcrumbEllipsis` to elements that represent collapsed breadcrumb items.",
|
|
336
|
+
"selector": "[ngpBreadcrumbEllipsis]",
|
|
337
|
+
"exportAs": [
|
|
338
|
+
"ngpBreadcrumbEllipsis"
|
|
339
|
+
],
|
|
340
|
+
"inputs": [],
|
|
341
|
+
"outputs": []
|
|
342
|
+
},
|
|
343
|
+
"NgpBreadcrumbSeparator": {
|
|
344
|
+
"name": "NgpBreadcrumbSeparator",
|
|
345
|
+
"description": "Apply `ngpBreadcrumbSeparator` between breadcrumb items to render a visual divider.",
|
|
346
|
+
"selector": "[ngpBreadcrumbSeparator]",
|
|
347
|
+
"exportAs": [
|
|
348
|
+
"ngpBreadcrumbSeparator"
|
|
349
|
+
],
|
|
350
|
+
"inputs": [],
|
|
351
|
+
"outputs": []
|
|
352
|
+
},
|
|
353
|
+
"NgpButton": {
|
|
354
|
+
"name": "NgpButton",
|
|
355
|
+
"description": "",
|
|
356
|
+
"selector": "[ngpButton]",
|
|
357
|
+
"exportAs": [
|
|
358
|
+
"ngpButton"
|
|
359
|
+
],
|
|
360
|
+
"inputs": [
|
|
361
|
+
{
|
|
362
|
+
"name": "disabled",
|
|
363
|
+
"type": "boolean",
|
|
364
|
+
"description": "Whether the button is disabled.",
|
|
365
|
+
"isRequired": false
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"outputs": []
|
|
369
|
+
},
|
|
370
|
+
"NgpCheckbox": {
|
|
371
|
+
"name": "NgpCheckbox",
|
|
372
|
+
"description": "Apply the `ngpCheckbox` directive to an element to that represents the checkbox, such as a `button`.",
|
|
373
|
+
"selector": "[ngpCheckbox]",
|
|
374
|
+
"exportAs": [],
|
|
375
|
+
"inputs": [
|
|
376
|
+
{
|
|
377
|
+
"name": "ngpCheckboxChecked",
|
|
378
|
+
"type": "boolean",
|
|
379
|
+
"description": "Defines whether the checkbox is checked.",
|
|
380
|
+
"isRequired": false
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"name": "ngpCheckboxIndeterminate",
|
|
384
|
+
"type": "boolean",
|
|
385
|
+
"description": "Defines whether the checkbox is indeterminate.",
|
|
386
|
+
"isRequired": false
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "ngpCheckboxRequired",
|
|
390
|
+
"type": "boolean",
|
|
391
|
+
"description": "Whether the checkbox is required.",
|
|
392
|
+
"isRequired": false
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"name": "ngpCheckboxDisabled",
|
|
396
|
+
"type": "boolean",
|
|
397
|
+
"description": "Defines whether the checkbox is disabled.",
|
|
398
|
+
"isRequired": false
|
|
399
|
+
}
|
|
400
|
+
],
|
|
401
|
+
"outputs": [
|
|
402
|
+
{
|
|
403
|
+
"name": "ngpCheckboxCheckedChange",
|
|
404
|
+
"type": "boolean",
|
|
405
|
+
"description": "The event that is emitted when the checkbox value changes."
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "ngpCheckboxIndeterminateChange",
|
|
409
|
+
"type": "boolean",
|
|
410
|
+
"description": "The event that is emitted when the indeterminate value changes."
|
|
411
|
+
}
|
|
412
|
+
]
|
|
413
|
+
},
|
|
414
|
+
"NgpComboboxDropdown": {
|
|
415
|
+
"name": "NgpComboboxDropdown",
|
|
416
|
+
"description": "",
|
|
417
|
+
"selector": "[ngpComboboxDropdown]",
|
|
418
|
+
"exportAs": [
|
|
419
|
+
"ngpComboboxDropdown"
|
|
420
|
+
],
|
|
421
|
+
"inputs": [],
|
|
422
|
+
"outputs": []
|
|
423
|
+
},
|
|
424
|
+
"NgpComboboxPortal": {
|
|
425
|
+
"name": "NgpComboboxPortal",
|
|
426
|
+
"description": "",
|
|
427
|
+
"selector": "[ngpComboboxPortal]",
|
|
428
|
+
"exportAs": [
|
|
429
|
+
"ngpComboboxPortal"
|
|
430
|
+
],
|
|
431
|
+
"inputs": [],
|
|
432
|
+
"outputs": []
|
|
433
|
+
},
|
|
434
|
+
"NgpComboboxButton": {
|
|
435
|
+
"name": "NgpComboboxButton",
|
|
436
|
+
"description": "",
|
|
437
|
+
"selector": "button[ngpComboboxButton]",
|
|
438
|
+
"exportAs": [
|
|
439
|
+
"ngpComboboxButton"
|
|
440
|
+
],
|
|
441
|
+
"inputs": [],
|
|
442
|
+
"outputs": []
|
|
443
|
+
},
|
|
444
|
+
"NgpComboboxInput": {
|
|
445
|
+
"name": "NgpComboboxInput",
|
|
446
|
+
"description": "",
|
|
447
|
+
"selector": "input[ngpComboboxInput]",
|
|
448
|
+
"exportAs": [
|
|
449
|
+
"ngpComboboxInput"
|
|
450
|
+
],
|
|
451
|
+
"inputs": [],
|
|
452
|
+
"outputs": []
|
|
453
|
+
},
|
|
454
|
+
"NgpComboboxOption": {
|
|
455
|
+
"name": "NgpComboboxOption",
|
|
456
|
+
"description": "",
|
|
457
|
+
"selector": "[ngpComboboxOption]",
|
|
458
|
+
"exportAs": [
|
|
459
|
+
"ngpComboboxOption"
|
|
460
|
+
],
|
|
461
|
+
"inputs": [
|
|
462
|
+
{
|
|
463
|
+
"name": "ngpComboboxOptionValue",
|
|
464
|
+
"type": "any",
|
|
465
|
+
"description": "",
|
|
466
|
+
"isRequired": true
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"name": "ngpComboboxOptionDisabled",
|
|
470
|
+
"type": "boolean",
|
|
471
|
+
"description": "The disabled state of the option.",
|
|
472
|
+
"isRequired": false
|
|
473
|
+
}
|
|
474
|
+
],
|
|
475
|
+
"outputs": []
|
|
476
|
+
},
|
|
477
|
+
"NgpCombobox": {
|
|
478
|
+
"name": "NgpCombobox",
|
|
479
|
+
"description": "",
|
|
480
|
+
"selector": "[ngpCombobox]",
|
|
481
|
+
"exportAs": [
|
|
482
|
+
"ngpCombobox"
|
|
483
|
+
],
|
|
484
|
+
"inputs": [
|
|
485
|
+
{
|
|
486
|
+
"name": "ngpComboboxValue",
|
|
487
|
+
"type": "any",
|
|
488
|
+
"description": "The value of the combobox.",
|
|
489
|
+
"isRequired": false
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "ngpComboboxMultiple",
|
|
493
|
+
"type": "boolean",
|
|
494
|
+
"description": "Whether the combobox is multiple selection.",
|
|
495
|
+
"isRequired": false
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "ngpComboboxDisabled",
|
|
499
|
+
"type": "boolean",
|
|
500
|
+
"description": "Whether the combobox is disabled.",
|
|
501
|
+
"isRequired": false
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"name": "ngpComboboxAllowDeselect",
|
|
505
|
+
"type": "boolean",
|
|
506
|
+
"description": "Whether the combobox allows deselection in single selection mode.",
|
|
507
|
+
"isRequired": false
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"name": "ngpComboboxCompareWith",
|
|
511
|
+
"type": "(a: any, b: any) => boolean",
|
|
512
|
+
"description": "The comparator function used to compare options.",
|
|
513
|
+
"isRequired": false
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "ngpComboboxDropdownPlacement",
|
|
517
|
+
"type": "NgpComboboxPlacement",
|
|
518
|
+
"description": "The position of the dropdown.",
|
|
519
|
+
"isRequired": false
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"name": "ngpComboboxDropdownContainer",
|
|
523
|
+
"type": "string | HTMLElement | null",
|
|
524
|
+
"description": "The container for the dropdown.",
|
|
525
|
+
"isRequired": false
|
|
526
|
+
}
|
|
527
|
+
],
|
|
528
|
+
"outputs": [
|
|
529
|
+
{
|
|
530
|
+
"name": "ngpComboboxValueChange",
|
|
531
|
+
"type": "any",
|
|
532
|
+
"description": "Event emitted when the value changes."
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"name": "ngpComboboxOpenChange",
|
|
536
|
+
"type": "boolean",
|
|
537
|
+
"description": "Emit when the dropdown open state changes."
|
|
538
|
+
}
|
|
539
|
+
]
|
|
540
|
+
},
|
|
541
|
+
"NgpHeader": {
|
|
542
|
+
"name": "NgpHeader",
|
|
543
|
+
"description": "",
|
|
544
|
+
"selector": "[ngpHeader]",
|
|
545
|
+
"exportAs": [
|
|
546
|
+
"ngpHeader"
|
|
547
|
+
],
|
|
548
|
+
"inputs": [],
|
|
549
|
+
"outputs": []
|
|
550
|
+
},
|
|
551
|
+
"NgpDatePickerGrid": {
|
|
552
|
+
"name": "NgpDatePickerGrid",
|
|
553
|
+
"description": "The grid that contains the days of the month.",
|
|
554
|
+
"selector": "[ngpDatePickerGrid]",
|
|
555
|
+
"exportAs": [
|
|
556
|
+
"ngpDatePickerGrid"
|
|
557
|
+
],
|
|
558
|
+
"inputs": [],
|
|
559
|
+
"outputs": []
|
|
560
|
+
},
|
|
561
|
+
"NgpDatePickerLabel": {
|
|
562
|
+
"name": "NgpDatePickerLabel",
|
|
563
|
+
"description": "The label that displays the current month and year typically in the header of the date picker. This will be announced by screen readers when the date changes.",
|
|
564
|
+
"selector": "[ngpDatePickerLabel]",
|
|
565
|
+
"exportAs": [
|
|
566
|
+
"ngpDatePickerLabel"
|
|
567
|
+
],
|
|
568
|
+
"inputs": [
|
|
569
|
+
{
|
|
570
|
+
"name": "aria-live",
|
|
571
|
+
"type": "string",
|
|
572
|
+
"description": "Define the aria live attribute.",
|
|
573
|
+
"isRequired": false
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"outputs": []
|
|
577
|
+
},
|
|
578
|
+
"NgpDatePickerCell": {
|
|
579
|
+
"name": "NgpDatePickerCell",
|
|
580
|
+
"description": "A cell in the date picker grid.",
|
|
581
|
+
"selector": "[ngpDatePickerCell]",
|
|
582
|
+
"exportAs": [
|
|
583
|
+
"ngpDatePickerCell"
|
|
584
|
+
],
|
|
585
|
+
"inputs": [],
|
|
586
|
+
"outputs": []
|
|
587
|
+
},
|
|
588
|
+
"NgpDatePickerNextMonth": {
|
|
589
|
+
"name": "NgpDatePickerNextMonth",
|
|
590
|
+
"description": "A button that navigates to the next month.",
|
|
591
|
+
"selector": "[ngpDatePickerNextMonth]",
|
|
592
|
+
"exportAs": [
|
|
593
|
+
"ngpDatePickerNextMonth"
|
|
594
|
+
],
|
|
595
|
+
"inputs": [],
|
|
596
|
+
"outputs": []
|
|
597
|
+
},
|
|
598
|
+
"NgpDatePickerPreviousMonth": {
|
|
599
|
+
"name": "NgpDatePickerPreviousMonth",
|
|
600
|
+
"description": "A button that navigates to the previous month.",
|
|
601
|
+
"selector": "[ngpDatePickerPreviousMonth]",
|
|
602
|
+
"exportAs": [
|
|
603
|
+
"ngpDatePickerPreviousMonth"
|
|
604
|
+
],
|
|
605
|
+
"inputs": [],
|
|
606
|
+
"outputs": []
|
|
607
|
+
},
|
|
608
|
+
"NgpDatePickerCellRender": {
|
|
609
|
+
"name": "NgpDatePickerCellRender",
|
|
610
|
+
"description": "A structural directive that renders a cell in the date picker grid.",
|
|
611
|
+
"selector": "[ngpDatePickerCellRender]",
|
|
612
|
+
"exportAs": [
|
|
613
|
+
"ngpDatePickerCellRender"
|
|
614
|
+
],
|
|
615
|
+
"inputs": [],
|
|
616
|
+
"outputs": []
|
|
617
|
+
},
|
|
618
|
+
"NgpDatePickerDateButton": {
|
|
619
|
+
"name": "NgpDatePickerDateButton",
|
|
620
|
+
"description": "A button that represents a date in the date picker grid.",
|
|
621
|
+
"selector": "[ngpDatePickerDateButton]",
|
|
622
|
+
"exportAs": [
|
|
623
|
+
"ngpDatePickerDateButton"
|
|
624
|
+
],
|
|
625
|
+
"inputs": [],
|
|
626
|
+
"outputs": []
|
|
627
|
+
},
|
|
628
|
+
"NgpDatePickerRowRender": {
|
|
629
|
+
"name": "NgpDatePickerRowRender",
|
|
630
|
+
"description": "A structural directive that renders a row of weekdays in the date picker grid.",
|
|
631
|
+
"selector": "[ngpDatePickerRowRender]",
|
|
632
|
+
"exportAs": [
|
|
633
|
+
"ngpDatePickerRowRender"
|
|
634
|
+
],
|
|
635
|
+
"inputs": [],
|
|
636
|
+
"outputs": []
|
|
637
|
+
},
|
|
638
|
+
"NgpDatePicker": {
|
|
639
|
+
"name": "NgpDatePicker",
|
|
640
|
+
"description": "The outermost container for the date picker.",
|
|
641
|
+
"selector": "[ngpDatePicker]",
|
|
642
|
+
"exportAs": [
|
|
643
|
+
"ngpDatePicker"
|
|
644
|
+
],
|
|
645
|
+
"inputs": [
|
|
646
|
+
{
|
|
647
|
+
"name": "ngpDatePickerMin",
|
|
648
|
+
"type": "T | undefined",
|
|
649
|
+
"description": "The minimum date that can be selected.",
|
|
650
|
+
"isRequired": false
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "ngpDatePickerMax",
|
|
654
|
+
"type": "T | undefined",
|
|
655
|
+
"description": "The maximum date that can be selected.",
|
|
656
|
+
"isRequired": false
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "ngpDatePickerDisabled",
|
|
660
|
+
"type": "boolean",
|
|
661
|
+
"description": "Determine if the date picker is disabled.",
|
|
662
|
+
"isRequired": false
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"name": "ngpDatePickerDateDisabled",
|
|
666
|
+
"type": "(date: T) => boolean",
|
|
667
|
+
"description": "A function that is called to determine if a specific date should be disabled.",
|
|
668
|
+
"isRequired": false
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "ngpDatePickerFirstDayOfWeek",
|
|
672
|
+
"type": "NgpDatePickerFirstDayOfWeekNumber",
|
|
673
|
+
"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.",
|
|
674
|
+
"isRequired": false,
|
|
675
|
+
"defaultValue": "7 (Sunday)"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "ngpDatePickerDate",
|
|
679
|
+
"type": "T | undefined",
|
|
680
|
+
"description": "The selected value.",
|
|
681
|
+
"isRequired": false
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"name": "ngpDatePickerFocusedDate",
|
|
685
|
+
"type": "T",
|
|
686
|
+
"description": "The focused value.",
|
|
687
|
+
"isRequired": false
|
|
688
|
+
}
|
|
689
|
+
],
|
|
690
|
+
"outputs": [
|
|
691
|
+
{
|
|
692
|
+
"name": "ngpDatePickerDateChange",
|
|
693
|
+
"type": "T | undefined",
|
|
694
|
+
"description": "Emit when the date changes."
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "ngpDatePickerFocusedDateChange",
|
|
698
|
+
"type": "T",
|
|
699
|
+
"description": "Emit when the focused date changes."
|
|
700
|
+
}
|
|
701
|
+
]
|
|
702
|
+
},
|
|
703
|
+
"NgpDateRangePicker": {
|
|
704
|
+
"name": "NgpDateRangePicker",
|
|
705
|
+
"description": "",
|
|
706
|
+
"selector": "[ngpDateRangePicker]",
|
|
707
|
+
"exportAs": [
|
|
708
|
+
"ngpDateRangePicker"
|
|
709
|
+
],
|
|
710
|
+
"inputs": [
|
|
711
|
+
{
|
|
712
|
+
"name": "ngpDateRangePickerMin",
|
|
713
|
+
"type": "T | undefined",
|
|
714
|
+
"description": "The minimum date that can be selected.",
|
|
715
|
+
"isRequired": false
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"name": "ngpDateRangePickerMax",
|
|
719
|
+
"type": "T | undefined",
|
|
720
|
+
"description": "The maximum date that can be selected.",
|
|
721
|
+
"isRequired": false
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "ngpDateRangePickerDisabled",
|
|
725
|
+
"type": "boolean",
|
|
726
|
+
"description": "Determine if the date picker is disabled.",
|
|
727
|
+
"isRequired": false
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"name": "ngpDateRangePickerDateDisabled",
|
|
731
|
+
"type": "(date: T) => boolean",
|
|
732
|
+
"description": "A function that is called to determine if a specific date should be disabled.",
|
|
733
|
+
"isRequired": false
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "ngpDateRangePickerFirstDayOfWeek",
|
|
737
|
+
"type": "NgpDatePickerFirstDayOfWeekNumber",
|
|
738
|
+
"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.",
|
|
739
|
+
"isRequired": false,
|
|
740
|
+
"defaultValue": "7 (Sunday)"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"name": "ngpDateRangePickerStartDate",
|
|
744
|
+
"type": "T | undefined",
|
|
745
|
+
"description": "The selected start date",
|
|
746
|
+
"isRequired": false
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "ngpDateRangePickerEndDate",
|
|
750
|
+
"type": "T | undefined",
|
|
751
|
+
"description": "The selected end date",
|
|
752
|
+
"isRequired": false
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"name": "ngpDateRangePickerFocusedDate",
|
|
756
|
+
"type": "T",
|
|
757
|
+
"description": "The focused value.",
|
|
758
|
+
"isRequired": false
|
|
759
|
+
}
|
|
760
|
+
],
|
|
761
|
+
"outputs": [
|
|
762
|
+
{
|
|
763
|
+
"name": "ngpDateRangePickerStartDateChange",
|
|
764
|
+
"type": "T | undefined",
|
|
765
|
+
"description": "Emit when the date changes."
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "ngpDateRangePickerEndDateChange",
|
|
769
|
+
"type": "T | undefined",
|
|
770
|
+
"description": "Emit when the end date changes."
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"name": "ngpDateRangePickerFocusedDateChange",
|
|
774
|
+
"type": "T",
|
|
775
|
+
"description": "Emit when the focused date changes."
|
|
776
|
+
}
|
|
777
|
+
]
|
|
778
|
+
},
|
|
779
|
+
"NgpDialogDescription": {
|
|
780
|
+
"name": "NgpDialogDescription",
|
|
781
|
+
"description": "",
|
|
782
|
+
"selector": "[ngpDialogDescription]",
|
|
783
|
+
"exportAs": [
|
|
784
|
+
"ngpDialogDescription"
|
|
785
|
+
],
|
|
786
|
+
"inputs": [],
|
|
787
|
+
"outputs": []
|
|
788
|
+
},
|
|
789
|
+
"NgpDialogTitle": {
|
|
790
|
+
"name": "NgpDialogTitle",
|
|
791
|
+
"description": "",
|
|
792
|
+
"selector": "[ngpDialogTitle]",
|
|
793
|
+
"exportAs": [
|
|
794
|
+
"ngpDialogTitle"
|
|
795
|
+
],
|
|
796
|
+
"inputs": [],
|
|
797
|
+
"outputs": []
|
|
798
|
+
},
|
|
799
|
+
"NgpDialogOverlay": {
|
|
800
|
+
"name": "NgpDialogOverlay",
|
|
801
|
+
"description": "",
|
|
802
|
+
"selector": "[ngpDialogOverlay]",
|
|
803
|
+
"exportAs": [
|
|
804
|
+
"ngpDialogOverlay"
|
|
805
|
+
],
|
|
806
|
+
"inputs": [
|
|
807
|
+
{
|
|
808
|
+
"name": "ngpDialogOverlayCloseOnClick",
|
|
809
|
+
"type": "boolean | undefined",
|
|
810
|
+
"description": "Whether the dialog should close on backdrop click.",
|
|
811
|
+
"isRequired": false,
|
|
812
|
+
"defaultValue": "`true`"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"outputs": []
|
|
816
|
+
},
|
|
817
|
+
"NgpDialogTrigger": {
|
|
818
|
+
"name": "NgpDialogTrigger",
|
|
819
|
+
"description": "",
|
|
820
|
+
"selector": "[ngpDialogTrigger]",
|
|
821
|
+
"exportAs": [
|
|
822
|
+
"ngpDialogTrigger"
|
|
823
|
+
],
|
|
824
|
+
"inputs": [
|
|
825
|
+
{
|
|
826
|
+
"name": "ngpDialogTrigger",
|
|
827
|
+
"type": "TemplateRef<NgpDialogContext<unknown",
|
|
828
|
+
"description": "The template to launch.",
|
|
829
|
+
"isRequired": true
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"name": "ngpDialogTriggerCloseOnEscape",
|
|
833
|
+
"type": "boolean | undefined",
|
|
834
|
+
"description": "Whether the dialog should close on escape.",
|
|
835
|
+
"isRequired": false,
|
|
836
|
+
"defaultValue": "`true`"
|
|
837
|
+
}
|
|
838
|
+
],
|
|
839
|
+
"outputs": [
|
|
840
|
+
{
|
|
841
|
+
"name": "ngpDialogTriggerClosed",
|
|
842
|
+
"type": "T",
|
|
843
|
+
"description": "Emits whenever the dialog is closed with the given result."
|
|
844
|
+
}
|
|
845
|
+
]
|
|
846
|
+
},
|
|
847
|
+
"NgpDialog": {
|
|
848
|
+
"name": "NgpDialog",
|
|
849
|
+
"description": "",
|
|
850
|
+
"selector": "[ngpDialog]",
|
|
851
|
+
"exportAs": [
|
|
852
|
+
"ngpDialog"
|
|
853
|
+
],
|
|
854
|
+
"inputs": [
|
|
855
|
+
{
|
|
856
|
+
"name": "ngpDialogRole",
|
|
857
|
+
"type": "NgpDialogRole | undefined",
|
|
858
|
+
"description": "The dialog role.",
|
|
859
|
+
"isRequired": false
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"name": "ngpDialogModal",
|
|
863
|
+
"type": "boolean",
|
|
864
|
+
"description": "Whether the dialog is a modal.",
|
|
865
|
+
"isRequired": false
|
|
866
|
+
}
|
|
867
|
+
],
|
|
868
|
+
"outputs": []
|
|
869
|
+
},
|
|
870
|
+
"NgpDialogPanel": {
|
|
871
|
+
"name": "NgpDialogPanel",
|
|
872
|
+
"description": "",
|
|
873
|
+
"selector": "[ngpDialogPanel]",
|
|
874
|
+
"exportAs": [
|
|
875
|
+
"ngpDialogPanel"
|
|
876
|
+
],
|
|
877
|
+
"inputs": [],
|
|
878
|
+
"outputs": []
|
|
879
|
+
},
|
|
880
|
+
"NgpFileUpload": {
|
|
881
|
+
"name": "NgpFileUpload",
|
|
882
|
+
"description": "A directive that allows you to turn any element into a file upload trigger.",
|
|
883
|
+
"selector": "[ngpFileUpload]",
|
|
884
|
+
"exportAs": [
|
|
885
|
+
"ngpFileUpload"
|
|
886
|
+
],
|
|
887
|
+
"inputs": [
|
|
888
|
+
{
|
|
889
|
+
"name": "ngpFileUploadFileTypes",
|
|
890
|
+
"type": "string[] | undefined",
|
|
891
|
+
"description": "The accepted file types. This can be an array of strings or a comma-separated string.\nAccepted types can either be file extensions (e.g. `.jpg`) or MIME types (e.g. `image/jpeg`).",
|
|
892
|
+
"isRequired": false
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"name": "ngpFileUploadMultiple",
|
|
896
|
+
"type": "boolean",
|
|
897
|
+
"description": "Whether to allow multiple files to be selected.",
|
|
898
|
+
"isRequired": false
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "ngpFileUploadDirectory",
|
|
902
|
+
"type": "boolean",
|
|
903
|
+
"description": "Whether to allow the user to select directories.",
|
|
904
|
+
"isRequired": false
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"name": "ngpFileUploadDragDrop",
|
|
908
|
+
"type": "boolean",
|
|
909
|
+
"description": "Whether drag-and-drop is enabled.",
|
|
910
|
+
"isRequired": false
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"name": "ngpFileUploadDisabled",
|
|
914
|
+
"type": "boolean",
|
|
915
|
+
"description": "Whether the file upload is disabled.",
|
|
916
|
+
"isRequired": false
|
|
917
|
+
}
|
|
918
|
+
],
|
|
919
|
+
"outputs": [
|
|
920
|
+
{
|
|
921
|
+
"name": "ngpFileUploadSelected",
|
|
922
|
+
"type": "FileList | null",
|
|
923
|
+
"description": "Emits when the user selects files."
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"name": "ngpFileUploadCanceled",
|
|
927
|
+
"type": "void",
|
|
928
|
+
"description": "Emits when the user cancel the file selection."
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"name": "ngpFileUploadRejected",
|
|
932
|
+
"type": "void",
|
|
933
|
+
"description": "Emits when uploaded files are rejected because they do not match the allowed {@link fileTypes}."
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"name": "ngpFileUploadDragOver",
|
|
937
|
+
"type": "boolean",
|
|
938
|
+
"description": "Emits when the user drags a file over the file upload."
|
|
939
|
+
}
|
|
940
|
+
]
|
|
941
|
+
},
|
|
942
|
+
"NgpFileDropzone": {
|
|
943
|
+
"name": "NgpFileDropzone",
|
|
944
|
+
"description": "Capture files dropped on the element.",
|
|
945
|
+
"selector": "[ngpFileDropzone]",
|
|
946
|
+
"exportAs": [
|
|
947
|
+
"ngpFileDropzone"
|
|
948
|
+
],
|
|
949
|
+
"inputs": [
|
|
950
|
+
{
|
|
951
|
+
"name": "ngpFileDropzoneFileTypes",
|
|
952
|
+
"type": "string[] | undefined",
|
|
953
|
+
"description": "The accepted file types. This can be an array of strings or a comma-separated string.\nAccepted types can either be file extensions (e.g. `.jpg`) or MIME types (e.g. `image/jpeg`).",
|
|
954
|
+
"isRequired": false
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"name": "ngpFileDropzoneMultiple",
|
|
958
|
+
"type": "boolean",
|
|
959
|
+
"description": "Whether to allow multiple files to be selected.",
|
|
960
|
+
"isRequired": false
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"name": "ngpFileDropzoneDirectory",
|
|
964
|
+
"type": "boolean",
|
|
965
|
+
"description": "Whether to allow the user to select directories.",
|
|
966
|
+
"isRequired": false
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"name": "ngpFileDropzoneDisabled",
|
|
970
|
+
"type": "boolean",
|
|
971
|
+
"description": "Whether the file upload is disabled.",
|
|
972
|
+
"isRequired": false
|
|
973
|
+
}
|
|
974
|
+
],
|
|
975
|
+
"outputs": [
|
|
976
|
+
{
|
|
977
|
+
"name": "ngpFileDropzoneSelected",
|
|
978
|
+
"type": "FileList | null",
|
|
979
|
+
"description": "Emits when the user selects files."
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"name": "ngpFileDropzoneRejected",
|
|
983
|
+
"type": "void",
|
|
984
|
+
"description": "Emits when uploaded files are rejected because they do not match the allowed {@link fileTypes}."
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"name": "ngpFileDropzoneDragOver",
|
|
988
|
+
"type": "boolean",
|
|
989
|
+
"description": "Emits when the user drags a file over the file upload."
|
|
990
|
+
}
|
|
991
|
+
]
|
|
992
|
+
},
|
|
993
|
+
"NgpFocusTrap": {
|
|
994
|
+
"name": "NgpFocusTrap",
|
|
995
|
+
"description": "The `NgpFocusTrap` directive traps focus within the host element.",
|
|
996
|
+
"selector": "[ngpFocusTrap]",
|
|
997
|
+
"exportAs": [
|
|
998
|
+
"ngpFocusTrap"
|
|
999
|
+
],
|
|
1000
|
+
"inputs": [
|
|
1001
|
+
{
|
|
1002
|
+
"name": "ngpFocusTrapDisabled",
|
|
1003
|
+
"type": "boolean",
|
|
1004
|
+
"description": "Whether the focus trap is disabled.",
|
|
1005
|
+
"isRequired": false
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"outputs": []
|
|
1009
|
+
},
|
|
1010
|
+
"NgpError": {
|
|
1011
|
+
"name": "NgpError",
|
|
1012
|
+
"description": "The `NgpError` directive is used to mark an error message element within a form field. There may be multiple error messages associated with a form control.",
|
|
1013
|
+
"selector": "[ngpError]",
|
|
1014
|
+
"exportAs": [
|
|
1015
|
+
"ngpError"
|
|
1016
|
+
],
|
|
1017
|
+
"inputs": [
|
|
1018
|
+
{
|
|
1019
|
+
"name": "ngpErrorValidator",
|
|
1020
|
+
"type": "string | null",
|
|
1021
|
+
"description": "The validator associated with the error message.",
|
|
1022
|
+
"isRequired": false
|
|
1023
|
+
}
|
|
1024
|
+
],
|
|
1025
|
+
"outputs": []
|
|
1026
|
+
},
|
|
1027
|
+
"NgpLabel": {
|
|
1028
|
+
"name": "NgpLabel",
|
|
1029
|
+
"description": "The `NgpLabel` directive is used to mark a label element within a form field. Preferably, there should use an HTML `<label>` element.",
|
|
1030
|
+
"selector": "[ngpLabel]",
|
|
1031
|
+
"exportAs": [
|
|
1032
|
+
"ngpLabel"
|
|
1033
|
+
],
|
|
1034
|
+
"inputs": [],
|
|
1035
|
+
"outputs": []
|
|
1036
|
+
},
|
|
1037
|
+
"NgpFormField": {
|
|
1038
|
+
"name": "NgpFormField",
|
|
1039
|
+
"description": "The `NgpFormField` directive is a container for form field elements. Any labels, form controls, or descriptions should be placed within this directive.",
|
|
1040
|
+
"selector": "[ngpFormField]",
|
|
1041
|
+
"exportAs": [
|
|
1042
|
+
"ngpFormField"
|
|
1043
|
+
],
|
|
1044
|
+
"inputs": [],
|
|
1045
|
+
"outputs": []
|
|
1046
|
+
},
|
|
1047
|
+
"NgpDescription": {
|
|
1048
|
+
"name": "NgpDescription",
|
|
1049
|
+
"description": "The `NgpDescription` directive is used to mark a description element within a form field. There may be multiple descriptions associated with a form control.",
|
|
1050
|
+
"selector": "[ngpDescription]",
|
|
1051
|
+
"exportAs": [
|
|
1052
|
+
"ngpDescription"
|
|
1053
|
+
],
|
|
1054
|
+
"inputs": [],
|
|
1055
|
+
"outputs": []
|
|
1056
|
+
},
|
|
1057
|
+
"NgpFormControl": {
|
|
1058
|
+
"name": "NgpFormControl",
|
|
1059
|
+
"description": "Typically this primitive would be not be used directly, but instead a more specific form control primitive would be used (e.g. `ngpInput`). All of our form control primitives use `ngpFormControl` internally so they will have the same accessibility features as described below.\n\nThe `NgpFormControl` directive is used to mark a form control element within a form field. This element will have an `aria-labelledby` attribute set to the ID of the label element within the form field and an `aria-describedby` attribute set to the ID of the description elements within the form field.",
|
|
1060
|
+
"selector": "[ngpFormControl]",
|
|
1061
|
+
"exportAs": [
|
|
1062
|
+
"ngpFormControl"
|
|
1063
|
+
],
|
|
1064
|
+
"inputs": [
|
|
1065
|
+
{
|
|
1066
|
+
"name": "ngpFormControlDisabled",
|
|
1067
|
+
"type": "boolean",
|
|
1068
|
+
"description": "Whether the form control is disabled by a parent.",
|
|
1069
|
+
"isRequired": false
|
|
1070
|
+
}
|
|
1071
|
+
],
|
|
1072
|
+
"outputs": []
|
|
1073
|
+
},
|
|
1074
|
+
"NgpInput": {
|
|
1075
|
+
"name": "NgpInput",
|
|
1076
|
+
"description": "",
|
|
1077
|
+
"selector": "input[ngpInput]",
|
|
1078
|
+
"exportAs": [
|
|
1079
|
+
"ngpInput"
|
|
1080
|
+
],
|
|
1081
|
+
"inputs": [
|
|
1082
|
+
{
|
|
1083
|
+
"name": "disabled",
|
|
1084
|
+
"type": "boolean",
|
|
1085
|
+
"description": "Whether the element is disabled.",
|
|
1086
|
+
"isRequired": false
|
|
1087
|
+
}
|
|
1088
|
+
],
|
|
1089
|
+
"outputs": []
|
|
1090
|
+
},
|
|
1091
|
+
"NgpInputOtpSlot": {
|
|
1092
|
+
"name": "NgpInputOtpSlot",
|
|
1093
|
+
"description": "",
|
|
1094
|
+
"selector": "[ngpInputOtpSlot]",
|
|
1095
|
+
"exportAs": [
|
|
1096
|
+
"ngpInputOtpSlot"
|
|
1097
|
+
],
|
|
1098
|
+
"inputs": [],
|
|
1099
|
+
"outputs": []
|
|
1100
|
+
},
|
|
1101
|
+
"NgpInputOtpInput": {
|
|
1102
|
+
"name": "NgpInputOtpInput",
|
|
1103
|
+
"description": "",
|
|
1104
|
+
"selector": "input[ngpInputOtpInput]",
|
|
1105
|
+
"exportAs": [
|
|
1106
|
+
"ngpInputOtpInput"
|
|
1107
|
+
],
|
|
1108
|
+
"inputs": [],
|
|
1109
|
+
"outputs": []
|
|
1110
|
+
},
|
|
1111
|
+
"NgpInputOtp": {
|
|
1112
|
+
"name": "NgpInputOtp",
|
|
1113
|
+
"description": "",
|
|
1114
|
+
"selector": "[ngpInputOtp]",
|
|
1115
|
+
"exportAs": [
|
|
1116
|
+
"ngpInputOtp"
|
|
1117
|
+
],
|
|
1118
|
+
"inputs": [
|
|
1119
|
+
{
|
|
1120
|
+
"name": "ngpInputOtpValue",
|
|
1121
|
+
"type": "string",
|
|
1122
|
+
"description": "The current value of the OTP.",
|
|
1123
|
+
"isRequired": false
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"name": "ngpInputOtpPattern",
|
|
1127
|
+
"type": "string",
|
|
1128
|
+
"description": "The regex pattern for allowed characters.",
|
|
1129
|
+
"isRequired": false
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"name": "ngpInputOtpInputMode",
|
|
1133
|
+
"type": "NgpInputOtpInputMode",
|
|
1134
|
+
"description": "The input mode for the hidden input.",
|
|
1135
|
+
"isRequired": false
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "ngpInputOtpPasteTransformer",
|
|
1139
|
+
"type": "((text: string) => string) | undefined",
|
|
1140
|
+
"description": "Function to transform pasted text.",
|
|
1141
|
+
"isRequired": false
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"name": "ngpInputOtpDisabled",
|
|
1145
|
+
"type": "boolean",
|
|
1146
|
+
"description": "Whether the input-otp is disabled.",
|
|
1147
|
+
"isRequired": false
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"name": "ngpInputOtpPlaceholder",
|
|
1151
|
+
"type": "string",
|
|
1152
|
+
"description": "The placeholder character to display when a slot is empty.",
|
|
1153
|
+
"isRequired": false
|
|
1154
|
+
}
|
|
1155
|
+
],
|
|
1156
|
+
"outputs": [
|
|
1157
|
+
{
|
|
1158
|
+
"name": "ngpInputOtpValueChange",
|
|
1159
|
+
"type": "string",
|
|
1160
|
+
"description": "Event emitted when the value changes."
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"name": "ngpInputOtpComplete",
|
|
1164
|
+
"type": "string",
|
|
1165
|
+
"description": "Event emitted when the OTP is complete (maxLength characters entered)."
|
|
1166
|
+
}
|
|
1167
|
+
]
|
|
1168
|
+
},
|
|
1169
|
+
"NgpFocus": {
|
|
1170
|
+
"name": "NgpFocus",
|
|
1171
|
+
"description": "This was inspired by the React Aria useFocus hook.\nhttps://github.com/adobe/react-spectrum/blob/main/packages/%40react-aria/interactions/src/useFocus.ts#L20",
|
|
1172
|
+
"selector": "[ngpFocus]",
|
|
1173
|
+
"exportAs": [
|
|
1174
|
+
"ngpFocus"
|
|
1175
|
+
],
|
|
1176
|
+
"inputs": [
|
|
1177
|
+
{
|
|
1178
|
+
"name": "ngpFocusDisabled",
|
|
1179
|
+
"type": "boolean",
|
|
1180
|
+
"description": "Whether listening for focus events is disabled.",
|
|
1181
|
+
"isRequired": false
|
|
1182
|
+
}
|
|
1183
|
+
],
|
|
1184
|
+
"outputs": [
|
|
1185
|
+
{
|
|
1186
|
+
"name": "ngpFocus",
|
|
1187
|
+
"type": "boolean",
|
|
1188
|
+
"description": "Emit when the focus state changes."
|
|
1189
|
+
}
|
|
1190
|
+
]
|
|
1191
|
+
},
|
|
1192
|
+
"NgpPress": {
|
|
1193
|
+
"name": "NgpPress",
|
|
1194
|
+
"description": "The `ngpPress` directive listens for press events on an element. This is particularly useful for supporting press events on touch devices, where press events are not handled consistently.",
|
|
1195
|
+
"selector": "[ngpPress]",
|
|
1196
|
+
"exportAs": [
|
|
1197
|
+
"ngpPress"
|
|
1198
|
+
],
|
|
1199
|
+
"inputs": [
|
|
1200
|
+
{
|
|
1201
|
+
"name": "ngpPressDisabled",
|
|
1202
|
+
"type": "boolean",
|
|
1203
|
+
"description": "Whether listening for press events is disabled.",
|
|
1204
|
+
"isRequired": false
|
|
1205
|
+
}
|
|
1206
|
+
],
|
|
1207
|
+
"outputs": [
|
|
1208
|
+
{
|
|
1209
|
+
"name": "ngpPressStart",
|
|
1210
|
+
"type": "void",
|
|
1211
|
+
"description": "Emit when the press begins."
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"name": "ngpPressEnd",
|
|
1215
|
+
"type": "void",
|
|
1216
|
+
"description": "Emit when the press ends."
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"name": "ngpPress",
|
|
1220
|
+
"type": "boolean",
|
|
1221
|
+
"description": "Emit when the press changes."
|
|
1222
|
+
}
|
|
1223
|
+
]
|
|
1224
|
+
},
|
|
1225
|
+
"NgpHover": {
|
|
1226
|
+
"name": "NgpHover",
|
|
1227
|
+
"description": "Apply the `ngpHover` directive to an element that you want to listen for hover events. T\nhis is particulaly useful for supporting hover events on touch devices, where hover events are not handled consistently.\nOn iOS relying on the `:hover` pseudo-class can result in the hover state being stuck until the user taps elsewhere on the screen.",
|
|
1228
|
+
"selector": "[ngpHover]",
|
|
1229
|
+
"exportAs": [
|
|
1230
|
+
"ngpHover"
|
|
1231
|
+
],
|
|
1232
|
+
"inputs": [
|
|
1233
|
+
{
|
|
1234
|
+
"name": "ngpHoverDisabled",
|
|
1235
|
+
"type": "boolean",
|
|
1236
|
+
"description": "Whether hoving should be disabled.",
|
|
1237
|
+
"isRequired": false
|
|
1238
|
+
}
|
|
1239
|
+
],
|
|
1240
|
+
"outputs": [
|
|
1241
|
+
{
|
|
1242
|
+
"name": "ngpHoverStart",
|
|
1243
|
+
"type": "void",
|
|
1244
|
+
"description": "Emit an event when hovering starts."
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"name": "ngpHoverEnd",
|
|
1248
|
+
"type": "void",
|
|
1249
|
+
"description": "Emit an event when hovering ends."
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"name": "ngpHover",
|
|
1253
|
+
"type": "boolean",
|
|
1254
|
+
"description": "Emit an event when the hover state changes."
|
|
1255
|
+
}
|
|
1256
|
+
]
|
|
1257
|
+
},
|
|
1258
|
+
"NgpFocusVisible": {
|
|
1259
|
+
"name": "NgpFocusVisible",
|
|
1260
|
+
"description": "Apply the `ngpFocusVisible` directive to an element that should be visually focused. This is similar to `ngpFocus`\nbut it will only apply the focus visible styles when the element is focused via keyboard navigation.",
|
|
1261
|
+
"selector": "[ngpFocusVisible]",
|
|
1262
|
+
"exportAs": [
|
|
1263
|
+
"ngpFocusVisible"
|
|
1264
|
+
],
|
|
1265
|
+
"inputs": [
|
|
1266
|
+
{
|
|
1267
|
+
"name": "ngpFocusVisibleDisabled",
|
|
1268
|
+
"type": "boolean",
|
|
1269
|
+
"description": "Whether focus events are listened to.",
|
|
1270
|
+
"isRequired": false
|
|
1271
|
+
}
|
|
1272
|
+
],
|
|
1273
|
+
"outputs": [
|
|
1274
|
+
{
|
|
1275
|
+
"name": "ngpFocusVisible",
|
|
1276
|
+
"type": "boolean",
|
|
1277
|
+
"description": "Emit when the element is visually focused."
|
|
1278
|
+
}
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
"NgpMove": {
|
|
1282
|
+
"name": "NgpMove",
|
|
1283
|
+
"description": "The `NgpMove` directive is used to enable the pointer and keyboard move interactions on an element.",
|
|
1284
|
+
"selector": "[ngpMove]",
|
|
1285
|
+
"exportAs": [
|
|
1286
|
+
"ngpMove"
|
|
1287
|
+
],
|
|
1288
|
+
"inputs": [
|
|
1289
|
+
{
|
|
1290
|
+
"name": "ngpMoveDisabled",
|
|
1291
|
+
"type": "boolean",
|
|
1292
|
+
"description": "Whether movement is disabled.",
|
|
1293
|
+
"isRequired": false
|
|
1294
|
+
}
|
|
1295
|
+
],
|
|
1296
|
+
"outputs": [
|
|
1297
|
+
{
|
|
1298
|
+
"name": "ngpMoveStart",
|
|
1299
|
+
"type": "NgpMoveBaseEvent",
|
|
1300
|
+
"description": "Emit when the move event begins."
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"name": "ngpMove",
|
|
1304
|
+
"type": "NgpMoveEvent",
|
|
1305
|
+
"description": "Emit when the element is moved."
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"name": "ngpMoveEnd",
|
|
1309
|
+
"type": "NgpMoveBaseEvent",
|
|
1310
|
+
"description": "Emit when the move event ends."
|
|
1311
|
+
}
|
|
1312
|
+
]
|
|
1313
|
+
},
|
|
1314
|
+
"NgpExitAnimation": {
|
|
1315
|
+
"name": "NgpExitAnimation",
|
|
1316
|
+
"description": "",
|
|
1317
|
+
"selector": "[ngpExitAnimation]",
|
|
1318
|
+
"exportAs": [
|
|
1319
|
+
"ngpExitAnimation"
|
|
1320
|
+
],
|
|
1321
|
+
"inputs": [],
|
|
1322
|
+
"outputs": []
|
|
1323
|
+
},
|
|
1324
|
+
"NgpListboxSection": {
|
|
1325
|
+
"name": "NgpListboxSection",
|
|
1326
|
+
"description": "",
|
|
1327
|
+
"selector": "[ngpListboxSection]",
|
|
1328
|
+
"exportAs": [
|
|
1329
|
+
"ngpListboxSection"
|
|
1330
|
+
],
|
|
1331
|
+
"inputs": [],
|
|
1332
|
+
"outputs": []
|
|
1333
|
+
},
|
|
1334
|
+
"NgpListboxTrigger": {
|
|
1335
|
+
"name": "NgpListboxTrigger",
|
|
1336
|
+
"description": "",
|
|
1337
|
+
"selector": "[ngpListboxTrigger]",
|
|
1338
|
+
"exportAs": [
|
|
1339
|
+
"ngpListboxTrigger"
|
|
1340
|
+
],
|
|
1341
|
+
"inputs": [],
|
|
1342
|
+
"outputs": []
|
|
1343
|
+
},
|
|
1344
|
+
"NgpListboxHeader": {
|
|
1345
|
+
"name": "NgpListboxHeader",
|
|
1346
|
+
"description": "",
|
|
1347
|
+
"selector": "[ngpListboxHeader]",
|
|
1348
|
+
"exportAs": [
|
|
1349
|
+
"ngpListboxHeader"
|
|
1350
|
+
],
|
|
1351
|
+
"inputs": [],
|
|
1352
|
+
"outputs": []
|
|
1353
|
+
},
|
|
1354
|
+
"NgpListboxOption": {
|
|
1355
|
+
"name": "NgpListboxOption",
|
|
1356
|
+
"description": "",
|
|
1357
|
+
"selector": "[ngpListboxOption]",
|
|
1358
|
+
"exportAs": [
|
|
1359
|
+
"ngpListboxOption"
|
|
1360
|
+
],
|
|
1361
|
+
"inputs": [
|
|
1362
|
+
{
|
|
1363
|
+
"name": "ngpListboxOptionValue",
|
|
1364
|
+
"type": "T",
|
|
1365
|
+
"description": "The value of the option.",
|
|
1366
|
+
"isRequired": true
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"name": "ngpListboxOptionDisabled",
|
|
1370
|
+
"type": "boolean",
|
|
1371
|
+
"description": "Whether the option is disabled.",
|
|
1372
|
+
"isRequired": false
|
|
1373
|
+
}
|
|
1374
|
+
],
|
|
1375
|
+
"outputs": []
|
|
1376
|
+
},
|
|
1377
|
+
"NgpListbox": {
|
|
1378
|
+
"name": "NgpListbox",
|
|
1379
|
+
"description": "",
|
|
1380
|
+
"selector": "[ngpListbox]",
|
|
1381
|
+
"exportAs": [
|
|
1382
|
+
"ngpListbox"
|
|
1383
|
+
],
|
|
1384
|
+
"inputs": [
|
|
1385
|
+
{
|
|
1386
|
+
"name": "ngpListboxMode",
|
|
1387
|
+
"type": "NgpSelectionMode",
|
|
1388
|
+
"description": "The listbox selection mode.",
|
|
1389
|
+
"isRequired": false
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"name": "ngpListboxValue",
|
|
1393
|
+
"type": "T[]",
|
|
1394
|
+
"description": "The listbox selection.",
|
|
1395
|
+
"isRequired": false
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"name": "ngpListboxDisabled",
|
|
1399
|
+
"type": "boolean",
|
|
1400
|
+
"description": "The listbox disabled state.",
|
|
1401
|
+
"isRequired": false
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"name": "ngpListboxCompareWith",
|
|
1405
|
+
"type": "(a: T, b: T) => boolean",
|
|
1406
|
+
"description": "The comparator function to use when comparing values.\nIf not provided, strict equality (===) is used.",
|
|
1407
|
+
"isRequired": false
|
|
1408
|
+
}
|
|
1409
|
+
],
|
|
1410
|
+
"outputs": [
|
|
1411
|
+
{
|
|
1412
|
+
"name": "ngpListboxValueChange",
|
|
1413
|
+
"type": "T[]",
|
|
1414
|
+
"description": "Emits when the listbox selection changes."
|
|
1415
|
+
}
|
|
1416
|
+
]
|
|
1417
|
+
},
|
|
1418
|
+
"NgpMenuItem": {
|
|
1419
|
+
"name": "NgpMenuItem",
|
|
1420
|
+
"description": "The `NgpMenuItem` directive represents a menu item.",
|
|
1421
|
+
"selector": "[ngpMenuItem]",
|
|
1422
|
+
"exportAs": [
|
|
1423
|
+
"ngpMenuItem"
|
|
1424
|
+
],
|
|
1425
|
+
"inputs": [
|
|
1426
|
+
{
|
|
1427
|
+
"name": "ngpMenuItemDisabled",
|
|
1428
|
+
"type": "boolean",
|
|
1429
|
+
"description": "Whether the menu item is disabled",
|
|
1430
|
+
"isRequired": false
|
|
1431
|
+
}
|
|
1432
|
+
],
|
|
1433
|
+
"outputs": []
|
|
1434
|
+
},
|
|
1435
|
+
"NgpMenu": {
|
|
1436
|
+
"name": "NgpMenu",
|
|
1437
|
+
"description": "The `NgpMenu` is a container for menu items.",
|
|
1438
|
+
"selector": "[ngpMenu]",
|
|
1439
|
+
"exportAs": [
|
|
1440
|
+
"ngpMenu"
|
|
1441
|
+
],
|
|
1442
|
+
"inputs": [],
|
|
1443
|
+
"outputs": []
|
|
1444
|
+
},
|
|
1445
|
+
"NgpMenuTrigger": {
|
|
1446
|
+
"name": "NgpMenuTrigger",
|
|
1447
|
+
"description": "The `NgpMenuTrigger` directive allows you to turn an element into a menu trigger.",
|
|
1448
|
+
"selector": "[ngpMenuTrigger]",
|
|
1449
|
+
"exportAs": [
|
|
1450
|
+
"ngpMenuTrigger"
|
|
1451
|
+
],
|
|
1452
|
+
"inputs": [
|
|
1453
|
+
{
|
|
1454
|
+
"name": "ngpMenuTrigger",
|
|
1455
|
+
"type": "NgpOverlayContent<T> | undefined",
|
|
1456
|
+
"description": "Access the menu template ref or ComponentType.",
|
|
1457
|
+
"isRequired": false
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"name": "ngpMenuTriggerDisabled",
|
|
1461
|
+
"type": "boolean",
|
|
1462
|
+
"description": "Define if the trigger should be disabled.",
|
|
1463
|
+
"isRequired": false,
|
|
1464
|
+
"defaultValue": "false"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"name": "ngpMenuTriggerPlacement",
|
|
1468
|
+
"type": "NgpMenuPlacement",
|
|
1469
|
+
"description": "Define the placement of the menu relative to the trigger.",
|
|
1470
|
+
"isRequired": false,
|
|
1471
|
+
"defaultValue": "'bottom-start'"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"name": "ngpMenuTriggerOffset",
|
|
1475
|
+
"type": "NgpOffset",
|
|
1476
|
+
"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.",
|
|
1477
|
+
"isRequired": false,
|
|
1478
|
+
"defaultValue": "4"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
"name": "ngpMenuTriggerFlip",
|
|
1482
|
+
"type": "boolean",
|
|
1483
|
+
"description": "Define whether the menu should flip when there is not enough space for the menu.",
|
|
1484
|
+
"isRequired": false,
|
|
1485
|
+
"defaultValue": "true"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"name": "ngpMenuTriggerContainer",
|
|
1489
|
+
"type": "string | HTMLElement | null",
|
|
1490
|
+
"description": "Define the container in which the menu should be attached.",
|
|
1491
|
+
"isRequired": false,
|
|
1492
|
+
"defaultValue": "document.body"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"name": "ngpMenuTriggerScrollBehavior",
|
|
1496
|
+
"type": "\"block\" | \"reposition\"",
|
|
1497
|
+
"description": "Defines how the menu behaves when the window is scrolled.",
|
|
1498
|
+
"isRequired": false,
|
|
1499
|
+
"defaultValue": "'block'"
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"name": "ngpMenuTriggerContext",
|
|
1503
|
+
"type": "T | undefined",
|
|
1504
|
+
"description": "Provide context to the menu. This can be used to pass data to the menu content.",
|
|
1505
|
+
"isRequired": false
|
|
1506
|
+
}
|
|
1507
|
+
],
|
|
1508
|
+
"outputs": []
|
|
1509
|
+
},
|
|
1510
|
+
"NgpSubmenuTrigger": {
|
|
1511
|
+
"name": "NgpSubmenuTrigger",
|
|
1512
|
+
"description": "",
|
|
1513
|
+
"selector": "[ngpSubmenuTrigger]",
|
|
1514
|
+
"exportAs": [
|
|
1515
|
+
"ngpSubmenuTrigger"
|
|
1516
|
+
],
|
|
1517
|
+
"inputs": [
|
|
1518
|
+
{
|
|
1519
|
+
"name": "ngpSubmenuTrigger",
|
|
1520
|
+
"type": "NgpOverlayContent<T> | undefined",
|
|
1521
|
+
"description": "Access the submenu template ref.",
|
|
1522
|
+
"isRequired": false
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"name": "ngpSubmenuTriggerDisabled",
|
|
1526
|
+
"type": "boolean",
|
|
1527
|
+
"description": "Define if the trigger should be disabled.",
|
|
1528
|
+
"isRequired": false,
|
|
1529
|
+
"defaultValue": "false"
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"name": "ngpSubmenuTriggerPlacement",
|
|
1533
|
+
"type": "NgpMenuPlacement",
|
|
1534
|
+
"description": "Define the placement of the menu relative to the trigger.",
|
|
1535
|
+
"isRequired": false,
|
|
1536
|
+
"defaultValue": "'right-start'"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
"name": "ngpSubmenuTriggerOffset",
|
|
1540
|
+
"type": "NgpOffset",
|
|
1541
|
+
"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.",
|
|
1542
|
+
"isRequired": false,
|
|
1543
|
+
"defaultValue": "0"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"name": "ngpSubmenuTriggerFlip",
|
|
1547
|
+
"type": "boolean",
|
|
1548
|
+
"description": "Define whether the menu should flip when there is not enough space for the menu.",
|
|
1549
|
+
"isRequired": false,
|
|
1550
|
+
"defaultValue": "true"
|
|
1551
|
+
}
|
|
1552
|
+
],
|
|
1553
|
+
"outputs": []
|
|
1554
|
+
},
|
|
1555
|
+
"NgpMeterTrack": {
|
|
1556
|
+
"name": "NgpMeterTrack",
|
|
1557
|
+
"description": "",
|
|
1558
|
+
"selector": "[ngpMeterTrack]",
|
|
1559
|
+
"exportAs": [
|
|
1560
|
+
"ngpMeterTrack"
|
|
1561
|
+
],
|
|
1562
|
+
"inputs": [],
|
|
1563
|
+
"outputs": []
|
|
1564
|
+
},
|
|
1565
|
+
"NgpMeterValue": {
|
|
1566
|
+
"name": "NgpMeterValue",
|
|
1567
|
+
"description": "",
|
|
1568
|
+
"selector": "[ngpMeterValue]",
|
|
1569
|
+
"exportAs": [
|
|
1570
|
+
"ngpMeterValue"
|
|
1571
|
+
],
|
|
1572
|
+
"inputs": [],
|
|
1573
|
+
"outputs": []
|
|
1574
|
+
},
|
|
1575
|
+
"NgpMeterIndicator": {
|
|
1576
|
+
"name": "NgpMeterIndicator",
|
|
1577
|
+
"description": "",
|
|
1578
|
+
"selector": "[ngpMeterIndicator]",
|
|
1579
|
+
"exportAs": [
|
|
1580
|
+
"ngpMeterIndicator"
|
|
1581
|
+
],
|
|
1582
|
+
"inputs": [],
|
|
1583
|
+
"outputs": []
|
|
1584
|
+
},
|
|
1585
|
+
"NgpMeterLabel": {
|
|
1586
|
+
"name": "NgpMeterLabel",
|
|
1587
|
+
"description": "",
|
|
1588
|
+
"selector": "[ngpMeterLabel]",
|
|
1589
|
+
"exportAs": [
|
|
1590
|
+
"ngpMeterLabel"
|
|
1591
|
+
],
|
|
1592
|
+
"inputs": [],
|
|
1593
|
+
"outputs": []
|
|
1594
|
+
},
|
|
1595
|
+
"NgpMeter": {
|
|
1596
|
+
"name": "NgpMeter",
|
|
1597
|
+
"description": "",
|
|
1598
|
+
"selector": "[ngpMeter]",
|
|
1599
|
+
"exportAs": [
|
|
1600
|
+
"ngpMeter"
|
|
1601
|
+
],
|
|
1602
|
+
"inputs": [
|
|
1603
|
+
{
|
|
1604
|
+
"name": "ngpMeterValue",
|
|
1605
|
+
"type": "number",
|
|
1606
|
+
"description": "The value of the meter.",
|
|
1607
|
+
"isRequired": false
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"name": "ngpMeterMin",
|
|
1611
|
+
"type": "number",
|
|
1612
|
+
"description": "The minimum value of the meter.",
|
|
1613
|
+
"isRequired": false
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"name": "ngpMeterMax",
|
|
1617
|
+
"type": "number",
|
|
1618
|
+
"description": "The maximum value of the meter.",
|
|
1619
|
+
"isRequired": false
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"name": "ngpMeterValueLabel",
|
|
1623
|
+
"type": "NgpMeterValueTextFn",
|
|
1624
|
+
"description": "Define a function that returns the meter value label.",
|
|
1625
|
+
"isRequired": false
|
|
1626
|
+
}
|
|
1627
|
+
],
|
|
1628
|
+
"outputs": []
|
|
1629
|
+
},
|
|
1630
|
+
"NgpPagination": {
|
|
1631
|
+
"name": "NgpPagination",
|
|
1632
|
+
"description": "The `NgpPagination` directive is used to create a pagination control.",
|
|
1633
|
+
"selector": "[ngpPagination]",
|
|
1634
|
+
"exportAs": [
|
|
1635
|
+
"ngpPagination"
|
|
1636
|
+
],
|
|
1637
|
+
"inputs": [
|
|
1638
|
+
{
|
|
1639
|
+
"name": "ngpPaginationPage",
|
|
1640
|
+
"type": "number",
|
|
1641
|
+
"description": "The currently selected page.",
|
|
1642
|
+
"isRequired": false
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"name": "ngpPaginationPageCount",
|
|
1646
|
+
"type": "number",
|
|
1647
|
+
"description": "The total number of pages.",
|
|
1648
|
+
"isRequired": false
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"name": "ngpPaginationDisabled",
|
|
1652
|
+
"type": "boolean",
|
|
1653
|
+
"description": "Whether the pagination is disabled.",
|
|
1654
|
+
"isRequired": false
|
|
1655
|
+
}
|
|
1656
|
+
],
|
|
1657
|
+
"outputs": [
|
|
1658
|
+
{
|
|
1659
|
+
"name": "ngpPaginationPageChange",
|
|
1660
|
+
"type": "number",
|
|
1661
|
+
"description": "The event that is fired when the page changes."
|
|
1662
|
+
}
|
|
1663
|
+
]
|
|
1664
|
+
},
|
|
1665
|
+
"NgpPaginationFirst": {
|
|
1666
|
+
"name": "NgpPaginationFirst",
|
|
1667
|
+
"description": "The `NgpPaginationFirst` directive is used to create a pagination button that navigates to the first page.",
|
|
1668
|
+
"selector": "[ngpPaginationFirst]",
|
|
1669
|
+
"exportAs": [
|
|
1670
|
+
"ngpPaginationFirst"
|
|
1671
|
+
],
|
|
1672
|
+
"inputs": [
|
|
1673
|
+
{
|
|
1674
|
+
"name": "ngpPaginationFirstDisabled",
|
|
1675
|
+
"type": "boolean",
|
|
1676
|
+
"description": "Whether the button is disabled.",
|
|
1677
|
+
"isRequired": false
|
|
1678
|
+
}
|
|
1679
|
+
],
|
|
1680
|
+
"outputs": []
|
|
1681
|
+
},
|
|
1682
|
+
"NgpPaginationLast": {
|
|
1683
|
+
"name": "NgpPaginationLast",
|
|
1684
|
+
"description": "The `NgpPaginationLast` directive is used to create a pagination button that navigates to the last page.",
|
|
1685
|
+
"selector": "[ngpPaginationLast]",
|
|
1686
|
+
"exportAs": [
|
|
1687
|
+
"ngpPaginationLast"
|
|
1688
|
+
],
|
|
1689
|
+
"inputs": [
|
|
1690
|
+
{
|
|
1691
|
+
"name": "ngpPaginationLastDisabled",
|
|
1692
|
+
"type": "boolean",
|
|
1693
|
+
"description": "Whether the button is disabled.",
|
|
1694
|
+
"isRequired": false
|
|
1695
|
+
}
|
|
1696
|
+
],
|
|
1697
|
+
"outputs": []
|
|
1698
|
+
},
|
|
1699
|
+
"NgpPaginationNext": {
|
|
1700
|
+
"name": "NgpPaginationNext",
|
|
1701
|
+
"description": "The `NgpPaginationNext` directive is used to create a pagination button that navigates to the next page.",
|
|
1702
|
+
"selector": "[ngpPaginationNext]",
|
|
1703
|
+
"exportAs": [
|
|
1704
|
+
"ngpPaginationNext"
|
|
1705
|
+
],
|
|
1706
|
+
"inputs": [
|
|
1707
|
+
{
|
|
1708
|
+
"name": "ngpPaginationNextDisabled",
|
|
1709
|
+
"type": "boolean",
|
|
1710
|
+
"description": "Whether the button is disabled.",
|
|
1711
|
+
"isRequired": false
|
|
1712
|
+
}
|
|
1713
|
+
],
|
|
1714
|
+
"outputs": []
|
|
1715
|
+
},
|
|
1716
|
+
"NgpPaginationPrevious": {
|
|
1717
|
+
"name": "NgpPaginationPrevious",
|
|
1718
|
+
"description": "The `NgpPaginationPrevious` directive is used to create a pagination button that navigates to the previous page.",
|
|
1719
|
+
"selector": "[ngpPaginationPrevious]",
|
|
1720
|
+
"exportAs": [
|
|
1721
|
+
"ngpPaginationPrevious"
|
|
1722
|
+
],
|
|
1723
|
+
"inputs": [
|
|
1724
|
+
{
|
|
1725
|
+
"name": "ngpPaginationPreviousDisabled",
|
|
1726
|
+
"type": "boolean",
|
|
1727
|
+
"description": "Whether the button is disabled.",
|
|
1728
|
+
"isRequired": false
|
|
1729
|
+
}
|
|
1730
|
+
],
|
|
1731
|
+
"outputs": []
|
|
1732
|
+
},
|
|
1733
|
+
"NgpPaginationButton": {
|
|
1734
|
+
"name": "NgpPaginationButton",
|
|
1735
|
+
"description": "The `NgpPaginationButton` directive is used to create a pagination button.",
|
|
1736
|
+
"selector": "[ngpPaginationButton]",
|
|
1737
|
+
"exportAs": [
|
|
1738
|
+
"ngpPaginationButton"
|
|
1739
|
+
],
|
|
1740
|
+
"inputs": [
|
|
1741
|
+
{
|
|
1742
|
+
"name": "ngpPaginationButtonPage",
|
|
1743
|
+
"type": "number",
|
|
1744
|
+
"description": "Define the page this button represents.",
|
|
1745
|
+
"isRequired": true
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
"name": "ngpPaginationButtonDisabled",
|
|
1749
|
+
"type": "boolean",
|
|
1750
|
+
"description": "Whether the button is disabled.",
|
|
1751
|
+
"isRequired": false
|
|
1752
|
+
}
|
|
1753
|
+
],
|
|
1754
|
+
"outputs": []
|
|
1755
|
+
},
|
|
1756
|
+
"NgpPopoverArrow": {
|
|
1757
|
+
"name": "NgpPopoverArrow",
|
|
1758
|
+
"description": "",
|
|
1759
|
+
"selector": "[ngpPopoverArrow]",
|
|
1760
|
+
"exportAs": [
|
|
1761
|
+
"ngpPopoverArrow"
|
|
1762
|
+
],
|
|
1763
|
+
"inputs": [],
|
|
1764
|
+
"outputs": []
|
|
1765
|
+
},
|
|
1766
|
+
"NgpPopover": {
|
|
1767
|
+
"name": "NgpPopover",
|
|
1768
|
+
"description": "Apply the `ngpPopover` directive to an element that represents the popover. This typically would be a `div` inside an `ng-template`.",
|
|
1769
|
+
"selector": "[ngpPopover]",
|
|
1770
|
+
"exportAs": [
|
|
1771
|
+
"ngpPopover"
|
|
1772
|
+
],
|
|
1773
|
+
"inputs": [],
|
|
1774
|
+
"outputs": []
|
|
1775
|
+
},
|
|
1776
|
+
"NgpPopoverTrigger": {
|
|
1777
|
+
"name": "NgpPopoverTrigger",
|
|
1778
|
+
"description": "Apply the `ngpPopoverTrigger` directive to an element that triggers the popover to show.",
|
|
1779
|
+
"selector": "[ngpPopoverTrigger]",
|
|
1780
|
+
"exportAs": [
|
|
1781
|
+
"ngpPopoverTrigger"
|
|
1782
|
+
],
|
|
1783
|
+
"inputs": [
|
|
1784
|
+
{
|
|
1785
|
+
"name": "ngpPopoverTrigger",
|
|
1786
|
+
"type": "NgpOverlayContent<T> | undefined",
|
|
1787
|
+
"description": "Access the popover template ref.",
|
|
1788
|
+
"isRequired": false
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"name": "ngpPopoverTriggerDisabled",
|
|
1792
|
+
"type": "boolean",
|
|
1793
|
+
"description": "Define if the trigger should be disabled.",
|
|
1794
|
+
"isRequired": false,
|
|
1795
|
+
"defaultValue": "false"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"name": "ngpPopoverTriggerPlacement",
|
|
1799
|
+
"type": "NgpPopoverPlacement",
|
|
1800
|
+
"description": "Define the placement of the popover relative to the trigger.",
|
|
1801
|
+
"isRequired": false,
|
|
1802
|
+
"defaultValue": "'top'"
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"name": "ngpPopoverTriggerOffset",
|
|
1806
|
+
"type": "NgpOffset",
|
|
1807
|
+
"description": "Define the offset of the popover relative to the trigger.\nCan be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.",
|
|
1808
|
+
"isRequired": false,
|
|
1809
|
+
"defaultValue": "0"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"name": "ngpPopoverTriggerShowDelay",
|
|
1813
|
+
"type": "number",
|
|
1814
|
+
"description": "Define the delay before the popover is displayed.",
|
|
1815
|
+
"isRequired": false,
|
|
1816
|
+
"defaultValue": "0"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"name": "ngpPopoverTriggerHideDelay",
|
|
1820
|
+
"type": "number",
|
|
1821
|
+
"description": "Define the delay before the popover is hidden.",
|
|
1822
|
+
"isRequired": false,
|
|
1823
|
+
"defaultValue": "0"
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"name": "ngpPopoverTriggerFlip",
|
|
1827
|
+
"type": "boolean",
|
|
1828
|
+
"description": "Define whether the popover should flip when there is not enough space for the popover.",
|
|
1829
|
+
"isRequired": false,
|
|
1830
|
+
"defaultValue": "true"
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"name": "ngpPopoverTriggerContainer",
|
|
1834
|
+
"type": "string | HTMLElement | null",
|
|
1835
|
+
"description": "Define the container in which the popover should be attached.",
|
|
1836
|
+
"isRequired": false,
|
|
1837
|
+
"defaultValue": "document.body"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"name": "ngpPopoverTriggerCloseOnOutsideClick",
|
|
1841
|
+
"type": "boolean",
|
|
1842
|
+
"description": "Define whether the popover should close when clicking outside of it.",
|
|
1843
|
+
"isRequired": false,
|
|
1844
|
+
"defaultValue": "true"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"name": "ngpPopoverTriggerCloseOnEscape",
|
|
1848
|
+
"type": "boolean",
|
|
1849
|
+
"description": "Define whether the popover should close when the escape key is pressed.",
|
|
1850
|
+
"isRequired": false,
|
|
1851
|
+
"defaultValue": "true"
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"name": "ngpPopoverTriggerScrollBehavior",
|
|
1855
|
+
"type": "\"block\" | \"reposition\"",
|
|
1856
|
+
"description": "Defines how the popover behaves when the window is scrolled.",
|
|
1857
|
+
"isRequired": false,
|
|
1858
|
+
"defaultValue": "'reposition'"
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
"name": "ngpPopoverTriggerContext",
|
|
1862
|
+
"type": "T | undefined",
|
|
1863
|
+
"description": "Provide context to the popover. This can be used to pass data to the popover content.",
|
|
1864
|
+
"isRequired": false
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"name": "ngpPopoverTriggerAnchor",
|
|
1868
|
+
"type": "HTMLElement | null",
|
|
1869
|
+
"description": "Define an anchor element for positioning the popover.\nIf provided, the popover will be positioned relative to this element instead of the trigger.",
|
|
1870
|
+
"isRequired": false
|
|
1871
|
+
}
|
|
1872
|
+
],
|
|
1873
|
+
"outputs": [
|
|
1874
|
+
{
|
|
1875
|
+
"name": "ngpPopoverTriggerOpenChange",
|
|
1876
|
+
"type": "boolean",
|
|
1877
|
+
"description": "Event emitted when the popover open state changes."
|
|
1878
|
+
}
|
|
1879
|
+
]
|
|
1880
|
+
},
|
|
1881
|
+
"NgpProgressTrack": {
|
|
1882
|
+
"name": "NgpProgressTrack",
|
|
1883
|
+
"description": "",
|
|
1884
|
+
"selector": "[ngpProgressTrack]",
|
|
1885
|
+
"exportAs": [
|
|
1886
|
+
"ngpProgressTrack"
|
|
1887
|
+
],
|
|
1888
|
+
"inputs": [],
|
|
1889
|
+
"outputs": []
|
|
1890
|
+
},
|
|
1891
|
+
"NgpProgressValue": {
|
|
1892
|
+
"name": "NgpProgressValue",
|
|
1893
|
+
"description": "",
|
|
1894
|
+
"selector": "[ngpProgressValue]",
|
|
1895
|
+
"exportAs": [
|
|
1896
|
+
"ngpProgressValue"
|
|
1897
|
+
],
|
|
1898
|
+
"inputs": [],
|
|
1899
|
+
"outputs": []
|
|
1900
|
+
},
|
|
1901
|
+
"NgpProgressIndicator": {
|
|
1902
|
+
"name": "NgpProgressIndicator",
|
|
1903
|
+
"description": "Apply the `ngpProgressIndicator` directive to an element that represents the current progress.\nThe width of this element can be set to the percentage of the progress value.",
|
|
1904
|
+
"selector": "[ngpProgressIndicator]",
|
|
1905
|
+
"exportAs": [],
|
|
1906
|
+
"inputs": [],
|
|
1907
|
+
"outputs": []
|
|
1908
|
+
},
|
|
1909
|
+
"NgpProgressLabel": {
|
|
1910
|
+
"name": "NgpProgressLabel",
|
|
1911
|
+
"description": "",
|
|
1912
|
+
"selector": "[ngpProgressLabel]",
|
|
1913
|
+
"exportAs": [
|
|
1914
|
+
"ngpProgressLabel"
|
|
1915
|
+
],
|
|
1916
|
+
"inputs": [],
|
|
1917
|
+
"outputs": []
|
|
1918
|
+
},
|
|
1919
|
+
"NgpProgress": {
|
|
1920
|
+
"name": "NgpProgress",
|
|
1921
|
+
"description": "Apply the `ngpProgress` directive to an element that represents the progress bar.",
|
|
1922
|
+
"selector": "[ngpProgress]",
|
|
1923
|
+
"exportAs": [],
|
|
1924
|
+
"inputs": [
|
|
1925
|
+
{
|
|
1926
|
+
"name": "ngpProgressValue",
|
|
1927
|
+
"type": "number | null",
|
|
1928
|
+
"description": "Define the progress value.",
|
|
1929
|
+
"isRequired": false
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"name": "ngpProgressMin",
|
|
1933
|
+
"type": "number",
|
|
1934
|
+
"description": "Define the progress min value.",
|
|
1935
|
+
"isRequired": false,
|
|
1936
|
+
"defaultValue": "'0'"
|
|
1937
|
+
},
|
|
1938
|
+
{
|
|
1939
|
+
"name": "ngpProgressMax",
|
|
1940
|
+
"type": "number",
|
|
1941
|
+
"description": "Define the progress max value.",
|
|
1942
|
+
"isRequired": false,
|
|
1943
|
+
"defaultValue": "100"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
"name": "ngpProgressValueLabel",
|
|
1947
|
+
"type": "NgpProgressValueTextFn",
|
|
1948
|
+
"description": "Define a function that returns the progress value label.",
|
|
1949
|
+
"isRequired": false
|
|
1950
|
+
}
|
|
1951
|
+
],
|
|
1952
|
+
"outputs": []
|
|
1953
|
+
},
|
|
1954
|
+
"NgpRadioIndicator": {
|
|
1955
|
+
"name": "NgpRadioIndicator",
|
|
1956
|
+
"description": "Apply the `ngpRadioIndicator` directive to an element that represents the radio indicator (i.e. the dot).",
|
|
1957
|
+
"selector": "[ngpRadioIndicator]",
|
|
1958
|
+
"exportAs": [],
|
|
1959
|
+
"inputs": [],
|
|
1960
|
+
"outputs": []
|
|
1961
|
+
},
|
|
1962
|
+
"NgpRadioItem": {
|
|
1963
|
+
"name": "NgpRadioItem",
|
|
1964
|
+
"description": "Apply the `ngpRadioItem` directive to an element that represents a radio item. This would typically be a `button` element.",
|
|
1965
|
+
"selector": "[ngpRadioItem]",
|
|
1966
|
+
"exportAs": [],
|
|
1967
|
+
"inputs": [
|
|
1968
|
+
{
|
|
1969
|
+
"name": "ngpRadioItemValue",
|
|
1970
|
+
"type": "T | undefined",
|
|
1971
|
+
"description": "The value of the radio item.",
|
|
1972
|
+
"isRequired": true
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"name": "ngpRadioItemDisabled",
|
|
1976
|
+
"type": "boolean",
|
|
1977
|
+
"description": "Whether the radio item is disabled.",
|
|
1978
|
+
"isRequired": false,
|
|
1979
|
+
"defaultValue": "false"
|
|
1980
|
+
}
|
|
1981
|
+
],
|
|
1982
|
+
"outputs": []
|
|
1983
|
+
},
|
|
1984
|
+
"NgpRadioGroup": {
|
|
1985
|
+
"name": "NgpRadioGroup",
|
|
1986
|
+
"description": "Apply the `ngpRadioGroup` directive to an element that represents the group of radio items.",
|
|
1987
|
+
"selector": "[ngpRadioGroup]",
|
|
1988
|
+
"exportAs": [],
|
|
1989
|
+
"inputs": [
|
|
1990
|
+
{
|
|
1991
|
+
"name": "ngpRadioGroupValue",
|
|
1992
|
+
"type": "T | null",
|
|
1993
|
+
"description": "The value of the radio group.",
|
|
1994
|
+
"isRequired": false
|
|
1995
|
+
},
|
|
1996
|
+
{
|
|
1997
|
+
"name": "ngpRadioGroupDisabled",
|
|
1998
|
+
"type": "boolean",
|
|
1999
|
+
"description": "Whether the radio group is disabled.",
|
|
2000
|
+
"isRequired": false
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"name": "ngpRadioGroupOrientation",
|
|
2004
|
+
"type": "NgpOrientation",
|
|
2005
|
+
"description": "The orientation of the radio group.",
|
|
2006
|
+
"isRequired": false,
|
|
2007
|
+
"defaultValue": "'horizontal'"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"name": "ngpRadioGroupCompareWith",
|
|
2011
|
+
"type": "(a: T | null, b: T | null) => boolean",
|
|
2012
|
+
"description": "The comparator function for the radio group. This is useful if values are objects and you want to compare them by value, not by reference.",
|
|
2013
|
+
"isRequired": false,
|
|
2014
|
+
"defaultValue": "(a, b) => a === b"
|
|
2015
|
+
}
|
|
2016
|
+
],
|
|
2017
|
+
"outputs": [
|
|
2018
|
+
{
|
|
2019
|
+
"name": "ngpRadioGroupValueChange",
|
|
2020
|
+
"type": "T | null",
|
|
2021
|
+
"description": "Event emitted when the radio group value changes."
|
|
2022
|
+
}
|
|
2023
|
+
]
|
|
2024
|
+
},
|
|
2025
|
+
"NgpResize": {
|
|
2026
|
+
"name": "NgpResize",
|
|
2027
|
+
"description": "Apply the `ngpResize` directive to an element to listen for resize events.",
|
|
2028
|
+
"selector": "[ngpResize]",
|
|
2029
|
+
"exportAs": [],
|
|
2030
|
+
"inputs": [],
|
|
2031
|
+
"outputs": [
|
|
2032
|
+
{
|
|
2033
|
+
"name": "ngpResize",
|
|
2034
|
+
"type": "Dimensions",
|
|
2035
|
+
"description": "Emits when the element is resized."
|
|
2036
|
+
}
|
|
2037
|
+
]
|
|
2038
|
+
},
|
|
2039
|
+
"NgpRovingFocusItem": {
|
|
2040
|
+
"name": "NgpRovingFocusItem",
|
|
2041
|
+
"description": "Apply the `ngpRovingFocusItem` directive to an element within a roving focus group to automatically manage focus.",
|
|
2042
|
+
"selector": "[ngpRovingFocusItem]",
|
|
2043
|
+
"exportAs": [
|
|
2044
|
+
"ngpRovingFocusItem"
|
|
2045
|
+
],
|
|
2046
|
+
"inputs": [
|
|
2047
|
+
{
|
|
2048
|
+
"name": "ngpRovingFocusItemDisabled",
|
|
2049
|
+
"type": "boolean",
|
|
2050
|
+
"description": "Define if the item is disabled.",
|
|
2051
|
+
"isRequired": false
|
|
2052
|
+
}
|
|
2053
|
+
],
|
|
2054
|
+
"outputs": []
|
|
2055
|
+
},
|
|
2056
|
+
"NgpRovingFocusGroup": {
|
|
2057
|
+
"name": "NgpRovingFocusGroup",
|
|
2058
|
+
"description": "Apply the `ngpRovingFocusGroup` directive to an element to manage focus for a group of child elements.",
|
|
2059
|
+
"selector": "[ngpRovingFocusGroup]",
|
|
2060
|
+
"exportAs": [
|
|
2061
|
+
"ngpRovingFocusGroup"
|
|
2062
|
+
],
|
|
2063
|
+
"inputs": [
|
|
2064
|
+
{
|
|
2065
|
+
"name": "ngpRovingFocusGroupOrientation",
|
|
2066
|
+
"type": "NgpOrientation",
|
|
2067
|
+
"description": "Determine the orientation of the roving focus group.",
|
|
2068
|
+
"isRequired": false,
|
|
2069
|
+
"defaultValue": "'vertical'"
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"name": "ngpRovingFocusGroupWrap",
|
|
2073
|
+
"type": "boolean",
|
|
2074
|
+
"description": "Determine if focus should wrap when the end or beginning is reached.",
|
|
2075
|
+
"isRequired": false
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
"name": "ngpRovingFocusGroupHomeEnd",
|
|
2079
|
+
"type": "boolean",
|
|
2080
|
+
"description": "Determine if the home and end keys should navigate to the first and last items.",
|
|
2081
|
+
"isRequired": false
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
"name": "ngpRovingFocusGroupDisabled",
|
|
2085
|
+
"type": "boolean",
|
|
2086
|
+
"description": "Determine if the roving focus group is disabled.",
|
|
2087
|
+
"isRequired": false
|
|
2088
|
+
}
|
|
2089
|
+
],
|
|
2090
|
+
"outputs": []
|
|
2091
|
+
},
|
|
2092
|
+
"NgpSearchClear": {
|
|
2093
|
+
"name": "NgpSearchClear",
|
|
2094
|
+
"description": "The `NgpSearchClear` directive is can be added to a button to clear the search field on click.",
|
|
2095
|
+
"selector": "[ngpSearchClear]",
|
|
2096
|
+
"exportAs": [
|
|
2097
|
+
"ngpSearchClear"
|
|
2098
|
+
],
|
|
2099
|
+
"inputs": [],
|
|
2100
|
+
"outputs": []
|
|
2101
|
+
},
|
|
2102
|
+
"NgpSearch": {
|
|
2103
|
+
"name": "NgpSearch",
|
|
2104
|
+
"description": "The `NgpSearch` directive is a container for the search field components.",
|
|
2105
|
+
"selector": "[ngpSearch]",
|
|
2106
|
+
"exportAs": [
|
|
2107
|
+
"ngpSearch"
|
|
2108
|
+
],
|
|
2109
|
+
"inputs": [],
|
|
2110
|
+
"outputs": []
|
|
2111
|
+
},
|
|
2112
|
+
"NgpSelectDropdown": {
|
|
2113
|
+
"name": "NgpSelectDropdown",
|
|
2114
|
+
"description": "",
|
|
2115
|
+
"selector": "[ngpSelectDropdown]",
|
|
2116
|
+
"exportAs": [
|
|
2117
|
+
"ngpSelectDropdown"
|
|
2118
|
+
],
|
|
2119
|
+
"inputs": [],
|
|
2120
|
+
"outputs": []
|
|
2121
|
+
},
|
|
2122
|
+
"NgpSelectPortal": {
|
|
2123
|
+
"name": "NgpSelectPortal",
|
|
2124
|
+
"description": "",
|
|
2125
|
+
"selector": "[ngpSelectPortal]",
|
|
2126
|
+
"exportAs": [
|
|
2127
|
+
"ngpSelectPortal"
|
|
2128
|
+
],
|
|
2129
|
+
"inputs": [],
|
|
2130
|
+
"outputs": []
|
|
2131
|
+
},
|
|
2132
|
+
"NgpNativeSelect": {
|
|
2133
|
+
"name": "NgpNativeSelect",
|
|
2134
|
+
"description": "Apply the `ngpNativeSelect` directive to a select element that you want to enhance.",
|
|
2135
|
+
"selector": "select[ngpNativeSelect]",
|
|
2136
|
+
"exportAs": [
|
|
2137
|
+
"ngpNativeSelect"
|
|
2138
|
+
],
|
|
2139
|
+
"inputs": [
|
|
2140
|
+
{
|
|
2141
|
+
"name": "ngpNativeSelectDisabled",
|
|
2142
|
+
"type": "boolean",
|
|
2143
|
+
"description": "Whether the select is disabled.",
|
|
2144
|
+
"isRequired": false
|
|
2145
|
+
}
|
|
2146
|
+
],
|
|
2147
|
+
"outputs": []
|
|
2148
|
+
},
|
|
2149
|
+
"NgpSelectOption": {
|
|
2150
|
+
"name": "NgpSelectOption",
|
|
2151
|
+
"description": "",
|
|
2152
|
+
"selector": "[ngpSelectOption]",
|
|
2153
|
+
"exportAs": [
|
|
2154
|
+
"ngpSelectOption"
|
|
2155
|
+
],
|
|
2156
|
+
"inputs": [
|
|
2157
|
+
{
|
|
2158
|
+
"name": "ngpSelectOptionValue",
|
|
2159
|
+
"type": "any",
|
|
2160
|
+
"description": "",
|
|
2161
|
+
"isRequired": true
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"name": "ngpSelectOptionDisabled",
|
|
2165
|
+
"type": "boolean",
|
|
2166
|
+
"description": "The disabled state of the option.",
|
|
2167
|
+
"isRequired": false
|
|
2168
|
+
}
|
|
2169
|
+
],
|
|
2170
|
+
"outputs": []
|
|
2171
|
+
},
|
|
2172
|
+
"NgpSelect": {
|
|
2173
|
+
"name": "NgpSelect",
|
|
2174
|
+
"description": "",
|
|
2175
|
+
"selector": "[ngpSelect]",
|
|
2176
|
+
"exportAs": [
|
|
2177
|
+
"ngpSelect"
|
|
2178
|
+
],
|
|
2179
|
+
"inputs": [
|
|
2180
|
+
{
|
|
2181
|
+
"name": "ngpSelectValue",
|
|
2182
|
+
"type": "any",
|
|
2183
|
+
"description": "The value of the select.",
|
|
2184
|
+
"isRequired": false
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"name": "ngpSelectMultiple",
|
|
2188
|
+
"type": "boolean",
|
|
2189
|
+
"description": "Whether the select is multiple selection.",
|
|
2190
|
+
"isRequired": false
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"name": "ngpSelectDisabled",
|
|
2194
|
+
"type": "boolean",
|
|
2195
|
+
"description": "Whether the select is disabled.",
|
|
2196
|
+
"isRequired": false
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"name": "ngpSelectCompareWith",
|
|
2200
|
+
"type": "(a: any, b: any) => boolean",
|
|
2201
|
+
"description": "The comparator function used to compare options.",
|
|
2202
|
+
"isRequired": false
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"name": "ngpSelectDropdownPlacement",
|
|
2206
|
+
"type": "Placement",
|
|
2207
|
+
"description": "The position of the dropdown.",
|
|
2208
|
+
"isRequired": false
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"name": "ngpSelectDropdownContainer",
|
|
2212
|
+
"type": "string | HTMLElement | null",
|
|
2213
|
+
"description": "The container for the dropdown.",
|
|
2214
|
+
"isRequired": false
|
|
2215
|
+
}
|
|
2216
|
+
],
|
|
2217
|
+
"outputs": [
|
|
2218
|
+
{
|
|
2219
|
+
"name": "ngpSelectValueChange",
|
|
2220
|
+
"type": "any",
|
|
2221
|
+
"description": "Event emitted when the value changes."
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
"name": "ngpSelectOpenChange",
|
|
2225
|
+
"type": "boolean",
|
|
2226
|
+
"description": "Emit when the dropdown open state changes."
|
|
2227
|
+
}
|
|
2228
|
+
]
|
|
2229
|
+
},
|
|
2230
|
+
"NgpSeparator": {
|
|
2231
|
+
"name": "NgpSeparator",
|
|
2232
|
+
"description": "",
|
|
2233
|
+
"selector": "[ngpSeparator]",
|
|
2234
|
+
"exportAs": [
|
|
2235
|
+
"ngpSeparator"
|
|
2236
|
+
],
|
|
2237
|
+
"inputs": [
|
|
2238
|
+
{
|
|
2239
|
+
"name": "ngpSeparatorOrientation",
|
|
2240
|
+
"type": "NgpOrientation",
|
|
2241
|
+
"description": "The orientation of the separator.",
|
|
2242
|
+
"isRequired": false
|
|
2243
|
+
}
|
|
2244
|
+
],
|
|
2245
|
+
"outputs": []
|
|
2246
|
+
},
|
|
2247
|
+
"NgpRangeSliderRange": {
|
|
2248
|
+
"name": "NgpRangeSliderRange",
|
|
2249
|
+
"description": "Apply the `ngpRangeSliderRange` directive to an element that represents the range between the low and high values.",
|
|
2250
|
+
"selector": "[ngpRangeSliderRange]",
|
|
2251
|
+
"exportAs": [
|
|
2252
|
+
"ngpRangeSliderRange"
|
|
2253
|
+
],
|
|
2254
|
+
"inputs": [],
|
|
2255
|
+
"outputs": []
|
|
2256
|
+
},
|
|
2257
|
+
"NgpSliderRange": {
|
|
2258
|
+
"name": "NgpSliderRange",
|
|
2259
|
+
"description": "Apply the `ngpSliderRange` directive to an element that represents the range of the slider.",
|
|
2260
|
+
"selector": "[ngpSliderRange]",
|
|
2261
|
+
"exportAs": [
|
|
2262
|
+
"ngpSliderRange"
|
|
2263
|
+
],
|
|
2264
|
+
"inputs": [],
|
|
2265
|
+
"outputs": []
|
|
2266
|
+
},
|
|
2267
|
+
"NgpSliderThumb": {
|
|
2268
|
+
"name": "NgpSliderThumb",
|
|
2269
|
+
"description": "Apply the `ngpSliderThumb` directive to an element that represents the thumb of the slider.",
|
|
2270
|
+
"selector": "[ngpSliderThumb]",
|
|
2271
|
+
"exportAs": [
|
|
2272
|
+
"ngpSliderThumb"
|
|
2273
|
+
],
|
|
2274
|
+
"inputs": [],
|
|
2275
|
+
"outputs": []
|
|
2276
|
+
},
|
|
2277
|
+
"NgpSliderTrack": {
|
|
2278
|
+
"name": "NgpSliderTrack",
|
|
2279
|
+
"description": "Apply the `ngpSliderTrack` directive to an element that represents the track of the slider.",
|
|
2280
|
+
"selector": "[ngpSliderTrack]",
|
|
2281
|
+
"exportAs": [
|
|
2282
|
+
"ngpSliderTrack"
|
|
2283
|
+
],
|
|
2284
|
+
"inputs": [],
|
|
2285
|
+
"outputs": []
|
|
2286
|
+
},
|
|
2287
|
+
"NgpRangeSliderTrack": {
|
|
2288
|
+
"name": "NgpRangeSliderTrack",
|
|
2289
|
+
"description": "Apply the `ngpRangeSliderTrack` directive to an element that represents the track of the range slider.",
|
|
2290
|
+
"selector": "[ngpRangeSliderTrack]",
|
|
2291
|
+
"exportAs": [
|
|
2292
|
+
"ngpRangeSliderTrack"
|
|
2293
|
+
],
|
|
2294
|
+
"inputs": [],
|
|
2295
|
+
"outputs": []
|
|
2296
|
+
},
|
|
2297
|
+
"NgpRangeSliderThumb": {
|
|
2298
|
+
"name": "NgpRangeSliderThumb",
|
|
2299
|
+
"description": "Apply the `ngpRangeSliderThumb` directive to an element that represents a thumb of the range slider.\nEach thumb can be configured to control either the 'low' or 'high' value.",
|
|
2300
|
+
"selector": "[ngpRangeSliderThumb]",
|
|
2301
|
+
"exportAs": [
|
|
2302
|
+
"ngpRangeSliderThumb"
|
|
2303
|
+
],
|
|
2304
|
+
"inputs": [],
|
|
2305
|
+
"outputs": []
|
|
2306
|
+
},
|
|
2307
|
+
"NgpSlider": {
|
|
2308
|
+
"name": "NgpSlider",
|
|
2309
|
+
"description": "Apply the `ngpSlider` directive to an element that represents the slider and contains the track, range, and thumb.",
|
|
2310
|
+
"selector": "[ngpSlider]",
|
|
2311
|
+
"exportAs": [
|
|
2312
|
+
"ngpSlider"
|
|
2313
|
+
],
|
|
2314
|
+
"inputs": [
|
|
2315
|
+
{
|
|
2316
|
+
"name": "ngpSliderValue",
|
|
2317
|
+
"type": "number",
|
|
2318
|
+
"description": "The value of the slider.",
|
|
2319
|
+
"isRequired": false
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
"name": "ngpSliderMin",
|
|
2323
|
+
"type": "number",
|
|
2324
|
+
"description": "The minimum value of the slider.",
|
|
2325
|
+
"isRequired": false
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"name": "ngpSliderMax",
|
|
2329
|
+
"type": "number",
|
|
2330
|
+
"description": "The maximum value of the slider.",
|
|
2331
|
+
"isRequired": false
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"name": "ngpSliderStep",
|
|
2335
|
+
"type": "number",
|
|
2336
|
+
"description": "The step value of the slider.",
|
|
2337
|
+
"isRequired": false
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"name": "ngpSliderOrientation",
|
|
2341
|
+
"type": "NgpOrientation",
|
|
2342
|
+
"description": "The orientation of the slider.",
|
|
2343
|
+
"isRequired": false
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"name": "ngpSliderDisabled",
|
|
2347
|
+
"type": "boolean",
|
|
2348
|
+
"description": "The disabled state of the slider.",
|
|
2349
|
+
"isRequired": false
|
|
2350
|
+
}
|
|
2351
|
+
],
|
|
2352
|
+
"outputs": [
|
|
2353
|
+
{
|
|
2354
|
+
"name": "ngpSliderValueChange",
|
|
2355
|
+
"type": "number",
|
|
2356
|
+
"description": "Emits when the value changes."
|
|
2357
|
+
}
|
|
2358
|
+
]
|
|
2359
|
+
},
|
|
2360
|
+
"NgpRangeSlider": {
|
|
2361
|
+
"name": "NgpRangeSlider",
|
|
2362
|
+
"description": "Apply the `ngpRangeSlider` directive to an element that represents the range slider and contains the track, range, and thumbs.",
|
|
2363
|
+
"selector": "[ngpRangeSlider]",
|
|
2364
|
+
"exportAs": [
|
|
2365
|
+
"ngpRangeSlider"
|
|
2366
|
+
],
|
|
2367
|
+
"inputs": [
|
|
2368
|
+
{
|
|
2369
|
+
"name": "ngpRangeSliderLow",
|
|
2370
|
+
"type": "number",
|
|
2371
|
+
"description": "The low value of the range slider.",
|
|
2372
|
+
"isRequired": false
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
"name": "ngpRangeSliderHigh",
|
|
2376
|
+
"type": "number",
|
|
2377
|
+
"description": "The high value of the range slider.",
|
|
2378
|
+
"isRequired": false
|
|
2379
|
+
},
|
|
2380
|
+
{
|
|
2381
|
+
"name": "ngpRangeSliderMin",
|
|
2382
|
+
"type": "number",
|
|
2383
|
+
"description": "The minimum value of the range slider.",
|
|
2384
|
+
"isRequired": false
|
|
2385
|
+
},
|
|
2386
|
+
{
|
|
2387
|
+
"name": "ngpRangeSliderMax",
|
|
2388
|
+
"type": "number",
|
|
2389
|
+
"description": "The maximum value of the range slider.",
|
|
2390
|
+
"isRequired": false
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"name": "ngpRangeSliderStep",
|
|
2394
|
+
"type": "number",
|
|
2395
|
+
"description": "The step value of the range slider.",
|
|
2396
|
+
"isRequired": false
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
"name": "ngpRangeSliderOrientation",
|
|
2400
|
+
"type": "NgpOrientation",
|
|
2401
|
+
"description": "The orientation of the range slider.",
|
|
2402
|
+
"isRequired": false
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"name": "ngpRangeSliderDisabled",
|
|
2406
|
+
"type": "boolean",
|
|
2407
|
+
"description": "The disabled state of the range slider.",
|
|
2408
|
+
"isRequired": false
|
|
2409
|
+
}
|
|
2410
|
+
],
|
|
2411
|
+
"outputs": [
|
|
2412
|
+
{
|
|
2413
|
+
"name": "ngpRangeSliderLowChange",
|
|
2414
|
+
"type": "number",
|
|
2415
|
+
"description": "Emits when the low value changes."
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
"name": "ngpRangeSliderHighChange",
|
|
2419
|
+
"type": "number",
|
|
2420
|
+
"description": "Emits when the high value changes."
|
|
2421
|
+
}
|
|
2422
|
+
]
|
|
2423
|
+
},
|
|
2424
|
+
"NgpSwitchThumb": {
|
|
2425
|
+
"name": "NgpSwitchThumb",
|
|
2426
|
+
"description": "Apply the `ngpSwitchThumb` directive to an element within a switch to represent the thumb.",
|
|
2427
|
+
"selector": "[ngpSwitchThumb]",
|
|
2428
|
+
"exportAs": [],
|
|
2429
|
+
"inputs": [],
|
|
2430
|
+
"outputs": []
|
|
2431
|
+
},
|
|
2432
|
+
"NgpSwitch": {
|
|
2433
|
+
"name": "NgpSwitch",
|
|
2434
|
+
"description": "Apply the `ngpSwitch` directive to an element to manage the checked state.",
|
|
2435
|
+
"selector": "[ngpSwitch]",
|
|
2436
|
+
"exportAs": [
|
|
2437
|
+
"ngpSwitch"
|
|
2438
|
+
],
|
|
2439
|
+
"inputs": [
|
|
2440
|
+
{
|
|
2441
|
+
"name": "ngpSwitchChecked",
|
|
2442
|
+
"type": "boolean",
|
|
2443
|
+
"description": "Determine if the switch is checked.",
|
|
2444
|
+
"isRequired": false,
|
|
2445
|
+
"defaultValue": "false"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"name": "ngpSwitchDisabled",
|
|
2449
|
+
"type": "boolean",
|
|
2450
|
+
"description": "Determine if the switch is disabled.",
|
|
2451
|
+
"isRequired": false,
|
|
2452
|
+
"defaultValue": "false"
|
|
2453
|
+
}
|
|
2454
|
+
],
|
|
2455
|
+
"outputs": [
|
|
2456
|
+
{
|
|
2457
|
+
"name": "ngpSwitchCheckedChange",
|
|
2458
|
+
"type": "boolean",
|
|
2459
|
+
"description": "Emits when the checked state changes."
|
|
2460
|
+
}
|
|
2461
|
+
]
|
|
2462
|
+
},
|
|
2463
|
+
"NgpTabList": {
|
|
2464
|
+
"name": "NgpTabList",
|
|
2465
|
+
"description": "Apply the `ngpTabList` directive to an element that represents the list of tab buttons.",
|
|
2466
|
+
"selector": "[ngpTabList]",
|
|
2467
|
+
"exportAs": [
|
|
2468
|
+
"ngpTabList"
|
|
2469
|
+
],
|
|
2470
|
+
"inputs": [],
|
|
2471
|
+
"outputs": []
|
|
2472
|
+
},
|
|
2473
|
+
"NgpTabPanel": {
|
|
2474
|
+
"name": "NgpTabPanel",
|
|
2475
|
+
"description": "Apply the `ngpTabPanel` directive to an element that represents the content of a tab.",
|
|
2476
|
+
"selector": "[ngpTabPanel]",
|
|
2477
|
+
"exportAs": [
|
|
2478
|
+
"ngpTabPanel"
|
|
2479
|
+
],
|
|
2480
|
+
"inputs": [
|
|
2481
|
+
{
|
|
2482
|
+
"name": "ngpTabPanelValue",
|
|
2483
|
+
"type": "string | undefined",
|
|
2484
|
+
"description": "The value of the tab",
|
|
2485
|
+
"isRequired": true
|
|
2486
|
+
}
|
|
2487
|
+
],
|
|
2488
|
+
"outputs": []
|
|
2489
|
+
},
|
|
2490
|
+
"NgpTabButton": {
|
|
2491
|
+
"name": "NgpTabButton",
|
|
2492
|
+
"description": "Apply the `ngpTabButton` directive to an element within a tab list to represent a tab button. This directive should be applied to a button element.",
|
|
2493
|
+
"selector": "[ngpTabButton]",
|
|
2494
|
+
"exportAs": [
|
|
2495
|
+
"ngpTabButton"
|
|
2496
|
+
],
|
|
2497
|
+
"inputs": [
|
|
2498
|
+
{
|
|
2499
|
+
"name": "ngpTabButtonValue",
|
|
2500
|
+
"type": "string | undefined",
|
|
2501
|
+
"description": "The value of the tab this trigger controls",
|
|
2502
|
+
"isRequired": true
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"name": "ngpTabButtonDisabled",
|
|
2506
|
+
"type": "boolean",
|
|
2507
|
+
"description": "Whether the tab is disabled",
|
|
2508
|
+
"isRequired": false,
|
|
2509
|
+
"defaultValue": "false"
|
|
2510
|
+
}
|
|
2511
|
+
],
|
|
2512
|
+
"outputs": []
|
|
2513
|
+
},
|
|
2514
|
+
"NgpTabset": {
|
|
2515
|
+
"name": "NgpTabset",
|
|
2516
|
+
"description": "Apply the `ngpTabset` directive to an element to manage the tabs.",
|
|
2517
|
+
"selector": "[ngpTabset]",
|
|
2518
|
+
"exportAs": [
|
|
2519
|
+
"ngpTabset"
|
|
2520
|
+
],
|
|
2521
|
+
"inputs": [
|
|
2522
|
+
{
|
|
2523
|
+
"name": "ngpTabsetValue",
|
|
2524
|
+
"type": "string | undefined",
|
|
2525
|
+
"description": "Define the active tab",
|
|
2526
|
+
"isRequired": false
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
"name": "ngpTabsetOrientation",
|
|
2530
|
+
"type": "NgpOrientation",
|
|
2531
|
+
"description": "The orientation of the tabset",
|
|
2532
|
+
"isRequired": false,
|
|
2533
|
+
"defaultValue": "'horizontal'"
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"name": "ngpTabsetActivateOnFocus",
|
|
2537
|
+
"type": "boolean",
|
|
2538
|
+
"description": "Whether tabs should activate on focus",
|
|
2539
|
+
"isRequired": false
|
|
2540
|
+
}
|
|
2541
|
+
],
|
|
2542
|
+
"outputs": [
|
|
2543
|
+
{
|
|
2544
|
+
"name": "ngpTabsetValueChange",
|
|
2545
|
+
"type": "string | undefined",
|
|
2546
|
+
"description": "Emit the value of the selected tab when it changes"
|
|
2547
|
+
}
|
|
2548
|
+
]
|
|
2549
|
+
},
|
|
2550
|
+
"NgpTextarea": {
|
|
2551
|
+
"name": "NgpTextarea",
|
|
2552
|
+
"description": "",
|
|
2553
|
+
"selector": "[ngpTextarea]",
|
|
2554
|
+
"exportAs": [
|
|
2555
|
+
"ngpTextarea"
|
|
2556
|
+
],
|
|
2557
|
+
"inputs": [
|
|
2558
|
+
{
|
|
2559
|
+
"name": "disabled",
|
|
2560
|
+
"type": "boolean",
|
|
2561
|
+
"description": "Whether the element is disabled.",
|
|
2562
|
+
"isRequired": false
|
|
2563
|
+
}
|
|
2564
|
+
],
|
|
2565
|
+
"outputs": []
|
|
2566
|
+
},
|
|
2567
|
+
"NgpToast": {
|
|
2568
|
+
"name": "NgpToast",
|
|
2569
|
+
"description": "",
|
|
2570
|
+
"selector": "[ngpToast]",
|
|
2571
|
+
"exportAs": [
|
|
2572
|
+
"ngpToast"
|
|
2573
|
+
],
|
|
2574
|
+
"inputs": [],
|
|
2575
|
+
"outputs": []
|
|
2576
|
+
},
|
|
2577
|
+
"NgpToggle": {
|
|
2578
|
+
"name": "NgpToggle",
|
|
2579
|
+
"description": "Apply the `ngpToggle` directive to an element to manage the toggle state. This must be applied to a `button` element.",
|
|
2580
|
+
"selector": "[ngpToggle]",
|
|
2581
|
+
"exportAs": [
|
|
2582
|
+
"ngpToggle"
|
|
2583
|
+
],
|
|
2584
|
+
"inputs": [
|
|
2585
|
+
{
|
|
2586
|
+
"name": "ngpToggleSelected",
|
|
2587
|
+
"type": "boolean",
|
|
2588
|
+
"description": "Whether the toggle is selected.",
|
|
2589
|
+
"isRequired": false,
|
|
2590
|
+
"defaultValue": "false"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"name": "ngpToggleDisabled",
|
|
2594
|
+
"type": "boolean",
|
|
2595
|
+
"description": "Whether the toggle is disabled.",
|
|
2596
|
+
"isRequired": false,
|
|
2597
|
+
"defaultValue": "false"
|
|
2598
|
+
}
|
|
2599
|
+
],
|
|
2600
|
+
"outputs": [
|
|
2601
|
+
{
|
|
2602
|
+
"name": "ngpToggleSelectedChange",
|
|
2603
|
+
"type": "boolean",
|
|
2604
|
+
"description": "Emits when the selected state changes."
|
|
2605
|
+
}
|
|
2606
|
+
]
|
|
2607
|
+
},
|
|
2608
|
+
"NgpToggleGroupItem": {
|
|
2609
|
+
"name": "NgpToggleGroupItem",
|
|
2610
|
+
"description": "",
|
|
2611
|
+
"selector": "[ngpToggleGroupItem]",
|
|
2612
|
+
"exportAs": [
|
|
2613
|
+
"ngpToggleGroupItem"
|
|
2614
|
+
],
|
|
2615
|
+
"inputs": [
|
|
2616
|
+
{
|
|
2617
|
+
"name": "ngpToggleGroupItemValue",
|
|
2618
|
+
"type": "string | undefined",
|
|
2619
|
+
"description": "The value of the item.",
|
|
2620
|
+
"isRequired": true
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"name": "ngpToggleGroupItemDisabled",
|
|
2624
|
+
"type": "boolean",
|
|
2625
|
+
"description": "Whether the item is disabled.",
|
|
2626
|
+
"isRequired": false
|
|
2627
|
+
}
|
|
2628
|
+
],
|
|
2629
|
+
"outputs": []
|
|
2630
|
+
},
|
|
2631
|
+
"NgpToggleGroup": {
|
|
2632
|
+
"name": "NgpToggleGroup",
|
|
2633
|
+
"description": "",
|
|
2634
|
+
"selector": "[ngpToggleGroup]",
|
|
2635
|
+
"exportAs": [
|
|
2636
|
+
"ngpToggleGroup"
|
|
2637
|
+
],
|
|
2638
|
+
"inputs": [
|
|
2639
|
+
{
|
|
2640
|
+
"name": "ngpToggleGroupOrientation",
|
|
2641
|
+
"type": "NgpOrientation",
|
|
2642
|
+
"description": "The orientation of the toggle group.",
|
|
2643
|
+
"isRequired": false
|
|
2644
|
+
},
|
|
2645
|
+
{
|
|
2646
|
+
"name": "ngpToggleGroupAllowDeselection",
|
|
2647
|
+
"type": "boolean",
|
|
2648
|
+
"description": "Whether toggle buttons can be deselected. If set to `false`, clicking a selected toggle button will not deselect it.",
|
|
2649
|
+
"isRequired": false,
|
|
2650
|
+
"defaultValue": "true"
|
|
2651
|
+
},
|
|
2652
|
+
{
|
|
2653
|
+
"name": "ngpToggleGroupType",
|
|
2654
|
+
"type": "\"single\" | \"multiple\"",
|
|
2655
|
+
"description": "The type of the toggle group, whether only one item can be selected or multiple.",
|
|
2656
|
+
"isRequired": false
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
"name": "ngpToggleGroupValue",
|
|
2660
|
+
"type": "string[]",
|
|
2661
|
+
"description": "The selected value(s) of the toggle group.",
|
|
2662
|
+
"isRequired": false
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"name": "ngpToggleGroupDisabled",
|
|
2666
|
+
"type": "boolean",
|
|
2667
|
+
"description": "Whether the toggle group is disabled.",
|
|
2668
|
+
"isRequired": false
|
|
2669
|
+
}
|
|
2670
|
+
],
|
|
2671
|
+
"outputs": [
|
|
2672
|
+
{
|
|
2673
|
+
"name": "ngpToggleGroupValueChange",
|
|
2674
|
+
"type": "string[]",
|
|
2675
|
+
"description": "Emits when the value of the toggle group changes."
|
|
2676
|
+
}
|
|
2677
|
+
]
|
|
2678
|
+
},
|
|
2679
|
+
"NgpToolbar": {
|
|
2680
|
+
"name": "NgpToolbar",
|
|
2681
|
+
"description": "",
|
|
2682
|
+
"selector": "[ngpToolbar]",
|
|
2683
|
+
"exportAs": [
|
|
2684
|
+
"ngpToolbar"
|
|
2685
|
+
],
|
|
2686
|
+
"inputs": [
|
|
2687
|
+
{
|
|
2688
|
+
"name": "ngpToolbarOrientation",
|
|
2689
|
+
"type": "NgpOrientation",
|
|
2690
|
+
"description": "The orientation of the toolbar.",
|
|
2691
|
+
"isRequired": false
|
|
2692
|
+
}
|
|
2693
|
+
],
|
|
2694
|
+
"outputs": []
|
|
2695
|
+
},
|
|
2696
|
+
"NgpTooltipArrow": {
|
|
2697
|
+
"name": "NgpTooltipArrow",
|
|
2698
|
+
"description": "",
|
|
2699
|
+
"selector": "[ngpTooltipArrow]",
|
|
2700
|
+
"exportAs": [
|
|
2701
|
+
"ngpTooltipArrow"
|
|
2702
|
+
],
|
|
2703
|
+
"inputs": [],
|
|
2704
|
+
"outputs": []
|
|
2705
|
+
},
|
|
2706
|
+
"NgpTooltip": {
|
|
2707
|
+
"name": "NgpTooltip",
|
|
2708
|
+
"description": "Apply the `ngpTooltip` directive to an element that represents the tooltip. This typically would be a `div` inside an `ng-template`.",
|
|
2709
|
+
"selector": "[ngpTooltip]",
|
|
2710
|
+
"exportAs": [
|
|
2711
|
+
"ngpTooltip"
|
|
2712
|
+
],
|
|
2713
|
+
"inputs": [],
|
|
2714
|
+
"outputs": []
|
|
2715
|
+
},
|
|
2716
|
+
"NgpTooltipTrigger": {
|
|
2717
|
+
"name": "NgpTooltipTrigger",
|
|
2718
|
+
"description": "Apply the `ngpTooltipTrigger` directive to an element that triggers the tooltip to show.",
|
|
2719
|
+
"selector": "[ngpTooltipTrigger]",
|
|
2720
|
+
"exportAs": [
|
|
2721
|
+
"ngpTooltipTrigger"
|
|
2722
|
+
],
|
|
2723
|
+
"inputs": [
|
|
2724
|
+
{
|
|
2725
|
+
"name": "ngpTooltipTrigger",
|
|
2726
|
+
"type": "string | NgpOverlayContent<T> | null",
|
|
2727
|
+
"description": "Access the tooltip template ref.",
|
|
2728
|
+
"isRequired": false
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
"name": "ngpTooltipTriggerDisabled",
|
|
2732
|
+
"type": "boolean",
|
|
2733
|
+
"description": "Define if the trigger should be disabled.",
|
|
2734
|
+
"isRequired": false,
|
|
2735
|
+
"defaultValue": "false"
|
|
2736
|
+
},
|
|
2737
|
+
{
|
|
2738
|
+
"name": "ngpTooltipTriggerPlacement",
|
|
2739
|
+
"type": "NgpTooltipPlacement",
|
|
2740
|
+
"description": "Define the placement of the tooltip relative to the trigger.",
|
|
2741
|
+
"isRequired": false,
|
|
2742
|
+
"defaultValue": "'top'"
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
"name": "ngpTooltipTriggerOffset",
|
|
2746
|
+
"type": "NgpOffset",
|
|
2747
|
+
"description": "Define the offset of the tooltip relative to the trigger.\nCan be a number (applies to mainAxis) or an object with mainAxis, crossAxis, and alignmentAxis.",
|
|
2748
|
+
"isRequired": false,
|
|
2749
|
+
"defaultValue": "0"
|
|
2750
|
+
},
|
|
2751
|
+
{
|
|
2752
|
+
"name": "ngpTooltipTriggerShowDelay",
|
|
2753
|
+
"type": "number",
|
|
2754
|
+
"description": "Define the delay before the tooltip is displayed.",
|
|
2755
|
+
"isRequired": false,
|
|
2756
|
+
"defaultValue": "500"
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"name": "ngpTooltipTriggerHideDelay",
|
|
2760
|
+
"type": "number",
|
|
2761
|
+
"description": "Define the delay before the tooltip is hidden.",
|
|
2762
|
+
"isRequired": false,
|
|
2763
|
+
"defaultValue": "0"
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"name": "ngpTooltipTriggerFlip",
|
|
2767
|
+
"type": "boolean",
|
|
2768
|
+
"description": "Define whether the tooltip should flip when there is not enough space for the tooltip.",
|
|
2769
|
+
"isRequired": false,
|
|
2770
|
+
"defaultValue": "true"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
"name": "ngpTooltipTriggerContainer",
|
|
2774
|
+
"type": "string | HTMLElement | null",
|
|
2775
|
+
"description": "Define the container in which the tooltip should be attached.",
|
|
2776
|
+
"isRequired": false,
|
|
2777
|
+
"defaultValue": "document.body"
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
"name": "ngpTooltipTriggerShowOnOverflow",
|
|
2781
|
+
"type": "boolean",
|
|
2782
|
+
"description": "Define whether the tooltip should only show when the trigger element overflows.",
|
|
2783
|
+
"isRequired": false,
|
|
2784
|
+
"defaultValue": "false"
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
"name": "ngpTooltipTriggerContext",
|
|
2788
|
+
"type": "T | undefined",
|
|
2789
|
+
"description": "Provide context to the tooltip. This can be used to pass data to the tooltip content.",
|
|
2790
|
+
"isRequired": false
|
|
2791
|
+
},
|
|
2792
|
+
{
|
|
2793
|
+
"name": "ngpTooltipTriggerUseTextContent",
|
|
2794
|
+
"type": "boolean",
|
|
2795
|
+
"description": "Define whether to use the text content of the trigger element as the tooltip content.\nWhen enabled, the tooltip will display the text content of the trigger element.",
|
|
2796
|
+
"isRequired": false,
|
|
2797
|
+
"defaultValue": "true"
|
|
2798
|
+
}
|
|
2799
|
+
],
|
|
2800
|
+
"outputs": []
|
|
2801
|
+
}
|
|
2802
|
+
}
|