@telcomdev/ui 0.1.19 → 0.1.21
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/package.json
CHANGED
package/types/telcomdev-ui.d.ts
CHANGED
|
@@ -1022,6 +1022,7 @@ declare class TdInput implements ControlValueAccessor, FormValueControl<TdInputV
|
|
|
1022
1022
|
private readonly legacyMinLength;
|
|
1023
1023
|
private readonly legacyMaxLength;
|
|
1024
1024
|
private receivedNullValue;
|
|
1025
|
+
private decimalMaskDigits;
|
|
1025
1026
|
private nativeInput?;
|
|
1026
1027
|
id: string;
|
|
1027
1028
|
label: string;
|
|
@@ -1104,6 +1105,12 @@ declare class TdInput implements ControlValueAccessor, FormValueControl<TdInputV
|
|
|
1104
1105
|
private limitDigits;
|
|
1105
1106
|
private applyMask;
|
|
1106
1107
|
private maskDecimal;
|
|
1108
|
+
private handleDecimalMaskInput;
|
|
1109
|
+
private formatDecimalMaskDigits;
|
|
1110
|
+
private maxDecimalMaskDigits;
|
|
1111
|
+
private decimalDigitsFromEditedValue;
|
|
1112
|
+
private decimalDigitsFromProgrammaticValue;
|
|
1113
|
+
private moveCaretToEnd;
|
|
1107
1114
|
private isDecimalMask;
|
|
1108
1115
|
private resolveDecimalMaskConfig;
|
|
1109
1116
|
private parseDecimalMask;
|