@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,511 @@
1
+ {
2
+ "repo": "angular/components",
3
+ "moduleLabel": "@angular/aria/listbox",
4
+ "moduleName": "@angular/aria/listbox",
5
+ "normalizedModuleName": "angular_aria_listbox",
6
+ "entries": [
7
+ {
8
+ "name": "Listbox",
9
+ "isAbstract": false,
10
+ "entryType": "undecorated_class",
11
+ "members": [
12
+ {
13
+ "name": "id",
14
+ "type": "any",
15
+ "memberType": "property",
16
+ "memberTags": [
17
+ "protected"
18
+ ],
19
+ "description": "A unique identifier for the listbox.",
20
+ "jsdocTags": []
21
+ },
22
+ {
23
+ "name": "textDirection",
24
+ "type": "any",
25
+ "memberType": "property",
26
+ "memberTags": [
27
+ "protected"
28
+ ],
29
+ "description": "A signal wrapper for directionality.",
30
+ "jsdocTags": []
31
+ },
32
+ {
33
+ "name": "items",
34
+ "type": "any",
35
+ "memberType": "property",
36
+ "memberTags": [
37
+ "protected"
38
+ ],
39
+ "description": "The Option UIPatterns of the child Options.",
40
+ "jsdocTags": []
41
+ },
42
+ {
43
+ "name": "orientation",
44
+ "type": "any",
45
+ "memberType": "property",
46
+ "memberTags": [],
47
+ "description": "Whether the list is vertically or horizontally oriented.",
48
+ "jsdocTags": []
49
+ },
50
+ {
51
+ "name": "multi",
52
+ "type": "any",
53
+ "memberType": "property",
54
+ "memberTags": [],
55
+ "description": "Whether multiple items in the list can be selected at once.",
56
+ "jsdocTags": []
57
+ },
58
+ {
59
+ "name": "wrap",
60
+ "type": "any",
61
+ "memberType": "property",
62
+ "memberTags": [],
63
+ "description": "Whether focus should wrap when navigating.",
64
+ "jsdocTags": []
65
+ },
66
+ {
67
+ "name": "skipDisabled",
68
+ "type": "any",
69
+ "memberType": "property",
70
+ "memberTags": [],
71
+ "description": "Whether disabled items in the list should be skipped when navigating.",
72
+ "jsdocTags": []
73
+ },
74
+ {
75
+ "name": "focusMode",
76
+ "type": "any",
77
+ "memberType": "property",
78
+ "memberTags": [],
79
+ "description": "The focus strategy used by the list.",
80
+ "jsdocTags": []
81
+ },
82
+ {
83
+ "name": "selectionMode",
84
+ "type": "any",
85
+ "memberType": "property",
86
+ "memberTags": [],
87
+ "description": "The selection strategy used by the list.",
88
+ "jsdocTags": []
89
+ },
90
+ {
91
+ "name": "typeaheadDelay",
92
+ "type": "any",
93
+ "memberType": "property",
94
+ "memberTags": [],
95
+ "description": "The amount of time before the typeahead search is reset.",
96
+ "jsdocTags": []
97
+ },
98
+ {
99
+ "name": "disabled",
100
+ "type": "any",
101
+ "memberType": "property",
102
+ "memberTags": [],
103
+ "description": "Whether the listbox is disabled.",
104
+ "jsdocTags": []
105
+ },
106
+ {
107
+ "name": "readonly",
108
+ "type": "any",
109
+ "memberType": "property",
110
+ "memberTags": [],
111
+ "description": "Whether the listbox is readonly.",
112
+ "jsdocTags": []
113
+ },
114
+ {
115
+ "name": "value",
116
+ "type": "any",
117
+ "memberType": "property",
118
+ "memberTags": [],
119
+ "description": "The values of the current selected items.",
120
+ "jsdocTags": []
121
+ },
122
+ {
123
+ "name": "onFocus",
124
+ "signatures": [
125
+ {
126
+ "name": "onFocus",
127
+ "entryType": "function",
128
+ "description": "",
129
+ "generics": [],
130
+ "isNewType": false,
131
+ "jsdocTags": [],
132
+ "params": [],
133
+ "rawComment": "",
134
+ "returnType": "void"
135
+ }
136
+ ],
137
+ "implementation": {
138
+ "params": [],
139
+ "isNewType": false,
140
+ "returnType": "void",
141
+ "generics": [],
142
+ "name": "onFocus",
143
+ "description": "",
144
+ "entryType": "function",
145
+ "jsdocTags": [],
146
+ "rawComment": ""
147
+ },
148
+ "entryType": "function",
149
+ "description": "",
150
+ "jsdocTags": [],
151
+ "rawComment": "",
152
+ "memberType": "method",
153
+ "memberTags": []
154
+ },
155
+ {
156
+ "name": "scrollActiveItemIntoView",
157
+ "signatures": [
158
+ {
159
+ "name": "scrollActiveItemIntoView",
160
+ "entryType": "function",
161
+ "description": "",
162
+ "generics": [],
163
+ "isNewType": false,
164
+ "jsdocTags": [],
165
+ "params": [
166
+ {
167
+ "name": "options",
168
+ "description": "",
169
+ "type": "ScrollIntoViewOptions",
170
+ "isOptional": true,
171
+ "isRestParam": false
172
+ }
173
+ ],
174
+ "rawComment": "",
175
+ "returnType": "void"
176
+ }
177
+ ],
178
+ "implementation": {
179
+ "params": [
180
+ {
181
+ "name": "options",
182
+ "description": "",
183
+ "type": "ScrollIntoViewOptions",
184
+ "isOptional": true,
185
+ "isRestParam": false
186
+ }
187
+ ],
188
+ "isNewType": false,
189
+ "returnType": "void",
190
+ "generics": [],
191
+ "name": "scrollActiveItemIntoView",
192
+ "description": "",
193
+ "entryType": "function",
194
+ "jsdocTags": [],
195
+ "rawComment": ""
196
+ },
197
+ "entryType": "function",
198
+ "description": "",
199
+ "jsdocTags": [],
200
+ "rawComment": "",
201
+ "memberType": "method",
202
+ "memberTags": []
203
+ }
204
+ ],
205
+ "generics": [
206
+ {
207
+ "name": "V"
208
+ }
209
+ ],
210
+ "description": "A listbox container.\n\nListboxes are used to display a list of items for a user to select from. The Listbox is meant\nto be used in conjunction with Option as follows:\n\n```html\n<ul ngListbox>\n <li [value]=\"1\" ngOption>Item 1</li>\n <li [value]=\"2\" ngOption>Item 2</li>\n <li [value]=\"3\" ngOption>Item 3</li>\n</ul>\n```",
211
+ "jsdocTags": [],
212
+ "rawComment": "/**\n * A listbox container.\n *\n * Listboxes are used to display a list of items for a user to select from. The Listbox is meant\n * to be used in conjunction with Option as follows:\n *\n * ```html\n * <ul ngListbox>\n * <li [value]=\"1\" ngOption>Item 1</li>\n * <li [value]=\"2\" ngOption>Item 2</li>\n * <li [value]=\"3\" ngOption>Item 3</li>\n * </ul>\n * ```\n */",
213
+ "implements": [],
214
+ "source": {
215
+ "filePath": "/src/aria/listbox/listbox.ts",
216
+ "startLine": 42,
217
+ "endLine": 190
218
+ }
219
+ },
220
+ {
221
+ "name": "Option",
222
+ "isAbstract": false,
223
+ "entryType": "directive",
224
+ "members": [
225
+ {
226
+ "name": "id",
227
+ "type": "any",
228
+ "memberType": "property",
229
+ "memberTags": [
230
+ "protected"
231
+ ],
232
+ "description": "A unique identifier for the option.",
233
+ "jsdocTags": []
234
+ },
235
+ {
236
+ "name": "searchTerm",
237
+ "type": "any",
238
+ "memberType": "property",
239
+ "memberTags": [
240
+ "protected"
241
+ ],
242
+ "description": "The text used by the typeahead search.",
243
+ "jsdocTags": []
244
+ },
245
+ {
246
+ "name": "listbox",
247
+ "type": "any",
248
+ "memberType": "property",
249
+ "memberTags": [
250
+ "protected"
251
+ ],
252
+ "description": "The parent Listbox UIPattern.",
253
+ "jsdocTags": []
254
+ },
255
+ {
256
+ "name": "element",
257
+ "type": "any",
258
+ "memberType": "property",
259
+ "memberTags": [
260
+ "protected"
261
+ ],
262
+ "description": "A reference to the option element to be focused on navigation.",
263
+ "jsdocTags": []
264
+ },
265
+ {
266
+ "name": "value",
267
+ "type": "any",
268
+ "memberType": "property",
269
+ "memberTags": [
270
+ "input"
271
+ ],
272
+ "description": "The value of the option.",
273
+ "jsdocTags": [],
274
+ "inputAlias": "value",
275
+ "isRequiredInput": true
276
+ },
277
+ {
278
+ "name": "disabled",
279
+ "type": "any",
280
+ "memberType": "property",
281
+ "memberTags": [
282
+ "input"
283
+ ],
284
+ "description": "Whether an item is disabled.",
285
+ "jsdocTags": [],
286
+ "inputAlias": "disabled",
287
+ "isRequiredInput": false
288
+ },
289
+ {
290
+ "name": "label",
291
+ "type": "any",
292
+ "memberType": "property",
293
+ "memberTags": [
294
+ "input"
295
+ ],
296
+ "description": "The text used by the typeahead search.",
297
+ "jsdocTags": [],
298
+ "inputAlias": "label",
299
+ "isRequiredInput": false
300
+ },
301
+ {
302
+ "name": "selected",
303
+ "type": "any",
304
+ "memberType": "property",
305
+ "memberTags": [
306
+ "readonly"
307
+ ],
308
+ "description": "Whether the option is selected.",
309
+ "jsdocTags": []
310
+ }
311
+ ],
312
+ "generics": [
313
+ {
314
+ "name": "V"
315
+ }
316
+ ],
317
+ "description": "A selectable option in a Listbox.",
318
+ "jsdocTags": [],
319
+ "rawComment": "/** A selectable option in a Listbox. */",
320
+ "implements": [],
321
+ "isStandalone": true,
322
+ "selector": "[ngOption]",
323
+ "exportAs": [
324
+ "ngOption"
325
+ ],
326
+ "source": {
327
+ "filePath": "/src/aria/listbox/listbox.ts",
328
+ "startLine": 193,
329
+ "endLine": 252
330
+ }
331
+ }
332
+ ],
333
+ "symbols": [
334
+ [
335
+ "afterRenderEffect",
336
+ "@angular/core"
337
+ ],
338
+ [
339
+ "booleanAttribute",
340
+ "@angular/core"
341
+ ],
342
+ [
343
+ "computed",
344
+ "@angular/core"
345
+ ],
346
+ [
347
+ "contentChildren",
348
+ "@angular/core"
349
+ ],
350
+ [
351
+ "Directive",
352
+ "@angular/core"
353
+ ],
354
+ [
355
+ "ElementRef",
356
+ "@angular/core"
357
+ ],
358
+ [
359
+ "inject",
360
+ "@angular/core"
361
+ ],
362
+ [
363
+ "input",
364
+ "@angular/core"
365
+ ],
366
+ [
367
+ "model",
368
+ "@angular/core"
369
+ ],
370
+ [
371
+ "signal",
372
+ "@angular/core"
373
+ ],
374
+ [
375
+ "untracked",
376
+ "@angular/core"
377
+ ],
378
+ [
379
+ "ComboboxListboxPattern",
380
+ "@angular/aria/private"
381
+ ],
382
+ [
383
+ "ListboxPattern",
384
+ "@angular/aria/private"
385
+ ],
386
+ [
387
+ "OptionPattern",
388
+ "@angular/aria/private"
389
+ ],
390
+ [
391
+ "Directionality",
392
+ "@angular/cdk/bidi"
393
+ ],
394
+ [
395
+ "toSignal",
396
+ "@angular/core/rxjs-interop"
397
+ ],
398
+ [
399
+ "_IdGenerator",
400
+ "@angular/cdk/a11y"
401
+ ],
402
+ [
403
+ "Listbox",
404
+ "@angular/aria/listbox"
405
+ ],
406
+ [
407
+ "Option",
408
+ "@angular/aria/listbox"
409
+ ],
410
+ [
411
+ "Listbox",
412
+ "@angular/aria/listbox"
413
+ ],
414
+ [
415
+ "Listbox.id",
416
+ "@angular/aria/listbox"
417
+ ],
418
+ [
419
+ "Listbox.textDirection",
420
+ "@angular/aria/listbox"
421
+ ],
422
+ [
423
+ "Listbox.items",
424
+ "@angular/aria/listbox"
425
+ ],
426
+ [
427
+ "Listbox.orientation",
428
+ "@angular/aria/listbox"
429
+ ],
430
+ [
431
+ "Listbox.multi",
432
+ "@angular/aria/listbox"
433
+ ],
434
+ [
435
+ "Listbox.wrap",
436
+ "@angular/aria/listbox"
437
+ ],
438
+ [
439
+ "Listbox.skipDisabled",
440
+ "@angular/aria/listbox"
441
+ ],
442
+ [
443
+ "Listbox.focusMode",
444
+ "@angular/aria/listbox"
445
+ ],
446
+ [
447
+ "Listbox.selectionMode",
448
+ "@angular/aria/listbox"
449
+ ],
450
+ [
451
+ "Listbox.typeaheadDelay",
452
+ "@angular/aria/listbox"
453
+ ],
454
+ [
455
+ "Listbox.disabled",
456
+ "@angular/aria/listbox"
457
+ ],
458
+ [
459
+ "Listbox.readonly",
460
+ "@angular/aria/listbox"
461
+ ],
462
+ [
463
+ "Listbox.value",
464
+ "@angular/aria/listbox"
465
+ ],
466
+ [
467
+ "Listbox.onFocus",
468
+ "@angular/aria/listbox"
469
+ ],
470
+ [
471
+ "Listbox.scrollActiveItemIntoView",
472
+ "@angular/aria/listbox"
473
+ ],
474
+ [
475
+ "Option",
476
+ "@angular/aria/listbox"
477
+ ],
478
+ [
479
+ "Option.id",
480
+ "@angular/aria/listbox"
481
+ ],
482
+ [
483
+ "Option.searchTerm",
484
+ "@angular/aria/listbox"
485
+ ],
486
+ [
487
+ "Option.listbox",
488
+ "@angular/aria/listbox"
489
+ ],
490
+ [
491
+ "Option.element",
492
+ "@angular/aria/listbox"
493
+ ],
494
+ [
495
+ "Option.value",
496
+ "@angular/aria/listbox"
497
+ ],
498
+ [
499
+ "Option.disabled",
500
+ "@angular/aria/listbox"
501
+ ],
502
+ [
503
+ "Option.label",
504
+ "@angular/aria/listbox"
505
+ ],
506
+ [
507
+ "Option.selected",
508
+ "@angular/aria/listbox"
509
+ ]
510
+ ]
511
+ }