@wfrog/vc-ui 1.9.10 → 1.9.11

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.
@@ -1,4 +1,5 @@
1
1
  export interface IColumnConfig {
2
+ id: string | number;
2
3
  prop: string;
3
4
  label: string;
4
5
  width?: number;
@@ -7,6 +8,7 @@ export interface IColumnConfig {
7
8
  fixed?: 'left' | 'right';
8
9
  align?: 'left' | 'center' | 'right';
9
10
  showOverflowTooltip?: boolean;
11
+ disabled?: boolean;
10
12
  widthType?: 'width' | 'minWidth';
11
13
  formFixed?: ('left' | 'right')[];
12
14
  }
@@ -2778,9 +2778,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2778
2778
  }
2779
2779
  sortable.value = new Sortable(el, {
2780
2780
  animation: 150,
2781
- handle: `.${$style.label}`,
2781
+ handle: `.${$style.handle}`,
2782
2782
  // 可选:指定拖拽手柄
2783
- filter: ".el-input",
2783
+ // filter: '.el-input', // 导致 input 无法聚焦
2784
2784
  onEnd: (evt) => {
2785
2785
  const { newIndex, oldIndex } = evt;
2786
2786
  if (newIndex !== void 0 && oldIndex !== void 0) {
@@ -2801,7 +2801,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2801
2801
  ref_key: "tableRef",
2802
2802
  ref: tableRef,
2803
2803
  data: unref(myData),
2804
- "row-key": "prop",
2804
+ "row-key": "id",
2805
2805
  border: "",
2806
2806
  size: __props.size,
2807
2807
  height: __props.height,
@@ -2818,7 +2818,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2818
2818
  }, {
2819
2819
  default: withCtx(({ row }) => [
2820
2820
  createElementVNode("div", {
2821
- class: normalizeClass(unref($style).label)
2821
+ class: normalizeClass([unref($style).label, unref($style).handle])
2822
2822
  }, [
2823
2823
  createVNode(_component_ElCheckbox, {
2824
2824
  modelValue: row.visible,
@@ -2850,15 +2850,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2850
2850
  modelValue: row.label,
2851
2851
  "onUpdate:modelValue": ($event) => row.label = $event,
2852
2852
  block: "",
2853
- size: __props.size
2854
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size"])
2853
+ size: __props.size,
2854
+ disabled: row.disabled
2855
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])
2855
2856
  ]),
2856
2857
  _: 2
2857
2858
  }, 1032, ["modelValue", "onUpdate:modelValue", "size"]),
2858
2859
  createVNode(Component$2, {
2860
+ class: normalizeClass(unref($style).handle),
2859
2861
  name: "carbon:draggable",
2860
2862
  size: "30px"
2861
- })
2863
+ }, null, 8, ["class"])
2862
2864
  ], 2)
2863
2865
  ]),
2864
2866
  _: 1
@@ -2874,8 +2876,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2874
2876
  modelValue: row.prop,
2875
2877
  "onUpdate:modelValue": ($event) => row.prop = $event,
2876
2878
  block: "",
2877
- size: __props.size
2878
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size"])
2879
+ size: __props.size,
2880
+ disabled: row.disabled
2881
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])
2879
2882
  ]),
2880
2883
  _: 1
2881
2884
  })) : createCommentVNode("", true),
@@ -2894,8 +2897,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2894
2897
  "onUpdate:modelValue": ($event) => row.widthType = $event,
2895
2898
  options: widthOptions,
2896
2899
  size: __props.size,
2900
+ disabled: row.disabled,
2897
2901
  onChange: ($event) => handleWidthChange(row)
2898
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "onChange"]),
2902
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled", "onChange"]),
2899
2903
  row.widthType === "width" ? (openBlock(), createBlock(Component$4, {
2900
2904
  key: 0,
2901
2905
  modelValue: row.width,
@@ -2903,16 +2907,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2903
2907
  min: 0,
2904
2908
  size: __props.size,
2905
2909
  controls: false,
2906
- "input-width": "50px"
2907
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size"])) : (openBlock(), createBlock(Component$4, {
2910
+ "input-width": "50px",
2911
+ disabled: row.disabled
2912
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])) : (openBlock(), createBlock(Component$4, {
2908
2913
  key: 1,
2909
2914
  modelValue: row.minWidth,
2910
2915
  "onUpdate:modelValue": ($event) => row.minWidth = $event,
2911
2916
  min: 0,
2912
2917
  size: __props.size,
2913
2918
  controls: false,
2914
- "input-width": "50px"
2915
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size"]))
2919
+ "input-width": "50px",
2920
+ disabled: row.disabled
2921
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"]))
2916
2922
  ], 2)
2917
2923
  ]),
2918
2924
  _: 1
@@ -2931,8 +2937,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2931
2937
  modelValue: row.align,
2932
2938
  "onUpdate:modelValue": ($event) => row.align = $event,
2933
2939
  options: alignOptions,
2934
- size: __props.size
2935
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size"])
2940
+ size: __props.size,
2941
+ disabled: row.disabled
2942
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])
2936
2943
  ], 2)
2937
2944
  ]),
2938
2945
  _: 1
@@ -2953,8 +2960,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2953
2960
  multiple: "",
2954
2961
  options: fixedOptions,
2955
2962
  size: __props.size,
2963
+ disabled: row.disabled,
2956
2964
  onChange: ($event) => handleFixedChange(row)
2957
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "onChange"])
2965
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled", "onChange"])
2958
2966
  ], 2)
2959
2967
  ]),
2960
2968
  _: 1
@@ -2974,8 +2982,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2974
2982
  "onUpdate:modelValue": ($event) => row.showOverflowTooltip = $event,
2975
2983
  size: __props.size,
2976
2984
  border: "",
2977
- class: normalizeClass(unref($style).truncate)
2978
- }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "class"])
2985
+ class: normalizeClass(unref($style).truncate),
2986
+ disabled: row.disabled
2987
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "size", "class", "disabled"])
2979
2988
  ], 2)
2980
2989
  ]),
2981
2990
  _: 1
@@ -3000,13 +3009,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
3000
3009
  }
3001
3010
  });
3002
3011
 
3003
- /* unplugin-vue-components disabled */const table = "_table_8tod4_1";
3004
- const label = "_label_8tod4_8";
3005
- const truncate = "_truncate_8tod4_44";
3012
+ /* unplugin-vue-components disabled */const table = "_table_oyix4_1";
3013
+ const label = "_label_oyix4_8";
3014
+ const handle = "_handle_oyix4_29";
3015
+ const truncate = "_truncate_oyix4_45";
3006
3016
  const style0 = {
3007
3017
  table: table,
3008
3018
  label: label,
3009
- "item-container": "_item-container_8tod4_32",
3019
+ handle: handle,
3020
+ "item-container": "_item-container_oyix4_33",
3010
3021
  truncate: truncate
3011
3022
  };
3012
3023
 
@@ -1,34 +1,34 @@
1
1
  /* source: src/components/explorer-column-table/explorer-column-table.vue */
2
- .el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div._table_8tod4_1 {
2
+ .el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div._table_oyix4_1 {
3
3
  flex-grow: 1;
4
4
  height: 100px;
5
5
  --el-table-header-bg-color: var(--el-color-info-light-9);
6
6
  --el-table-row-hover-bg-color: var(--el-color-primary-light-9);
7
7
  }
8
- ._label_8tod4_8 {
8
+ ._label_oyix4_8 {
9
9
  display: inline-flex;
10
10
  width: 100%;
11
11
  align-items: center;
12
12
  }
13
- ._label_8tod4_8 .el-checkbox {
13
+ ._label_oyix4_8 .el-checkbox {
14
14
  width: 100%;
15
15
  display: flex;
16
16
  align-items: center;
17
- cursor: move;
18
17
  }
19
- ._label_8tod4_8 .el-checkbox__label {
18
+ ._label_oyix4_8 .el-checkbox__label {
20
19
  min-width: 0;
21
20
  overflow: hidden;
22
21
  text-overflow: ellipsis;
23
22
  white-space: nowrap;
24
23
  flex-grow: 1;
25
- cursor: pointer;
26
24
  }
27
- ._label_8tod4_8 .iconify {
25
+ ._label_oyix4_8 .iconify {
28
26
  margin-left: 4px;
27
+ }
28
+ ._handle_oyix4_29 {
29
29
  cursor: move;
30
30
  }
31
- ._item-container_8tod4_32 {
31
+ ._item-container_oyix4_33 {
32
32
  display: inline-flex;
33
33
  align-items: center;
34
34
  column-gap: 4px;
@@ -36,15 +36,15 @@
36
36
  line-height: 0;
37
37
  vertical-align: middle;
38
38
  }
39
- ._item-container_8tod4_32 > div {
39
+ ._item-container_oyix4_33 > div {
40
40
  vertical-align: middle;
41
41
  }
42
- ._truncate_8tod4_44 {
42
+ ._truncate_oyix4_45 {
43
43
  padding: 0 9px !important;
44
44
  }
45
- ._truncate_8tod4_44.el-checkbox--small {
45
+ ._truncate_oyix4_45.el-checkbox--small {
46
46
  padding: 0 7px !important;
47
47
  }
48
- ._truncate_8tod4_44.el-checkbox--large {
48
+ ._truncate_oyix4_45.el-checkbox--large {
49
49
  padding: 0 11px !important;
50
50
  }
@@ -49,7 +49,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
49
49
  }, { deep: true, immediate: true });
50
50
  function onHeaderDragend(newWidth, _oldWidth, column) {
51
51
  const item = state.columnConfig.value.find((item2) => item2.prop === column.property);
52
- if (item) {
52
+ if (item && !item.disabled) {
53
53
  item.width = newWidth;
54
54
  item.widthType = "width";
55
55
  delete item.minWidth;
package/dist/index.css CHANGED
@@ -552,36 +552,36 @@ div._main_k37nc_1 ._header_k37nc_48 {
552
552
 
553
553
  .fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.el-fade-in-linear-enter-from,.el-fade-in-linear-leave-to{opacity:0}.el-fade-in-enter-active,.el-fade-in-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-fade-in-enter-from,.el-fade-in-leave-active{opacity:0}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter-from,.el-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--el-transition-md-fade)}.el-zoom-in-top-enter-active[data-popper-placement^=top],.el-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.el-zoom-in-top-enter-from,.el-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transform-origin:center bottom;transition:var(--el-transition-md-fade)}.el-zoom-in-bottom-enter-from,.el-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;transform:scale(1);transform-origin:top left;transition:var(--el-transition-md-fade)}.el-zoom-in-left-enter-from,.el-zoom-in-left-leave-active{opacity:0;transform:scale(.45)}.collapse-transition{transition:var(--el-transition-duration) height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.el-collapse-transition-enter-active,.el-collapse-transition-leave-active{transition:var(--el-transition-duration) max-height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--el-transition-duration) width ease-in-out,var(--el-transition-duration) padding-left ease-in-out,var(--el-transition-duration) padding-right ease-in-out}.el-list-enter-active,.el-list-leave-active{transition:all 1s}.el-list-enter-from,.el-list-leave-to{opacity:0;transform:translateY(-30px)}.el-list-leave-active{position:absolute!important}.el-opacity-transition{transition:opacity var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-tree{--el-tree-node-content-height:26px;--el-tree-node-hover-bg-color:var(--el-fill-color-light);--el-tree-text-color:var(--el-text-color-regular);--el-tree-expand-icon-color:var(--el-text-color-placeholder);background:var(--el-fill-color-blank);color:var(--el-tree-text-color);cursor:default;font-size:var(--el-font-size-base);position:relative}.el-tree__empty-block{height:100%;min-height:60px;position:relative;text-align:center;width:100%}.el-tree__empty-text{color:var(--el-text-color-secondary);font-size:var(--el-font-size-base);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.el-tree__drop-indicator{background-color:var(--el-color-primary);height:1px;left:0;position:absolute;right:0}.el-tree-node{outline:none;white-space:nowrap}.el-tree-node:focus>.el-tree-node__content{background-color:var(--el-tree-node-hover-bg-color)}.el-tree-node.is-drop-inner>.el-tree-node__content .el-tree-node__label{background-color:var(--el-color-primary);color:#fff}.el-tree-node__content{--el-checkbox-height:var(--el-tree-node-content-height);align-items:center;cursor:pointer;display:flex;height:var(--el-tree-node-content-height)}.el-tree-node__content>.el-tree-node__expand-icon{box-sizing:content-box;padding:6px}.el-tree-node__content>label.el-checkbox{margin-right:8px}.el-tree-node__content:hover{background-color:var(--el-tree-node-hover-bg-color)}.el-tree.is-dragging .el-tree-node__content{cursor:move}.el-tree.is-dragging .el-tree-node__content *{pointer-events:none}.el-tree.is-dragging.is-drop-not-allow .el-tree-node__content{cursor:not-allowed}.el-tree-node__expand-icon{color:var(--el-tree-expand-icon-color);cursor:pointer;font-size:12px;transform:rotate(0deg);transition:transform var(--el-transition-duration) ease-in-out}.el-tree-node__expand-icon.expanded{transform:rotate(90deg)}.el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default;visibility:hidden}.el-tree-node__expand-icon.is-hidden{visibility:hidden}.el-tree-node__loading-icon{color:var(--el-tree-expand-icon-color);font-size:var(--el-font-size-base);margin-right:8px}.el-tree-node>.el-tree-node__children{background-color:transparent;overflow:hidden}.el-tree-node.is-expanded>.el-tree-node__children{display:block}.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:var(--el-color-primary-light-9)}
554
554
  /* source: src/components/explorer-column-table/explorer-column-table.vue */
555
- .el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div._table_8tod4_1 {
555
+ .el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div._table_oyix4_1 {
556
556
  flex-grow: 1;
557
557
  height: 100px;
558
558
  --el-table-header-bg-color: var(--el-color-info-light-9);
559
559
  --el-table-row-hover-bg-color: var(--el-color-primary-light-9);
560
560
  }
561
- ._label_8tod4_8 {
561
+ ._label_oyix4_8 {
562
562
  display: inline-flex;
563
563
  width: 100%;
564
564
  align-items: center;
565
565
  }
566
- ._label_8tod4_8 .el-checkbox {
566
+ ._label_oyix4_8 .el-checkbox {
567
567
  width: 100%;
568
568
  display: flex;
569
569
  align-items: center;
570
- cursor: move;
571
570
  }
572
- ._label_8tod4_8 .el-checkbox__label {
571
+ ._label_oyix4_8 .el-checkbox__label {
573
572
  min-width: 0;
574
573
  overflow: hidden;
575
574
  text-overflow: ellipsis;
576
575
  white-space: nowrap;
577
576
  flex-grow: 1;
578
- cursor: pointer;
579
577
  }
580
- ._label_8tod4_8 .iconify {
578
+ ._label_oyix4_8 .iconify {
581
579
  margin-left: 4px;
580
+ }
581
+ ._handle_oyix4_29 {
582
582
  cursor: move;
583
583
  }
584
- ._item-container_8tod4_32 {
584
+ ._item-container_oyix4_33 {
585
585
  display: inline-flex;
586
586
  align-items: center;
587
587
  column-gap: 4px;
@@ -589,16 +589,16 @@ div._main_k37nc_1 ._header_k37nc_48 {
589
589
  line-height: 0;
590
590
  vertical-align: middle;
591
591
  }
592
- ._item-container_8tod4_32 > div {
592
+ ._item-container_oyix4_33 > div {
593
593
  vertical-align: middle;
594
594
  }
595
- ._truncate_8tod4_44 {
595
+ ._truncate_oyix4_45 {
596
596
  padding: 0 9px !important;
597
597
  }
598
- ._truncate_8tod4_44.el-checkbox--small {
598
+ ._truncate_oyix4_45.el-checkbox--small {
599
599
  padding: 0 7px !important;
600
600
  }
601
- ._truncate_8tod4_44.el-checkbox--large {
601
+ ._truncate_oyix4_45.el-checkbox--large {
602
602
  padding: 0 11px !important;
603
603
  }
604
604
  /* source: src/components/explorer-container/explorer-container.vue */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wfrog/vc-ui",
3
- "version": "1.9.10",
3
+ "version": "1.9.11",
4
4
  "packageManager": "pnpm@10.20.0",
5
5
  "description": "vue3 组件库 vc-ui",
6
6
  "author": "wellfrog",