|
6 | 6 | "entries": [ |
7 | 7 | { |
8 | 8 | "name": "Combobox", |
9 | | - "aliases": ["ngCombobox"], |
10 | 9 | "isAbstract": false, |
11 | 10 | "entryType": "undecorated_class", |
12 | 11 | "members": [ |
|
180 | 179 | "name": "V" |
181 | 180 | } |
182 | 181 | ], |
183 | | - "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\">", |
| 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\">\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```", |
184 | 183 | "jsdocTags": [ |
185 | | - { |
186 | | - "name": "for", |
187 | | - "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```" |
188 | | - }, |
189 | 184 | { |
190 | 185 | "name": "developerPreview", |
191 | 186 | "comment": "21.0" |
|
195 | 190 | "implements": [], |
196 | 191 | "source": { |
197 | 192 | "filePath": "src/aria/combobox/combobox.ts", |
198 | | - "startLine": 64, |
199 | | - "endLine": 170 |
| 193 | + "startLine": 65, |
| 194 | + "endLine": 176 |
200 | 195 | } |
201 | 196 | }, |
202 | 197 | { |
203 | 198 | "name": "ComboboxInput", |
204 | | - "aliases": ["ngComboboxInput"], |
205 | 199 | "isAbstract": false, |
206 | 200 | "entryType": "directive", |
207 | 201 | "members": [ |
|
257 | 251 | ], |
258 | 252 | "source": { |
259 | 253 | "filePath": "src/aria/combobox/combobox.ts", |
260 | | - "startLine": 190, |
261 | | - "endLine": 236 |
| 254 | + "startLine": 196, |
| 255 | + "endLine": 242 |
262 | 256 | } |
263 | 257 | }, |
264 | 258 | { |
265 | 259 | "name": "ComboboxPopupContainer", |
266 | | - "aliases": ["ngComboboxPopupContainer"], |
267 | 260 | "isAbstract": false, |
268 | 261 | "entryType": "undecorated_class", |
269 | 262 | "members": [], |
|
279 | 272 | "implements": [], |
280 | 273 | "source": { |
281 | 274 | "filePath": "src/aria/combobox/combobox.ts", |
282 | | - "startLine": 268, |
283 | | - "endLine": 273 |
| 275 | + "startLine": 274, |
| 276 | + "endLine": 279 |
284 | 277 | } |
285 | 278 | }, |
286 | 279 | { |
287 | 280 | "name": "ComboboxPopup", |
288 | | - "aliases": ["ngComboboxPopup"], |
289 | 281 | "isAbstract": false, |
290 | 282 | "entryType": "directive", |
291 | 283 | "members": [ |
|
321 | 313 | ], |
322 | 314 | "source": { |
323 | 315 | "filePath": "src/aria/combobox/combobox.ts", |
324 | | - "startLine": 285, |
325 | | - "endLine": 300 |
| 316 | + "startLine": 291, |
| 317 | + "endLine": 306 |
326 | 318 | } |
327 | 319 | }, |
328 | 320 | { |
329 | 321 | "name": "ComboboxDialog", |
330 | | - "aliases": ["ngComboboxDialog"], |
331 | 322 | "isAbstract": false, |
332 | 323 | "entryType": "directive", |
333 | 324 | "members": [ |
|
402 | 393 | ], |
403 | 394 | "source": { |
404 | 395 | "filePath": "src/aria/combobox/combobox.ts", |
405 | | - "startLine": 317, |
406 | | - "endLine": 367 |
| 396 | + "startLine": 323, |
| 397 | + "endLine": 373 |
407 | 398 | } |
408 | 399 | } |
409 | 400 | ], |
|
432 | 423 | "ElementRef", |
433 | 424 | "@angular/core" |
434 | 425 | ], |
| 426 | + [ |
| 427 | + "forwardRef", |
| 428 | + "@angular/core" |
| 429 | + ], |
435 | 430 | [ |
436 | 431 | "inject", |
437 | 432 | "@angular/core" |
|
0 commit comments