@lingxiteam/assets 3.3.1-alpha.11 → 3.3.1-alpha.12

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 (49) hide show
  1. package/es/rootConfig/mobile/MobileModal.d.ts +10 -2
  2. package/es/rootConfig/mobile/MobileModal.js +10 -0
  3. package/es/rootConfig/mobile/MobilePopover.d.ts +10 -2
  4. package/es/rootConfig/mobile/MobilePopover.js +10 -0
  5. package/es/rootConfig/mobile/page.d.ts +15 -0
  6. package/es/rootConfig/mobile/page.js +10 -0
  7. package/es/rootConfig/pc/Drawer.d.ts +10 -2
  8. package/es/rootConfig/pc/Drawer.js +13 -0
  9. package/es/rootConfig/pc/Modal.d.ts +10 -2
  10. package/es/rootConfig/pc/Modal.js +13 -0
  11. package/es/rootConfig/pc/Popover.d.ts +10 -2
  12. package/es/rootConfig/pc/Popover.js +10 -0
  13. package/es/rootConfig/pc/page.d.ts +11 -0
  14. package/es/rootConfig/pc/page.js +10 -0
  15. package/es/rootConfig/todoActionList.d.ts +167 -26
  16. package/es/rootConfig/todoActionList.js +128 -24
  17. package/es/rootConfig/todoOptionList.js +1 -1
  18. package/es/security/const.d.ts +12 -7
  19. package/es/security/const.js +14 -7
  20. package/es/security/encipher/sign.d.ts +5 -3
  21. package/es/security/encipher/sign.js +41 -14
  22. package/es/security/fetch.js +28 -13
  23. package/es/security/httpEncryption.js +20 -28
  24. package/es/security/index.d.ts +4 -4
  25. package/lib/rootConfig/mobile/MobileModal.d.ts +10 -2
  26. package/lib/rootConfig/mobile/MobileModal.js +10 -0
  27. package/lib/rootConfig/mobile/MobilePopover.d.ts +10 -2
  28. package/lib/rootConfig/mobile/MobilePopover.js +10 -0
  29. package/lib/rootConfig/mobile/page.d.ts +15 -0
  30. package/lib/rootConfig/mobile/page.js +10 -0
  31. package/lib/rootConfig/pc/Drawer.d.ts +10 -2
  32. package/lib/rootConfig/pc/Drawer.js +13 -0
  33. package/lib/rootConfig/pc/Modal.d.ts +10 -2
  34. package/lib/rootConfig/pc/Modal.js +13 -0
  35. package/lib/rootConfig/pc/Popover.d.ts +10 -2
  36. package/lib/rootConfig/pc/Popover.js +10 -0
  37. package/lib/rootConfig/pc/page.d.ts +11 -0
  38. package/lib/rootConfig/pc/page.js +10 -0
  39. package/lib/rootConfig/todoActionList.d.ts +167 -26
  40. package/lib/rootConfig/todoActionList.js +128 -24
  41. package/lib/rootConfig/todoOptionList.js +1 -1
  42. package/lib/security/const.d.ts +12 -7
  43. package/lib/security/const.js +16 -8
  44. package/lib/security/encipher/sign.d.ts +5 -3
  45. package/lib/security/encipher/sign.js +40 -13
  46. package/lib/security/fetch.js +27 -12
  47. package/lib/security/httpEncryption.js +20 -28
  48. package/lib/security/index.d.ts +4 -4
  49. package/package.json +4 -2
@@ -26,10 +26,18 @@ declare const _default: {
26
26
  image: string;
27
27
  groupsName: string;
28
28
  todoActionList: any[];
29
- todoEvents: {
29
+ todoEvents: ({
30
30
  value: string;
31
31
  label: string;
32
- }[];
32
+ remarks?: undefined;
33
+ } | {
34
+ value: string;
35
+ label: string;
36
+ remarks: {
37
+ label: string;
38
+ content: string;
39
+ }[];
40
+ })[];
33
41
  todoProps: {
34
42
  pageName: {
35
43
  label: string;
@@ -55,6 +55,16 @@ export default {
55
55
  }, {
56
56
  value: 'stateChange',
57
57
  label: '组件状态变化后'
58
+ }, {
59
+ value: 'usePageEndRequest',
60
+ label: '页面加载请求结束',
61
+ remarks: [{
62
+ label: '场景描述',
63
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
64
+ }, {
65
+ label: '场景描述',
66
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
67
+ }]
58
68
  }],
59
69
  todoProps: {
60
70
  pageName: {
@@ -23,10 +23,18 @@ declare const _default: {
23
23
  image: string;
24
24
  groupsName: string;
25
25
  todoActionList: any[];
26
- todoEvents: {
26
+ todoEvents: ({
27
27
  value: string;
28
28
  label: string;
29
- }[];
29
+ remarks?: undefined;
30
+ } | {
31
+ value: string;
32
+ label: string;
33
+ remarks: {
34
+ label: string;
35
+ content: string;
36
+ }[];
37
+ })[];
30
38
  todoProps: {
31
39
  pageName: {
32
40
  label: string;
@@ -52,6 +52,16 @@ export default {
52
52
  todoEvents: [{
53
53
  value: 'stateChange',
54
54
  label: '组件状态变化后'
55
+ }, {
56
+ value: 'usePageEndRequest',
57
+ label: '页面加载请求结束',
58
+ remarks: [{
59
+ label: '场景描述',
60
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
61
+ }, {
62
+ label: '适用场景',
63
+ content: '在复杂的表单页面中,你可以在页面加载完成事件中进行页面loading的动作设置,在页面加载完成请求结束事件中取消loading,保障在复杂请求中,因异步导致数据未能及时回填,用户提交错误数据问题。'
64
+ }]
55
65
  }],
56
66
  todoProps: {
57
67
  pageName: {
@@ -35,6 +35,7 @@ declare const _default: {
35
35
  params?: undefined;
36
36
  showRules?: undefined;
37
37
  dependProps?: undefined;
38
+ remarks?: undefined;
38
39
  } | {
39
40
  value: string;
40
41
  label: string;
@@ -42,6 +43,7 @@ declare const _default: {
42
43
  params?: undefined;
43
44
  showRules?: undefined;
44
45
  dependProps?: undefined;
46
+ remarks?: undefined;
45
47
  } | {
46
48
  value: string;
47
49
  label: string;
@@ -53,6 +55,7 @@ declare const _default: {
53
55
  }[];
54
56
  showRules?: undefined;
55
57
  dependProps?: undefined;
58
+ remarks?: undefined;
56
59
  } | {
57
60
  value: string;
58
61
  label: string;
@@ -66,6 +69,18 @@ declare const _default: {
66
69
  value: string;
67
70
  }[];
68
71
  terminal?: undefined;
72
+ remarks?: undefined;
73
+ } | {
74
+ value: string;
75
+ label: string;
76
+ remarks: {
77
+ label: string;
78
+ content: string;
79
+ }[];
80
+ terminal?: undefined;
81
+ params?: undefined;
82
+ showRules?: undefined;
83
+ dependProps?: undefined;
69
84
  })[];
70
85
  todoProps: {
71
86
  pageName: {
@@ -94,6 +94,16 @@ export default {
94
94
  name: 'pageBackData',
95
95
  value: '$pageBackData$'
96
96
  }]
97
+ }, {
98
+ value: 'usePageEndRequest',
99
+ label: '页面加载请求结束',
100
+ remarks: [{
101
+ label: '场景描述',
102
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
103
+ }, {
104
+ label: '适用场景',
105
+ content: '在复杂的表单页面中,你可以在页面加载完成事件中进行页面loading的动作设置,在页面加载完成请求结束事件中取消loading,保障在复杂请求中,因异步导致数据未能及时回填,用户提交错误数据问题。'
106
+ }]
97
107
  }],
98
108
  todoProps: {
99
109
  pageName: {
@@ -24,10 +24,18 @@ declare const _default: {
24
24
  image: string;
25
25
  groupsName: string;
26
26
  todoActionList: any[];
27
- todoEvents: {
27
+ todoEvents: ({
28
28
  value: string;
29
29
  label: string;
30
- }[];
30
+ remarks?: undefined;
31
+ } | {
32
+ value: string;
33
+ label: string;
34
+ remarks: {
35
+ label: string;
36
+ content: string;
37
+ }[];
38
+ })[];
31
39
  todoProps: {
32
40
  pageName: {
33
41
  label: string;
@@ -24,6 +24,9 @@ export default {
24
24
  }, {
25
25
  name: '业务场景',
26
26
  code: 'sceneCode'
27
+ }, {
28
+ name: '业务数据',
29
+ code: 'bizData'
27
30
  }]
28
31
  },
29
32
  style: {},
@@ -95,6 +98,16 @@ export default {
95
98
  }, {
96
99
  value: 'willUnmount',
97
100
  label: '推拉门关闭前'
101
+ }, {
102
+ value: 'usePageEndRequest',
103
+ label: '页面加载请求结束',
104
+ remarks: [{
105
+ label: '场景描述',
106
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
107
+ }, {
108
+ label: '适用场景',
109
+ content: '在复杂的表单页面中,你可以在页面加载完成事件中进行页面loading的动作设置,在页面加载完成请求结束事件中取消loading,保障在复杂请求中,因异步导致数据未能及时回填,用户提交错误数据问题。'
110
+ }]
98
111
  }],
99
112
  todoProps: {
100
113
  pageName: {
@@ -25,10 +25,18 @@ declare const _default: {
25
25
  image: string;
26
26
  groupsName: string;
27
27
  todoActionList: any[];
28
- todoEvents: {
28
+ todoEvents: ({
29
29
  value: string;
30
30
  label: string;
31
- }[];
31
+ remarks?: undefined;
32
+ } | {
33
+ value: string;
34
+ label: string;
35
+ remarks: {
36
+ label: string;
37
+ content: string;
38
+ }[];
39
+ })[];
32
40
  todoProps: {
33
41
  pageName: {
34
42
  label: string;
@@ -25,6 +25,9 @@ export default {
25
25
  }, {
26
26
  name: '业务场景',
27
27
  code: 'sceneCode'
28
+ }, {
29
+ name: '业务数据',
30
+ code: 'bizData'
28
31
  }]
29
32
  },
30
33
  style: {},
@@ -96,6 +99,16 @@ export default {
96
99
  }, {
97
100
  value: 'stateChange',
98
101
  label: '组件状态变化后'
102
+ }, {
103
+ value: 'usePageEndRequest',
104
+ label: '页面加载请求结束',
105
+ remarks: [{
106
+ label: '场景描述',
107
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
108
+ }, {
109
+ label: '适用场景',
110
+ content: '在复杂的表单页面中,你可以在页面加载完成事件中进行页面loading的动作设置,在页面加载完成请求结束事件中取消loading,保障在复杂请求中,因异步导致数据未能及时回填,用户提交错误数据问题。'
111
+ }]
99
112
  }],
100
113
  todoProps: {
101
114
  pageName: {
@@ -25,10 +25,18 @@ declare const _default: {
25
25
  image: string;
26
26
  groupsName: string;
27
27
  todoActionList: any[];
28
- todoEvents: {
28
+ todoEvents: ({
29
29
  value: string;
30
30
  label: string;
31
- }[];
31
+ remarks?: undefined;
32
+ } | {
33
+ value: string;
34
+ label: string;
35
+ remarks: {
36
+ label: string;
37
+ content: string;
38
+ }[];
39
+ })[];
32
40
  todoProps: {
33
41
  showTitle: {
34
42
  label: string;
@@ -87,6 +87,16 @@ export default {
87
87
  }, {
88
88
  value: 'willUnmount',
89
89
  label: '浮窗关闭'
90
+ }, {
91
+ value: 'usePageEndRequest',
92
+ label: '页面加载请求结束',
93
+ remarks: [{
94
+ label: '场景描述',
95
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
96
+ }, {
97
+ label: '适用场景',
98
+ content: '在复杂的表单页面中,你可以在页面加载完成事件中进行页面loading的动作设置,在页面加载完成请求结束事件中取消loading,保障在复杂请求中,因异步导致数据未能及时回填,用户提交错误数据问题。'
99
+ }]
90
100
  }],
91
101
  todoProps: {
92
102
  showTitle: {
@@ -32,6 +32,7 @@ declare const _default: {
32
32
  label: string;
33
33
  dependProps?: undefined;
34
34
  params?: undefined;
35
+ remarks?: undefined;
35
36
  } | {
36
37
  value: string;
37
38
  label: string;
@@ -43,6 +44,16 @@ declare const _default: {
43
44
  name: string;
44
45
  value: string;
45
46
  }[];
47
+ remarks?: undefined;
48
+ } | {
49
+ value: string;
50
+ label: string;
51
+ remarks: {
52
+ label: string;
53
+ content: string;
54
+ }[];
55
+ dependProps?: undefined;
56
+ params?: undefined;
46
57
  })[];
47
58
  todoProps: {
48
59
  pageName: {
@@ -112,6 +112,16 @@ export default {
112
112
  name: 'pageBackData',
113
113
  value: '$pageBackData$'
114
114
  }]
115
+ }, {
116
+ value: 'usePageEndRequest',
117
+ label: '页面加载请求结束',
118
+ remarks: [{
119
+ label: '场景描述',
120
+ content: '在页面加载完成事件中,所有的事件执行结束后进行回掉(包含页面加载完成事件中的异步请求(注意:定时器相关动作不计算回掉时间))'
121
+ }, {
122
+ label: '适用场景',
123
+ content: '在复杂的表单页面中,你可以在页面加载完成事件中进行页面loading的动作设置,在页面加载完成请求结束事件中取消loading,保障在复杂请求中,因异步导致数据未能及时回填,用户提交错误数据问题。'
124
+ }]
115
125
  }],
116
126
  todoProps: {
117
127
  pageName: {