@angular/aria 21.2.1 → 21.2.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.
@@ -10,7 +10,7 @@ class DeferredContentAware {
10
10
  }] : []));
11
11
  static ɵfac = i0.ɵɵngDeclareFactory({
12
12
  minVersion: "12.0.0",
13
- version: "21.0.3",
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.0.3",
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: "21.0.3",
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: "21.0.3",
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: "21.0.3",
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: "21.0.3",
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.inputs.enableSelection() && this.inputs.multi() ? this.gridBehavior.selectionAnchorCell() : undefined);
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);