@angular/aria 21.2.2 → 21.3.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.
@@ -10,7 +10,7 @@ class DeferredContentAware {
10
10
  }] : []));
11
11
  static ɵfac = i0.ɵɵngDeclareFactory({
12
12
  minVersion: "12.0.0",
13
- version: "22.0.0-next.1",
13
+ version: "21.0.3",
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: "22.0.0-next.1",
21
+ version: "21.0.3",
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: "22.0.0-next.1",
41
+ version: "21.0.3",
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: "22.0.0-next.1",
98
+ version: "21.0.3",
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: "22.0.0-next.1",
106
+ version: "21.0.3",
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: "22.0.0-next.1",
114
+ version: "21.0.3",
115
115
  ngImport: i0,
116
116
  type: DeferredContent,
117
117
  decorators: [{
@@ -593,10 +593,9 @@ 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);
597
596
  activeDescendant = computed(() => this.gridBehavior.activeDescendant());
598
597
  activeCell = computed(() => this.gridBehavior.focusBehavior.activeCell());
599
- anchorCell = computed(() => this.multiSelectable() ? this.gridBehavior.selectionAnchorCell() : undefined);
598
+ anchorCell = computed(() => this.inputs.enableSelection() && this.inputs.multi() ? this.gridBehavior.selectionAnchorCell() : undefined);
600
599
  pauseNavigation = computed(() => this.gridBehavior.data.cells().flat().reduce((res, c) => res || c.isActivated(), false));
601
600
  isFocused = signal(false);
602
601
  hasBeenFocused = signal(false);
@@ -985,7 +984,7 @@ class GridCellWidgetPattern {
985
984
  index = computed(() => this.inputs.cell().inputs.widgets().indexOf(this));
986
985
  disabled = computed(() => this.inputs.disabled() || this.inputs.cell().disabled());
987
986
  tabIndex = computed(() => this.inputs.cell().widgetTabIndex());
988
- active = computed(() => this.inputs.cell().active() && this.inputs.cell().activeWidget() === this);
987
+ active = computed(() => this.inputs.cell().activeWidget() === this);
989
988
  isActivated = signal(false);
990
989
  lastActivateEvent = signal(undefined);
991
990
  lastDeactivateEvent = signal(undefined);