@wfrog/vc-ui 1.13.0 → 1.13.2

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,20 +1,34 @@
1
1
  /* source: src/components/scrollbar/scrollbar.vue */
2
- ._scrollbar_edxkl_1 {
2
+ ._scrollbar_1gbhe_1 {
3
3
  display: flex;
4
4
  flex-direction: column;
5
5
  flex-grow: 1;
6
6
  }
7
- ._scrollbar_edxkl_1 > .el-scrollbar__wrap {
7
+ ._scrollbar_1gbhe_1 > .el-scrollbar__wrap {
8
8
  flex-grow: 1;
9
9
  flex-direction: column;
10
10
  display: flex;
11
11
  }
12
- ._scrollbar_edxkl_1 > .el-scrollbar__wrap > .el-scrollbar__view {
12
+ ._scrollbar_1gbhe_1 > .el-scrollbar__wrap > .el-scrollbar__view {
13
13
  display: flex;
14
14
  flex-direction: column;
15
15
  flex-grow: 1;
16
- margin: var(--v0912858a);
16
+ margin: var(--d31e596a);
17
17
  }
18
- ._fill-height_edxkl_18 {
18
+ ._fill-height_1gbhe_18 {
19
19
  height: 10px;
20
+ }
21
+ ._sentinel_1gbhe_22 {
22
+ height: auto;
23
+ }
24
+ ._loading_1gbhe_26 {
25
+ padding: 12px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ column-gap: 4px;
30
+ }
31
+ ._status-text_1gbhe_34 {
32
+ padding: 12px;
33
+ text-align: center;
20
34
  }
@@ -2,4 +2,13 @@ export interface IScrollbarProps {
2
2
  flex?: boolean;
3
3
  fillHeight?: boolean;
4
4
  viewMargin?: string;
5
+ scrollLoad?: boolean;
6
+ scrollLoadDisabled?: boolean;
7
+ scrollLoadRootMargin?: string;
8
+ scrollLoadThreshold?: number;
9
+ loading?: boolean;
10
+ loadingText?: string;
11
+ noMoreText?: string;
12
+ empty?: boolean;
13
+ emptyText?: string;
5
14
  }
@@ -1,8 +1,12 @@
1
1
  import './index.css'
2
- import { ElScrollbar } from 'element-plus/es';
2
+ import { ElScrollbar, ElText, ElIcon } from 'element-plus/es';
3
3
  import 'element-plus/es/components/base/style/css';
4
4
  import 'element-plus/es/components/scrollbar/style/css';
5
- import { defineComponent, useCssVars, useTemplateRef, createBlock, openBlock, normalizeClass, withCtx, renderSlot } from 'vue';
5
+ import 'element-plus/es/components/icon/style/css';
6
+ import 'element-plus/es/components/text/style/css';
7
+ import { defineComponent, useCssVars, useTemplateRef, computed, createBlock, openBlock, normalizeClass, withCtx, renderSlot, createElementBlock, createCommentVNode, createElementVNode, createVNode, createTextVNode, toDisplayString, unref } from 'vue';
8
+ import { Loading } from '@element-plus/icons-vue';
9
+ import { useIntersectionObserver } from '@vueuse/core';
6
10
  import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
7
11
 
8
12
  const _sfc_main = /* @__PURE__ */ defineComponent({
@@ -10,15 +14,47 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
10
14
  props: {
11
15
  flex: { type: Boolean, default: true },
12
16
  fillHeight: { type: Boolean, default: true },
13
- viewMargin: { default: "0 10px" }
17
+ viewMargin: { default: "0 10px" },
18
+ scrollLoad: { type: Boolean, default: false },
19
+ scrollLoadDisabled: { type: Boolean, default: false },
20
+ scrollLoadRootMargin: { default: "100px" },
21
+ scrollLoadThreshold: { default: 0 },
22
+ loading: { type: Boolean, default: false },
23
+ loadingText: { default: "加载中" },
24
+ noMoreText: { default: "没有更多了" },
25
+ empty: { type: Boolean, default: false },
26
+ emptyText: { default: "暂无数据" }
14
27
  },
15
- setup(__props, { expose: __expose }) {
28
+ emits: ["loadMore"],
29
+ setup(__props, { expose: __expose, emit: __emit }) {
16
30
  useCssVars((_ctx) => ({
17
- "v0912858a": _ctx.viewMargin
31
+ "d31e596a": _ctx.viewMargin
18
32
  }));
33
+ const props = __props;
34
+ const emits = __emit;
19
35
  const scrollbarRef = useTemplateRef("scrollbarRef");
36
+ const sentinelRef = useTemplateRef("sentinelRef");
37
+ const scrollLoadEnabled = computed(
38
+ () => props.scrollLoad && !props.loading && !props.scrollLoadDisabled
39
+ );
40
+ const scrollRoot = computed(() => scrollbarRef.value?.wrapRef ?? null);
41
+ useIntersectionObserver(
42
+ sentinelRef,
43
+ ([{ isIntersecting }]) => {
44
+ if (isIntersecting && scrollLoadEnabled.value) {
45
+ emits("loadMore");
46
+ }
47
+ },
48
+ {
49
+ root: scrollRoot,
50
+ rootMargin: props.scrollLoadRootMargin,
51
+ threshold: props.scrollLoadThreshold
52
+ }
53
+ );
20
54
  __expose({ scrollbarRef });
21
55
  return (_ctx, _cache) => {
56
+ const _component_ElText = ElText;
57
+ const _component_el_icon = ElIcon;
22
58
  const _component_ElScrollbar = ElScrollbar;
23
59
  return openBlock(), createBlock(_component_ElScrollbar, {
24
60
  ref_key: "scrollbarRef",
@@ -26,7 +62,54 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
26
62
  class: normalizeClass({ [_ctx.$style.scrollbar]: __props.flex, [_ctx.$style[`fill-height`]]: __props.fillHeight })
27
63
  }, {
28
64
  default: withCtx(() => [
29
- renderSlot(_ctx.$slots, "default")
65
+ !__props.empty ? renderSlot(_ctx.$slots, "default", { key: 0 }) : renderSlot(_ctx.$slots, "empty", { key: 1 }, () => [
66
+ createElementVNode("div", {
67
+ class: normalizeClass(_ctx.$style["status-text"])
68
+ }, [
69
+ createVNode(_component_ElText, { type: "info" }, {
70
+ default: withCtx(() => [
71
+ createTextVNode(toDisplayString(__props.emptyText), 1)
72
+ ]),
73
+ _: 1
74
+ })
75
+ ], 2)
76
+ ]),
77
+ __props.scrollLoad && !__props.empty ? (openBlock(), createElementBlock("div", {
78
+ key: 2,
79
+ ref_key: "sentinelRef",
80
+ ref: sentinelRef,
81
+ class: normalizeClass(_ctx.$style.sentinel)
82
+ }, [
83
+ __props.loading ? renderSlot(_ctx.$slots, "loading", { key: 0 }, () => [
84
+ createElementVNode("div", {
85
+ class: normalizeClass(_ctx.$style.loading)
86
+ }, [
87
+ createVNode(_component_el_icon, { class: "is-loading" }, {
88
+ default: withCtx(() => [
89
+ createVNode(unref(Loading))
90
+ ]),
91
+ _: 1
92
+ }),
93
+ createVNode(_component_ElText, { type: "info" }, {
94
+ default: withCtx(() => [
95
+ createTextVNode(toDisplayString(__props.loadingText), 1)
96
+ ]),
97
+ _: 1
98
+ })
99
+ ], 2)
100
+ ]) : __props.scrollLoadDisabled ? renderSlot(_ctx.$slots, "no-more", { key: 1 }, () => [
101
+ createElementVNode("div", {
102
+ class: normalizeClass(_ctx.$style["status-text"])
103
+ }, [
104
+ createVNode(_component_ElText, { type: "info" }, {
105
+ default: withCtx(() => [
106
+ createTextVNode(toDisplayString(__props.noMoreText), 1)
107
+ ]),
108
+ _: 1
109
+ })
110
+ ], 2)
111
+ ]) : createCommentVNode("", true)
112
+ ], 2)) : createCommentVNode("", true)
30
113
  ]),
31
114
  _: 3
32
115
  }, 8, ["class"]);
@@ -34,10 +117,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
34
117
  }
35
118
  });
36
119
 
37
- /* unplugin-vue-components disabled */const scrollbar = "_scrollbar_edxkl_1";
120
+ /* unplugin-vue-components disabled */const scrollbar = "_scrollbar_1gbhe_1";
121
+ const sentinel = "_sentinel_1gbhe_22";
122
+ const loading = "_loading_1gbhe_26";
38
123
  const style0 = {
39
124
  scrollbar: scrollbar,
40
- "fill-height": "_fill-height_edxkl_18"
125
+ "fill-height": "_fill-height_1gbhe_18",
126
+ sentinel: sentinel,
127
+ loading: loading,
128
+ "status-text": "_status-text_1gbhe_34"
41
129
  };
42
130
 
43
131
  const cssModules = {
@@ -3,6 +3,9 @@ declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
5
5
  default?(_: {}): any;
6
+ empty?(_: {}): any;
7
+ loading?(_: {}): any;
8
+ 'no-more'?(_: {}): any;
6
9
  };
7
10
  refs: {
8
11
  scrollbarRef: ({
@@ -200,6 +203,7 @@ declare function __VLS_template(): {
200
203
  default?: (props: {}) => any;
201
204
  };
202
205
  }) | null;
206
+ sentinelRef: HTMLDivElement;
203
207
  };
204
208
  rootEl: any;
205
209
  };
@@ -400,10 +404,23 @@ declare const __VLS_component: import('vue').DefineComponent<IScrollbarProps, {
400
404
  default?: (props: {}) => any;
401
405
  };
402
406
  }) | null>>;
403
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IScrollbarProps> & Readonly<{}>, {
407
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
408
+ loadMore: () => any;
409
+ }, string, import('vue').PublicProps, Readonly<IScrollbarProps> & Readonly<{
410
+ onLoadMore?: (() => any) | undefined;
411
+ }>, {
412
+ loading: boolean;
404
413
  flex: boolean;
405
414
  fillHeight: boolean;
406
415
  viewMargin: string;
416
+ scrollLoad: boolean;
417
+ scrollLoadDisabled: boolean;
418
+ scrollLoadRootMargin: string;
419
+ scrollLoadThreshold: number;
420
+ loadingText: string;
421
+ noMoreText: string;
422
+ empty: boolean;
423
+ emptyText: string;
407
424
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
408
425
  scrollbarRef: ({
409
426
  $: import('vue').ComponentInternalInstance;
@@ -600,6 +617,7 @@ declare const __VLS_component: import('vue').DefineComponent<IScrollbarProps, {
600
617
  default?: (props: {}) => any;
601
618
  };
602
619
  }) | null;
620
+ sentinelRef: HTMLDivElement;
603
621
  }, any>;
604
622
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
605
623
  export default _default;
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.0";
167
+ const version = "1.13.2";
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
@@ -605,7 +605,7 @@ div._table_1vtct_1 {
605
605
  }
606
606
  /* source: src/components/explorer-filter/explorer-filter.vue */
607
607
  ._explorer-filter_fuuuf_1 {
608
- padding-bottom: var(--cd3fe400);
608
+ padding-bottom: var(--v649a28c7);
609
609
  display: flex;
610
610
  column-gap: 8px;
611
611
  border-bottom: 1px solid var(--el-border-color-lighter);
@@ -667,9 +667,9 @@ div._table_1vtct_1 {
667
667
  margin: 0 -8px;
668
668
  }
669
669
  /* source: src/components/explorer-list/explorer-list.vue */
670
- ._item_14vaz_1 {
670
+ ._item_13vx0_1 {
671
671
  padding: 4px 8px;
672
- cursor: var(--v7fa588cc);
672
+ cursor: var(--ac031736);
673
673
  display: flex;
674
674
  justify-content: space-between;
675
675
  align-items: center;
@@ -679,60 +679,52 @@ div._table_1vtct_1 {
679
679
  box-sizing: border-box;
680
680
  line-height: 1;
681
681
  }
682
- ._item_14vaz_1:hover {
682
+ ._item_13vx0_1:hover {
683
683
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
684
684
  }
685
- ._item_14vaz_1:hover ._actions_14vaz_16 {
685
+ ._item_13vx0_1:hover ._actions_13vx0_16 {
686
686
  display: inline-flex;
687
687
  align-items: flex-start;
688
688
  }
689
- ._item_14vaz_1._active_14vaz_20 {
689
+ ._item_13vx0_1._active_13vx0_20 {
690
690
  color: var(--el-color-primary);
691
691
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
692
692
  }
693
- ._label_14vaz_25 {
693
+ ._label_13vx0_25 {
694
694
  overflow: hidden;
695
695
  text-overflow: ellipsis;
696
696
  white-space: nowrap;
697
697
  --el-checkbox-height: 24px;
698
698
  }
699
- ._label_14vaz_25 .iconify {
699
+ ._label_13vx0_25 .iconify {
700
700
  margin-right: 4px;
701
701
  }
702
- ._label_14vaz_25 .el-checkbox {
702
+ ._label_13vx0_25 .el-checkbox {
703
703
  width: 100%;
704
704
  }
705
- ._label_14vaz_25 .el-checkbox__label {
705
+ ._label_13vx0_25 .el-checkbox__label {
706
706
  overflow: hidden;
707
707
  text-overflow: ellipsis;
708
708
  white-space: nowrap;
709
709
  color: var(--el-text-color-regular) !important;
710
710
  cursor: pointer !important;
711
711
  }
712
- ._actions_14vaz_16 {
712
+ ._actions_13vx0_16 {
713
713
  display: none;
714
714
  column-gap: 4px;
715
715
  }
716
- ._actions_14vaz_16 > button {
716
+ ._actions_13vx0_16 > button {
717
717
  margin-left: 0 !important;
718
718
  font-size: 1.2em;
719
719
  border: 1px solid var(--el-border-color-light) !important;
720
720
  }
721
- ._actions_14vaz_16 > button:hover {
721
+ ._actions_13vx0_16 > button:hover {
722
722
  border-color: var(--el-border-color-dark) !important;
723
723
  }
724
- ._remove_14vaz_58 {
724
+ ._remove_13vx0_58 {
725
725
  transform: translateY(-1px);
726
726
  }
727
- ._empty_14vaz_62,
728
- ._loading_14vaz_63 {
729
- padding: 4px 8px;
730
- display: flex;
731
- align-items: center;
732
- column-gap: 4px;
733
- color: var(--el-text-color-secondary);
734
- }
735
- ._scrollbar_14vaz_71 {
727
+ ._scrollbar_13vx0_62 {
736
728
  margin: 0 -8px;
737
729
  }
738
730
  /* source: src/components/explorer-modal-form/explorer-modal-form.vue */
@@ -806,46 +798,56 @@ div._table_1vtct_1 {
806
798
  margin-left: 0;
807
799
  }
808
800
  /* source: src/components/explorer-table/explorer-table.vue */
809
- ._explorer-table_1dvo4_1 {
801
+ ._explorer-table_1bdji_1 {
810
802
  display: flex;
811
803
  flex-direction: column;
812
804
  flex-grow: 1;
813
805
  }
814
- div._table_1dvo4_7 {
806
+ div._table_1bdji_7 {
815
807
  flex-grow: 1;
816
808
  height: 100px;
817
809
  --el-table-header-bg-color: var(--el-color-info-light-9);
818
810
  --el-table-row-hover-bg-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
819
811
  }
820
- div._table_1dvo4_7 .el-scrollbar__view {
812
+ div._table_1bdji_7 .el-scrollbar__view {
821
813
  min-height: 100%;
822
814
  height: 100px;
823
815
  }
824
- div._table_1dvo4_7 .el-table__header-wrapper .el-table__cell:hover {
816
+ div._table_1bdji_7 .el-table__header-wrapper .el-table__cell:hover {
825
817
  border-right-color: var(--el-color-primary-light-5) !important;
826
818
  }
827
- div._table_1dvo4_7 .el-table__column-resize-proxy {
819
+ div._table_1bdji_7 .el-table__column-resize-proxy {
828
820
  border-color: var(--el-color-primary);
829
821
  }
830
- div._table_1dvo4_7 .el-table__empty-block {
831
- display: var(--dc3c53f8);
822
+ div._table_1bdji_7 .el-table__empty-block {
823
+ display: var(--v674feb49);
832
824
  }
833
- ._selection_1dvo4_27 .cell {
825
+ ._selection_1bdji_27 .cell {
834
826
  display: flex;
835
827
  align-items: center;
836
828
  }
837
- ._radio_1dvo4_32 {
829
+ ._radio_1bdji_32 {
838
830
  height: unset;
839
831
  }
840
- ._radio_1dvo4_32 .el-radio__label {
832
+ ._radio_1bdji_32 .el-radio__label {
841
833
  display: none;
842
834
  }
843
- ._checkbox_1dvo4_39 {
844
- height: unset;
835
+ ._checkbox_1bdji_39 {
836
+ height: unset !important;
845
837
  }
846
- ._selected-row_1dvo4_43 td.el-table__cell {
838
+ ._selected-row_1bdji_43 td.el-table__cell {
847
839
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light)) !important;
848
840
  }
841
+ ._status-text_1bdji_47 {
842
+ padding: 12px;
843
+ display: flex;
844
+ align-items: center;
845
+ justify-content: flex-start;
846
+ column-gap: 4px;
847
+ }
848
+ ._sentinel_1bdji_55 {
849
+ height: 0;
850
+ }
849
851
  /* source: src/components/explorer-tools/components/column-setter.vue,src/components/explorer-tools/explorer-tools.vue */
850
852
  ._header_8k9xf_1 {
851
853
  display: flex;
@@ -1381,25 +1383,39 @@ div._input-width_wnpjs_1 {
1381
1383
  fill: currentcolor;
1382
1384
  }
1383
1385
  /* source: src/components/scrollbar/scrollbar.vue */
1384
- ._scrollbar_edxkl_1 {
1386
+ ._scrollbar_1gbhe_1 {
1385
1387
  display: flex;
1386
1388
  flex-direction: column;
1387
1389
  flex-grow: 1;
1388
1390
  }
1389
- ._scrollbar_edxkl_1 > .el-scrollbar__wrap {
1391
+ ._scrollbar_1gbhe_1 > .el-scrollbar__wrap {
1390
1392
  flex-grow: 1;
1391
1393
  flex-direction: column;
1392
1394
  display: flex;
1393
1395
  }
1394
- ._scrollbar_edxkl_1 > .el-scrollbar__wrap > .el-scrollbar__view {
1396
+ ._scrollbar_1gbhe_1 > .el-scrollbar__wrap > .el-scrollbar__view {
1395
1397
  display: flex;
1396
1398
  flex-direction: column;
1397
1399
  flex-grow: 1;
1398
- margin: var(--v0912858a);
1400
+ margin: var(--d31e596a);
1399
1401
  }
1400
- ._fill-height_edxkl_18 {
1402
+ ._fill-height_1gbhe_18 {
1401
1403
  height: 10px;
1402
1404
  }
1405
+ ._sentinel_1gbhe_22 {
1406
+ height: auto;
1407
+ }
1408
+ ._loading_1gbhe_26 {
1409
+ padding: 12px;
1410
+ display: flex;
1411
+ align-items: center;
1412
+ justify-content: center;
1413
+ column-gap: 4px;
1414
+ }
1415
+ ._status-text_1gbhe_34 {
1416
+ padding: 12px;
1417
+ text-align: center;
1418
+ }
1403
1419
  /* source: src/components/select/select.vue */
1404
1420
  ._popper_jk1e7_1 .el-select-dropdown__item.is-hovering {
1405
1421
  background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wfrog/vc-ui",
3
- "version": "1.13.0",
3
+ "version": "1.13.2",
4
4
  "packageManager": "pnpm@10.20.0",
5
5
  "description": "vue3 组件库 vc-ui",
6
6
  "author": "wellfrog",