@wfrog/vc-ui 1.9.4 → 1.9.5
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/document.vue.d.ts +14 -0
- package/dist/es/components/example-wrapper.vue.d.ts +19 -0
- package/dist/es/components/explorer-form/explorer-form.mjs +11 -8
- package/dist/es/components/explorer-form/index.css +14 -6
- package/dist/es/components/explorer-modal-form/explorer-modal-form.mjs +7 -4
- package/dist/es/components/explorer-modal-form/index.css +9 -1
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +23 -7
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
+
data: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {};
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
7
|
+
data: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {
|
|
12
|
+
data: Record<string, any>;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {
|
|
5
|
+
direction: string;
|
|
6
|
+
}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: any;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -119,13 +119,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
119
119
|
rules: __props.form.rules,
|
|
120
120
|
disabled: __props.disabled || !unref(isEditing) || !__props.editable,
|
|
121
121
|
"require-asterisk-position": "right",
|
|
122
|
-
"label-position": __props.labelPosition
|
|
122
|
+
"label-position": __props.labelPosition,
|
|
123
|
+
class: _ctx.$style.form
|
|
123
124
|
}), {
|
|
124
125
|
default: withCtx(() => [
|
|
125
126
|
renderSlot(_ctx.$slots, "default")
|
|
126
127
|
]),
|
|
127
128
|
_: 3
|
|
128
|
-
}, 16, ["model", "rules", "disabled", "label-position"])
|
|
129
|
+
}, 16, ["model", "rules", "disabled", "label-position", "class"])
|
|
129
130
|
]),
|
|
130
131
|
_: 3
|
|
131
132
|
})
|
|
@@ -136,15 +137,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
136
137
|
}
|
|
137
138
|
});
|
|
138
139
|
|
|
139
|
-
/* unplugin-vue-components disabled */const header = "
|
|
140
|
-
const icon = "
|
|
141
|
-
const actions = "
|
|
140
|
+
/* unplugin-vue-components disabled */const header = "_header_1qxzh_8";
|
|
141
|
+
const icon = "_icon_1qxzh_25";
|
|
142
|
+
const actions = "_actions_1qxzh_31";
|
|
143
|
+
const form = "_form_1qxzh_40";
|
|
142
144
|
const style0 = {
|
|
143
|
-
"explorer-form": "_explorer-
|
|
145
|
+
"explorer-form": "_explorer-form_1qxzh_1",
|
|
144
146
|
header: header,
|
|
145
|
-
"header-container": "_header-
|
|
147
|
+
"header-container": "_header-container_1qxzh_21",
|
|
146
148
|
icon: icon,
|
|
147
|
-
actions: actions
|
|
149
|
+
actions: actions,
|
|
150
|
+
form: form
|
|
148
151
|
};
|
|
149
152
|
|
|
150
153
|
const cssModules = {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/* source: src/components/explorer-form/explorer-form.vue */
|
|
2
|
-
._explorer-
|
|
2
|
+
._explorer-form_1qxzh_1 {
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
flex-grow: 1;
|
|
6
6
|
height: 100px;
|
|
7
7
|
}
|
|
8
|
-
.
|
|
8
|
+
._header_1qxzh_8 {
|
|
9
9
|
display: flex;
|
|
10
10
|
align-items: center;
|
|
11
11
|
justify-content: space-between;
|
|
@@ -17,19 +17,27 @@
|
|
|
17
17
|
flex-wrap: wrap;
|
|
18
18
|
row-gap: 8px;
|
|
19
19
|
}
|
|
20
|
-
._header-
|
|
20
|
+
._header-container_1qxzh_21 {
|
|
21
21
|
font-size: var(--el-font-size-medium);
|
|
22
22
|
}
|
|
23
|
-
.
|
|
23
|
+
._icon_1qxzh_25 {
|
|
24
24
|
margin-right: 4px;
|
|
25
25
|
font-size: var(--el-font-size-extra-large);
|
|
26
26
|
transform: translateY(1px);
|
|
27
27
|
}
|
|
28
|
-
.
|
|
28
|
+
._actions_1qxzh_31 {
|
|
29
29
|
display: flex;
|
|
30
30
|
align-items: center;
|
|
31
31
|
gap: 8px;
|
|
32
32
|
}
|
|
33
|
-
.
|
|
33
|
+
._actions_1qxzh_31 .el-button {
|
|
34
34
|
margin-left: 0 !important;
|
|
35
|
+
}
|
|
36
|
+
._form_1qxzh_40 {
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-grow: 1;
|
|
39
|
+
align-items: flex-start;
|
|
40
|
+
}
|
|
41
|
+
._form_1qxzh_40 > .el-row {
|
|
42
|
+
flex-grow: 1;
|
|
35
43
|
}
|
|
@@ -137,13 +137,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
137
137
|
disabled: __props.disabled || !unref(isEditing)
|
|
138
138
|
}, __props.formProps, {
|
|
139
139
|
model: __props.form.fields,
|
|
140
|
-
rules: __props.form.rules
|
|
140
|
+
rules: __props.form.rules,
|
|
141
|
+
class: _ctx.$style.form
|
|
141
142
|
}), {
|
|
142
143
|
default: withCtx(() => [
|
|
143
144
|
renderSlot(_ctx.$slots, "default")
|
|
144
145
|
]),
|
|
145
146
|
_: 3
|
|
146
|
-
}, 16, ["label-position", "disabled", "model", "rules"])), [
|
|
147
|
+
}, 16, ["label-position", "disabled", "model", "rules", "class"])), [
|
|
147
148
|
[_directive_loading, __props.loading]
|
|
148
149
|
])
|
|
149
150
|
]),
|
|
@@ -153,9 +154,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
153
154
|
}
|
|
154
155
|
});
|
|
155
156
|
|
|
156
|
-
/* unplugin-vue-components disabled */const icon = "
|
|
157
|
+
/* unplugin-vue-components disabled */const icon = "_icon_1g5hj_1";
|
|
158
|
+
const form = "_form_1g5hj_6";
|
|
157
159
|
const style0 = {
|
|
158
|
-
icon: icon
|
|
160
|
+
icon: icon,
|
|
161
|
+
form: form
|
|
159
162
|
};
|
|
160
163
|
|
|
161
164
|
const cssModules = {
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
2
|
-
.
|
|
2
|
+
._icon_1g5hj_1 {
|
|
3
3
|
margin-right: 4px;
|
|
4
4
|
font-size: var(--el-font-size-extra-large);
|
|
5
|
+
}
|
|
6
|
+
._form_1g5hj_6 {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-grow: 1;
|
|
9
|
+
align-items: flex-start;
|
|
10
|
+
}
|
|
11
|
+
._form_1g5hj_6 > .el-row {
|
|
12
|
+
flex-grow: 1;
|
|
5
13
|
}
|
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.5";
|
|
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
|
@@ -647,13 +647,13 @@ div._main_15a30_1 ._header_15a30_48 {
|
|
|
647
647
|
padding-top: var(--v42199fad);
|
|
648
648
|
}
|
|
649
649
|
/* source: src/components/explorer-form/explorer-form.vue */
|
|
650
|
-
._explorer-
|
|
650
|
+
._explorer-form_1qxzh_1 {
|
|
651
651
|
display: flex;
|
|
652
652
|
flex-direction: column;
|
|
653
653
|
flex-grow: 1;
|
|
654
654
|
height: 100px;
|
|
655
655
|
}
|
|
656
|
-
.
|
|
656
|
+
._header_1qxzh_8 {
|
|
657
657
|
display: flex;
|
|
658
658
|
align-items: center;
|
|
659
659
|
justify-content: space-between;
|
|
@@ -665,22 +665,30 @@ div._main_15a30_1 ._header_15a30_48 {
|
|
|
665
665
|
flex-wrap: wrap;
|
|
666
666
|
row-gap: 8px;
|
|
667
667
|
}
|
|
668
|
-
._header-
|
|
668
|
+
._header-container_1qxzh_21 {
|
|
669
669
|
font-size: var(--el-font-size-medium);
|
|
670
670
|
}
|
|
671
|
-
.
|
|
671
|
+
._icon_1qxzh_25 {
|
|
672
672
|
margin-right: 4px;
|
|
673
673
|
font-size: var(--el-font-size-extra-large);
|
|
674
674
|
transform: translateY(1px);
|
|
675
675
|
}
|
|
676
|
-
.
|
|
676
|
+
._actions_1qxzh_31 {
|
|
677
677
|
display: flex;
|
|
678
678
|
align-items: center;
|
|
679
679
|
gap: 8px;
|
|
680
680
|
}
|
|
681
|
-
.
|
|
681
|
+
._actions_1qxzh_31 .el-button {
|
|
682
682
|
margin-left: 0 !important;
|
|
683
683
|
}
|
|
684
|
+
._form_1qxzh_40 {
|
|
685
|
+
display: flex;
|
|
686
|
+
flex-grow: 1;
|
|
687
|
+
align-items: flex-start;
|
|
688
|
+
}
|
|
689
|
+
._form_1qxzh_40 > .el-row {
|
|
690
|
+
flex-grow: 1;
|
|
691
|
+
}
|
|
684
692
|
/* source: src/components/explorer-list/explorer-list.vue */
|
|
685
693
|
._item_1xqvz_1 {
|
|
686
694
|
padding: 4px 8px;
|
|
@@ -737,10 +745,18 @@ div._main_15a30_1 ._header_15a30_48 {
|
|
|
737
745
|
color: var(--el-text-color-secondary);
|
|
738
746
|
}
|
|
739
747
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
740
|
-
.
|
|
748
|
+
._icon_1g5hj_1 {
|
|
741
749
|
margin-right: 4px;
|
|
742
750
|
font-size: var(--el-font-size-extra-large);
|
|
743
751
|
}
|
|
752
|
+
._form_1g5hj_6 {
|
|
753
|
+
display: flex;
|
|
754
|
+
flex-grow: 1;
|
|
755
|
+
align-items: flex-start;
|
|
756
|
+
}
|
|
757
|
+
._form_1g5hj_6 > .el-row {
|
|
758
|
+
flex-grow: 1;
|
|
759
|
+
}
|
|
744
760
|
/* source: src/components/explorer-panel/explorer-panel.vue */
|
|
745
761
|
._panel_1egb6_1 {
|
|
746
762
|
display: flex;
|