@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,373 @@
1
+ {
2
+ "repo": "angular/components",
3
+ "moduleLabel": "@angular/aria/accordion",
4
+ "moduleName": "@angular/aria/accordion",
5
+ "normalizedModuleName": "angular_aria_accordion",
6
+ "entries": [
7
+ {
8
+ "name": "AccordionPanel",
9
+ "isAbstract": false,
10
+ "entryType": "undecorated_class",
11
+ "members": [
12
+ {
13
+ "name": "value",
14
+ "type": "any",
15
+ "memberType": "property",
16
+ "memberTags": [],
17
+ "description": "A local unique identifier for the panel, used to match with its trigger's value.",
18
+ "jsdocTags": []
19
+ },
20
+ {
21
+ "name": "accordionTrigger",
22
+ "type": "WritableSignal<any>",
23
+ "memberType": "property",
24
+ "memberTags": [
25
+ "readonly"
26
+ ],
27
+ "description": "The parent accordion trigger pattern that controls this panel. This is set by AccordionGroup.",
28
+ "jsdocTags": []
29
+ }
30
+ ],
31
+ "generics": [],
32
+ "description": "Represents the content panel of an accordion item. It is controlled by an\nassociated `AccordionTrigger`.",
33
+ "jsdocTags": [],
34
+ "rawComment": "/**\n * Represents the content panel of an accordion item. It is controlled by an\n * associated `AccordionTrigger`.\n */",
35
+ "implements": [],
36
+ "source": {
37
+ "filePath": "src/aria/accordion/accordion.ts",
38
+ "startLine": 35,
39
+ "endLine": 79
40
+ }
41
+ },
42
+ {
43
+ "name": "AccordionTrigger",
44
+ "isAbstract": false,
45
+ "entryType": "directive",
46
+ "members": [
47
+ {
48
+ "name": "value",
49
+ "type": "any",
50
+ "memberType": "property",
51
+ "memberTags": [
52
+ "input"
53
+ ],
54
+ "description": "A local unique identifier for the trigger, used to match with its panel's value.",
55
+ "jsdocTags": [],
56
+ "inputAlias": "value",
57
+ "isRequiredInput": true
58
+ },
59
+ {
60
+ "name": "disabled",
61
+ "type": "any",
62
+ "memberType": "property",
63
+ "memberTags": [
64
+ "input"
65
+ ],
66
+ "description": "Whether the trigger is disabled.",
67
+ "jsdocTags": [],
68
+ "inputAlias": "disabled",
69
+ "isRequiredInput": false
70
+ },
71
+ {
72
+ "name": "hardDisabled",
73
+ "type": "any",
74
+ "memberType": "property",
75
+ "memberTags": [
76
+ "readonly"
77
+ ],
78
+ "description": "Whether this trigger is completely inaccessible.\n\nTODO(ok7sai): Consider move this to UI patterns.",
79
+ "jsdocTags": []
80
+ },
81
+ {
82
+ "name": "accordionPanel",
83
+ "type": "WritableSignal<any>",
84
+ "memberType": "property",
85
+ "memberTags": [
86
+ "readonly"
87
+ ],
88
+ "description": "The accordion panel pattern controlled by this trigger. This is set by AccordionGroup.",
89
+ "jsdocTags": []
90
+ }
91
+ ],
92
+ "generics": [],
93
+ "description": "Represents the trigger button for an accordion item. It controls the expansion\nstate of an associated `AccordionPanel`.",
94
+ "jsdocTags": [],
95
+ "rawComment": "/**\n * Represents the trigger button for an accordion item. It controls the expansion\n * state of an associated `AccordionPanel`.\n */",
96
+ "implements": [],
97
+ "isStandalone": true,
98
+ "selector": "[ngAccordionTrigger]",
99
+ "exportAs": [
100
+ "ngAccordionTrigger"
101
+ ],
102
+ "source": {
103
+ "filePath": "src/aria/accordion/accordion.ts",
104
+ "startLine": 85,
105
+ "endLine": 138
106
+ }
107
+ },
108
+ {
109
+ "name": "AccordionGroup",
110
+ "isAbstract": false,
111
+ "entryType": "directive",
112
+ "members": [
113
+ {
114
+ "name": "textDirection",
115
+ "type": "any",
116
+ "memberType": "property",
117
+ "memberTags": [
118
+ "readonly"
119
+ ],
120
+ "description": "The text direction (ltr or rtl).",
121
+ "jsdocTags": []
122
+ },
123
+ {
124
+ "name": "disabled",
125
+ "type": "any",
126
+ "memberType": "property",
127
+ "memberTags": [
128
+ "input"
129
+ ],
130
+ "description": "Whether the entire accordion group is disabled.",
131
+ "jsdocTags": [],
132
+ "inputAlias": "disabled",
133
+ "isRequiredInput": false
134
+ },
135
+ {
136
+ "name": "multiExpandable",
137
+ "type": "any",
138
+ "memberType": "property",
139
+ "memberTags": [
140
+ "input"
141
+ ],
142
+ "description": "Whether multiple accordion items can be expanded simultaneously.",
143
+ "jsdocTags": [],
144
+ "inputAlias": "multiExpandable",
145
+ "isRequiredInput": false
146
+ },
147
+ {
148
+ "name": "value",
149
+ "type": "any",
150
+ "memberType": "property",
151
+ "memberTags": [
152
+ "input",
153
+ "output"
154
+ ],
155
+ "description": "The values of the current selected/expanded accordions.",
156
+ "jsdocTags": [],
157
+ "inputAlias": "value",
158
+ "isRequiredInput": false,
159
+ "outputAlias": "valueChange"
160
+ },
161
+ {
162
+ "name": "skipDisabled",
163
+ "type": "any",
164
+ "memberType": "property",
165
+ "memberTags": [
166
+ "input"
167
+ ],
168
+ "description": "Whether disabled items should be skipped during keyboard navigation.",
169
+ "jsdocTags": [],
170
+ "inputAlias": "skipDisabled",
171
+ "isRequiredInput": false
172
+ },
173
+ {
174
+ "name": "wrap",
175
+ "type": "any",
176
+ "memberType": "property",
177
+ "memberTags": [
178
+ "input"
179
+ ],
180
+ "description": "Whether keyboard navigation should wrap around from the last item to the first, and vice-versa.",
181
+ "jsdocTags": [],
182
+ "inputAlias": "wrap",
183
+ "isRequiredInput": false
184
+ }
185
+ ],
186
+ "generics": [],
187
+ "description": "Container for a group of accordion items. It manages the overall state and\ninteractions of the accordion, such as keyboard navigation and expansion mode.",
188
+ "jsdocTags": [],
189
+ "rawComment": "/**\n * Container for a group of accordion items. It manages the overall state and\n * interactions of the accordion, such as keyboard navigation and expansion mode.\n */",
190
+ "implements": [],
191
+ "isStandalone": true,
192
+ "selector": "[ngAccordionGroup]",
193
+ "exportAs": [
194
+ "ngAccordionGroup"
195
+ ],
196
+ "source": {
197
+ "filePath": "src/aria/accordion/accordion.ts",
198
+ "startLine": 144,
199
+ "endLine": 207
200
+ }
201
+ },
202
+ {
203
+ "name": "AccordionContent",
204
+ "isAbstract": false,
205
+ "entryType": "undecorated_class",
206
+ "members": [],
207
+ "generics": [],
208
+ "description": "A structural directive that marks the `ng-template` to be used as the content\nfor a `AccordionPanel`. This content can be lazily loaded.",
209
+ "jsdocTags": [],
210
+ "rawComment": "/**\n * A structural directive that marks the `ng-template` to be used as the content\n * for a `AccordionPanel`. This content can be lazily loaded.\n */",
211
+ "implements": [],
212
+ "source": {
213
+ "filePath": "src/aria/accordion/accordion.ts",
214
+ "startLine": 213,
215
+ "endLine": 217
216
+ }
217
+ }
218
+ ],
219
+ "symbols": [
220
+ [
221
+ "Directive",
222
+ "@angular/core"
223
+ ],
224
+ [
225
+ "input",
226
+ "@angular/core"
227
+ ],
228
+ [
229
+ "ElementRef",
230
+ "@angular/core"
231
+ ],
232
+ [
233
+ "inject",
234
+ "@angular/core"
235
+ ],
236
+ [
237
+ "contentChildren",
238
+ "@angular/core"
239
+ ],
240
+ [
241
+ "afterRenderEffect",
242
+ "@angular/core"
243
+ ],
244
+ [
245
+ "signal",
246
+ "@angular/core"
247
+ ],
248
+ [
249
+ "model",
250
+ "@angular/core"
251
+ ],
252
+ [
253
+ "booleanAttribute",
254
+ "@angular/core"
255
+ ],
256
+ [
257
+ "computed",
258
+ "@angular/core"
259
+ ],
260
+ [
261
+ "WritableSignal",
262
+ "@angular/core"
263
+ ],
264
+ [
265
+ "_IdGenerator",
266
+ "@angular/cdk/a11y"
267
+ ],
268
+ [
269
+ "Directionality",
270
+ "@angular/cdk/bidi"
271
+ ],
272
+ [
273
+ "DeferredContent",
274
+ "@angular/aria/deferred-content"
275
+ ],
276
+ [
277
+ "DeferredContentAware",
278
+ "@angular/aria/deferred-content"
279
+ ],
280
+ [
281
+ "AccordionGroupPattern",
282
+ "@angular/aria/private"
283
+ ],
284
+ [
285
+ "AccordionPanelPattern",
286
+ "@angular/aria/private"
287
+ ],
288
+ [
289
+ "AccordionTriggerPattern",
290
+ "@angular/aria/private"
291
+ ],
292
+ [
293
+ "AccordionPanel",
294
+ "@angular/aria/accordion"
295
+ ],
296
+ [
297
+ "AccordionTrigger",
298
+ "@angular/aria/accordion"
299
+ ],
300
+ [
301
+ "AccordionGroup",
302
+ "@angular/aria/accordion"
303
+ ],
304
+ [
305
+ "AccordionContent",
306
+ "@angular/aria/accordion"
307
+ ],
308
+ [
309
+ "AccordionPanel",
310
+ "@angular/aria/accordion"
311
+ ],
312
+ [
313
+ "AccordionPanel.value",
314
+ "@angular/aria/accordion"
315
+ ],
316
+ [
317
+ "AccordionPanel.accordionTrigger",
318
+ "@angular/aria/accordion"
319
+ ],
320
+ [
321
+ "AccordionTrigger",
322
+ "@angular/aria/accordion"
323
+ ],
324
+ [
325
+ "AccordionTrigger.value",
326
+ "@angular/aria/accordion"
327
+ ],
328
+ [
329
+ "AccordionTrigger.disabled",
330
+ "@angular/aria/accordion"
331
+ ],
332
+ [
333
+ "AccordionTrigger.hardDisabled",
334
+ "@angular/aria/accordion"
335
+ ],
336
+ [
337
+ "AccordionTrigger.accordionPanel",
338
+ "@angular/aria/accordion"
339
+ ],
340
+ [
341
+ "AccordionGroup",
342
+ "@angular/aria/accordion"
343
+ ],
344
+ [
345
+ "AccordionGroup.textDirection",
346
+ "@angular/aria/accordion"
347
+ ],
348
+ [
349
+ "AccordionGroup.disabled",
350
+ "@angular/aria/accordion"
351
+ ],
352
+ [
353
+ "AccordionGroup.multiExpandable",
354
+ "@angular/aria/accordion"
355
+ ],
356
+ [
357
+ "AccordionGroup.value",
358
+ "@angular/aria/accordion"
359
+ ],
360
+ [
361
+ "AccordionGroup.skipDisabled",
362
+ "@angular/aria/accordion"
363
+ ],
364
+ [
365
+ "AccordionGroup.wrap",
366
+ "@angular/aria/accordion"
367
+ ],
368
+ [
369
+ "AccordionContent",
370
+ "@angular/aria/accordion"
371
+ ]
372
+ ]
373
+ }