@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
|
@@ -10,19 +10,13 @@
|
|
|
10
10
|
"entryType": "directive",
|
|
11
11
|
"members": [
|
|
12
12
|
{
|
|
13
|
-
"name": "
|
|
14
|
-
"type": "
|
|
15
|
-
"memberType": "property",
|
|
16
|
-
"memberTags": [],
|
|
17
|
-
"description": "The Tab UIPattern of the child Tabs.",
|
|
18
|
-
"jsdocTags": []
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"name": "unorderedTabpanels",
|
|
22
|
-
"type": "any",
|
|
13
|
+
"name": "element",
|
|
14
|
+
"type": "HTMLElement",
|
|
23
15
|
"memberType": "property",
|
|
24
|
-
"memberTags": [
|
|
25
|
-
|
|
16
|
+
"memberTags": [
|
|
17
|
+
"readonly"
|
|
18
|
+
],
|
|
19
|
+
"description": "A reference to the host element.",
|
|
26
20
|
"jsdocTags": []
|
|
27
21
|
},
|
|
28
22
|
{
|
|
@@ -125,9 +119,14 @@
|
|
|
125
119
|
}
|
|
126
120
|
],
|
|
127
121
|
"generics": [],
|
|
128
|
-
"description": "A Tabs container.\n\
|
|
129
|
-
"jsdocTags": [
|
|
130
|
-
|
|
122
|
+
"description": "A Tabs container.\n\nThe `ngTabs` directive represents a set of layered sections of content. It acts as the\noverarching container for a tabbed interface, coordinating the behavior of `ngTabList`,\n`ngTab`, and `ngTabPanel` directives.\n\n```html\n<div ngTabs>\n <ul ngTabList [(selectedTab)]=\"selectedTabValue\">\n <li ngTab value=\"tab1\">Tab 1</li>\n <li ngTab value=\"tab2\">Tab 2</li>\n <li ngTab value=\"tab3\">Tab 3</li>\n </ul>\n\n <div ngTabPanel value=\"tab1\">\n <ng-template ngTabContent>Content for Tab 1</ng-template>\n </div>\n <div ngTabPanel value=\"tab2\">\n <ng-template ngTabContent>Content for Tab 2</ng-template>\n </div>\n <div ngTabPanel value=\"tab3\">\n <ng-template ngTabContent>Content for Tab 3</ng-template>\n </div>\n</div>\n```",
|
|
123
|
+
"jsdocTags": [
|
|
124
|
+
{
|
|
125
|
+
"name": "developerPreview",
|
|
126
|
+
"comment": "21.0"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"rawComment": "/**\n * A Tabs container.\n *\n * The `ngTabs` directive represents a set of layered sections of content. It acts as the\n * overarching container for a tabbed interface, coordinating the behavior of `ngTabList`,\n * `ngTab`, and `ngTabPanel` directives.\n *\n * ```html\n * <div ngTabs>\n * <ul ngTabList [(selectedTab)]=\"selectedTabValue\">\n * <li ngTab value=\"tab1\">Tab 1</li>\n * <li ngTab value=\"tab2\">Tab 2</li>\n * <li ngTab value=\"tab3\">Tab 3</li>\n * </ul>\n *\n * <div ngTabPanel value=\"tab1\">\n * <ng-template ngTabContent>Content for Tab 1</ng-template>\n * </div>\n * <div ngTabPanel value=\"tab2\">\n * <ng-template ngTabContent>Content for Tab 2</ng-template>\n * </div>\n * <div ngTabPanel value=\"tab3\">\n * <ng-template ngTabContent>Content for Tab 3</ng-template>\n * </div>\n * </div>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
131
130
|
"implements": [],
|
|
132
131
|
"isStandalone": true,
|
|
133
132
|
"selector": "[ngTabs]",
|
|
@@ -136,8 +135,8 @@
|
|
|
136
135
|
],
|
|
137
136
|
"source": {
|
|
138
137
|
"filePath": "/src/aria/tabs/tabs.ts",
|
|
139
|
-
"startLine":
|
|
140
|
-
"endLine":
|
|
138
|
+
"startLine": 74,
|
|
139
|
+
"endLine": 120
|
|
141
140
|
}
|
|
142
141
|
},
|
|
143
142
|
{
|
|
@@ -146,23 +145,23 @@
|
|
|
146
145
|
"entryType": "directive",
|
|
147
146
|
"members": [
|
|
148
147
|
{
|
|
149
|
-
"name": "
|
|
150
|
-
"type": "
|
|
148
|
+
"name": "element",
|
|
149
|
+
"type": "HTMLElement",
|
|
151
150
|
"memberType": "property",
|
|
152
151
|
"memberTags": [
|
|
153
152
|
"readonly"
|
|
154
153
|
],
|
|
155
|
-
"description": "
|
|
154
|
+
"description": "A reference to the host element.",
|
|
156
155
|
"jsdocTags": []
|
|
157
156
|
},
|
|
158
157
|
{
|
|
159
|
-
"name": "
|
|
158
|
+
"name": "textDirection",
|
|
160
159
|
"type": "any",
|
|
161
160
|
"memberType": "property",
|
|
162
161
|
"memberTags": [
|
|
163
162
|
"readonly"
|
|
164
163
|
],
|
|
165
|
-
"description": "
|
|
164
|
+
"description": "Text direction.",
|
|
166
165
|
"jsdocTags": []
|
|
167
166
|
},
|
|
168
167
|
{
|
|
@@ -192,16 +191,16 @@
|
|
|
192
191
|
"isRequiredInput": false
|
|
193
192
|
},
|
|
194
193
|
{
|
|
195
|
-
"name": "
|
|
194
|
+
"name": "softDisabled",
|
|
196
195
|
"type": "any",
|
|
197
196
|
"memberType": "property",
|
|
198
197
|
"memberTags": [
|
|
199
198
|
"readonly",
|
|
200
199
|
"input"
|
|
201
200
|
],
|
|
202
|
-
"description": "Whether disabled items
|
|
201
|
+
"description": "Whether to allow disabled items to receive focus. When `true`, disabled items are\nfocusable but not interactive. When `false`, disabled items are skipped during navigation.",
|
|
203
202
|
"jsdocTags": [],
|
|
204
|
-
"inputAlias": "
|
|
203
|
+
"inputAlias": "softDisabled",
|
|
205
204
|
"isRequiredInput": false
|
|
206
205
|
},
|
|
207
206
|
{
|
|
@@ -212,7 +211,7 @@
|
|
|
212
211
|
"readonly",
|
|
213
212
|
"input"
|
|
214
213
|
],
|
|
215
|
-
"description": "The focus strategy used by the tablist.",
|
|
214
|
+
"description": "The focus strategy used by the tablist.\n- `roving`: Focus is moved to the active tab using `tabindex`.\n- `activedescendant`: Focus remains on the tablist container, and `aria-activedescendant` is used to indicate the active tab.",
|
|
216
215
|
"jsdocTags": [],
|
|
217
216
|
"inputAlias": "focusMode",
|
|
218
217
|
"isRequiredInput": false
|
|
@@ -225,38 +224,38 @@
|
|
|
225
224
|
"readonly",
|
|
226
225
|
"input"
|
|
227
226
|
],
|
|
228
|
-
"description": "The selection strategy used by the tablist.",
|
|
227
|
+
"description": "The selection strategy used by the tablist.\n- `follow`: The focused tab is automatically selected.\n- `explicit`: Tabs are selected explicitly by the user (e.g., via click or spacebar).",
|
|
229
228
|
"jsdocTags": [],
|
|
230
229
|
"inputAlias": "selectionMode",
|
|
231
230
|
"isRequiredInput": false
|
|
232
231
|
},
|
|
233
232
|
{
|
|
234
|
-
"name": "
|
|
233
|
+
"name": "selectedTab",
|
|
235
234
|
"type": "any",
|
|
236
235
|
"memberType": "property",
|
|
237
236
|
"memberTags": [
|
|
238
237
|
"readonly",
|
|
239
|
-
"input"
|
|
238
|
+
"input",
|
|
239
|
+
"output"
|
|
240
240
|
],
|
|
241
|
-
"description": "
|
|
241
|
+
"description": "The current selected tab.",
|
|
242
242
|
"jsdocTags": [],
|
|
243
|
-
"inputAlias": "
|
|
244
|
-
"isRequiredInput": false
|
|
243
|
+
"inputAlias": "selectedTab",
|
|
244
|
+
"isRequiredInput": false,
|
|
245
|
+
"outputAlias": "selectedTabChange"
|
|
245
246
|
},
|
|
246
247
|
{
|
|
247
|
-
"name": "
|
|
248
|
+
"name": "disabled",
|
|
248
249
|
"type": "any",
|
|
249
250
|
"memberType": "property",
|
|
250
251
|
"memberTags": [
|
|
251
252
|
"readonly",
|
|
252
|
-
"input"
|
|
253
|
-
"output"
|
|
253
|
+
"input"
|
|
254
254
|
],
|
|
255
|
-
"description": "
|
|
255
|
+
"description": "Whether the tablist is disabled.",
|
|
256
256
|
"jsdocTags": [],
|
|
257
|
-
"inputAlias": "
|
|
258
|
-
"isRequiredInput": false
|
|
259
|
-
"outputAlias": "selectedTabChange"
|
|
257
|
+
"inputAlias": "disabled",
|
|
258
|
+
"isRequiredInput": false
|
|
260
259
|
},
|
|
261
260
|
{
|
|
262
261
|
"name": "onFocus",
|
|
@@ -454,12 +453,66 @@
|
|
|
454
453
|
"rawComment": "",
|
|
455
454
|
"memberType": "method",
|
|
456
455
|
"memberTags": []
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"name": "open",
|
|
459
|
+
"signatures": [
|
|
460
|
+
{
|
|
461
|
+
"name": "open",
|
|
462
|
+
"entryType": "function",
|
|
463
|
+
"description": "Opens the tab panel with the specified value.",
|
|
464
|
+
"generics": [],
|
|
465
|
+
"isNewType": false,
|
|
466
|
+
"jsdocTags": [],
|
|
467
|
+
"params": [
|
|
468
|
+
{
|
|
469
|
+
"name": "value",
|
|
470
|
+
"description": "",
|
|
471
|
+
"type": "string",
|
|
472
|
+
"isOptional": false,
|
|
473
|
+
"isRestParam": false
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
"rawComment": "/** Opens the tab panel with the specified value. */",
|
|
477
|
+
"returnType": "boolean"
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"implementation": {
|
|
481
|
+
"params": [
|
|
482
|
+
{
|
|
483
|
+
"name": "value",
|
|
484
|
+
"description": "",
|
|
485
|
+
"type": "string",
|
|
486
|
+
"isOptional": false,
|
|
487
|
+
"isRestParam": false
|
|
488
|
+
}
|
|
489
|
+
],
|
|
490
|
+
"isNewType": false,
|
|
491
|
+
"returnType": "boolean",
|
|
492
|
+
"generics": [],
|
|
493
|
+
"name": "open",
|
|
494
|
+
"description": "Opens the tab panel with the specified value.",
|
|
495
|
+
"entryType": "function",
|
|
496
|
+
"jsdocTags": [],
|
|
497
|
+
"rawComment": "/** Opens the tab panel with the specified value. */"
|
|
498
|
+
},
|
|
499
|
+
"entryType": "function",
|
|
500
|
+
"description": "Opens the tab panel with the specified value.",
|
|
501
|
+
"jsdocTags": [],
|
|
502
|
+
"rawComment": "/** Opens the tab panel with the specified value. */",
|
|
503
|
+
"memberType": "method",
|
|
504
|
+
"memberTags": []
|
|
457
505
|
}
|
|
458
506
|
],
|
|
459
507
|
"generics": [],
|
|
460
|
-
"description": "A TabList container.\n\
|
|
461
|
-
"jsdocTags": [
|
|
462
|
-
|
|
508
|
+
"description": "A TabList container.\n\nThe `ngTabList` directive controls a list of `ngTab` elements. It manages keyboard\nnavigation, selection, and the overall orientation of the tabs. It should be placed\nwithin an `ngTabs` container.\n\n```html\n<ul ngTabList [(selectedTab)]=\"mySelectedTab\" orientation=\"horizontal\" selectionMode=\"explicit\">\n <li ngTab value=\"first\">First Tab</li>\n <li ngTab value=\"second\">Second Tab</li>\n</ul>\n```",
|
|
509
|
+
"jsdocTags": [
|
|
510
|
+
{
|
|
511
|
+
"name": "developerPreview",
|
|
512
|
+
"comment": "21.0"
|
|
513
|
+
}
|
|
514
|
+
],
|
|
515
|
+
"rawComment": "/**\n * A TabList container.\n *\n * The `ngTabList` directive controls a list of `ngTab` elements. It manages keyboard\n * navigation, selection, and the overall orientation of the tabs. It should be placed\n * within an `ngTabs` container.\n *\n * ```html\n * <ul ngTabList [(selectedTab)]=\"mySelectedTab\" orientation=\"horizontal\" selectionMode=\"explicit\">\n * <li ngTab value=\"first\">First Tab</li>\n * <li ngTab value=\"second\">Second Tab</li>\n * </ul>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
463
516
|
"implements": [
|
|
464
517
|
"OnInit",
|
|
465
518
|
"OnDestroy"
|
|
@@ -471,8 +524,8 @@
|
|
|
471
524
|
],
|
|
472
525
|
"source": {
|
|
473
526
|
"filePath": "/src/aria/tabs/tabs.ts",
|
|
474
|
-
"startLine":
|
|
475
|
-
"endLine":
|
|
527
|
+
"startLine": 138,
|
|
528
|
+
"endLine": 264
|
|
476
529
|
}
|
|
477
530
|
},
|
|
478
531
|
{
|
|
@@ -482,14 +535,27 @@
|
|
|
482
535
|
"members": [
|
|
483
536
|
{
|
|
484
537
|
"name": "element",
|
|
485
|
-
"type": "
|
|
538
|
+
"type": "HTMLElement",
|
|
486
539
|
"memberType": "property",
|
|
487
540
|
"memberTags": [
|
|
488
541
|
"readonly"
|
|
489
542
|
],
|
|
490
|
-
"description": "
|
|
543
|
+
"description": "A reference to the host element.",
|
|
491
544
|
"jsdocTags": []
|
|
492
545
|
},
|
|
546
|
+
{
|
|
547
|
+
"name": "id",
|
|
548
|
+
"type": "any",
|
|
549
|
+
"memberType": "property",
|
|
550
|
+
"memberTags": [
|
|
551
|
+
"readonly",
|
|
552
|
+
"input"
|
|
553
|
+
],
|
|
554
|
+
"description": "A unique identifier for the widget.",
|
|
555
|
+
"jsdocTags": [],
|
|
556
|
+
"inputAlias": "id",
|
|
557
|
+
"isRequiredInput": false
|
|
558
|
+
},
|
|
493
559
|
{
|
|
494
560
|
"name": "tablist",
|
|
495
561
|
"type": "any",
|
|
@@ -531,11 +597,64 @@
|
|
|
531
597
|
"readonly",
|
|
532
598
|
"input"
|
|
533
599
|
],
|
|
534
|
-
"description": "
|
|
600
|
+
"description": "The remote tabpanel unique identifier.",
|
|
535
601
|
"jsdocTags": [],
|
|
536
602
|
"inputAlias": "value",
|
|
537
603
|
"isRequiredInput": true
|
|
538
604
|
},
|
|
605
|
+
{
|
|
606
|
+
"name": "active",
|
|
607
|
+
"type": "any",
|
|
608
|
+
"memberType": "property",
|
|
609
|
+
"memberTags": [
|
|
610
|
+
"readonly"
|
|
611
|
+
],
|
|
612
|
+
"description": "Whether the tab is active.",
|
|
613
|
+
"jsdocTags": []
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"name": "selected",
|
|
617
|
+
"type": "any",
|
|
618
|
+
"memberType": "property",
|
|
619
|
+
"memberTags": [
|
|
620
|
+
"readonly"
|
|
621
|
+
],
|
|
622
|
+
"description": "Whether the tab is selected.",
|
|
623
|
+
"jsdocTags": []
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"name": "open",
|
|
627
|
+
"signatures": [
|
|
628
|
+
{
|
|
629
|
+
"name": "open",
|
|
630
|
+
"entryType": "function",
|
|
631
|
+
"description": "Opens this tab panel.",
|
|
632
|
+
"generics": [],
|
|
633
|
+
"isNewType": false,
|
|
634
|
+
"jsdocTags": [],
|
|
635
|
+
"params": [],
|
|
636
|
+
"rawComment": "/** Opens this tab panel. */",
|
|
637
|
+
"returnType": "void"
|
|
638
|
+
}
|
|
639
|
+
],
|
|
640
|
+
"implementation": {
|
|
641
|
+
"params": [],
|
|
642
|
+
"isNewType": false,
|
|
643
|
+
"returnType": "void",
|
|
644
|
+
"generics": [],
|
|
645
|
+
"name": "open",
|
|
646
|
+
"description": "Opens this tab panel.",
|
|
647
|
+
"entryType": "function",
|
|
648
|
+
"jsdocTags": [],
|
|
649
|
+
"rawComment": "/** Opens this tab panel. */"
|
|
650
|
+
},
|
|
651
|
+
"entryType": "function",
|
|
652
|
+
"description": "Opens this tab panel.",
|
|
653
|
+
"jsdocTags": [],
|
|
654
|
+
"rawComment": "/** Opens this tab panel. */",
|
|
655
|
+
"memberType": "method",
|
|
656
|
+
"memberTags": []
|
|
657
|
+
},
|
|
539
658
|
{
|
|
540
659
|
"name": "ngOnInit",
|
|
541
660
|
"signatures": [
|
|
@@ -604,9 +723,14 @@
|
|
|
604
723
|
}
|
|
605
724
|
],
|
|
606
725
|
"generics": [],
|
|
607
|
-
"description": "A selectable tab in a TabList
|
|
608
|
-
"jsdocTags": [
|
|
609
|
-
|
|
726
|
+
"description": "A selectable tab in a TabList.\n\nThe `ngTab` directive represents an individual tab control within an `ngTabList`. It\nrequires a `value` that uniquely identifies it and links it to a corresponding `ngTabPanel`.\n\n```html\n<li ngTab value=\"myTabId\" [disabled]=\"isTabDisabled\">\n My Tab Label\n</li>\n```",
|
|
727
|
+
"jsdocTags": [
|
|
728
|
+
{
|
|
729
|
+
"name": "developerPreview",
|
|
730
|
+
"comment": "21.0"
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
"rawComment": "/**\n * A selectable tab in a TabList.\n *\n * The `ngTab` directive represents an individual tab control within an `ngTabList`. It\n * requires a `value` that uniquely identifies it and links it to a corresponding `ngTabPanel`.\n *\n * ```html\n * <li ngTab value=\"myTabId\" [disabled]=\"isTabDisabled\">\n * My Tab Label\n * </li>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
610
734
|
"implements": [
|
|
611
735
|
"HasElement",
|
|
612
736
|
"OnInit",
|
|
@@ -619,8 +743,8 @@
|
|
|
619
743
|
],
|
|
620
744
|
"source": {
|
|
621
745
|
"filePath": "/src/aria/tabs/tabs.ts",
|
|
622
|
-
"startLine":
|
|
623
|
-
"endLine":
|
|
746
|
+
"startLine": 280,
|
|
747
|
+
"endLine": 350
|
|
624
748
|
}
|
|
625
749
|
},
|
|
626
750
|
{
|
|
@@ -628,6 +752,26 @@
|
|
|
628
752
|
"isAbstract": false,
|
|
629
753
|
"entryType": "undecorated_class",
|
|
630
754
|
"members": [
|
|
755
|
+
{
|
|
756
|
+
"name": "element",
|
|
757
|
+
"type": "HTMLElement",
|
|
758
|
+
"memberType": "property",
|
|
759
|
+
"memberTags": [
|
|
760
|
+
"readonly"
|
|
761
|
+
],
|
|
762
|
+
"description": "A reference to the host element.",
|
|
763
|
+
"jsdocTags": []
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"name": "id",
|
|
767
|
+
"type": "any",
|
|
768
|
+
"memberType": "property",
|
|
769
|
+
"memberTags": [
|
|
770
|
+
"readonly"
|
|
771
|
+
],
|
|
772
|
+
"description": "A global unique identifier for the tab.",
|
|
773
|
+
"jsdocTags": []
|
|
774
|
+
},
|
|
631
775
|
{
|
|
632
776
|
"name": "tab",
|
|
633
777
|
"type": "any",
|
|
@@ -648,6 +792,16 @@
|
|
|
648
792
|
"description": "A local unique identifier for the tabpanel.",
|
|
649
793
|
"jsdocTags": []
|
|
650
794
|
},
|
|
795
|
+
{
|
|
796
|
+
"name": "visible",
|
|
797
|
+
"type": "any",
|
|
798
|
+
"memberType": "property",
|
|
799
|
+
"memberTags": [
|
|
800
|
+
"readonly"
|
|
801
|
+
],
|
|
802
|
+
"description": "Whether the tab panel is visible.",
|
|
803
|
+
"jsdocTags": []
|
|
804
|
+
},
|
|
651
805
|
{
|
|
652
806
|
"name": "ngOnInit",
|
|
653
807
|
"signatures": [
|
|
@@ -716,17 +870,22 @@
|
|
|
716
870
|
}
|
|
717
871
|
],
|
|
718
872
|
"generics": [],
|
|
719
|
-
"description": "A TabPanel container for the resources of layered content associated with a tab.\n\
|
|
720
|
-
"jsdocTags": [
|
|
721
|
-
|
|
873
|
+
"description": "A TabPanel container for the resources of layered content associated with a tab.\n\nThe `ngTabPanel` directive holds the content for a specific tab. It is linked to an\n`ngTab` by a matching `value`. If a tab panel is hidden, the `inert` attribute will be\napplied to remove it from the accessibility tree. Proper styling is required for visual hiding.\n\n```html\n<div ngTabPanel value=\"myTabId\">\n <ng-template ngTabContent>\n <!-- Content for the tab panel -->\n </ng-template>\n</div>\n```",
|
|
874
|
+
"jsdocTags": [
|
|
875
|
+
{
|
|
876
|
+
"name": "developerPreview",
|
|
877
|
+
"comment": "21.0"
|
|
878
|
+
}
|
|
879
|
+
],
|
|
880
|
+
"rawComment": "/**\n * A TabPanel container for the resources of layered content associated with a tab.\n *\n * The `ngTabPanel` directive holds the content for a specific tab. It is linked to an\n * `ngTab` by a matching `value`. If a tab panel is hidden, the `inert` attribute will be\n * applied to remove it from the accessibility tree. Proper styling is required for visual hiding.\n *\n * ```html\n * <div ngTabPanel value=\"myTabId\">\n * <ng-template ngTabContent>\n * <!-- Content for the tab panel -->\n * </ng-template>\n * </div>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
722
881
|
"implements": [
|
|
723
882
|
"OnInit",
|
|
724
883
|
"OnDestroy"
|
|
725
884
|
],
|
|
726
885
|
"source": {
|
|
727
886
|
"filePath": "/src/aria/tabs/tabs.ts",
|
|
728
|
-
"startLine":
|
|
729
|
-
"endLine":
|
|
887
|
+
"startLine": 369,
|
|
888
|
+
"endLine": 429
|
|
730
889
|
}
|
|
731
890
|
},
|
|
732
891
|
{
|
|
@@ -735,26 +894,23 @@
|
|
|
735
894
|
"entryType": "undecorated_class",
|
|
736
895
|
"members": [],
|
|
737
896
|
"generics": [],
|
|
738
|
-
"description": "A TabContent container for the lazy-loaded content
|
|
739
|
-
"jsdocTags": [
|
|
740
|
-
|
|
897
|
+
"description": "A TabContent container for the lazy-loaded content.\n\nThis structural directive should be applied to an `ng-template` within an `ngTabPanel`.\nIt enables lazy loading of the tab's content, meaning the content is only rendered\nwhen the tab is activated for the first time.\n\n```html\n<div ngTabPanel value=\"myTabId\">\n <ng-template ngTabContent>\n <p>This content will be loaded when 'myTabId' is selected.</p>\n </ng-template>\n</div>\n```",
|
|
898
|
+
"jsdocTags": [
|
|
899
|
+
{
|
|
900
|
+
"name": "developerPreview",
|
|
901
|
+
"comment": "21.0"
|
|
902
|
+
}
|
|
903
|
+
],
|
|
904
|
+
"rawComment": "/**\n * A TabContent container for the lazy-loaded content.\n *\n * This structural directive should be applied to an `ng-template` within an `ngTabPanel`.\n * It enables lazy loading of the tab's content, meaning the content is only rendered\n * when the tab is activated for the first time.\n *\n * ```html\n * <div ngTabPanel value=\"myTabId\">\n * <ng-template ngTabContent>\n * <p>This content will be loaded when 'myTabId' is selected.</p>\n * </ng-template>\n * </div>\n * ```\n *\n * @developerPreview 21.0\n */",
|
|
741
905
|
"implements": [],
|
|
742
906
|
"source": {
|
|
743
907
|
"filePath": "/src/aria/tabs/tabs.ts",
|
|
744
|
-
"startLine":
|
|
745
|
-
"endLine":
|
|
908
|
+
"startLine": 448,
|
|
909
|
+
"endLine": 453
|
|
746
910
|
}
|
|
747
911
|
}
|
|
748
912
|
],
|
|
749
913
|
"symbols": [
|
|
750
|
-
[
|
|
751
|
-
"DeferredContent",
|
|
752
|
-
"@angular/aria/deferred-content"
|
|
753
|
-
],
|
|
754
|
-
[
|
|
755
|
-
"DeferredContentAware",
|
|
756
|
-
"@angular/aria/deferred-content"
|
|
757
|
-
],
|
|
758
914
|
[
|
|
759
915
|
"_IdGenerator",
|
|
760
916
|
"@angular/cdk/a11y"
|
|
@@ -791,18 +947,10 @@
|
|
|
791
947
|
"model",
|
|
792
948
|
"@angular/core"
|
|
793
949
|
],
|
|
794
|
-
[
|
|
795
|
-
"linkedSignal",
|
|
796
|
-
"@angular/core"
|
|
797
|
-
],
|
|
798
950
|
[
|
|
799
951
|
"signal",
|
|
800
952
|
"@angular/core"
|
|
801
953
|
],
|
|
802
|
-
[
|
|
803
|
-
"Signal",
|
|
804
|
-
"@angular/core"
|
|
805
|
-
],
|
|
806
954
|
[
|
|
807
955
|
"afterRenderEffect",
|
|
808
956
|
"@angular/core"
|
|
@@ -827,6 +975,14 @@
|
|
|
827
975
|
"TabPattern",
|
|
828
976
|
"@angular/aria/private"
|
|
829
977
|
],
|
|
978
|
+
[
|
|
979
|
+
"DeferredContent",
|
|
980
|
+
"@angular/aria/private"
|
|
981
|
+
],
|
|
982
|
+
[
|
|
983
|
+
"DeferredContentAware",
|
|
984
|
+
"@angular/aria/private"
|
|
985
|
+
],
|
|
830
986
|
[
|
|
831
987
|
"Tabs",
|
|
832
988
|
"@angular/aria/tabs"
|
|
@@ -852,11 +1008,7 @@
|
|
|
852
1008
|
"@angular/aria/tabs"
|
|
853
1009
|
],
|
|
854
1010
|
[
|
|
855
|
-
"Tabs.
|
|
856
|
-
"@angular/aria/tabs"
|
|
857
|
-
],
|
|
858
|
-
[
|
|
859
|
-
"Tabs.unorderedTabpanels",
|
|
1011
|
+
"Tabs.element",
|
|
860
1012
|
"@angular/aria/tabs"
|
|
861
1013
|
],
|
|
862
1014
|
[
|
|
@@ -872,11 +1024,11 @@
|
|
|
872
1024
|
"@angular/aria/tabs"
|
|
873
1025
|
],
|
|
874
1026
|
[
|
|
875
|
-
"TabList.
|
|
1027
|
+
"TabList.element",
|
|
876
1028
|
"@angular/aria/tabs"
|
|
877
1029
|
],
|
|
878
1030
|
[
|
|
879
|
-
"TabList.
|
|
1031
|
+
"TabList.textDirection",
|
|
880
1032
|
"@angular/aria/tabs"
|
|
881
1033
|
],
|
|
882
1034
|
[
|
|
@@ -888,7 +1040,7 @@
|
|
|
888
1040
|
"@angular/aria/tabs"
|
|
889
1041
|
],
|
|
890
1042
|
[
|
|
891
|
-
"TabList.
|
|
1043
|
+
"TabList.softDisabled",
|
|
892
1044
|
"@angular/aria/tabs"
|
|
893
1045
|
],
|
|
894
1046
|
[
|
|
@@ -900,11 +1052,11 @@
|
|
|
900
1052
|
"@angular/aria/tabs"
|
|
901
1053
|
],
|
|
902
1054
|
[
|
|
903
|
-
"TabList.
|
|
1055
|
+
"TabList.selectedTab",
|
|
904
1056
|
"@angular/aria/tabs"
|
|
905
1057
|
],
|
|
906
1058
|
[
|
|
907
|
-
"TabList.
|
|
1059
|
+
"TabList.disabled",
|
|
908
1060
|
"@angular/aria/tabs"
|
|
909
1061
|
],
|
|
910
1062
|
[
|
|
@@ -927,6 +1079,10 @@
|
|
|
927
1079
|
"TabList.deregister",
|
|
928
1080
|
"@angular/aria/tabs"
|
|
929
1081
|
],
|
|
1082
|
+
[
|
|
1083
|
+
"TabList.open",
|
|
1084
|
+
"@angular/aria/tabs"
|
|
1085
|
+
],
|
|
930
1086
|
[
|
|
931
1087
|
"Tab",
|
|
932
1088
|
"@angular/aria/tabs"
|
|
@@ -935,6 +1091,10 @@
|
|
|
935
1091
|
"Tab.element",
|
|
936
1092
|
"@angular/aria/tabs"
|
|
937
1093
|
],
|
|
1094
|
+
[
|
|
1095
|
+
"Tab.id",
|
|
1096
|
+
"@angular/aria/tabs"
|
|
1097
|
+
],
|
|
938
1098
|
[
|
|
939
1099
|
"Tab.tablist",
|
|
940
1100
|
"@angular/aria/tabs"
|
|
@@ -951,6 +1111,18 @@
|
|
|
951
1111
|
"Tab.value",
|
|
952
1112
|
"@angular/aria/tabs"
|
|
953
1113
|
],
|
|
1114
|
+
[
|
|
1115
|
+
"Tab.active",
|
|
1116
|
+
"@angular/aria/tabs"
|
|
1117
|
+
],
|
|
1118
|
+
[
|
|
1119
|
+
"Tab.selected",
|
|
1120
|
+
"@angular/aria/tabs"
|
|
1121
|
+
],
|
|
1122
|
+
[
|
|
1123
|
+
"Tab.open",
|
|
1124
|
+
"@angular/aria/tabs"
|
|
1125
|
+
],
|
|
954
1126
|
[
|
|
955
1127
|
"Tab.ngOnInit",
|
|
956
1128
|
"@angular/aria/tabs"
|
|
@@ -963,6 +1135,14 @@
|
|
|
963
1135
|
"TabPanel",
|
|
964
1136
|
"@angular/aria/tabs"
|
|
965
1137
|
],
|
|
1138
|
+
[
|
|
1139
|
+
"TabPanel.element",
|
|
1140
|
+
"@angular/aria/tabs"
|
|
1141
|
+
],
|
|
1142
|
+
[
|
|
1143
|
+
"TabPanel.id",
|
|
1144
|
+
"@angular/aria/tabs"
|
|
1145
|
+
],
|
|
966
1146
|
[
|
|
967
1147
|
"TabPanel.tab",
|
|
968
1148
|
"@angular/aria/tabs"
|
|
@@ -971,6 +1151,10 @@
|
|
|
971
1151
|
"TabPanel.value",
|
|
972
1152
|
"@angular/aria/tabs"
|
|
973
1153
|
],
|
|
1154
|
+
[
|
|
1155
|
+
"TabPanel.visible",
|
|
1156
|
+
"@angular/aria/tabs"
|
|
1157
|
+
],
|
|
974
1158
|
[
|
|
975
1159
|
"TabPanel.ngOnInit",
|
|
976
1160
|
"@angular/aria/tabs"
|