@corp-products/ui-components 4.1.8 → 4.1.9
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.
package/index.d.ts
CHANGED
|
@@ -263,7 +263,7 @@ declare class DatePickerComponent extends BaseInputComponent implements AfterVie
|
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
declare class InputComponent extends BaseInputComponent {
|
|
266
|
-
type: 'text' | 'textarea' | 'withIcon';
|
|
266
|
+
type: 'text' | 'textarea' | 'withIcon' | 'number';
|
|
267
267
|
contentType: 'text' | 'email' | 'number';
|
|
268
268
|
size: 'small' | 'large';
|
|
269
269
|
prefix: string;
|
|
@@ -342,7 +342,7 @@ declare class SwitchComponent {
|
|
|
342
342
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "stc-switch", never, { "label": { "alias": "label"; "required": false; }; "key": { "alias": "key"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
343
343
|
}
|
|
344
344
|
|
|
345
|
-
type InputType = 'text' | 'textarea';
|
|
345
|
+
type InputType = 'text' | 'textarea' | 'number';
|
|
346
346
|
type InputContentType = 'text' | 'email' | 'number';
|
|
347
347
|
interface Dropdown<T = unknown> {
|
|
348
348
|
id?: string;
|