skyflow-js 1.30.0 → 1.30.1
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/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/dist/sdkNodeBuild/manifest.json +1 -1
- package/package.json +3 -3
- package/types/core/constants.d.ts +8 -0
- package/types/core/internal/iframe-form/index.d.ts +1 -1
- package/types/core/internal/index.d.ts +1 -0
- package/types/libs/jss-styles.d.ts +2 -1
- package/types/utils/helpers/index.d.ts +1 -1
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "skyflow-js",
|
|
3
3
|
"preferGlobal": true,
|
|
4
4
|
"analyze": false,
|
|
5
|
-
"version": "1.30.
|
|
5
|
+
"version": "1.30.1",
|
|
6
6
|
"author": "Skyflow",
|
|
7
7
|
"description": "Skyflow JavaScript SDK",
|
|
8
8
|
"homepage": "https://github.com/skyflowapi/skyflow-js",
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
"fork-ts-checker-webpack-plugin": "^6.3.2",
|
|
78
78
|
"html-webpack-plugin": "^5.5.0",
|
|
79
79
|
"jest": "^27.2.1",
|
|
80
|
-
"typescript": "^
|
|
81
|
-
"webpack": "^5.
|
|
80
|
+
"typescript": "^4.6.3",
|
|
81
|
+
"webpack": "^5.88.2",
|
|
82
82
|
"webpack-bundle-analyzer": "^4.4.2",
|
|
83
83
|
"webpack-cli": "^4.8.0",
|
|
84
84
|
"webpack-dev-server": "^4.7.4",
|
|
@@ -305,6 +305,8 @@ export declare const STYLE_TYPE: {
|
|
|
305
305
|
COMPLETE: string;
|
|
306
306
|
EMPTY: string;
|
|
307
307
|
INVALID: string;
|
|
308
|
+
GLOBAL: string;
|
|
309
|
+
REQUIRED_ASTERISK: string;
|
|
308
310
|
};
|
|
309
311
|
export declare const REVEAL_ELEMENT_DIV_STYLE: {
|
|
310
312
|
container: {
|
|
@@ -327,6 +329,12 @@ export declare const REVEAL_ELEMENT_ERROR_TEXT = "Invalid Token";
|
|
|
327
329
|
export declare const COLLECT_ELEMENT_LABEL_DEFAULT_STYLES: {
|
|
328
330
|
[x: string]: {
|
|
329
331
|
marginBottom: string;
|
|
332
|
+
display?: undefined;
|
|
333
|
+
color?: undefined;
|
|
334
|
+
} | {
|
|
335
|
+
display: string;
|
|
336
|
+
color: string;
|
|
337
|
+
marginBottom?: undefined;
|
|
330
338
|
};
|
|
331
339
|
};
|
|
332
340
|
export declare const CARD_TYPE_REGEX: {
|
|
@@ -45,7 +45,7 @@ export declare class IFrameFormElement extends EventEmitter {
|
|
|
45
45
|
isEmpty: boolean;
|
|
46
46
|
isComplete: boolean;
|
|
47
47
|
isRequired: boolean;
|
|
48
|
-
value:
|
|
48
|
+
value: any;
|
|
49
49
|
};
|
|
50
50
|
validator(value: any): boolean;
|
|
51
51
|
validateCustomValidations(value?: string): boolean;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export default function getCssClassesFromJss(styles: any, name: any):
|
|
1
|
+
export default function getCssClassesFromJss(styles: any, name: any): import("jss").Classes<string | number | symbol>;
|
|
2
|
+
export declare function generateCssWithoutClass(styles: any): import("jss").Classes<string | number | symbol>;
|
|
@@ -24,7 +24,7 @@ export declare const handleCopyIconClick: (textToCopy: string, domCopy: any) =>
|
|
|
24
24
|
export declare const fileValidation: (value: any, required?: Boolean) => boolean;
|
|
25
25
|
export declare const styleToString: (style: any) => string;
|
|
26
26
|
export declare const getContainerType: (frameName: string) => ContainerType;
|
|
27
|
-
export declare const addSeperatorToCardNumberMask: (cardNumberMask: any, seperator?: string
|
|
27
|
+
export declare const addSeperatorToCardNumberMask: (cardNumberMask: any, seperator?: string) => any;
|
|
28
28
|
export declare const constructMaskTranslation: (mask: any) => {};
|
|
29
29
|
export declare const formatRevealElementOptions: (options: IRevealElementOptions) => any;
|
|
30
30
|
interface OSInfo {
|