carriera-intern-components 0.0.95 → 0.0.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.
|
@@ -52,7 +52,7 @@ export declare class InputComponent implements ControlValueAccessor {
|
|
|
52
52
|
/**
|
|
53
53
|
* Input property to hold the dropdown options.
|
|
54
54
|
*/
|
|
55
|
-
options: import("@angular/core").InputSignal<
|
|
55
|
+
options: import("@angular/core").InputSignal<DropdownOption[] | LabelOption[] | Broker[] | DispatchBoard[] | DepartmentContactsPair[] | Shipper[] | Dispatch[] | Bank[]>;
|
|
56
56
|
/**
|
|
57
57
|
* Input property to hold the label colors for the label picker.
|
|
58
58
|
*/
|
|
@@ -72,7 +72,7 @@ export declare class InputComponent implements ControlValueAccessor {
|
|
|
72
72
|
/**
|
|
73
73
|
* A signal that holds the locally added options.
|
|
74
74
|
*/
|
|
75
|
-
localOptions: import("@angular/core").WritableSignal<
|
|
75
|
+
localOptions: import("@angular/core").WritableSignal<DropdownOption[] | LabelOption[] | Broker[] | DispatchBoard[] | DepartmentContactsPair[] | Shipper[] | Dispatch[] | Bank[]>;
|
|
76
76
|
/**
|
|
77
77
|
* A signal that holds the currently selected option from the dropdown.
|
|
78
78
|
*/
|
|
@@ -119,7 +119,7 @@ export declare class InputComponent implements ControlValueAccessor {
|
|
|
119
119
|
* A computed signal that dynamically calculates the step value for number inputs.
|
|
120
120
|
*/
|
|
121
121
|
step: import("@angular/core").Signal<number>;
|
|
122
|
-
combinedOptions: import("@angular/core").Signal<
|
|
122
|
+
combinedOptions: import("@angular/core").Signal<DropdownOption[] | LabelOption[] | Broker[] | DispatchBoard[] | DepartmentContactsPair[] | Shipper[] | Dispatch[] | Bank[]>;
|
|
123
123
|
dispatchCount: import("@angular/core").Signal<number>;
|
|
124
124
|
/**
|
|
125
125
|
* An output signal that emits the value of the added option.
|
|
@@ -241,7 +241,7 @@ export declare class InputComponent implements ControlValueAccessor {
|
|
|
241
241
|
* @param option - The selected option.
|
|
242
242
|
* @param event - The MouseEvent that initiated the selection action.
|
|
243
243
|
*/
|
|
244
|
-
handleOption(option: DropdownOption | LabelOption | Dispatch | Broker | Contact | Bank | Shipper
|
|
244
|
+
handleOption(option: DropdownOption | LabelOption | Dispatch | Broker | Contact | Bank | Shipper): void;
|
|
245
245
|
/**
|
|
246
246
|
* Adds a new option to the dropdown.
|
|
247
247
|
* @param option - The option to add.
|