i-tech-shared-components 1.4.45 → 1.4.46
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 +12 -4
- package/fesm2022/i-tech-shared-components.mjs.map +1 -1
- package/lib/components/autocomplete-select/autocomplete-select.component.d.ts +1 -0
- package/lib/interfaces/autocomplete-configs.interface.d.ts +1 -0
- package/package.json +1 -1
- package/theme/_mat-selects.scss +6 -1
|
@@ -39,6 +39,7 @@ export declare class AutocompleteSelectComponent implements OnChanges, AfterView
|
|
|
39
39
|
blockRecallDefaultValueSetter: boolean;
|
|
40
40
|
baseData: any;
|
|
41
41
|
requestLoading: boolean;
|
|
42
|
+
selectedValueForSearch: string;
|
|
42
43
|
protected readonly ButtonType: typeof ButtonType;
|
|
43
44
|
handleVisibilityChange(): void;
|
|
44
45
|
constructor(inputService: InputService);
|
package/package.json
CHANGED
package/theme/_mat-selects.scss
CHANGED
|
@@ -202,8 +202,13 @@ body {
|
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
.mat-select-with-search.select-with-prefix {
|
|
205
|
-
.search-input input
|
|
205
|
+
.search-input input {
|
|
206
206
|
padding-left: 35px !important;
|
|
207
|
+
padding-right: 30px !important;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.custom-placeholder {
|
|
211
|
+
padding-left: 20px !important;
|
|
207
212
|
}
|
|
208
213
|
}
|
|
209
214
|
|