@angular/aria 21.0.0-rc.1 → 21.0.0-rc.2
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 +439 -55
- package/_adev_assets/aria-combobox.json +343 -35
- package/_adev_assets/aria-grid.json +345 -77
- package/_adev_assets/aria-listbox.json +113 -33
- package/_adev_assets/aria-menu.json +366 -141
- package/_adev_assets/aria-tabs.json +261 -77
- package/_adev_assets/aria-toolbar.json +72 -33
- package/_adev_assets/aria-tree.json +169 -26
- package/fesm2022/_widget-chunk.mjs +388 -57
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +121 -68
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/aria.mjs +1 -1
- package/fesm2022/aria.mjs.map +1 -1
- package/fesm2022/combobox.mjs +132 -21
- package/fesm2022/combobox.mjs.map +1 -1
- package/fesm2022/grid.mjs +198 -61
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +42 -31
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +173 -67
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/private.mjs +415 -439
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/tabs.mjs +86 -55
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +13 -25
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +86 -44
- 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 +133 -34
- package/types/combobox.d.ts +145 -12
- package/types/grid.d.ts +149 -31
- package/types/listbox.d.ts +58 -26
- package/types/menu.d.ts +130 -46
- package/types/private.d.ts +210 -250
- package/types/tabs.d.ts +119 -39
- package/types/toolbar.d.ts +49 -29
- package/types/tree.d.ts +113 -41
|
@@ -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
|
{
|
|
@@ -169,38 +182,25 @@
|
|
|
169
182
|
"entryType": "directive",
|
|
170
183
|
"members": [
|
|
171
184
|
{
|
|
172
|
-
"name": "
|
|
173
|
-
"type": "
|
|
185
|
+
"name": "element",
|
|
186
|
+
"type": "HTMLElement",
|
|
174
187
|
"memberType": "property",
|
|
175
188
|
"memberTags": [
|
|
176
189
|
"readonly"
|
|
177
190
|
],
|
|
178
|
-
"description": "
|
|
191
|
+
"description": "A reference to the host element.",
|
|
179
192
|
"jsdocTags": []
|
|
180
193
|
},
|
|
181
194
|
{
|
|
182
|
-
"name": "
|
|
195
|
+
"name": "grid",
|
|
183
196
|
"type": "any",
|
|
184
197
|
"memberType": "property",
|
|
185
198
|
"memberTags": [
|
|
186
199
|
"readonly"
|
|
187
200
|
],
|
|
188
|
-
"description": "The
|
|
201
|
+
"description": "The parent grid UI pattern.",
|
|
189
202
|
"jsdocTags": []
|
|
190
203
|
},
|
|
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
204
|
{
|
|
205
205
|
"name": "rowIndex",
|
|
206
206
|
"type": "any",
|
|
@@ -216,9 +216,14 @@
|
|
|
216
216
|
}
|
|
217
217
|
],
|
|
218
218
|
"generics": [],
|
|
219
|
-
"description": "
|
|
220
|
-
"jsdocTags": [
|
|
221
|
-
|
|
219
|
+
"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```",
|
|
220
|
+
"jsdocTags": [
|
|
221
|
+
{
|
|
222
|
+
"name": "developerPreview",
|
|
223
|
+
"comment": "21.0"
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"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
227
|
"implements": [],
|
|
223
228
|
"isStandalone": true,
|
|
224
229
|
"selector": "[ngGridRow]",
|
|
@@ -227,8 +232,8 @@
|
|
|
227
232
|
],
|
|
228
233
|
"source": {
|
|
229
234
|
"filePath": "src/aria/grid/grid.ts",
|
|
230
|
-
"startLine":
|
|
231
|
-
"endLine":
|
|
235
|
+
"startLine": 177,
|
|
236
|
+
"endLine": 215
|
|
232
237
|
}
|
|
233
238
|
},
|
|
234
239
|
{
|
|
@@ -238,14 +243,47 @@
|
|
|
238
243
|
"members": [
|
|
239
244
|
{
|
|
240
245
|
"name": "element",
|
|
246
|
+
"type": "HTMLElement",
|
|
247
|
+
"memberType": "property",
|
|
248
|
+
"memberTags": [
|
|
249
|
+
"readonly"
|
|
250
|
+
],
|
|
251
|
+
"description": "A reference to the host element.",
|
|
252
|
+
"jsdocTags": []
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "active",
|
|
256
|
+
"type": "any",
|
|
257
|
+
"memberType": "property",
|
|
258
|
+
"memberTags": [
|
|
259
|
+
"readonly"
|
|
260
|
+
],
|
|
261
|
+
"description": "Whether the cell is currently active (focused).",
|
|
262
|
+
"jsdocTags": []
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "textDirection",
|
|
241
266
|
"type": "any",
|
|
242
267
|
"memberType": "property",
|
|
243
268
|
"memberTags": [
|
|
244
269
|
"readonly"
|
|
245
270
|
],
|
|
246
|
-
"description": "
|
|
271
|
+
"description": "Text direction.",
|
|
247
272
|
"jsdocTags": []
|
|
248
273
|
},
|
|
274
|
+
{
|
|
275
|
+
"name": "id",
|
|
276
|
+
"type": "any",
|
|
277
|
+
"memberType": "property",
|
|
278
|
+
"memberTags": [
|
|
279
|
+
"readonly",
|
|
280
|
+
"input"
|
|
281
|
+
],
|
|
282
|
+
"description": "A unique identifier for the cell.",
|
|
283
|
+
"jsdocTags": [],
|
|
284
|
+
"inputAlias": "id",
|
|
285
|
+
"isRequiredInput": false
|
|
286
|
+
},
|
|
249
287
|
{
|
|
250
288
|
"name": "role",
|
|
251
289
|
"type": "any",
|
|
@@ -351,12 +389,56 @@
|
|
|
351
389
|
"jsdocTags": [],
|
|
352
390
|
"inputAlias": "selectable",
|
|
353
391
|
"isRequiredInput": false
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "orientation",
|
|
395
|
+
"type": "any",
|
|
396
|
+
"memberType": "property",
|
|
397
|
+
"memberTags": [
|
|
398
|
+
"readonly",
|
|
399
|
+
"input"
|
|
400
|
+
],
|
|
401
|
+
"description": "Orientation of the widgets in the cell.",
|
|
402
|
+
"jsdocTags": [],
|
|
403
|
+
"inputAlias": "orientation",
|
|
404
|
+
"isRequiredInput": false
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "wrap",
|
|
408
|
+
"type": "any",
|
|
409
|
+
"memberType": "property",
|
|
410
|
+
"memberTags": [
|
|
411
|
+
"readonly",
|
|
412
|
+
"input"
|
|
413
|
+
],
|
|
414
|
+
"description": "Whether widgets navigation wraps.",
|
|
415
|
+
"jsdocTags": [],
|
|
416
|
+
"inputAlias": "wrap",
|
|
417
|
+
"isRequiredInput": false
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "tabindex",
|
|
421
|
+
"type": "any",
|
|
422
|
+
"memberType": "property",
|
|
423
|
+
"memberTags": [
|
|
424
|
+
"readonly",
|
|
425
|
+
"input"
|
|
426
|
+
],
|
|
427
|
+
"description": "The tabindex override.",
|
|
428
|
+
"jsdocTags": [],
|
|
429
|
+
"inputAlias": "tabindex",
|
|
430
|
+
"isRequiredInput": false
|
|
354
431
|
}
|
|
355
432
|
],
|
|
356
433
|
"generics": [],
|
|
357
|
-
"description": "
|
|
358
|
-
"jsdocTags": [
|
|
359
|
-
|
|
434
|
+
"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```",
|
|
435
|
+
"jsdocTags": [
|
|
436
|
+
{
|
|
437
|
+
"name": "developerPreview",
|
|
438
|
+
"comment": "21.0"
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"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
442
|
"implements": [],
|
|
361
443
|
"isStandalone": true,
|
|
362
444
|
"selector": "[ngGridCell]",
|
|
@@ -365,8 +447,8 @@
|
|
|
365
447
|
],
|
|
366
448
|
"source": {
|
|
367
449
|
"filePath": "src/aria/grid/grid.ts",
|
|
368
|
-
"startLine":
|
|
369
|
-
"endLine":
|
|
450
|
+
"startLine": 230,
|
|
451
|
+
"endLine": 345
|
|
370
452
|
}
|
|
371
453
|
},
|
|
372
454
|
{
|
|
@@ -376,41 +458,133 @@
|
|
|
376
458
|
"members": [
|
|
377
459
|
{
|
|
378
460
|
"name": "element",
|
|
461
|
+
"type": "HTMLElement",
|
|
462
|
+
"memberType": "property",
|
|
463
|
+
"memberTags": [
|
|
464
|
+
"readonly"
|
|
465
|
+
],
|
|
466
|
+
"description": "A reference to the host element.",
|
|
467
|
+
"jsdocTags": []
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"name": "active",
|
|
379
471
|
"type": "any",
|
|
380
472
|
"memberType": "property",
|
|
381
473
|
"memberTags": [
|
|
382
474
|
"readonly"
|
|
383
475
|
],
|
|
384
|
-
"description": "
|
|
476
|
+
"description": "Whether the widget is currently active (focused).",
|
|
385
477
|
"jsdocTags": []
|
|
386
478
|
},
|
|
387
479
|
{
|
|
388
|
-
"name": "
|
|
480
|
+
"name": "id",
|
|
481
|
+
"type": "any",
|
|
482
|
+
"memberType": "property",
|
|
483
|
+
"memberTags": [
|
|
484
|
+
"readonly",
|
|
485
|
+
"input"
|
|
486
|
+
],
|
|
487
|
+
"description": "A unique identifier for the widget.",
|
|
488
|
+
"jsdocTags": [],
|
|
489
|
+
"inputAlias": "id",
|
|
490
|
+
"isRequiredInput": false
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "widgetType",
|
|
494
|
+
"type": "any",
|
|
495
|
+
"memberType": "property",
|
|
496
|
+
"memberTags": [
|
|
497
|
+
"readonly",
|
|
498
|
+
"input"
|
|
499
|
+
],
|
|
500
|
+
"description": "The type of widget, which determines how it is activated.",
|
|
501
|
+
"jsdocTags": [],
|
|
502
|
+
"inputAlias": "widgetType",
|
|
503
|
+
"isRequiredInput": false
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "disabled",
|
|
507
|
+
"type": "any",
|
|
508
|
+
"memberType": "property",
|
|
509
|
+
"memberTags": [
|
|
510
|
+
"readonly",
|
|
511
|
+
"input"
|
|
512
|
+
],
|
|
513
|
+
"description": "Whether the widget is disabled.",
|
|
514
|
+
"jsdocTags": [],
|
|
515
|
+
"inputAlias": "disabled",
|
|
516
|
+
"isRequiredInput": false
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "focusTarget",
|
|
520
|
+
"type": "any",
|
|
521
|
+
"memberType": "property",
|
|
522
|
+
"memberTags": [
|
|
523
|
+
"readonly",
|
|
524
|
+
"input"
|
|
525
|
+
],
|
|
526
|
+
"description": "The target that will receive focus instead of the widget.",
|
|
527
|
+
"jsdocTags": [],
|
|
528
|
+
"inputAlias": "focusTarget",
|
|
529
|
+
"isRequiredInput": false
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"name": "onActivate",
|
|
389
533
|
"type": "any",
|
|
390
534
|
"memberType": "property",
|
|
391
535
|
"memberTags": [
|
|
392
536
|
"readonly",
|
|
393
|
-
"input",
|
|
394
537
|
"output"
|
|
395
538
|
],
|
|
396
|
-
"description": "
|
|
539
|
+
"description": "Emits when the widget is activated.",
|
|
397
540
|
"jsdocTags": [],
|
|
398
|
-
"
|
|
399
|
-
|
|
400
|
-
|
|
541
|
+
"outputAlias": "onActivate"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"name": "onDeactivate",
|
|
545
|
+
"type": "any",
|
|
546
|
+
"memberType": "property",
|
|
547
|
+
"memberTags": [
|
|
548
|
+
"readonly",
|
|
549
|
+
"output"
|
|
550
|
+
],
|
|
551
|
+
"description": "Emits when the widget is deactivated.",
|
|
552
|
+
"jsdocTags": [],
|
|
553
|
+
"outputAlias": "onDeactivate"
|
|
401
554
|
},
|
|
402
555
|
{
|
|
403
|
-
"name": "
|
|
556
|
+
"name": "tabindex",
|
|
557
|
+
"type": "any",
|
|
558
|
+
"memberType": "property",
|
|
559
|
+
"memberTags": [
|
|
560
|
+
"readonly",
|
|
561
|
+
"input"
|
|
562
|
+
],
|
|
563
|
+
"description": "The tabindex override.",
|
|
564
|
+
"jsdocTags": [],
|
|
565
|
+
"inputAlias": "tabindex",
|
|
566
|
+
"isRequiredInput": false
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"name": "isActivated",
|
|
570
|
+
"type": "Signal<boolean>",
|
|
571
|
+
"memberType": "getter",
|
|
572
|
+
"memberTags": [],
|
|
573
|
+
"description": "Whether the widget is activated.",
|
|
574
|
+
"jsdocTags": []
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"name": "activate",
|
|
404
578
|
"signatures": [
|
|
405
579
|
{
|
|
406
|
-
"name": "
|
|
580
|
+
"name": "activate",
|
|
407
581
|
"entryType": "function",
|
|
408
|
-
"description": "
|
|
582
|
+
"description": "Activates the widget.",
|
|
409
583
|
"generics": [],
|
|
410
584
|
"isNewType": false,
|
|
411
585
|
"jsdocTags": [],
|
|
412
586
|
"params": [],
|
|
413
|
-
"rawComment": "/**
|
|
587
|
+
"rawComment": "/** Activates the widget. */",
|
|
414
588
|
"returnType": "void"
|
|
415
589
|
}
|
|
416
590
|
],
|
|
@@ -419,24 +593,62 @@
|
|
|
419
593
|
"isNewType": false,
|
|
420
594
|
"returnType": "void",
|
|
421
595
|
"generics": [],
|
|
422
|
-
"name": "
|
|
423
|
-
"description": "
|
|
596
|
+
"name": "activate",
|
|
597
|
+
"description": "Activates the widget.",
|
|
424
598
|
"entryType": "function",
|
|
425
599
|
"jsdocTags": [],
|
|
426
|
-
"rawComment": "/**
|
|
600
|
+
"rawComment": "/** Activates the widget. */"
|
|
427
601
|
},
|
|
428
602
|
"entryType": "function",
|
|
429
|
-
"description": "
|
|
603
|
+
"description": "Activates the widget.",
|
|
430
604
|
"jsdocTags": [],
|
|
431
|
-
"rawComment": "/**
|
|
605
|
+
"rawComment": "/** Activates the widget. */",
|
|
606
|
+
"memberType": "method",
|
|
607
|
+
"memberTags": []
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "deactivate",
|
|
611
|
+
"signatures": [
|
|
612
|
+
{
|
|
613
|
+
"name": "deactivate",
|
|
614
|
+
"entryType": "function",
|
|
615
|
+
"description": "Deactivates the widget.",
|
|
616
|
+
"generics": [],
|
|
617
|
+
"isNewType": false,
|
|
618
|
+
"jsdocTags": [],
|
|
619
|
+
"params": [],
|
|
620
|
+
"rawComment": "/** Deactivates the widget. */",
|
|
621
|
+
"returnType": "void"
|
|
622
|
+
}
|
|
623
|
+
],
|
|
624
|
+
"implementation": {
|
|
625
|
+
"params": [],
|
|
626
|
+
"isNewType": false,
|
|
627
|
+
"returnType": "void",
|
|
628
|
+
"generics": [],
|
|
629
|
+
"name": "deactivate",
|
|
630
|
+
"description": "Deactivates the widget.",
|
|
631
|
+
"entryType": "function",
|
|
632
|
+
"jsdocTags": [],
|
|
633
|
+
"rawComment": "/** Deactivates the widget. */"
|
|
634
|
+
},
|
|
635
|
+
"entryType": "function",
|
|
636
|
+
"description": "Deactivates the widget.",
|
|
637
|
+
"jsdocTags": [],
|
|
638
|
+
"rawComment": "/** Deactivates the widget. */",
|
|
432
639
|
"memberType": "method",
|
|
433
640
|
"memberTags": []
|
|
434
641
|
}
|
|
435
642
|
],
|
|
436
643
|
"generics": [],
|
|
437
|
-
"description": "
|
|
438
|
-
"jsdocTags": [
|
|
439
|
-
|
|
644
|
+
"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```",
|
|
645
|
+
"jsdocTags": [
|
|
646
|
+
{
|
|
647
|
+
"name": "developerPreview",
|
|
648
|
+
"comment": "21.0"
|
|
649
|
+
}
|
|
650
|
+
],
|
|
651
|
+
"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
652
|
"implements": [],
|
|
441
653
|
"isStandalone": true,
|
|
442
654
|
"selector": "[ngGridCellWidget]",
|
|
@@ -445,8 +657,8 @@
|
|
|
445
657
|
],
|
|
446
658
|
"source": {
|
|
447
659
|
"filePath": "src/aria/grid/grid.ts",
|
|
448
|
-
"startLine":
|
|
449
|
-
"endLine":
|
|
660
|
+
"startLine": 363,
|
|
661
|
+
"endLine": 458
|
|
450
662
|
}
|
|
451
663
|
}
|
|
452
664
|
],
|
|
@@ -467,10 +679,6 @@
|
|
|
467
679
|
"computed",
|
|
468
680
|
"@angular/core"
|
|
469
681
|
],
|
|
470
|
-
[
|
|
471
|
-
"contentChild",
|
|
472
|
-
"@angular/core"
|
|
473
|
-
],
|
|
474
682
|
[
|
|
475
683
|
"contentChildren",
|
|
476
684
|
"@angular/core"
|
|
@@ -491,6 +699,10 @@
|
|
|
491
699
|
"input",
|
|
492
700
|
"@angular/core"
|
|
493
701
|
],
|
|
702
|
+
[
|
|
703
|
+
"output",
|
|
704
|
+
"@angular/core"
|
|
705
|
+
],
|
|
494
706
|
[
|
|
495
707
|
"model",
|
|
496
708
|
"@angular/core"
|
|
@@ -524,11 +736,11 @@
|
|
|
524
736
|
"@angular/aria/grid"
|
|
525
737
|
],
|
|
526
738
|
[
|
|
527
|
-
"Grid.
|
|
739
|
+
"Grid.element",
|
|
528
740
|
"@angular/aria/grid"
|
|
529
741
|
],
|
|
530
742
|
[
|
|
531
|
-
"Grid.
|
|
743
|
+
"Grid.textDirection",
|
|
532
744
|
"@angular/aria/grid"
|
|
533
745
|
],
|
|
534
746
|
[
|
|
@@ -571,16 +783,12 @@
|
|
|
571
783
|
"GridRow",
|
|
572
784
|
"@angular/aria/grid"
|
|
573
785
|
],
|
|
574
|
-
[
|
|
575
|
-
"GridRow.grid",
|
|
576
|
-
"@angular/aria/grid"
|
|
577
|
-
],
|
|
578
786
|
[
|
|
579
787
|
"GridRow.element",
|
|
580
788
|
"@angular/aria/grid"
|
|
581
789
|
],
|
|
582
790
|
[
|
|
583
|
-
"GridRow.
|
|
791
|
+
"GridRow.grid",
|
|
584
792
|
"@angular/aria/grid"
|
|
585
793
|
],
|
|
586
794
|
[
|
|
@@ -595,6 +803,18 @@
|
|
|
595
803
|
"GridCell.element",
|
|
596
804
|
"@angular/aria/grid"
|
|
597
805
|
],
|
|
806
|
+
[
|
|
807
|
+
"GridCell.active",
|
|
808
|
+
"@angular/aria/grid"
|
|
809
|
+
],
|
|
810
|
+
[
|
|
811
|
+
"GridCell.textDirection",
|
|
812
|
+
"@angular/aria/grid"
|
|
813
|
+
],
|
|
814
|
+
[
|
|
815
|
+
"GridCell.id",
|
|
816
|
+
"@angular/aria/grid"
|
|
817
|
+
],
|
|
598
818
|
[
|
|
599
819
|
"GridCell.role",
|
|
600
820
|
"@angular/aria/grid"
|
|
@@ -627,6 +847,18 @@
|
|
|
627
847
|
"GridCell.selectable",
|
|
628
848
|
"@angular/aria/grid"
|
|
629
849
|
],
|
|
850
|
+
[
|
|
851
|
+
"GridCell.orientation",
|
|
852
|
+
"@angular/aria/grid"
|
|
853
|
+
],
|
|
854
|
+
[
|
|
855
|
+
"GridCell.wrap",
|
|
856
|
+
"@angular/aria/grid"
|
|
857
|
+
],
|
|
858
|
+
[
|
|
859
|
+
"GridCell.tabindex",
|
|
860
|
+
"@angular/aria/grid"
|
|
861
|
+
],
|
|
630
862
|
[
|
|
631
863
|
"GridCellWidget",
|
|
632
864
|
"@angular/aria/grid"
|
|
@@ -635,12 +867,48 @@
|
|
|
635
867
|
"GridCellWidget.element",
|
|
636
868
|
"@angular/aria/grid"
|
|
637
869
|
],
|
|
870
|
+
[
|
|
871
|
+
"GridCellWidget.active",
|
|
872
|
+
"@angular/aria/grid"
|
|
873
|
+
],
|
|
874
|
+
[
|
|
875
|
+
"GridCellWidget.id",
|
|
876
|
+
"@angular/aria/grid"
|
|
877
|
+
],
|
|
878
|
+
[
|
|
879
|
+
"GridCellWidget.widgetType",
|
|
880
|
+
"@angular/aria/grid"
|
|
881
|
+
],
|
|
882
|
+
[
|
|
883
|
+
"GridCellWidget.disabled",
|
|
884
|
+
"@angular/aria/grid"
|
|
885
|
+
],
|
|
886
|
+
[
|
|
887
|
+
"GridCellWidget.focusTarget",
|
|
888
|
+
"@angular/aria/grid"
|
|
889
|
+
],
|
|
890
|
+
[
|
|
891
|
+
"GridCellWidget.onActivate",
|
|
892
|
+
"@angular/aria/grid"
|
|
893
|
+
],
|
|
894
|
+
[
|
|
895
|
+
"GridCellWidget.onDeactivate",
|
|
896
|
+
"@angular/aria/grid"
|
|
897
|
+
],
|
|
898
|
+
[
|
|
899
|
+
"GridCellWidget.tabindex",
|
|
900
|
+
"@angular/aria/grid"
|
|
901
|
+
],
|
|
902
|
+
[
|
|
903
|
+
"GridCellWidget.isActivated",
|
|
904
|
+
"@angular/aria/grid"
|
|
905
|
+
],
|
|
638
906
|
[
|
|
639
907
|
"GridCellWidget.activate",
|
|
640
908
|
"@angular/aria/grid"
|
|
641
909
|
],
|
|
642
910
|
[
|
|
643
|
-
"GridCellWidget.
|
|
911
|
+
"GridCellWidget.deactivate",
|
|
644
912
|
"@angular/aria/grid"
|
|
645
913
|
]
|
|
646
914
|
]
|