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.
- package/fesm2022/i-tech-shared-components.mjs +20 -10
- package/fesm2022/i-tech-shared-components.mjs.map +1 -1
- package/lib/components/autocomplete-select/autocomplete-select.component.d.ts +1 -0
- package/lib/components/date-picker/date-picker.component.d.ts +1 -0
- package/lib/components/text/text-input.component.d.ts +1 -0
- package/package.json +1 -1
- package/theme/_mat-selects.scss +2 -0
- package/theme/_text_input.scss +1 -0
|
@@ -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;
|
package/package.json
CHANGED
package/theme/_mat-selects.scss
CHANGED
|
@@ -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
|
|
package/theme/_text_input.scss
CHANGED
|
@@ -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;
|