@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,383 @@
1
+ {
2
+ "repo": "angular/components",
3
+ "moduleLabel": "@angular/aria/combobox",
4
+ "moduleName": "@angular/aria/combobox",
5
+ "normalizedModuleName": "angular_aria_combobox",
6
+ "entries": [
7
+ {
8
+ "name": "Combobox",
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": "popup",
24
+ "type": "any",
25
+ "memberType": "property",
26
+ "memberTags": [
27
+ "readonly"
28
+ ],
29
+ "description": "The combobox popup.",
30
+ "jsdocTags": []
31
+ },
32
+ {
33
+ "name": "filterMode",
34
+ "type": "any",
35
+ "memberType": "property",
36
+ "memberTags": [],
37
+ "description": "The filter mode for the combobox.",
38
+ "jsdocTags": []
39
+ },
40
+ {
41
+ "name": "isFocused",
42
+ "type": "any",
43
+ "memberType": "property",
44
+ "memberTags": [
45
+ "readonly"
46
+ ],
47
+ "description": "Whether the combobox is focused.",
48
+ "jsdocTags": []
49
+ },
50
+ {
51
+ "name": "disabled",
52
+ "type": "any",
53
+ "memberType": "property",
54
+ "memberTags": [
55
+ "readonly"
56
+ ],
57
+ "description": "Whether the combobox is disabled.",
58
+ "jsdocTags": []
59
+ },
60
+ {
61
+ "name": "readonly",
62
+ "type": "any",
63
+ "memberType": "property",
64
+ "memberTags": [
65
+ "readonly"
66
+ ],
67
+ "description": "Whether the combobox is read-only.",
68
+ "jsdocTags": []
69
+ },
70
+ {
71
+ "name": "firstMatch",
72
+ "type": "any",
73
+ "memberType": "property",
74
+ "memberTags": [
75
+ "readonly"
76
+ ],
77
+ "description": "The value of the first matching item in the popup.",
78
+ "jsdocTags": []
79
+ },
80
+ {
81
+ "name": "expanded",
82
+ "type": "any",
83
+ "memberType": "property",
84
+ "memberTags": [
85
+ "readonly"
86
+ ],
87
+ "description": "Whether the combobox is expanded.",
88
+ "jsdocTags": []
89
+ },
90
+ {
91
+ "name": "inputElement",
92
+ "type": "any",
93
+ "memberType": "property",
94
+ "memberTags": [
95
+ "readonly"
96
+ ],
97
+ "description": "Input element connected to the combobox, if any.",
98
+ "jsdocTags": []
99
+ }
100
+ ],
101
+ "generics": [
102
+ {
103
+ "name": "V"
104
+ }
105
+ ],
106
+ "description": "",
107
+ "jsdocTags": [],
108
+ "rawComment": "",
109
+ "implements": [],
110
+ "source": {
111
+ "filePath": "src/aria/combobox/combobox.ts",
112
+ "startLine": 31,
113
+ "endLine": 116
114
+ }
115
+ },
116
+ {
117
+ "name": "ComboboxInput",
118
+ "isAbstract": false,
119
+ "entryType": "directive",
120
+ "members": [
121
+ {
122
+ "name": "combobox",
123
+ "type": "any",
124
+ "memberType": "property",
125
+ "memberTags": [
126
+ "readonly"
127
+ ],
128
+ "description": "The combobox that the input belongs to.",
129
+ "jsdocTags": []
130
+ },
131
+ {
132
+ "name": "value",
133
+ "type": "any",
134
+ "memberType": "property",
135
+ "memberTags": [
136
+ "input",
137
+ "output"
138
+ ],
139
+ "description": "The value of the input.",
140
+ "jsdocTags": [],
141
+ "inputAlias": "value",
142
+ "isRequiredInput": false,
143
+ "outputAlias": "valueChange"
144
+ }
145
+ ],
146
+ "generics": [],
147
+ "description": "",
148
+ "jsdocTags": [],
149
+ "rawComment": "",
150
+ "implements": [],
151
+ "isStandalone": true,
152
+ "selector": "input[ngComboboxInput]",
153
+ "exportAs": [
154
+ "ngComboboxInput"
155
+ ],
156
+ "source": {
157
+ "filePath": "src/aria/combobox/combobox.ts",
158
+ "startLine": 118,
159
+ "endLine": 153
160
+ }
161
+ },
162
+ {
163
+ "name": "ComboboxPopupContainer",
164
+ "isAbstract": false,
165
+ "entryType": "undecorated_class",
166
+ "members": [],
167
+ "generics": [],
168
+ "description": "",
169
+ "jsdocTags": [],
170
+ "rawComment": "",
171
+ "implements": [],
172
+ "source": {
173
+ "filePath": "src/aria/combobox/combobox.ts",
174
+ "startLine": 155,
175
+ "endLine": 160
176
+ }
177
+ },
178
+ {
179
+ "name": "ComboboxPopup",
180
+ "isAbstract": false,
181
+ "entryType": "directive",
182
+ "members": [
183
+ {
184
+ "name": "combobox",
185
+ "type": "any",
186
+ "memberType": "property",
187
+ "memberTags": [
188
+ "readonly"
189
+ ],
190
+ "description": "The combobox that the popup belongs to.",
191
+ "jsdocTags": []
192
+ },
193
+ {
194
+ "name": "controls",
195
+ "type": "any",
196
+ "memberType": "property",
197
+ "memberTags": [
198
+ "readonly"
199
+ ],
200
+ "description": "The controls the popup exposes to the combobox.",
201
+ "jsdocTags": []
202
+ }
203
+ ],
204
+ "generics": [
205
+ {
206
+ "name": "V"
207
+ }
208
+ ],
209
+ "description": "",
210
+ "jsdocTags": [],
211
+ "rawComment": "",
212
+ "implements": [],
213
+ "isStandalone": true,
214
+ "selector": "[ngComboboxPopup]",
215
+ "exportAs": [
216
+ "ngComboboxPopup"
217
+ ],
218
+ "source": {
219
+ "filePath": "src/aria/combobox/combobox.ts",
220
+ "startLine": 162,
221
+ "endLine": 174
222
+ }
223
+ }
224
+ ],
225
+ "symbols": [
226
+ [
227
+ "afterRenderEffect",
228
+ "@angular/core"
229
+ ],
230
+ [
231
+ "computed",
232
+ "@angular/core"
233
+ ],
234
+ [
235
+ "contentChild",
236
+ "@angular/core"
237
+ ],
238
+ [
239
+ "Directive",
240
+ "@angular/core"
241
+ ],
242
+ [
243
+ "ElementRef",
244
+ "@angular/core"
245
+ ],
246
+ [
247
+ "inject",
248
+ "@angular/core"
249
+ ],
250
+ [
251
+ "input",
252
+ "@angular/core"
253
+ ],
254
+ [
255
+ "model",
256
+ "@angular/core"
257
+ ],
258
+ [
259
+ "signal",
260
+ "@angular/core"
261
+ ],
262
+ [
263
+ "untracked",
264
+ "@angular/core"
265
+ ],
266
+ [
267
+ "WritableSignal",
268
+ "@angular/core"
269
+ ],
270
+ [
271
+ "DeferredContent",
272
+ "@angular/aria/deferred-content"
273
+ ],
274
+ [
275
+ "DeferredContentAware",
276
+ "@angular/aria/deferred-content"
277
+ ],
278
+ [
279
+ "ComboboxPattern",
280
+ "@angular/aria/private"
281
+ ],
282
+ [
283
+ "ComboboxListboxControls",
284
+ "@angular/aria/private"
285
+ ],
286
+ [
287
+ "ComboboxTreeControls",
288
+ "@angular/aria/private"
289
+ ],
290
+ [
291
+ "Directionality",
292
+ "@angular/cdk/bidi"
293
+ ],
294
+ [
295
+ "toSignal",
296
+ "@angular/core/rxjs-interop"
297
+ ],
298
+ [
299
+ "Combobox",
300
+ "@angular/aria/combobox"
301
+ ],
302
+ [
303
+ "ComboboxInput",
304
+ "@angular/aria/combobox"
305
+ ],
306
+ [
307
+ "ComboboxPopupContainer",
308
+ "@angular/aria/combobox"
309
+ ],
310
+ [
311
+ "ComboboxPopup",
312
+ "@angular/aria/combobox"
313
+ ],
314
+ [
315
+ "Combobox",
316
+ "@angular/aria/combobox"
317
+ ],
318
+ [
319
+ "Combobox.textDirection",
320
+ "@angular/aria/combobox"
321
+ ],
322
+ [
323
+ "Combobox.popup",
324
+ "@angular/aria/combobox"
325
+ ],
326
+ [
327
+ "Combobox.filterMode",
328
+ "@angular/aria/combobox"
329
+ ],
330
+ [
331
+ "Combobox.isFocused",
332
+ "@angular/aria/combobox"
333
+ ],
334
+ [
335
+ "Combobox.disabled",
336
+ "@angular/aria/combobox"
337
+ ],
338
+ [
339
+ "Combobox.readonly",
340
+ "@angular/aria/combobox"
341
+ ],
342
+ [
343
+ "Combobox.firstMatch",
344
+ "@angular/aria/combobox"
345
+ ],
346
+ [
347
+ "Combobox.expanded",
348
+ "@angular/aria/combobox"
349
+ ],
350
+ [
351
+ "Combobox.inputElement",
352
+ "@angular/aria/combobox"
353
+ ],
354
+ [
355
+ "ComboboxInput",
356
+ "@angular/aria/combobox"
357
+ ],
358
+ [
359
+ "ComboboxInput.combobox",
360
+ "@angular/aria/combobox"
361
+ ],
362
+ [
363
+ "ComboboxInput.value",
364
+ "@angular/aria/combobox"
365
+ ],
366
+ [
367
+ "ComboboxPopupContainer",
368
+ "@angular/aria/combobox"
369
+ ],
370
+ [
371
+ "ComboboxPopup",
372
+ "@angular/aria/combobox"
373
+ ],
374
+ [
375
+ "ComboboxPopup.combobox",
376
+ "@angular/aria/combobox"
377
+ ],
378
+ [
379
+ "ComboboxPopup.controls",
380
+ "@angular/aria/combobox"
381
+ ]
382
+ ]
383
+ }