react-js-plugins 3.14.3 → 3.14.5
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/chunkautils/chunk21211.js +30 -11
- package/dist/chunkautils/chunk22123.js +59 -118
- package/dist/chunkautils/chunk22523.js +16 -17
- package/dist/chunkautils/chunk23111.js +17 -35
- package/dist/chunkautils/chunk34621.d.ts +11 -0
- package/dist/chunkautils/chunk34621.js +85 -0
- package/dist/chunkautils/chunk65431.js +312 -364
- package/dist/chunkautils/chunk75342.d.ts +0 -4
- package/dist/chunkautils/chunk75342.js +229 -335
- package/dist/chunkautils/chunk83453.js +278 -469
- package/dist/chunkautils/chunk83454.js +124 -218
- package/dist/chunkautils/chunk91172.js +27 -2
- package/dist/index.d.ts +6 -5
- package/dist/index.js +15 -11
- package/package.json +7 -3
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export declare const _isValidEmail: (email: string) => boolean;
|
|
2
|
-
export declare function chunk2345(): boolean;
|
|
3
2
|
export declare const _isValidPhoneNumber: (phoneNumber: string) => boolean;
|
|
4
3
|
export declare const _isValidURL: (url: string) => boolean;
|
|
5
4
|
export declare const _isValidDate: (date: string) => boolean;
|
|
@@ -14,7 +13,6 @@ export declare const _isValidIP: (ip: string) => boolean;
|
|
|
14
13
|
export declare const _isValidMacAddress: (mac: string) => boolean;
|
|
15
14
|
export declare const _isValidUUID: (uuid: string) => boolean;
|
|
16
15
|
export declare const _isValidBase64: (str: string) => boolean;
|
|
17
|
-
export declare function chunk7654(): boolean;
|
|
18
16
|
export declare const _isValidJSON: (str: string) => boolean;
|
|
19
17
|
export declare const _isValidFunction: (fn: any) => boolean;
|
|
20
18
|
export declare const _isValidString: (str: any) => boolean;
|
|
@@ -33,7 +31,6 @@ export declare const _isValidNodeList: (nodeList: any) => boolean;
|
|
|
33
31
|
export declare const _isValidHTMLCollection: (htmlCollection: any) => boolean;
|
|
34
32
|
export declare const _isValidFormData: (formData: any) => boolean;
|
|
35
33
|
export declare const _isValidURLSearchParams: (params: any) => boolean;
|
|
36
|
-
export declare function chunk(): boolean;
|
|
37
34
|
export declare const _allowDecimalKeys: (event: any) => void;
|
|
38
35
|
export declare const _allowAlphaKeys: (event: any) => void;
|
|
39
36
|
export declare const _handlePasteDecimalKeys: (a: any) => void;
|
|
@@ -81,7 +78,6 @@ export declare const _snipDecimals: (num: any, digits: number) => any;
|
|
|
81
78
|
export declare function _copyText(text: string): Promise<boolean>;
|
|
82
79
|
export declare function _pasteText(): Promise<string | null>;
|
|
83
80
|
export declare const _onWindowLoad: (callback: () => void) => void;
|
|
84
|
-
export declare const _injectAutoUpdater: () => void;
|
|
85
81
|
export declare const _onDOMLoad: (callback: () => void) => void;
|
|
86
82
|
export declare const _onFullReload: (callback: () => void) => void;
|
|
87
83
|
export declare const _getQueryString: () => string;
|