easy-soft-utility 2.8.3 → 2.8.6
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/es/index.d.ts +1 -1
- package/es/index.js +2 -2
- package/es/utils/accessWayAssist.d.ts +8 -8
- package/es/utils/applicationAssist.d.ts +26 -26
- package/es/utils/arrayAssist.d.ts +5 -5
- package/es/utils/authorityCacheAssist.d.ts +16 -16
- package/es/utils/authorityLocalAssist.d.ts +10 -10
- package/es/utils/base64.d.ts +11 -11
- package/es/utils/cacheAssist.d.ts +77 -77
- package/es/utils/calculate.d.ts +5 -5
- package/es/utils/checkAssist.d.ts +121 -121
- package/es/utils/colorAssist.d.ts +31 -31
- package/es/utils/common.d.ts +107 -107
- package/es/utils/componentAssist.d.ts +17 -17
- package/es/utils/constants.d.ts +192 -192
- package/es/utils/convertAssist.d.ts +58 -58
- package/es/utils/convertExtraAssist.d.ts +15 -15
- package/es/utils/currentOperatorAssist.d.ts +17 -17
- package/es/utils/datetime.d.ts +66 -66
- package/es/utils/definition.d.ts +4 -4
- package/es/utils/dvaAssist.d.ts +43 -43
- package/es/utils/formatAssist.d.ts +44 -44
- package/es/utils/htmlAssist.d.ts +4 -4
- package/es/utils/httpAssist.d.ts +1 -1
- package/es/utils/index.d.ts +40 -40
- package/es/utils/localMetaDataAssist.d.ts +17 -17
- package/es/utils/localStorageAssist.d.ts +57 -57
- package/es/utils/lodashTools.d.ts +87 -87
- package/es/utils/loggerAssist.d.ts +173 -173
- package/es/utils/messagePromptAssist.d.ts +212 -212
- package/es/utils/meta.d.ts +85 -85
- package/es/utils/modelAssist.d.ts +41 -41
- package/es/utils/navigationAssist.d.ts +14 -14
- package/es/utils/nearestLocalhostNotify.d.ts +9 -9
- package/es/utils/notificationPromptAssist.d.ts +177 -177
- package/es/utils/parametersDataAssist.d.ts +16 -16
- package/es/utils/progressAssist.d.ts +18 -18
- package/es/utils/promptAssist.d.ts +35 -35
- package/es/utils/queryString.d.ts +8 -8
- package/es/utils/requestAssist.d.ts +218 -218
- package/es/utils/runtimeAssist.d.ts +15 -15
- package/es/utils/sessionStorageAssist.d.ts +57 -57
- package/es/utils/tokenAssist.d.ts +21 -21
- package/es/utils/tools.d.ts +21 -21
- package/es/utils/userInterfaceGenerate.d.ts +17 -17
- package/package.json +1 -1
package/es/utils/tools.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Merge text use separator, ignore empty string
|
|
3
|
-
* @param {Object} options options
|
|
4
|
-
* @param {Array} options.textCollection the string array will be merged
|
|
5
|
-
* @param {string} options.separator string separator
|
|
6
|
-
*/
|
|
7
|
-
export function mergeTextCollection({ textCollection, separator }: {
|
|
8
|
-
textCollection: any[];
|
|
9
|
-
separator: string;
|
|
10
|
-
}): string;
|
|
11
|
-
/**
|
|
12
|
-
* Merge text use right arrow, ignore empty string
|
|
13
|
-
* @param {Array} textCollection the string array will be merged
|
|
14
|
-
*/
|
|
15
|
-
export function mergeArrowText(...textCollection: any[]): string;
|
|
16
|
-
/**
|
|
17
|
-
* Merge text message
|
|
18
|
-
* @param {string} text the string will be merged
|
|
19
|
-
* @param {string} ancillaryInformation when ancillary Information not empty, it will be merged
|
|
20
|
-
*/
|
|
21
|
-
export function mergeTextMessage(text: string, ancillaryInformation: string): string;
|
|
1
|
+
/**
|
|
2
|
+
* Merge text use separator, ignore empty string
|
|
3
|
+
* @param {Object} options options
|
|
4
|
+
* @param {Array} options.textCollection the string array will be merged
|
|
5
|
+
* @param {string} options.separator string separator
|
|
6
|
+
*/
|
|
7
|
+
export function mergeTextCollection({ textCollection, separator }: {
|
|
8
|
+
textCollection: any[];
|
|
9
|
+
separator: string;
|
|
10
|
+
}): string;
|
|
11
|
+
/**
|
|
12
|
+
* Merge text use right arrow, ignore empty string
|
|
13
|
+
* @param {Array} textCollection the string array will be merged
|
|
14
|
+
*/
|
|
15
|
+
export function mergeArrowText(...textCollection: any[]): string;
|
|
16
|
+
/**
|
|
17
|
+
* Merge text message
|
|
18
|
+
* @param {string} text the string will be merged
|
|
19
|
+
* @param {string} ancillaryInformation when ancillary Information not empty, it will be merged
|
|
20
|
+
*/
|
|
21
|
+
export function mergeTextMessage(text: string, ancillaryInformation: string): string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Build field description like '请输入名称,以字母开头'
|
|
3
|
-
*/
|
|
4
|
-
export function buildFieldDescription(title: any, operation: any, ancillaryInformation?: string): string;
|
|
5
|
-
export function checkFromConfig({ label, name, helper }: {
|
|
6
|
-
label: any;
|
|
7
|
-
name: any;
|
|
8
|
-
helper: any;
|
|
9
|
-
}): {
|
|
10
|
-
label: string;
|
|
11
|
-
name: string;
|
|
12
|
-
helper: string;
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* Build field helper message
|
|
16
|
-
*/
|
|
17
|
-
export function buildFieldHelper(v: any, prefix?: string): string;
|
|
1
|
+
/**
|
|
2
|
+
* Build field description like '请输入名称,以字母开头'
|
|
3
|
+
*/
|
|
4
|
+
export function buildFieldDescription(title: any, operation: any, ancillaryInformation?: string): string;
|
|
5
|
+
export function checkFromConfig({ label, name, helper }: {
|
|
6
|
+
label: any;
|
|
7
|
+
name: any;
|
|
8
|
+
helper: any;
|
|
9
|
+
}): {
|
|
10
|
+
label: string;
|
|
11
|
+
name: string;
|
|
12
|
+
helper: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Build field helper message
|
|
16
|
+
*/
|
|
17
|
+
export function buildFieldHelper(v: any, prefix?: string): string;
|