carriera-intern-components 1.1.187 → 1.1.189

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.
@@ -123,6 +123,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
123
123
  * Preselected dropdown option
124
124
  */
125
125
  preselectedUnit: import("@angular/core").InputSignal<string | null>;
126
+ closing: import("@angular/core").WritableSignal<boolean>;
126
127
  /**
127
128
  * Internal signal to track the disabled state of the input.
128
129
  */
@@ -172,7 +173,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
172
173
  * A signal that holds the currently selected dispatch board from the dispatch board picker.
173
174
  */
174
175
  foldedBoards: import("@angular/core").WritableSignal<number[]>;
175
- randomAutocomplete: string;
176
+ randomAutocomplete: import("@angular/core").WritableSignal<string>;
176
177
  /**
177
178
  * A computed signal that indicates whether the placeholder selected option should be shown.
178
179
  */
@@ -307,6 +308,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
307
308
  * Resets the input field's value to an empty string.
308
309
  */
309
310
  reset(): void;
311
+ closeDropdown(addNew?: boolean): void;
310
312
  /**
311
313
  * Returns the reference to the dropdown element based on the dropdown type.
312
314
  */
@@ -315,7 +317,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
315
317
  * Returns the reference to the selected element based on the dropdown type.
316
318
  */
317
319
  getSelectedRef(): any;
318
- randomizeAutocomplete(): void;
320
+ randomizeAutocomplete(): string;
319
321
  /**
320
322
  * Type guard that checks if a given property exists on an object.
321
323
  * @param obj The object to check.