@wfrog/vc-ui 1.9.12 → 1.9.13
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/dist/es/components/cdn-tag.vue.d.ts +5 -0
- package/dist/es/components/explorer/explorer.mjs +2 -2
- package/dist/es/components/explorer/index.css +2 -2
- package/dist/es/components/explorer-column-table/explorer-column-table.mjs +1 -1
- package/dist/es/components/explorer-column-table/explorer-column-table.vue.d.ts +1470 -0
- package/dist/es/components/explorer-form/explorer-form.mjs +1 -0
- package/dist/es/components/explorer-modal-form/explorer-modal-form.mjs +2 -2
- package/dist/es/components/explorer-modal-form/index.css +4 -3
- package/dist/es/components/explorer-tools/components/column-setter.vue.d.ts +6314 -434
- package/dist/es/components/icon-picker/components/collections.vue.d.ts +5 -5
- package/dist/es/components/icon-picker/icon-picker.mjs +1 -1
- package/dist/es/components/scrollbar/index.css +1 -1
- package/dist/es/components/scrollbar/scrollbar.mjs +2 -2
- package/dist/es/components/scrollbar/scrollbar.vue.d.ts +2 -2
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +7 -6
- package/package.json +1 -1
|
@@ -226,7 +226,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
226
226
|
$emit: (event: string, ...args: any[]) => void;
|
|
227
227
|
$el: any;
|
|
228
228
|
$options: import('vue').ComponentOptionsBase<Readonly<import('../../scrollbar/scrollbar').IScrollbarProps> & Readonly<{}>, {
|
|
229
|
-
|
|
229
|
+
scrollbarRef: Readonly<globalThis.ShallowRef<({
|
|
230
230
|
$: import('vue').ComponentInternalInstance;
|
|
231
231
|
$data: {};
|
|
232
232
|
$props: Partial<{
|
|
@@ -420,7 +420,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
420
420
|
$slots: {
|
|
421
421
|
default?: (props: {}) => any;
|
|
422
422
|
};
|
|
423
|
-
}) | null
|
|
423
|
+
}) | null>>;
|
|
424
424
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
425
425
|
flex: boolean;
|
|
426
426
|
fillHeight: boolean;
|
|
@@ -449,8 +449,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
449
449
|
flex: boolean;
|
|
450
450
|
fillHeight: boolean;
|
|
451
451
|
viewMargin: string;
|
|
452
|
-
}> & Omit<Readonly<import('../../scrollbar/scrollbar').IScrollbarProps> & Readonly<{}>, ("flex" | "fillHeight" | "viewMargin") | "
|
|
453
|
-
|
|
452
|
+
}> & Omit<Readonly<import('../../scrollbar/scrollbar').IScrollbarProps> & Readonly<{}>, ("flex" | "fillHeight" | "viewMargin") | "scrollbarRef"> & import('vue').ShallowUnwrapRef<{
|
|
453
|
+
scrollbarRef: Readonly<globalThis.ShallowRef<({
|
|
454
454
|
$: import('vue').ComponentInternalInstance;
|
|
455
455
|
$data: {};
|
|
456
456
|
$props: Partial<{
|
|
@@ -644,7 +644,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
644
644
|
$slots: {
|
|
645
645
|
default?: (props: {}) => any;
|
|
646
646
|
};
|
|
647
|
-
}) | null
|
|
647
|
+
}) | null>>;
|
|
648
648
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
649
649
|
$slots: {
|
|
650
650
|
default?(_: {}): any;
|
|
@@ -135,7 +135,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
135
135
|
const keyword = ref("");
|
|
136
136
|
const handleSearch = debounce(() => {
|
|
137
137
|
search(keyword.value);
|
|
138
|
-
scrollbarRef.value?.
|
|
138
|
+
scrollbarRef.value?.scrollbarRef?.setScrollTop(0);
|
|
139
139
|
}, 500);
|
|
140
140
|
function handleChoice(e) {
|
|
141
141
|
let target = e.target;
|
|
@@ -13,10 +13,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
13
13
|
},
|
|
14
14
|
setup(__props, { expose: __expose }) {
|
|
15
15
|
useCssVars((_ctx) => ({
|
|
16
|
-
"
|
|
16
|
+
"v21687dc8": _ctx.viewMargin
|
|
17
17
|
}));
|
|
18
18
|
const scrollbarRef = useTemplateRef("scrollbarRef");
|
|
19
|
-
__expose({
|
|
19
|
+
__expose({ scrollbarRef });
|
|
20
20
|
return (_ctx, _cache) => {
|
|
21
21
|
const _component_ElScrollbar = ElScrollbar;
|
|
22
22
|
return openBlock(), createBlock(_component_ElScrollbar, mergeProps({
|
|
@@ -205,7 +205,7 @@ declare function __VLS_template(): {
|
|
|
205
205
|
};
|
|
206
206
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
207
207
|
declare const __VLS_component: import('vue').DefineComponent<IScrollbarProps, {
|
|
208
|
-
|
|
208
|
+
scrollbarRef: Readonly<globalThis.ShallowRef<({
|
|
209
209
|
$: import('vue').ComponentInternalInstance;
|
|
210
210
|
$data: {};
|
|
211
211
|
$props: Partial<{
|
|
@@ -399,7 +399,7 @@ declare const __VLS_component: import('vue').DefineComponent<IScrollbarProps, {
|
|
|
399
399
|
$slots: {
|
|
400
400
|
default?: (props: {}) => any;
|
|
401
401
|
};
|
|
402
|
-
}) | null
|
|
402
|
+
}) | null>>;
|
|
403
403
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IScrollbarProps> & Readonly<{}>, {
|
|
404
404
|
flex: boolean;
|
|
405
405
|
fillHeight: boolean;
|
package/dist/es/index.mjs
CHANGED
|
@@ -156,7 +156,7 @@ const __vite_glob_0_47 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
156
156
|
default: _sfc_main$8
|
|
157
157
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
158
158
|
|
|
159
|
-
const version = "1.9.
|
|
159
|
+
const version = "1.9.13";
|
|
160
160
|
|
|
161
161
|
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-switcher/color-switcher.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-switcher/dark-switcher.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/icon-picker/icon-picker.vue": __vite_glob_0_34,"./components/icon/icon.vue": __vite_glob_0_35,"./components/iconify-icon/iconify-icon.vue": __vite_glob_0_36,"./components/image/image.vue": __vite_glob_0_37,"./components/input-number/input-number.vue": __vite_glob_0_38,"./components/input/input.vue": __vite_glob_0_39,"./components/pca-picker/pca-picker.vue": __vite_glob_0_40,"./components/qr-code/qr-code.vue": __vite_glob_0_41,"./components/screenfull/screenfull.vue": __vite_glob_0_42,"./components/scrollbar/scrollbar.vue": __vite_glob_0_43,"./components/select/select.vue": __vite_glob_0_44,"./components/single-player/single-player.vue": __vite_glob_0_45,"./components/splitter-panel/splitter-panel.vue": __vite_glob_0_46,"./components/splitter/splitter.vue": __vite_glob_0_47,"./components/svg-icon/svg-icon.vue": __vite_glob_0_48,"./components/switch/switch.vue": __vite_glob_0_49,"./components/sync-scroll-container/sync-scroll-container.vue": __vite_glob_0_50,"./components/tags/tags.vue": __vite_glob_0_51,"./components/text-ellipsis/text-ellipsis.vue": __vite_glob_0_52,"./components/thousand-input/thousand-input.vue": __vite_glob_0_53,"./components/tinymce/tinymce.vue": __vite_glob_0_54,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_55,"./components/transfer/transfer.vue": __vite_glob_0_56,"./components/tree-picker/tree-picker.vue": __vite_glob_0_57,"./components/upload-file/upload-file.vue": __vite_glob_0_58});
|
|
162
162
|
const upper = (_, letter) => letter.toUpperCase();
|
package/dist/index.css
CHANGED
|
@@ -752,16 +752,17 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
752
752
|
margin: 0 -8px;
|
|
753
753
|
}
|
|
754
754
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
755
|
-
.
|
|
755
|
+
._icon_1v6yb_1 {
|
|
756
756
|
margin-right: 4px;
|
|
757
757
|
font-size: var(--el-font-size-extra-large);
|
|
758
758
|
}
|
|
759
|
-
.
|
|
759
|
+
._form_1v6yb_6 {
|
|
760
760
|
display: flex;
|
|
761
761
|
flex-grow: 1;
|
|
762
762
|
align-items: flex-start;
|
|
763
|
+
flex-direction: column;
|
|
763
764
|
}
|
|
764
|
-
.
|
|
765
|
+
._form_1v6yb_6 > .el-row {
|
|
765
766
|
flex-grow: 1;
|
|
766
767
|
margin: 0 !important;
|
|
767
768
|
}
|
|
@@ -968,7 +969,7 @@ div._divider_8k9xf_21 {
|
|
|
968
969
|
margin: 0 -8px;
|
|
969
970
|
}
|
|
970
971
|
/* source: src/components/explorer/explorer.vue */
|
|
971
|
-
.
|
|
972
|
+
div._explorer_11uiv_1 {
|
|
972
973
|
border: 1px solid var(--el-border-color-lighter);
|
|
973
974
|
border-radius: var(--el-border-radius-base);
|
|
974
975
|
display: flex;
|
|
@@ -977,7 +978,7 @@ div._divider_8k9xf_21 {
|
|
|
977
978
|
background-color: var(--el-fill-color-blank);
|
|
978
979
|
box-sizing: border-box;
|
|
979
980
|
}
|
|
980
|
-
.
|
|
981
|
+
div._explorer_11uiv_1 :glbal ._el-splitter__mask_11uiv_10 {
|
|
981
982
|
z-index: 10000;
|
|
982
983
|
transform: translateX(0);
|
|
983
984
|
}
|
|
@@ -1326,7 +1327,7 @@ div._input_1vcoq_1._block_1vcoq_5 {
|
|
|
1326
1327
|
display: flex;
|
|
1327
1328
|
flex-direction: column;
|
|
1328
1329
|
flex-grow: 1;
|
|
1329
|
-
margin: var(--
|
|
1330
|
+
margin: var(--v21687dc8);
|
|
1330
1331
|
}
|
|
1331
1332
|
._fill-height_edxkl_18 {
|
|
1332
1333
|
height: 10px;
|