@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,389 @@
1
+ {
2
+ "repo": "angular/components",
3
+ "moduleLabel": "@angular/aria/radio-group",
4
+ "moduleName": "@angular/aria/radio-group",
5
+ "normalizedModuleName": "angular_aria_radio-group",
6
+ "entries": [
7
+ {
8
+ "name": "RadioGroup",
9
+ "isAbstract": false,
10
+ "entryType": "undecorated_class",
11
+ "members": [
12
+ {
13
+ "name": "textDirection",
14
+ "type": "any",
15
+ "memberType": "property",
16
+ "memberTags": [
17
+ "protected"
18
+ ],
19
+ "description": "A signal wrapper for directionality.",
20
+ "jsdocTags": []
21
+ },
22
+ {
23
+ "name": "items",
24
+ "type": "any",
25
+ "memberType": "property",
26
+ "memberTags": [
27
+ "protected"
28
+ ],
29
+ "description": "The RadioButton UIPatterns of the child RadioButtons.",
30
+ "jsdocTags": []
31
+ },
32
+ {
33
+ "name": "orientation",
34
+ "type": "any",
35
+ "memberType": "property",
36
+ "memberTags": [
37
+ "readonly"
38
+ ],
39
+ "description": "Whether the radio group is vertically or horizontally oriented.",
40
+ "jsdocTags": []
41
+ },
42
+ {
43
+ "name": "skipDisabled",
44
+ "type": "any",
45
+ "memberType": "property",
46
+ "memberTags": [
47
+ "readonly"
48
+ ],
49
+ "description": "Whether disabled items in the group should be skipped when navigating.",
50
+ "jsdocTags": []
51
+ },
52
+ {
53
+ "name": "focusMode",
54
+ "type": "any",
55
+ "memberType": "property",
56
+ "memberTags": [
57
+ "readonly"
58
+ ],
59
+ "description": "The focus strategy used by the radio group.",
60
+ "jsdocTags": []
61
+ },
62
+ {
63
+ "name": "disabled",
64
+ "type": "any",
65
+ "memberType": "property",
66
+ "memberTags": [
67
+ "readonly"
68
+ ],
69
+ "description": "Whether the radio group is disabled.",
70
+ "jsdocTags": []
71
+ },
72
+ {
73
+ "name": "readonly",
74
+ "type": "any",
75
+ "memberType": "property",
76
+ "memberTags": [
77
+ "readonly"
78
+ ],
79
+ "description": "Whether the radio group is readonly.",
80
+ "jsdocTags": []
81
+ },
82
+ {
83
+ "name": "value",
84
+ "type": "any",
85
+ "memberType": "property",
86
+ "memberTags": [
87
+ "readonly"
88
+ ],
89
+ "description": "The value of the currently selected radio button.",
90
+ "jsdocTags": []
91
+ },
92
+ {
93
+ "name": "onFocus",
94
+ "signatures": [
95
+ {
96
+ "name": "onFocus",
97
+ "entryType": "function",
98
+ "description": "",
99
+ "generics": [],
100
+ "isNewType": false,
101
+ "jsdocTags": [],
102
+ "params": [],
103
+ "rawComment": "",
104
+ "returnType": "void"
105
+ }
106
+ ],
107
+ "implementation": {
108
+ "params": [],
109
+ "isNewType": false,
110
+ "returnType": "void",
111
+ "generics": [],
112
+ "name": "onFocus",
113
+ "description": "",
114
+ "entryType": "function",
115
+ "jsdocTags": [],
116
+ "rawComment": ""
117
+ },
118
+ "entryType": "function",
119
+ "description": "",
120
+ "jsdocTags": [],
121
+ "rawComment": "",
122
+ "memberType": "method",
123
+ "memberTags": []
124
+ }
125
+ ],
126
+ "generics": [
127
+ {
128
+ "name": "V"
129
+ }
130
+ ],
131
+ "description": "A radio button group container.\n\nRadio groups are used to group multiple radio buttons or radio group labels so they function as\na single form control. The RadioGroup is meant to be used in conjunction with RadioButton\nas follows:\n\n```html\n<div ngRadioGroup>\n <div ngRadioButton value=\"1\">Option 1</div>\n <div ngRadioButton value=\"2\">Option 2</div>\n <div ngRadioButton value=\"3\">Option 3</div>\n</div>\n```",
132
+ "jsdocTags": [],
133
+ "rawComment": "/**\n * A radio button group container.\n *\n * Radio groups are used to group multiple radio buttons or radio group labels so they function as\n * a single form control. The RadioGroup is meant to be used in conjunction with RadioButton\n * as follows:\n *\n * ```html\n * <div ngRadioGroup>\n * <div ngRadioButton value=\"1\">Option 1</div>\n * <div ngRadioButton value=\"2\">Option 2</div>\n * <div ngRadioButton value=\"3\">Option 3</div>\n * </div>\n * ```\n */",
134
+ "implements": [],
135
+ "source": {
136
+ "filePath": "/src/aria/radio-group/radio-group.ts",
137
+ "startLine": 84,
138
+ "endLine": 200
139
+ }
140
+ },
141
+ {
142
+ "name": "RadioButton",
143
+ "isAbstract": false,
144
+ "entryType": "directive",
145
+ "members": [
146
+ {
147
+ "name": "id",
148
+ "type": "any",
149
+ "memberType": "property",
150
+ "memberTags": [
151
+ "readonly"
152
+ ],
153
+ "description": "A unique identifier for the radio button.",
154
+ "jsdocTags": []
155
+ },
156
+ {
157
+ "name": "value",
158
+ "type": "any",
159
+ "memberType": "property",
160
+ "memberTags": [
161
+ "readonly",
162
+ "input"
163
+ ],
164
+ "description": "The value associated with the radio button.",
165
+ "jsdocTags": [],
166
+ "inputAlias": "value",
167
+ "isRequiredInput": true
168
+ },
169
+ {
170
+ "name": "group",
171
+ "type": "any",
172
+ "memberType": "property",
173
+ "memberTags": [
174
+ "readonly"
175
+ ],
176
+ "description": "The parent RadioGroup UIPattern.",
177
+ "jsdocTags": []
178
+ },
179
+ {
180
+ "name": "element",
181
+ "type": "any",
182
+ "memberType": "property",
183
+ "memberTags": [],
184
+ "description": "A reference to the radio button element to be focused on navigation.",
185
+ "jsdocTags": []
186
+ },
187
+ {
188
+ "name": "disabled",
189
+ "type": "any",
190
+ "memberType": "property",
191
+ "memberTags": [
192
+ "input"
193
+ ],
194
+ "description": "Whether the radio button is disabled.",
195
+ "jsdocTags": [],
196
+ "inputAlias": "disabled",
197
+ "isRequiredInput": false
198
+ },
199
+ {
200
+ "name": "selected",
201
+ "type": "any",
202
+ "memberType": "property",
203
+ "memberTags": [
204
+ "readonly"
205
+ ],
206
+ "description": "Whether the radio button is selected.",
207
+ "jsdocTags": []
208
+ }
209
+ ],
210
+ "generics": [
211
+ {
212
+ "name": "V"
213
+ }
214
+ ],
215
+ "description": "A selectable radio button in a RadioGroup.",
216
+ "jsdocTags": [],
217
+ "rawComment": "/** A selectable radio button in a RadioGroup. */",
218
+ "implements": [],
219
+ "isStandalone": true,
220
+ "selector": "[ngRadioButton]",
221
+ "exportAs": [
222
+ "ngRadioButton"
223
+ ],
224
+ "source": {
225
+ "filePath": "/src/aria/radio-group/radio-group.ts",
226
+ "startLine": 203,
227
+ "endLine": 252
228
+ }
229
+ }
230
+ ],
231
+ "symbols": [
232
+ [
233
+ "afterRenderEffect",
234
+ "@angular/core"
235
+ ],
236
+ [
237
+ "booleanAttribute",
238
+ "@angular/core"
239
+ ],
240
+ [
241
+ "computed",
242
+ "@angular/core"
243
+ ],
244
+ [
245
+ "contentChildren",
246
+ "@angular/core"
247
+ ],
248
+ [
249
+ "Directive",
250
+ "@angular/core"
251
+ ],
252
+ [
253
+ "ElementRef",
254
+ "@angular/core"
255
+ ],
256
+ [
257
+ "inject",
258
+ "@angular/core"
259
+ ],
260
+ [
261
+ "input",
262
+ "@angular/core"
263
+ ],
264
+ [
265
+ "linkedSignal",
266
+ "@angular/core"
267
+ ],
268
+ [
269
+ "model",
270
+ "@angular/core"
271
+ ],
272
+ [
273
+ "signal",
274
+ "@angular/core"
275
+ ],
276
+ [
277
+ "WritableSignal",
278
+ "@angular/core"
279
+ ],
280
+ [
281
+ "RadioButtonPattern",
282
+ "@angular/aria/private"
283
+ ],
284
+ [
285
+ "RadioGroupInputs",
286
+ "@angular/aria/private"
287
+ ],
288
+ [
289
+ "RadioGroupPattern",
290
+ "@angular/aria/private"
291
+ ],
292
+ [
293
+ "ToolbarRadioGroupInputs",
294
+ "@angular/aria/private"
295
+ ],
296
+ [
297
+ "ToolbarRadioGroupPattern",
298
+ "@angular/aria/private"
299
+ ],
300
+ [
301
+ "Directionality",
302
+ "@angular/cdk/bidi"
303
+ ],
304
+ [
305
+ "_IdGenerator",
306
+ "@angular/cdk/a11y"
307
+ ],
308
+ [
309
+ "ToolbarWidgetGroup",
310
+ "@angular/aria/toolbar"
311
+ ],
312
+ [
313
+ "RadioGroup",
314
+ "@angular/aria/radio-group"
315
+ ],
316
+ [
317
+ "RadioButton",
318
+ "@angular/aria/radio-group"
319
+ ],
320
+ [
321
+ "RadioGroup",
322
+ "@angular/aria/radio-group"
323
+ ],
324
+ [
325
+ "RadioGroup.textDirection",
326
+ "@angular/aria/radio-group"
327
+ ],
328
+ [
329
+ "RadioGroup.items",
330
+ "@angular/aria/radio-group"
331
+ ],
332
+ [
333
+ "RadioGroup.orientation",
334
+ "@angular/aria/radio-group"
335
+ ],
336
+ [
337
+ "RadioGroup.skipDisabled",
338
+ "@angular/aria/radio-group"
339
+ ],
340
+ [
341
+ "RadioGroup.focusMode",
342
+ "@angular/aria/radio-group"
343
+ ],
344
+ [
345
+ "RadioGroup.disabled",
346
+ "@angular/aria/radio-group"
347
+ ],
348
+ [
349
+ "RadioGroup.readonly",
350
+ "@angular/aria/radio-group"
351
+ ],
352
+ [
353
+ "RadioGroup.value",
354
+ "@angular/aria/radio-group"
355
+ ],
356
+ [
357
+ "RadioGroup.onFocus",
358
+ "@angular/aria/radio-group"
359
+ ],
360
+ [
361
+ "RadioButton",
362
+ "@angular/aria/radio-group"
363
+ ],
364
+ [
365
+ "RadioButton.id",
366
+ "@angular/aria/radio-group"
367
+ ],
368
+ [
369
+ "RadioButton.value",
370
+ "@angular/aria/radio-group"
371
+ ],
372
+ [
373
+ "RadioButton.group",
374
+ "@angular/aria/radio-group"
375
+ ],
376
+ [
377
+ "RadioButton.element",
378
+ "@angular/aria/radio-group"
379
+ ],
380
+ [
381
+ "RadioButton.disabled",
382
+ "@angular/aria/radio-group"
383
+ ],
384
+ [
385
+ "RadioButton.selected",
386
+ "@angular/aria/radio-group"
387
+ ]
388
+ ]
389
+ }