@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.
package/index.d.ts
CHANGED
|
@@ -1735,11 +1735,11 @@ declare class GaTextAreaModule {
|
|
|
1735
1735
|
}
|
|
1736
1736
|
|
|
1737
1737
|
type GaChipVariant = 'default' | 'transparent';
|
|
1738
|
-
declare class GaChipListboxComponent<ValueT =
|
|
1739
|
-
protected readonly cdkListbox: CdkListbox<
|
|
1738
|
+
declare class GaChipListboxComponent<ValueT = unknown> {
|
|
1739
|
+
protected readonly cdkListbox: CdkListbox<ValueT>;
|
|
1740
1740
|
readonly orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
1741
1741
|
readonly variant: _angular_core.InputSignal<GaChipVariant>;
|
|
1742
|
-
readonly valueChange: _angular_core.OutputEmitterRef<ValueT>;
|
|
1742
|
+
readonly valueChange: _angular_core.OutputEmitterRef<readonly ValueT[]>;
|
|
1743
1743
|
readonly disabled: _angular_core.Signal<boolean>;
|
|
1744
1744
|
constructor();
|
|
1745
1745
|
focus(): void;
|
|
@@ -1752,11 +1752,10 @@ declare class GaChipComponent {
|
|
|
1752
1752
|
protected readonly listbox: GaChipListboxComponent<any>;
|
|
1753
1753
|
protected readonly _isSelected: _angular_core.WritableSignal<boolean | null>;
|
|
1754
1754
|
readonly selected: _angular_core.Signal<boolean | null>;
|
|
1755
|
-
readonly value: _angular_core.InputSignal<any>;
|
|
1756
1755
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1757
1756
|
constructor();
|
|
1758
1757
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaChipComponent, never>;
|
|
1759
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaChipComponent, "ga-chip", never, { "
|
|
1758
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaChipComponent, "ga-chip", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1$3.CdkOption; inputs: { "cdkOption": "value"; "cdkOptionDisabled": "disabled"; }; outputs: {}; }]>;
|
|
1760
1759
|
}
|
|
1761
1760
|
|
|
1762
1761
|
declare class GaChipModule {
|