@mc20230601/keep-up 1.0.42 → 1.0.48

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 (69) hide show
  1. package/es/components/codeEditor/index.d.ts +4 -4
  2. package/es/components/codeEditor/index.mjs +2 -2
  3. package/es/components/codeEditor/index.mjs.map +1 -1
  4. package/es/components/commonEditor/index.d.ts +2 -2
  5. package/es/components/commonEditor/index.mjs +4 -3
  6. package/es/components/commonEditor/index.mjs.map +1 -1
  7. package/es/components/commonEditor/interfaces.d.ts +5 -1
  8. package/es/components/commonFilter/index.d.ts +6 -6
  9. package/es/components/commonFilter/index.mjs +6 -4
  10. package/es/components/commonFilter/index.mjs.map +1 -1
  11. package/es/components/commonFilter/interfaces.d.ts +3 -1
  12. package/es/components/commonFilter/useKeepFilter.d.ts +1 -1
  13. package/es/components/commonFilter/useKeepFilter.mjs +24 -3
  14. package/es/components/commonFilter/useKeepFilter.mjs.map +1 -1
  15. package/es/components/commonJsonPretty/index.mjs +3 -2
  16. package/es/components/commonJsonPretty/index.mjs.map +1 -1
  17. package/es/components/commonLocations/index.d.ts +1 -1
  18. package/es/components/commonLocations/index.mjs +2 -2
  19. package/es/components/commonLocations/index.mjs.map +1 -1
  20. package/es/components/commonLocations/useLocations.mjs +8 -2
  21. package/es/components/commonLocations/useLocations.mjs.map +1 -1
  22. package/es/components/commonPage/index.d.ts +4 -2
  23. package/es/components/commonPage/index.mjs +16 -9
  24. package/es/components/commonPage/index.mjs.map +1 -1
  25. package/es/components/commonPage/interfaces.d.ts +9 -2
  26. package/es/components/commonPage/usePageActions.mjs +7 -3
  27. package/es/components/commonPage/usePageActions.mjs.map +1 -1
  28. package/es/components/commonSetter/components/draggableList/index.mjs +6 -5
  29. package/es/components/commonSetter/components/draggableList/index.mjs.map +1 -1
  30. package/es/components/commonTable/constants.d.ts +6 -2
  31. package/es/components/commonTable/constants.mjs +3 -4
  32. package/es/components/commonTable/constants.mjs.map +1 -1
  33. package/es/components/commonTable/index.mjs +13 -7
  34. package/es/components/commonTable/index.mjs.map +1 -1
  35. package/es/components/commonTable/index.module.mjs +2 -2
  36. package/es/components/commonTable/usePagination.mjs +0 -1
  37. package/es/components/commonTable/usePagination.mjs.map +1 -1
  38. package/es/components/formTabs/index.mjs +0 -1
  39. package/es/components/formTabs/index.mjs.map +1 -1
  40. package/es/components/formilyCmps/formilyForm/index.d.ts +1 -1
  41. package/es/components/formilyCmps/formilyForm/index.mjs +18 -0
  42. package/es/components/formilyCmps/formilyForm/index.mjs.map +1 -1
  43. package/es/components/formilyCmps/index.d.ts +1 -0
  44. package/es/components/formilyCmps/index.mjs +1 -0
  45. package/es/components/formilyCmps/index.mjs.map +1 -1
  46. package/es/components/formilyCmps/sectionTitle/index.mjs +2 -2
  47. package/es/components/formilyCmps/sectionTitle/index.mjs.map +1 -1
  48. package/es/components/formilyCmps/title/index.d.ts +2 -0
  49. package/es/components/formilyCmps/title/index.mjs +19 -0
  50. package/es/components/formilyCmps/title/index.mjs.map +1 -0
  51. package/es/components/formilyCmps/title/index.module.mjs +4 -0
  52. package/es/components/formilyCmps/title/index.module.mjs.map +1 -0
  53. package/es/components/formilyCmps/virtualizedSelect/index.d.ts +1 -0
  54. package/es/components/formilyCmps/virtualizedSelect/index.mjs +15 -0
  55. package/es/components/formilyCmps/virtualizedSelect/index.mjs.map +1 -0
  56. package/es/components/index.mjs +1 -0
  57. package/es/components/index.mjs.map +1 -1
  58. package/es/components/radioGroup/index.d.ts +15 -15
  59. package/es/components/radioGroup/index.mjs +1 -0
  60. package/es/components/radioGroup/index.mjs.map +1 -1
  61. package/es/components/space/index.d.ts +1 -1
  62. package/es/components/upload/formilyUpload.d.ts +1 -1
  63. package/es/components/upload/index.d.ts +4 -4
  64. package/es/components/upload/upload.d.ts +1 -1
  65. package/es/index.d.ts +2334 -18
  66. package/es/index.mjs +1 -20
  67. package/es/index.mjs.map +1 -1
  68. package/es/styles/index.css +162 -128
  69. package/package.json +1 -1
package/es/index.mjs CHANGED
@@ -1,21 +1,2 @@
1
- export { default as CommonFilter } from './components/commonFilter/index.mjs';
2
- export { default as CommonPage } from './components/commonPage/index.mjs';
3
- export { default as CommonTable } from './components/commonTable/index.mjs';
4
- export { default as CommonEditor } from './components/commonEditor/index.mjs';
5
- export { default as CommonModal } from './components/commonModal/index.mjs';
6
- export { default as CommonDrawer } from './components/commonDrawer/index.mjs';
7
- export { default as CommonLocations } from './components/commonLocations/index.mjs';
8
- export { CommonJsonPretty, FormilyCommonJsonPretty } from './components/commonJsonPretty/index.mjs';
9
- export { default as ElIconPlus } from './components/elIconPlus/index.mjs';
10
- export { default as FormilyForm } from './components/formilyCmps/formilyForm/index.mjs';
11
- export { composeFormTab as FormTab, composeFormTab } from './components/formilyCmps/formTab/index.mjs';
12
- export { default as CodeEditor } from './components/codeEditor/index.mjs';
13
- export { default as Fragment } from './components/fragment/index.mjs';
14
- export { default as FormTabs } from './components/formTabs/index.mjs';
15
- export { default as IconFont } from './components/iconFont/index.mjs';
16
- export { default as RadioGroup } from './components/radioGroup/index.mjs';
17
- export { default as Space } from './components/space/index.mjs';
18
- export { default as Upload } from './components/upload/index.mjs';
19
- export { COMMON_FILTER_INJECTION_KEY, Common_Page_Preferences_Type, PAGE_PREFERENCES_KEY, pagePreferencesToKeyMap } from './components/commonPage/constants.mjs';
20
- export { MODE, defaultLayout } from './components/commonEditor/constants.mjs';
1
+ export * from '@mc20230601/keep-up/components';
21
2
  //# sourceMappingURL=index.mjs.map
package/es/index.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -1,3 +1,36 @@
1
+ .index-module_container__D46b- {
2
+ padding: 16px 20px !important;
3
+ box-sizing: border-box !important;
4
+ }
5
+ .index-module_container__m2VYe {
6
+ overflow: hidden;
7
+ }
8
+ .index-module_container__m2VYe .formily-element-plus-form-item-label {
9
+ width: var(--common-editor-label-width);
10
+ align-items: center;
11
+ justify-content: flex-start;
12
+ margin-bottom: 5px;
13
+ }
14
+ .index-module_container__m2VYe .formily-element-plus-form-item {
15
+ margin: var(--common-editor-label-margin);
16
+ }
17
+ .index-module_container__m2VYe .el-drawer__footer {
18
+ box-shadow: 0 0 10px #eee;
19
+ }
20
+ .index-module_container__m2VYe.index-module_editMode__AaUsL .formily-element-plus-form-item-label {
21
+ justify-content: end;
22
+ padding-right: 10px;
23
+ box-sizing: border-box;
24
+ }
25
+ .index-module_container__m2VYe.index-module_editMode__AaUsL .formily-element-plus-form-item-colon {
26
+ display: none;
27
+ }
28
+ .index-module_container__m2VYe .index-module_footer__WU6ip {
29
+ width: 100%;
30
+ height: auto;
31
+ box-sizing: border-box;
32
+ justify-content: flex-end;
33
+ }
1
34
  @charset "UTF-8";
2
35
  /* 全局 css 变量 */
3
36
  :root {
@@ -14,37 +47,51 @@
14
47
  --el-fill-color-lighter: #f5f7fa;
15
48
  }
16
49
 
17
- .index-module_wrapper__o-ooH {
18
- line-height: 16px;
19
- font-weight: bold;
20
- padding: 6px 6px 6px 10px;
21
- box-sizing: border-box;
22
- background-color: #f5f5f5;
50
+ .index-module_container__i8ob4 {
51
+ margin: 0;
52
+ padding: 0;
53
+ border-radius: 4px;
54
+ overflow: hidden;
23
55
  }
24
- .index-module_wrapper__o-ooH.index-module_primary__-O491 {
25
- border-left: 6px solid #007dff;
56
+ .index-module_container__i8ob4.el-dialog {
57
+ padding: 0;
58
+ margin-top: 7vh;
26
59
  }
27
- .index-module_wrapper__o-ooH.index-module_danger__8-OdG {
28
- border-left: 6px solid #f56c6c;
60
+ .index-module_container__i8ob4 .el-dialog__header {
61
+ text-align: left;
62
+ padding: 16px 24px;
63
+ box-sizing: border-box;
64
+ background-color: #f6f8fa;
29
65
  }
30
- .index-module_container__u57hI {
31
- width: 100%;
66
+ .index-module_container__i8ob4 .el-dialog__title {
67
+ font-family: PingFang SC;
68
+ font-weight: 500;
69
+ font-size: 18px;
70
+ line-height: 100%;
71
+ vertical-align: middle;
32
72
  }
33
- .index-module_container__u57hI .formily-element-plus-form-item-label {
34
- margin-bottom: 0 !important;
73
+ .index-module_container__i8ob4 .el-dialog__headerbtn {
74
+ padding-right: 10px;
75
+ top: 4px;
35
76
  }
36
- .index-module_container__u57hI .formily-element-plus-form-item-error-help {
37
- text-align: left;
77
+ .index-module_container__i8ob4 .el-dialog__body {
78
+ padding: 16px 24px;
79
+ box-sizing: border-box;
38
80
  }
39
- .index-module_container__u57hI .el-collapse-item__header {
81
+ .index-module_container__i8ob4 .el-dialog__footer {
82
+ padding: 16px 24px;
40
83
  box-sizing: border-box;
84
+ background-color: #f6f8fa;
41
85
  }
42
- .index-module_container__u57hI .el-step__icon {
43
- position: absolute;
44
- left: 0;
86
+ .index-module_container__i8ob4 .index-module_content__LREdw {
87
+ max-height: 80vh;
88
+ overflow-y: auto;
45
89
  }
46
- .index-module_container__u57hI .el-step__title {
47
- margin-top: 30px;
90
+ .index-module_container__pOL02 .el-drawer__header {
91
+ margin-bottom: 10px;
92
+ }
93
+ .index-module_container__pOL02 .el-drawer__title {
94
+ text-align: left;
48
95
  }
49
96
  .index-module_container__Kf-LD {
50
97
  width: 100%;
@@ -53,48 +100,16 @@
53
100
  .index-module_container__Kf-LD .formily-element-plus-form-item-feedback-layout-loose {
54
101
  margin: 0;
55
102
  }
56
- .index-module_container__Kf-LD .index-module_btn__4DJ6R {
57
- margin-left: 0 !important;
58
- }
59
- .index-module_container__cwKyU {
60
- width: 140px;
61
- border-radius: 5px;
62
- }
63
- .index-module_container__cwKyU .el-checkbox {
64
- width: 100%;
65
- }
66
- .index-module_container__cwKyU .el-checkbox__label {
67
- width: calc(100% - 22px);
68
- }
69
- .index-module_container__cwKyU .index-module_allCheckbox__gnca9 {
70
- width: 100%;
71
- }
72
- .index-module_container__cwKyU .index-module_allCheckbox__gnca9:hover {
73
- background-color: #f5f5f5 !important;
74
- }
75
- .index-module_container__cwKyU .index-module_divider__Si8Gr {
76
- margin: 0;
77
- }
78
- .index-module_container__cwKyU .index-module_childBox__B2OiA {
79
- width: 100%;
80
- height: 300px;
81
- overflow-y: auto;
82
- }
83
- .index-module_container__cwKyU .index-module_childBox__B2OiA .index-module_draggle__G85gE {
84
- display: flex;
85
- flex-direction: column;
86
- }
87
- .index-module_container__cwKyU .index-module_childBox__B2OiA .index-module_child__Y1jP- {
88
- width: 100%;
89
- margin: 0;
90
- flex-shrink: 0;
103
+ .index-module_container__Kf-LD .formily-element-plus-form-item-label {
104
+ justify-content: end;
105
+ padding-right: 10px;
106
+ box-sizing: border-box;
91
107
  }
92
- .index-module_container__cwKyU .index-module_childBox__B2OiA .index-module_child__Y1jP-:hover {
93
- background-color: #f5f5f5 !important;
108
+ .index-module_container__Kf-LD .formily-element-plus-form-item-colon {
109
+ display: none;
94
110
  }
95
- .index-module_container__D46b- {
96
- padding: 16px 20px !important;
97
- box-sizing: border-box !important;
111
+ .index-module_container__Kf-LD .index-module_btn__4DJ6R {
112
+ margin-left: 0 !important;
98
113
  }
99
114
  .index-module_container__bsvsi {
100
115
  width: 100%;
@@ -113,40 +128,32 @@
113
128
  .index-module_container__bsvsi .el-table__empty-block {
114
129
  min-height: 334px;
115
130
  }
116
- .index-module_container__pOL02 .el-drawer__header {
117
- margin-bottom: 10px;
118
- }
119
- .index-module_container__pOL02 .el-drawer__title {
120
- text-align: left;
121
- }
122
- .index-module_container__m2VYe {
123
- overflow: hidden;
124
- }
125
- .index-module_container__m2VYe .formily-element-plus-form-item-label {
126
- width: var(--common-editor-label-width);
127
- align-items: center;
128
- justify-content: flex-start;
129
- margin-bottom: 5px;
130
- }
131
- .index-module_container__m2VYe .formily-element-plus-form-item {
132
- margin: var(--common-editor-label-margin);
133
- }
134
- .index-module_container__m2VYe .el-drawer__footer {
135
- box-shadow: 0 0 10px #eee;
136
- }
137
- .index-module_container__m2VYe.index-module_editMode__AaUsL .formily-element-plus-form-item-label {
138
- justify-content: end;
139
- padding-right: 10px;
140
- box-sizing: border-box;
131
+ .index-module_container__bsvsi th::after {
132
+ content: " ";
133
+ display: block;
134
+ width: 1px;
135
+ height: 16px;
136
+ background-color: #c0c4cc;
137
+ position: absolute;
138
+ top: 50%;
139
+ right: 0;
140
+ transform: translate(0, -50%);
141
141
  }
142
- .index-module_container__m2VYe.index-module_editMode__AaUsL .formily-element-plus-form-item-colon {
142
+ .index-module_container__bsvsi th:last-child::after {
143
143
  display: none;
144
144
  }
145
- .index-module_container__m2VYe .index-module_footer__WU6ip {
145
+ .index-module_container__VGtEq {
146
+ width: 100%;
147
+ }
148
+ .index-module_container__qa31T .el-upload--text {
149
+ flex-direction: column;
146
150
  width: 100%;
147
- height: auto;
148
- box-sizing: border-box;
149
- justify-content: flex-end;
151
+ }
152
+ .index-module_container__qa31T .el-icon--upload {
153
+ font-size: 67px;
154
+ color: #a8abb2;
155
+ margin-bottom: 16px;
156
+ line-height: 50px;
150
157
  }
151
158
  @charset "UTF-8";
152
159
  /* 全局 css 变量 */
@@ -252,56 +259,83 @@
252
259
  --el-fill-color-lighter: #f5f7fa;
253
260
  }
254
261
 
255
- .index-module_container__i8ob4 {
256
- margin: 0;
257
- padding: 0;
258
- border-radius: 4px;
259
- overflow: hidden;
262
+ .index-module_wrapper__o-ooH {
263
+ line-height: 16px;
264
+ font-weight: bold;
265
+ padding: 6px 6px 6px 10px;
266
+ box-sizing: border-box;
267
+ background-color: #f5f5f5;
260
268
  }
261
- .index-module_container__i8ob4.el-dialog {
262
- padding: 0;
263
- margin-top: 7vh;
269
+ .index-module_wrapper__o-ooH.index-module_primary__-O491 {
270
+ border-left: 6px solid #007dff;
264
271
  }
265
- .index-module_container__i8ob4 .el-dialog__header {
272
+ .index-module_wrapper__o-ooH.index-module_danger__8-OdG {
273
+ border-left: 6px solid #f56c6c;
274
+ }
275
+ .index-module_container__u57hI {
276
+ width: 100%;
277
+ }
278
+ .index-module_container__u57hI .formily-element-plus-form-item-label {
279
+ margin-bottom: 0 !important;
280
+ }
281
+ .index-module_container__u57hI .formily-element-plus-form-item-error-help {
266
282
  text-align: left;
267
- padding: 16px 24px;
283
+ }
284
+ .index-module_container__u57hI .el-collapse-item__header {
268
285
  box-sizing: border-box;
269
- background-color: #F6F8FA;
270
286
  }
271
- .index-module_container__i8ob4 .el-dialog__title {
272
- font-family: PingFang SC;
273
- font-weight: 500;
274
- font-size: 18px;
275
- line-height: 100%;
276
- vertical-align: middle;
287
+ .index-module_container__u57hI .el-step__icon {
288
+ position: absolute;
289
+ left: 0;
277
290
  }
278
- .index-module_container__i8ob4 .el-dialog__headerbtn {
279
- padding-right: 10px;
280
- top: 4px;
291
+ .index-module_container__u57hI .el-step__title {
292
+ margin-top: 30px;
281
293
  }
282
- .index-module_container__i8ob4 .el-dialog__body {
283
- padding: 16px 24px;
294
+ .index-module_wrapper__wIJRk {
295
+ padding: 12px 0 !important;
284
296
  box-sizing: border-box;
297
+ border-bottom: 1px solid #dcdfe6;
298
+ font-family: Noto Sans SC;
299
+ font-weight: 500;
300
+ font-style: Medium;
301
+ font-size: 16px !important;
302
+ line-height: 24px;
303
+ letter-spacing: 0px;
304
+ color: #303133;
285
305
  }
286
- .index-module_container__i8ob4 .el-dialog__footer {
287
- padding: 16px 24px;
288
- box-sizing: border-box;
289
- background-color: #F6F8FA;
306
+ .index-module_container__cwKyU {
307
+ width: 140px;
308
+ border-radius: 5px;
290
309
  }
291
- .index-module_container__i8ob4 .index-module_content__LREdw {
292
- max-height: 80vh;
293
- overflow-y: auto;
310
+ .index-module_container__cwKyU .el-checkbox {
311
+ width: 100%;
294
312
  }
295
- .index-module_container__VGtEq {
313
+ .index-module_container__cwKyU .el-checkbox__label {
314
+ width: calc(100% - 22px);
315
+ }
316
+ .index-module_container__cwKyU .index-module_allCheckbox__gnca9 {
296
317
  width: 100%;
297
318
  }
298
- .index-module_container__qa31T .el-upload--text {
319
+ .index-module_container__cwKyU .index-module_allCheckbox__gnca9:hover {
320
+ background-color: #f5f5f5 !important;
321
+ }
322
+ .index-module_container__cwKyU .index-module_divider__Si8Gr {
323
+ margin: 0;
324
+ }
325
+ .index-module_container__cwKyU .index-module_childBox__B2OiA {
326
+ width: 100%;
327
+ height: 300px;
328
+ overflow-y: auto;
329
+ }
330
+ .index-module_container__cwKyU .index-module_childBox__B2OiA .index-module_draggle__G85gE {
331
+ display: flex;
299
332
  flex-direction: column;
333
+ }
334
+ .index-module_container__cwKyU .index-module_childBox__B2OiA .index-module_child__Y1jP- {
300
335
  width: 100%;
336
+ margin: 0;
337
+ flex-shrink: 0;
301
338
  }
302
- .index-module_container__qa31T .el-icon--upload {
303
- font-size: 67px;
304
- color: #a8abb2;
305
- margin-bottom: 16px;
306
- line-height: 50px;
339
+ .index-module_container__cwKyU .index-module_childBox__B2OiA .index-module_child__Y1jP-:hover {
340
+ background-color: #f5f5f5 !important;
307
341
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc20230601/keep-up",
3
- "version": "1.0.42",
3
+ "version": "1.0.48",
4
4
  "description": "",
5
5
  "author": "mc20230601",
6
6
  "publishConfig": {