@indfnd/utils 0.1.36 → 0.1.38

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.
Files changed (65) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/ind-utils.es.js +865 -607
  3. package/dist/ind-utils.umd.cjs +21 -21
  4. package/global.d.ts +2 -0
  5. package/package.json +1 -1
  6. package/src/api/com.ts +4 -2
  7. package/src/api/item.ts +4 -2
  8. package/src/api/platform/oss.ts +6 -3
  9. package/src/utils/excel.js +157 -0
  10. package/types/api/com.d.ts +2 -4
  11. package/types/api/com.d.ts.map +1 -1
  12. package/types/api/index-desc.d.ts +2 -4
  13. package/types/api/index-desc.d.ts.map +1 -1
  14. package/types/api/index.d.ts +7 -7
  15. package/types/api/item.d.ts +4 -6
  16. package/types/api/item.d.ts.map +1 -1
  17. package/types/api/permission.d.ts +2 -2
  18. package/types/api/platform/base64.d.ts +5 -5
  19. package/types/api/platform/config.d.ts +2 -2
  20. package/types/api/platform/dict.d.ts +4 -6
  21. package/types/api/platform/dict.d.ts.map +1 -1
  22. package/types/api/platform/index.d.ts +6 -6
  23. package/types/api/platform/menu.d.ts +11 -21
  24. package/types/api/platform/menu.d.ts.map +1 -1
  25. package/types/api/platform/oss.d.ts +8 -16
  26. package/types/api/platform/oss.d.ts.map +1 -1
  27. package/types/api/platform/user.d.ts +12 -19
  28. package/types/api/platform/user.d.ts.map +1 -1
  29. package/types/api/user.d.ts +2 -2
  30. package/types/config/base.config.d.ts +33 -33
  31. package/types/config/dev.config.d.ts +3 -3
  32. package/types/config/index.d.ts +6 -6
  33. package/types/config/prod.config.d.ts +3 -3
  34. package/types/index.d.ts +4 -4
  35. package/types/utils/base64.d.ts +22 -22
  36. package/types/utils/blob.d.ts +3 -3
  37. package/types/utils/cache/dict-cache.d.ts +3 -3
  38. package/types/utils/cache/index-desc.d.ts +4 -4
  39. package/types/utils/cache/index.d.ts +4 -4
  40. package/types/utils/cache/permission-cache.d.ts +4 -4
  41. package/types/utils/cache/user-cache.d.ts +4 -4
  42. package/types/utils/date.d.ts +4 -4
  43. package/types/utils/enum.d.ts +39 -43
  44. package/types/utils/event.d.ts +5 -13
  45. package/types/utils/excel.d.ts +5 -4
  46. package/types/utils/excel.d.ts.map +1 -1
  47. package/types/utils/half-year.d.ts +6 -6
  48. package/types/utils/index.d.ts +20 -20
  49. package/types/utils/is-type.d.ts +33 -33
  50. package/types/utils/mime-type.d.ts +67 -67
  51. package/types/utils/number.d.ts +8 -8
  52. package/types/utils/quarter.d.ts +7 -7
  53. package/types/utils/request/axios.extends.d.ts +6 -18
  54. package/types/utils/request/cache-rules.d.ts +3 -3
  55. package/types/utils/request/content-type.d.ts +9 -9
  56. package/types/utils/request/index.d.ts +13 -16
  57. package/types/utils/request/interceptors.d.ts +4 -4
  58. package/types/utils/request/url-params.d.ts +6 -6
  59. package/types/utils/sm3/index.d.ts +6 -6
  60. package/types/utils/sm3/sm3.d.ts +3 -3
  61. package/types/utils/storage.d.ts +8 -8
  62. package/types/utils/table.d.ts +31 -40
  63. package/types/utils/token.d.ts +3 -3
  64. package/types/utils/uuid.d.ts +4 -4
  65. package/types/utils/validate.d.ts +5 -5
@@ -1,10 +1,10 @@
1
- export declare function getContentType(config: any): any
2
- export declare function setContentType(headers: any, type: string): void
1
+ export declare function getContentType(config: any): any;
2
+ export declare function setContentType(headers: any, type: string): void;
3
3
  export declare const CONTENT_TYPE: {
4
- form: string
5
- multiForm: string
6
- body: string
7
- os: string
8
- json: string
9
- }
10
- //# sourceMappingURL=content-type.d.ts.map
4
+ form: string;
5
+ multiForm: string;
6
+ body: string;
7
+ os: string;
8
+ json: string;
9
+ };
10
+ //# sourceMappingURL=content-type.d.ts.map
@@ -1,9 +1,9 @@
1
- import type { AxiosExtendsInstance } from './axios.extends'
2
- import { responseInterceptors } from './interceptors'
3
- export * from './url-params'
4
- export * from './content-type'
5
- export { responseInterceptors }
6
- declare const instance: AxiosExtendsInstance
1
+ import type { AxiosExtendsInstance } from './axios.extends';
2
+ import { responseInterceptors } from './interceptors';
3
+ export * from './url-params';
4
+ export * from './content-type';
5
+ export { responseInterceptors };
6
+ declare const instance: AxiosExtendsInstance;
7
7
  /**
8
8
  * 对业务封装的axios service Api进行封装,封装以后的Api同一时间只有一个网络请求
9
9
  * 即上一次发起的网络请求将调用浏览器取消网络请求
@@ -12,13 +12,10 @@ declare const instance: AxiosExtendsInstance
12
12
  * @param {boolean} isPost - 是否是post请求
13
13
  * @returns {Function} 封装后可取消的api
14
14
  */
15
- export declare const wrapApi: (
16
- api: any,
17
- isPost?: boolean,
18
- ) => {
19
- (...args: any[]): Promise<any>
20
- cancel(reason: any): void
21
- isPending(): boolean
22
- }
23
- export { instance as axios }
24
- //# sourceMappingURL=index.d.ts.map
15
+ export declare const wrapApi: (api: any, isPost?: boolean) => {
16
+ (...args: any[]): Promise<any>;
17
+ cancel(reason: any): void;
18
+ isPending(): boolean;
19
+ };
20
+ export { instance as axios };
21
+ //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- export declare function requestInterceptors(config: any): any
2
- export declare function responseInterceptors(response: any): any
3
- export declare function inspectorError(error: any): Promise<never>
4
- //# sourceMappingURL=interceptors.d.ts.map
1
+ export declare function requestInterceptors(config: any): any;
2
+ export declare function responseInterceptors(response: any): any;
3
+ export declare function inspectorError(error: any): Promise<never>;
4
+ //# sourceMappingURL=interceptors.d.ts.map
@@ -1,8 +1,8 @@
1
1
  interface UrlParams {
2
- sso_token?: string
3
- sso_id?: string
4
- [propName: string]: any
2
+ sso_token?: string;
3
+ sso_id?: string;
4
+ [propName: string]: any;
5
5
  }
6
- export declare function getUrlParams(): UrlParams
7
- export {}
8
- //# sourceMappingURL=url-params.d.ts.map
6
+ export declare function getUrlParams(): UrlParams;
7
+ export {};
8
+ //# sourceMappingURL=url-params.d.ts.map
@@ -1,7 +1,7 @@
1
- import sm3 from './sm3'
1
+ import sm3 from './sm3';
2
2
  export declare const cryptor: {
3
- encrypt: typeof sm3
4
- encryptForLogin(s: any, method: any, add: any): string
5
- genSalt(s: any): string
6
- }
7
- //# sourceMappingURL=index.d.ts.map
3
+ encrypt: typeof sm3;
4
+ encryptForLogin(s: any, method: any, add: any): string;
5
+ genSalt(s: any): string;
6
+ };
7
+ //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,3 @@
1
- declare function sm3(str: any): string
2
- export default sm3
3
- //# sourceMappingURL=sm3.d.ts.map
1
+ declare function sm3(str: any): string;
2
+ export default sm3;
3
+ //# sourceMappingURL=sm3.d.ts.map
@@ -1,8 +1,8 @@
1
- export declare const getSessionStorage: (key: string) => any
2
- export declare const setSessionStorage: (key: string, value: any) => void
3
- export declare const removeSessionStorage: (key: string) => void
4
- export declare function clearSessionStorage(): void
5
- export declare const getLocalStorage: (key: string) => any
6
- export declare const setLocalStorage: (key: string, value: any) => void
7
- export declare const removeLocalStorage: (key: string) => void
8
- //# sourceMappingURL=storage.d.ts.map
1
+ export declare const getSessionStorage: (key: string) => any;
2
+ export declare const setSessionStorage: (key: string, value: any) => void;
3
+ export declare const removeSessionStorage: (key: string) => void;
4
+ export declare function clearSessionStorage(): void;
5
+ export declare const getLocalStorage: (key: string) => any;
6
+ export declare const setLocalStorage: (key: string, value: any) => void;
7
+ export declare const removeLocalStorage: (key: string) => void;
8
+ //# sourceMappingURL=storage.d.ts.map
@@ -1,37 +1,37 @@
1
1
  interface ColumnGroup {
2
- key?: string
3
- title?: string
4
- keyProp?: string
5
- titleProp?: string
6
- titleFormatter?: (title: string) => string
7
- sortProp?: string
8
- sortOrder?: boolean | 'asc' | 'desc'
9
- keyLastSuffix?: string
10
- isLimitChildren?: boolean
11
- headerTooltip?: boolean | string | ((data: any, parents: Array<any>) => string)
12
- children?: ColumnGroup[]
13
- [propName: string]: any
2
+ key?: string;
3
+ title?: string;
4
+ keyProp?: string;
5
+ titleProp?: string;
6
+ titleFormatter?: (title: string) => string;
7
+ sortProp?: string;
8
+ sortOrder?: boolean | 'asc' | 'desc';
9
+ keyLastSuffix?: string;
10
+ isLimitChildren?: boolean;
11
+ headerTooltip?: boolean | string | ((data: any, parents: Array<any>) => string);
12
+ children?: ColumnGroup[];
13
+ [propName: string]: any;
14
14
  }
15
15
  interface row2columnOption {
16
- keyPropName?: string
17
- titlePropName?: string
18
- sumColumnDefs?: Array<{
19
- key: string
20
- title: string
21
- [propName: string]: any
22
- }>
23
- sumColKeyProp?: 'sumColCode'
24
- sumColTitleProp?: 'sumColName'
16
+ keyPropName?: string;
17
+ titlePropName?: string;
18
+ sumColumnDefs?: Array<{
19
+ key: string;
20
+ title: string;
21
+ [propName: string]: any;
22
+ }>;
23
+ sumColKeyProp?: 'sumColCode';
24
+ sumColTitleProp?: 'sumColName';
25
25
  }
26
26
  interface Column {
27
- key?: string
28
- title?: string
29
- children?: Column[]
30
- [propName: string]: any
27
+ key?: string;
28
+ title?: string;
29
+ children?: Column[];
30
+ [propName: string]: any;
31
31
  }
32
32
  interface row2columnResult {
33
- columns: Column[]
34
- data: Array<any>
33
+ columns: Column[];
34
+ data: Array<any>;
35
35
  }
36
36
  /**
37
37
  * 行转列公共方法
@@ -43,12 +43,7 @@ interface row2columnResult {
43
43
  * @param option 一些参数
44
44
  * @returns 行转列后的表头和数据
45
45
  */
46
- export declare function row2column(
47
- data: Array<any>,
48
- columnGroups: ColumnGroup[],
49
- rowKey: string | string[],
50
- option?: row2columnOption,
51
- ): row2columnResult
46
+ export declare function row2column(data: Array<any>, columnGroups: ColumnGroup[], rowKey: string | string[], option?: row2columnOption): row2columnResult;
52
47
  /**
53
48
  * 从行转列的数据转回行数据
54
49
  *
@@ -57,10 +52,6 @@ export declare function row2column(
57
52
  * @param option 一些参数
58
53
  * @returns 行数据
59
54
  */
60
- export declare function flattenRow2ColumnData(
61
- data?: Array<any>,
62
- columns?: Column[],
63
- option?: row2columnOption,
64
- ): Array<any>
65
- export {}
66
- //# sourceMappingURL=table.d.ts.map
55
+ export declare function flattenRow2ColumnData(data?: Array<any>, columns?: Column[], option?: row2columnOption): Array<any>;
56
+ export {};
57
+ //# sourceMappingURL=table.d.ts.map
@@ -1,3 +1,3 @@
1
- export declare function setToken(token: string): void
2
- export declare function getToken(): string | boolean
3
- //# sourceMappingURL=token.d.ts.map
1
+ export declare function setToken(token: string): void;
2
+ export declare function getToken(): string | boolean;
3
+ //# sourceMappingURL=token.d.ts.map
@@ -1,7 +1,7 @@
1
- declare const uuid: (size?: number) => string
2
- export { uuid }
1
+ declare const uuid: (size?: number) => string;
2
+ export { uuid };
3
3
  /**
4
4
  * 生成uid
5
5
  */
6
- export declare function guid(): string
7
- //# sourceMappingURL=uuid.d.ts.map
6
+ export declare function guid(): string;
7
+ //# sourceMappingURL=uuid.d.ts.map
@@ -1,9 +1,9 @@
1
- export declare function checkIdCard(idcard: string): string
2
- export declare function checkPhone(str: string): boolean
1
+ export declare function checkIdCard(idcard: string): string;
2
+ export declare function checkPhone(str: string): boolean;
3
3
  /**
4
4
  * 校验电话号码是否正确
5
5
  *
6
6
  */
7
- export declare function checkTel(val: any): boolean
8
- export declare function checkVehicleNo(str: string): boolean
9
- //# sourceMappingURL=validate.d.ts.map
7
+ export declare function checkTel(val: any): boolean;
8
+ export declare function checkVehicleNo(str: string): boolean;
9
+ //# sourceMappingURL=validate.d.ts.map