i-tech-shared-components 1.3.94 → 1.3.96

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.
@@ -42,6 +42,7 @@ export declare class AutocompleteSelectComponent implements OnChanges, AfterView
42
42
  protected readonly ButtonType: typeof ButtonType;
43
43
  handleVisibilityChange(): void;
44
44
  constructor(inputService: InputService);
45
+ get isDisabled(): boolean;
45
46
  ngOnChanges(changes: SimpleChanges): void;
46
47
  ngAfterViewInit(): void;
47
48
  hardReload(): void;
@@ -29,6 +29,7 @@ export declare class DatePickerComponent {
29
29
  constructor(inputService: InputService);
30
30
  emitChange(): void;
31
31
  clickForFocusOut(): void;
32
+ get isDisabled(): boolean;
32
33
  customErrorStateMatcher: {
33
34
  isErrorState: (control: any, form: any) => boolean;
34
35
  };
@@ -20,6 +20,7 @@ export declare class TextInputComponent {
20
20
  toggleEye(): void;
21
21
  onValueChange(): void;
22
22
  get hasValue(): boolean;
23
+ get isDisabled(): boolean;
23
24
  customErrorStateMatcher: {
24
25
  isErrorState: (control: any, form: any) => boolean;
25
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i-tech-shared-components",
3
- "version": "1.3.94",
3
+ "version": "1.3.96",
4
4
  "peerDependencies": {
5
5
  "@angular/material": "^19.0.0",
6
6
  "@angular/animations": "^19.0.0",
@@ -118,11 +118,13 @@ body {
118
118
  font-size: 13px;
119
119
  color: #647081;
120
120
  pointer-events: none;
121
+ z-index: 1; // Ensure it's above the form field background
121
122
 
122
123
  &.custom-value {
123
124
  font-weight: 500;
124
125
  color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)} !important;
125
126
  width: 80%;
127
+ z-index: 2; // Higher z-index to ensure visibility above other elements
126
128
  }
127
129
  }
128
130
 
@@ -15,6 +15,7 @@ body {
15
15
  }
16
16
 
17
17
  .readonly-color {
18
+ pointer-events: none;
18
19
  color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
19
20
  .mat-mdc-icon-button.tonal mat-icon {
20
21
  color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;