skyflow-js 1.34.0 → 1.34.2
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/CHANGELOG.md +20 -0
- package/README.md +221 -9
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +1 -1
- package/types/core/constants.d.ts +1 -0
- package/types/core/internal/iframe-form/index.d.ts +2 -0
- package/types/core/internal/index.d.ts +1 -0
- package/types/utils/constants.d.ts +4 -0
- package/types/utils/helpers/index.d.ts +1 -0
- package/types/utils/logs.d.ts +2 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -9,6 +9,7 @@ export declare class IFrameFormElement extends EventEmitter {
|
|
|
9
9
|
isComplete: boolean;
|
|
10
10
|
name: string;
|
|
11
11
|
isRequired: boolean;
|
|
12
|
+
isTouched: boolean;
|
|
12
13
|
};
|
|
13
14
|
readonly fieldType: string;
|
|
14
15
|
private sensitive;
|
|
@@ -46,6 +47,7 @@ export declare class IFrameFormElement extends EventEmitter {
|
|
|
46
47
|
isEmpty: boolean;
|
|
47
48
|
isComplete: boolean;
|
|
48
49
|
isRequired: boolean;
|
|
50
|
+
isTouched: boolean;
|
|
49
51
|
value: any;
|
|
50
52
|
};
|
|
51
53
|
validator(value: any): boolean;
|
|
@@ -43,6 +43,7 @@ export declare class FrameElement {
|
|
|
43
43
|
isEmpty: boolean;
|
|
44
44
|
isComplete: boolean;
|
|
45
45
|
value: string | Blob | undefined;
|
|
46
|
+
isTouched: boolean;
|
|
46
47
|
}): void;
|
|
47
48
|
setClass(types: string[], dom?: HTMLElement, preText?: string): void;
|
|
48
49
|
updateOptions(options: any): void;
|
|
@@ -24,6 +24,7 @@ export declare const getMaskedOutput: (input: string, format: string, translatio
|
|
|
24
24
|
export declare const copyToClipboard: (text: string) => void;
|
|
25
25
|
export declare const handleCopyIconClick: (textToCopy: string, domCopy: any) => void;
|
|
26
26
|
export declare const fileValidation: (value: any, required?: Boolean) => boolean;
|
|
27
|
+
export declare const vaildateFileName: (name: any) => boolean;
|
|
27
28
|
export declare const styleToString: (style: any) => string;
|
|
28
29
|
export declare const getContainerType: (frameName: string) => ContainerType;
|
|
29
30
|
export declare const addSeperatorToCardNumberMask: (cardNumberMask: any, seperator?: string) => any;
|
package/types/utils/logs.d.ts
CHANGED