@angular/aria 21.0.0-rc.1 → 21.0.0-rc.3
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/_adev_assets/aria-accordion.json +429 -59
- package/_adev_assets/aria-combobox.json +261 -41
- package/_adev_assets/aria-grid.json +339 -85
- package/_adev_assets/aria-listbox.json +99 -70
- package/_adev_assets/aria-menu.json +355 -158
- package/_adev_assets/aria-tabs.json +198 -305
- package/_adev_assets/aria-toolbar.json +70 -221
- package/_adev_assets/aria-tree.json +153 -363
- package/fesm2022/_widget-chunk.mjs +388 -57
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +125 -72
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/aria.mjs +1 -1
- package/fesm2022/aria.mjs.map +1 -1
- package/fesm2022/combobox.mjs +129 -24
- package/fesm2022/combobox.mjs.map +1 -1
- package/fesm2022/grid.mjs +203 -65
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +50 -39
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +179 -71
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/private.mjs +418 -440
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/tabs.mjs +105 -73
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +52 -44
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +106 -63
- package/fesm2022/tree.mjs.map +1 -1
- package/package.json +2 -2
- package/types/_grid-chunk.d.ts +216 -35
- package/types/accordion.d.ts +134 -35
- package/types/combobox.d.ts +141 -12
- package/types/grid.d.ts +150 -32
- package/types/listbox.d.ts +60 -28
- package/types/menu.d.ts +133 -49
- package/types/private.d.ts +210 -250
- package/types/tabs.d.ts +124 -44
- package/types/toolbar.d.ts +58 -36
- package/types/tree.d.ts +121 -49
|
@@ -10,23 +10,23 @@
|
|
|
10
10
|
"entryType": "directive",
|
|
11
11
|
"members": [
|
|
12
12
|
{
|
|
13
|
-
"name": "
|
|
14
|
-
"type": "
|
|
13
|
+
"name": "element",
|
|
14
|
+
"type": "HTMLElement",
|
|
15
15
|
"memberType": "property",
|
|
16
16
|
"memberTags": [
|
|
17
17
|
"readonly"
|
|
18
18
|
],
|
|
19
|
-
"description": "
|
|
19
|
+
"description": "A reference to the host element.",
|
|
20
20
|
"jsdocTags": []
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
"name": "
|
|
23
|
+
"name": "textDirection",
|
|
24
24
|
"type": "any",
|
|
25
25
|
"memberType": "property",
|
|
26
26
|
"memberTags": [
|
|
27
27
|
"readonly"
|
|
28
28
|
],
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "Text direction.",
|
|
30
30
|
"jsdocTags": []
|
|
31
31
|
},
|
|
32
32
|
{
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"readonly",
|
|
64
64
|
"input"
|
|
65
65
|
],
|
|
66
|
-
"description": "Whether to allow disabled items to receive focus.",
|
|
66
|
+
"description": "Whether to allow disabled items to receive focus. When `true`, disabled items are\nfocusable but not interactive. When `false`, disabled items are skipped during navigation.",
|
|
67
67
|
"jsdocTags": [],
|
|
68
68
|
"inputAlias": "softDisabled",
|
|
69
69
|
"isRequiredInput": false
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"readonly",
|
|
77
77
|
"input"
|
|
78
78
|
],
|
|
79
|
-
"description": "The focus strategy used by the grid.",
|
|
79
|
+
"description": "The focus strategy used by the grid.\n- `roving`: Focus is moved to the active cell using `tabindex`.\n- `activedescendant`: Focus remains on the grid container, and `aria-activedescendant` is used to indicate the active cell.",
|
|
80
80
|
"jsdocTags": [],
|
|
81
81
|
"inputAlias": "focusMode",
|
|
82
82
|
"isRequiredInput": false
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"readonly",
|
|
90
90
|
"input"
|
|
91
91
|
],
|
|
92
|
-
"description": "The wrapping behavior for keyboard navigation along the row axis.",
|
|
92
|
+
"description": "The wrapping behavior for keyboard navigation along the row axis.\n- `continuous`: Navigation wraps from the last row to the first, and vice-versa.\n- `loop`: Navigation wraps within the current row.\n- `nowrap`: Navigation stops at the first/last item in the row.",
|
|
93
93
|
"jsdocTags": [],
|
|
94
94
|
"inputAlias": "rowWrap",
|
|
95
95
|
"isRequiredInput": false
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"readonly",
|
|
103
103
|
"input"
|
|
104
104
|
],
|
|
105
|
-
"description": "The wrapping behavior for keyboard navigation along the column axis.",
|
|
105
|
+
"description": "The wrapping behavior for keyboard navigation along the column axis.\n- `continuous`: Navigation wraps from the last column to the first, and vice-versa.\n- `loop`: Navigation wraps within the current column.\n- `nowrap`: Navigation stops at the first/last item in the column.",
|
|
106
106
|
"jsdocTags": [],
|
|
107
107
|
"inputAlias": "colWrap",
|
|
108
108
|
"isRequiredInput": false
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"readonly",
|
|
129
129
|
"input"
|
|
130
130
|
],
|
|
131
|
-
"description": "The selection strategy used by the grid.",
|
|
131
|
+
"description": "The selection strategy used by the grid.\n- `follow`: The focused cell is automatically selected.\n- `explicit`: Cells are selected explicitly by the user (e.g., via click or spacebar).",
|
|
132
132
|
"jsdocTags": [],
|
|
133
133
|
"inputAlias": "selectionMode",
|
|
134
134
|
"isRequiredInput": false
|
|
@@ -148,9 +148,22 @@
|
|
|
148
148
|
}
|
|
149
149
|
],
|
|
150
150
|
"generics": [],
|
|
151
|
-
"description": "
|
|
152
|
-
"jsdocTags": [
|
|
153
|
-
|
|
151
|
+
"description": "The container for a grid. It provides keyboard navigation and focus management for the grid's\nrows and cells. It manages the overall behavior of the grid, including focus\nwrapping, selection, and disabled states.\n\n```html\n<table ngGrid [multi]=\"true\" [enableSelection]=\"true\">",
|
|
152
|
+
"jsdocTags": [
|
|
153
|
+
{
|
|
154
|
+
"name": "for",
|
|
155
|
+
"comment": "(row of gridData; track row) {\n<tr ngGridRow>"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "for",
|
|
159
|
+
"comment": "(cell of row; track cell) {\n <td ngGridCell [disabled]=\"cell.disabled\">\n {{cell.value}}\n </td>\n}\n</tr>\n}\n</table>\n```"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "developerPreview",
|
|
163
|
+
"comment": "21.0"
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"rawComment": "/**\n * The container for a grid. It provides keyboard navigation and focus management for the grid's\n * rows and cells. It manages the overall behavior of the grid, including focus\n * wrapping, selection, and disabled states.\n *\n * ```html\n * <table ngGrid [multi]=\"true\" [enableSelection]=\"true\">\n * @for (row of gridData; track row) {\n * <tr ngGridRow>\n * @for (cell of row; track cell) {\n * <td ngGridCell [disabled]=\"cell.disabled\">\n * {{cell.value}}\n * </td>\n * }\n * </tr>\n * }\n * </table>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
154
167
|
"implements": [],
|
|
155
168
|
"isStandalone": true,
|
|
156
169
|
"selector": "[ngGrid]",
|
|
@@ -159,8 +172,8 @@
|
|
|
159
172
|
],
|
|
160
173
|
"source": {
|
|
161
174
|
"filePath": "src/aria/grid/grid.ts",
|
|
162
|
-
"startLine":
|
|
163
|
-
"endLine":
|
|
175
|
+
"startLine": 47,
|
|
176
|
+
"endLine": 164
|
|
164
177
|
}
|
|
165
178
|
},
|
|
166
179
|
{
|
|
@@ -168,39 +181,16 @@
|
|
|
168
181
|
"isAbstract": false,
|
|
169
182
|
"entryType": "directive",
|
|
170
183
|
"members": [
|
|
171
|
-
{
|
|
172
|
-
"name": "grid",
|
|
173
|
-
"type": "any",
|
|
174
|
-
"memberType": "property",
|
|
175
|
-
"memberTags": [
|
|
176
|
-
"readonly"
|
|
177
|
-
],
|
|
178
|
-
"description": "The parent grid UI pattern.",
|
|
179
|
-
"jsdocTags": []
|
|
180
|
-
},
|
|
181
184
|
{
|
|
182
185
|
"name": "element",
|
|
183
|
-
"type": "
|
|
186
|
+
"type": "HTMLElement",
|
|
184
187
|
"memberType": "property",
|
|
185
188
|
"memberTags": [
|
|
186
189
|
"readonly"
|
|
187
190
|
],
|
|
188
|
-
"description": "
|
|
191
|
+
"description": "A reference to the host element.",
|
|
189
192
|
"jsdocTags": []
|
|
190
193
|
},
|
|
191
|
-
{
|
|
192
|
-
"name": "role",
|
|
193
|
-
"type": "any",
|
|
194
|
-
"memberType": "property",
|
|
195
|
-
"memberTags": [
|
|
196
|
-
"readonly",
|
|
197
|
-
"input"
|
|
198
|
-
],
|
|
199
|
-
"description": "The ARIA role for the row.",
|
|
200
|
-
"jsdocTags": [],
|
|
201
|
-
"inputAlias": "role",
|
|
202
|
-
"isRequiredInput": false
|
|
203
|
-
},
|
|
204
194
|
{
|
|
205
195
|
"name": "rowIndex",
|
|
206
196
|
"type": "any",
|
|
@@ -216,9 +206,14 @@
|
|
|
216
206
|
}
|
|
217
207
|
],
|
|
218
208
|
"generics": [],
|
|
219
|
-
"description": "
|
|
220
|
-
"jsdocTags": [
|
|
221
|
-
|
|
209
|
+
"description": "Represents a row within a grid. It is a container for `ngGridCell` directives.\n\n```html\n<tr ngGridRow>\n <!-- ... cells ... -->\n</tr>\n```",
|
|
210
|
+
"jsdocTags": [
|
|
211
|
+
{
|
|
212
|
+
"name": "developerPreview",
|
|
213
|
+
"comment": "21.0"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"rawComment": "/**\n * Represents a row within a grid. It is a container for `ngGridCell` directives.\n *\n * ```html\n * <tr ngGridRow>\n * <!-- ... cells ... -->\n * </tr>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
222
217
|
"implements": [],
|
|
223
218
|
"isStandalone": true,
|
|
224
219
|
"selector": "[ngGridRow]",
|
|
@@ -227,8 +222,8 @@
|
|
|
227
222
|
],
|
|
228
223
|
"source": {
|
|
229
224
|
"filePath": "src/aria/grid/grid.ts",
|
|
230
|
-
"startLine":
|
|
231
|
-
"endLine":
|
|
225
|
+
"startLine": 177,
|
|
226
|
+
"endLine": 216
|
|
232
227
|
}
|
|
233
228
|
},
|
|
234
229
|
{
|
|
@@ -238,14 +233,47 @@
|
|
|
238
233
|
"members": [
|
|
239
234
|
{
|
|
240
235
|
"name": "element",
|
|
236
|
+
"type": "HTMLElement",
|
|
237
|
+
"memberType": "property",
|
|
238
|
+
"memberTags": [
|
|
239
|
+
"readonly"
|
|
240
|
+
],
|
|
241
|
+
"description": "A reference to the host element.",
|
|
242
|
+
"jsdocTags": []
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "active",
|
|
246
|
+
"type": "any",
|
|
247
|
+
"memberType": "property",
|
|
248
|
+
"memberTags": [
|
|
249
|
+
"readonly"
|
|
250
|
+
],
|
|
251
|
+
"description": "Whether the cell is currently active (focused).",
|
|
252
|
+
"jsdocTags": []
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "textDirection",
|
|
241
256
|
"type": "any",
|
|
242
257
|
"memberType": "property",
|
|
243
258
|
"memberTags": [
|
|
244
259
|
"readonly"
|
|
245
260
|
],
|
|
246
|
-
"description": "
|
|
261
|
+
"description": "Text direction.",
|
|
247
262
|
"jsdocTags": []
|
|
248
263
|
},
|
|
264
|
+
{
|
|
265
|
+
"name": "id",
|
|
266
|
+
"type": "any",
|
|
267
|
+
"memberType": "property",
|
|
268
|
+
"memberTags": [
|
|
269
|
+
"readonly",
|
|
270
|
+
"input"
|
|
271
|
+
],
|
|
272
|
+
"description": "A unique identifier for the cell.",
|
|
273
|
+
"jsdocTags": [],
|
|
274
|
+
"inputAlias": "id",
|
|
275
|
+
"isRequiredInput": false
|
|
276
|
+
},
|
|
249
277
|
{
|
|
250
278
|
"name": "role",
|
|
251
279
|
"type": "any",
|
|
@@ -351,12 +379,56 @@
|
|
|
351
379
|
"jsdocTags": [],
|
|
352
380
|
"inputAlias": "selectable",
|
|
353
381
|
"isRequiredInput": false
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "orientation",
|
|
385
|
+
"type": "any",
|
|
386
|
+
"memberType": "property",
|
|
387
|
+
"memberTags": [
|
|
388
|
+
"readonly",
|
|
389
|
+
"input"
|
|
390
|
+
],
|
|
391
|
+
"description": "Orientation of the widgets in the cell.",
|
|
392
|
+
"jsdocTags": [],
|
|
393
|
+
"inputAlias": "orientation",
|
|
394
|
+
"isRequiredInput": false
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "wrap",
|
|
398
|
+
"type": "any",
|
|
399
|
+
"memberType": "property",
|
|
400
|
+
"memberTags": [
|
|
401
|
+
"readonly",
|
|
402
|
+
"input"
|
|
403
|
+
],
|
|
404
|
+
"description": "Whether widgets navigation wraps.",
|
|
405
|
+
"jsdocTags": [],
|
|
406
|
+
"inputAlias": "wrap",
|
|
407
|
+
"isRequiredInput": false
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "tabindex",
|
|
411
|
+
"type": "any",
|
|
412
|
+
"memberType": "property",
|
|
413
|
+
"memberTags": [
|
|
414
|
+
"readonly",
|
|
415
|
+
"input"
|
|
416
|
+
],
|
|
417
|
+
"description": "The tabindex override.",
|
|
418
|
+
"jsdocTags": [],
|
|
419
|
+
"inputAlias": "tabindex",
|
|
420
|
+
"isRequiredInput": false
|
|
354
421
|
}
|
|
355
422
|
],
|
|
356
423
|
"generics": [],
|
|
357
|
-
"description": "
|
|
358
|
-
"jsdocTags": [
|
|
359
|
-
|
|
424
|
+
"description": "Represents a cell within a grid row. It is the primary focusable element\nwithin the grid. It can be disabled and can have its selection state managed\nthrough the `selected` input.\n\n```html\n<td ngGridCell [disabled]=\"isDisabled\" [(selected)]=\"isSelected\">\n Cell Content\n</td>\n```",
|
|
425
|
+
"jsdocTags": [
|
|
426
|
+
{
|
|
427
|
+
"name": "developerPreview",
|
|
428
|
+
"comment": "21.0"
|
|
429
|
+
}
|
|
430
|
+
],
|
|
431
|
+
"rawComment": "/**\n * Represents a cell within a grid row. It is the primary focusable element\n * within the grid. It can be disabled and can have its selection state managed\n * through the `selected` input.\n *\n * ```html\n * <td ngGridCell [disabled]=\"isDisabled\" [(selected)]=\"isSelected\">\n * Cell Content\n * </td>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
360
432
|
"implements": [],
|
|
361
433
|
"isStandalone": true,
|
|
362
434
|
"selector": "[ngGridCell]",
|
|
@@ -365,8 +437,8 @@
|
|
|
365
437
|
],
|
|
366
438
|
"source": {
|
|
367
439
|
"filePath": "src/aria/grid/grid.ts",
|
|
368
|
-
"startLine":
|
|
369
|
-
"endLine":
|
|
440
|
+
"startLine": 231,
|
|
441
|
+
"endLine": 346
|
|
370
442
|
}
|
|
371
443
|
},
|
|
372
444
|
{
|
|
@@ -376,41 +448,166 @@
|
|
|
376
448
|
"members": [
|
|
377
449
|
{
|
|
378
450
|
"name": "element",
|
|
451
|
+
"type": "HTMLElement",
|
|
452
|
+
"memberType": "property",
|
|
453
|
+
"memberTags": [
|
|
454
|
+
"readonly"
|
|
455
|
+
],
|
|
456
|
+
"description": "A reference to the host element.",
|
|
457
|
+
"jsdocTags": []
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "active",
|
|
379
461
|
"type": "any",
|
|
380
462
|
"memberType": "property",
|
|
381
463
|
"memberTags": [
|
|
382
464
|
"readonly"
|
|
383
465
|
],
|
|
384
|
-
"description": "
|
|
466
|
+
"description": "Whether the widget is currently active (focused).",
|
|
385
467
|
"jsdocTags": []
|
|
386
468
|
},
|
|
387
469
|
{
|
|
388
|
-
"name": "
|
|
470
|
+
"name": "id",
|
|
471
|
+
"type": "any",
|
|
472
|
+
"memberType": "property",
|
|
473
|
+
"memberTags": [
|
|
474
|
+
"readonly",
|
|
475
|
+
"input"
|
|
476
|
+
],
|
|
477
|
+
"description": "A unique identifier for the widget.",
|
|
478
|
+
"jsdocTags": [],
|
|
479
|
+
"inputAlias": "id",
|
|
480
|
+
"isRequiredInput": false
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"name": "widgetType",
|
|
484
|
+
"type": "any",
|
|
485
|
+
"memberType": "property",
|
|
486
|
+
"memberTags": [
|
|
487
|
+
"readonly",
|
|
488
|
+
"input"
|
|
489
|
+
],
|
|
490
|
+
"description": "The type of widget, which determines how it is activated.",
|
|
491
|
+
"jsdocTags": [],
|
|
492
|
+
"inputAlias": "widgetType",
|
|
493
|
+
"isRequiredInput": false
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "disabled",
|
|
497
|
+
"type": "any",
|
|
498
|
+
"memberType": "property",
|
|
499
|
+
"memberTags": [
|
|
500
|
+
"readonly",
|
|
501
|
+
"input"
|
|
502
|
+
],
|
|
503
|
+
"description": "Whether the widget is disabled.",
|
|
504
|
+
"jsdocTags": [],
|
|
505
|
+
"inputAlias": "disabled",
|
|
506
|
+
"isRequiredInput": false
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "focusTarget",
|
|
510
|
+
"type": "any",
|
|
511
|
+
"memberType": "property",
|
|
512
|
+
"memberTags": [
|
|
513
|
+
"readonly",
|
|
514
|
+
"input"
|
|
515
|
+
],
|
|
516
|
+
"description": "The target that will receive focus instead of the widget.",
|
|
517
|
+
"jsdocTags": [],
|
|
518
|
+
"inputAlias": "focusTarget",
|
|
519
|
+
"isRequiredInput": false
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"name": "onActivate",
|
|
389
523
|
"type": "any",
|
|
390
524
|
"memberType": "property",
|
|
391
525
|
"memberTags": [
|
|
392
526
|
"readonly",
|
|
393
|
-
"input",
|
|
394
527
|
"output"
|
|
395
528
|
],
|
|
396
|
-
"description": "
|
|
529
|
+
"description": "Emits when the widget is activated.",
|
|
397
530
|
"jsdocTags": [],
|
|
398
|
-
"
|
|
399
|
-
|
|
400
|
-
|
|
531
|
+
"outputAlias": "onActivate"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "onDeactivate",
|
|
535
|
+
"type": "any",
|
|
536
|
+
"memberType": "property",
|
|
537
|
+
"memberTags": [
|
|
538
|
+
"readonly",
|
|
539
|
+
"output"
|
|
540
|
+
],
|
|
541
|
+
"description": "Emits when the widget is deactivated.",
|
|
542
|
+
"jsdocTags": [],
|
|
543
|
+
"outputAlias": "onDeactivate"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "tabindex",
|
|
547
|
+
"type": "any",
|
|
548
|
+
"memberType": "property",
|
|
549
|
+
"memberTags": [
|
|
550
|
+
"readonly",
|
|
551
|
+
"input"
|
|
552
|
+
],
|
|
553
|
+
"description": "The tabindex override.",
|
|
554
|
+
"jsdocTags": [],
|
|
555
|
+
"inputAlias": "tabindex",
|
|
556
|
+
"isRequiredInput": false
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"name": "isActivated",
|
|
560
|
+
"type": "Signal<boolean>",
|
|
561
|
+
"memberType": "getter",
|
|
562
|
+
"memberTags": [],
|
|
563
|
+
"description": "Whether the widget is activated.",
|
|
564
|
+
"jsdocTags": []
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"name": "activate",
|
|
568
|
+
"signatures": [
|
|
569
|
+
{
|
|
570
|
+
"name": "activate",
|
|
571
|
+
"entryType": "function",
|
|
572
|
+
"description": "Activates the widget.",
|
|
573
|
+
"generics": [],
|
|
574
|
+
"isNewType": false,
|
|
575
|
+
"jsdocTags": [],
|
|
576
|
+
"params": [],
|
|
577
|
+
"rawComment": "/** Activates the widget. */",
|
|
578
|
+
"returnType": "void"
|
|
579
|
+
}
|
|
580
|
+
],
|
|
581
|
+
"implementation": {
|
|
582
|
+
"params": [],
|
|
583
|
+
"isNewType": false,
|
|
584
|
+
"returnType": "void",
|
|
585
|
+
"generics": [],
|
|
586
|
+
"name": "activate",
|
|
587
|
+
"description": "Activates the widget.",
|
|
588
|
+
"entryType": "function",
|
|
589
|
+
"jsdocTags": [],
|
|
590
|
+
"rawComment": "/** Activates the widget. */"
|
|
591
|
+
},
|
|
592
|
+
"entryType": "function",
|
|
593
|
+
"description": "Activates the widget.",
|
|
594
|
+
"jsdocTags": [],
|
|
595
|
+
"rawComment": "/** Activates the widget. */",
|
|
596
|
+
"memberType": "method",
|
|
597
|
+
"memberTags": []
|
|
401
598
|
},
|
|
402
599
|
{
|
|
403
|
-
"name": "
|
|
600
|
+
"name": "deactivate",
|
|
404
601
|
"signatures": [
|
|
405
602
|
{
|
|
406
|
-
"name": "
|
|
603
|
+
"name": "deactivate",
|
|
407
604
|
"entryType": "function",
|
|
408
|
-
"description": "
|
|
605
|
+
"description": "Deactivates the widget.",
|
|
409
606
|
"generics": [],
|
|
410
607
|
"isNewType": false,
|
|
411
608
|
"jsdocTags": [],
|
|
412
609
|
"params": [],
|
|
413
|
-
"rawComment": "/**
|
|
610
|
+
"rawComment": "/** Deactivates the widget. */",
|
|
414
611
|
"returnType": "void"
|
|
415
612
|
}
|
|
416
613
|
],
|
|
@@ -419,24 +616,29 @@
|
|
|
419
616
|
"isNewType": false,
|
|
420
617
|
"returnType": "void",
|
|
421
618
|
"generics": [],
|
|
422
|
-
"name": "
|
|
423
|
-
"description": "
|
|
619
|
+
"name": "deactivate",
|
|
620
|
+
"description": "Deactivates the widget.",
|
|
424
621
|
"entryType": "function",
|
|
425
622
|
"jsdocTags": [],
|
|
426
|
-
"rawComment": "/**
|
|
623
|
+
"rawComment": "/** Deactivates the widget. */"
|
|
427
624
|
},
|
|
428
625
|
"entryType": "function",
|
|
429
|
-
"description": "
|
|
626
|
+
"description": "Deactivates the widget.",
|
|
430
627
|
"jsdocTags": [],
|
|
431
|
-
"rawComment": "/**
|
|
628
|
+
"rawComment": "/** Deactivates the widget. */",
|
|
432
629
|
"memberType": "method",
|
|
433
630
|
"memberTags": []
|
|
434
631
|
}
|
|
435
632
|
],
|
|
436
633
|
"generics": [],
|
|
437
|
-
"description": "
|
|
438
|
-
"jsdocTags": [
|
|
439
|
-
|
|
634
|
+
"description": "Represents an interactive element inside a `GridCell`. It allows for pausing grid navigation to\ninteract with the widget.\n\nWhen the user interacts with the widget (e.g., by typing in an input or opening a menu), grid\nnavigation is temporarily suspended to allow the widget to handle keyboard\nevents.\n\n```html\n<td ngGridCell>\n <button ngGridCellWidget>Click Me</button>\n</td>\n```",
|
|
635
|
+
"jsdocTags": [
|
|
636
|
+
{
|
|
637
|
+
"name": "developerPreview",
|
|
638
|
+
"comment": "21.0"
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"rawComment": "/**\n * Represents an interactive element inside a `GridCell`. It allows for pausing grid navigation to\n * interact with the widget.\n *\n * When the user interacts with the widget (e.g., by typing in an input or opening a menu), grid\n * navigation is temporarily suspended to allow the widget to handle keyboard\n * events.\n *\n * ```html\n * <td ngGridCell>\n * <button ngGridCellWidget>Click Me</button>\n * </td>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
440
642
|
"implements": [],
|
|
441
643
|
"isStandalone": true,
|
|
442
644
|
"selector": "[ngGridCellWidget]",
|
|
@@ -445,8 +647,8 @@
|
|
|
445
647
|
],
|
|
446
648
|
"source": {
|
|
447
649
|
"filePath": "src/aria/grid/grid.ts",
|
|
448
|
-
"startLine":
|
|
449
|
-
"endLine":
|
|
650
|
+
"startLine": 364,
|
|
651
|
+
"endLine": 459
|
|
450
652
|
}
|
|
451
653
|
}
|
|
452
654
|
],
|
|
@@ -467,10 +669,6 @@
|
|
|
467
669
|
"computed",
|
|
468
670
|
"@angular/core"
|
|
469
671
|
],
|
|
470
|
-
[
|
|
471
|
-
"contentChild",
|
|
472
|
-
"@angular/core"
|
|
473
|
-
],
|
|
474
672
|
[
|
|
475
673
|
"contentChildren",
|
|
476
674
|
"@angular/core"
|
|
@@ -491,6 +689,10 @@
|
|
|
491
689
|
"input",
|
|
492
690
|
"@angular/core"
|
|
493
691
|
],
|
|
692
|
+
[
|
|
693
|
+
"output",
|
|
694
|
+
"@angular/core"
|
|
695
|
+
],
|
|
494
696
|
[
|
|
495
697
|
"model",
|
|
496
698
|
"@angular/core"
|
|
@@ -524,11 +726,11 @@
|
|
|
524
726
|
"@angular/aria/grid"
|
|
525
727
|
],
|
|
526
728
|
[
|
|
527
|
-
"Grid.
|
|
729
|
+
"Grid.element",
|
|
528
730
|
"@angular/aria/grid"
|
|
529
731
|
],
|
|
530
732
|
[
|
|
531
|
-
"Grid.
|
|
733
|
+
"Grid.textDirection",
|
|
532
734
|
"@angular/aria/grid"
|
|
533
735
|
],
|
|
534
736
|
[
|
|
@@ -572,27 +774,31 @@
|
|
|
572
774
|
"@angular/aria/grid"
|
|
573
775
|
],
|
|
574
776
|
[
|
|
575
|
-
"GridRow.
|
|
777
|
+
"GridRow.element",
|
|
576
778
|
"@angular/aria/grid"
|
|
577
779
|
],
|
|
578
780
|
[
|
|
579
|
-
"GridRow.
|
|
781
|
+
"GridRow.rowIndex",
|
|
580
782
|
"@angular/aria/grid"
|
|
581
783
|
],
|
|
582
784
|
[
|
|
583
|
-
"
|
|
785
|
+
"GridCell",
|
|
584
786
|
"@angular/aria/grid"
|
|
585
787
|
],
|
|
586
788
|
[
|
|
587
|
-
"
|
|
789
|
+
"GridCell.element",
|
|
588
790
|
"@angular/aria/grid"
|
|
589
791
|
],
|
|
590
792
|
[
|
|
591
|
-
"GridCell",
|
|
793
|
+
"GridCell.active",
|
|
592
794
|
"@angular/aria/grid"
|
|
593
795
|
],
|
|
594
796
|
[
|
|
595
|
-
"GridCell.
|
|
797
|
+
"GridCell.textDirection",
|
|
798
|
+
"@angular/aria/grid"
|
|
799
|
+
],
|
|
800
|
+
[
|
|
801
|
+
"GridCell.id",
|
|
596
802
|
"@angular/aria/grid"
|
|
597
803
|
],
|
|
598
804
|
[
|
|
@@ -627,6 +833,18 @@
|
|
|
627
833
|
"GridCell.selectable",
|
|
628
834
|
"@angular/aria/grid"
|
|
629
835
|
],
|
|
836
|
+
[
|
|
837
|
+
"GridCell.orientation",
|
|
838
|
+
"@angular/aria/grid"
|
|
839
|
+
],
|
|
840
|
+
[
|
|
841
|
+
"GridCell.wrap",
|
|
842
|
+
"@angular/aria/grid"
|
|
843
|
+
],
|
|
844
|
+
[
|
|
845
|
+
"GridCell.tabindex",
|
|
846
|
+
"@angular/aria/grid"
|
|
847
|
+
],
|
|
630
848
|
[
|
|
631
849
|
"GridCellWidget",
|
|
632
850
|
"@angular/aria/grid"
|
|
@@ -635,12 +853,48 @@
|
|
|
635
853
|
"GridCellWidget.element",
|
|
636
854
|
"@angular/aria/grid"
|
|
637
855
|
],
|
|
856
|
+
[
|
|
857
|
+
"GridCellWidget.active",
|
|
858
|
+
"@angular/aria/grid"
|
|
859
|
+
],
|
|
860
|
+
[
|
|
861
|
+
"GridCellWidget.id",
|
|
862
|
+
"@angular/aria/grid"
|
|
863
|
+
],
|
|
864
|
+
[
|
|
865
|
+
"GridCellWidget.widgetType",
|
|
866
|
+
"@angular/aria/grid"
|
|
867
|
+
],
|
|
868
|
+
[
|
|
869
|
+
"GridCellWidget.disabled",
|
|
870
|
+
"@angular/aria/grid"
|
|
871
|
+
],
|
|
872
|
+
[
|
|
873
|
+
"GridCellWidget.focusTarget",
|
|
874
|
+
"@angular/aria/grid"
|
|
875
|
+
],
|
|
876
|
+
[
|
|
877
|
+
"GridCellWidget.onActivate",
|
|
878
|
+
"@angular/aria/grid"
|
|
879
|
+
],
|
|
880
|
+
[
|
|
881
|
+
"GridCellWidget.onDeactivate",
|
|
882
|
+
"@angular/aria/grid"
|
|
883
|
+
],
|
|
884
|
+
[
|
|
885
|
+
"GridCellWidget.tabindex",
|
|
886
|
+
"@angular/aria/grid"
|
|
887
|
+
],
|
|
888
|
+
[
|
|
889
|
+
"GridCellWidget.isActivated",
|
|
890
|
+
"@angular/aria/grid"
|
|
891
|
+
],
|
|
638
892
|
[
|
|
639
893
|
"GridCellWidget.activate",
|
|
640
894
|
"@angular/aria/grid"
|
|
641
895
|
],
|
|
642
896
|
[
|
|
643
|
-
"GridCellWidget.
|
|
897
|
+
"GridCellWidget.deactivate",
|
|
644
898
|
"@angular/aria/grid"
|
|
645
899
|
]
|
|
646
900
|
]
|