@angular/aria 22.0.0-next.2 → 22.0.0-next.4
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/fesm2022/_accordion-chunk.mjs.map +1 -1
- package/fesm2022/_click-event-manager-chunk.mjs +45 -0
- package/fesm2022/_click-event-manager-chunk.mjs.map +1 -0
- package/fesm2022/_combobox-chunk.mjs +4 -4
- package/fesm2022/_combobox-chunk.mjs.map +1 -1
- package/fesm2022/_combobox-listbox-chunk.mjs +22 -12
- package/fesm2022/_combobox-listbox-chunk.mjs.map +1 -1
- package/fesm2022/_combobox-tree-chunk.mjs +18 -8
- package/fesm2022/_combobox-tree-chunk.mjs.map +1 -1
- package/fesm2022/_deferred-content-chunk.mjs +7 -7
- package/fesm2022/_deferred-content-chunk.mjs.map +1 -1
- package/fesm2022/_expansion-chunk.mjs.map +1 -1
- package/fesm2022/_list-chunk.mjs.map +1 -1
- package/fesm2022/_list-navigation-chunk.mjs.map +1 -1
- package/fesm2022/_list-typeahead-chunk.mjs +10 -10
- package/fesm2022/_list-typeahead-chunk.mjs.map +1 -1
- package/fesm2022/_menu-chunk.mjs +34 -13
- package/fesm2022/_menu-chunk.mjs.map +1 -1
- package/fesm2022/_pointer-event-manager-chunk.mjs.map +1 -1
- package/fesm2022/_signal-like-chunk.mjs +1 -1
- package/fesm2022/_signal-like-chunk.mjs.map +1 -1
- package/fesm2022/_tabs-chunk.mjs +15 -5
- package/fesm2022/_tabs-chunk.mjs.map +1 -1
- package/fesm2022/_toolbar-widget-group-chunk.mjs +14 -2
- package/fesm2022/_toolbar-widget-group-chunk.mjs.map +1 -1
- package/fesm2022/_widget-chunk.mjs +6 -4
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +13 -13
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/aria.mjs +1 -1
- package/fesm2022/aria.mjs.map +1 -1
- package/fesm2022/combobox.mjs +15 -15
- package/fesm2022/combobox.mjs.map +1 -1
- package/fesm2022/grid.mjs +12 -12
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +25 -32
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +28 -32
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/private.mjs +9 -8
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/tabs.mjs +23 -31
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +22 -30
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +24 -32
- package/fesm2022/tree.mjs.map +1 -1
- package/package.json +2 -2
- package/resources/code-examples.db +0 -0
- package/types/_accordion-chunk.d.ts +2 -2
- package/types/_click-event-manager-chunk.d.ts +27 -0
- package/types/_combobox-chunk.d.ts +1 -1
- package/types/_grid-chunk.d.ts +2 -2
- package/types/_list-chunk.d.ts +1 -1
- package/types/_listbox-chunk.d.ts +12 -5
- package/types/_menu-chunk.d.ts +14 -10
- package/types/_tabs-chunk.d.ts +12 -6
- package/types/_toolbar-chunk.d.ts +6 -1
- package/types/_tree-chunk.d.ts +7 -1
- package/types/listbox.d.ts +4 -6
- package/types/menu.d.ts +2 -2
- package/types/private.d.ts +2 -1
- package/types/tabs.d.ts +1 -4
- package/types/toolbar.d.ts +2 -5
- package/types/tree.d.ts +2 -5
package/types/tree.d.ts
CHANGED
|
@@ -195,7 +195,7 @@ declare class Tree<V> {
|
|
|
195
195
|
/** The delay in seconds before the typeahead search is reset. */
|
|
196
196
|
readonly typeaheadDelay: _angular_core.InputSignal<number>;
|
|
197
197
|
/** The values of the currently selected items. */
|
|
198
|
-
readonly
|
|
198
|
+
readonly value: _angular_core.ModelSignal<V[]>;
|
|
199
199
|
/** Text direction. */
|
|
200
200
|
readonly textDirection: _angular_core.WritableSignal<_angular_cdk_bidi.Direction>;
|
|
201
201
|
/** Whether the tree is in navigation mode. */
|
|
@@ -207,15 +207,12 @@ declare class Tree<V> {
|
|
|
207
207
|
readonly currentType: _angular_core.InputSignal<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
208
208
|
/** The UI pattern for the tree. */
|
|
209
209
|
readonly _pattern: TreePattern<V>;
|
|
210
|
-
/** Whether the tree has received focus since it was rendered. */
|
|
211
|
-
private _hasFocused;
|
|
212
210
|
constructor();
|
|
213
|
-
_onFocus(): void;
|
|
214
211
|
_register(child: TreeItem<V>): void;
|
|
215
212
|
_unregister(child: TreeItem<V>): void;
|
|
216
213
|
scrollActiveItemIntoView(options?: ScrollIntoViewOptions): void;
|
|
217
214
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Tree<any>, never>;
|
|
218
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Tree<any>, "[ngTree]", ["ngTree"], { "id": { "alias": "id"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "focusMode": { "alias": "focusMode"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "softDisabled": { "alias": "softDisabled"; "required": false; "isSignal": true; }; "typeaheadDelay": { "alias": "typeaheadDelay"; "required": false; "isSignal": true; }; "
|
|
215
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Tree<any>, "[ngTree]", ["ngTree"], { "id": { "alias": "id"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "focusMode": { "alias": "focusMode"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "softDisabled": { "alias": "softDisabled"; "required": false; "isSignal": true; }; "typeaheadDelay": { "alias": "typeaheadDelay"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "nav": { "alias": "nav"; "required": false; "isSignal": true; }; "currentType": { "alias": "currentType"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, [{ directive: typeof ComboboxPopup; inputs: {}; outputs: {}; }]>;
|
|
219
216
|
}
|
|
220
217
|
|
|
221
218
|
export { Tree, TreeItem, TreeItemGroup, ComboboxPopup as ɵɵComboboxPopup, DeferredContent as ɵɵDeferredContent };
|