@vsn-ux/ngx-gaia 0.10.3 → 0.11.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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@vsn-ux/ngx-gaia",
3
- "version": "0.10.3",
3
+ "version": "0.11.0",
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
  }
@@ -1720,9 +1720,9 @@ declare class GaTextAreaDirective {
1720
1720
  readonly idInput: _angular_core.InputSignal<string | undefined>;
1721
1721
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1722
1722
  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>;
1723
+ readonly disabled: _angular_core.Signal<boolean>;
1724
+ readonly invalid: _angular_core.Signal<boolean>;
1725
+ readonly id: _angular_core.Signal<string>;
1726
1726
  constructor(placeholder?: string);
1727
1727
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTextAreaDirective, [{ attribute: "placeholder"; }]>;
1728
1728
  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>;