@vsn-ux/ngx-gaia 0.10.4 → 0.11.1

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@vsn-ux/ngx-gaia",
3
- "version": "0.10.4",
3
+ "version": "0.11.1",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
- "@angular/cdk": "^20.0.0",
7
- "@angular/common": "^20.0.0",
8
- "@angular/core": "^20.0.0",
6
+ "@angular/cdk": "^21.0.0",
7
+ "@angular/common": "^21.0.0",
8
+ "@angular/core": "^21.0.0",
9
9
  "@vsn-ux/gaia-styles": "^0.5.11",
10
- "lucide-angular": ">=0.518.0 <1.0.0"
10
+ "lucide-angular": ">=0.555.0 <1.0.0"
11
11
  },
12
12
  "dependencies": {
13
13
  "tslib": "^2.3.0"
@@ -22,7 +22,7 @@
22
22
  "exports": {
23
23
  ".": {
24
24
  "sass": "./styles/global.scss",
25
- "types": "./index.d.ts",
25
+ "types": "./types/vsn-ux-ngx-gaia.d.ts",
26
26
  "default": "./fesm2022/vsn-ux-ngx-gaia.mjs"
27
27
  },
28
28
  "./package.json": {
@@ -30,6 +30,6 @@
30
30
  }
31
31
  },
32
32
  "module": "fesm2022/vsn-ux-ngx-gaia.mjs",
33
- "typings": "index.d.ts",
33
+ "typings": "types/vsn-ux-ngx-gaia.d.ts",
34
34
  "sideEffects": false
35
35
  }
@@ -3,8 +3,4 @@ export interface Schema {
3
3
  * Name of the project where library should be installed
4
4
  */
5
5
  project?: string;
6
- /**
7
- * Flag if animations or no animations module should be included
8
- */
9
- animations?: boolean;
10
6
  }
@@ -10,12 +10,6 @@
10
10
  "$default": {
11
11
  "$source": "projectName"
12
12
  }
13
- },
14
- "animations": {
15
- "description": "Add animations to AppModule.",
16
- "type": "boolean",
17
- "default": true,
18
- "x-prompt": "Would you like to include animations with the library?"
19
13
  }
20
14
  }
21
15
  }
@@ -809,16 +809,11 @@ declare const DEFAULT_MODAL_OPTIONS: Required<GaModalOptions>;
809
809
  declare function provideGaModalOptions(options: GaModalOptions): Provider;
810
810
 
811
811
  declare abstract class GaModalComponent<I = void, O = void> {
812
- private readonly closeSubject;
813
- private readonly overlayRef;
814
- private readonly destroyRef;
815
- private readonly router;
816
- private readonly globalOptions;
812
+ #private;
817
813
  readonly options: GaModalOptions & {
818
814
  labelledBy?: string;
819
815
  describedBy?: string;
820
816
  };
821
- private readonly trapfocus;
822
817
  protected readonly data: I;
823
818
  protected readonly labelledBy: _angular_core.WritableSignal<string | null>;
824
819
  protected readonly describedBy: _angular_core.WritableSignal<string | null>;
@@ -833,7 +828,6 @@ declare abstract class GaModalComponent<I = void, O = void> {
833
828
  * Return true to permit closing. False - to refuse.
834
829
  */
835
830
  protected onSoftClose(): boolean | Observable<boolean>;
836
- private softClose;
837
831
  protected createOptions(options?: GaModalOptions & {
838
832
  labelledBy?: string;
839
833
  describedBy?: string;
@@ -1021,6 +1015,7 @@ declare class GaTooltipDirective implements OnDestroy {
1021
1015
  private mouseOver;
1022
1016
  private _showControlMode;
1023
1017
  private _hideControlMode;
1018
+ private showTimeoutId;
1024
1019
  set content(value: string | TemplateRef<any> | null);
1025
1020
  get content(): string | TemplateRef<any> | null;
1026
1021
  disabled: boolean;
@@ -1037,6 +1032,7 @@ declare class GaTooltipDirective implements OnDestroy {
1037
1032
  get hideControlMode(): GaTooltipControlMode;
1038
1033
  set offset(value: number);
1039
1034
  get offset(): number;
1035
+ readonly showDelay: _angular_core.InputSignalWithTransform<number, unknown>;
1040
1036
  set placement(value: GaTooltipPlacement);
1041
1037
  get placement(): GaTooltipPlacement;
1042
1038
  get ariaDescribedBy(): string | null;
@@ -1051,12 +1047,13 @@ declare class GaTooltipDirective implements OnDestroy {
1051
1047
  * hides only if mouse is not over the host element nor the tooltip itself
1052
1048
  */
1053
1049
  private softHide;
1050
+ private clearShowTimeout;
1054
1051
  private createOverlay;
1055
1052
  private updateTooltipPlacement;
1056
1053
  private updatePosition;
1057
1054
  private getPositions;
1058
1055
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTooltipDirective, never>;
1059
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaTooltipDirective, "[gaTooltip]", ["gaTooltip"], { "content": { "alias": "gaTooltip"; "required": false; }; "disabled": { "alias": "gaTooltipDisabled"; "required": false; }; "controlMode": { "alias": "gaTooltipControlMode"; "required": false; }; "showControlMode": { "alias": "gaTooltipShowControlMode"; "required": false; }; "hideControlMode": { "alias": "gaTooltipHideControlMode"; "required": false; }; "offset": { "alias": "gaTooltipOffsetSize"; "required": false; }; "placement": { "alias": "gaTooltipPlacement"; "required": false; }; }, {}, never, never, true, never>;
1056
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaTooltipDirective, "[gaTooltip]", ["gaTooltip"], { "content": { "alias": "gaTooltip"; "required": false; }; "disabled": { "alias": "gaTooltipDisabled"; "required": false; }; "controlMode": { "alias": "gaTooltipControlMode"; "required": false; }; "showControlMode": { "alias": "gaTooltipShowControlMode"; "required": false; }; "hideControlMode": { "alias": "gaTooltipHideControlMode"; "required": false; }; "offset": { "alias": "gaTooltipOffsetSize"; "required": false; }; "showDelay": { "alias": "gaTooltipShowDelay"; "required": false; "isSignal": true; }; "placement": { "alias": "gaTooltipPlacement"; "required": false; }; }, {}, never, never, true, never>;
1060
1057
  static ngAcceptInputType_disabled: unknown;
1061
1058
  static ngAcceptInputType_offset: unknown;
1062
1059
  }
@@ -1720,9 +1717,9 @@ declare class GaTextAreaDirective {
1720
1717
  readonly idInput: _angular_core.InputSignal<string | undefined>;
1721
1718
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1722
1719
  readonly invalidInput: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
1723
- private readonly disabled;
1724
- protected readonly invalid: _angular_core.Signal<boolean>;
1725
- protected readonly id: _angular_core.Signal<string>;
1720
+ readonly disabled: _angular_core.Signal<boolean>;
1721
+ readonly invalid: _angular_core.Signal<boolean>;
1722
+ readonly id: _angular_core.Signal<string>;
1726
1723
  constructor(placeholder?: string);
1727
1724
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTextAreaDirective, [{ attribute: "placeholder"; }]>;
1728
1725
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaTextAreaDirective, "[gaTextArea]", never, { "idInput": { "alias": "id"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;