@vsn-ux/ngx-gaia 0.10.2 → 0.10.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.
@@ -3062,7 +3062,7 @@ class GaModalService {
3062
3062
  const modalStackIndex = this.activeModals().length + 1;
3063
3063
  this.positionStrategy?.top(`calc(4rem * var(--ga-base-scaling-factor, 1) * ${modalStackIndex})`);
3064
3064
  overlayRef.updateSize({
3065
- maxHeight: `calc(100vh - 4rem * var(--ga-base-scaling-factor, 1) * (2 + ${modalStackIndex}))`,
3065
+ maxHeight: `calc(100vh - 4rem * var(--ga-base-scaling-factor, 1) * (1 + ${modalStackIndex}))`,
3066
3066
  });
3067
3067
  }
3068
3068
  this.activeModals.update((modals) => {
@@ -5764,7 +5764,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
5764
5764
  }] });
5765
5765
 
5766
5766
  class GaChipListboxComponent {
5767
- cdkListbox = inject(CdkListbox, { self: true });
5767
+ cdkListbox = inject((CdkListbox), { self: true });
5768
5768
  orientation = input('horizontal');
5769
5769
  variant = input('default');
5770
5770
  valueChange = output();
@@ -5776,8 +5776,7 @@ class GaChipListboxComponent {
5776
5776
  this.cdkListbox.valueChange
5777
5777
  .pipe(takeUntilDestroyed())
5778
5778
  .subscribe((event) => {
5779
- const value = !this.cdkListbox.multiple ? event.value[0] : event.value;
5780
- this.valueChange.emit(value);
5779
+ this.valueChange.emit(event.value);
5781
5780
  });
5782
5781
  }
5783
5782
  focus() {
@@ -5808,7 +5807,6 @@ class GaChipComponent {
5808
5807
  listbox = inject(GaChipListboxComponent);
5809
5808
  _isSelected = signal(null);
5810
5809
  selected = this._isSelected.asReadonly();
5811
- value = input.required();
5812
5810
  disabled = input(false, { transform: booleanAttribute });
5813
5811
  constructor() {
5814
5812
  afterEveryRender({
@@ -5820,7 +5818,7 @@ class GaChipComponent {
5820
5818
  });
5821
5819
  }
5822
5820
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5823
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.4", type: GaChipComponent, isStandalone: true, selector: "ga-chip", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.ga-quick-filter-button--transparent": "listbox.variant() === 'transparent'", "class.ga-quick-filter-button--disabled": "disabled() || listbox.disabled()", "class.ga-quick-filter-button--selected": "selected()" }, classAttribute: "ga-quick-filter-button" }, hostDirectives: [{ directive: i1$5.CdkOption, inputs: ["cdkOption", "value", "cdkOptionDisabled", "disabled"] }], ngImport: i0, template: "<ng-content />\n", dependencies: [{ kind: "ngmodule", type: CdkListboxModule }] });
5821
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.4", type: GaChipComponent, isStandalone: true, selector: "ga-chip", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.ga-quick-filter-button--transparent": "listbox.variant() === 'transparent'", "class.ga-quick-filter-button--disabled": "disabled() || listbox.disabled()", "class.ga-quick-filter-button--selected": "selected()" }, classAttribute: "ga-quick-filter-button" }, hostDirectives: [{ directive: i1$5.CdkOption, inputs: ["cdkOption", "value", "cdkOptionDisabled", "disabled"] }], ngImport: i0, template: "<ng-content />\n", dependencies: [{ kind: "ngmodule", type: CdkListboxModule }] });
5824
5822
  }
5825
5823
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImport: i0, type: GaChipComponent, decorators: [{
5826
5824
  type: Component,