3h1-ui 3.0.0-next.23 → 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 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
  }, [
@@ -38176,6 +38180,7 @@ export {
38176
38180
  TableImg,
38177
38181
  _sfc_main$n as TablePlus,
38178
38182
  ToolbarEnum,
38183
+ basicContainerProps,
38179
38184
  componentMap$3 as componentMap,
38180
38185
  createLoading,
38181
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 #eaeaea;
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 #eaeaea;
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
  }, [
@@ -38199,6 +38203,7 @@ exports.TableDict = TableDict;
38199
38203
  exports.TableImg = TableImg;
38200
38204
  exports.TablePlus = _sfc_main$n;
38201
38205
  exports.ToolbarEnum = ToolbarEnum;
38206
+ exports.basicContainerProps = basicContainerProps;
38202
38207
  exports.componentMap = componentMap$3;
38203
38208
  exports.createLoading = createLoading;
38204
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 #eaeaea;
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 #eaeaea;
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.23",
3
+ "version": "3.0.0-next.24",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -29,8 +29,8 @@
29
29
  "vue-json-pretty": "^2.2.3",
30
30
  "vxe-table": "^4.3.6",
31
31
  "xe-utils": "^3.5.7",
32
- "@shy-plugins/use": "1.0.0-next.1",
33
32
  "@shy-plugins/tinymce": "^1.0.6",
33
+ "@shy-plugins/use": "1.0.0-next.1",
34
34
  "@shy-plugins/utils": "1.0.0-next.1"
35
35
  },
36
36
  "types": "es/ui/index.d.ts",