From 4e1d1ec85caeec6e292cee36c3c9198d62e0fe2b Mon Sep 17 00:00:00 2001 From: Angular Robot Date: Mon, 1 Dec 2025 18:24:44 +0000 Subject: [PATCH] docs: update cross-repo adev docs Updated Angular adev cross repo docs files. --- adev/src/content/aria/_build-info.json | 2 +- adev/src/content/aria/aria-accordion.json | 4 --- adev/src/content/aria/aria-combobox.json | 35 ++++++++++------------- adev/src/content/aria/aria-grid.json | 14 +-------- adev/src/content/aria/aria-listbox.json | 20 ++++++------- adev/src/content/aria/aria-menu.json | 5 ---- adev/src/content/aria/aria-tabs.json | 5 ---- adev/src/content/aria/aria-toolbar.json | 3 -- adev/src/content/aria/aria-tree.json | 11 +------ 9 files changed, 27 insertions(+), 72 deletions(-) diff --git a/adev/src/content/aria/_build-info.json b/adev/src/content/aria/_build-info.json index 1f748a425ad..024c1ec342c 100644 --- a/adev/src/content/aria/_build-info.json +++ b/adev/src/content/aria/_build-info.json @@ -1,4 +1,4 @@ { "branchName": "refs/heads/main", - "sha": "476f7b12a420eab0ce5d9c0844478019fa24d0e2" + "sha": "752d7f84ef97407acdf0a850971dd889f84708fb" } \ No newline at end of file diff --git a/adev/src/content/aria/aria-accordion.json b/adev/src/content/aria/aria-accordion.json index 2449e4cb49b..c20aa8aecf8 100755 --- a/adev/src/content/aria/aria-accordion.json +++ b/adev/src/content/aria/aria-accordion.json @@ -6,7 +6,6 @@ "entries": [ { "name": "AccordionPanel", - "aliases": ["ngAccordionPanel"], "isAbstract": false, "entryType": "undecorated_class", "members": [ @@ -158,7 +157,6 @@ }, { "name": "AccordionTrigger", - "aliases": ["ngAccordionTrigger"], "isAbstract": false, "entryType": "directive", "members": [ @@ -359,7 +357,6 @@ }, { "name": "AccordionGroup", - "aliases": ["ngAccordionGroup"], "isAbstract": false, "entryType": "directive", "members": [ @@ -525,7 +522,6 @@ }, { "name": "AccordionContent", - "aliases": ["ngAccordionContent"], "isAbstract": false, "entryType": "undecorated_class", "members": [], diff --git a/adev/src/content/aria/aria-combobox.json b/adev/src/content/aria/aria-combobox.json index 4595a18d4ea..2aec18c0471 100755 --- a/adev/src/content/aria/aria-combobox.json +++ b/adev/src/content/aria/aria-combobox.json @@ -6,7 +6,6 @@ "entries": [ { "name": "Combobox", - "aliases": ["ngCombobox"], "isAbstract": false, "entryType": "undecorated_class", "members": [ @@ -180,12 +179,8 @@ "name": "V" } ], - "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
\n \n\n \n
", + "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
\n \n\n \n
\n @for (option of filteredOptions(); track option) {\n
\n {{option}}\n
\n }\n
\n
\n
\n```", "jsdocTags": [ - { - "name": "for", - "comment": "(option of filteredOptions(); track option) {\n
\n{{option}}\n
\n}\n
\n
\n
\n```" - }, { "name": "developerPreview", "comment": "21.0" @@ -195,13 +190,12 @@ "implements": [], "source": { "filePath": "src/aria/combobox/combobox.ts", - "startLine": 64, - "endLine": 170 + "startLine": 65, + "endLine": 176 } }, { "name": "ComboboxInput", - "aliases": ["ngComboboxInput"], "isAbstract": false, "entryType": "directive", "members": [ @@ -257,13 +251,12 @@ ], "source": { "filePath": "src/aria/combobox/combobox.ts", - "startLine": 190, - "endLine": 236 + "startLine": 196, + "endLine": 242 } }, { "name": "ComboboxPopupContainer", - "aliases": ["ngComboboxPopupContainer"], "isAbstract": false, "entryType": "undecorated_class", "members": [], @@ -279,13 +272,12 @@ "implements": [], "source": { "filePath": "src/aria/combobox/combobox.ts", - "startLine": 268, - "endLine": 273 + "startLine": 274, + "endLine": 279 } }, { "name": "ComboboxPopup", - "aliases": ["ngComboboxPopup"], "isAbstract": false, "entryType": "directive", "members": [ @@ -321,13 +313,12 @@ ], "source": { "filePath": "src/aria/combobox/combobox.ts", - "startLine": 285, - "endLine": 300 + "startLine": 291, + "endLine": 306 } }, { "name": "ComboboxDialog", - "aliases": ["ngComboboxDialog"], "isAbstract": false, "entryType": "directive", "members": [ @@ -402,8 +393,8 @@ ], "source": { "filePath": "src/aria/combobox/combobox.ts", - "startLine": 317, - "endLine": 367 + "startLine": 323, + "endLine": 373 } } ], @@ -432,6 +423,10 @@ "ElementRef", "@angular/core" ], + [ + "forwardRef", + "@angular/core" + ], [ "inject", "@angular/core" diff --git a/adev/src/content/aria/aria-grid.json b/adev/src/content/aria/aria-grid.json index 3f167e67af9..3567ae5822c 100755 --- a/adev/src/content/aria/aria-grid.json +++ b/adev/src/content/aria/aria-grid.json @@ -6,7 +6,6 @@ "entries": [ { "name": "Grid", - "aliases" : ["ngGrid"], "isAbstract": false, "entryType": "directive", "members": [ @@ -149,16 +148,8 @@ } ], "generics": [], - "description": "The container for a grid. It provides keyboard navigation and focus management for the grid's\nrows and cells. It manages the overall behavior of the grid, including focus\nwrapping, selection, and disabled states.\n\n```html\n", + "description": "The container for a grid. It provides keyboard navigation and focus management for the grid's\nrows and cells. It manages the overall behavior of the grid, including focus\nwrapping, selection, and disabled states.\n\n```html\n
\n @for (row of gridData; track row) {\n \n @for (cell of row; track cell) {\n \n }\n \n }\n
\n {{cell.value}}\n
\n```", "jsdocTags": [ - { - "name": "for", - "comment": "(row of gridData; track row) {\n" - }, - { - "name": "for", - "comment": "(cell of row; track cell) {\n \n {{cell.value}}\n \n}\n\n}\n\n```" - }, { "name": "developerPreview", "comment": "21.0" @@ -179,7 +170,6 @@ }, { "name": "GridRow", - "aliases" : ["ngGridRow"], "isAbstract": false, "entryType": "directive", "members": [ @@ -230,7 +220,6 @@ }, { "name": "GridCell", - "aliases" : ["ngGridCell"], "isAbstract": false, "entryType": "directive", "members": [ @@ -446,7 +435,6 @@ }, { "name": "GridCellWidget", - "aliases" : ["ngGridCellWidget"], "isAbstract": false, "entryType": "directive", "members": [ diff --git a/adev/src/content/aria/aria-listbox.json b/adev/src/content/aria/aria-listbox.json index e7513a93130..6f05870ce37 100755 --- a/adev/src/content/aria/aria-listbox.json +++ b/adev/src/content/aria/aria-listbox.json @@ -6,7 +6,6 @@ "entries": [ { "name": "Listbox", - "aliases" : ["ngListbox"], "isAbstract": false, "entryType": "undecorated_class", "members": [ @@ -218,12 +217,8 @@ "name": "V" } ], - "description": "Represents a container used to display a list of items for a user to select from.\n\nThe `ngListbox` is meant to be used in conjunction with `ngOption` directives to create a\nselectable list. It supports single and multiple selection modes, as well as various focus and\norientation strategies.\n\n```html\n\n```" - }, { "name": "developerPreview", "comment": "21.0" @@ -233,13 +228,12 @@ "implements": [], "source": { "filePath": "/src/aria/listbox/listbox.ts", - "startLine": 47, - "endLine": 209 + "startLine": 48, + "endLine": 216 } }, { "name": "Option", - "aliases" : ["ngOption"], "isAbstract": false, "entryType": "directive", "members": [ @@ -352,8 +346,8 @@ ], "source": { "filePath": "/src/aria/listbox/listbox.ts", - "startLine": 226, - "endLine": 283 + "startLine": 233, + "endLine": 290 } } ], @@ -382,6 +376,10 @@ "ElementRef", "@angular/core" ], + [ + "forwardRef", + "@angular/core" + ], [ "inject", "@angular/core" diff --git a/adev/src/content/aria/aria-menu.json b/adev/src/content/aria/aria-menu.json index dc7b2c856b7..dfc356ca30e 100755 --- a/adev/src/content/aria/aria-menu.json +++ b/adev/src/content/aria/aria-menu.json @@ -6,7 +6,6 @@ "entries": [ { "name": "MenuTrigger", - "aliases" : ["ngMenuTrigger"], "isAbstract": false, "entryType": "directive", "members": [ @@ -182,7 +181,6 @@ }, { "name": "Menu", - "aliases" : ["ngMenu"], "isAbstract": false, "entryType": "undecorated_class", "members": [ @@ -350,7 +348,6 @@ }, { "name": "MenuBar", - "aliases" : ["ngMenuBar"], "isAbstract": false, "entryType": "directive", "members": [ @@ -513,7 +510,6 @@ }, { "name": "MenuItem", - "aliases" : ["ngMenuItem"], "isAbstract": false, "entryType": "directive", "members": [ @@ -728,7 +724,6 @@ }, { "name": "MenuContent", - "aliases" : ["ngMenuContent"], "isAbstract": false, "entryType": "undecorated_class", "members": [], diff --git a/adev/src/content/aria/aria-tabs.json b/adev/src/content/aria/aria-tabs.json index 6b59bd2666a..12688a1af30 100755 --- a/adev/src/content/aria/aria-tabs.json +++ b/adev/src/content/aria/aria-tabs.json @@ -6,7 +6,6 @@ "entries": [ { "name": "Tabs", - "aliases" : ["ngTabs"], "isAbstract": false, "entryType": "directive", "members": [ @@ -44,7 +43,6 @@ }, { "name": "TabList", - "aliases" : ["ngTabList"], "isAbstract": false, "entryType": "directive", "members": [ @@ -303,7 +301,6 @@ }, { "name": "Tab", - "aliases" : ["ngTab"], "isAbstract": false, "entryType": "directive", "members": [ @@ -503,7 +500,6 @@ }, { "name": "TabPanel", - "aliases" : ["ngTabPanel"], "isAbstract": false, "entryType": "undecorated_class", "members": [ @@ -635,7 +631,6 @@ }, { "name": "TabContent", - "aliases" : ["ngTabContent"], "isAbstract": false, "entryType": "undecorated_class", "members": [], diff --git a/adev/src/content/aria/aria-toolbar.json b/adev/src/content/aria/aria-toolbar.json index c00de6b2277..5b4c9c62b58 100755 --- a/adev/src/content/aria/aria-toolbar.json +++ b/adev/src/content/aria/aria-toolbar.json @@ -6,7 +6,6 @@ "entries": [ { "name": "Toolbar", - "aliases" : ["ngToolbar"], "isAbstract": false, "entryType": "directive", "members": [ @@ -124,7 +123,6 @@ }, { "name": "ToolbarWidget", - "aliases" : ["ngToolbarWidget"], "isAbstract": false, "entryType": "directive", "members": [ @@ -304,7 +302,6 @@ }, { "name": "ToolbarWidgetGroup", - "aliases" : ["ngToolbarWidgetGroup"], "isAbstract": false, "entryType": "directive", "members": [ diff --git a/adev/src/content/aria/aria-tree.json b/adev/src/content/aria/aria-tree.json index 384415dfbcf..df2ee9644df 100755 --- a/adev/src/content/aria/aria-tree.json +++ b/adev/src/content/aria/aria-tree.json @@ -204,16 +204,8 @@ "name": "V" } ], - "description": "A container that transforms nested lists into an accessible, ARIA-compliant tree structure.\nIt manages the overall state of the tree, including selection, expansion, and keyboard\nnavigation.\n\n```html\n\n\n", + "description": "A container that transforms nested lists into an accessible, ARIA-compliant tree structure.\nIt manages the overall state of the tree, including selection, expansion, and keyboard\nnavigation.\n\n```html\n\n\n\n @for (node of nodes; track node.name) {\n
  • \n {{ node.name }}\n @if (node.children) {\n
      \n \n \n \n
    \n }\n
  • \n }\n
    \n```", "jsdocTags": [ - { - "name": "for", - "comment": "(node of nodes; track node.name) {\n
  • \n{{ node.name }}" - }, - { - "name": "if", - "comment": "(node.children) {\n
      \n \n \n \n
    \n}\n
  • \n}\n
    \n```" - }, { "name": "developerPreview", "comment": "21.0" @@ -229,7 +221,6 @@ }, { "name": "TreeItem", - "aliases" : ["ngTreeItem"], "isAbstract": false, "entryType": "directive", "members": [