tecnualng 21.1.6 → 21.1.8

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,6 +1,6 @@
1
1
  {
2
2
  "name": "tecnualng",
3
- "version": "21.1.6",
3
+ "version": "21.1.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -1,8 +1,10 @@
1
1
  @mixin tng-theme-futuristic-light {
2
2
  // Colors - Neon accents on light background
3
3
  --tng-primary: #00c2cc; // Slightly darker cyan for visibility on light
4
+ --tng-primary-hover: #00c2cc66;
4
5
  --tng-primary-contrast: #ffffff;
5
6
  --tng-secondary: #9c27b0; // Purple
7
+ --tng-secondary-hover: #9c27b066;
6
8
  --tng-secondary-contrast: #ffffff;
7
9
 
8
10
  // Glassmorphism surface
@@ -1,8 +1,10 @@
1
1
  @mixin tng-theme-futuristic {
2
2
  // Colors - Neon accents on dark background
3
3
  --tng-primary: #00f2ff;
4
+ --tng-primary-hover: #00f2ff44;
4
5
  --tng-primary-contrast: #000000;
5
6
  --tng-secondary: #bc13fe;
7
+ --tng-secondary-hover: #bc13fe44;
6
8
  --tng-secondary-contrast: #ffffff;
7
9
 
8
10
  // Glassmorphism surface
@@ -30,17 +30,19 @@ declare class TngCardComponent {
30
30
  }
31
31
 
32
32
  declare class TecnualInputComponent implements ControlValueAccessor {
33
+ private ngControl;
33
34
  label: _angular_core.InputSignal<string>;
34
35
  type: _angular_core.InputSignal<"number" | "text" | "password" | "email" | "tel">;
35
36
  placeholder: _angular_core.InputSignal<string>;
36
37
  required: _angular_core.InputSignal<boolean>;
37
38
  disabled: _angular_core.ModelSignal<boolean>;
38
39
  id: _angular_core.InputSignal<string>;
39
- value: any;
40
- isFocused: boolean;
40
+ value: _angular_core.WritableSignal<any>;
41
+ isFocused: _angular_core.WritableSignal<boolean>;
42
+ hasValue: _angular_core.Signal<boolean>;
41
43
  onChange: any;
42
44
  onTouched: any;
43
- get hasValue(): boolean;
45
+ constructor();
44
46
  onInput(event: Event): void;
45
47
  onFocus(): void;
46
48
  onBlur(): void;