@angular/aria 21.3.0-next.0 → 22.0.0-next.0
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/_deferred-content-chunk.mjs +6 -6
- package/fesm2022/_widget-chunk.mjs +3 -2
- package/fesm2022/_widget-chunk.mjs.map +1 -1
- package/fesm2022/accordion.mjs +12 -12
- 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 +19 -15
- package/fesm2022/grid.mjs.map +1 -1
- package/fesm2022/listbox.mjs +6 -6
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs +15 -15
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/tabs.mjs +15 -15
- package/fesm2022/toolbar.mjs +9 -9
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tree.mjs +9 -9
- package/package.json +3 -3
- package/resources/code-examples.db +0 -0
- package/types/_grid-chunk.d.ts +2 -0
|
@@ -10,7 +10,7 @@ class DeferredContentAware {
|
|
|
10
10
|
}] : []));
|
|
11
11
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
12
12
|
minVersion: "12.0.0",
|
|
13
|
-
version: "
|
|
13
|
+
version: "22.0.0-next.1",
|
|
14
14
|
ngImport: i0,
|
|
15
15
|
type: DeferredContentAware,
|
|
16
16
|
deps: [],
|
|
@@ -18,7 +18,7 @@ class DeferredContentAware {
|
|
|
18
18
|
});
|
|
19
19
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
20
20
|
minVersion: "17.1.0",
|
|
21
|
-
version: "
|
|
21
|
+
version: "22.0.0-next.1",
|
|
22
22
|
type: DeferredContentAware,
|
|
23
23
|
isStandalone: true,
|
|
24
24
|
inputs: {
|
|
@@ -38,7 +38,7 @@ class DeferredContentAware {
|
|
|
38
38
|
}
|
|
39
39
|
i0.ɵɵngDeclareClassMetadata({
|
|
40
40
|
minVersion: "12.0.0",
|
|
41
|
-
version: "
|
|
41
|
+
version: "22.0.0-next.1",
|
|
42
42
|
ngImport: i0,
|
|
43
43
|
type: DeferredContentAware,
|
|
44
44
|
decorators: [{
|
|
@@ -95,7 +95,7 @@ class DeferredContent {
|
|
|
95
95
|
}
|
|
96
96
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
97
97
|
minVersion: "12.0.0",
|
|
98
|
-
version: "
|
|
98
|
+
version: "22.0.0-next.1",
|
|
99
99
|
ngImport: i0,
|
|
100
100
|
type: DeferredContent,
|
|
101
101
|
deps: [],
|
|
@@ -103,7 +103,7 @@ class DeferredContent {
|
|
|
103
103
|
});
|
|
104
104
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
105
105
|
minVersion: "14.0.0",
|
|
106
|
-
version: "
|
|
106
|
+
version: "22.0.0-next.1",
|
|
107
107
|
type: DeferredContent,
|
|
108
108
|
isStandalone: true,
|
|
109
109
|
ngImport: i0
|
|
@@ -111,7 +111,7 @@ class DeferredContent {
|
|
|
111
111
|
}
|
|
112
112
|
i0.ɵɵngDeclareClassMetadata({
|
|
113
113
|
minVersion: "12.0.0",
|
|
114
|
-
version: "
|
|
114
|
+
version: "22.0.0-next.1",
|
|
115
115
|
ngImport: i0,
|
|
116
116
|
type: DeferredContent,
|
|
117
117
|
decorators: [{
|
|
@@ -593,9 +593,10 @@ class GridPattern {
|
|
|
593
593
|
cells = computed(() => this.gridBehavior.data.cells());
|
|
594
594
|
tabIndex = computed(() => this.gridBehavior.gridTabIndex());
|
|
595
595
|
disabled = computed(() => this.gridBehavior.gridDisabled());
|
|
596
|
+
multiSelectable = computed(() => this.inputs.enableSelection() ? this.inputs.multi() : undefined);
|
|
596
597
|
activeDescendant = computed(() => this.gridBehavior.activeDescendant());
|
|
597
598
|
activeCell = computed(() => this.gridBehavior.focusBehavior.activeCell());
|
|
598
|
-
anchorCell = computed(() => this.
|
|
599
|
+
anchorCell = computed(() => this.multiSelectable() ? this.gridBehavior.selectionAnchorCell() : undefined);
|
|
599
600
|
pauseNavigation = computed(() => this.gridBehavior.data.cells().flat().reduce((res, c) => res || c.isActivated(), false));
|
|
600
601
|
isFocused = signal(false);
|
|
601
602
|
hasBeenFocused = signal(false);
|
|
@@ -984,7 +985,7 @@ class GridCellWidgetPattern {
|
|
|
984
985
|
index = computed(() => this.inputs.cell().inputs.widgets().indexOf(this));
|
|
985
986
|
disabled = computed(() => this.inputs.disabled() || this.inputs.cell().disabled());
|
|
986
987
|
tabIndex = computed(() => this.inputs.cell().widgetTabIndex());
|
|
987
|
-
active = computed(() => this.inputs.cell().activeWidget() === this);
|
|
988
|
+
active = computed(() => this.inputs.cell().active() && this.inputs.cell().activeWidget() === this);
|
|
988
989
|
isActivated = signal(false);
|
|
989
990
|
lastActivateEvent = signal(undefined);
|
|
990
991
|
lastDeactivateEvent = signal(undefined);
|