carriera-intern-components 1.1.152 → 1.1.153
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.
|
@@ -173,6 +173,7 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
|
|
|
173
173
|
step: import("@angular/core").Signal<number>;
|
|
174
174
|
combinedOptions: import("@angular/core").Signal<DropdownArrays>;
|
|
175
175
|
dispatchCount: import("@angular/core").Signal<number>;
|
|
176
|
+
onValueChange: import("@angular/core").OutputEmitterRef<string | number | null>;
|
|
176
177
|
/**
|
|
177
178
|
* An output signal that emits the value of the added option.
|
|
178
179
|
*/
|
|
@@ -345,5 +346,5 @@ export declare class InputComponent implements ControlValueAccessor, AfterViewIn
|
|
|
345
346
|
castAsTollOption(value: unknown): TollOption | null;
|
|
346
347
|
castAsTollTransponderOption(value: unknown): TollTransponderOption | null;
|
|
347
348
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, [{ optional: true; self: true; }, null]>;
|
|
348
|
-
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; }; "preselectedUnit": { "alias": "preselectedUnit"; "required": false; "isSignal": true; }; }, { "onOptionAdded": "onOptionAdded"; "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; "onClear": "onClear"; "onAutofill": "onAutofill"; }, never, never, true, never>;
|
|
349
|
+
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; }; "preselectedUnit": { "alias": "preselectedUnit"; "required": false; "isSignal": true; }; }, { "onValueChange": "onValueChange"; "onOptionAdded": "onOptionAdded"; "onAdd": "onAdd"; "onSelectionChange": "onSelectionChange"; "onClear": "onClear"; "onAutofill": "onAutofill"; }, never, never, true, never>;
|
|
349
350
|
}
|
|
@@ -9,10 +9,12 @@ export interface CaiInputConfig {
|
|
|
9
9
|
icon?: string | null;
|
|
10
10
|
iconColor?: string;
|
|
11
11
|
dropdown?: boolean | DropdownType;
|
|
12
|
+
dropdownAutocomplete?: boolean;
|
|
12
13
|
search?: boolean;
|
|
13
14
|
add?: boolean;
|
|
14
15
|
subcontent?: string;
|
|
15
16
|
textTransform?: 'capitalize' | 'uppercase' | 'lowercase';
|
|
17
|
+
textTransformExceptions?: string[];
|
|
16
18
|
isNumberFormattingDisabled?: boolean;
|
|
17
19
|
textColor?: 'positive';
|
|
18
20
|
placeholderBehavior?: 'dynamic' | 'fade' | 'static';
|