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.
@@ -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);
@@ -38,4 +38,5 @@ export interface AutocompleteConfigsInterface {
38
38
  needTranslateOptions?: boolean;
39
39
  compareObjectsForDefaultValue?: boolean;
40
40
  testId?: string;
41
+ valueForDefaultSearchAsSelected?: boolean;
41
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i-tech-shared-components",
3
- "version": "1.4.45",
3
+ "version": "1.4.46",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^19.0.0",
6
6
  "@angular/cdk": "^19.0.0",
@@ -202,8 +202,13 @@ body {
202
202
  }
203
203
 
204
204
  .mat-select-with-search.select-with-prefix {
205
- .search-input input, .custom-placeholder {
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