@wfrog/vc-ui 1.13.8 → 1.13.10

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.
@@ -8,6 +8,7 @@ export interface IDialogProps {
8
8
  maxHeight?: string | number;
9
9
  fullscreenHeight?: string | number;
10
10
  fullscreen?: boolean;
11
+ smallFullscreen?: boolean;
11
12
  boxPadding?: boolean;
12
13
  padding?: string;
13
14
  viewMargin?: string;
@@ -3,7 +3,7 @@ import { ElDialog, ElButton } from 'element-plus/es';
3
3
  import 'element-plus/es/components/base/style/css';
4
4
  import 'element-plus/es/components/dialog/style/css';
5
5
  import 'element-plus/es/components/button/style/css';
6
- import { defineComponent, useCssModule, ref, computed, watch, createBlock, createCommentVNode, unref, openBlock, normalizeStyle, normalizeClass, isRef, createSlots, withCtx, createVNode, renderSlot, createElementVNode, createTextVNode, toDisplayString, withDirectives, vShow } from 'vue';
6
+ import { defineComponent, useCssModule, useSlots, ref, computed, watch, createBlock, createCommentVNode, unref, openBlock, normalizeStyle, normalizeClass, isRef, createSlots, withCtx, createVNode, renderSlot, createElementVNode, createTextVNode, toDisplayString, withDirectives, vShow } from 'vue';
7
7
  import { CopyDocument, FullScreen, Close } from '@element-plus/icons-vue';
8
8
  import { C as Component$2 } from '../button/button.mjs';
9
9
  import { C as Component$1 } from '../scrollbar/scrollbar.mjs';
@@ -20,9 +20,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
20
20
  showDefaultFooter: { type: Boolean, default: false },
21
21
  lazy: { type: Boolean, default: true },
22
22
  height: {},
23
- maxHeight: { default: "80vh" },
23
+ maxHeight: { default: "calc(100vh - 98px)" },
24
24
  fullscreenHeight: {},
25
25
  fullscreen: { type: Boolean, default: false },
26
+ smallFullscreen: { type: Boolean },
26
27
  boxPadding: { type: Boolean, default: true },
27
28
  padding: { default: "0px" },
28
29
  viewMargin: { default: "12px" },
@@ -33,16 +34,23 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
33
34
  const props = __props;
34
35
  const emits = __emit;
35
36
  const $style = useCssModule();
37
+ const $slots = useSlots();
36
38
  const dialogVisible = useVModel(props, "modelValue", emits);
37
39
  const visible = ref(false);
38
40
  const isFullscreen = ref(false);
39
41
  const toggleFullscreen = useToggle(isFullscreen);
40
42
  const Icon = computed(() => isFullscreen.value ? CopyDocument : FullScreen);
43
+ const extraHeight = computed(() => {
44
+ if (props.showDefaultFooter || $slots["footer-action"] || $slots["footer-extra"]) {
45
+ return "98px";
46
+ }
47
+ return "49px";
48
+ });
41
49
  const myFullscreenHeight = computed(() => {
42
50
  if (props.fullscreenHeight) {
43
51
  return props.fullscreenHeight;
44
52
  }
45
- return props.showDefaultFooter ? "calc(100vh - 98px)" : "calc(100vh - 49px)";
53
+ return `calc(100vh - ${extraHeight.value})`;
46
54
  });
47
55
  const myMaxHeight = computed(() => {
48
56
  if (isFullscreen.value || !props.maxHeight) {
@@ -50,6 +58,21 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
50
58
  }
51
59
  return props.maxHeight;
52
60
  });
61
+ const myWidth = computed(() => {
62
+ if (props.smallFullscreen) {
63
+ return "calc(100vw - 100px)";
64
+ }
65
+ return props.width;
66
+ });
67
+ const myHeight = computed(() => {
68
+ if (props.smallFullscreen) {
69
+ return `calc(100vh - 100px - ${extraHeight.value})`;
70
+ }
71
+ if (typeof props.height === "string") {
72
+ return `calc(${props.height} - ${extraHeight.value})`;
73
+ }
74
+ return props.height;
75
+ });
53
76
  watch(dialogVisible, (val) => {
54
77
  if (val) {
55
78
  isFullscreen.value = props.fullscreen;
@@ -69,7 +92,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
69
92
  "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => isRef(dialogVisible) ? dialogVisible.value = $event : null),
70
93
  "append-to-body": "",
71
94
  "align-center": "",
72
- width: __props.width,
95
+ width: unref(myWidth),
73
96
  "show-close": false,
74
97
  fullscreen: unref(isFullscreen),
75
98
  "close-on-click-modal": false,
@@ -116,7 +139,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
116
139
  default: withCtx(() => [
117
140
  createVNode(Component$1, {
118
141
  "max-height": unref(myMaxHeight),
119
- height: __props.height,
142
+ height: unref(myHeight),
120
143
  always: "",
121
144
  "view-margin": __props.viewMargin,
122
145
  "fill-height": false
@@ -129,7 +152,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
129
152
  ]),
130
153
  _: 2
131
154
  }, [
132
- __props.showDefaultFooter || _ctx.$slots["footer-action"] || _ctx.$slots["footer-extra"] ? {
155
+ __props.showDefaultFooter || unref($slots)["footer-action"] || unref($slots)["footer-extra"] ? {
133
156
  name: "footer",
134
157
  fn: withCtx(() => [
135
158
  createElementVNode("div", null, [
@@ -133,7 +133,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
133
133
  model: __props.form.fields,
134
134
  rules: __props.form.rules,
135
135
  disabled: unref(isDisabled),
136
- "require-asterisk-position": "right",
137
136
  "label-position": __props.labelPosition,
138
137
  class: _ctx.$style.form
139
138
  }), {
@@ -155,15 +154,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
155
154
  }
156
155
  });
157
156
 
158
- /* unplugin-vue-components disabled */const header = "_header_msrkk_8";
159
- const icon = "_icon_msrkk_25";
160
- const actions = "_actions_msrkk_31";
161
- const form = "_form_msrkk_40";
162
- const scrollbar = "_scrollbar_msrkk_51";
157
+ /* unplugin-vue-components disabled */const header = "_header_ld7ou_8";
158
+ const icon = "_icon_ld7ou_25";
159
+ const actions = "_actions_ld7ou_31";
160
+ const form = "_form_ld7ou_40";
161
+ const scrollbar = "_scrollbar_ld7ou_51";
163
162
  const style0 = {
164
- "explorer-form": "_explorer-form_msrkk_1",
163
+ "explorer-form": "_explorer-form_ld7ou_1",
165
164
  header: header,
166
- "header-container": "_header-container_msrkk_21",
165
+ "header-container": "_header-container_ld7ou_21",
167
166
  icon: icon,
168
167
  actions: actions,
169
168
  form: form,
@@ -1,48 +1,48 @@
1
1
  /* source: src/components/explorer-form/explorer-form.vue */
2
- ._explorer-form_msrkk_1 {
2
+ ._explorer-form_ld7ou_1 {
3
3
  display: flex;
4
- flex-direction: column;
5
4
  flex-grow: 1;
5
+ flex-direction: column;
6
6
  height: 100px;
7
7
  }
8
- ._header_msrkk_8 {
8
+ ._header_ld7ou_8 {
9
9
  display: flex;
10
- align-items: center;
10
+ row-gap: 8px;
11
+ flex-wrap: wrap;
11
12
  justify-content: space-between;
12
- border-bottom: 1px solid var(--el-border-color-lighter);
13
- padding-bottom: 7px;
13
+ align-items: center;
14
14
  box-sizing: border-box;
15
15
  margin-bottom: 8px;
16
+ border-bottom: 1px solid var(--el-border-color-lighter);
17
+ padding-bottom: 7px;
16
18
  color: var(--el-text-color-regular);
17
- flex-wrap: wrap;
18
- row-gap: 8px;
19
19
  }
20
- ._header-container_msrkk_21 {
20
+ ._header-container_ld7ou_21 {
21
21
  font-size: var(--el-font-size-medium);
22
22
  }
23
- ._icon_msrkk_25 {
23
+ ._icon_ld7ou_25 {
24
+ transform: translateY(1px);
24
25
  margin-right: 4px;
25
26
  font-size: var(--el-font-size-extra-large);
26
- transform: translateY(1px);
27
27
  }
28
- ._actions_msrkk_31 {
28
+ ._actions_ld7ou_31 {
29
29
  display: flex;
30
30
  align-items: center;
31
31
  gap: 8px;
32
32
  }
33
- ._actions_msrkk_31 .el-button {
33
+ ._actions_ld7ou_31 .el-button {
34
34
  margin-left: 0 !important;
35
35
  }
36
- ._form_msrkk_40 {
36
+ ._form_ld7ou_40 {
37
37
  display: flex;
38
38
  flex-grow: 1;
39
- align-items: flex-start;
40
39
  flex-direction: column;
40
+ align-items: flex-start;
41
41
  }
42
- ._form_msrkk_40 > .el-row {
43
- width: 100%;
42
+ ._form_ld7ou_40 > .el-row {
44
43
  margin: 0 !important;
44
+ width: 100%;
45
45
  }
46
- ._scrollbar_msrkk_51 {
46
+ ._scrollbar_ld7ou_51 {
47
47
  margin: 0 -8px;
48
48
  }
@@ -130,7 +130,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
130
130
  withDirectives((openBlock(), createBlock(unref(ElForm), mergeProps({
131
131
  ref_key: "formRef",
132
132
  ref: formRef,
133
- "require-asterisk-position": "right",
134
133
  "label-position": __props.labelPosition,
135
134
  disabled: __props.disabled || !unref(isEditing)
136
135
  }, __props.formProps, {
@@ -42,7 +42,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
42
42
  emits: ["columnEvent", "singleSelectionChange", "multipleSelectionChange", "selectionChange", "selectAll", "loadMore"],
43
43
  setup(__props, { expose: __expose, emit: __emit }) {
44
44
  useCssVars((_ctx) => ({
45
- "fcc28e7c": `${_ctx.empty ? "flex" : "none"}`
45
+ "v34b07a80": `${_ctx.empty ? "flex" : "none"}`
46
46
  }));
47
47
  const props = __props;
48
48
  const emits = __emit;
@@ -333,19 +333,19 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
333
333
  }
334
334
  });
335
335
 
336
- /* unplugin-vue-components disabled */const table = "_table_10xul_7";
337
- const selection = "_selection_10xul_27";
338
- const radio = "_radio_10xul_32";
339
- const checkbox = "_checkbox_10xul_39";
340
- const sentinel = "_sentinel_10xul_55";
336
+ /* unplugin-vue-components disabled */const table = "_table_o4h9r_7";
337
+ const selection = "_selection_o4h9r_27";
338
+ const radio = "_radio_o4h9r_32";
339
+ const checkbox = "_checkbox_o4h9r_39";
340
+ const sentinel = "_sentinel_o4h9r_55";
341
341
  const style0 = {
342
- "explorer-table": "_explorer-table_10xul_1",
342
+ "explorer-table": "_explorer-table_o4h9r_1",
343
343
  table: table,
344
344
  selection: selection,
345
345
  radio: radio,
346
346
  checkbox: checkbox,
347
- "selected-row": "_selected-row_10xul_43",
348
- "status-text": "_status-text_10xul_47",
347
+ "selected-row": "_selected-row_o4h9r_43",
348
+ "status-text": "_status-text_o4h9r_47",
349
349
  sentinel: sentinel
350
350
  };
351
351
 
@@ -1,51 +1,51 @@
1
1
  /* source: src/components/explorer-table/explorer-table.vue */
2
- ._explorer-table_10xul_1 {
2
+ ._explorer-table_o4h9r_1 {
3
3
  display: flex;
4
- flex-direction: column;
5
4
  flex-grow: 1;
5
+ flex-direction: column;
6
6
  }
7
- div._table_10xul_7 {
7
+ div._table_o4h9r_7 {
8
8
  flex-grow: 1;
9
9
  height: 100px;
10
10
  --el-table-header-bg-color: var(--el-color-info-light-9);
11
11
  --el-table-row-hover-bg-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
12
12
  }
13
- div._table_10xul_7 .el-scrollbar__view {
13
+ div._table_o4h9r_7 .el-scrollbar__view {
14
14
  height: 100px;
15
15
  min-height: 100%;
16
16
  }
17
- div._table_10xul_7 .el-table__header-wrapper .el-table__cell:hover {
17
+ div._table_o4h9r_7 .el-table__header-wrapper .el-table__cell:hover {
18
18
  border-right-color: var(--el-color-primary-light-5) !important;
19
19
  }
20
- div._table_10xul_7 .el-table__column-resize-proxy {
20
+ div._table_o4h9r_7 .el-table__column-resize-proxy {
21
21
  border-color: var(--el-color-primary);
22
22
  }
23
- div._table_10xul_7 .el-table__empty-block {
24
- display: var(--fcc28e7c);
23
+ div._table_o4h9r_7 .el-table__empty-block {
24
+ display: var(--v34b07a80);
25
25
  }
26
- ._selection_10xul_27 .cell {
27
- align-items: center;
26
+ ._selection_o4h9r_27 .cell {
28
27
  display: flex;
28
+ align-items: center;
29
29
  }
30
- ._radio_10xul_32 {
31
- height: unset;
30
+ ._radio_o4h9r_32 {
31
+ height: unset !important;
32
32
  }
33
- ._radio_10xul_32 .el-radio__label {
33
+ ._radio_o4h9r_32 .el-radio__label {
34
34
  display: none;
35
35
  }
36
- ._checkbox_10xul_39 {
36
+ ._checkbox_o4h9r_39 {
37
37
  height: unset !important;
38
38
  }
39
- ._selected-row_10xul_43 td.el-table__cell {
39
+ ._selected-row_o4h9r_43 td.el-table__cell {
40
40
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light)) !important;
41
41
  }
42
- ._status-text_10xul_47 {
43
- align-items: center;
44
- column-gap: 4px;
42
+ ._status-text_o4h9r_47 {
45
43
  display: flex;
44
+ column-gap: 4px;
46
45
  justify-content: flex-start;
46
+ align-items: center;
47
47
  padding: 12px;
48
48
  }
49
- ._sentinel_10xul_55 {
49
+ ._sentinel_o4h9r_55 {
50
50
  height: 0;
51
51
  }
@@ -3,5 +3,5 @@
3
3
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
4
4
  }
5
5
  div._select-width_jk1e7_5 {
6
- width: var(--f34400f4);
6
+ width: var(--v4e1feee3);
7
7
  }
@@ -14,7 +14,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
14
14
  },
15
15
  setup(__props) {
16
16
  useCssVars((_ctx) => ({
17
- "f34400f4": unref(myWidth)
17
+ "v4e1feee3": unref(myWidth)
18
18
  }));
19
19
  const props = __props;
20
20
  const myOptions = computed(() => {
@@ -25,8 +25,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
25
25
  });
26
26
  const $style = useCssModule();
27
27
  const className = computed(() => ({
28
- [$style["select-width"]]: !!props.width,
29
- [$style.select]: true
28
+ [$style["select-width"]]: !!props.width
30
29
  }));
31
30
  const myWidth = computed(() => props.width ? formatToPx(props.width) : "auto");
32
31
  return (_ctx, _cache) => {
package/dist/es/index.mjs CHANGED
@@ -164,7 +164,7 @@ const __vite_glob_0_50 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
164
164
  default: _sfc_main$8
165
165
  }, Symbol.toStringTag, { value: 'Module' }));
166
166
 
167
- const version = "1.13.8";
167
+ const version = "1.13.10";
168
168
 
169
169
  const modules = /* #__PURE__ */ Object.assign({"./components/awesome-icon/awesome-icon.vue": __vite_glob_0_0,"./components/backbottom/backbottom.vue": __vite_glob_0_1,"./components/button/button.vue": __vite_glob_0_2,"./components/chat-container/chat-container.vue": __vite_glob_0_3,"./components/choice-boolean/choice-boolean.vue": __vite_glob_0_4,"./components/choice/choice.vue": __vite_glob_0_5,"./components/color-switch/color-switch.vue": __vite_glob_0_6,"./components/config-provider/config-provider.vue": __vite_glob_0_7,"./components/cropper/cropper.vue": __vite_glob_0_8,"./components/currency/currency.vue": __vite_glob_0_9,"./components/dark-switch/dark-switch.vue": __vite_glob_0_10,"./components/daterange-picker/daterange-picker.vue": __vite_glob_0_11,"./components/dialog-camera-upload/dialog-camera-upload.vue": __vite_glob_0_12,"./components/dialog-map-point/dialog-map-point.vue": __vite_glob_0_13,"./components/dialog-upload-images/dialog-upload-images.vue": __vite_glob_0_14,"./components/dialog/dialog.vue": __vite_glob_0_15,"./components/drag-verify/drag-verify.vue": __vite_glob_0_16,"./components/drawer/drawer.vue": __vite_glob_0_17,"./components/easy-pagination/easy-pagination.vue": __vite_glob_0_18,"./components/el-icon/el-icon.vue": __vite_glob_0_19,"./components/explorer-column-table/explorer-column-table.vue": __vite_glob_0_20,"./components/explorer-container/explorer-container.vue": __vite_glob_0_21,"./components/explorer-filter/explorer-filter.vue": __vite_glob_0_22,"./components/explorer-footer/explorer-footer.vue": __vite_glob_0_23,"./components/explorer-form/explorer-form.vue": __vite_glob_0_24,"./components/explorer-list/explorer-list.vue": __vite_glob_0_25,"./components/explorer-modal-form/explorer-modal-form.vue": __vite_glob_0_26,"./components/explorer-panel/explorer-panel.vue": __vite_glob_0_27,"./components/explorer-query/explorer-query.vue": __vite_glob_0_28,"./components/explorer-table/explorer-table.vue": __vite_glob_0_29,"./components/explorer-tools/explorer-tools.vue": __vite_glob_0_30,"./components/explorer-tree/explorer-tree.vue": __vite_glob_0_31,"./components/explorer/explorer.vue": __vite_glob_0_32,"./components/flag/flag.vue": __vite_glob_0_33,"./components/form-item/form-item.vue": __vite_glob_0_34,"./components/gen-input/gen-input.vue": __vite_glob_0_35,"./components/icon-picker/icon-picker.vue": __vite_glob_0_36,"./components/icon/icon.vue": __vite_glob_0_37,"./components/iconify-icon/iconify-icon.vue": __vite_glob_0_38,"./components/image/image.vue": __vite_glob_0_39,"./components/info-tooltip/info-tooltip.vue": __vite_glob_0_40,"./components/input-number/input-number.vue": __vite_glob_0_41,"./components/input/input.vue": __vite_glob_0_42,"./components/pca-picker/pca-picker.vue": __vite_glob_0_43,"./components/qr-code/qr-code.vue": __vite_glob_0_44,"./components/screenfull/screenfull.vue": __vite_glob_0_45,"./components/scrollbar/scrollbar.vue": __vite_glob_0_46,"./components/select/select.vue": __vite_glob_0_47,"./components/single-player/single-player.vue": __vite_glob_0_48,"./components/splitter-panel/splitter-panel.vue": __vite_glob_0_49,"./components/splitter/splitter.vue": __vite_glob_0_50,"./components/svg-icon/svg-icon.vue": __vite_glob_0_51,"./components/switch/switch.vue": __vite_glob_0_52,"./components/sync-scroll-container/sync-scroll-container.vue": __vite_glob_0_53,"./components/tags/tags.vue": __vite_glob_0_54,"./components/text-ellipsis/text-ellipsis.vue": __vite_glob_0_55,"./components/thousand-input/thousand-input.vue": __vite_glob_0_56,"./components/tinymce/tinymce.vue": __vite_glob_0_57,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_58,"./components/transfer/transfer.vue": __vite_glob_0_59,"./components/tree-picker/tree-picker.vue": __vite_glob_0_60,"./components/tree-select/tree-select.vue": __vite_glob_0_61,"./components/upload-file/upload-file.vue": __vite_glob_0_62});
170
170
  const upper = (_, letter) => letter.toUpperCase();
package/dist/index.css CHANGED
@@ -621,51 +621,51 @@ div._table_1vtct_1 {
621
621
  padding-top: var(--v42199fad);
622
622
  }
623
623
  /* source: src/components/explorer-form/explorer-form.vue */
624
- ._explorer-form_msrkk_1 {
624
+ ._explorer-form_ld7ou_1 {
625
625
  display: flex;
626
- flex-direction: column;
627
626
  flex-grow: 1;
627
+ flex-direction: column;
628
628
  height: 100px;
629
629
  }
630
- ._header_msrkk_8 {
630
+ ._header_ld7ou_8 {
631
631
  display: flex;
632
- align-items: center;
632
+ row-gap: 8px;
633
+ flex-wrap: wrap;
633
634
  justify-content: space-between;
634
- border-bottom: 1px solid var(--el-border-color-lighter);
635
- padding-bottom: 7px;
635
+ align-items: center;
636
636
  box-sizing: border-box;
637
637
  margin-bottom: 8px;
638
+ border-bottom: 1px solid var(--el-border-color-lighter);
639
+ padding-bottom: 7px;
638
640
  color: var(--el-text-color-regular);
639
- flex-wrap: wrap;
640
- row-gap: 8px;
641
641
  }
642
- ._header-container_msrkk_21 {
642
+ ._header-container_ld7ou_21 {
643
643
  font-size: var(--el-font-size-medium);
644
644
  }
645
- ._icon_msrkk_25 {
645
+ ._icon_ld7ou_25 {
646
+ transform: translateY(1px);
646
647
  margin-right: 4px;
647
648
  font-size: var(--el-font-size-extra-large);
648
- transform: translateY(1px);
649
649
  }
650
- ._actions_msrkk_31 {
650
+ ._actions_ld7ou_31 {
651
651
  display: flex;
652
652
  align-items: center;
653
653
  gap: 8px;
654
654
  }
655
- ._actions_msrkk_31 .el-button {
655
+ ._actions_ld7ou_31 .el-button {
656
656
  margin-left: 0 !important;
657
657
  }
658
- ._form_msrkk_40 {
658
+ ._form_ld7ou_40 {
659
659
  display: flex;
660
660
  flex-grow: 1;
661
- align-items: flex-start;
662
661
  flex-direction: column;
662
+ align-items: flex-start;
663
663
  }
664
- ._form_msrkk_40 > .el-row {
665
- width: 100%;
664
+ ._form_ld7ou_40 > .el-row {
666
665
  margin: 0 !important;
666
+ width: 100%;
667
667
  }
668
- ._scrollbar_msrkk_51 {
668
+ ._scrollbar_ld7ou_51 {
669
669
  margin: 0 -8px;
670
670
  }
671
671
  /* source: src/components/explorer-list/explorer-list.vue */
@@ -800,54 +800,54 @@ div._table_1vtct_1 {
800
800
  margin-left: 0;
801
801
  }
802
802
  /* source: src/components/explorer-table/explorer-table.vue */
803
- ._explorer-table_10xul_1 {
803
+ ._explorer-table_o4h9r_1 {
804
804
  display: flex;
805
- flex-direction: column;
806
805
  flex-grow: 1;
806
+ flex-direction: column;
807
807
  }
808
- div._table_10xul_7 {
808
+ div._table_o4h9r_7 {
809
809
  flex-grow: 1;
810
810
  height: 100px;
811
811
  --el-table-header-bg-color: var(--el-color-info-light-9);
812
812
  --el-table-row-hover-bg-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
813
813
  }
814
- div._table_10xul_7 .el-scrollbar__view {
814
+ div._table_o4h9r_7 .el-scrollbar__view {
815
815
  height: 100px;
816
816
  min-height: 100%;
817
817
  }
818
- div._table_10xul_7 .el-table__header-wrapper .el-table__cell:hover {
818
+ div._table_o4h9r_7 .el-table__header-wrapper .el-table__cell:hover {
819
819
  border-right-color: var(--el-color-primary-light-5) !important;
820
820
  }
821
- div._table_10xul_7 .el-table__column-resize-proxy {
821
+ div._table_o4h9r_7 .el-table__column-resize-proxy {
822
822
  border-color: var(--el-color-primary);
823
823
  }
824
- div._table_10xul_7 .el-table__empty-block {
825
- display: var(--fcc28e7c);
824
+ div._table_o4h9r_7 .el-table__empty-block {
825
+ display: var(--v34b07a80);
826
826
  }
827
- ._selection_10xul_27 .cell {
828
- align-items: center;
827
+ ._selection_o4h9r_27 .cell {
829
828
  display: flex;
829
+ align-items: center;
830
830
  }
831
- ._radio_10xul_32 {
832
- height: unset;
831
+ ._radio_o4h9r_32 {
832
+ height: unset !important;
833
833
  }
834
- ._radio_10xul_32 .el-radio__label {
834
+ ._radio_o4h9r_32 .el-radio__label {
835
835
  display: none;
836
836
  }
837
- ._checkbox_10xul_39 {
837
+ ._checkbox_o4h9r_39 {
838
838
  height: unset !important;
839
839
  }
840
- ._selected-row_10xul_43 td.el-table__cell {
840
+ ._selected-row_o4h9r_43 td.el-table__cell {
841
841
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light)) !important;
842
842
  }
843
- ._status-text_10xul_47 {
844
- align-items: center;
845
- column-gap: 4px;
843
+ ._status-text_o4h9r_47 {
846
844
  display: flex;
845
+ column-gap: 4px;
847
846
  justify-content: flex-start;
847
+ align-items: center;
848
848
  padding: 12px;
849
849
  }
850
- ._sentinel_10xul_55 {
850
+ ._sentinel_o4h9r_55 {
851
851
  height: 0;
852
852
  }
853
853
  /* source: src/components/explorer-tools/components/column-setter.vue,src/components/explorer-tools/explorer-tools.vue */
@@ -1431,7 +1431,7 @@ div._input-width_wnpjs_1 {
1431
1431
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
1432
1432
  }
1433
1433
  div._select-width_jk1e7_5 {
1434
- width: var(--f34400f4);
1434
+ width: var(--v4e1feee3);
1435
1435
  }
1436
1436
  /* source: src/components/single-player/single-player.vue */
1437
1437
  ._main_15lus_1 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wfrog/vc-ui",
3
- "version": "1.13.8",
3
+ "version": "1.13.10",
4
4
  "packageManager": "pnpm@10.20.0",
5
5
  "description": "vue3 组件库 vc-ui",
6
6
  "author": "wellfrog",