@angular/aria 21.0.0-rc.0 → 21.0.0-rc.2
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 +443 -59
- package/_adev_assets/aria-combobox.json +345 -37
- package/_adev_assets/aria-grid.json +408 -71
- package/_adev_assets/aria-listbox.json +115 -35
- package/_adev_assets/aria-menu.json +492 -167
- package/_adev_assets/aria-tabs.json +272 -88
- package/_adev_assets/aria-toolbar.json +151 -133
- package/_adev_assets/aria-tree.json +182 -35
- package/fesm2022/_widget-chunk.mjs +643 -190
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +129 -77
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/aria.mjs +1 -1
- package/fesm2022/aria.mjs.map +1 -1
- package/fesm2022/combobox.mjs +140 -27
- package/fesm2022/combobox.mjs.map +1 -1
- package/fesm2022/grid.mjs +254 -68
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +54 -44
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +270 -108
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/private.mjs +752 -785
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/tabs.mjs +101 -71
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +87 -64
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +105 -60
- package/fesm2022/tree.mjs.map +1 -1
- package/package.json +2 -10
- package/types/_grid-chunk.d.ts +326 -83
- package/types/accordion.d.ts +134 -35
- package/types/combobox.d.ts +146 -13
- package/types/grid.d.ts +159 -32
- package/types/listbox.d.ts +59 -28
- package/types/menu.d.ts +151 -55
- package/types/private.d.ts +449 -567
- package/types/tabs.d.ts +121 -41
- package/types/toolbar.d.ts +74 -51
- package/types/tree.d.ts +116 -45
- package/_adev_assets/aria-radio-group.json +0 -389
- package/fesm2022/deferred-content.mjs +0 -99
- package/fesm2022/deferred-content.mjs.map +0 -1
- package/fesm2022/radio-group.mjs +0 -338
- package/fesm2022/radio-group.mjs.map +0 -1
- package/types/deferred-content.d.ts +0 -38
- package/types/radio-group.d.ts +0 -84
|
@@ -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,138 @@
|
|
|
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": []
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "expand",
|
|
178
|
+
"signatures": [
|
|
179
|
+
{
|
|
180
|
+
"name": "expand",
|
|
181
|
+
"entryType": "function",
|
|
182
|
+
"description": "Expands the combobox popup.",
|
|
183
|
+
"generics": [],
|
|
184
|
+
"isNewType": false,
|
|
185
|
+
"jsdocTags": [],
|
|
186
|
+
"params": [],
|
|
187
|
+
"rawComment": "/** Expands the combobox popup. */",
|
|
188
|
+
"returnType": "void"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"implementation": {
|
|
192
|
+
"params": [],
|
|
193
|
+
"isNewType": false,
|
|
194
|
+
"returnType": "void",
|
|
195
|
+
"generics": [],
|
|
196
|
+
"name": "expand",
|
|
197
|
+
"description": "Expands the combobox popup.",
|
|
198
|
+
"entryType": "function",
|
|
199
|
+
"jsdocTags": [],
|
|
200
|
+
"rawComment": "/** Expands the combobox popup. */"
|
|
201
|
+
},
|
|
202
|
+
"entryType": "function",
|
|
203
|
+
"description": "Expands the combobox popup.",
|
|
204
|
+
"jsdocTags": [],
|
|
205
|
+
"rawComment": "/** Expands the combobox popup. */",
|
|
206
|
+
"memberType": "method",
|
|
207
|
+
"memberTags": []
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "collapse",
|
|
211
|
+
"signatures": [
|
|
212
|
+
{
|
|
213
|
+
"name": "collapse",
|
|
214
|
+
"entryType": "function",
|
|
215
|
+
"description": "Collapses the combobox popup.",
|
|
216
|
+
"generics": [],
|
|
217
|
+
"isNewType": false,
|
|
218
|
+
"jsdocTags": [],
|
|
219
|
+
"params": [],
|
|
220
|
+
"rawComment": "/** Collapses the combobox popup. */",
|
|
221
|
+
"returnType": "void"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"implementation": {
|
|
225
|
+
"params": [],
|
|
226
|
+
"isNewType": false,
|
|
227
|
+
"returnType": "void",
|
|
228
|
+
"generics": [],
|
|
229
|
+
"name": "collapse",
|
|
230
|
+
"description": "Collapses the combobox popup.",
|
|
231
|
+
"entryType": "function",
|
|
232
|
+
"jsdocTags": [],
|
|
233
|
+
"rawComment": "/** Collapses the combobox popup. */"
|
|
234
|
+
},
|
|
235
|
+
"entryType": "function",
|
|
236
|
+
"description": "Collapses the combobox popup.",
|
|
237
|
+
"jsdocTags": [],
|
|
238
|
+
"rawComment": "/** Collapses the combobox popup. */",
|
|
239
|
+
"memberType": "method",
|
|
240
|
+
"memberTags": []
|
|
99
241
|
}
|
|
100
242
|
],
|
|
101
243
|
"generics": [
|
|
@@ -103,14 +245,23 @@
|
|
|
103
245
|
"name": "V"
|
|
104
246
|
}
|
|
105
247
|
],
|
|
106
|
-
"description": "",
|
|
107
|
-
"jsdocTags": [
|
|
108
|
-
|
|
248
|
+
"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\">",
|
|
249
|
+
"jsdocTags": [
|
|
250
|
+
{
|
|
251
|
+
"name": "for",
|
|
252
|
+
"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```"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "developerPreview",
|
|
256
|
+
"comment": "21.0"
|
|
257
|
+
}
|
|
258
|
+
],
|
|
259
|
+
"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
260
|
"implements": [],
|
|
110
261
|
"source": {
|
|
111
262
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
112
|
-
"startLine":
|
|
113
|
-
"endLine":
|
|
263
|
+
"startLine": 64,
|
|
264
|
+
"endLine": 180
|
|
114
265
|
}
|
|
115
266
|
},
|
|
116
267
|
{
|
|
@@ -118,6 +269,16 @@
|
|
|
118
269
|
"isAbstract": false,
|
|
119
270
|
"entryType": "directive",
|
|
120
271
|
"members": [
|
|
272
|
+
{
|
|
273
|
+
"name": "element",
|
|
274
|
+
"type": "HTMLElement",
|
|
275
|
+
"memberType": "property",
|
|
276
|
+
"memberTags": [
|
|
277
|
+
"readonly"
|
|
278
|
+
],
|
|
279
|
+
"description": "A reference to the input element.",
|
|
280
|
+
"jsdocTags": []
|
|
281
|
+
},
|
|
121
282
|
{
|
|
122
283
|
"name": "combobox",
|
|
123
284
|
"type": "any",
|
|
@@ -144,9 +305,14 @@
|
|
|
144
305
|
}
|
|
145
306
|
],
|
|
146
307
|
"generics": [],
|
|
147
|
-
"description": "",
|
|
148
|
-
"jsdocTags": [
|
|
149
|
-
|
|
308
|
+
"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```",
|
|
309
|
+
"jsdocTags": [
|
|
310
|
+
{
|
|
311
|
+
"name": "developerPreview",
|
|
312
|
+
"comment": "21.0"
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"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
316
|
"implements": [],
|
|
151
317
|
"isStandalone": true,
|
|
152
318
|
"selector": "input[ngComboboxInput]",
|
|
@@ -155,8 +321,8 @@
|
|
|
155
321
|
],
|
|
156
322
|
"source": {
|
|
157
323
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
158
|
-
"startLine":
|
|
159
|
-
"endLine":
|
|
324
|
+
"startLine": 200,
|
|
325
|
+
"endLine": 246
|
|
160
326
|
}
|
|
161
327
|
},
|
|
162
328
|
{
|
|
@@ -165,14 +331,19 @@
|
|
|
165
331
|
"entryType": "undecorated_class",
|
|
166
332
|
"members": [],
|
|
167
333
|
"generics": [],
|
|
168
|
-
"description": "",
|
|
169
|
-
"jsdocTags": [
|
|
170
|
-
|
|
334
|
+
"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```",
|
|
335
|
+
"jsdocTags": [
|
|
336
|
+
{
|
|
337
|
+
"name": "developerPreview",
|
|
338
|
+
"comment": "21.0"
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"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
342
|
"implements": [],
|
|
172
343
|
"source": {
|
|
173
344
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
174
|
-
"startLine":
|
|
175
|
-
"endLine":
|
|
345
|
+
"startLine": 278,
|
|
346
|
+
"endLine": 283
|
|
176
347
|
}
|
|
177
348
|
},
|
|
178
349
|
{
|
|
@@ -197,7 +368,7 @@
|
|
|
197
368
|
"memberTags": [
|
|
198
369
|
"readonly"
|
|
199
370
|
],
|
|
200
|
-
"description": "The controls
|
|
371
|
+
"description": "The popup controls exposed to the combobox.",
|
|
201
372
|
"jsdocTags": []
|
|
202
373
|
}
|
|
203
374
|
],
|
|
@@ -206,9 +377,14 @@
|
|
|
206
377
|
"name": "V"
|
|
207
378
|
}
|
|
208
379
|
],
|
|
209
|
-
"description": "",
|
|
210
|
-
"jsdocTags": [
|
|
211
|
-
|
|
380
|
+
"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.",
|
|
381
|
+
"jsdocTags": [
|
|
382
|
+
{
|
|
383
|
+
"name": "developerPreview",
|
|
384
|
+
"comment": "21.0"
|
|
385
|
+
}
|
|
386
|
+
],
|
|
387
|
+
"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 */",
|
|
212
388
|
"implements": [],
|
|
213
389
|
"isStandalone": true,
|
|
214
390
|
"selector": "[ngComboboxPopup]",
|
|
@@ -217,8 +393,88 @@
|
|
|
217
393
|
],
|
|
218
394
|
"source": {
|
|
219
395
|
"filePath": "src/aria/combobox/combobox.ts",
|
|
220
|
-
"startLine":
|
|
221
|
-
"endLine":
|
|
396
|
+
"startLine": 295,
|
|
397
|
+
"endLine": 310
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "ComboboxDialog",
|
|
402
|
+
"isAbstract": false,
|
|
403
|
+
"entryType": "directive",
|
|
404
|
+
"members": [
|
|
405
|
+
{
|
|
406
|
+
"name": "element",
|
|
407
|
+
"type": "HTMLElement",
|
|
408
|
+
"memberType": "property",
|
|
409
|
+
"memberTags": [
|
|
410
|
+
"readonly"
|
|
411
|
+
],
|
|
412
|
+
"description": "A reference to the dialog element.",
|
|
413
|
+
"jsdocTags": []
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"name": "combobox",
|
|
417
|
+
"type": "any",
|
|
418
|
+
"memberType": "property",
|
|
419
|
+
"memberTags": [
|
|
420
|
+
"readonly"
|
|
421
|
+
],
|
|
422
|
+
"description": "The combobox that the dialog belongs to.",
|
|
423
|
+
"jsdocTags": []
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "close",
|
|
427
|
+
"signatures": [
|
|
428
|
+
{
|
|
429
|
+
"name": "close",
|
|
430
|
+
"entryType": "function",
|
|
431
|
+
"description": "",
|
|
432
|
+
"generics": [],
|
|
433
|
+
"isNewType": false,
|
|
434
|
+
"jsdocTags": [],
|
|
435
|
+
"params": [],
|
|
436
|
+
"rawComment": "",
|
|
437
|
+
"returnType": "void"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"implementation": {
|
|
441
|
+
"params": [],
|
|
442
|
+
"isNewType": false,
|
|
443
|
+
"returnType": "void",
|
|
444
|
+
"generics": [],
|
|
445
|
+
"name": "close",
|
|
446
|
+
"description": "",
|
|
447
|
+
"entryType": "function",
|
|
448
|
+
"jsdocTags": [],
|
|
449
|
+
"rawComment": ""
|
|
450
|
+
},
|
|
451
|
+
"entryType": "function",
|
|
452
|
+
"description": "",
|
|
453
|
+
"jsdocTags": [],
|
|
454
|
+
"rawComment": "",
|
|
455
|
+
"memberType": "method",
|
|
456
|
+
"memberTags": []
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"generics": [],
|
|
460
|
+
"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```",
|
|
461
|
+
"jsdocTags": [
|
|
462
|
+
{
|
|
463
|
+
"name": "developerPreview",
|
|
464
|
+
"comment": "21.0"
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
"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 */",
|
|
468
|
+
"implements": [],
|
|
469
|
+
"isStandalone": true,
|
|
470
|
+
"selector": "dialog[ngComboboxDialog]",
|
|
471
|
+
"exportAs": [
|
|
472
|
+
"ngComboboxDialog"
|
|
473
|
+
],
|
|
474
|
+
"source": {
|
|
475
|
+
"filePath": "src/aria/combobox/combobox.ts",
|
|
476
|
+
"startLine": 327,
|
|
477
|
+
"endLine": 377
|
|
222
478
|
}
|
|
223
479
|
}
|
|
224
480
|
],
|
|
@@ -227,6 +483,10 @@
|
|
|
227
483
|
"afterRenderEffect",
|
|
228
484
|
"@angular/core"
|
|
229
485
|
],
|
|
486
|
+
[
|
|
487
|
+
"booleanAttribute",
|
|
488
|
+
"@angular/core"
|
|
489
|
+
],
|
|
230
490
|
[
|
|
231
491
|
"computed",
|
|
232
492
|
"@angular/core"
|
|
@@ -269,11 +529,11 @@
|
|
|
269
529
|
],
|
|
270
530
|
[
|
|
271
531
|
"DeferredContent",
|
|
272
|
-
"@angular/aria/
|
|
532
|
+
"@angular/aria/private"
|
|
273
533
|
],
|
|
274
534
|
[
|
|
275
535
|
"DeferredContentAware",
|
|
276
|
-
"@angular/aria/
|
|
536
|
+
"@angular/aria/private"
|
|
277
537
|
],
|
|
278
538
|
[
|
|
279
539
|
"ComboboxPattern",
|
|
@@ -287,6 +547,10 @@
|
|
|
287
547
|
"ComboboxTreeControls",
|
|
288
548
|
"@angular/aria/private"
|
|
289
549
|
],
|
|
550
|
+
[
|
|
551
|
+
"ComboboxDialogPattern",
|
|
552
|
+
"@angular/aria/private"
|
|
553
|
+
],
|
|
290
554
|
[
|
|
291
555
|
"Directionality",
|
|
292
556
|
"@angular/cdk/bidi"
|
|
@@ -311,6 +575,10 @@
|
|
|
311
575
|
"ComboboxPopup",
|
|
312
576
|
"@angular/aria/combobox"
|
|
313
577
|
],
|
|
578
|
+
[
|
|
579
|
+
"ComboboxDialog",
|
|
580
|
+
"@angular/aria/combobox"
|
|
581
|
+
],
|
|
314
582
|
[
|
|
315
583
|
"Combobox",
|
|
316
584
|
"@angular/aria/combobox"
|
|
@@ -320,15 +588,15 @@
|
|
|
320
588
|
"@angular/aria/combobox"
|
|
321
589
|
],
|
|
322
590
|
[
|
|
323
|
-
"Combobox.
|
|
591
|
+
"Combobox.element",
|
|
324
592
|
"@angular/aria/combobox"
|
|
325
593
|
],
|
|
326
594
|
[
|
|
327
|
-
"Combobox.
|
|
595
|
+
"Combobox.popup",
|
|
328
596
|
"@angular/aria/combobox"
|
|
329
597
|
],
|
|
330
598
|
[
|
|
331
|
-
"Combobox.
|
|
599
|
+
"Combobox.filterMode",
|
|
332
600
|
"@angular/aria/combobox"
|
|
333
601
|
],
|
|
334
602
|
[
|
|
@@ -347,14 +615,38 @@
|
|
|
347
615
|
"Combobox.expanded",
|
|
348
616
|
"@angular/aria/combobox"
|
|
349
617
|
],
|
|
618
|
+
[
|
|
619
|
+
"Combobox.alwaysExpanded",
|
|
620
|
+
"@angular/aria/combobox"
|
|
621
|
+
],
|
|
350
622
|
[
|
|
351
623
|
"Combobox.inputElement",
|
|
352
624
|
"@angular/aria/combobox"
|
|
353
625
|
],
|
|
626
|
+
[
|
|
627
|
+
"Combobox.open",
|
|
628
|
+
"@angular/aria/combobox"
|
|
629
|
+
],
|
|
630
|
+
[
|
|
631
|
+
"Combobox.close",
|
|
632
|
+
"@angular/aria/combobox"
|
|
633
|
+
],
|
|
634
|
+
[
|
|
635
|
+
"Combobox.expand",
|
|
636
|
+
"@angular/aria/combobox"
|
|
637
|
+
],
|
|
638
|
+
[
|
|
639
|
+
"Combobox.collapse",
|
|
640
|
+
"@angular/aria/combobox"
|
|
641
|
+
],
|
|
354
642
|
[
|
|
355
643
|
"ComboboxInput",
|
|
356
644
|
"@angular/aria/combobox"
|
|
357
645
|
],
|
|
646
|
+
[
|
|
647
|
+
"ComboboxInput.element",
|
|
648
|
+
"@angular/aria/combobox"
|
|
649
|
+
],
|
|
358
650
|
[
|
|
359
651
|
"ComboboxInput.combobox",
|
|
360
652
|
"@angular/aria/combobox"
|
|
@@ -378,6 +670,22 @@
|
|
|
378
670
|
[
|
|
379
671
|
"ComboboxPopup.controls",
|
|
380
672
|
"@angular/aria/combobox"
|
|
673
|
+
],
|
|
674
|
+
[
|
|
675
|
+
"ComboboxDialog",
|
|
676
|
+
"@angular/aria/combobox"
|
|
677
|
+
],
|
|
678
|
+
[
|
|
679
|
+
"ComboboxDialog.element",
|
|
680
|
+
"@angular/aria/combobox"
|
|
681
|
+
],
|
|
682
|
+
[
|
|
683
|
+
"ComboboxDialog.combobox",
|
|
684
|
+
"@angular/aria/combobox"
|
|
685
|
+
],
|
|
686
|
+
[
|
|
687
|
+
"ComboboxDialog.close",
|
|
688
|
+
"@angular/aria/combobox"
|
|
381
689
|
]
|
|
382
690
|
]
|
|
383
691
|
}
|