agilebuilder-ui 1.1.27 → 1.1.29
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/lib/{401-c1ecc1a9.js → 401-b6438df4.js} +1 -1
- package/lib/{404-a507cf9c.js → 404-a63f6f05.js} +1 -1
- package/lib/{iframe-page-32671903.js → iframe-page-37f43db7.js} +1 -1
- package/lib/{index-ce3ae297.js → index-d3663821.js} +19913 -19927
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +98 -95
- package/lib/{tab-content-iframe-index-55b69efd.js → tab-content-iframe-index-86707264.js} +1 -1
- package/lib/{tab-content-index-f8882314.js → tab-content-index-c7251161.js} +25 -24
- package/lib/{tache-subprocess-history-a2d815d2.js → tache-subprocess-history-6de071c9.js} +1 -1
- package/package.json +1 -1
- package/packages/dynamic-source-select/src/dynamic-source-select.vue +5 -1
- package/packages/fs-preview/src/fs-preview.vue +75 -53
- package/packages/organization-input/src/organization-input.vue +1 -1
- package/packages/row-form/operation.vue +1 -0
- package/packages/super-grid/src/components/mobile-table-card.jsx +12 -2
- package/packages/super-grid/src/custom-formatter.js +10 -7
- package/packages/super-grid/src/dynamic-input.vue +8 -7
- package/packages/super-grid/src/index-column.vue +24 -15
- package/packages/super-grid/src/normal-column-content.vue +19 -2
- package/packages/super-grid/src/normal-column.vue +14 -13
- package/packages/super-grid/src/row-operation.vue +49 -27
- package/packages/super-grid/src/selection-column.vue +2 -12
- package/packages/super-grid/src/super-grid.vue +27 -7
- package/packages/workflow-history-list/src/workflow-history-list.vue +101 -160
- package/src/components/Affix/index.vue +19 -12
- package/src/i18n/langs/cn.js +292 -294
- package/src/i18n/langs/en.js +291 -304
- package/src/permission.js +1 -1
- package/src/store/modules/table.js +1 -0
- package/src/styles/_layout-custom-properties.scss +2 -2
- package/src/styles/display-layout.scss +4 -4
- package/src/styles/index.scss +2 -9
- package/src/styles/theme/dark-blue/button.scss +6 -6
- package/src/styles/theme/dark-blue/card.scss +11 -15
- package/src/styles/theme/dark-blue/index.scss +0 -4
- package/src/styles/theme/dark-blue/sidebar.scss +0 -5
- package/src/styles/theme/default.scss +1 -1
- package/src/styles/theme/green/button.scss +2 -2
- package/src/styles/theme/green/index.scss +0 -4
- package/src/styles/theme/green/sidebar.scss +0 -5
- package/src/styles/theme/ocean-blue/button.scss +2 -2
- package/src/styles/theme/ocean-blue/index.scss +0 -4
- package/src/styles/theme/ocean-blue/sidebar.scss +0 -5
- package/src/styles/theme/tiffany-blue-mobile/button.scss +2 -2
- package/src/styles/theme/tiffany-blue-mobile/index.scss +1 -5
- package/src/styles/theme/tiffany-blue-mobile/sidebar.scss +0 -5
- package/src/utils/iframe-communicator.js +222 -222
- package/src/utils/jump-page-utils.js +1 -1
- package/vite.config.js +2 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
--admin-layout-left-menu-collapse: 54px; // 系统侧边导航栏 收起
|
|
5
5
|
--admin-layout-main-gap: 20px; // 页面布局内间距
|
|
6
6
|
--app-main-padding: 15px; // 页面外框内间距
|
|
7
|
-
--dec-page-main-padding:
|
|
7
|
+
--dec-page-main-padding: 15px; // 页面外框内间距
|
|
8
8
|
--app-container-padding: 20px; // 页面外框内间距
|
|
9
9
|
--runtime-page-container-padding: 20px; // 页面卡片容器内间距
|
|
10
10
|
--runtime-page-container-view-gap: 15px; // 渲染容器内间距
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
:root {
|
|
20
20
|
--admin-layout-main-gap: 10px;
|
|
21
21
|
--app-main-padding: 10px;
|
|
22
|
-
--dec-page-main-padding:
|
|
22
|
+
--dec-page-main-padding: 15px;
|
|
23
23
|
--app-container-padding: 15px;
|
|
24
24
|
--runtime-page-container-padding: 10px;
|
|
25
25
|
--runtime-page-container-view-gap: 10px;
|
|
@@ -32,6 +32,10 @@
|
|
|
32
32
|
word-break: normal;
|
|
33
33
|
white-space: normal;
|
|
34
34
|
|
|
35
|
+
&:empty {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
35
39
|
&:has(> div[style*=left]) {
|
|
36
40
|
justify-content: flex-start;
|
|
37
41
|
}
|
|
@@ -55,10 +59,6 @@
|
|
|
55
59
|
width: 100% !important;
|
|
56
60
|
justify-content: flex-start;
|
|
57
61
|
text-align: left;
|
|
58
|
-
|
|
59
|
-
&:empty {
|
|
60
|
-
display: none;
|
|
61
|
-
}
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|
package/src/styles/index.scss
CHANGED
|
@@ -125,13 +125,6 @@ body .el-table colgroup.gutter {
|
|
|
125
125
|
margin-bottom: 0;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
.grid-search-form .search-button,
|
|
129
|
-
.grid-area {
|
|
130
|
-
.el-button:not(:first-child) {
|
|
131
|
-
margin-left: 10px;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
128
|
.grid-operation-buttons {
|
|
136
129
|
display: flex;
|
|
137
130
|
flex-wrap: wrap;
|
|
@@ -222,7 +215,7 @@ body .el-table colgroup.gutter {
|
|
|
222
215
|
}
|
|
223
216
|
|
|
224
217
|
.amb-widget-flex {
|
|
225
|
-
display: flex
|
|
218
|
+
display: flex;
|
|
226
219
|
flex-direction: column
|
|
227
220
|
}
|
|
228
221
|
|
|
@@ -278,5 +271,5 @@ body .el-table colgroup.gutter {
|
|
|
278
271
|
}
|
|
279
272
|
|
|
280
273
|
.dec-page-main {
|
|
281
|
-
padding: var(--dec-page-main-padding,
|
|
274
|
+
padding: var(--dec-page-main-padding, 15px);
|
|
282
275
|
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.button--default {
|
|
16
|
+
.button--default, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]) {
|
|
17
17
|
border-radius: 4px;
|
|
18
18
|
border-color: $--color-primary;
|
|
19
19
|
color: $--color-primary;
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
color: #005eba;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
.is-plain {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
27
|
+
// .is-plain {
|
|
28
|
+
// color: $--button-default-font-color;
|
|
29
|
+
// background-color: #e8eff7;
|
|
30
|
+
// border: 1px solid $--button-default-border-color;
|
|
31
|
+
// }
|
|
32
32
|
|
|
33
33
|
.el-dropdown-link {
|
|
34
34
|
color: $--button-default-font-color;
|
|
@@ -40,21 +40,17 @@
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
.el-card__header>div {
|
|
56
|
-
line-height: 22px;
|
|
57
|
-
}
|
|
43
|
+
.el-card__header {
|
|
44
|
+
height: 40px;
|
|
45
|
+
background: #F0F8FE;
|
|
46
|
+
color: #005EBA;
|
|
47
|
+
font-family: Source Han Sans CN;
|
|
48
|
+
font-weight: medium;
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
text-align: left;
|
|
51
|
+
padding: 9px 20px;
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: center;
|
|
58
54
|
}
|
|
59
55
|
.card-style {
|
|
60
56
|
width: 100%;
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.button--default {
|
|
16
|
+
.button--default, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]) {
|
|
17
17
|
border-radius: 4px;
|
|
18
18
|
border-color: $--color-primary;
|
|
19
19
|
color: $--color-primary;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.button--default:hover{
|
|
22
|
+
.button--default:hover, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]):hover {
|
|
23
23
|
color: $--color-primary;
|
|
24
24
|
background-color: $--color-hover;
|
|
25
25
|
border-color: $--color-primary;
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.button--default {
|
|
16
|
+
.button--default, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]) {
|
|
17
17
|
border-radius: 4px;
|
|
18
18
|
border-color: $--color-primary;
|
|
19
19
|
color: $--color-primary;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.button--default:hover{
|
|
22
|
+
.button--default:hover, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]):hover {
|
|
23
23
|
color: $--color-primary;
|
|
24
24
|
background-color: $--color-hover;
|
|
25
25
|
border-color: $--color-primary;
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.button--default {
|
|
16
|
+
.button--default, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]) {
|
|
17
17
|
border-radius: 4px;
|
|
18
18
|
border-color: $--color-primary;
|
|
19
19
|
color: $--color-primary;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.button--default:hover {
|
|
22
|
+
.button--default:hover, button.el-button:not([class*="el-button--primary"]):not([class*="el-button--success"]):not([class*="el-button--info"]):not([class*="el-button--warning"]):not([class*="el-button--danger"]):not([class*="el-button--default"]):not([class*="el-button--text"]):hover {
|
|
23
23
|
color: $--color-primary;
|
|
24
24
|
background-color: $--color-hover;
|
|
25
25
|
border-color: $--color-primary;
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
|
|
92
92
|
//main-container全局样式
|
|
93
93
|
.app-main {
|
|
94
|
-
padding:
|
|
94
|
+
padding: 0 !important;
|
|
95
95
|
min-height: 100vh; // min-height: calc(100vh - (var(--app-main-padding, 15px) * 2));
|
|
96
96
|
background: #fcfcfc;
|
|
97
97
|
}
|
|
@@ -211,10 +211,6 @@
|
|
|
211
211
|
text-align: left;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
-
.el-button+.el-button {
|
|
215
|
-
margin-left: 10px;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
214
|
// 清除 app-container 类样式
|
|
219
215
|
.clear_app_container {
|
|
220
216
|
padding: 0;
|