@angular/aria 21.0.0-next.9 → 21.0.0-rc.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.
Files changed (49) hide show
  1. package/_adev_assets/aria-accordion.json +373 -0
  2. package/_adev_assets/aria-combobox.json +383 -0
  3. package/_adev_assets/aria-grid.json +578 -0
  4. package/_adev_assets/aria-listbox.json +511 -0
  5. package/_adev_assets/aria-menu.json +752 -0
  6. package/_adev_assets/aria-radio-group.json +389 -0
  7. package/_adev_assets/aria-tabs.json +987 -0
  8. package/_adev_assets/aria-toolbar.json +717 -0
  9. package/_adev_assets/aria-tree.json +1067 -0
  10. package/fesm2022/_widget-chunk.mjs +827 -0
  11. package/fesm2022/_widget-chunk.mjs.map +1 -0
  12. package/fesm2022/accordion.mjs +371 -172
  13. package/fesm2022/accordion.mjs.map +1 -1
  14. package/fesm2022/aria.mjs +1 -2
  15. package/fesm2022/aria.mjs.map +1 -1
  16. package/fesm2022/combobox.mjs +304 -114
  17. package/fesm2022/combobox.mjs.map +1 -1
  18. package/fesm2022/deferred-content.mjs +89 -50
  19. package/fesm2022/deferred-content.mjs.map +1 -1
  20. package/fesm2022/grid.mjs +517 -0
  21. package/fesm2022/grid.mjs.map +1 -0
  22. package/fesm2022/listbox.mjs +384 -183
  23. package/fesm2022/listbox.mjs.map +1 -1
  24. package/fesm2022/menu.mjs +535 -0
  25. package/fesm2022/menu.mjs.map +1 -0
  26. package/fesm2022/private.mjs +2347 -0
  27. package/fesm2022/private.mjs.map +1 -0
  28. package/fesm2022/radio-group.mjs +320 -179
  29. package/fesm2022/radio-group.mjs.map +1 -1
  30. package/fesm2022/tabs.mjs +483 -274
  31. package/fesm2022/tabs.mjs.map +1 -1
  32. package/fesm2022/toolbar.mjs +330 -199
  33. package/fesm2022/toolbar.mjs.map +1 -1
  34. package/fesm2022/tree.mjs +509 -264
  35. package/fesm2022/tree.mjs.map +1 -1
  36. package/package.json +14 -6
  37. package/types/_grid-chunk.d.ts +546 -0
  38. package/types/accordion.d.ts +4 -4
  39. package/types/combobox.d.ts +18 -5
  40. package/types/grid.d.ts +111 -0
  41. package/types/listbox.d.ts +6 -3
  42. package/types/menu.d.ts +158 -0
  43. package/types/{ui-patterns.d.ts → private.d.ts} +333 -133
  44. package/types/radio-group.d.ts +5 -3
  45. package/types/tabs.d.ts +4 -4
  46. package/types/toolbar.d.ts +4 -4
  47. package/types/tree.d.ts +7 -4
  48. package/fesm2022/ui-patterns.mjs +0 -2504
  49. package/fesm2022/ui-patterns.mjs.map +0 -1
@@ -0,0 +1,578 @@
1
+ {
2
+ "repo": "angular/components",
3
+ "moduleLabel": "@angular/aria/grid",
4
+ "moduleName": "@angular/aria/grid",
5
+ "normalizedModuleName": "angular_aria_grid",
6
+ "entries": [
7
+ {
8
+ "name": "Grid",
9
+ "isAbstract": false,
10
+ "entryType": "directive",
11
+ "members": [
12
+ {
13
+ "name": "element",
14
+ "type": "any",
15
+ "memberType": "property",
16
+ "memberTags": [
17
+ "readonly"
18
+ ],
19
+ "description": "The host native element.",
20
+ "jsdocTags": []
21
+ },
22
+ {
23
+ "name": "enableSelection",
24
+ "type": "any",
25
+ "memberType": "property",
26
+ "memberTags": [
27
+ "readonly",
28
+ "input"
29
+ ],
30
+ "description": "Whether selection is enabled for the grid.",
31
+ "jsdocTags": [],
32
+ "inputAlias": "enableSelection",
33
+ "isRequiredInput": false
34
+ },
35
+ {
36
+ "name": "disabled",
37
+ "type": "any",
38
+ "memberType": "property",
39
+ "memberTags": [
40
+ "readonly",
41
+ "input"
42
+ ],
43
+ "description": "Whether the grid is disabled.",
44
+ "jsdocTags": [],
45
+ "inputAlias": "disabled",
46
+ "isRequiredInput": false
47
+ },
48
+ {
49
+ "name": "skipDisabled",
50
+ "type": "any",
51
+ "memberType": "property",
52
+ "memberTags": [
53
+ "readonly",
54
+ "input"
55
+ ],
56
+ "description": "Whether to skip disabled items during navigation.",
57
+ "jsdocTags": [],
58
+ "inputAlias": "skipDisabled",
59
+ "isRequiredInput": false
60
+ },
61
+ {
62
+ "name": "focusMode",
63
+ "type": "any",
64
+ "memberType": "property",
65
+ "memberTags": [
66
+ "readonly",
67
+ "input"
68
+ ],
69
+ "description": "The focus strategy used by the grid.",
70
+ "jsdocTags": [],
71
+ "inputAlias": "focusMode",
72
+ "isRequiredInput": false
73
+ },
74
+ {
75
+ "name": "rowWrap",
76
+ "type": "any",
77
+ "memberType": "property",
78
+ "memberTags": [
79
+ "readonly",
80
+ "input"
81
+ ],
82
+ "description": "The wrapping behavior for keyboard navigation along the row axis.",
83
+ "jsdocTags": [],
84
+ "inputAlias": "rowWrap",
85
+ "isRequiredInput": false
86
+ },
87
+ {
88
+ "name": "colWrap",
89
+ "type": "any",
90
+ "memberType": "property",
91
+ "memberTags": [
92
+ "readonly",
93
+ "input"
94
+ ],
95
+ "description": "The wrapping behavior for keyboard navigation along the column axis.",
96
+ "jsdocTags": [],
97
+ "inputAlias": "colWrap",
98
+ "isRequiredInput": false
99
+ }
100
+ ],
101
+ "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. */",
105
+ "implements": [],
106
+ "isStandalone": true,
107
+ "selector": "[ngGrid]",
108
+ "exportAs": [
109
+ "ngGrid"
110
+ ],
111
+ "source": {
112
+ "filePath": "src/aria/grid/grid.ts",
113
+ "startLine": 26,
114
+ "endLine": 106
115
+ }
116
+ },
117
+ {
118
+ "name": "GridRow",
119
+ "isAbstract": false,
120
+ "entryType": "directive",
121
+ "members": [
122
+ {
123
+ "name": "grid",
124
+ "type": "any",
125
+ "memberType": "property",
126
+ "memberTags": [
127
+ "readonly"
128
+ ],
129
+ "description": "The parent grid UI pattern.",
130
+ "jsdocTags": []
131
+ },
132
+ {
133
+ "name": "element",
134
+ "type": "any",
135
+ "memberType": "property",
136
+ "memberTags": [
137
+ "readonly"
138
+ ],
139
+ "description": "The host native element.",
140
+ "jsdocTags": []
141
+ },
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
+ {
156
+ "name": "rowIndex",
157
+ "type": "any",
158
+ "memberType": "property",
159
+ "memberTags": [
160
+ "readonly",
161
+ "input"
162
+ ],
163
+ "description": "The index of this row within the grid.",
164
+ "jsdocTags": [],
165
+ "inputAlias": "rowIndex",
166
+ "isRequiredInput": false
167
+ }
168
+ ],
169
+ "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. */",
173
+ "implements": [],
174
+ "isStandalone": true,
175
+ "selector": "[ngGridRow]",
176
+ "exportAs": [
177
+ "ngGridRow"
178
+ ],
179
+ "source": {
180
+ "filePath": "src/aria/grid/grid.ts",
181
+ "startLine": 109,
182
+ "endLine": 149
183
+ }
184
+ },
185
+ {
186
+ "name": "GridCell",
187
+ "isAbstract": false,
188
+ "entryType": "directive",
189
+ "members": [
190
+ {
191
+ "name": "element",
192
+ "type": "any",
193
+ "memberType": "property",
194
+ "memberTags": [
195
+ "readonly"
196
+ ],
197
+ "description": "The host native element.",
198
+ "jsdocTags": []
199
+ },
200
+ {
201
+ "name": "role",
202
+ "type": "any",
203
+ "memberType": "property",
204
+ "memberTags": [
205
+ "readonly",
206
+ "input"
207
+ ],
208
+ "description": "The ARIA role for the cell.",
209
+ "jsdocTags": [],
210
+ "inputAlias": "role",
211
+ "isRequiredInput": false
212
+ },
213
+ {
214
+ "name": "rowSpan",
215
+ "type": "any",
216
+ "memberType": "property",
217
+ "memberTags": [
218
+ "readonly",
219
+ "input"
220
+ ],
221
+ "description": "The number of rows the cell should span.",
222
+ "jsdocTags": [],
223
+ "inputAlias": "rowSpan",
224
+ "isRequiredInput": false
225
+ },
226
+ {
227
+ "name": "colSpan",
228
+ "type": "any",
229
+ "memberType": "property",
230
+ "memberTags": [
231
+ "readonly",
232
+ "input"
233
+ ],
234
+ "description": "The number of columns the cell should span.",
235
+ "jsdocTags": [],
236
+ "inputAlias": "colSpan",
237
+ "isRequiredInput": false
238
+ },
239
+ {
240
+ "name": "rowIndex",
241
+ "type": "any",
242
+ "memberType": "property",
243
+ "memberTags": [
244
+ "readonly",
245
+ "input"
246
+ ],
247
+ "description": "The index of this cell's row within the grid.",
248
+ "jsdocTags": [],
249
+ "inputAlias": "rowIndex",
250
+ "isRequiredInput": false
251
+ },
252
+ {
253
+ "name": "colIndex",
254
+ "type": "any",
255
+ "memberType": "property",
256
+ "memberTags": [
257
+ "readonly",
258
+ "input"
259
+ ],
260
+ "description": "The index of this cell's column within the grid.",
261
+ "jsdocTags": [],
262
+ "inputAlias": "colIndex",
263
+ "isRequiredInput": false
264
+ },
265
+ {
266
+ "name": "disabled",
267
+ "type": "any",
268
+ "memberType": "property",
269
+ "memberTags": [
270
+ "readonly",
271
+ "input"
272
+ ],
273
+ "description": "Whether the cell is disabled.",
274
+ "jsdocTags": [],
275
+ "inputAlias": "disabled",
276
+ "isRequiredInput": false
277
+ },
278
+ {
279
+ "name": "selected",
280
+ "type": "any",
281
+ "memberType": "property",
282
+ "memberTags": [
283
+ "readonly",
284
+ "input",
285
+ "output"
286
+ ],
287
+ "description": "Whether the cell is selected.",
288
+ "jsdocTags": [],
289
+ "inputAlias": "selected",
290
+ "isRequiredInput": false,
291
+ "outputAlias": "selectedChange"
292
+ },
293
+ {
294
+ "name": "selectable",
295
+ "type": "any",
296
+ "memberType": "property",
297
+ "memberTags": [
298
+ "readonly",
299
+ "input"
300
+ ],
301
+ "description": "Whether the cell is selectable.",
302
+ "jsdocTags": [],
303
+ "inputAlias": "selectable",
304
+ "isRequiredInput": false
305
+ }
306
+ ],
307
+ "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. */",
311
+ "implements": [],
312
+ "isStandalone": true,
313
+ "selector": "[ngGridCell]",
314
+ "exportAs": [
315
+ "ngGridCell"
316
+ ],
317
+ "source": {
318
+ "filePath": "src/aria/grid/grid.ts",
319
+ "startLine": 152,
320
+ "endLine": 224
321
+ }
322
+ },
323
+ {
324
+ "name": "GridCellWidget",
325
+ "isAbstract": false,
326
+ "entryType": "directive",
327
+ "members": [
328
+ {
329
+ "name": "element",
330
+ "type": "any",
331
+ "memberType": "property",
332
+ "memberTags": [
333
+ "readonly"
334
+ ],
335
+ "description": "The host native element.",
336
+ "jsdocTags": []
337
+ },
338
+ {
339
+ "name": "activate",
340
+ "type": "any",
341
+ "memberType": "property",
342
+ "memberTags": [
343
+ "readonly",
344
+ "input",
345
+ "output"
346
+ ],
347
+ "description": "Whether the widget is activated and the grid navigation should be paused.",
348
+ "jsdocTags": [],
349
+ "inputAlias": "activate",
350
+ "isRequiredInput": false,
351
+ "outputAlias": "activateChange"
352
+ },
353
+ {
354
+ "name": "focus",
355
+ "signatures": [
356
+ {
357
+ "name": "focus",
358
+ "entryType": "function",
359
+ "description": "Focuses the widget.",
360
+ "generics": [],
361
+ "isNewType": false,
362
+ "jsdocTags": [],
363
+ "params": [],
364
+ "rawComment": "/** Focuses the widget. */",
365
+ "returnType": "void"
366
+ }
367
+ ],
368
+ "implementation": {
369
+ "params": [],
370
+ "isNewType": false,
371
+ "returnType": "void",
372
+ "generics": [],
373
+ "name": "focus",
374
+ "description": "Focuses the widget.",
375
+ "entryType": "function",
376
+ "jsdocTags": [],
377
+ "rawComment": "/** Focuses the widget. */"
378
+ },
379
+ "entryType": "function",
380
+ "description": "Focuses the widget.",
381
+ "jsdocTags": [],
382
+ "rawComment": "/** Focuses the widget. */",
383
+ "memberType": "method",
384
+ "memberTags": []
385
+ }
386
+ ],
387
+ "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. */",
391
+ "implements": [],
392
+ "isStandalone": true,
393
+ "selector": "[ngGridCellWidget]",
394
+ "exportAs": [
395
+ "ngGridCellWidget"
396
+ ],
397
+ "source": {
398
+ "filePath": "src/aria/grid/grid.ts",
399
+ "startLine": 227,
400
+ "endLine": 259
401
+ }
402
+ }
403
+ ],
404
+ "symbols": [
405
+ [
406
+ "_IdGenerator",
407
+ "@angular/cdk/a11y"
408
+ ],
409
+ [
410
+ "afterRenderEffect",
411
+ "@angular/core"
412
+ ],
413
+ [
414
+ "booleanAttribute",
415
+ "@angular/core"
416
+ ],
417
+ [
418
+ "computed",
419
+ "@angular/core"
420
+ ],
421
+ [
422
+ "contentChild",
423
+ "@angular/core"
424
+ ],
425
+ [
426
+ "contentChildren",
427
+ "@angular/core"
428
+ ],
429
+ [
430
+ "Directive",
431
+ "@angular/core"
432
+ ],
433
+ [
434
+ "ElementRef",
435
+ "@angular/core"
436
+ ],
437
+ [
438
+ "inject",
439
+ "@angular/core"
440
+ ],
441
+ [
442
+ "input",
443
+ "@angular/core"
444
+ ],
445
+ [
446
+ "model",
447
+ "@angular/core"
448
+ ],
449
+ [
450
+ "Signal",
451
+ "@angular/core"
452
+ ],
453
+ [
454
+ "Grid",
455
+ "@angular/aria/grid"
456
+ ],
457
+ [
458
+ "GridRow",
459
+ "@angular/aria/grid"
460
+ ],
461
+ [
462
+ "GridCell",
463
+ "@angular/aria/grid"
464
+ ],
465
+ [
466
+ "GridCellWidget",
467
+ "@angular/aria/grid"
468
+ ],
469
+ [
470
+ "Grid",
471
+ "@angular/aria/grid"
472
+ ],
473
+ [
474
+ "Grid.element",
475
+ "@angular/aria/grid"
476
+ ],
477
+ [
478
+ "Grid.enableSelection",
479
+ "@angular/aria/grid"
480
+ ],
481
+ [
482
+ "Grid.disabled",
483
+ "@angular/aria/grid"
484
+ ],
485
+ [
486
+ "Grid.skipDisabled",
487
+ "@angular/aria/grid"
488
+ ],
489
+ [
490
+ "Grid.focusMode",
491
+ "@angular/aria/grid"
492
+ ],
493
+ [
494
+ "Grid.rowWrap",
495
+ "@angular/aria/grid"
496
+ ],
497
+ [
498
+ "Grid.colWrap",
499
+ "@angular/aria/grid"
500
+ ],
501
+ [
502
+ "GridRow",
503
+ "@angular/aria/grid"
504
+ ],
505
+ [
506
+ "GridRow.grid",
507
+ "@angular/aria/grid"
508
+ ],
509
+ [
510
+ "GridRow.element",
511
+ "@angular/aria/grid"
512
+ ],
513
+ [
514
+ "GridRow.role",
515
+ "@angular/aria/grid"
516
+ ],
517
+ [
518
+ "GridRow.rowIndex",
519
+ "@angular/aria/grid"
520
+ ],
521
+ [
522
+ "GridCell",
523
+ "@angular/aria/grid"
524
+ ],
525
+ [
526
+ "GridCell.element",
527
+ "@angular/aria/grid"
528
+ ],
529
+ [
530
+ "GridCell.role",
531
+ "@angular/aria/grid"
532
+ ],
533
+ [
534
+ "GridCell.rowSpan",
535
+ "@angular/aria/grid"
536
+ ],
537
+ [
538
+ "GridCell.colSpan",
539
+ "@angular/aria/grid"
540
+ ],
541
+ [
542
+ "GridCell.rowIndex",
543
+ "@angular/aria/grid"
544
+ ],
545
+ [
546
+ "GridCell.colIndex",
547
+ "@angular/aria/grid"
548
+ ],
549
+ [
550
+ "GridCell.disabled",
551
+ "@angular/aria/grid"
552
+ ],
553
+ [
554
+ "GridCell.selected",
555
+ "@angular/aria/grid"
556
+ ],
557
+ [
558
+ "GridCell.selectable",
559
+ "@angular/aria/grid"
560
+ ],
561
+ [
562
+ "GridCellWidget",
563
+ "@angular/aria/grid"
564
+ ],
565
+ [
566
+ "GridCellWidget.element",
567
+ "@angular/aria/grid"
568
+ ],
569
+ [
570
+ "GridCellWidget.activate",
571
+ "@angular/aria/grid"
572
+ ],
573
+ [
574
+ "GridCellWidget.focus",
575
+ "@angular/aria/grid"
576
+ ]
577
+ ]
578
+ }