@angular/aria 21.0.0-rc.1 → 21.0.0-rc.3
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.
- package/_adev_assets/aria-accordion.json +429 -59
- package/_adev_assets/aria-combobox.json +261 -41
- package/_adev_assets/aria-grid.json +339 -85
- package/_adev_assets/aria-listbox.json +99 -70
- package/_adev_assets/aria-menu.json +355 -158
- package/_adev_assets/aria-tabs.json +198 -305
- package/_adev_assets/aria-toolbar.json +70 -221
- package/_adev_assets/aria-tree.json +153 -363
- package/fesm2022/_widget-chunk.mjs +388 -57
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +125 -72
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/aria.mjs +1 -1
- package/fesm2022/aria.mjs.map +1 -1
- package/fesm2022/combobox.mjs +129 -24
- package/fesm2022/combobox.mjs.map +1 -1
- package/fesm2022/grid.mjs +203 -65
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +50 -39
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +179 -71
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/private.mjs +418 -440
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/tabs.mjs +105 -73
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +52 -44
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +106 -63
- package/fesm2022/tree.mjs.map +1 -1
- package/package.json +2 -2
- package/types/_grid-chunk.d.ts +216 -35
- package/types/accordion.d.ts +134 -35
- package/types/combobox.d.ts +141 -12
- package/types/grid.d.ts +150 -32
- package/types/listbox.d.ts +60 -28
- package/types/menu.d.ts +133 -49
- package/types/private.d.ts +210 -250
- package/types/tabs.d.ts +124 -44
- package/types/toolbar.d.ts +58 -36
- package/types/tree.d.ts +121 -49
|
@@ -20,31 +20,31 @@
|
|
|
20
20
|
"jsdocTags": []
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
"name": "
|
|
24
|
-
"type": "
|
|
23
|
+
"name": "element",
|
|
24
|
+
"type": "HTMLElement",
|
|
25
25
|
"memberType": "property",
|
|
26
26
|
"memberTags": [
|
|
27
27
|
"readonly"
|
|
28
28
|
],
|
|
29
|
-
"description": "
|
|
29
|
+
"description": "A reference to the combobox element.",
|
|
30
30
|
"jsdocTags": []
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
|
-
"name": "
|
|
33
|
+
"name": "popup",
|
|
34
34
|
"type": "any",
|
|
35
35
|
"memberType": "property",
|
|
36
|
-
"memberTags": [
|
|
37
|
-
|
|
36
|
+
"memberTags": [
|
|
37
|
+
"readonly"
|
|
38
|
+
],
|
|
39
|
+
"description": "The combobox popup.",
|
|
38
40
|
"jsdocTags": []
|
|
39
41
|
},
|
|
40
42
|
{
|
|
41
|
-
"name": "
|
|
43
|
+
"name": "filterMode",
|
|
42
44
|
"type": "any",
|
|
43
45
|
"memberType": "property",
|
|
44
|
-
"memberTags": [
|
|
45
|
-
|
|
46
|
-
],
|
|
47
|
-
"description": "Whether the combobox is focused.",
|
|
46
|
+
"memberTags": [],
|
|
47
|
+
"description": "The filter mode for the combobox.\n- `manual`: The consumer is responsible for filtering the options.\n- `auto-select`: The combobox automatically selects the first matching option.\n- `highlight`: The combobox highlights matching text in the options without changing selection.",
|
|
48
48
|
"jsdocTags": []
|
|
49
49
|
},
|
|
50
50
|
{
|
|
@@ -87,6 +87,16 @@
|
|
|
87
87
|
"description": "Whether the combobox is expanded.",
|
|
88
88
|
"jsdocTags": []
|
|
89
89
|
},
|
|
90
|
+
{
|
|
91
|
+
"name": "alwaysExpanded",
|
|
92
|
+
"type": "any",
|
|
93
|
+
"memberType": "property",
|
|
94
|
+
"memberTags": [
|
|
95
|
+
"readonly"
|
|
96
|
+
],
|
|
97
|
+
"description": "Whether the combobox popup should always be expanded, regardless of user interaction.",
|
|
98
|
+
"jsdocTags": []
|
|
99
|
+
},
|
|
90
100
|
{
|
|
91
101
|
"name": "inputElement",
|
|
92
102
|
"type": "any",
|
|
@@ -96,6 +106,72 @@
|
|
|
96
106
|
],
|
|
97
107
|
"description": "Input element connected to the combobox, if any.",
|
|
98
108
|
"jsdocTags": []
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "open",
|
|
112
|
+
"signatures": [
|
|
113
|
+
{
|
|
114
|
+
"name": "open",
|
|
115
|
+
"entryType": "function",
|
|
116
|
+
"description": "Opens the combobox to the selected item.",
|
|
117
|
+
"generics": [],
|
|
118
|
+
"isNewType": false,
|
|
119
|
+
"jsdocTags": [],
|
|
120
|
+
"params": [],
|
|
121
|
+
"rawComment": "/** Opens the combobox to the selected item. */",
|
|
122
|
+
"returnType": "void"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"implementation": {
|
|
126
|
+
"params": [],
|
|
127
|
+
"isNewType": false,
|
|
128
|
+
"returnType": "void",
|
|
129
|
+
"generics": [],
|
|
130
|
+
"name": "open",
|
|
131
|
+
"description": "Opens the combobox to the selected item.",
|
|
132
|
+
"entryType": "function",
|
|
133
|
+
"jsdocTags": [],
|
|
134
|
+
"rawComment": "/** Opens the combobox to the selected item. */"
|
|
135
|
+
},
|
|
136
|
+
"entryType": "function",
|
|
137
|
+
"description": "Opens the combobox to the selected item.",
|
|
138
|
+
"jsdocTags": [],
|
|
139
|
+
"rawComment": "/** Opens the combobox to the selected item. */",
|
|
140
|
+
"memberType": "method",
|
|
141
|
+
"memberTags": []
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "close",
|
|
145
|
+
"signatures": [
|
|
146
|
+
{
|
|
147
|
+
"name": "close",
|
|
148
|
+
"entryType": "function",
|
|
149
|
+
"description": "Closes the combobox.",
|
|
150
|
+
"generics": [],
|
|
151
|
+
"isNewType": false,
|
|
152
|
+
"jsdocTags": [],
|
|
153
|
+
"params": [],
|
|
154
|
+
"rawComment": "/** Closes the combobox. */",
|
|
155
|
+
"returnType": "void"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"implementation": {
|
|
159
|
+
"params": [],
|
|
160
|
+
"isNewType": false,
|
|
161
|
+
"returnType": "void",
|
|
162
|
+
"generics": [],
|
|
163
|
+
"name": "close",
|
|
164
|
+
"description": "Closes the combobox.",
|
|
165
|
+
"entryType": "function",
|
|
166
|
+
"jsdocTags": [],
|
|
167
|
+
"rawComment": "/** Closes the combobox. */"
|
|
168
|
+
},
|
|
169
|
+
"entryType": "function",
|
|
170
|
+
"description": "Closes the combobox.",
|
|
171
|
+
"jsdocTags": [],
|
|
172
|
+
"rawComment": "/** Closes the combobox. */",
|
|
173
|
+
"memberType": "method",
|
|
174
|
+
"memberTags": []
|
|
99
175
|
}
|
|
100
176
|
],
|
|
101
177
|
"generics": [
|
|
@@ -103,14 +179,23 @@
|
|
|
103
179
|
"name": "V"
|
|
104
180
|
}
|
|
105
181
|
],
|
|
106
|
-
"description": "",
|
|
107
|
-
"jsdocTags": [
|
|
108
|
-
|
|
182
|
+
"description": "The container element that wraps a combobox input and popup, and orchestrates its behavior.\n\nThe `ngCombobox` directive is the main entry point for creating a combobox and customizing its\nbehavior. It coordinates the interactions between the `ngComboboxInput` and the popup, which\nis defined by a `ng-template` with the `ngComboboxPopupContainer` directive. If using the\n`CdkOverlay`, the `cdkConnectedOverlay` directive takes the place of `ngComboboxPopupContainer`.\n\n```html\n<div ngCombobox filterMode=\"highlight\">\n <input\n ngComboboxInput\n placeholder=\"Search for a state...\"\n [(value)]=\"searchString\"\n />\n\n <ng-template ngComboboxPopupContainer>\n <div ngListbox [(value)]=\"selectedValue\">",
|
|
183
|
+
"jsdocTags": [
|
|
184
|
+
{
|
|
185
|
+
"name": "for",
|
|
186
|
+
"comment": "(option of filteredOptions(); track option) {\n<div ngOption [value]=\"option\" [label]=\"option\">\n<span>{{option}}</span>\n</div>\n}\n</div>\n</ng-template>\n</div>\n```"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "developerPreview",
|
|
190
|
+
"comment": "21.0"
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"rawComment": "/**\n * The container element that wraps a combobox input and popup, and orchestrates its behavior.\n *\n * The `ngCombobox` directive is the main entry point for creating a combobox and customizing its\n * behavior. It coordinates the interactions between the `ngComboboxInput` and the popup, which\n * is defined by a `ng-template` with the `ngComboboxPopupContainer` directive. If using the\n * `CdkOverlay`, the `cdkConnectedOverlay` directive takes the place of `ngComboboxPopupContainer`.\n *\n * ```html\n * <div ngCombobox filterMode=\"highlight\">\n * <input\n * ngComboboxInput\n * placeholder=\"Search for a state...\"\n * [(value)]=\"searchString\"\n * />\n *\n * <ng-template ngComboboxPopupContainer>\n * <div ngListbox [(value)]=\"selectedValue\">\n * @for (option of filteredOptions(); track option) {\n * <div ngOption [value]=\"option\" [label]=\"option\">\n * <span>{{option}}</span>\n * </div>\n * }\n * </div>\n * </ng-template>\n * </div>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
109
194
|
"implements": [],
|
|
110
195
|
"source": {
|
|
111
196
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
112
|
-
"startLine":
|
|
113
|
-
"endLine":
|
|
197
|
+
"startLine": 64,
|
|
198
|
+
"endLine": 170
|
|
114
199
|
}
|
|
115
200
|
},
|
|
116
201
|
{
|
|
@@ -118,6 +203,16 @@
|
|
|
118
203
|
"isAbstract": false,
|
|
119
204
|
"entryType": "directive",
|
|
120
205
|
"members": [
|
|
206
|
+
{
|
|
207
|
+
"name": "element",
|
|
208
|
+
"type": "HTMLElement",
|
|
209
|
+
"memberType": "property",
|
|
210
|
+
"memberTags": [
|
|
211
|
+
"readonly"
|
|
212
|
+
],
|
|
213
|
+
"description": "A reference to the input element.",
|
|
214
|
+
"jsdocTags": []
|
|
215
|
+
},
|
|
121
216
|
{
|
|
122
217
|
"name": "combobox",
|
|
123
218
|
"type": "any",
|
|
@@ -144,9 +239,14 @@
|
|
|
144
239
|
}
|
|
145
240
|
],
|
|
146
241
|
"generics": [],
|
|
147
|
-
"description": "",
|
|
148
|
-
"jsdocTags": [
|
|
149
|
-
|
|
242
|
+
"description": "An input that is part of a combobox. It is responsible for displaying the\ncurrent value and handling user input for filtering and selection.\n\nThis directive should be applied to an `<input>` element within an `ngCombobox`\ncontainer. It automatically handles keyboard interactions, such as opening the\npopup and navigating through the options.\n\n```html\n<input\n ngComboboxInput\n placeholder=\"Search...\"\n [(value)]=\"searchString\"\n/>\n```",
|
|
243
|
+
"jsdocTags": [
|
|
244
|
+
{
|
|
245
|
+
"name": "developerPreview",
|
|
246
|
+
"comment": "21.0"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"rawComment": "/**\n * An input that is part of a combobox. It is responsible for displaying the\n * current value and handling user input for filtering and selection.\n *\n * This directive should be applied to an `<input>` element within an `ngCombobox`\n * container. It automatically handles keyboard interactions, such as opening the\n * popup and navigating through the options.\n *\n * ```html\n * <input\n * ngComboboxInput\n * placeholder=\"Search...\"\n * [(value)]=\"searchString\"\n * />\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
150
250
|
"implements": [],
|
|
151
251
|
"isStandalone": true,
|
|
152
252
|
"selector": "input[ngComboboxInput]",
|
|
@@ -155,8 +255,8 @@
|
|
|
155
255
|
],
|
|
156
256
|
"source": {
|
|
157
257
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
158
|
-
"startLine":
|
|
159
|
-
"endLine":
|
|
258
|
+
"startLine": 190,
|
|
259
|
+
"endLine": 236
|
|
160
260
|
}
|
|
161
261
|
},
|
|
162
262
|
{
|
|
@@ -165,14 +265,19 @@
|
|
|
165
265
|
"entryType": "undecorated_class",
|
|
166
266
|
"members": [],
|
|
167
267
|
"generics": [],
|
|
168
|
-
"description": "",
|
|
169
|
-
"jsdocTags": [
|
|
170
|
-
|
|
268
|
+
"description": "A structural directive that marks the `ng-template` to be used as the popup\nfor a combobox. This content is conditionally rendered.\n\nThe content of the popup can be a `ngListbox`, `ngTree`, or `role=\"dialog\"`, allowing for\nflexible and complex combobox implementations. The consumer is responsible for\nimplementing the filtering logic based on the `ngComboboxInput`'s value.\n\n```html\n<ng-template ngComboboxPopupContainer>\n <div ngListbox [(value)]=\"selectedValue\">\n <!-- ... options ... -->\n </div>\n</ng-template>\n```\n\nWhen using CdkOverlay, this directive can be replaced by `cdkConnectedOverlay`.\n\n```html\n<ng-template\n [cdkConnectedOverlay]=\"{origin: inputElement, usePopover: 'inline' matchWidth: true}\"\n [cdkConnectedOverlayOpen]=\"combobox.expanded()\">\n <div ngListbox [(value)]=\"selectedValue\">\n <!-- ... options ... -->\n </div>\n</ng-template>\n```",
|
|
269
|
+
"jsdocTags": [
|
|
270
|
+
{
|
|
271
|
+
"name": "developerPreview",
|
|
272
|
+
"comment": "21.0"
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"rawComment": "/**\n * A structural directive that marks the `ng-template` to be used as the popup\n * for a combobox. This content is conditionally rendered.\n *\n * The content of the popup can be a `ngListbox`, `ngTree`, or `role=\"dialog\"`, allowing for\n * flexible and complex combobox implementations. The consumer is responsible for\n * implementing the filtering logic based on the `ngComboboxInput`'s value.\n *\n * ```html\n * <ng-template ngComboboxPopupContainer>\n * <div ngListbox [(value)]=\"selectedValue\">\n * <!-- ... options ... -->\n * </div>\n * </ng-template>\n * ```\n *\n * When using CdkOverlay, this directive can be replaced by `cdkConnectedOverlay`.\n *\n * ```html\n * <ng-template\n * [cdkConnectedOverlay]=\"{origin: inputElement, usePopover: 'inline' matchWidth: true}\"\n * [cdkConnectedOverlayOpen]=\"combobox.expanded()\">\n * <div ngListbox [(value)]=\"selectedValue\">\n * <!-- ... options ... -->\n * </div>\n * </ng-template>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
171
276
|
"implements": [],
|
|
172
277
|
"source": {
|
|
173
278
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
174
|
-
"startLine":
|
|
175
|
-
"endLine":
|
|
279
|
+
"startLine": 268,
|
|
280
|
+
"endLine": 273
|
|
176
281
|
}
|
|
177
282
|
},
|
|
178
283
|
{
|
|
@@ -189,36 +294,111 @@
|
|
|
189
294
|
],
|
|
190
295
|
"description": "The combobox that the popup belongs to.",
|
|
191
296
|
"jsdocTags": []
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"generics": [
|
|
300
|
+
{
|
|
301
|
+
"name": "V"
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"description": "Identifies an element as a popup for an `ngCombobox`.\n\nThis directive acts as a bridge, allowing the `ngCombobox` to discover and interact\nwith the underlying control (e.g., `ngListbox`, `ngTree`, or `ngComboboxDialog`) that\nmanages the options. It's primarily used as a host directive and is responsible for\nexposing the popup's control pattern to the parent combobox.",
|
|
305
|
+
"jsdocTags": [
|
|
306
|
+
{
|
|
307
|
+
"name": "developerPreview",
|
|
308
|
+
"comment": "21.0"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"rawComment": "/**\n * Identifies an element as a popup for an `ngCombobox`.\n *\n * This directive acts as a bridge, allowing the `ngCombobox` to discover and interact\n * with the underlying control (e.g., `ngListbox`, `ngTree`, or `ngComboboxDialog`) that\n * manages the options. It's primarily used as a host directive and is responsible for\n * exposing the popup's control pattern to the parent combobox.\n *\n * @developerPreview 21.0\n */",
|
|
312
|
+
"implements": [],
|
|
313
|
+
"isStandalone": true,
|
|
314
|
+
"selector": "[ngComboboxPopup]",
|
|
315
|
+
"exportAs": [
|
|
316
|
+
"ngComboboxPopup"
|
|
317
|
+
],
|
|
318
|
+
"source": {
|
|
319
|
+
"filePath": "src/aria/combobox/combobox.ts",
|
|
320
|
+
"startLine": 285,
|
|
321
|
+
"endLine": 300
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "ComboboxDialog",
|
|
326
|
+
"isAbstract": false,
|
|
327
|
+
"entryType": "directive",
|
|
328
|
+
"members": [
|
|
329
|
+
{
|
|
330
|
+
"name": "element",
|
|
331
|
+
"type": "HTMLElement",
|
|
332
|
+
"memberType": "property",
|
|
333
|
+
"memberTags": [
|
|
334
|
+
"readonly"
|
|
335
|
+
],
|
|
336
|
+
"description": "A reference to the dialog element.",
|
|
337
|
+
"jsdocTags": []
|
|
192
338
|
},
|
|
193
339
|
{
|
|
194
|
-
"name": "
|
|
340
|
+
"name": "combobox",
|
|
195
341
|
"type": "any",
|
|
196
342
|
"memberType": "property",
|
|
197
343
|
"memberTags": [
|
|
198
344
|
"readonly"
|
|
199
345
|
],
|
|
200
|
-
"description": "The
|
|
346
|
+
"description": "The combobox that the dialog belongs to.",
|
|
201
347
|
"jsdocTags": []
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "close",
|
|
351
|
+
"signatures": [
|
|
352
|
+
{
|
|
353
|
+
"name": "close",
|
|
354
|
+
"entryType": "function",
|
|
355
|
+
"description": "",
|
|
356
|
+
"generics": [],
|
|
357
|
+
"isNewType": false,
|
|
358
|
+
"jsdocTags": [],
|
|
359
|
+
"params": [],
|
|
360
|
+
"rawComment": "",
|
|
361
|
+
"returnType": "void"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"implementation": {
|
|
365
|
+
"params": [],
|
|
366
|
+
"isNewType": false,
|
|
367
|
+
"returnType": "void",
|
|
368
|
+
"generics": [],
|
|
369
|
+
"name": "close",
|
|
370
|
+
"description": "",
|
|
371
|
+
"entryType": "function",
|
|
372
|
+
"jsdocTags": [],
|
|
373
|
+
"rawComment": ""
|
|
374
|
+
},
|
|
375
|
+
"entryType": "function",
|
|
376
|
+
"description": "",
|
|
377
|
+
"jsdocTags": [],
|
|
378
|
+
"rawComment": "",
|
|
379
|
+
"memberType": "method",
|
|
380
|
+
"memberTags": []
|
|
202
381
|
}
|
|
203
382
|
],
|
|
204
|
-
"generics": [
|
|
383
|
+
"generics": [],
|
|
384
|
+
"description": "Integrates a native `<dialog>` element with the combobox, allowing for\na modal or non-modal popup experience. It handles the opening and closing of the dialog\nbased on the combobox's expanded state.\n\n```html\n<ng-template ngComboboxPopupContainer>\n <dialog ngComboboxDialog class=\"example-dialog\">\n <!-- ... dialog content ... -->\n </dialog>\n</ng-template>\n```",
|
|
385
|
+
"jsdocTags": [
|
|
205
386
|
{
|
|
206
|
-
"name": "
|
|
387
|
+
"name": "developerPreview",
|
|
388
|
+
"comment": "21.0"
|
|
207
389
|
}
|
|
208
390
|
],
|
|
209
|
-
"
|
|
210
|
-
"jsdocTags": [],
|
|
211
|
-
"rawComment": "",
|
|
391
|
+
"rawComment": "/**\n * Integrates a native `<dialog>` element with the combobox, allowing for\n * a modal or non-modal popup experience. It handles the opening and closing of the dialog\n * based on the combobox's expanded state.\n *\n * ```html\n * <ng-template ngComboboxPopupContainer>\n * <dialog ngComboboxDialog class=\"example-dialog\">\n * <!-- ... dialog content ... -->\n * </dialog>\n * </ng-template>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
212
392
|
"implements": [],
|
|
213
393
|
"isStandalone": true,
|
|
214
|
-
"selector": "[
|
|
394
|
+
"selector": "dialog[ngComboboxDialog]",
|
|
215
395
|
"exportAs": [
|
|
216
|
-
"
|
|
396
|
+
"ngComboboxDialog"
|
|
217
397
|
],
|
|
218
398
|
"source": {
|
|
219
399
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
220
|
-
"startLine":
|
|
221
|
-
"endLine":
|
|
400
|
+
"startLine": 317,
|
|
401
|
+
"endLine": 367
|
|
222
402
|
}
|
|
223
403
|
}
|
|
224
404
|
],
|
|
@@ -227,6 +407,10 @@
|
|
|
227
407
|
"afterRenderEffect",
|
|
228
408
|
"@angular/core"
|
|
229
409
|
],
|
|
410
|
+
[
|
|
411
|
+
"booleanAttribute",
|
|
412
|
+
"@angular/core"
|
|
413
|
+
],
|
|
230
414
|
[
|
|
231
415
|
"computed",
|
|
232
416
|
"@angular/core"
|
|
@@ -287,6 +471,10 @@
|
|
|
287
471
|
"ComboboxTreeControls",
|
|
288
472
|
"@angular/aria/private"
|
|
289
473
|
],
|
|
474
|
+
[
|
|
475
|
+
"ComboboxDialogPattern",
|
|
476
|
+
"@angular/aria/private"
|
|
477
|
+
],
|
|
290
478
|
[
|
|
291
479
|
"Directionality",
|
|
292
480
|
"@angular/cdk/bidi"
|
|
@@ -311,6 +499,10 @@
|
|
|
311
499
|
"ComboboxPopup",
|
|
312
500
|
"@angular/aria/combobox"
|
|
313
501
|
],
|
|
502
|
+
[
|
|
503
|
+
"ComboboxDialog",
|
|
504
|
+
"@angular/aria/combobox"
|
|
505
|
+
],
|
|
314
506
|
[
|
|
315
507
|
"Combobox",
|
|
316
508
|
"@angular/aria/combobox"
|
|
@@ -320,15 +512,15 @@
|
|
|
320
512
|
"@angular/aria/combobox"
|
|
321
513
|
],
|
|
322
514
|
[
|
|
323
|
-
"Combobox.
|
|
515
|
+
"Combobox.element",
|
|
324
516
|
"@angular/aria/combobox"
|
|
325
517
|
],
|
|
326
518
|
[
|
|
327
|
-
"Combobox.
|
|
519
|
+
"Combobox.popup",
|
|
328
520
|
"@angular/aria/combobox"
|
|
329
521
|
],
|
|
330
522
|
[
|
|
331
|
-
"Combobox.
|
|
523
|
+
"Combobox.filterMode",
|
|
332
524
|
"@angular/aria/combobox"
|
|
333
525
|
],
|
|
334
526
|
[
|
|
@@ -347,14 +539,30 @@
|
|
|
347
539
|
"Combobox.expanded",
|
|
348
540
|
"@angular/aria/combobox"
|
|
349
541
|
],
|
|
542
|
+
[
|
|
543
|
+
"Combobox.alwaysExpanded",
|
|
544
|
+
"@angular/aria/combobox"
|
|
545
|
+
],
|
|
350
546
|
[
|
|
351
547
|
"Combobox.inputElement",
|
|
352
548
|
"@angular/aria/combobox"
|
|
353
549
|
],
|
|
550
|
+
[
|
|
551
|
+
"Combobox.open",
|
|
552
|
+
"@angular/aria/combobox"
|
|
553
|
+
],
|
|
554
|
+
[
|
|
555
|
+
"Combobox.close",
|
|
556
|
+
"@angular/aria/combobox"
|
|
557
|
+
],
|
|
354
558
|
[
|
|
355
559
|
"ComboboxInput",
|
|
356
560
|
"@angular/aria/combobox"
|
|
357
561
|
],
|
|
562
|
+
[
|
|
563
|
+
"ComboboxInput.element",
|
|
564
|
+
"@angular/aria/combobox"
|
|
565
|
+
],
|
|
358
566
|
[
|
|
359
567
|
"ComboboxInput.combobox",
|
|
360
568
|
"@angular/aria/combobox"
|
|
@@ -376,7 +584,19 @@
|
|
|
376
584
|
"@angular/aria/combobox"
|
|
377
585
|
],
|
|
378
586
|
[
|
|
379
|
-
"
|
|
587
|
+
"ComboboxDialog",
|
|
588
|
+
"@angular/aria/combobox"
|
|
589
|
+
],
|
|
590
|
+
[
|
|
591
|
+
"ComboboxDialog.element",
|
|
592
|
+
"@angular/aria/combobox"
|
|
593
|
+
],
|
|
594
|
+
[
|
|
595
|
+
"ComboboxDialog.combobox",
|
|
596
|
+
"@angular/aria/combobox"
|
|
597
|
+
],
|
|
598
|
+
[
|
|
599
|
+
"ComboboxDialog.close",
|
|
380
600
|
"@angular/aria/combobox"
|
|
381
601
|
]
|
|
382
602
|
]
|