@wfrog/vc-ui 1.12.1 → 1.12.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.
- package/dist/es/components/button/button.mjs +2 -3
- package/dist/es/components/cdn-tag.vue.d.ts +5 -0
- package/dist/es/components/choice/choice.d.ts +0 -4
- package/dist/es/components/choice/choice.mjs +6 -21
- package/dist/es/components/choice/choice.vue.d.ts +1 -6
- package/dist/es/components/currency/currency.mjs +3 -4
- package/dist/es/components/daterange-picker/daterange-picker.d.ts +0 -3
- package/dist/es/components/daterange-picker/daterange-picker.mjs +4 -21
- package/dist/es/components/daterange-picker/daterange-picker.vue.d.ts +0 -5
- package/dist/es/components/explorer-form/explorer-form.vue.d.ts +16 -16
- package/dist/es/components/explorer-modal-form/explorer-modal-form.mjs +2 -3
- package/dist/es/components/explorer-modal-form/explorer-modal-form.vue.d.ts +16 -16
- package/dist/es/components/explorer-query/explorer-query.vue.d.ts +10 -10
- package/dist/es/components/form-item/form-item.d.ts +2 -0
- package/dist/es/components/form-item/form-item.mjs +26 -10
- package/dist/es/components/form-item/form-item.vue.d.ts +4 -1
- package/dist/es/components/form-item/index.css +9 -2
- package/dist/es/components/icon-picker/icon-picker.mjs +3 -3
- package/dist/es/components/icon-picker/index.css +1 -1
- package/dist/es/components/info-tooltip/index.css +2 -2
- package/dist/es/components/info-tooltip/info-tooltip.d.ts +1 -0
- package/dist/es/components/info-tooltip/info-tooltip.mjs +3 -2
- package/dist/es/components/input/index.css +1 -1
- package/dist/es/components/input/input.d.ts +0 -5
- package/dist/es/components/input/input.mjs +4 -23
- package/dist/es/components/input/input.vue.d.ts +1 -8
- package/dist/es/components/input-number/index.css +1 -1
- package/dist/es/components/input-number/input-number.d.ts +6 -2
- package/dist/es/components/input-number/input-number.mjs +3 -12
- package/dist/es/components/input-number/input-number.vue.d.ts +2 -3
- package/dist/es/components/pca-picker/index.css +1 -1
- package/dist/es/components/pca-picker/pca-picker.mjs +2 -10
- package/dist/es/components/select/index.css +1 -1
- package/dist/es/components/select/select.d.ts +0 -5
- package/dist/es/components/select/select.mjs +5 -24
- package/dist/es/components/select/select.vue.d.ts +1 -8
- package/dist/es/components/switch/switch.mjs +1 -1
- package/dist/es/components/tags/tags.d.ts +6 -0
- package/dist/es/components/thousand-input/thousand-input.d.ts +0 -1
- package/dist/es/components/thousand-input/thousand-input.mjs +1 -2
- package/dist/es/components/thousand-input/thousand-input.vue.d.ts +8 -36
- package/dist/es/components/upload-file/index.css +14 -8
- package/dist/es/components/upload-file/upload-file.d.ts +1 -0
- package/dist/es/components/upload-file/upload-file.mjs +13 -9
- package/dist/es/components/upload-file/upload-file.vue.d.ts +1 -0
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +30 -17
- package/package.json +1 -1
|
@@ -11,10 +11,7 @@ declare function __VLS_template(): {
|
|
|
11
11
|
$data: {};
|
|
12
12
|
$props: {
|
|
13
13
|
readonly width?: string | number | undefined;
|
|
14
|
-
readonly disabled?: boolean | undefined;
|
|
15
14
|
readonly clearable?: boolean | undefined;
|
|
16
|
-
readonly onBlur?: ((evnet: FocusEvent) => any) | undefined;
|
|
17
|
-
readonly onChange?: ((value: string, evnet?: Event | undefined) => any) | undefined;
|
|
18
15
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
19
16
|
$attrs: {
|
|
20
17
|
[x: string]: unknown;
|
|
@@ -434,12 +431,9 @@ declare function __VLS_template(): {
|
|
|
434
431
|
$root: ComponentPublicInstance | null;
|
|
435
432
|
$parent: ComponentPublicInstance | null;
|
|
436
433
|
$host: Element | null;
|
|
437
|
-
$emit: (
|
|
434
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
438
435
|
$el: any;
|
|
439
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('../input/input').IInputProps> & Readonly<{
|
|
440
|
-
onBlur?: ((evnet: FocusEvent) => any) | undefined;
|
|
441
|
-
onChange?: ((value: string, evnet?: Event | undefined) => any) | undefined;
|
|
442
|
-
}>, {
|
|
436
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../input/input').IInputProps> & Readonly<{}>, {
|
|
443
437
|
inputRef: Readonly<globalThis.ShallowRef<({
|
|
444
438
|
$: import('vue').ComponentInternalInstance;
|
|
445
439
|
$data: {};
|
|
@@ -845,11 +839,7 @@ declare function __VLS_template(): {
|
|
|
845
839
|
append?: (props: {}) => any;
|
|
846
840
|
};
|
|
847
841
|
}) | null>>;
|
|
848
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}
|
|
849
|
-
blur: (evnet: FocusEvent) => any;
|
|
850
|
-
change: (value: string, evnet?: Event | undefined) => any;
|
|
851
|
-
}, string, {
|
|
852
|
-
disabled: boolean;
|
|
842
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
853
843
|
clearable: boolean;
|
|
854
844
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
855
845
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -872,12 +862,8 @@ declare function __VLS_template(): {
|
|
|
872
862
|
$nextTick: typeof import('vue').nextTick;
|
|
873
863
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
874
864
|
} & Readonly<{
|
|
875
|
-
disabled: boolean;
|
|
876
865
|
clearable: boolean;
|
|
877
|
-
}> & Omit<Readonly<import('../input/input').IInputProps> & Readonly<{
|
|
878
|
-
onBlur?: ((evnet: FocusEvent) => any) | undefined;
|
|
879
|
-
onChange?: ((value: string, evnet?: Event | undefined) => any) | undefined;
|
|
880
|
-
}>, "inputRef" | ("disabled" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
866
|
+
}> & Omit<Readonly<import('../input/input').IInputProps> & Readonly<{}>, "inputRef" | "clearable"> & import('vue').ShallowUnwrapRef<{
|
|
881
867
|
inputRef: Readonly<globalThis.ShallowRef<({
|
|
882
868
|
$: import('vue').ComponentInternalInstance;
|
|
883
869
|
$data: {};
|
|
@@ -1314,10 +1300,7 @@ declare const __VLS_component: import('vue').DefineComponent<IThousandInputProps
|
|
|
1314
1300
|
$data: {};
|
|
1315
1301
|
$props: {
|
|
1316
1302
|
readonly width?: string | number | undefined;
|
|
1317
|
-
readonly disabled?: boolean | undefined;
|
|
1318
1303
|
readonly clearable?: boolean | undefined;
|
|
1319
|
-
readonly onBlur?: ((evnet: FocusEvent) => any) | undefined;
|
|
1320
|
-
readonly onChange?: ((value: string, evnet?: Event | undefined) => any) | undefined;
|
|
1321
1304
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1322
1305
|
$attrs: {
|
|
1323
1306
|
[x: string]: unknown;
|
|
@@ -1737,12 +1720,9 @@ declare const __VLS_component: import('vue').DefineComponent<IThousandInputProps
|
|
|
1737
1720
|
$root: ComponentPublicInstance | null;
|
|
1738
1721
|
$parent: ComponentPublicInstance | null;
|
|
1739
1722
|
$host: Element | null;
|
|
1740
|
-
$emit: (
|
|
1723
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
1741
1724
|
$el: any;
|
|
1742
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('../input/input').IInputProps> & Readonly<{
|
|
1743
|
-
onBlur?: ((evnet: FocusEvent) => any) | undefined;
|
|
1744
|
-
onChange?: ((value: string, evnet?: Event | undefined) => any) | undefined;
|
|
1745
|
-
}>, {
|
|
1725
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../input/input').IInputProps> & Readonly<{}>, {
|
|
1746
1726
|
inputRef: Readonly<globalThis.ShallowRef<({
|
|
1747
1727
|
$: import('vue').ComponentInternalInstance;
|
|
1748
1728
|
$data: {};
|
|
@@ -2148,11 +2128,7 @@ declare const __VLS_component: import('vue').DefineComponent<IThousandInputProps
|
|
|
2148
2128
|
append?: (props: {}) => any;
|
|
2149
2129
|
};
|
|
2150
2130
|
}) | null>>;
|
|
2151
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}
|
|
2152
|
-
blur: (evnet: FocusEvent) => any;
|
|
2153
|
-
change: (value: string, evnet?: Event | undefined) => any;
|
|
2154
|
-
}, string, {
|
|
2155
|
-
disabled: boolean;
|
|
2131
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
2156
2132
|
clearable: boolean;
|
|
2157
2133
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2158
2134
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -2175,12 +2151,8 @@ declare const __VLS_component: import('vue').DefineComponent<IThousandInputProps
|
|
|
2175
2151
|
$nextTick: typeof import('vue').nextTick;
|
|
2176
2152
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
2177
2153
|
} & Readonly<{
|
|
2178
|
-
disabled: boolean;
|
|
2179
2154
|
clearable: boolean;
|
|
2180
|
-
}> & Omit<Readonly<import('../input/input').IInputProps> & Readonly<{
|
|
2181
|
-
onBlur?: ((evnet: FocusEvent) => any) | undefined;
|
|
2182
|
-
onChange?: ((value: string, evnet?: Event | undefined) => any) | undefined;
|
|
2183
|
-
}>, "inputRef" | ("disabled" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
2155
|
+
}> & Omit<Readonly<import('../input/input').IInputProps> & Readonly<{}>, "inputRef" | "clearable"> & import('vue').ShallowUnwrapRef<{
|
|
2184
2156
|
inputRef: Readonly<globalThis.ShallowRef<({
|
|
2185
2157
|
$: import('vue').ComponentInternalInstance;
|
|
2186
2158
|
$data: {};
|
|
@@ -1,30 +1,36 @@
|
|
|
1
1
|
/* source: src/components/upload-file/upload-file.vue */
|
|
2
|
-
.
|
|
2
|
+
._uploader_xut4u_1 {
|
|
3
3
|
display: inline-block;
|
|
4
4
|
}
|
|
5
|
-
.
|
|
5
|
+
._uploader_xut4u_1 .el-upload {
|
|
6
6
|
position: relative;
|
|
7
7
|
overflow: hidden;
|
|
8
8
|
cursor: pointer;
|
|
9
9
|
}
|
|
10
|
-
.
|
|
10
|
+
._uploader_xut4u_1.upload-type-image .el-upload {
|
|
11
11
|
font-size: 0;
|
|
12
12
|
border: 1px dashed var(--el-border-color);
|
|
13
13
|
border-radius: 6px;
|
|
14
14
|
}
|
|
15
|
-
.
|
|
15
|
+
._uploader_xut4u_1.upload-type-image .el-upload:not(.is-disabled):hover {
|
|
16
16
|
border-color: var(--el-color-primary);
|
|
17
17
|
}
|
|
18
|
-
.
|
|
18
|
+
._uploader_xut4u_1 .is-disabled .el-icon:hover {
|
|
19
|
+
color: var(--el-color-text-secondary);
|
|
20
|
+
}
|
|
21
|
+
._uploader_xut4u_1 .is-disabled {
|
|
22
|
+
cursor: not-allowed;
|
|
23
|
+
}
|
|
24
|
+
._icon_xut4u_24 {
|
|
19
25
|
color: var(--el-color-text-secondary);
|
|
20
26
|
text-align: center;
|
|
21
27
|
}
|
|
22
|
-
.
|
|
28
|
+
._icon_xut4u_24:hover {
|
|
23
29
|
color: var(--el-color-primary);
|
|
24
30
|
}
|
|
25
|
-
.
|
|
31
|
+
._photo_xut4u_32 {
|
|
26
32
|
display: block;
|
|
27
33
|
}
|
|
28
|
-
.
|
|
34
|
+
._photo_xut4u_32 img {
|
|
29
35
|
border-radius: 6px;
|
|
30
36
|
}
|
|
@@ -2,7 +2,7 @@ import './index.css'
|
|
|
2
2
|
import { defineComponent, ref, computed, withDirectives, createBlock, openBlock, unref, normalizeClass, withCtx, createElementBlock, createCommentVNode, renderSlot, Fragment, normalizeStyle, createTextVNode, createVNode, toDisplayString, nextTick } from 'vue';
|
|
3
3
|
import { C as Component$3, i as index } from '../cropper/cropper.mjs';
|
|
4
4
|
import '../../chunk/D9iEroQw.mjs';
|
|
5
|
-
import { ElUpload, ElImage, vLoading } from 'element-plus';
|
|
5
|
+
import { useFormDisabled, ElUpload, ElImage, vLoading } from 'element-plus';
|
|
6
6
|
import { C as Component$2 } from '../button/button.mjs';
|
|
7
7
|
import { C as Component$1 } from '../el-icon/el-icon.mjs';
|
|
8
8
|
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
@@ -35,12 +35,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
35
35
|
httpRequest: {},
|
|
36
36
|
beforeUpload: {},
|
|
37
37
|
cropper: { type: Boolean, default: false },
|
|
38
|
-
cropperOption: { default: () => ({}) }
|
|
38
|
+
cropperOption: { default: () => ({}) },
|
|
39
|
+
disabled: { type: Boolean, default: void 0 }
|
|
39
40
|
},
|
|
40
41
|
emits: ["error"],
|
|
41
42
|
setup(__props, { emit: __emit }) {
|
|
42
43
|
const props = __props;
|
|
43
44
|
const emits = __emit;
|
|
45
|
+
const formDisabled = useFormDisabled();
|
|
44
46
|
const loading = ref(false);
|
|
45
47
|
const imgSrc = ref("");
|
|
46
48
|
const visible = ref(false);
|
|
@@ -124,7 +126,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
124
126
|
"show-file-list": false,
|
|
125
127
|
accept: __props.accept,
|
|
126
128
|
"http-request": handleHttpRequest,
|
|
127
|
-
"before-upload": handleBeforeUpload
|
|
129
|
+
"before-upload": handleBeforeUpload,
|
|
130
|
+
disabled: unref(formDisabled)
|
|
128
131
|
}, {
|
|
129
132
|
default: withCtx(() => [
|
|
130
133
|
isImageType.value ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
@@ -150,13 +153,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
150
153
|
createVNode(Component$2, {
|
|
151
154
|
size: btnOptions.value.size,
|
|
152
155
|
type: btnOptions.value.type,
|
|
153
|
-
icon: { name: btnOptions.value.icon }
|
|
156
|
+
icon: { name: btnOptions.value.icon },
|
|
157
|
+
disabled: unref(formDisabled)
|
|
154
158
|
}, {
|
|
155
159
|
default: withCtx(() => [
|
|
156
160
|
createTextVNode(toDisplayString(btnOptions.value.text), 1)
|
|
157
161
|
]),
|
|
158
162
|
_: 1
|
|
159
|
-
}, 8, ["size", "type", "icon"])
|
|
163
|
+
}, 8, ["size", "type", "icon", "disabled"])
|
|
160
164
|
]) : createCommentVNode("", true),
|
|
161
165
|
__props.cropper && image.value ? (openBlock(), createBlock(Component$3, {
|
|
162
166
|
key: 2,
|
|
@@ -170,16 +174,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
170
174
|
}, null, 8, ["visible", "image", "option"])) : createCommentVNode("", true)
|
|
171
175
|
]),
|
|
172
176
|
_: 3
|
|
173
|
-
}, 8, ["class", "accept"])), [
|
|
177
|
+
}, 8, ["class", "accept", "disabled"])), [
|
|
174
178
|
[unref(vLoading), loading.value]
|
|
175
179
|
]);
|
|
176
180
|
};
|
|
177
181
|
}
|
|
178
182
|
});
|
|
179
183
|
|
|
180
|
-
/* unplugin-vue-components disabled */const uploader = "
|
|
181
|
-
const icon = "
|
|
182
|
-
const photo = "
|
|
184
|
+
/* unplugin-vue-components disabled */const uploader = "_uploader_xut4u_1";
|
|
185
|
+
const icon = "_icon_xut4u_24";
|
|
186
|
+
const photo = "_photo_xut4u_32";
|
|
183
187
|
const style0 = {
|
|
184
188
|
uploader: uploader,
|
|
185
189
|
icon: icon,
|
|
@@ -15,6 +15,7 @@ declare const __VLS_component: import('vue').DefineComponent<IUploadFileProps, {
|
|
|
15
15
|
}>, {
|
|
16
16
|
cropper: boolean;
|
|
17
17
|
type: "image" | "button";
|
|
18
|
+
disabled: boolean;
|
|
18
19
|
accept: string;
|
|
19
20
|
imageOptions: Partial<import('./upload-file').IImageOptions>;
|
|
20
21
|
buttonOptions: Partial<import('./upload-file').IButtonOptions>;
|
package/dist/es/index.mjs
CHANGED
|
@@ -162,7 +162,7 @@ const __vite_glob_0_50 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
162
162
|
default: _sfc_main$8
|
|
163
163
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
164
164
|
|
|
165
|
-
const version = "1.12.
|
|
165
|
+
const version = "1.12.2";
|
|
166
166
|
|
|
167
167
|
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/upload-file/upload-file.vue": __vite_glob_0_61});
|
|
168
168
|
const upper = (_, letter) => letter.toUpperCase();
|
package/dist/index.css
CHANGED
|
@@ -993,13 +993,20 @@ div._explorer_volay_1 :glbal ._el-splitter__mask_volay_9 {
|
|
|
993
993
|
transform: translateX(0);
|
|
994
994
|
}
|
|
995
995
|
/* source: src/components/form-item/form-item.vue */
|
|
996
|
-
.
|
|
996
|
+
._form-item_wfdaa_1 .el-form-item__label {
|
|
997
|
+
display: flex;
|
|
998
|
+
}
|
|
999
|
+
._label-container_wfdaa_5 {
|
|
997
1000
|
display: inline-flex;
|
|
998
1001
|
align-items: center;
|
|
999
1002
|
justify-content: center;
|
|
1000
1003
|
}
|
|
1001
|
-
.
|
|
1004
|
+
._no-edit-icon_wfdaa_11 {
|
|
1005
|
+
color: var(--el-color-warning);
|
|
1006
|
+
}
|
|
1007
|
+
._label_wfdaa_5 {
|
|
1002
1008
|
margin-right: 4px;
|
|
1009
|
+
margin-left: var(--v3d30eb40);
|
|
1003
1010
|
}
|
|
1004
1011
|
/* source: src/components/gen-input/gen-input.vue */
|
|
1005
1012
|
._gen-input_1q48e_1 {
|
|
@@ -1132,7 +1139,7 @@ button._collections-button_13zo4_15 .el-icon {
|
|
|
1132
1139
|
justify-content: center;
|
|
1133
1140
|
}._input_yhkzo_1 .el-input-group__prepend {
|
|
1134
1141
|
padding: 0 4px;
|
|
1135
|
-
cursor: var(--
|
|
1142
|
+
cursor: var(--v7b0172e0);
|
|
1136
1143
|
}
|
|
1137
1144
|
/* source: src/components/iconify-icon/iconify-icon.vue */
|
|
1138
1145
|
._icon_1v0e5_1 {
|
|
@@ -1176,7 +1183,7 @@ button._collections-button_13zo4_15 .el-icon {
|
|
|
1176
1183
|
font-size: 0.7em;
|
|
1177
1184
|
border-radius: 12px;
|
|
1178
1185
|
cursor: pointer;
|
|
1179
|
-
transform: translateY(var(--
|
|
1186
|
+
transform: translateY(var(--v77b9e69f));
|
|
1180
1187
|
box-sizing: border-box;
|
|
1181
1188
|
}
|
|
1182
1189
|
._letter_1hm7m_1:hover {
|
|
@@ -1186,7 +1193,7 @@ button._collections-button_13zo4_15 .el-icon {
|
|
|
1186
1193
|
._icon_1hm7m_19 {
|
|
1187
1194
|
cursor: pointer;
|
|
1188
1195
|
outline: none;
|
|
1189
|
-
transform: translateY(var(--
|
|
1196
|
+
transform: translateY(var(--v77b9e69f));
|
|
1190
1197
|
}
|
|
1191
1198
|
._icon_1hm7m_19:hover {
|
|
1192
1199
|
color: var(--el-color-primary);
|
|
@@ -1214,7 +1221,7 @@ div._input-number_1e1b7_1.input-with-select .el-input-group__prepend {
|
|
|
1214
1221
|
background-color: var(--el-fill-color-blank);
|
|
1215
1222
|
}
|
|
1216
1223
|
div._input-number-width_1e1b7_18 {
|
|
1217
|
-
width: var(--
|
|
1224
|
+
width: var(--v437b2bda);
|
|
1218
1225
|
}
|
|
1219
1226
|
div._el-input-number_1e1b7_22 {
|
|
1220
1227
|
display: flex;
|
|
@@ -1223,7 +1230,7 @@ div._el-input-number_1e1b7_22 {
|
|
|
1223
1230
|
}
|
|
1224
1231
|
/* source: src/components/input/input.vue */
|
|
1225
1232
|
div._input-width_wnpjs_1 {
|
|
1226
|
-
width: var(--
|
|
1233
|
+
width: var(--v3cee380c);
|
|
1227
1234
|
}
|
|
1228
1235
|
/* source: src/components/pca-picker/components/elevator-item.vue,src/components/pca-picker/components/c.vue,src/components/pca-picker/pca-picker.vue */
|
|
1229
1236
|
._label_1xb4h_1 {
|
|
@@ -1316,7 +1323,7 @@ div._input-width_wnpjs_1 {
|
|
|
1316
1323
|
display: none;
|
|
1317
1324
|
}
|
|
1318
1325
|
._wrapper-width_qj0am_20 {
|
|
1319
|
-
width: var(--
|
|
1326
|
+
width: var(--v09c004fc);
|
|
1320
1327
|
}
|
|
1321
1328
|
._cascader_qj0am_24 {
|
|
1322
1329
|
width: 100%;
|
|
@@ -1392,7 +1399,7 @@ div._input-width_wnpjs_1 {
|
|
|
1392
1399
|
}
|
|
1393
1400
|
/* source: src/components/select/select.vue */
|
|
1394
1401
|
div._select-width_140qa_1 {
|
|
1395
|
-
width: var(--
|
|
1402
|
+
width: var(--d4752262);
|
|
1396
1403
|
}
|
|
1397
1404
|
/* source: src/components/single-player/single-player.vue */
|
|
1398
1405
|
._main_15lus_1 {
|
|
@@ -1767,32 +1774,38 @@ span._draggable_1tp7v_5 > * {
|
|
|
1767
1774
|
display: none;
|
|
1768
1775
|
}
|
|
1769
1776
|
/* source: src/components/upload-file/upload-file.vue */
|
|
1770
|
-
.
|
|
1777
|
+
._uploader_xut4u_1 {
|
|
1771
1778
|
display: inline-block;
|
|
1772
1779
|
}
|
|
1773
|
-
.
|
|
1780
|
+
._uploader_xut4u_1 .el-upload {
|
|
1774
1781
|
position: relative;
|
|
1775
1782
|
overflow: hidden;
|
|
1776
1783
|
cursor: pointer;
|
|
1777
1784
|
}
|
|
1778
|
-
.
|
|
1785
|
+
._uploader_xut4u_1.upload-type-image .el-upload {
|
|
1779
1786
|
font-size: 0;
|
|
1780
1787
|
border: 1px dashed var(--el-border-color);
|
|
1781
1788
|
border-radius: 6px;
|
|
1782
1789
|
}
|
|
1783
|
-
.
|
|
1790
|
+
._uploader_xut4u_1.upload-type-image .el-upload:not(.is-disabled):hover {
|
|
1784
1791
|
border-color: var(--el-color-primary);
|
|
1785
1792
|
}
|
|
1786
|
-
.
|
|
1793
|
+
._uploader_xut4u_1 .is-disabled .el-icon:hover {
|
|
1794
|
+
color: var(--el-color-text-secondary);
|
|
1795
|
+
}
|
|
1796
|
+
._uploader_xut4u_1 .is-disabled {
|
|
1797
|
+
cursor: not-allowed;
|
|
1798
|
+
}
|
|
1799
|
+
._icon_xut4u_24 {
|
|
1787
1800
|
color: var(--el-color-text-secondary);
|
|
1788
1801
|
text-align: center;
|
|
1789
1802
|
}
|
|
1790
|
-
.
|
|
1803
|
+
._icon_xut4u_24:hover {
|
|
1791
1804
|
color: var(--el-color-primary);
|
|
1792
1805
|
}
|
|
1793
|
-
.
|
|
1806
|
+
._photo_xut4u_32 {
|
|
1794
1807
|
display: block;
|
|
1795
1808
|
}
|
|
1796
|
-
.
|
|
1809
|
+
._photo_xut4u_32 img {
|
|
1797
1810
|
border-radius: 6px;
|
|
1798
1811
|
}
|