@indfnd/utils 0.1.26 → 0.1.28

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 (64) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/ind-utils.es.js +388 -365
  3. package/dist/ind-utils.umd.cjs +20 -20
  4. package/package.json +2 -2
  5. package/src/utils/request/axios.extends.ts +14 -0
  6. package/src/utils/request/index.ts +116 -0
  7. package/src/utils/request/interceptors.ts +2 -1
  8. package/types/api/com.d.ts +3 -1
  9. package/types/api/com.d.ts.map +1 -1
  10. package/types/api/index-desc.d.ts +3 -1
  11. package/types/api/index-desc.d.ts.map +1 -1
  12. package/types/api/index.d.ts +6 -6
  13. package/types/api/item.d.ts +5 -3
  14. package/types/api/item.d.ts.map +1 -1
  15. package/types/api/platform/base64.d.ts +5 -5
  16. package/types/api/platform/dict.d.ts +3 -1
  17. package/types/api/platform/dict.d.ts.map +1 -1
  18. package/types/api/platform/index.d.ts +5 -5
  19. package/types/api/platform/menu.d.ts +14 -10
  20. package/types/api/platform/menu.d.ts.map +1 -1
  21. package/types/api/platform/oss.d.ts +2 -2
  22. package/types/api/platform/oss.d.ts.map +1 -1
  23. package/types/api/platform/user.d.ts +7 -5
  24. package/types/api/platform/user.d.ts.map +1 -1
  25. package/types/api/user.d.ts +3 -1
  26. package/types/api/user.d.ts.map +1 -1
  27. package/types/config/base.config.d.ts +33 -33
  28. package/types/config/dev.config.d.ts +3 -3
  29. package/types/config/index.d.ts +6 -6
  30. package/types/config/prod.config.d.ts +3 -3
  31. package/types/index.d.ts +4 -4
  32. package/types/utils/base64.d.ts +22 -22
  33. package/types/utils/blob.d.ts +3 -3
  34. package/types/utils/cache/dict-cache.d.ts +3 -3
  35. package/types/utils/cache/index-desc.d.ts +4 -4
  36. package/types/utils/cache/index.d.ts +4 -4
  37. package/types/utils/cache/permission-cache.d.ts +4 -4
  38. package/types/utils/cache/user-cache.d.ts +4 -4
  39. package/types/utils/date.d.ts +4 -4
  40. package/types/utils/enum.d.ts +39 -43
  41. package/types/utils/event.d.ts +5 -13
  42. package/types/utils/excel.d.ts +4 -4
  43. package/types/utils/half-year.d.ts +6 -6
  44. package/types/utils/index.d.ts +20 -20
  45. package/types/utils/is-type.d.ts +33 -33
  46. package/types/utils/mime-type.d.ts +67 -67
  47. package/types/utils/number.d.ts +8 -8
  48. package/types/utils/quarter.d.ts +7 -7
  49. package/types/utils/request/axios.extends.d.ts +6 -7
  50. package/types/utils/request/axios.extends.d.ts.map +1 -1
  51. package/types/utils/request/cache-rules.d.ts +3 -3
  52. package/types/utils/request/content-type.d.ts +9 -9
  53. package/types/utils/request/index.d.ts +20 -8
  54. package/types/utils/request/index.d.ts.map +1 -1
  55. package/types/utils/request/interceptors.d.ts +4 -4
  56. package/types/utils/request/interceptors.d.ts.map +1 -1
  57. package/types/utils/request/url-params.d.ts +6 -6
  58. package/types/utils/sm3/index.d.ts +6 -6
  59. package/types/utils/sm3/sm3.d.ts +3 -3
  60. package/types/utils/storage.d.ts +8 -8
  61. package/types/utils/table.d.ts +31 -40
  62. package/types/utils/token.d.ts +3 -3
  63. package/types/utils/uuid.d.ts +4 -4
  64. package/types/utils/validate.d.ts +5 -5
@@ -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