@vsn-ux/ngx-gaia 0.5.0 → 0.6.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/vsn-ux-ngx-gaia.mjs +107 -41
- package/fesm2022/vsn-ux-ngx-gaia.mjs.map +1 -1
- package/lib/button/icon-button.directive.d.ts +1 -1
- package/lib/select/select-default-value.component.d.ts +8 -2
- package/lib/select/select.component.d.ts +2 -0
- package/lib/text-area/index.d.ts +2 -0
- package/lib/text-area/text-area.directive.d.ts +19 -0
- package/lib/text-area/text-area.module.d.ts +7 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export type GaIconButtonVariant = 'primary' | 'secondary' | 'ghost';
|
|
2
|
+
export type GaIconButtonVariant = 'primary' | 'secondary' | 'ghost' | 'transparent';
|
|
3
3
|
export declare class GaIconButtonDirective {
|
|
4
4
|
readonly icon: import("@angular/core").InputSignal<import("lucide-angular").LucideIconData>;
|
|
5
5
|
readonly variant: import("@angular/core").InputSignal<GaIconButtonVariant>;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
import { GaSelectComponent } from './select.component';
|
|
2
|
+
import { GaOptionComponent } from './option.component';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
export declare class GaSelectDefaultValueComponent {
|
|
3
|
-
|
|
4
|
-
readonly
|
|
5
|
+
protected readonly selectComponent: GaSelectComponent;
|
|
6
|
+
protected readonly icons: {
|
|
7
|
+
X: import("lucide-angular").LucideIconData;
|
|
8
|
+
};
|
|
9
|
+
protected readonly singleViewValue: import("@angular/core").Signal<string>;
|
|
10
|
+
protected deselectOption(option: GaOptionComponent): void;
|
|
5
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectDefaultValueComponent, never>;
|
|
6
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectDefaultValueComponent, "ga-select-default-value", never, {}, {}, never, never, true, never>;
|
|
7
13
|
}
|
|
@@ -62,6 +62,8 @@ export declare class GaSelectComponent implements ControlValueAccessor, GaFormCo
|
|
|
62
62
|
protected onInputKeyDown(event: KeyboardEvent): void;
|
|
63
63
|
protected onOverlayAttach(): void;
|
|
64
64
|
protected onOverlayDetach(): void;
|
|
65
|
+
deselectValue(value: any): void;
|
|
66
|
+
private syncValue;
|
|
65
67
|
private setItemActive;
|
|
66
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<GaSelectComponent, never>;
|
|
67
69
|
static ɵcmp: i0.ɵɵComponentDeclaration<GaSelectComponent, "ga-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "textValue": { "alias": "textValue"; "required": false; "isSignal": true; }; "leftIcon": { "alias": "leftIcon"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "textValue": "textValueChange"; "opened": "opened"; "closed": "closed"; }, ["gaOptions", "cdkListbox", "customSelectValue"], ["ga-select-value", "ga-select-dropdown"], true, [{ directive: typeof i1.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DoCheck } from '@angular/core';
|
|
2
|
+
import { GaFormControl } from '../form-field';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GaTextAreaDirective implements DoCheck, GaFormControl {
|
|
5
|
+
readonly id: import("@angular/core").InputSignal<string | undefined>;
|
|
6
|
+
readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
7
|
+
readonly invalid: import("@angular/core").InputSignalWithTransform<boolean | undefined, unknown>;
|
|
8
|
+
readonly _formControlId: import("@angular/core").Signal<string>;
|
|
9
|
+
readonly _formControlDisabled: import("@angular/core").Signal<boolean>;
|
|
10
|
+
protected readonly uniqueId: import("@angular/core").Signal<string>;
|
|
11
|
+
protected readonly invalidInput: import("@angular/core").Signal<boolean>;
|
|
12
|
+
private readonly generatedUniqueId;
|
|
13
|
+
private readonly injector;
|
|
14
|
+
private readonly implicitInvalid;
|
|
15
|
+
private readonly disabledModel;
|
|
16
|
+
ngDoCheck(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaTextAreaDirective, never>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GaTextAreaDirective, "[gaTextArea]", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./text-area.directive";
|
|
3
|
+
export declare class GaTextAreaModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaTextAreaModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GaTextAreaModule, never, [typeof i1.GaTextAreaDirective], [typeof i1.GaTextAreaDirective]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GaTextAreaModule>;
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vsn-ux/ngx-gaia",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^19.0.0",
|
|
6
6
|
"@angular/common": "^19.0.0",
|
|
7
7
|
"@angular/core": "^19.0.0",
|
|
8
|
-
"@vsn-ux/gaia-styles": "^0.
|
|
8
|
+
"@vsn-ux/gaia-styles": "^0.5.0",
|
|
9
9
|
"lucide-angular": ">=0.503.0 <1.0.0"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
package/public-api.d.ts
CHANGED