@finema/core 1.4.78 → 1.4.80
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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type IFieldProps, type IFormFieldBase, type INPUT_TYPES } from '#core/components/Form/types';
|
|
2
|
-
import type { MaskInputOptions,
|
|
2
|
+
import type { MaskInputOptions, MaskType } from 'maska';
|
|
3
3
|
export interface ITextFieldProps extends IFieldProps {
|
|
4
4
|
type?: 'text' | 'password' | 'email';
|
|
5
5
|
leadingIcon?: any;
|
|
@@ -7,7 +7,7 @@ export interface ITextFieldProps extends IFieldProps {
|
|
|
7
7
|
icon?: string;
|
|
8
8
|
mask?: MaskType;
|
|
9
9
|
maskOptions?: MaskInputOptions;
|
|
10
|
-
maskTokens?:
|
|
10
|
+
maskTokens?: string;
|
|
11
11
|
maskEager?: boolean;
|
|
12
12
|
maskTokensReplace?: boolean;
|
|
13
13
|
maskReversed?: boolean;
|