3h1-ui 2.14.71 → 2.14.72

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
@@ -4794,7 +4794,7 @@ const _sfc_main$1l = defineComponent({
4794
4794
  };
4795
4795
  }
4796
4796
  });
4797
- const StrengthMeter_vue_vue_type_style_index_0_scoped_678d40fd_lang = "";
4797
+ const StrengthMeter_vue_vue_type_style_index_0_scoped_c8d77eaa_lang = "";
4798
4798
  const _hoisted_1$z = ["data-score"];
4799
4799
  function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
4800
4800
  const _component_InputPassword = resolveComponent("InputPassword");
@@ -4826,7 +4826,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
4826
4826
  ], 2)
4827
4827
  ], 2);
4828
4828
  }
4829
- const StrengthMeter = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["render", _sfc_render$M], ["__scopeId", "data-v-678d40fd"]]);
4829
+ const StrengthMeter = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["render", _sfc_render$M], ["__scopeId", "data-v-c8d77eaa"]]);
4830
4830
  const _sfc_main$1k = defineComponent({
4831
4831
  name: "SvgIcon",
4832
4832
  props: {
@@ -4862,7 +4862,7 @@ const _sfc_main$1k = defineComponent({
4862
4862
  return { symbolId, prefixCls: prefixCls2, getStyle };
4863
4863
  }
4864
4864
  });
4865
- const SvgIcon_vue_vue_type_style_index_0_scoped_905fa4a6_lang = "";
4865
+ const SvgIcon_vue_vue_type_style_index_0_scoped_fa64fe87_lang = "";
4866
4866
  const _hoisted_1$y = ["xlink:href"];
4867
4867
  function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
4868
4868
  return openBlock(), createElementBlock("svg", {
@@ -4873,7 +4873,7 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
4873
4873
  createElementVNode("use", { "xlink:href": _ctx.symbolId }, null, 8, _hoisted_1$y)
4874
4874
  ], 6);
4875
4875
  }
4876
- const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["render", _sfc_render$L], ["__scopeId", "data-v-905fa4a6"]]);
4876
+ const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["render", _sfc_render$L], ["__scopeId", "data-v-fa64fe87"]]);
4877
4877
  const SVG_END_WITH_FLAG = "|svg";
4878
4878
  const _sfc_main$1j = defineComponent({
4879
4879
  name: "Icon",
@@ -5184,8 +5184,8 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
5184
5184
  };
5185
5185
  }
5186
5186
  });
5187
- const BasicArrow_vue_vue_type_style_index_0_scoped_fea26917_lang = "";
5188
- const BasicArrow = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__scopeId", "data-v-fea26917"]]);
5187
+ const BasicArrow_vue_vue_type_style_index_0_scoped_03d87956_lang = "";
5188
+ const BasicArrow = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__scopeId", "data-v-03d87956"]]);
5189
5189
  const props$c = {
5190
5190
  /**
5191
5191
  * Help text max-width
@@ -5327,8 +5327,8 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
5327
5327
  };
5328
5328
  }
5329
5329
  });
5330
- const BasicTitle_vue_vue_type_style_index_0_scoped_59bc8f76_lang = "";
5331
- const BasicTitle$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-59bc8f76"]]);
5330
+ const BasicTitle_vue_vue_type_style_index_0_scoped_c007dbdf_lang = "";
5331
+ const BasicTitle$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-c007dbdf"]]);
5332
5332
  const props$b = {
5333
5333
  prefixCls: { type: String },
5334
5334
  helpMessage: {
@@ -7629,7 +7629,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
7629
7629
  default: () => true
7630
7630
  }
7631
7631
  },
7632
- emits: ["update:value", "change"],
7632
+ emits: ["update:value", "change", "add", "remove"],
7633
7633
  setup(__props, { expose, emit }) {
7634
7634
  const props2 = __props;
7635
7635
  const listFormRefs = ref([]);
@@ -7642,18 +7642,20 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
7642
7642
  customRender: ({ index: index2 }) => {
7643
7643
  return `${index2 + 1}`;
7644
7644
  },
7645
- minWidth: 50,
7645
+ width: 50,
7646
7646
  align: "center"
7647
7647
  };
7648
7648
  return [indexColumn, ...props2.columns];
7649
7649
  });
7650
7650
  const plusClickEvent = () => {
7651
7651
  state.value = [{}, ...state.value];
7652
+ emit("add", state.value);
7652
7653
  };
7653
7654
  const rowClickEvent = (index2) => {
7654
7655
  state.value = unref(state).filter((item, i) => {
7655
7656
  return index2 !== i;
7656
7657
  });
7658
+ emit("remove", state.value, index2);
7657
7659
  };
7658
7660
  const loadKv = () => {
7659
7661
  const columns = props2.columns;
@@ -7766,8 +7768,8 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
7766
7768
  };
7767
7769
  }
7768
7770
  });
7769
- const Table_vue_vue_type_style_index_0_scoped_c8e852c2_lang = "";
7770
- const Table = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-c8e852c2"]]);
7771
+ const Table_vue_vue_type_style_index_0_scoped_85227e84_lang = "";
7772
+ const Table = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-85227e84"]]);
7771
7773
  const modal = "";
7772
7774
  useI18n$1();
7773
7775
  const modalProps = {
@@ -8664,8 +8666,8 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
8664
8666
  };
8665
8667
  }
8666
8668
  });
8667
- const BasicTitle_vue_vue_type_style_index_0_scoped_fdc837af_lang = "";
8668
- const BasicTitle = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__scopeId", "data-v-fdc837af"]]);
8669
+ const BasicTitle_vue_vue_type_style_index_0_scoped_a48f9d86_lang = "";
8670
+ const BasicTitle = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__scopeId", "data-v-a48f9d86"]]);
8669
8671
  const _sfc_main$_ = defineComponent({
8670
8672
  name: "BasicModalHeader",
8671
8673
  components: { BasicTitle },
@@ -12758,8 +12760,8 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
12758
12760
  };
12759
12761
  }
12760
12762
  });
12761
- const TreeHeader_vue_vue_type_style_index_0_scoped_6d3f2554_lang = "";
12762
- const TreeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-6d3f2554"]]);
12763
+ const TreeHeader_vue_vue_type_style_index_0_scoped_a0f20f9d_lang = "";
12764
+ const TreeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-a0f20f9d"]]);
12763
12765
  process.env.NODE_ENV !== "production" ? Object.freeze({}) : {};
12764
12766
  process.env.NODE_ENV !== "production" ? Object.freeze([]) : [];
12765
12767
  const isString = (val) => typeof val === "string";
@@ -13648,7 +13650,7 @@ const _sfc_main$H = defineComponent({
13648
13650
  return { prefixCls: prefixCls2, getCalcContentWidth };
13649
13651
  }
13650
13652
  });
13651
- const PageFooter_vue_vue_type_style_index_0_scoped_44a47dbd_lang = "";
13653
+ const PageFooter_vue_vue_type_style_index_0_scoped_b4695833_lang = "";
13652
13654
  function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
13653
13655
  return openBlock(), createElementBlock("div", {
13654
13656
  class: normalizeClass(_ctx.prefixCls),
@@ -13667,7 +13669,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
13667
13669
  ], 2)
13668
13670
  ], 6);
13669
13671
  }
13670
- const PageFooter = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$u], ["__scopeId", "data-v-44a47dbd"]]);
13672
+ const PageFooter = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$u], ["__scopeId", "data-v-b4695833"]]);
13671
13673
  const _sfc_main$G = defineComponent({
13672
13674
  name: "PageWrapper",
13673
13675
  components: { PageFooter, PageHeader },
@@ -16194,8 +16196,8 @@ const _sfc_main$y = defineComponent({
16194
16196
  return { isVisibleAdvancedSearch, handleIconClick };
16195
16197
  }
16196
16198
  });
16197
- const AdvancedSearchSetting_vue_vue_type_style_index_0_scoped_f74ee46a_lang = "";
16198
- const _withScopeId$1 = (n) => (pushScopeId("data-v-f74ee46a"), n = n(), popScopeId(), n);
16199
+ const AdvancedSearchSetting_vue_vue_type_style_index_0_scoped_c5892da8_lang = "";
16200
+ const _withScopeId$1 = (n) => (pushScopeId("data-v-c5892da8"), n = n(), popScopeId(), n);
16199
16201
  const _hoisted_1$k = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ createElementVNode("span", null, "高级搜索", -1));
16200
16202
  function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
16201
16203
  const _component_FilterOutlined = resolveComponent("FilterOutlined");
@@ -16213,7 +16215,7 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
16213
16215
  _: 1
16214
16216
  });
16215
16217
  }
16216
- const AdvancedSearchSetting = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$o], ["__scopeId", "data-v-f74ee46a"]]);
16218
+ const AdvancedSearchSetting = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$o], ["__scopeId", "data-v-c5892da8"]]);
16217
16219
  const index$3 = "";
16218
16220
  const searchType = [
16219
16221
  {
@@ -17579,8 +17581,8 @@ const _sfc_main$r = defineComponent({
17579
17581
  };
17580
17582
  }
17581
17583
  });
17582
- const TableGlobalSearch_vue_vue_type_style_index_0_scoped_90331d26_lang = "";
17583
- const _withScopeId = (n) => (pushScopeId("data-v-90331d26"), n = n(), popScopeId(), n);
17584
+ const TableGlobalSearch_vue_vue_type_style_index_0_scoped_5f6e7403_lang = "";
17585
+ const _withScopeId = (n) => (pushScopeId("data-v-5f6e7403"), n = n(), popScopeId(), n);
17584
17586
  const _hoisted_1$f = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", null, "搜索全部", -1));
17585
17587
  const _hoisted_2$4 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", null, "搜索特定字段", -1));
17586
17588
  const _hoisted_3$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", null, null, -1));
@@ -17638,7 +17640,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
17638
17640
  ])
17639
17641
  ], 4);
17640
17642
  }
17641
- const TableGlobalSearch = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$j], ["__scopeId", "data-v-90331d26"]]);
17643
+ const TableGlobalSearch = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$j], ["__scopeId", "data-v-5f6e7403"]]);
17642
17644
  const _sfc_main$q = defineComponent({
17643
17645
  components: {
17644
17646
  TableAdvancedSearch,
@@ -18141,7 +18143,7 @@ const _sfc_main$o = defineComponent({
18141
18143
  setup() {
18142
18144
  }
18143
18145
  });
18144
- const TableDict_vue_vue_type_style_index_0_scoped_7d89a0e9_lang = "";
18146
+ const TableDict_vue_vue_type_style_index_0_scoped_21146269_lang = "";
18145
18147
  function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
18146
18148
  var _a2;
18147
18149
  const _component_Icon = resolveComponent("Icon");
@@ -18170,7 +18172,7 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
18170
18172
  ]), 1032, ["color"])
18171
18173
  ]);
18172
18174
  }
18173
- const TableDict = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$g], ["__scopeId", "data-v-7d89a0e9"]]);
18175
+ const TableDict = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$g], ["__scopeId", "data-v-21146269"]]);
18174
18176
  const index$2 = "";
18175
18177
  var RoleEnum = /* @__PURE__ */ ((RoleEnum2) => {
18176
18178
  RoleEnum2["SUPER"] = "super";
@@ -18446,8 +18448,8 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
18446
18448
  };
18447
18449
  }
18448
18450
  });
18449
- const Modal_vue_vue_type_style_index_0_scoped_4dc415ac_lang = "";
18450
- const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-4dc415ac"]]);
18451
+ const Modal_vue_vue_type_style_index_0_scoped_24f758b3_lang = "";
18452
+ const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-24f758b3"]]);
18451
18453
  const _hoisted_1$b = { class: "api-modal-select" };
18452
18454
  const _sfc_main$l = /* @__PURE__ */ defineComponent({
18453
18455
  __name: "ApiModalSelect",
@@ -18594,8 +18596,8 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
18594
18596
  };
18595
18597
  }
18596
18598
  });
18597
- const ApiModalSelect_vue_vue_type_style_index_0_scoped_fb4fe18d_lang = "";
18598
- const ApiModalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-fb4fe18d"]]);
18599
+ const ApiModalSelect_vue_vue_type_style_index_0_scoped_5427533c_lang = "";
18600
+ const ApiModalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-5427533c"]]);
18599
18601
  const Description$1 = "";
18600
18602
  const basicColProps = 24;
18601
18603
  const basicProps$2 = {
@@ -22571,7 +22573,7 @@ const _sfc_main$f = defineComponent({
22571
22573
  };
22572
22574
  }
22573
22575
  });
22574
- const CropperAvatar_vue_vue_type_style_index_0_scoped_31315934_lang = "";
22576
+ const CropperAvatar_vue_vue_type_style_index_0_scoped_6ac45907_lang = "";
22575
22577
  const _hoisted_1$7 = ["src"];
22576
22578
  function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
22577
22579
  const _component_Icon = resolveComponent("Icon");
@@ -22622,7 +22624,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
22622
22624
  }, null, 8, ["onRegister", "onUploadSuccess", "onBeforeUpload", "uploadApi", "src"])
22623
22625
  ], 6);
22624
22626
  }
22625
- const CropperAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$a], ["__scopeId", "data-v-31315934"]]);
22627
+ const CropperAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$a], ["__scopeId", "data-v-6ac45907"]]);
22626
22628
  const props = {
22627
22629
  startVal: { type: Number, default: 0 },
22628
22630
  endVal: { type: Number, default: 2021 },
@@ -22793,7 +22795,7 @@ const _sfc_main$c = defineComponent({
22793
22795
  }
22794
22796
  }
22795
22797
  });
22796
- const Loading_vue_vue_type_style_index_0_scoped_ee545744_lang = "";
22798
+ const Loading_vue_vue_type_style_index_0_scoped_33b23b82_lang = "";
22797
22799
  function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
22798
22800
  const _component_Spin = resolveComponent("Spin");
22799
22801
  return withDirectives((openBlock(), createElementBlock("section", {
@@ -22809,7 +22811,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
22809
22811
  [vShow, _ctx.loading]
22810
22812
  ]);
22811
22813
  }
22812
- const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$8], ["__scopeId", "data-v-ee545744"]]);
22814
+ const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$8], ["__scopeId", "data-v-33b23b82"]]);
22813
22815
  function createLoading(props2, target, wait = false) {
22814
22816
  let vm = null;
22815
22817
  const data = reactive({
@@ -24509,7 +24511,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
24509
24511
  setup(__props, { expose }) {
24510
24512
  const props2 = __props;
24511
24513
  useCssVars((_ctx) => ({
24512
- "989efb00": props2.labelWidth
24514
+ "7210fae1": props2.labelWidth
24513
24515
  }));
24514
24516
  const form = ref({});
24515
24517
  const formRef = ref();
@@ -24679,8 +24681,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
24679
24681
  };
24680
24682
  }
24681
24683
  });
24682
- const DescriptionsForm_vue_vue_type_style_index_0_scoped_2d2eda80_lang = "";
24683
- const descriptionsForm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2d2eda80"]]);
24684
+ const DescriptionsForm_vue_vue_type_style_index_0_scoped_b1ced086_lang = "";
24685
+ const descriptionsForm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b1ced086"]]);
24684
24686
  const DescriptionsForm = withInstall$5(descriptionsForm);
24685
24687
  const basicResizeWrapperProps = reactive({
24686
24688
  designWidth: {
@@ -24725,8 +24727,8 @@ const __default__ = defineComponent({
24725
24727
  });
24726
24728
  const __injectCSSVars__ = () => {
24727
24729
  useCssVars((_ctx) => ({
24728
- "0aaa544f": _ctx.designWidth,
24729
- "30d13bbe": _ctx.designHeight
24730
+ "1a93f028": _ctx.designWidth,
24731
+ "1e1b1b05": _ctx.designHeight
24730
24732
  }));
24731
24733
  };
24732
24734
  const __setup__ = __default__.setup;
package/es/style.css CHANGED
@@ -24613,14 +24613,14 @@ div.ant-typography-edit-content.ant-typography-rtl {
24613
24613
  .ant-upload-list-rtl.ant-upload-list-picture-card .ant-upload-list-item-file+.ant-upload-list-item-name {
24614
24614
  margin: 8px 0 0;
24615
24615
  padding: 0;
24616
- }.shy-strength-meter-bar[data-v-678d40fd] {
24616
+ }.shy-strength-meter-bar[data-v-c8d77eaa] {
24617
24617
  position: relative;
24618
24618
  margin: 10px auto 6px;
24619
24619
  height: 6px;
24620
24620
  background-color: rgba(0, 0, 0, 0.25);
24621
24621
  border-radius: 6px;
24622
24622
  }
24623
- .shy-strength-meter-bar[data-v-678d40fd]::before, .shy-strength-meter-bar[data-v-678d40fd]::after {
24623
+ .shy-strength-meter-bar[data-v-c8d77eaa]::before, .shy-strength-meter-bar[data-v-c8d77eaa]::after {
24624
24624
  position: absolute;
24625
24625
  z-index: 10;
24626
24626
  display: block;
@@ -24632,13 +24632,13 @@ div.ant-typography-edit-content.ant-typography-rtl {
24632
24632
  border-color: #fff;
24633
24633
  content: '';
24634
24634
  }
24635
- .shy-strength-meter-bar[data-v-678d40fd]::before {
24635
+ .shy-strength-meter-bar[data-v-c8d77eaa]::before {
24636
24636
  left: 20%;
24637
24637
  }
24638
- .shy-strength-meter-bar[data-v-678d40fd]::after {
24638
+ .shy-strength-meter-bar[data-v-c8d77eaa]::after {
24639
24639
  right: 20%;
24640
24640
  }
24641
- .shy-strength-meter-bar--fill[data-v-678d40fd] {
24641
+ .shy-strength-meter-bar--fill[data-v-c8d77eaa] {
24642
24642
  position: absolute;
24643
24643
  width: 0;
24644
24644
  height: inherit;
@@ -24646,32 +24646,32 @@ div.ant-typography-edit-content.ant-typography-rtl {
24646
24646
  border-radius: inherit;
24647
24647
  transition: width 0.5s ease-in-out, background 0.25s;
24648
24648
  }
24649
- .shy-strength-meter-bar--fill[data-score='0'][data-v-678d40fd] {
24649
+ .shy-strength-meter-bar--fill[data-score='0'][data-v-c8d77eaa] {
24650
24650
  width: 20%;
24651
24651
  background-color: #e74242;
24652
24652
  }
24653
- .shy-strength-meter-bar--fill[data-score='1'][data-v-678d40fd] {
24653
+ .shy-strength-meter-bar--fill[data-score='1'][data-v-c8d77eaa] {
24654
24654
  width: 40%;
24655
24655
  background-color: #ED6F6F;
24656
24656
  }
24657
- .shy-strength-meter-bar--fill[data-score='2'][data-v-678d40fd] {
24657
+ .shy-strength-meter-bar--fill[data-score='2'][data-v-c8d77eaa] {
24658
24658
  width: 60%;
24659
24659
  background-color: #EFBD47;
24660
24660
  }
24661
- .shy-strength-meter-bar--fill[data-score='3'][data-v-678d40fd] {
24661
+ .shy-strength-meter-bar--fill[data-score='3'][data-v-c8d77eaa] {
24662
24662
  width: 80%;
24663
24663
  background-color: rgba(85, 209, 135, 0.5);
24664
24664
  }
24665
- .shy-strength-meter-bar--fill[data-score='4'][data-v-678d40fd] {
24665
+ .shy-strength-meter-bar--fill[data-score='4'][data-v-c8d77eaa] {
24666
24666
  width: 100%;
24667
24667
  background-color: #55D187;
24668
- }.shy-svg-icon[data-v-905fa4a6] {
24668
+ }.shy-svg-icon[data-v-fa64fe87] {
24669
24669
  display: inline-block;
24670
24670
  overflow: hidden;
24671
24671
  vertical-align: -0.15em;
24672
24672
  fill: currentcolor;
24673
24673
  }
24674
- .svg-icon-spin[data-v-905fa4a6] {
24674
+ .svg-icon-spin[data-v-fa64fe87] {
24675
24675
  animation: loadingCircle 1s infinite linear;
24676
24676
  }.app-iconify {
24677
24677
  display: inline-block;
@@ -24685,29 +24685,29 @@ span.iconify {
24685
24685
  min-height: 1em;
24686
24686
  background-color: #5551;
24687
24687
  border-radius: 100%;
24688
- }.shy-basic-arrow[data-v-fea26917] {
24688
+ }.shy-basic-arrow[data-v-03d87956] {
24689
24689
  display: inline-block;
24690
24690
  cursor: pointer;
24691
24691
  transform: rotate(0deg);
24692
24692
  transition: all 0.3s ease 0.1s;
24693
24693
  transform-origin: center center;
24694
24694
  }
24695
- .shy-basic-arrow--active[data-v-fea26917] {
24695
+ .shy-basic-arrow--active[data-v-03d87956] {
24696
24696
  transform: rotate(90deg);
24697
24697
  }
24698
- .shy-basic-arrow.inset[data-v-fea26917] {
24698
+ .shy-basic-arrow.inset[data-v-03d87956] {
24699
24699
  line-height: 0px;
24700
24700
  }
24701
- .shy-basic-arrow.up[data-v-fea26917] {
24701
+ .shy-basic-arrow.up[data-v-03d87956] {
24702
24702
  transform: rotate(-90deg);
24703
24703
  }
24704
- .shy-basic-arrow.down[data-v-fea26917] {
24704
+ .shy-basic-arrow.down[data-v-03d87956] {
24705
24705
  transform: rotate(90deg);
24706
24706
  }
24707
- .shy-basic-arrow.up.shy-basic-arrow--active[data-v-fea26917] {
24707
+ .shy-basic-arrow.up.shy-basic-arrow--active[data-v-03d87956] {
24708
24708
  transform: rotate(90deg);
24709
24709
  }
24710
- .shy-basic-arrow.down.shy-basic-arrow--active[data-v-fea26917] {
24710
+ .shy-basic-arrow.down.shy-basic-arrow--active[data-v-03d87956] {
24711
24711
  transform: rotate(-90deg);
24712
24712
  }.shy-basic-help {
24713
24713
  display: inline-block;
@@ -24721,7 +24721,7 @@ span.iconify {
24721
24721
  }
24722
24722
  .shy-basic-help__wrap p {
24723
24723
  margin-bottom: 0;
24724
- }.shy-basic-title[data-v-59bc8f76] {
24724
+ }.shy-basic-title[data-v-c007dbdf] {
24725
24725
  position: relative;
24726
24726
  display: flex;
24727
24727
  padding-left: 7px;
@@ -24732,11 +24732,11 @@ span.iconify {
24732
24732
  cursor: pointer;
24733
24733
  user-select: none;
24734
24734
  }
24735
- .shy-basic-title-normal[data-v-59bc8f76] {
24735
+ .shy-basic-title-normal[data-v-c007dbdf] {
24736
24736
  font-size: 14px;
24737
24737
  font-weight: 500;
24738
24738
  }
24739
- .shy-basic-title-show-span[data-v-59bc8f76]::before {
24739
+ .shy-basic-title-show-span[data-v-c007dbdf]::before {
24740
24740
  position: absolute;
24741
24741
  top: 4px;
24742
24742
  left: 0;
@@ -24746,7 +24746,7 @@ span.iconify {
24746
24746
  background-color: #006eff;
24747
24747
  content: '';
24748
24748
  }
24749
- .shy-basic-title-help[data-v-59bc8f76] {
24749
+ .shy-basic-title-help[data-v-c007dbdf] {
24750
24750
  margin-left: 10px;
24751
24751
  }.shy-collapse-container {
24752
24752
  background-color: #fff;
@@ -24871,32 +24871,27 @@ span.iconify {
24871
24871
  .shy-tinymce-container textarea {
24872
24872
  z-index: -1;
24873
24873
  visibility: hidden;
24874
- }.shy-table-edit-icon-plus[data-v-c8e852c2] {
24874
+ }.shy-table-edit-icon-plus[data-v-85227e84] {
24875
24875
  width: 30px;
24876
24876
  height: 30px;
24877
24877
  font-size: 30px;
24878
- color: #fff;
24879
- border-radius: 50%;
24880
- box-sizing: border-box;
24881
- line-height: 30px;
24882
24878
  cursor: pointer;
24883
- text-align: center;
24884
24879
  }
24885
- .table-children[data-v-c8e852c2] .ant-form-item {
24880
+ .table-children[data-v-85227e84] .ant-form-item {
24886
24881
  margin-bottom: 0 !important;
24887
24882
  }
24888
- .delete-wrapper[data-v-c8e852c2] {
24883
+ .delete-wrapper[data-v-85227e84] {
24889
24884
  height: 100%;
24890
24885
  }
24891
- .delete-wrapper:hover .delete-item[data-v-c8e852c2] {
24886
+ .delete-wrapper:hover .delete-item[data-v-85227e84] {
24892
24887
  display: flex;
24893
24888
  justify-content: center;
24894
24889
  align-items: center;
24895
24890
  }
24896
- .delete-wrapper:hover .delete-index[data-v-c8e852c2] {
24891
+ .delete-wrapper:hover .delete-index[data-v-85227e84] {
24897
24892
  display: none;
24898
24893
  }
24899
- .delete-wrapper .delete-item[data-v-c8e852c2] {
24894
+ .delete-wrapper .delete-item[data-v-85227e84] {
24900
24895
  background-color: red;
24901
24896
  border-radius: 50%;
24902
24897
  width: 30px;
@@ -24905,7 +24900,7 @@ span.iconify {
24905
24900
  display: none;
24906
24901
  cursor: pointer;
24907
24902
  }
24908
- .delete-wrapper .delete-index[data-v-c8e852c2] {
24903
+ .delete-wrapper .delete-index[data-v-85227e84] {
24909
24904
  display: inline-block;
24910
24905
  }@media screen and (max-height: 600px) {
24911
24906
  .ant-modal {
@@ -25044,7 +25039,7 @@ span.iconify {
25044
25039
  }
25045
25040
  .shy-basic-help__wrap p {
25046
25041
  margin-bottom: 0;
25047
- }.shy-basic-title[data-v-fdc837af] {
25042
+ }.shy-basic-title[data-v-a48f9d86] {
25048
25043
  position: relative;
25049
25044
  display: flex;
25050
25045
  padding-left: 7px;
@@ -25055,11 +25050,11 @@ span.iconify {
25055
25050
  cursor: pointer;
25056
25051
  user-select: none;
25057
25052
  }
25058
- .shy-basic-title-normal[data-v-fdc837af] {
25053
+ .shy-basic-title-normal[data-v-a48f9d86] {
25059
25054
  font-size: 14px;
25060
25055
  font-weight: 500;
25061
25056
  }
25062
- .shy-basic-title-show-span[data-v-fdc837af]::before {
25057
+ .shy-basic-title-show-span[data-v-a48f9d86]::before {
25063
25058
  position: absolute;
25064
25059
  top: 4px;
25065
25060
  left: 0;
@@ -25069,7 +25064,7 @@ span.iconify {
25069
25064
  background-color: #006eff;
25070
25065
  content: '';
25071
25066
  }
25072
- .shy-basic-title-help[data-v-fdc837af] {
25067
+ .shy-basic-title-help[data-v-a48f9d86] {
25073
25068
  margin-left: 10px;
25074
25069
  }.shy-basic-table-action {
25075
25070
  display: flex;
@@ -25265,7 +25260,7 @@ span.iconify {
25265
25260
  height: 14px;
25266
25261
  content: '';
25267
25262
  background: #2991ff;
25268
- }.shy-search[data-v-6d3f2554] {
25263
+ }.shy-search[data-v-a0f20f9d] {
25269
25264
  position: relative;
25270
25265
  display: flex;
25271
25266
  align-items: center;
@@ -25369,7 +25364,7 @@ span.iconify {
25369
25364
  .shy-tree__action {
25370
25365
  margin-left: 4px;
25371
25366
  visibility: hidden;
25372
- }.shy-page-footer[data-v-44a47dbd] {
25367
+ }.shy-page-footer[data-v-b4695833] {
25373
25368
  position: fixed;
25374
25369
  right: 0;
25375
25370
  bottom: 0;
@@ -25384,7 +25379,7 @@ span.iconify {
25384
25379
  line-height: 44px;
25385
25380
  border-top: 1px solid #E4E7ED;
25386
25381
  }
25387
- .shy-page-footer__left[data-v-44a47dbd] {
25382
+ .shy-page-footer__left[data-v-b4695833] {
25388
25383
  flex: 1 1;
25389
25384
  }.shy-page-wrapper {
25390
25385
  position: relative;
@@ -25556,7 +25551,7 @@ span.iconify {
25556
25551
  }
25557
25552
  .shy-basic-column-setting__cloumn-list .scrollbar {
25558
25553
  height: 220px;
25559
- }.icon-selected[data-v-f74ee46a] {
25554
+ }.icon-selected[data-v-c5892da8] {
25560
25555
  color: #498bf8;
25561
25556
  }.shy-ui-advanced-search .ant-form-item {
25562
25557
  margin-bottom: 0;
@@ -25626,7 +25621,7 @@ span.iconify {
25626
25621
  }
25627
25622
  .shy-basic-table-header__toolbar > * {
25628
25623
  margin-right: 8px;
25629
- }.shy-basic-table-global-search[data-v-90331d26] {
25624
+ }.shy-basic-table-global-search[data-v-5f6e7403] {
25630
25625
  position: absolute;
25631
25626
  top: 40px;
25632
25627
  right: 131px;
@@ -25638,7 +25633,7 @@ span.iconify {
25638
25633
  border: 1px solid #ebebeb;
25639
25634
  padding: 10px;
25640
25635
  }
25641
- .shy-basic-table-global-search-item-global[data-v-90331d26] {
25636
+ .shy-basic-table-global-search-item-global[data-v-5f6e7403] {
25642
25637
  height: 32px;
25643
25638
  line-height: 32px;
25644
25639
  font-size: 14px;
@@ -25649,7 +25644,7 @@ span.iconify {
25649
25644
  align-items: center;
25650
25645
  justify-content: space-between;
25651
25646
  }
25652
- .shy-basic-table-global-search-item-special[data-v-90331d26] {
25647
+ .shy-basic-table-global-search-item-special[data-v-5f6e7403] {
25653
25648
  height: 32px;
25654
25649
  line-height: 32px;
25655
25650
  font-size: 14px;
@@ -25660,10 +25655,10 @@ span.iconify {
25660
25655
  align-items: center;
25661
25656
  justify-content: space-between;
25662
25657
  }
25663
- .shy-basic-table-global-search-checkbox-wrapper[data-v-90331d26] {
25658
+ .shy-basic-table-global-search-checkbox-wrapper[data-v-5f6e7403] {
25664
25659
  padding: 0 8px;
25665
25660
  }
25666
- .shy-basic-table-global-search .selected-bg[data-v-90331d26] {
25661
+ .shy-basic-table-global-search .selected-bg[data-v-5f6e7403] {
25667
25662
  background-color: #ebf1ff;
25668
25663
  }.shy-basic-table-img .ant-image {
25669
25664
  margin-right: 4px;
@@ -25674,7 +25669,7 @@ span.iconify {
25674
25669
  }
25675
25670
  .shy-basic-table-img .img-div {
25676
25671
  display: inline-grid;
25677
- }.app-iconify[data-v-7d89a0e9] {
25672
+ }.app-iconify[data-v-21146269] {
25678
25673
  vertical-align: middle;
25679
25674
  }[data-theme='dark'] .ant-table-tbody > tr:hover.ant-table-row-selected > td, [data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected td {
25680
25675
  background-color: #262626;
@@ -25819,19 +25814,19 @@ span.iconify {
25819
25814
  }
25820
25815
  .ant-table-expanded-row-fixed {
25821
25816
  width: 100% !important;
25822
- }.wrapper[data-v-4dc415ac] {
25817
+ }.wrapper[data-v-24f758b3] {
25823
25818
  display: flex;
25824
25819
  }
25825
- .tree[data-v-4dc415ac] {
25820
+ .tree[data-v-24f758b3] {
25826
25821
  flex: none;
25827
25822
  }
25828
- .table-wrapper[data-v-4dc415ac] {
25823
+ .table-wrapper[data-v-24f758b3] {
25829
25824
  flex: 1 1 0%;
25830
25825
  overflow: hidden;
25831
- }[data-v-fb4fe18d] .ant-input-group-addon {
25826
+ }[data-v-5427533c] .ant-input-group-addon {
25832
25827
  padding: 0;
25833
25828
  }
25834
- .btn-wrapper[data-v-fb4fe18d] {
25829
+ .btn-wrapper[data-v-5427533c] {
25835
25830
  padding: 0 5px;
25836
25831
  display: flex;
25837
25832
  align-items: center;
@@ -26235,21 +26230,21 @@ span.iconify {
26235
26230
  padding-top: 8px;
26236
26231
  margin-top: 8px;
26237
26232
  border-top: 1px solid #E4E7ED;
26238
- }.shy-cropper-avatar[data-v-31315934] {
26233
+ }.shy-cropper-avatar[data-v-6ac45907] {
26239
26234
  display: inline-block;
26240
26235
  text-align: center;
26241
26236
  }
26242
- .shy-cropper-avatar-image-wrapper[data-v-31315934] {
26237
+ .shy-cropper-avatar-image-wrapper[data-v-6ac45907] {
26243
26238
  overflow: hidden;
26244
26239
  cursor: pointer;
26245
26240
  background: #fff;
26246
26241
  border: 1px solid #E4E7ED;
26247
26242
  border-radius: 50%;
26248
26243
  }
26249
- .shy-cropper-avatar-image-wrapper img[data-v-31315934] {
26244
+ .shy-cropper-avatar-image-wrapper img[data-v-6ac45907] {
26250
26245
  width: 100%;
26251
26246
  }
26252
- .shy-cropper-avatar-image-mask[data-v-31315934] {
26247
+ .shy-cropper-avatar-image-mask[data-v-6ac45907] {
26253
26248
  position: absolute;
26254
26249
  width: inherit;
26255
26250
  height: inherit;
@@ -26260,15 +26255,15 @@ span.iconify {
26260
26255
  transition: opacity 0.4s;
26261
26256
  cursor: pointer;
26262
26257
  }
26263
- .shy-cropper-avatar-image-mask[data-v-31315934] svg {
26258
+ .shy-cropper-avatar-image-mask[data-v-6ac45907] svg {
26264
26259
  margin: auto;
26265
26260
  }
26266
- .shy-cropper-avatar-image-mask[data-v-31315934]:hover {
26261
+ .shy-cropper-avatar-image-mask[data-v-6ac45907]:hover {
26267
26262
  opacity: 40;
26268
26263
  }
26269
- .shy-cropper-avatar-upload-btn[data-v-31315934] {
26264
+ .shy-cropper-avatar-upload-btn[data-v-6ac45907] {
26270
26265
  margin: 10px auto;
26271
- }.full-loading[data-v-ee545744] {
26266
+ }.full-loading[data-v-33b23b82] {
26272
26267
  position: fixed;
26273
26268
  top: 0;
26274
26269
  left: 0;
@@ -26280,16 +26275,16 @@ span.iconify {
26280
26275
  align-items: center;
26281
26276
  background-color: rgba(240, 242, 245, 0.4);
26282
26277
  }
26283
- .full-loading.absolute[data-v-ee545744] {
26278
+ .full-loading.absolute[data-v-33b23b82] {
26284
26279
  position: absolute;
26285
26280
  top: 0;
26286
26281
  left: 0;
26287
26282
  z-index: 300;
26288
26283
  }
26289
- html[data-theme='dark'] .full-loading[data-v-ee545744]:not(.light) {
26284
+ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
26290
26285
  background-color: rgba(0, 0, 0, 0.45);
26291
26286
  }
26292
- .full-loading.dark[data-v-ee545744] {
26287
+ .full-loading.dark[data-v-33b23b82] {
26293
26288
  background-color: rgba(0, 0, 0, 0.45);
26294
26289
  }.shy-basic-table-plus-wrapper {
26295
26290
  display: flex;
@@ -31804,19 +31799,19 @@ html[data-theme='dark'] .full-loading[data-v-ee545744]:not(.light) {
31804
31799
  align-items: center;
31805
31800
  gap: 16px;
31806
31801
  padding: 0 16px;
31807
- }[data-v-2d2eda80] .ant-descriptions-item-content {
31802
+ }[data-v-b1ced086] .ant-descriptions-item-content {
31808
31803
  padding: 0 !important;
31809
31804
  flex: 1;
31810
31805
  height: 100%;
31811
31806
  }
31812
- [data-v-2d2eda80] .ant-form-item {
31807
+ [data-v-b1ced086] .ant-form-item {
31813
31808
  margin: 0;
31814
31809
  }
31815
- [data-v-2d2eda80] .ant-form-item-explain {
31810
+ [data-v-b1ced086] .ant-form-item-explain {
31816
31811
  display: none;
31817
31812
  }
31818
- [data-v-2d2eda80] .ant-descriptions-item-label {
31819
- --label-width: var(--989efb00);
31813
+ [data-v-b1ced086] .ant-descriptions-item-label {
31814
+ --label-width: var(--7210fae1);
31820
31815
  justify-content: right;
31821
31816
  align-items: center;
31822
31817
  width: var(--label-width) !important;
@@ -31825,59 +31820,59 @@ html[data-theme='dark'] .full-loading[data-v-ee545744]:not(.light) {
31825
31820
  text-overflow: ellipsis;
31826
31821
  color: #b1b1b1;
31827
31822
  }
31828
- [data-v-2d2eda80] .ant-descriptions-item-label span {
31823
+ [data-v-b1ced086] .ant-descriptions-item-label span {
31829
31824
  white-space: nowrap;
31830
31825
  overflow: hidden;
31831
31826
  text-overflow: ellipsis;
31832
31827
  }
31833
- [data-v-2d2eda80] .ant-descriptions-view tbody {
31828
+ [data-v-b1ced086] .ant-descriptions-view tbody {
31834
31829
  display: block;
31835
31830
  }
31836
- [data-v-2d2eda80] .ant-descriptions-view .ant-descriptions-row {
31831
+ [data-v-b1ced086] .ant-descriptions-view .ant-descriptions-row {
31837
31832
  display: flex;
31838
31833
  width: 100%;
31839
31834
  align-items: center;
31840
31835
  gap: 0 10px;
31841
31836
  }
31842
- [data-v-2d2eda80] .ant-descriptions-item-label.description-active::before {
31837
+ [data-v-b1ced086] .ant-descriptions-item-label.description-active::before {
31843
31838
  content: '*';
31844
31839
  color: red;
31845
31840
  }
31846
- [data-v-2d2eda80] .ant-descriptions-item.description-active .ant-descriptions-item-label::before {
31841
+ [data-v-b1ced086] .ant-descriptions-item.description-active .ant-descriptions-item-label::before {
31847
31842
  content: '*';
31848
31843
  color: red;
31849
31844
  }
31850
- [data-v-2d2eda80] .ant-descriptions-item-label::after {
31845
+ [data-v-b1ced086] .ant-descriptions-item-label::after {
31851
31846
  content: '';
31852
31847
  }
31853
- [data-v-2d2eda80] .ant-descriptions-item.description-placeholder .ant-descriptions-item-label::after {
31848
+ [data-v-b1ced086] .ant-descriptions-item.description-placeholder .ant-descriptions-item-label::after {
31854
31849
  content: '';
31855
31850
  }
31856
- [data-v-2d2eda80] .ant-form-item-has-error .ant-select-selection-placeholder {
31851
+ [data-v-b1ced086] .ant-form-item-has-error .ant-select-selection-placeholder {
31857
31852
  color: #ff4d4f !important;
31858
31853
  }
31859
- [data-v-2d2eda80] .ant-descriptions.ant-descriptions-bordered .ant-descriptions-view .ant-descriptions-row {
31854
+ [data-v-b1ced086] .ant-descriptions.ant-descriptions-bordered .ant-descriptions-view .ant-descriptions-row {
31860
31855
  gap: 0;
31861
31856
  }
31862
- [data-v-2d2eda80] .ant-descriptions.ant-descriptions-bordered .ant-form-item div {
31857
+ [data-v-b1ced086] .ant-descriptions.ant-descriptions-bordered .ant-form-item div {
31863
31858
  border: unset !important;
31864
31859
  }
31865
- [data-v-2d2eda80] .ant-descriptions-item-label.description-placeholder {
31860
+ [data-v-b1ced086] .ant-descriptions-item-label.description-placeholder {
31866
31861
  background-color: unset;
31867
31862
  border-right: unset;
31868
31863
  }
31869
- [data-v-2d2eda80] .ant-descriptions-item {
31864
+ [data-v-b1ced086] .ant-descriptions-item {
31870
31865
  flex: 1;
31871
31866
  }
31872
- [data-v-2d2eda80] .ant-row.ant-form-item {
31867
+ [data-v-b1ced086] .ant-row.ant-form-item {
31873
31868
  width: 100%;
31874
31869
  height: 100%;
31875
31870
  }
31876
- .descriptions-item-content[data-v-2d2eda80] {
31871
+ .descriptions-item-content[data-v-b1ced086] {
31877
31872
  padding: 0 8px;
31878
31873
  }.shy-basic-resize-wrapper {
31879
- --design-width: var(--0aaa544f);
31880
- --design-height: var(--30d13bbe);
31874
+ --design-width: var(--1a93f028);
31875
+ --design-height: var(--1e1b1b05);
31881
31876
  }
31882
31877
  .shy-basic-resize-wrapper-view {
31883
31878
  position: absolute;
package/lib/index.js CHANGED
@@ -4796,7 +4796,7 @@ const _sfc_main$1l = vue.defineComponent({
4796
4796
  };
4797
4797
  }
4798
4798
  });
4799
- const StrengthMeter_vue_vue_type_style_index_0_scoped_678d40fd_lang = "";
4799
+ const StrengthMeter_vue_vue_type_style_index_0_scoped_c8d77eaa_lang = "";
4800
4800
  const _hoisted_1$z = ["data-score"];
4801
4801
  function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
4802
4802
  const _component_InputPassword = vue.resolveComponent("InputPassword");
@@ -4828,7 +4828,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
4828
4828
  ], 2)
4829
4829
  ], 2);
4830
4830
  }
4831
- const StrengthMeter = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["render", _sfc_render$M], ["__scopeId", "data-v-678d40fd"]]);
4831
+ const StrengthMeter = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["render", _sfc_render$M], ["__scopeId", "data-v-c8d77eaa"]]);
4832
4832
  const _sfc_main$1k = vue.defineComponent({
4833
4833
  name: "SvgIcon",
4834
4834
  props: {
@@ -4864,7 +4864,7 @@ const _sfc_main$1k = vue.defineComponent({
4864
4864
  return { symbolId, prefixCls: prefixCls2, getStyle };
4865
4865
  }
4866
4866
  });
4867
- const SvgIcon_vue_vue_type_style_index_0_scoped_905fa4a6_lang = "";
4867
+ const SvgIcon_vue_vue_type_style_index_0_scoped_fa64fe87_lang = "";
4868
4868
  const _hoisted_1$y = ["xlink:href"];
4869
4869
  function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
4870
4870
  return vue.openBlock(), vue.createElementBlock("svg", {
@@ -4875,7 +4875,7 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
4875
4875
  vue.createElementVNode("use", { "xlink:href": _ctx.symbolId }, null, 8, _hoisted_1$y)
4876
4876
  ], 6);
4877
4877
  }
4878
- const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["render", _sfc_render$L], ["__scopeId", "data-v-905fa4a6"]]);
4878
+ const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["render", _sfc_render$L], ["__scopeId", "data-v-fa64fe87"]]);
4879
4879
  const SVG_END_WITH_FLAG = "|svg";
4880
4880
  const _sfc_main$1j = vue.defineComponent({
4881
4881
  name: "Icon",
@@ -5186,8 +5186,8 @@ const _sfc_main$1h = /* @__PURE__ */ vue.defineComponent({
5186
5186
  };
5187
5187
  }
5188
5188
  });
5189
- const BasicArrow_vue_vue_type_style_index_0_scoped_fea26917_lang = "";
5190
- const BasicArrow = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__scopeId", "data-v-fea26917"]]);
5189
+ const BasicArrow_vue_vue_type_style_index_0_scoped_03d87956_lang = "";
5190
+ const BasicArrow = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__scopeId", "data-v-03d87956"]]);
5191
5191
  const props$c = {
5192
5192
  /**
5193
5193
  * Help text max-width
@@ -5329,8 +5329,8 @@ const _sfc_main$1f = /* @__PURE__ */ vue.defineComponent({
5329
5329
  };
5330
5330
  }
5331
5331
  });
5332
- const BasicTitle_vue_vue_type_style_index_0_scoped_59bc8f76_lang = "";
5333
- const BasicTitle$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-59bc8f76"]]);
5332
+ const BasicTitle_vue_vue_type_style_index_0_scoped_c007dbdf_lang = "";
5333
+ const BasicTitle$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-c007dbdf"]]);
5334
5334
  const props$b = {
5335
5335
  prefixCls: { type: String },
5336
5336
  helpMessage: {
@@ -7631,7 +7631,7 @@ const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
7631
7631
  default: () => true
7632
7632
  }
7633
7633
  },
7634
- emits: ["update:value", "change"],
7634
+ emits: ["update:value", "change", "add", "remove"],
7635
7635
  setup(__props, { expose, emit }) {
7636
7636
  const props2 = __props;
7637
7637
  const listFormRefs = vue.ref([]);
@@ -7644,18 +7644,20 @@ const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
7644
7644
  customRender: ({ index: index2 }) => {
7645
7645
  return `${index2 + 1}`;
7646
7646
  },
7647
- minWidth: 50,
7647
+ width: 50,
7648
7648
  align: "center"
7649
7649
  };
7650
7650
  return [indexColumn, ...props2.columns];
7651
7651
  });
7652
7652
  const plusClickEvent = () => {
7653
7653
  state.value = [{}, ...state.value];
7654
+ emit("add", state.value);
7654
7655
  };
7655
7656
  const rowClickEvent = (index2) => {
7656
7657
  state.value = vue.unref(state).filter((item, i) => {
7657
7658
  return index2 !== i;
7658
7659
  });
7660
+ emit("remove", state.value, index2);
7659
7661
  };
7660
7662
  const loadKv = () => {
7661
7663
  const columns = props2.columns;
@@ -7768,8 +7770,8 @@ const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
7768
7770
  };
7769
7771
  }
7770
7772
  });
7771
- const Table_vue_vue_type_style_index_0_scoped_c8e852c2_lang = "";
7772
- const Table = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-c8e852c2"]]);
7773
+ const Table_vue_vue_type_style_index_0_scoped_85227e84_lang = "";
7774
+ const Table = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-85227e84"]]);
7773
7775
  const modal = "";
7774
7776
  use.useI18n();
7775
7777
  const modalProps = {
@@ -8666,8 +8668,8 @@ const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
8666
8668
  };
8667
8669
  }
8668
8670
  });
8669
- const BasicTitle_vue_vue_type_style_index_0_scoped_fdc837af_lang = "";
8670
- const BasicTitle = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__scopeId", "data-v-fdc837af"]]);
8671
+ const BasicTitle_vue_vue_type_style_index_0_scoped_a48f9d86_lang = "";
8672
+ const BasicTitle = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__scopeId", "data-v-a48f9d86"]]);
8671
8673
  const _sfc_main$_ = vue.defineComponent({
8672
8674
  name: "BasicModalHeader",
8673
8675
  components: { BasicTitle },
@@ -12760,8 +12762,8 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
12760
12762
  };
12761
12763
  }
12762
12764
  });
12763
- const TreeHeader_vue_vue_type_style_index_0_scoped_6d3f2554_lang = "";
12764
- const TreeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-6d3f2554"]]);
12765
+ const TreeHeader_vue_vue_type_style_index_0_scoped_a0f20f9d_lang = "";
12766
+ const TreeHeader = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-a0f20f9d"]]);
12765
12767
  process.env.NODE_ENV !== "production" ? Object.freeze({}) : {};
12766
12768
  process.env.NODE_ENV !== "production" ? Object.freeze([]) : [];
12767
12769
  const isString = (val) => typeof val === "string";
@@ -13650,7 +13652,7 @@ const _sfc_main$H = vue.defineComponent({
13650
13652
  return { prefixCls: prefixCls2, getCalcContentWidth };
13651
13653
  }
13652
13654
  });
13653
- const PageFooter_vue_vue_type_style_index_0_scoped_44a47dbd_lang = "";
13655
+ const PageFooter_vue_vue_type_style_index_0_scoped_b4695833_lang = "";
13654
13656
  function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
13655
13657
  return vue.openBlock(), vue.createElementBlock("div", {
13656
13658
  class: vue.normalizeClass(_ctx.prefixCls),
@@ -13669,7 +13671,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
13669
13671
  ], 2)
13670
13672
  ], 6);
13671
13673
  }
13672
- const PageFooter = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$u], ["__scopeId", "data-v-44a47dbd"]]);
13674
+ const PageFooter = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$u], ["__scopeId", "data-v-b4695833"]]);
13673
13675
  const _sfc_main$G = vue.defineComponent({
13674
13676
  name: "PageWrapper",
13675
13677
  components: { PageFooter, PageHeader: antDesignVue.PageHeader },
@@ -16196,8 +16198,8 @@ const _sfc_main$y = vue.defineComponent({
16196
16198
  return { isVisibleAdvancedSearch, handleIconClick };
16197
16199
  }
16198
16200
  });
16199
- const AdvancedSearchSetting_vue_vue_type_style_index_0_scoped_f74ee46a_lang = "";
16200
- const _withScopeId$1 = (n) => (vue.pushScopeId("data-v-f74ee46a"), n = n(), vue.popScopeId(), n);
16201
+ const AdvancedSearchSetting_vue_vue_type_style_index_0_scoped_c5892da8_lang = "";
16202
+ const _withScopeId$1 = (n) => (vue.pushScopeId("data-v-c5892da8"), n = n(), vue.popScopeId(), n);
16201
16203
  const _hoisted_1$k = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.createElementVNode("span", null, "高级搜索", -1));
16202
16204
  function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
16203
16205
  const _component_FilterOutlined = vue.resolveComponent("FilterOutlined");
@@ -16215,7 +16217,7 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
16215
16217
  _: 1
16216
16218
  });
16217
16219
  }
16218
- const AdvancedSearchSetting = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$o], ["__scopeId", "data-v-f74ee46a"]]);
16220
+ const AdvancedSearchSetting = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$o], ["__scopeId", "data-v-c5892da8"]]);
16219
16221
  const index$3 = "";
16220
16222
  const searchType = [
16221
16223
  {
@@ -17581,8 +17583,8 @@ const _sfc_main$r = vue.defineComponent({
17581
17583
  };
17582
17584
  }
17583
17585
  });
17584
- const TableGlobalSearch_vue_vue_type_style_index_0_scoped_90331d26_lang = "";
17585
- const _withScopeId = (n) => (vue.pushScopeId("data-v-90331d26"), n = n(), vue.popScopeId(), n);
17586
+ const TableGlobalSearch_vue_vue_type_style_index_0_scoped_5f6e7403_lang = "";
17587
+ const _withScopeId = (n) => (vue.pushScopeId("data-v-5f6e7403"), n = n(), vue.popScopeId(), n);
17586
17588
  const _hoisted_1$f = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("div", null, "搜索全部", -1));
17587
17589
  const _hoisted_2$4 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("div", null, "搜索特定字段", -1));
17588
17590
  const _hoisted_3$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("div", null, null, -1));
@@ -17640,7 +17642,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
17640
17642
  ])
17641
17643
  ], 4);
17642
17644
  }
17643
- const TableGlobalSearch = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$j], ["__scopeId", "data-v-90331d26"]]);
17645
+ const TableGlobalSearch = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$j], ["__scopeId", "data-v-5f6e7403"]]);
17644
17646
  const _sfc_main$q = vue.defineComponent({
17645
17647
  components: {
17646
17648
  TableAdvancedSearch,
@@ -18143,7 +18145,7 @@ const _sfc_main$o = vue.defineComponent({
18143
18145
  setup() {
18144
18146
  }
18145
18147
  });
18146
- const TableDict_vue_vue_type_style_index_0_scoped_7d89a0e9_lang = "";
18148
+ const TableDict_vue_vue_type_style_index_0_scoped_21146269_lang = "";
18147
18149
  function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
18148
18150
  var _a2;
18149
18151
  const _component_Icon = vue.resolveComponent("Icon");
@@ -18172,7 +18174,7 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
18172
18174
  ]), 1032, ["color"])
18173
18175
  ]);
18174
18176
  }
18175
- const TableDict = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$g], ["__scopeId", "data-v-7d89a0e9"]]);
18177
+ const TableDict = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$g], ["__scopeId", "data-v-21146269"]]);
18176
18178
  const index$2 = "";
18177
18179
  var RoleEnum = /* @__PURE__ */ ((RoleEnum2) => {
18178
18180
  RoleEnum2["SUPER"] = "super";
@@ -18448,8 +18450,8 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
18448
18450
  };
18449
18451
  }
18450
18452
  });
18451
- const Modal_vue_vue_type_style_index_0_scoped_4dc415ac_lang = "";
18452
- const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-4dc415ac"]]);
18453
+ const Modal_vue_vue_type_style_index_0_scoped_24f758b3_lang = "";
18454
+ const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-24f758b3"]]);
18453
18455
  const _hoisted_1$b = { class: "api-modal-select" };
18454
18456
  const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
18455
18457
  __name: "ApiModalSelect",
@@ -18596,8 +18598,8 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
18596
18598
  };
18597
18599
  }
18598
18600
  });
18599
- const ApiModalSelect_vue_vue_type_style_index_0_scoped_fb4fe18d_lang = "";
18600
- const ApiModalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-fb4fe18d"]]);
18601
+ const ApiModalSelect_vue_vue_type_style_index_0_scoped_5427533c_lang = "";
18602
+ const ApiModalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-5427533c"]]);
18601
18603
  const Description$1 = "";
18602
18604
  const basicColProps = 24;
18603
18605
  const basicProps$2 = {
@@ -22573,7 +22575,7 @@ const _sfc_main$f = vue.defineComponent({
22573
22575
  };
22574
22576
  }
22575
22577
  });
22576
- const CropperAvatar_vue_vue_type_style_index_0_scoped_31315934_lang = "";
22578
+ const CropperAvatar_vue_vue_type_style_index_0_scoped_6ac45907_lang = "";
22577
22579
  const _hoisted_1$7 = ["src"];
22578
22580
  function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
22579
22581
  const _component_Icon = vue.resolveComponent("Icon");
@@ -22624,7 +22626,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
22624
22626
  }, null, 8, ["onRegister", "onUploadSuccess", "onBeforeUpload", "uploadApi", "src"])
22625
22627
  ], 6);
22626
22628
  }
22627
- const CropperAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$a], ["__scopeId", "data-v-31315934"]]);
22629
+ const CropperAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$a], ["__scopeId", "data-v-6ac45907"]]);
22628
22630
  const props = {
22629
22631
  startVal: { type: Number, default: 0 },
22630
22632
  endVal: { type: Number, default: 2021 },
@@ -22795,7 +22797,7 @@ const _sfc_main$c = vue.defineComponent({
22795
22797
  }
22796
22798
  }
22797
22799
  });
22798
- const Loading_vue_vue_type_style_index_0_scoped_ee545744_lang = "";
22800
+ const Loading_vue_vue_type_style_index_0_scoped_33b23b82_lang = "";
22799
22801
  function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
22800
22802
  const _component_Spin = vue.resolveComponent("Spin");
22801
22803
  return vue.withDirectives((vue.openBlock(), vue.createElementBlock("section", {
@@ -22811,7 +22813,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
22811
22813
  [vue.vShow, _ctx.loading]
22812
22814
  ]);
22813
22815
  }
22814
- const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$8], ["__scopeId", "data-v-ee545744"]]);
22816
+ const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$8], ["__scopeId", "data-v-33b23b82"]]);
22815
22817
  function createLoading(props2, target, wait = false) {
22816
22818
  let vm = null;
22817
22819
  const data = vue.reactive({
@@ -24511,7 +24513,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
24511
24513
  setup(__props, { expose }) {
24512
24514
  const props2 = __props;
24513
24515
  vue.useCssVars((_ctx) => ({
24514
- "989efb00": props2.labelWidth
24516
+ "7210fae1": props2.labelWidth
24515
24517
  }));
24516
24518
  const form = vue.ref({});
24517
24519
  const formRef = vue.ref();
@@ -24681,8 +24683,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
24681
24683
  };
24682
24684
  }
24683
24685
  });
24684
- const DescriptionsForm_vue_vue_type_style_index_0_scoped_2d2eda80_lang = "";
24685
- const descriptionsForm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2d2eda80"]]);
24686
+ const DescriptionsForm_vue_vue_type_style_index_0_scoped_b1ced086_lang = "";
24687
+ const descriptionsForm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b1ced086"]]);
24686
24688
  const DescriptionsForm = utils.withInstall(descriptionsForm);
24687
24689
  const basicResizeWrapperProps = vue.reactive({
24688
24690
  designWidth: {
@@ -24727,8 +24729,8 @@ const __default__ = vue.defineComponent({
24727
24729
  });
24728
24730
  const __injectCSSVars__ = () => {
24729
24731
  vue.useCssVars((_ctx) => ({
24730
- "0aaa544f": _ctx.designWidth,
24731
- "30d13bbe": _ctx.designHeight
24732
+ "1a93f028": _ctx.designWidth,
24733
+ "1e1b1b05": _ctx.designHeight
24732
24734
  }));
24733
24735
  };
24734
24736
  const __setup__ = __default__.setup;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "3h1-ui",
3
- "version": "2.14.71",
3
+ "version": "2.14.72",
4
4
  "description": "",
5
5
  "module": "es/index.js",
6
6
  "main": "lib/index.js",
@@ -29,9 +29,9 @@
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/utils": "1.1.1",
32
33
  "@shy-plugins/tinymce": "^1.0.6",
33
- "@shy-plugins/use": "1.0.9",
34
- "@shy-plugins/utils": "1.1.1"
34
+ "@shy-plugins/use": "1.0.9"
35
35
  },
36
36
  "types": "es/ui/index.d.ts",
37
37
  "devDependencies": {