integra-ng 21.0.21 → 21.0.22
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/fesm2022/integra-ng.mjs +45 -2
- package/fesm2022/integra-ng.mjs.map +1 -1
- package/package.json +1 -1
- package/types/integra-ng.d.ts +15 -0
package/package.json
CHANGED
package/types/integra-ng.d.ts
CHANGED
|
@@ -1693,6 +1693,21 @@ declare class IInputText implements ControlValueAccessor {
|
|
|
1693
1693
|
* @internal
|
|
1694
1694
|
*/
|
|
1695
1695
|
getErrorMessage(): string | null;
|
|
1696
|
+
/**
|
|
1697
|
+
* Checks if the input has a value (works for all input types including number)
|
|
1698
|
+
* @internal
|
|
1699
|
+
*/
|
|
1700
|
+
get hasValue(): boolean;
|
|
1701
|
+
/**
|
|
1702
|
+
* Increment number input value
|
|
1703
|
+
* @internal
|
|
1704
|
+
*/
|
|
1705
|
+
incrementNumber(inputElement: HTMLInputElement): void;
|
|
1706
|
+
/**
|
|
1707
|
+
* Decrement number input value
|
|
1708
|
+
* @internal
|
|
1709
|
+
*/
|
|
1710
|
+
decrementNumber(inputElement: HTMLInputElement): void;
|
|
1696
1711
|
static ɵfac: i0.ɵɵFactoryDeclaration<IInputText, [{ optional: true; self: true; }]>;
|
|
1697
1712
|
static ɵcmp: i0.ɵɵComponentDeclaration<IInputText, "i-input-text", never, { "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "id": { "alias": "id"; "required": false; }; "fluid": { "alias": "fluid"; "required": false; }; "forceFloated": { "alias": "forceFloated"; "required": false; }; "hideText": { "alias": "hideText"; "required": false; }; "useFloatLabel": { "alias": "useFloatLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "externalInvalid": { "alias": "externalInvalid"; "required": false; }; "externalErrorMessage": { "alias": "externalErrorMessage"; "required": false; }; "backgroundStyle": { "alias": "backgroundStyle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1698
1713
|
}
|