3h1-ui 3.0.0-next.22 → 3.0.0-next.24
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/es/index.js +9 -3
- package/es/style.css +4 -3
- package/lib/index.js +9 -3
- package/lib/style.css +4 -3
- package/package.json +3 -3
package/es/index.js
CHANGED
|
@@ -25344,6 +25344,10 @@ const basicContainerProps = reactive({
|
|
|
25344
25344
|
type: Boolean,
|
|
25345
25345
|
default: true
|
|
25346
25346
|
},
|
|
25347
|
+
isShowBack: {
|
|
25348
|
+
type: Boolean,
|
|
25349
|
+
default: false
|
|
25350
|
+
},
|
|
25347
25351
|
isShowFooter: {
|
|
25348
25352
|
type: Boolean,
|
|
25349
25353
|
default: true
|
|
@@ -25427,14 +25431,14 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25427
25431
|
createElementVNode("div", {
|
|
25428
25432
|
class: normalizeClass(`${_ctx.prefixCls}-header-title`)
|
|
25429
25433
|
}, [
|
|
25430
|
-
!_ctx.loading ? (openBlock(), createElementBlock("div", {
|
|
25434
|
+
!_ctx.loading && _ctx.isShowBack ? (openBlock(), createElementBlock("div", {
|
|
25431
25435
|
key: 0,
|
|
25432
25436
|
class: normalizeClass(`${_ctx.prefixCls}-header-title-icon`),
|
|
25433
25437
|
onClick: _cache[0] || (_cache[0] = ($event) => _ctx.emit("cancel"))
|
|
25434
25438
|
}, [
|
|
25435
25439
|
createVNode(_component_ArrowLeftOutlined, { style: { fontSize: `16px` } })
|
|
25436
25440
|
], 2)) : createCommentVNode("", true),
|
|
25437
|
-
_ctx.loading ? (openBlock(), createElementBlock("div", {
|
|
25441
|
+
_ctx.loading && _ctx.isShowBack ? (openBlock(), createElementBlock("div", {
|
|
25438
25442
|
key: 1,
|
|
25439
25443
|
class: normalizeClass(`${_ctx.prefixCls}-header-title-loading-icon`)
|
|
25440
25444
|
}, [
|
|
@@ -37611,8 +37615,9 @@ const ShyTable = /* @__PURE__ */ defineComponent({
|
|
|
37611
37615
|
}, null) : null;
|
|
37612
37616
|
};
|
|
37613
37617
|
const isShowSummary = () => {
|
|
37618
|
+
var _a2, _b;
|
|
37614
37619
|
let _slot2;
|
|
37615
|
-
return getDataSourceRef.value.length && getProps.value.showSummaryTotal ? createVNode(TableSummary, null, {
|
|
37620
|
+
return ((_a2 = getDataSourceRef.value) == null ? void 0 : _a2.length) && ((_b = getProps.value) == null ? void 0 : _b.showSummaryTotal) ? createVNode(TableSummary, null, {
|
|
37616
37621
|
default: () => [createVNode(TableSummaryRow, null, _isSlot(_slot2 = getColumnsSummary.value.map((item, index2) => {
|
|
37617
37622
|
if (index2 === 0)
|
|
37618
37623
|
return createVNode(TableSummaryCell, {
|
|
@@ -38175,6 +38180,7 @@ export {
|
|
|
38175
38180
|
TableImg,
|
|
38176
38181
|
_sfc_main$n as TablePlus,
|
|
38177
38182
|
ToolbarEnum,
|
|
38183
|
+
basicContainerProps,
|
|
38178
38184
|
componentMap$3 as componentMap,
|
|
38179
38185
|
createLoading,
|
|
38180
38186
|
descriptionsForm,
|
package/es/style.css
CHANGED
|
@@ -8403,8 +8403,8 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8403
8403
|
width: 100%;
|
|
8404
8404
|
height: fit-content;
|
|
8405
8405
|
align-items: center;
|
|
8406
|
-
padding: 10px;
|
|
8407
|
-
border-bottom: 1px solid
|
|
8406
|
+
padding-block: 10px;
|
|
8407
|
+
border-bottom: 1px solid var(--gray-3);
|
|
8408
8408
|
gap: 8px;
|
|
8409
8409
|
}
|
|
8410
8410
|
.shy-basic-container-header-title {
|
|
@@ -8431,7 +8431,8 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8431
8431
|
justify-content: flex-end;
|
|
8432
8432
|
align-items: center;
|
|
8433
8433
|
gap: 8px;
|
|
8434
|
-
border-top: 1px solid
|
|
8434
|
+
border-top: 1px solid var(--gray-3);
|
|
8435
|
+
background-color: var(--gray-2);
|
|
8435
8436
|
}
|
|
8436
8437
|
.shy-basic-container-footer-buttons {
|
|
8437
8438
|
display: flex;
|
package/lib/index.js
CHANGED
|
@@ -25368,6 +25368,10 @@ const basicContainerProps = vue.reactive({
|
|
|
25368
25368
|
type: Boolean,
|
|
25369
25369
|
default: true
|
|
25370
25370
|
},
|
|
25371
|
+
isShowBack: {
|
|
25372
|
+
type: Boolean,
|
|
25373
|
+
default: false
|
|
25374
|
+
},
|
|
25371
25375
|
isShowFooter: {
|
|
25372
25376
|
type: Boolean,
|
|
25373
25377
|
default: true
|
|
@@ -25451,14 +25455,14 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25451
25455
|
vue.createElementVNode("div", {
|
|
25452
25456
|
class: vue.normalizeClass(`${_ctx.prefixCls}-header-title`)
|
|
25453
25457
|
}, [
|
|
25454
|
-
!_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
25458
|
+
!_ctx.loading && _ctx.isShowBack ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
25455
25459
|
key: 0,
|
|
25456
25460
|
class: vue.normalizeClass(`${_ctx.prefixCls}-header-title-icon`),
|
|
25457
25461
|
onClick: _cache[0] || (_cache[0] = ($event) => _ctx.emit("cancel"))
|
|
25458
25462
|
}, [
|
|
25459
25463
|
vue.createVNode(_component_ArrowLeftOutlined, { style: { fontSize: `16px` } })
|
|
25460
25464
|
], 2)) : vue.createCommentVNode("", true),
|
|
25461
|
-
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
25465
|
+
_ctx.loading && _ctx.isShowBack ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
25462
25466
|
key: 1,
|
|
25463
25467
|
class: vue.normalizeClass(`${_ctx.prefixCls}-header-title-loading-icon`)
|
|
25464
25468
|
}, [
|
|
@@ -37635,8 +37639,9 @@ const ShyTable = /* @__PURE__ */ vue.defineComponent({
|
|
|
37635
37639
|
}, null) : null;
|
|
37636
37640
|
};
|
|
37637
37641
|
const isShowSummary = () => {
|
|
37642
|
+
var _a2, _b;
|
|
37638
37643
|
let _slot2;
|
|
37639
|
-
return getDataSourceRef.value.length && getProps.value.showSummaryTotal ? vue.createVNode(antDesignVue.TableSummary, null, {
|
|
37644
|
+
return ((_a2 = getDataSourceRef.value) == null ? void 0 : _a2.length) && ((_b = getProps.value) == null ? void 0 : _b.showSummaryTotal) ? vue.createVNode(antDesignVue.TableSummary, null, {
|
|
37640
37645
|
default: () => [vue.createVNode(antDesignVue.TableSummaryRow, null, _isSlot(_slot2 = getColumnsSummary.value.map((item, index2) => {
|
|
37641
37646
|
if (index2 === 0)
|
|
37642
37647
|
return vue.createVNode(antDesignVue.TableSummaryCell, {
|
|
@@ -38198,6 +38203,7 @@ exports.TableDict = TableDict;
|
|
|
38198
38203
|
exports.TableImg = TableImg;
|
|
38199
38204
|
exports.TablePlus = _sfc_main$n;
|
|
38200
38205
|
exports.ToolbarEnum = ToolbarEnum;
|
|
38206
|
+
exports.basicContainerProps = basicContainerProps;
|
|
38201
38207
|
exports.componentMap = componentMap$3;
|
|
38202
38208
|
exports.createLoading = createLoading;
|
|
38203
38209
|
exports.descriptionsForm = descriptionsForm;
|
package/lib/style.css
CHANGED
|
@@ -8403,8 +8403,8 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8403
8403
|
width: 100%;
|
|
8404
8404
|
height: fit-content;
|
|
8405
8405
|
align-items: center;
|
|
8406
|
-
padding: 10px;
|
|
8407
|
-
border-bottom: 1px solid
|
|
8406
|
+
padding-block: 10px;
|
|
8407
|
+
border-bottom: 1px solid var(--gray-3);
|
|
8408
8408
|
gap: 8px;
|
|
8409
8409
|
}
|
|
8410
8410
|
.shy-basic-container-header-title {
|
|
@@ -8431,7 +8431,8 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8431
8431
|
justify-content: flex-end;
|
|
8432
8432
|
align-items: center;
|
|
8433
8433
|
gap: 8px;
|
|
8434
|
-
border-top: 1px solid
|
|
8434
|
+
border-top: 1px solid var(--gray-3);
|
|
8435
|
+
background-color: var(--gray-2);
|
|
8435
8436
|
}
|
|
8436
8437
|
.shy-basic-container-footer-buttons {
|
|
8437
8438
|
display: flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "3h1-ui",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.24",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"vxe-table": "^4.3.6",
|
|
31
31
|
"xe-utils": "^3.5.7",
|
|
32
32
|
"@shy-plugins/tinymce": "^1.0.6",
|
|
33
|
-
"@shy-plugins/
|
|
34
|
-
"@shy-plugins/
|
|
33
|
+
"@shy-plugins/use": "1.0.0-next.1",
|
|
34
|
+
"@shy-plugins/utils": "1.0.0-next.1"
|
|
35
35
|
},
|
|
36
36
|
"types": "es/ui/index.d.ts",
|
|
37
37
|
"devDependencies": {
|