@angular/aria 21.0.0-rc.0 → 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.
Files changed (48) hide show
  1. package/_adev_assets/aria-accordion.json +443 -59
  2. package/_adev_assets/aria-combobox.json +345 -37
  3. package/_adev_assets/aria-grid.json +408 -71
  4. package/_adev_assets/aria-listbox.json +115 -35
  5. package/_adev_assets/aria-menu.json +492 -167
  6. package/_adev_assets/aria-tabs.json +272 -88
  7. package/_adev_assets/aria-toolbar.json +151 -133
  8. package/_adev_assets/aria-tree.json +182 -35
  9. package/fesm2022/_widget-chunk.mjs +643 -190
  10. package/fesm2022/_widget-chunk.mjs.map +1 -1
  11. package/fesm2022/accordion.mjs +129 -77
  12. package/fesm2022/accordion.mjs.map +1 -1
  13. package/fesm2022/aria.mjs +1 -1
  14. package/fesm2022/aria.mjs.map +1 -1
  15. package/fesm2022/combobox.mjs +140 -27
  16. package/fesm2022/combobox.mjs.map +1 -1
  17. package/fesm2022/grid.mjs +254 -68
  18. package/fesm2022/grid.mjs.map +1 -1
  19. package/fesm2022/listbox.mjs +54 -44
  20. package/fesm2022/listbox.mjs.map +1 -1
  21. package/fesm2022/menu.mjs +270 -108
  22. package/fesm2022/menu.mjs.map +1 -1
  23. package/fesm2022/private.mjs +752 -785
  24. package/fesm2022/private.mjs.map +1 -1
  25. package/fesm2022/tabs.mjs +101 -71
  26. package/fesm2022/tabs.mjs.map +1 -1
  27. package/fesm2022/toolbar.mjs +87 -64
  28. package/fesm2022/toolbar.mjs.map +1 -1
  29. package/fesm2022/tree.mjs +105 -60
  30. package/fesm2022/tree.mjs.map +1 -1
  31. package/package.json +2 -10
  32. package/types/_grid-chunk.d.ts +326 -83
  33. package/types/accordion.d.ts +134 -35
  34. package/types/combobox.d.ts +146 -13
  35. package/types/grid.d.ts +159 -32
  36. package/types/listbox.d.ts +59 -28
  37. package/types/menu.d.ts +151 -55
  38. package/types/private.d.ts +449 -567
  39. package/types/tabs.d.ts +121 -41
  40. package/types/toolbar.d.ts +74 -51
  41. package/types/tree.d.ts +116 -45
  42. package/_adev_assets/aria-radio-group.json +0 -389
  43. package/fesm2022/deferred-content.mjs +0 -99
  44. package/fesm2022/deferred-content.mjs.map +0 -1
  45. package/fesm2022/radio-group.mjs +0 -338
  46. package/fesm2022/radio-group.mjs.map +0 -1
  47. package/types/deferred-content.d.ts +0 -38
  48. package/types/radio-group.d.ts +0 -84
@@ -11,12 +11,22 @@
11
11
  "members": [
12
12
  {
13
13
  "name": "element",
14
+ "type": "HTMLElement",
15
+ "memberType": "property",
16
+ "memberTags": [
17
+ "readonly"
18
+ ],
19
+ "description": "A reference to the host element.",
20
+ "jsdocTags": []
21
+ },
22
+ {
23
+ "name": "textDirection",
14
24
  "type": "any",
15
25
  "memberType": "property",
16
26
  "memberTags": [
17
27
  "readonly"
18
28
  ],
19
- "description": "The host native element.",
29
+ "description": "Text direction.",
20
30
  "jsdocTags": []
21
31
  },
22
32
  {
@@ -46,16 +56,16 @@
46
56
  "isRequiredInput": false
47
57
  },
48
58
  {
49
- "name": "skipDisabled",
59
+ "name": "softDisabled",
50
60
  "type": "any",
51
61
  "memberType": "property",
52
62
  "memberTags": [
53
63
  "readonly",
54
64
  "input"
55
65
  ],
56
- "description": "Whether to skip disabled items during navigation.",
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.",
57
67
  "jsdocTags": [],
58
- "inputAlias": "skipDisabled",
68
+ "inputAlias": "softDisabled",
59
69
  "isRequiredInput": false
60
70
  },
61
71
  {
@@ -66,7 +76,7 @@
66
76
  "readonly",
67
77
  "input"
68
78
  ],
69
- "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.",
70
80
  "jsdocTags": [],
71
81
  "inputAlias": "focusMode",
72
82
  "isRequiredInput": false
@@ -79,7 +89,7 @@
79
89
  "readonly",
80
90
  "input"
81
91
  ],
82
- "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.",
83
93
  "jsdocTags": [],
84
94
  "inputAlias": "rowWrap",
85
95
  "isRequiredInput": false
@@ -92,16 +102,68 @@
92
102
  "readonly",
93
103
  "input"
94
104
  ],
95
- "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.",
96
106
  "jsdocTags": [],
97
107
  "inputAlias": "colWrap",
98
108
  "isRequiredInput": false
109
+ },
110
+ {
111
+ "name": "multi",
112
+ "type": "any",
113
+ "memberType": "property",
114
+ "memberTags": [
115
+ "readonly",
116
+ "input"
117
+ ],
118
+ "description": "Whether multiple cells in the grid can be selected.",
119
+ "jsdocTags": [],
120
+ "inputAlias": "multi",
121
+ "isRequiredInput": false
122
+ },
123
+ {
124
+ "name": "selectionMode",
125
+ "type": "any",
126
+ "memberType": "property",
127
+ "memberTags": [
128
+ "readonly",
129
+ "input"
130
+ ],
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
+ "jsdocTags": [],
133
+ "inputAlias": "selectionMode",
134
+ "isRequiredInput": false
135
+ },
136
+ {
137
+ "name": "enableRangeSelection",
138
+ "type": "any",
139
+ "memberType": "property",
140
+ "memberTags": [
141
+ "readonly",
142
+ "input"
143
+ ],
144
+ "description": "Whether enable range selections (with modifier keys or dragging).",
145
+ "jsdocTags": [],
146
+ "inputAlias": "enableRangeSelection",
147
+ "isRequiredInput": false
99
148
  }
100
149
  ],
101
150
  "generics": [],
102
- "description": "A directive that provides grid-based navigation and selection behavior.",
103
- "jsdocTags": [],
104
- "rawComment": "/** A directive that provides grid-based navigation and selection behavior. */",
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 */",
105
167
  "implements": [],
106
168
  "isStandalone": true,
107
169
  "selector": "[ngGrid]",
@@ -110,8 +172,8 @@
110
172
  ],
111
173
  "source": {
112
174
  "filePath": "src/aria/grid/grid.ts",
113
- "startLine": 26,
114
- "endLine": 106
175
+ "startLine": 47,
176
+ "endLine": 164
115
177
  }
116
178
  },
117
179
  {
@@ -120,38 +182,25 @@
120
182
  "entryType": "directive",
121
183
  "members": [
122
184
  {
123
- "name": "grid",
124
- "type": "any",
185
+ "name": "element",
186
+ "type": "HTMLElement",
125
187
  "memberType": "property",
126
188
  "memberTags": [
127
189
  "readonly"
128
190
  ],
129
- "description": "The parent grid UI pattern.",
191
+ "description": "A reference to the host element.",
130
192
  "jsdocTags": []
131
193
  },
132
194
  {
133
- "name": "element",
195
+ "name": "grid",
134
196
  "type": "any",
135
197
  "memberType": "property",
136
198
  "memberTags": [
137
199
  "readonly"
138
200
  ],
139
- "description": "The host native element.",
201
+ "description": "The parent grid UI pattern.",
140
202
  "jsdocTags": []
141
203
  },
142
- {
143
- "name": "role",
144
- "type": "any",
145
- "memberType": "property",
146
- "memberTags": [
147
- "readonly",
148
- "input"
149
- ],
150
- "description": "The ARIA role for the row.",
151
- "jsdocTags": [],
152
- "inputAlias": "role",
153
- "isRequiredInput": false
154
- },
155
204
  {
156
205
  "name": "rowIndex",
157
206
  "type": "any",
@@ -167,9 +216,14 @@
167
216
  }
168
217
  ],
169
218
  "generics": [],
170
- "description": "A directive that represents a row in a grid.",
171
- "jsdocTags": [],
172
- "rawComment": "/** A directive that represents a row in a grid. */",
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 */",
173
227
  "implements": [],
174
228
  "isStandalone": true,
175
229
  "selector": "[ngGridRow]",
@@ -178,8 +232,8 @@
178
232
  ],
179
233
  "source": {
180
234
  "filePath": "src/aria/grid/grid.ts",
181
- "startLine": 109,
182
- "endLine": 149
235
+ "startLine": 177,
236
+ "endLine": 215
183
237
  }
184
238
  },
185
239
  {
@@ -189,14 +243,47 @@
189
243
  "members": [
190
244
  {
191
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",
192
256
  "type": "any",
193
257
  "memberType": "property",
194
258
  "memberTags": [
195
259
  "readonly"
196
260
  ],
197
- "description": "The host native element.",
261
+ "description": "Whether the cell is currently active (focused).",
198
262
  "jsdocTags": []
199
263
  },
264
+ {
265
+ "name": "textDirection",
266
+ "type": "any",
267
+ "memberType": "property",
268
+ "memberTags": [
269
+ "readonly"
270
+ ],
271
+ "description": "Text direction.",
272
+ "jsdocTags": []
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
+ },
200
287
  {
201
288
  "name": "role",
202
289
  "type": "any",
@@ -302,12 +389,56 @@
302
389
  "jsdocTags": [],
303
390
  "inputAlias": "selectable",
304
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
305
431
  }
306
432
  ],
307
433
  "generics": [],
308
- "description": "A directive that represents a cell in a grid.",
309
- "jsdocTags": [],
310
- "rawComment": "/** A directive that represents a cell in a grid. */",
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 */",
311
442
  "implements": [],
312
443
  "isStandalone": true,
313
444
  "selector": "[ngGridCell]",
@@ -316,8 +447,8 @@
316
447
  ],
317
448
  "source": {
318
449
  "filePath": "src/aria/grid/grid.ts",
319
- "startLine": 152,
320
- "endLine": 224
450
+ "startLine": 230,
451
+ "endLine": 345
321
452
  }
322
453
  },
323
454
  {
@@ -327,41 +458,166 @@
327
458
  "members": [
328
459
  {
329
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",
330
471
  "type": "any",
331
472
  "memberType": "property",
332
473
  "memberTags": [
333
474
  "readonly"
334
475
  ],
335
- "description": "The host native element.",
476
+ "description": "Whether the widget is currently active (focused).",
336
477
  "jsdocTags": []
337
478
  },
338
479
  {
339
- "name": "activate",
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",
340
533
  "type": "any",
341
534
  "memberType": "property",
342
535
  "memberTags": [
343
536
  "readonly",
344
- "input",
345
537
  "output"
346
538
  ],
347
- "description": "Whether the widget is activated and the grid navigation should be paused.",
539
+ "description": "Emits when the widget is activated.",
348
540
  "jsdocTags": [],
349
- "inputAlias": "activate",
350
- "isRequiredInput": false,
351
- "outputAlias": "activateChange"
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"
554
+ },
555
+ {
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",
578
+ "signatures": [
579
+ {
580
+ "name": "activate",
581
+ "entryType": "function",
582
+ "description": "Activates the widget.",
583
+ "generics": [],
584
+ "isNewType": false,
585
+ "jsdocTags": [],
586
+ "params": [],
587
+ "rawComment": "/** Activates the widget. */",
588
+ "returnType": "void"
589
+ }
590
+ ],
591
+ "implementation": {
592
+ "params": [],
593
+ "isNewType": false,
594
+ "returnType": "void",
595
+ "generics": [],
596
+ "name": "activate",
597
+ "description": "Activates the widget.",
598
+ "entryType": "function",
599
+ "jsdocTags": [],
600
+ "rawComment": "/** Activates the widget. */"
601
+ },
602
+ "entryType": "function",
603
+ "description": "Activates the widget.",
604
+ "jsdocTags": [],
605
+ "rawComment": "/** Activates the widget. */",
606
+ "memberType": "method",
607
+ "memberTags": []
352
608
  },
353
609
  {
354
- "name": "focus",
610
+ "name": "deactivate",
355
611
  "signatures": [
356
612
  {
357
- "name": "focus",
613
+ "name": "deactivate",
358
614
  "entryType": "function",
359
- "description": "Focuses the widget.",
615
+ "description": "Deactivates the widget.",
360
616
  "generics": [],
361
617
  "isNewType": false,
362
618
  "jsdocTags": [],
363
619
  "params": [],
364
- "rawComment": "/** Focuses the widget. */",
620
+ "rawComment": "/** Deactivates the widget. */",
365
621
  "returnType": "void"
366
622
  }
367
623
  ],
@@ -370,24 +626,29 @@
370
626
  "isNewType": false,
371
627
  "returnType": "void",
372
628
  "generics": [],
373
- "name": "focus",
374
- "description": "Focuses the widget.",
629
+ "name": "deactivate",
630
+ "description": "Deactivates the widget.",
375
631
  "entryType": "function",
376
632
  "jsdocTags": [],
377
- "rawComment": "/** Focuses the widget. */"
633
+ "rawComment": "/** Deactivates the widget. */"
378
634
  },
379
635
  "entryType": "function",
380
- "description": "Focuses the widget.",
636
+ "description": "Deactivates the widget.",
381
637
  "jsdocTags": [],
382
- "rawComment": "/** Focuses the widget. */",
638
+ "rawComment": "/** Deactivates the widget. */",
383
639
  "memberType": "method",
384
640
  "memberTags": []
385
641
  }
386
642
  ],
387
643
  "generics": [],
388
- "description": "A directive that represents a widget inside a grid cell.",
389
- "jsdocTags": [],
390
- "rawComment": "/** A directive that represents a widget inside a grid cell. */",
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 */",
391
652
  "implements": [],
392
653
  "isStandalone": true,
393
654
  "selector": "[ngGridCellWidget]",
@@ -396,8 +657,8 @@
396
657
  ],
397
658
  "source": {
398
659
  "filePath": "src/aria/grid/grid.ts",
399
- "startLine": 227,
400
- "endLine": 259
660
+ "startLine": 363,
661
+ "endLine": 458
401
662
  }
402
663
  }
403
664
  ],
@@ -418,10 +679,6 @@
418
679
  "computed",
419
680
  "@angular/core"
420
681
  ],
421
- [
422
- "contentChild",
423
- "@angular/core"
424
- ],
425
682
  [
426
683
  "contentChildren",
427
684
  "@angular/core"
@@ -442,6 +699,10 @@
442
699
  "input",
443
700
  "@angular/core"
444
701
  ],
702
+ [
703
+ "output",
704
+ "@angular/core"
705
+ ],
445
706
  [
446
707
  "model",
447
708
  "@angular/core"
@@ -450,6 +711,10 @@
450
711
  "Signal",
451
712
  "@angular/core"
452
713
  ],
714
+ [
715
+ "Directionality",
716
+ "@angular/cdk/bidi"
717
+ ],
453
718
  [
454
719
  "Grid",
455
720
  "@angular/aria/grid"
@@ -474,6 +739,10 @@
474
739
  "Grid.element",
475
740
  "@angular/aria/grid"
476
741
  ],
742
+ [
743
+ "Grid.textDirection",
744
+ "@angular/aria/grid"
745
+ ],
477
746
  [
478
747
  "Grid.enableSelection",
479
748
  "@angular/aria/grid"
@@ -483,7 +752,7 @@
483
752
  "@angular/aria/grid"
484
753
  ],
485
754
  [
486
- "Grid.skipDisabled",
755
+ "Grid.softDisabled",
487
756
  "@angular/aria/grid"
488
757
  ],
489
758
  [
@@ -499,11 +768,19 @@
499
768
  "@angular/aria/grid"
500
769
  ],
501
770
  [
502
- "GridRow",
771
+ "Grid.multi",
503
772
  "@angular/aria/grid"
504
773
  ],
505
774
  [
506
- "GridRow.grid",
775
+ "Grid.selectionMode",
776
+ "@angular/aria/grid"
777
+ ],
778
+ [
779
+ "Grid.enableRangeSelection",
780
+ "@angular/aria/grid"
781
+ ],
782
+ [
783
+ "GridRow",
507
784
  "@angular/aria/grid"
508
785
  ],
509
786
  [
@@ -511,7 +788,7 @@
511
788
  "@angular/aria/grid"
512
789
  ],
513
790
  [
514
- "GridRow.role",
791
+ "GridRow.grid",
515
792
  "@angular/aria/grid"
516
793
  ],
517
794
  [
@@ -526,6 +803,18 @@
526
803
  "GridCell.element",
527
804
  "@angular/aria/grid"
528
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
+ ],
529
818
  [
530
819
  "GridCell.role",
531
820
  "@angular/aria/grid"
@@ -558,6 +847,18 @@
558
847
  "GridCell.selectable",
559
848
  "@angular/aria/grid"
560
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
+ ],
561
862
  [
562
863
  "GridCellWidget",
563
864
  "@angular/aria/grid"
@@ -566,12 +867,48 @@
566
867
  "GridCellWidget.element",
567
868
  "@angular/aria/grid"
568
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
+ ],
569
906
  [
570
907
  "GridCellWidget.activate",
571
908
  "@angular/aria/grid"
572
909
  ],
573
910
  [
574
- "GridCellWidget.focus",
911
+ "GridCellWidget.deactivate",
575
912
  "@angular/aria/grid"
576
913
  ]
577
914
  ]