carriera-intern-components 1.1.186 → 1.1.188

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.
@@ -106,6 +106,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
106
106
  * Input property to hold the dropdown options.
107
107
  */
108
108
  options: import("@angular/core").InputSignal<DropdownArrays>;
109
+ preselectedOptions: import("@angular/core").InputSignal<DropdownArrays | null>;
109
110
  /**
110
111
  * Input property to hold the label colors for the label picker.
111
112
  */
@@ -122,6 +123,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
122
123
  * Preselected dropdown option
123
124
  */
124
125
  preselectedUnit: import("@angular/core").InputSignal<string | null>;
126
+ closing: import("@angular/core").WritableSignal<boolean>;
125
127
  /**
126
128
  * Internal signal to track the disabled state of the input.
127
129
  */
@@ -171,7 +173,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
171
173
  * A signal that holds the currently selected dispatch board from the dispatch board picker.
172
174
  */
173
175
  foldedBoards: import("@angular/core").WritableSignal<number[]>;
174
- randomAutocomplete: string;
176
+ randomAutocomplete: import("@angular/core").WritableSignal<string>;
175
177
  /**
176
178
  * A computed signal that indicates whether the placeholder selected option should be shown.
177
179
  */
@@ -306,6 +308,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
306
308
  * Resets the input field's value to an empty string.
307
309
  */
308
310
  reset(): void;
311
+ closeDropdown(): void;
309
312
  /**
310
313
  * Returns the reference to the dropdown element based on the dropdown type.
311
314
  */
@@ -314,7 +317,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
314
317
  * Returns the reference to the selected element based on the dropdown type.
315
318
  */
316
319
  getSelectedRef(): any;
317
- randomizeAutocomplete(): void;
320
+ randomizeAutocomplete(): string;
318
321
  /**
319
322
  * Type guard that checks if a given property exists on an object.
320
323
  * @param obj The object to check.
@@ -366,5 +369,5 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
366
369
  castAsTollOption(value: unknown): TollOption | null;
367
370
  castAsTollTransponderOption(value: unknown): TollTransponderOption | null;
368
371
  static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, [{ optional: true; self: true; }, null]>;
369
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "cai-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "labelColors": { "alias": "labelColors"; "required": false; "isSignal": true; }; "hideValidation": { "alias": "hideValidation"; "required": false; "isSignal": true; }; "showNoResults": { "alias": "showNoResults"; "required": false; "isSignal": true; }; "preselectedUnit": { "alias": "preselectedUnit"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocused": "onFocused"; "onValueChange": "onValueChange"; "onOptionAdded": "onOptionAdded"; "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; "onClear": "onClear"; "onAutofill": "onAutofill"; }, never, never, true, never>;
372
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "cai-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "preselectedOptions": { "alias": "preselectedOptions"; "required": false; "isSignal": true; }; "labelColors": { "alias": "labelColors"; "required": false; "isSignal": true; }; "hideValidation": { "alias": "hideValidation"; "required": false; "isSignal": true; }; "showNoResults": { "alias": "showNoResults"; "required": false; "isSignal": true; }; "preselectedUnit": { "alias": "preselectedUnit"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocused": "onFocused"; "onValueChange": "onValueChange"; "onOptionAdded": "onOptionAdded"; "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; "onClear": "onClear"; "onAutofill": "onAutofill"; }, never, never, true, never>;
370
373
  }