mrxy-yk 0.0.1-beta.9 → 1.0.0
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/README.md +11 -6
- package/dist/@type/components/index.d.ts +12 -12
- package/dist/@type/config/index.d.ts +1 -4
- package/dist/@type/element-plus/components/attrs.d.ts +2 -2
- package/dist/@type/element-plus/components/images/index.d.ts +1 -1
- package/dist/@type/element-plus/components/index.d.ts +9 -9
- package/dist/@type/element-plus/components/upload/index.d.ts +3 -3
- package/dist/@type/element-plus/index.d.ts +0 -1
- package/dist/@type/index.d.ts +0 -1
- package/dist/components/index.es.js +12 -12
- package/dist/config/index.es.js +6 -10
- package/dist/element-plus/components/images/Images.vue.es.js +1 -1
- package/dist/element-plus/components/images/Images.vue.es2.js +2 -2
- package/dist/element-plus/components/images/index.es.js +2 -2
- package/dist/element-plus/components/index.es.js +9 -9
- package/dist/element-plus/components/upload/index.es.js +6 -6
- package/dist/element-plus/components/upload/upload-files/UploadFiles.vue.es.js +1 -1
- package/dist/element-plus/components/upload/upload-files/UploadFiles.vue.es2.js +4 -4
- package/dist/element-plus/components/upload/upload-images/UploadImages.vue.es.js +1 -1
- package/dist/element-plus/components/upload/upload-images/UploadImages.vue.es2.js +8 -7
- package/dist/element-plus/index.es.js +0 -19
- package/dist/index.es.js +7 -52
- package/dist/{styles/index.css → mrxy-yk.css} +1 -1
- package/dist/resolver/index.es.js +7 -4
- package/global.d.ts +44 -22
- package/package.json +17 -4
- package/web-types.json +79 -43
package/README.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
# yk
|
|
1
|
+
# mrxy-yk
|
|
2
|
+
|
|
3
|
+
## 快速开始
|
|
4
|
+
```shell
|
|
5
|
+
npm i mrxy-yk
|
|
6
|
+
```
|
|
2
7
|
|
|
3
8
|
## 全量引入
|
|
4
9
|
```typescript
|
|
5
10
|
// main.ts
|
|
6
|
-
import 'yk/styles/index.css'
|
|
7
|
-
import Yk from 'yk'
|
|
11
|
+
import 'mrxy-yk/styles/index.css'
|
|
12
|
+
import Yk from 'mrxy-yk'
|
|
8
13
|
|
|
9
14
|
const app = createApp(App)
|
|
10
15
|
app.use(Yk)
|
|
@@ -15,7 +20,7 @@ app.use(Yk)
|
|
|
15
20
|
```typescript
|
|
16
21
|
// vite.config.ts
|
|
17
22
|
import Components from 'unplugin-vue-components/vite'
|
|
18
|
-
import YkResolver from 'yk/resolver'
|
|
23
|
+
import YkResolver from 'mrxy-yk/resolver'
|
|
19
24
|
|
|
20
25
|
export default defineConfig({
|
|
21
26
|
plugins: [
|
|
@@ -28,7 +33,7 @@ export default defineConfig({
|
|
|
28
33
|
})
|
|
29
34
|
```
|
|
30
35
|
|
|
31
|
-
##
|
|
36
|
+
## `TypeScript`项目推荐在`env.d.ts`中引入全局类型
|
|
32
37
|
```typescript
|
|
33
|
-
/// <reference types="yk/global" />
|
|
38
|
+
/// <reference types="mrxy-yk/global" />
|
|
34
39
|
```
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { default as
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
1
|
+
export { default as PositionAnchor } from './position-anchor/PositionAnchor';
|
|
2
|
+
export { default as ProgressRing } from './progress-ring/ProgressRing';
|
|
3
|
+
export { default as AdaptiveBox } from './adaptive-box/AdaptiveBox';
|
|
4
|
+
export { default as CoordinatePickup } from './coordinate-pickup/CoordinatePickup';
|
|
5
|
+
export { default as InBody } from './in-body/InBody';
|
|
6
|
+
export { default as DragDropBox } from './drag-drop-box/DragDropBox';
|
|
7
|
+
export { default as DragDropContainer } from './drag-drop-container/DragDropContainer';
|
|
8
|
+
export { default as ProgressBar } from './progress-bar/ProgressBar';
|
|
9
|
+
export { default as YsVideo } from './ys-video/YsVideo';
|
|
10
|
+
export { default as ShowLog } from './show-log/ShowLog';
|
|
11
|
+
export { default as EChartsCanvas } from './echarts-canvas/EChartsCanvas';
|
|
12
|
+
export { default as ScrollContainer } from './scroll-container/ScrollContainer';
|
|
@@ -14,13 +14,10 @@ export interface EmptyTypeInterface {
|
|
|
14
14
|
/**
|
|
15
15
|
* @example
|
|
16
16
|
* // 扩展Empty组件类型
|
|
17
|
-
* declare module 'yk/config' {
|
|
17
|
+
* declare module 'mrxy-yk/config' {
|
|
18
18
|
* export interface EmptyTypeInterface {
|
|
19
19
|
* EMPTY_VAR3: string
|
|
20
20
|
* }
|
|
21
21
|
* }
|
|
22
22
|
*/
|
|
23
23
|
export declare const EmptyStatusExtendConfig: Record<Capitalize<string>, EmptyOption>;
|
|
24
|
-
export declare const PackageConfig: {
|
|
25
|
-
name: string;
|
|
26
|
-
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { ElUploadGlobal, ElUploadImagesGlobal } from './upload/index';
|
|
2
|
+
export { ElImagesGlobal } from './images/index';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { default as
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
1
|
+
export { default as ElDatePicker } from './date-picker/DatePicker';
|
|
2
|
+
export { default as ElFormDialog } from './form-dialog/FormDialog';
|
|
3
|
+
export { default as ElPagination } from './pagination/Pagination';
|
|
4
|
+
export { default as ElUploadImages } from './upload/upload-images/UploadImages';
|
|
5
|
+
export { default as ElUploadFiles } from './upload/upload-files/UploadFiles';
|
|
6
|
+
export { default as ElSelectFile } from './upload/select-file/SelectFile';
|
|
7
|
+
export { default as ElTableColumn } from './table-column/TableColumn';
|
|
8
|
+
export { default as ElEmpty } from './empty/Empty';
|
|
9
|
+
export { default as ElImages } from './images/Images';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const ElUploadGlobal: {
|
|
2
2
|
props: {
|
|
3
3
|
uploadMethod: {
|
|
4
4
|
default: {
|
|
@@ -12,7 +12,7 @@ export declare const YkElUpload: {
|
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
|
-
export declare const
|
|
15
|
+
export declare const ElUploadImagesGlobal: {
|
|
16
16
|
props: {
|
|
17
17
|
uploadMethod: {
|
|
18
18
|
default: {
|
|
@@ -26,7 +26,7 @@ export declare const YkElUploadImages: {
|
|
|
26
26
|
};
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
|
-
export declare const
|
|
29
|
+
export declare const ElUploadFilesGlobal: {
|
|
30
30
|
props: {
|
|
31
31
|
uploadMethod: {
|
|
32
32
|
default: {
|
package/dist/@type/index.d.ts
CHANGED
|
@@ -11,16 +11,16 @@ import { default as default11 } from "./show-log/ShowLog.vue.es.js";
|
|
|
11
11
|
import { default as default12 } from "./echarts-canvas/EChartsCanvas.vue.es.js";
|
|
12
12
|
import { default as default13 } from "./scroll-container/ScrollContainer.vue.es.js";
|
|
13
13
|
export {
|
|
14
|
-
default4 as
|
|
15
|
-
default5 as
|
|
16
|
-
default7 as
|
|
17
|
-
default8 as
|
|
18
|
-
default12 as
|
|
19
|
-
default6 as
|
|
20
|
-
default2 as
|
|
21
|
-
default9 as
|
|
22
|
-
default3 as
|
|
23
|
-
default13 as
|
|
24
|
-
default11 as
|
|
25
|
-
default10 as
|
|
14
|
+
default4 as AdaptiveBox,
|
|
15
|
+
default5 as CoordinatePickup,
|
|
16
|
+
default7 as DragDropBox,
|
|
17
|
+
default8 as DragDropContainer,
|
|
18
|
+
default12 as EChartsCanvas,
|
|
19
|
+
default6 as InBody,
|
|
20
|
+
default2 as PositionAnchor,
|
|
21
|
+
default9 as ProgressBar,
|
|
22
|
+
default3 as ProgressRing,
|
|
23
|
+
default13 as ScrollContainer,
|
|
24
|
+
default11 as ShowLog,
|
|
25
|
+
default10 as YsVideo
|
|
26
26
|
};
|
package/dist/config/index.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { ElUploadGlobal, ElUploadImagesGlobal } from "../element-plus/components/upload/index.es.js";
|
|
2
|
+
import { ElImagesGlobal } from "../element-plus/components/images/index.es.js";
|
|
3
3
|
const AMapConfig = {
|
|
4
4
|
// 高德地图key
|
|
5
5
|
mapKey: null,
|
|
@@ -7,14 +7,10 @@ const AMapConfig = {
|
|
|
7
7
|
mapSecret: null
|
|
8
8
|
};
|
|
9
9
|
const EmptyStatusExtendConfig = {};
|
|
10
|
-
const PackageConfig = {
|
|
11
|
-
name: "yk"
|
|
12
|
-
};
|
|
13
10
|
export {
|
|
14
11
|
AMapConfig,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
YkElUploadImages
|
|
12
|
+
ElImagesGlobal,
|
|
13
|
+
ElUploadGlobal,
|
|
14
|
+
ElUploadImagesGlobal,
|
|
15
|
+
EmptyStatusExtendConfig
|
|
20
16
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./Images.vue.es2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.es.js";
|
|
4
|
-
var Images = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
var Images = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3e7a597a"]]);
|
|
5
5
|
export {
|
|
6
6
|
Images as default
|
|
7
7
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElImage, ElIcon, ElImageViewer } from "element-plus/es";
|
|
2
2
|
import { defineComponent, computed, shallowRef, ref, watchEffect, resolveComponent, createElementBlock, openBlock, Fragment, createElementVNode, createVNode, mergeProps, unref, renderList, createBlock, withCtx, createCommentVNode } from "vue";
|
|
3
|
-
import {
|
|
3
|
+
import { ElImagesGlobal } from "./index.es.js";
|
|
4
4
|
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
5
|
__name: "Images",
|
|
6
6
|
props: {
|
|
@@ -17,7 +17,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
17
17
|
"--size-w": props.width,
|
|
18
18
|
"--size-h": props.height
|
|
19
19
|
}));
|
|
20
|
-
const getUrlMethod = props.getUrlMethod ||
|
|
20
|
+
const getUrlMethod = props.getUrlMethod || ElImagesGlobal.props.getUrlMethod.default || function(url) {
|
|
21
21
|
return url;
|
|
22
22
|
};
|
|
23
23
|
const imageSrcList = shallowRef([]);
|
|
@@ -9,13 +9,13 @@ import { default as default9 } from "./empty/Empty.vue.es.js";
|
|
|
9
9
|
/* empty css */
|
|
10
10
|
import { default as default10 } from "./images/Images.vue.es.js";
|
|
11
11
|
export {
|
|
12
|
-
default2 as
|
|
13
|
-
default9 as
|
|
14
|
-
default3 as
|
|
15
|
-
default10 as
|
|
16
|
-
default4 as
|
|
17
|
-
default7 as
|
|
18
|
-
default8 as
|
|
19
|
-
default6 as
|
|
20
|
-
default5 as
|
|
12
|
+
default2 as ElDatePicker,
|
|
13
|
+
default9 as ElEmpty,
|
|
14
|
+
default3 as ElFormDialog,
|
|
15
|
+
default10 as ElImages,
|
|
16
|
+
default4 as ElPagination,
|
|
17
|
+
default7 as ElSelectFile,
|
|
18
|
+
default8 as ElTableColumn,
|
|
19
|
+
default6 as ElUploadFiles,
|
|
20
|
+
default5 as ElUploadImages
|
|
21
21
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const ElUploadGlobal = {
|
|
2
2
|
props: {
|
|
3
3
|
uploadMethod: {
|
|
4
4
|
default: null
|
|
@@ -8,7 +8,7 @@ const YkElUpload = {
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
};
|
|
11
|
-
const
|
|
11
|
+
const ElUploadImagesGlobal = {
|
|
12
12
|
props: {
|
|
13
13
|
uploadMethod: {
|
|
14
14
|
default: null
|
|
@@ -18,7 +18,7 @@ const YkElUploadImages = {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
};
|
|
21
|
-
const
|
|
21
|
+
const ElUploadFilesGlobal = {
|
|
22
22
|
props: {
|
|
23
23
|
uploadMethod: {
|
|
24
24
|
default: null
|
|
@@ -29,7 +29,7 @@ const YkElUploadFiles = {
|
|
|
29
29
|
}
|
|
30
30
|
};
|
|
31
31
|
export {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
ElUploadFilesGlobal,
|
|
33
|
+
ElUploadGlobal,
|
|
34
|
+
ElUploadImagesGlobal
|
|
35
35
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./UploadFiles.vue.es2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.es.js";
|
|
4
|
-
var UploadFiles = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
var UploadFiles = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2240c927"]]);
|
|
5
5
|
export {
|
|
6
6
|
UploadFiles as default
|
|
7
7
|
};
|
|
@@ -3,11 +3,11 @@ import { defineComponent, getCurrentInstance, ref, inject, shallowRef, onMounted
|
|
|
3
3
|
import { UploadFilled } from "@element-plus/icons-vue";
|
|
4
4
|
import { ElUpload } from "element-plus";
|
|
5
5
|
import { acceptMIMELib } from "../accept/index.es.js";
|
|
6
|
-
import {
|
|
6
|
+
import { ElUploadFilesGlobal, ElUploadGlobal } from "../index.es.js";
|
|
7
7
|
import { useInjectEventsHooks } from "../../../../utils/mitt/hooks/inject-events/index.es.js";
|
|
8
8
|
import { ArrayUtil } from "../../../../utils/prototype/lib/ArrayUtil.es.js";
|
|
9
|
-
import { MatchUnit } from "../../../../utils/match-unit/index.es.js";
|
|
10
9
|
import { ObjectUtil } from "../../../../utils/prototype/lib/ObjectUtil.es.js";
|
|
10
|
+
import { MatchUnit } from "../../../../utils/match-unit/index.es.js";
|
|
11
11
|
import { PromiseUtil } from "../../../../utils/prototype/lib/PromiseUtil.es.js";
|
|
12
12
|
const _hoisted_1 = {
|
|
13
13
|
key: 0,
|
|
@@ -71,8 +71,8 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
71
71
|
"--upload-size-w": props.width,
|
|
72
72
|
"--upload-size-h": props.height
|
|
73
73
|
}));
|
|
74
|
-
const getUrlMethod = props.getUrlMethod ||
|
|
75
|
-
const uploadMethod = props.uploadMethod ||
|
|
74
|
+
const getUrlMethod = props.getUrlMethod || ElUploadFilesGlobal.props.getUrlMethod.default || ElUploadGlobal.props.getUrlMethod.default;
|
|
75
|
+
const uploadMethod = props.uploadMethod || ElUploadFilesGlobal.props.uploadMethod.default || ElUploadGlobal.props.uploadMethod.default;
|
|
76
76
|
const uploadUserFile = ref([]);
|
|
77
77
|
const uploadUserFileUidDic = computed(() => ArrayUtil.createStrDic(uploadUserFile.value, "uid"));
|
|
78
78
|
const modelFileListCustomer = computed({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./UploadImages.vue.es2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.es.js";
|
|
4
|
-
var UploadImages = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
var UploadImages = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-a0e5396c"]]);
|
|
5
5
|
export {
|
|
6
6
|
UploadImages as default
|
|
7
7
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ElIcon, ElImageViewer } from "element-plus/es";
|
|
2
|
-
import { defineComponent, getCurrentInstance, ref, inject, shallowRef, onMounted, onBeforeUnmount, computed, watch, createElementBlock, openBlock, normalizeStyle, normalizeClass, createVNode, createBlock, createCommentVNode,
|
|
1
|
+
import { ElUpload, ElIcon, ElImageViewer } from "element-plus/es";
|
|
2
|
+
import { defineComponent, getCurrentInstance, ref, inject, shallowRef, onMounted, onBeforeUnmount, computed, watch, createElementBlock, openBlock, normalizeStyle, normalizeClass, createVNode, createBlock, createCommentVNode, withCtx, renderSlot, unref, nextTick } from "vue";
|
|
3
3
|
import { Plus } from "@element-plus/icons-vue";
|
|
4
|
-
import
|
|
4
|
+
import "element-plus";
|
|
5
5
|
import { acceptMIMELib } from "../accept/index.es.js";
|
|
6
|
-
import {
|
|
6
|
+
import { ElUploadImagesGlobal, ElUploadGlobal } from "../index.es.js";
|
|
7
7
|
import { useInjectEventsHooks } from "../../../../utils/mitt/hooks/inject-events/index.es.js";
|
|
8
8
|
import { MatchUnit } from "../../../../utils/match-unit/index.es.js";
|
|
9
9
|
import { PromiseUtil } from "../../../../utils/prototype/lib/PromiseUtil.es.js";
|
|
@@ -61,10 +61,10 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
61
61
|
"--upload-size-w": props.width,
|
|
62
62
|
"--upload-size-h": props.height
|
|
63
63
|
}));
|
|
64
|
-
const getUrlMethod = props.getUrlMethod ||
|
|
64
|
+
const getUrlMethod = props.getUrlMethod || ElUploadImagesGlobal.props.getUrlMethod.default || ElUploadGlobal.props.getUrlMethod.default || function(url) {
|
|
65
65
|
return url;
|
|
66
66
|
};
|
|
67
|
-
const uploadMethod = props.uploadMethod ||
|
|
67
|
+
const uploadMethod = props.uploadMethod || ElUploadImagesGlobal.props.uploadMethod.default || ElUploadGlobal.props.uploadMethod.default;
|
|
68
68
|
const imageViewerState = ref(false);
|
|
69
69
|
const imageViewerUrlList = shallowRef([]);
|
|
70
70
|
const initialIndex = ref(0);
|
|
@@ -164,12 +164,13 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
164
164
|
__expose({ upload: uploadHandle, clearFiles });
|
|
165
165
|
return (_ctx, _cache) => {
|
|
166
166
|
const _component_ElIcon = ElIcon;
|
|
167
|
+
const _component_el_upload = ElUpload;
|
|
167
168
|
const _component_ElImageViewer = ElImageViewer;
|
|
168
169
|
return openBlock(), createElementBlock("div", {
|
|
169
170
|
class: normalizeClass(["upload-image", { "limit_is-max": uploadUserFile.value?.length >= props.limit }]),
|
|
170
171
|
style: normalizeStyle(uploadImageStyle.value)
|
|
171
172
|
}, [
|
|
172
|
-
createVNode(
|
|
173
|
+
createVNode(_component_el_upload, {
|
|
173
174
|
ref_key: "uploadRef",
|
|
174
175
|
ref: uploadRef,
|
|
175
176
|
"file-list": modelFileListCustomer.value,
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
import { ElLoading } from "element-plus";
|
|
2
|
-
import { default as default2 } from "./components/date-picker/DatePicker.vue.es.js";
|
|
3
|
-
import { default as default3 } from "./components/form-dialog/FormDialog.vue.es.js";
|
|
4
|
-
import { default as default4 } from "./components/table-column/TableColumn.vue.es.js";
|
|
5
|
-
import { default as default5 } from "./components/empty/Empty.vue.es.js";
|
|
6
|
-
/* empty css */
|
|
7
2
|
import { useElDialogHooks } from "./hooks/dialog/index.es.js";
|
|
8
3
|
import { useElFormHooks } from "./hooks/form/index.es.js";
|
|
9
4
|
import { useElTableSortHooks } from "./hooks/table-sort/index.es.js";
|
|
@@ -11,11 +6,6 @@ import { useElFormDialogHooks } from "./hooks/form-dialog/index.es.js";
|
|
|
11
6
|
import { useElEmptyHooks } from "./components/empty/hooks/index.es.js";
|
|
12
7
|
import { TableUtil } from "./utils/table-util/index.es.js";
|
|
13
8
|
import { integerRule, integerTag, ipRule, ipTag, numberRule, numberTag, passwordRule, passwordTag, phoneRule, phoneTag, positionRule, positionTag, positiveIntegerRule, positiveIntegerTag, positiveNumberRule, positiveNumberTag, required, usernameRule, usernameTag, validator } from "./utils/form-rule/rule.es.js";
|
|
14
|
-
import { default as default6 } from "./components/pagination/Pagination.vue.es.js";
|
|
15
|
-
import { default as default7 } from "./components/upload/upload-images/UploadImages.vue.es.js";
|
|
16
|
-
import { default as default8 } from "./components/upload/upload-files/UploadFiles.vue.es.js";
|
|
17
|
-
import { default as default9 } from "./components/upload/select-file/SelectFile.vue.es.js";
|
|
18
|
-
import { default as default10 } from "./components/images/Images.vue.es.js";
|
|
19
9
|
const elLoadingService = ElLoading.service;
|
|
20
10
|
let showServiceCount = 0;
|
|
21
11
|
ElLoading.service = function(options) {
|
|
@@ -33,15 +23,6 @@ ElLoading.service = function(options) {
|
|
|
33
23
|
};
|
|
34
24
|
export {
|
|
35
25
|
TableUtil,
|
|
36
|
-
default2 as YkElDatePicker,
|
|
37
|
-
default5 as YkElEmpty,
|
|
38
|
-
default3 as YkElFormDialog,
|
|
39
|
-
default10 as YkElImages,
|
|
40
|
-
default6 as YkElPagination,
|
|
41
|
-
default9 as YkElSelectFile,
|
|
42
|
-
default4 as YkElTableColumn,
|
|
43
|
-
default8 as YkElUploadFiles,
|
|
44
|
-
default7 as YkElUploadImages,
|
|
45
26
|
integerRule,
|
|
46
27
|
integerTag,
|
|
47
28
|
ipRule,
|
package/dist/index.es.js
CHANGED
|
@@ -1,26 +1,9 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
-
import * as index$
|
|
2
|
+
import * as index$2 from "./components/index.es.js";
|
|
3
3
|
import * as index$3 from "./directive/index.es.js";
|
|
4
|
-
import * as index$
|
|
4
|
+
import * as index$1 from "./element-plus/components/index.es.js";
|
|
5
5
|
import { YkIcImage, YkIcImageError } from "./icons/index.es.js";
|
|
6
|
-
import { default as default2 } from "./
|
|
7
|
-
import { default as default3 } from "./element-plus/components/date-picker/DatePicker.vue.es.js";
|
|
8
|
-
import { default as default4 } from "./element-plus/components/form-dialog/FormDialog.vue.es.js";
|
|
9
|
-
import { default as default5 } from "./element-plus/components/table-column/TableColumn.vue.es.js";
|
|
10
|
-
import { default as default6 } from "./element-plus/components/empty/Empty.vue.es.js";
|
|
11
|
-
/* empty css */
|
|
12
|
-
import { default as default7 } from "./components/position-anchor/PositionAnchor.vue.es.js";
|
|
13
|
-
import { default as default8 } from "./components/progress-ring/ProgressRing.vue.es.js";
|
|
14
|
-
import { default as default9 } from "./components/adaptive-box/AdaptiveBox.vue.es.js";
|
|
15
|
-
import { default as default10 } from "./components/coordinate-pickup/CoordinatePickup.vue.es.js";
|
|
16
|
-
import { default as default11 } from "./components/drag-drop-box/DragDropBox.vue.es.js";
|
|
17
|
-
import { default as default12 } from "./components/drag-drop-container/DragDropContainer.vue.es.js";
|
|
18
|
-
import { default as default13 } from "./components/progress-bar/ProgressBar.vue.es.js";
|
|
19
|
-
import { default as default14 } from "./components/ys-video/YsVideo.vue.es.js";
|
|
20
|
-
import { default as default15 } from "./components/show-log/ShowLog.vue.es.js";
|
|
21
|
-
import { default as default16 } from "./components/echarts-canvas/EChartsCanvas.vue.es.js";
|
|
22
|
-
import { default as default17 } from "./components/scroll-container/ScrollContainer.vue.es.js";
|
|
23
|
-
import { default as default18 } from "./directive/ref-height/index.es.js";
|
|
6
|
+
import { default as default2 } from "./directive/ref-height/index.es.js";
|
|
24
7
|
import { useElDialogHooks } from "./element-plus/hooks/dialog/index.es.js";
|
|
25
8
|
import { useElFormHooks } from "./element-plus/hooks/form/index.es.js";
|
|
26
9
|
import { useElTableSortHooks } from "./element-plus/hooks/table-sort/index.es.js";
|
|
@@ -28,11 +11,6 @@ import { useElFormDialogHooks } from "./element-plus/hooks/form-dialog/index.es.
|
|
|
28
11
|
import { useElEmptyHooks } from "./element-plus/components/empty/hooks/index.es.js";
|
|
29
12
|
import { TableUtil } from "./element-plus/utils/table-util/index.es.js";
|
|
30
13
|
import { integerRule, integerTag, ipRule, ipTag, numberRule, numberTag, passwordRule, passwordTag, phoneRule, phoneTag, positionRule, positionTag, positiveIntegerRule, positiveIntegerTag, positiveNumberRule, positiveNumberTag, required, usernameRule, usernameTag, validator } from "./element-plus/utils/form-rule/rule.es.js";
|
|
31
|
-
import { default as default19 } from "./element-plus/components/pagination/Pagination.vue.es.js";
|
|
32
|
-
import { default as default20 } from "./element-plus/components/upload/upload-images/UploadImages.vue.es.js";
|
|
33
|
-
import { default as default21 } from "./element-plus/components/upload/upload-files/UploadFiles.vue.es.js";
|
|
34
|
-
import { default as default22 } from "./element-plus/components/upload/select-file/SelectFile.vue.es.js";
|
|
35
|
-
import { default as default23 } from "./element-plus/components/images/Images.vue.es.js";
|
|
36
14
|
import { useTableSearchHooks } from "./hooks/table-search/index.es.js";
|
|
37
15
|
import { ArrayUtil } from "./utils/prototype/lib/ArrayUtil.es.js";
|
|
38
16
|
import { ObjectUtil } from "./utils/prototype/lib/ObjectUtil.es.js";
|
|
@@ -57,11 +35,9 @@ import { BigFloat } from "./entity/BigFloat.es.js";
|
|
|
57
35
|
import { RejectError } from "./entity/RejectError.es.js";
|
|
58
36
|
var index = {
|
|
59
37
|
install(app) {
|
|
60
|
-
Object.entries(index$1).forEach(([name, component]) => {
|
|
61
|
-
app.component(name, component);
|
|
62
|
-
|
|
63
|
-
Object.entries(index$2).forEach(([name, component]) => {
|
|
64
|
-
app.component(name, component);
|
|
38
|
+
Object.entries({ ...index$2, ...index$1 }).forEach(([name, component]) => {
|
|
39
|
+
app.component("Mr" + name, component);
|
|
40
|
+
app.component("Yk" + name, component);
|
|
65
41
|
});
|
|
66
42
|
Object.entries(index$3).forEach(([name, directive]) => {
|
|
67
43
|
app.directive(name, directive);
|
|
@@ -93,33 +69,12 @@ export {
|
|
|
93
69
|
OperationStateEnum,
|
|
94
70
|
Pages,
|
|
95
71
|
PromiseUtil,
|
|
96
|
-
|
|
72
|
+
default2 as RefHeight,
|
|
97
73
|
RejectError,
|
|
98
74
|
TableUtil,
|
|
99
75
|
TransitionFade,
|
|
100
|
-
default9 as YkAdaptiveBox,
|
|
101
|
-
default10 as YkCoordinatePickup,
|
|
102
|
-
default11 as YkDragDropBox,
|
|
103
|
-
default12 as YkDragDropContainer,
|
|
104
|
-
default16 as YkEChartsCanvas,
|
|
105
|
-
default3 as YkElDatePicker,
|
|
106
|
-
default6 as YkElEmpty,
|
|
107
|
-
default4 as YkElFormDialog,
|
|
108
|
-
default23 as YkElImages,
|
|
109
|
-
default19 as YkElPagination,
|
|
110
|
-
default22 as YkElSelectFile,
|
|
111
|
-
default5 as YkElTableColumn,
|
|
112
|
-
default21 as YkElUploadFiles,
|
|
113
|
-
default20 as YkElUploadImages,
|
|
114
76
|
YkIcImage,
|
|
115
77
|
YkIcImageError,
|
|
116
|
-
default2 as YkInBody,
|
|
117
|
-
default7 as YkPositionAnchor,
|
|
118
|
-
default13 as YkProgressBar,
|
|
119
|
-
default8 as YkProgressRing,
|
|
120
|
-
default17 as YkScrollContainer,
|
|
121
|
-
default15 as YkShowLog,
|
|
122
|
-
default14 as YkYsVideo,
|
|
123
78
|
index as default,
|
|
124
79
|
integerRule,
|
|
125
80
|
integerTag,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.fw-1{font-weight:100!important}.fw-2{font-weight:200!important}.fw-3{font-weight:300!important}.fw-4{font-weight:400!important}.fw-5{font-weight:500!important}.fw-6{font-weight:600!important}.fw-7{font-weight:700!important}.fw-8{font-weight:800!important}.fw-9{font-weight:900!important}.fs-12{font-size:12px!important}.fs-14{font-size:14px!important}.fs-16{font-size:16px!important}.fs-18{font-size:18px!important}.fs-20{font-size:20px!important}.fs-22{font-size:22px!important}.fs-24{font-size:24px!important}.fs-26{font-size:26px!important}.fs-28{font-size:28px!important}.fs-30{font-size:30px!important}.fs-32{font-size:32px!important}.fs-34{font-size:34px!important}.fs-36{font-size:36px!important}.fs-38{font-size:38px!important}.fs-40{font-size:40px!important}.fs-42{font-size:42px!important}.fs-44{font-size:44px!important}.fs-46{font-size:46px!important}.fs-48{font-size:48px!important}.flex-1{flex:1}.flex-hidden-1{overflow:hidden;flex:1}.flex-scroll-1{overflow:auto;flex:1}.flex-2{flex:2}.flex-hidden-2{overflow:hidden;flex:2}.flex-scroll-2{overflow:auto;flex:2}.flex-3{flex:3}.flex-hidden-3{overflow:hidden;flex:3}.flex-scroll-3{overflow:auto;flex:3}.flex-4{flex:4}.flex-hidden-4{overflow:hidden;flex:4}.flex-scroll-4{overflow:auto;flex:4}.w-0,.wh-0{width:0%!important}.h-0,.wh-0{height:0%!important}.w-10{width:10%!important}.h-10{height:10%!important}.w-20{width:20%!important}.h-20{height:20%!important}.w-30{width:30%!important}.h-30{height:30%!important}.w-40{width:40%!important}.h-40{height:40%!important}.w-50{width:50%!important}.h-50{height:50%!important}.w-60{width:60%!important}.h-60{height:60%!important}.w-70{width:70%!important}.h-70{height:70%!important}.w-80{width:80%!important}.h-80{height:80%!important}.w-90{width:90%!important}.h-90{height:90%!important}.w-100,.wh-100{width:100%!important}.h-100,.wh-100{height:100%!important}.bor-radius-2{border-radius:2px!important}.bor-radius-4{border-radius:4px!important}.bor-radius-6{border-radius:6px!important}.bor-radius-8{border-radius:8px!important}.bor-radius-10{border-radius:10px!important}.bor-radius-12{border-radius:12px!important}.m-0{margin:0!important}.p-0{padding:0!important}.mt-0,.my-0{margin-top:0!important}.pt-0,.py-0{padding-top:0!important}.mr-0,.mx-0{margin-right:0!important}.pr-0,.px-0{padding-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.pb-0,.py-0{padding-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.pl-0,.px-0{padding-left:0!important}.m-2{margin:2px!important}.p-2{padding:2px!important}.mt-2,.my-2{margin-top:2px!important}.pt-2,.py-2{padding-top:2px!important}.mr-2,.mx-2{margin-right:2px!important}.pr-2,.px-2{padding-right:2px!important}.mb-2,.my-2{margin-bottom:2px!important}.pb-2,.py-2{padding-bottom:2px!important}.ml-2,.mx-2{margin-left:2px!important}.pl-2,.px-2{padding-left:2px!important}.m-4{margin:4px!important}.p-4{padding:4px!important}.mt-4,.my-4{margin-top:4px!important}.pt-4,.py-4{padding-top:4px!important}.mr-4,.mx-4{margin-right:4px!important}.pr-4,.px-4{padding-right:4px!important}.mb-4,.my-4{margin-bottom:4px!important}.pb-4,.py-4{padding-bottom:4px!important}.ml-4,.mx-4{margin-left:4px!important}.pl-4,.px-4{padding-left:4px!important}.m-6{margin:6px!important}.p-6{padding:6px!important}.mt-6,.my-6{margin-top:6px!important}.pt-6,.py-6{padding-top:6px!important}.mr-6,.mx-6{margin-right:6px!important}.pr-6,.px-6{padding-right:6px!important}.mb-6,.my-6{margin-bottom:6px!important}.pb-6,.py-6{padding-bottom:6px!important}.ml-6,.mx-6{margin-left:6px!important}.pl-6,.px-6{padding-left:6px!important}.m-8{margin:8px!important}.p-8{padding:8px!important}.mt-8,.my-8{margin-top:8px!important}.pt-8,.py-8{padding-top:8px!important}.mr-8,.mx-8{margin-right:8px!important}.pr-8,.px-8{padding-right:8px!important}.mb-8,.my-8{margin-bottom:8px!important}.pb-8,.py-8{padding-bottom:8px!important}.ml-8,.mx-8{margin-left:8px!important}.pl-8,.px-8{padding-left:8px!important}.m-10{margin:10px!important}.p-10{padding:10px!important}.mt-10,.my-10{margin-top:10px!important}.pt-10,.py-10{padding-top:10px!important}.mr-10,.mx-10{margin-right:10px!important}.pr-10,.px-10{padding-right:10px!important}.mb-10,.my-10{margin-bottom:10px!important}.pb-10,.py-10{padding-bottom:10px!important}.ml-10,.mx-10{margin-left:10px!important}.pl-10,.px-10{padding-left:10px!important}.m-12{margin:12px!important}.p-12{padding:12px!important}.mt-12,.my-12{margin-top:12px!important}.pt-12,.py-12{padding-top:12px!important}.mr-12,.mx-12{margin-right:12px!important}.pr-12,.px-12{padding-right:12px!important}.mb-12,.my-12{margin-bottom:12px!important}.pb-12,.py-12{padding-bottom:12px!important}.ml-12,.mx-12{margin-left:12px!important}.pl-12,.px-12{padding-left:12px!important}.m-14{margin:14px!important}.p-14{padding:14px!important}.mt-14,.my-14{margin-top:14px!important}.pt-14,.py-14{padding-top:14px!important}.mr-14,.mx-14{margin-right:14px!important}.pr-14,.px-14{padding-right:14px!important}.mb-14,.my-14{margin-bottom:14px!important}.pb-14,.py-14{padding-bottom:14px!important}.ml-14,.mx-14{margin-left:14px!important}.pl-14,.px-14{padding-left:14px!important}.m-16{margin:16px!important}.p-16{padding:16px!important}.mt-16,.my-16{margin-top:16px!important}.pt-16,.py-16{padding-top:16px!important}.mr-16,.mx-16{margin-right:16px!important}.pr-16,.px-16{padding-right:16px!important}.mb-16,.my-16{margin-bottom:16px!important}.pb-16,.py-16{padding-bottom:16px!important}.ml-16,.mx-16{margin-left:16px!important}.pl-16,.px-16{padding-left:16px!important}.m-18{margin:18px!important}.p-18{padding:18px!important}.mt-18,.my-18{margin-top:18px!important}.pt-18,.py-18{padding-top:18px!important}.mr-18,.mx-18{margin-right:18px!important}.pr-18,.px-18{padding-right:18px!important}.mb-18,.my-18{margin-bottom:18px!important}.pb-18,.py-18{padding-bottom:18px!important}.ml-18,.mx-18{margin-left:18px!important}.pl-18,.px-18{padding-left:18px!important}.m-20{margin:20px!important}.p-20{padding:20px!important}.mt-20,.my-20{margin-top:20px!important}.pt-20,.py-20{padding-top:20px!important}.mr-20,.mx-20{margin-right:20px!important}.pr-20,.px-20{padding-right:20px!important}.mb-20,.my-20{margin-bottom:20px!important}.pb-20,.py-20{padding-bottom:20px!important}.ml-20,.mx-20{margin-left:20px!important}.pl-20,.px-20{padding-left:20px!important}.m-22{margin:22px!important}.p-22{padding:22px!important}.mt-22,.my-22{margin-top:22px!important}.pt-22,.py-22{padding-top:22px!important}.mr-22,.mx-22{margin-right:22px!important}.pr-22,.px-22{padding-right:22px!important}.mb-22,.my-22{margin-bottom:22px!important}.pb-22,.py-22{padding-bottom:22px!important}.ml-22,.mx-22{margin-left:22px!important}.pl-22,.px-22{padding-left:22px!important}.m-24{margin:24px!important}.p-24{padding:24px!important}.mt-24,.my-24{margin-top:24px!important}.pt-24,.py-24{padding-top:24px!important}.mr-24,.mx-24{margin-right:24px!important}.pr-24,.px-24{padding-right:24px!important}.mb-24,.my-24{margin-bottom:24px!important}.pb-24,.py-24{padding-bottom:24px!important}.ml-24,.mx-24{margin-left:24px!important}.pl-24,.px-24{padding-left:24px!important}.m-26{margin:26px!important}.p-26{padding:26px!important}.mt-26,.my-26{margin-top:26px!important}.pt-26,.py-26{padding-top:26px!important}.mr-26,.mx-26{margin-right:26px!important}.pr-26,.px-26{padding-right:26px!important}.mb-26,.my-26{margin-bottom:26px!important}.pb-26,.py-26{padding-bottom:26px!important}.ml-26,.mx-26{margin-left:26px!important}.pl-26,.px-26{padding-left:26px!important}.m-28{margin:28px!important}.p-28{padding:28px!important}.mt-28,.my-28{margin-top:28px!important}.pt-28,.py-28{padding-top:28px!important}.mr-28,.mx-28{margin-right:28px!important}.pr-28,.px-28{padding-right:28px!important}.mb-28,.my-28{margin-bottom:28px!important}.pb-28,.py-28{padding-bottom:28px!important}.ml-28,.mx-28{margin-left:28px!important}.pl-28,.px-28{padding-left:28px!important}.m-30{margin:30px!important}.p-30{padding:30px!important}.mt-30,.my-30{margin-top:30px!important}.pt-30,.py-30{padding-top:30px!important}.mr-30,.mx-30{margin-right:30px!important}.pr-30,.px-30{padding-right:30px!important}.mb-30,.my-30{margin-bottom:30px!important}.pb-30,.py-30{padding-bottom:30px!important}.ml-30,.mx-30{margin-left:30px!important}.pl-30,.px-30{padding-left:30px!important}.m-32{margin:32px!important}.p-32{padding:32px!important}.mt-32,.my-32{margin-top:32px!important}.pt-32,.py-32{padding-top:32px!important}.mr-32,.mx-32{margin-right:32px!important}.pr-32,.px-32{padding-right:32px!important}.mb-32,.my-32{margin-bottom:32px!important}.pb-32,.py-32{padding-bottom:32px!important}.ml-32,.mx-32{margin-left:32px!important}.pl-32,.px-32{padding-left:32px!important}.m-34{margin:34px!important}.p-34{padding:34px!important}.mt-34,.my-34{margin-top:34px!important}.pt-34,.py-34{padding-top:34px!important}.mr-34,.mx-34{margin-right:34px!important}.pr-34,.px-34{padding-right:34px!important}.mb-34,.my-34{margin-bottom:34px!important}.pb-34,.py-34{padding-bottom:34px!important}.ml-34,.mx-34{margin-left:34px!important}.pl-34,.px-34{padding-left:34px!important}.m-36{margin:36px!important}.p-36{padding:36px!important}.mt-36,.my-36{margin-top:36px!important}.pt-36,.py-36{padding-top:36px!important}.mr-36,.mx-36{margin-right:36px!important}.pr-36,.px-36{padding-right:36px!important}.mb-36,.my-36{margin-bottom:36px!important}.pb-36,.py-36{padding-bottom:36px!important}.ml-36,.mx-36{margin-left:36px!important}.pl-36,.px-36{padding-left:36px!important}.m-38{margin:38px!important}.p-38{padding:38px!important}.mt-38,.my-38{margin-top:38px!important}.pt-38,.py-38{padding-top:38px!important}.mr-38,.mx-38{margin-right:38px!important}.pr-38,.px-38{padding-right:38px!important}.mb-38,.my-38{margin-bottom:38px!important}.pb-38,.py-38{padding-bottom:38px!important}.ml-38,.mx-38{margin-left:38px!important}.pl-38,.px-38{padding-left:38px!important}.m-40{margin:40px!important}.p-40{padding:40px!important}.mt-40,.my-40{margin-top:40px!important}.pt-40,.py-40{padding-top:40px!important}.mr-40,.mx-40{margin-right:40px!important}.pr-40,.px-40{padding-right:40px!important}.mb-40,.my-40{margin-bottom:40px!important}.pb-40,.py-40{padding-bottom:40px!important}.ml-40,.mx-40{margin-left:40px!important}.pl-40,.px-40{padding-left:40px!important}.m-42{margin:42px!important}.p-42{padding:42px!important}.mt-42,.my-42{margin-top:42px!important}.pt-42,.py-42{padding-top:42px!important}.mr-42,.mx-42{margin-right:42px!important}.pr-42,.px-42{padding-right:42px!important}.mb-42,.my-42{margin-bottom:42px!important}.pb-42,.py-42{padding-bottom:42px!important}.ml-42,.mx-42{margin-left:42px!important}.pl-42,.px-42{padding-left:42px!important}.m-44{margin:44px!important}.p-44{padding:44px!important}.mt-44,.my-44{margin-top:44px!important}.pt-44,.py-44{padding-top:44px!important}.mr-44,.mx-44{margin-right:44px!important}.pr-44,.px-44{padding-right:44px!important}.mb-44,.my-44{margin-bottom:44px!important}.pb-44,.py-44{padding-bottom:44px!important}.ml-44,.mx-44{margin-left:44px!important}.pl-44,.px-44{padding-left:44px!important}.m-46{margin:46px!important}.p-46{padding:46px!important}.mt-46,.my-46{margin-top:46px!important}.pt-46,.py-46{padding-top:46px!important}.mr-46,.mx-46{margin-right:46px!important}.pr-46,.px-46{padding-right:46px!important}.mb-46,.my-46{margin-bottom:46px!important}.pb-46,.py-46{padding-bottom:46px!important}.ml-46,.mx-46{margin-left:46px!important}.pl-46,.px-46{padding-left:46px!important}.m-48{margin:48px!important}.p-48{padding:48px!important}.mt-48,.my-48{margin-top:48px!important}.pt-48,.py-48{padding-top:48px!important}.mr-48,.mx-48{margin-right:48px!important}.pr-48,.px-48{padding-right:48px!important}.mb-48,.my-48{margin-bottom:48px!important}.pb-48,.py-48{padding-bottom:48px!important}.ml-48,.mx-48{margin-left:48px!important}.pl-48,.px-48{padding-left:48px!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.grid-columns-2{grid-template-columns:repeat(2,1fr)!important}.grid-col-span-2{grid-column:span 2!important}.grid-row-span-2{grid-row:span 2!important}.grid-columns-3{grid-template-columns:repeat(3,1fr)!important}.grid-col-span-3{grid-column:span 3!important}.grid-row-span-3{grid-row:span 3!important}.grid-columns-4{grid-template-columns:repeat(4,1fr)!important}.grid-col-span-4{grid-column:span 4!important}.grid-row-span-4{grid-row:span 4!important}.grid-columns-5{grid-template-columns:repeat(5,1fr)!important}.grid-col-span-5{grid-column:span 5!important}.grid-row-span-5{grid-row:span 5!important}.grid-columns-6{grid-template-columns:repeat(6,1fr)!important}.grid-col-span-6{grid-column:span 6!important}.grid-row-span-6{grid-row:span 6!important}.grid-columns-7{grid-template-columns:repeat(7,1fr)!important}.grid-col-span-7{grid-column:span 7!important}.grid-row-span-7{grid-row:span 7!important}.grid-columns-8{grid-template-columns:repeat(8,1fr)!important}.grid-col-span-8{grid-column:span 8!important}.grid-row-span-8{grid-row:span 8!important}.grid-columns-auto{--min-col-width: 100px;grid-template-columns:repeat(auto-fit,minmax(var(--min-col-width),1fr))}.gap-2{grid-gap:2px!important}.gap-row-2{grid-row-gap:2px!important}.gap-col-2{grid-column-gap:2px!important}.gap-4{grid-gap:4px!important}.gap-row-4{grid-row-gap:4px!important}.gap-col-4{grid-column-gap:4px!important}.gap-6{grid-gap:6px!important}.gap-row-6{grid-row-gap:6px!important}.gap-col-6{grid-column-gap:6px!important}.gap-8{grid-gap:8px!important}.gap-row-8{grid-row-gap:8px!important}.gap-col-8{grid-column-gap:8px!important}.gap-10{grid-gap:10px!important}.gap-row-10{grid-row-gap:10px!important}.gap-col-10{grid-column-gap:10px!important}.gap-12{grid-gap:12px!important}.gap-row-12{grid-row-gap:12px!important}.gap-col-12{grid-column-gap:12px!important}.gap-14{grid-gap:14px!important}.gap-row-14{grid-row-gap:14px!important}.gap-col-14{grid-column-gap:14px!important}.gap-16{grid-gap:16px!important}.gap-row-16{grid-row-gap:16px!important}.gap-col-16{grid-column-gap:16px!important}.gap-18{grid-gap:18px!important}.gap-row-18{grid-row-gap:18px!important}.gap-col-18{grid-column-gap:18px!important}.gap-20{grid-gap:20px!important}.gap-row-20{grid-row-gap:20px!important}.gap-col-20{grid-column-gap:20px!important}.gap-22{grid-gap:22px!important}.gap-row-22{grid-row-gap:22px!important}.gap-col-22{grid-column-gap:22px!important}.gap-24{grid-gap:24px!important}.gap-row-24{grid-row-gap:24px!important}.gap-col-24{grid-column-gap:24px!important}.gap-26{grid-gap:26px!important}.gap-row-26{grid-row-gap:26px!important}.gap-col-26{grid-column-gap:26px!important}.gap-28{grid-gap:28px!important}.gap-row-28{grid-row-gap:28px!important}.gap-col-28{grid-column-gap:28px!important}.gap-30{grid-gap:30px!important}.gap-row-30{grid-row-gap:30px!important}.gap-col-30{grid-column-gap:30px!important}.gap-32{grid-gap:32px!important}.gap-row-32{grid-row-gap:32px!important}.gap-col-32{grid-column-gap:32px!important}.gap-34{grid-gap:34px!important}.gap-row-34{grid-row-gap:34px!important}.gap-col-34{grid-column-gap:34px!important}.gap-36{grid-gap:36px!important}.gap-row-36{grid-row-gap:36px!important}.gap-col-36{grid-column-gap:36px!important}.gap-38{grid-gap:38px!important}.gap-row-38{grid-row-gap:38px!important}.gap-col-38{grid-column-gap:38px!important}.gap-40{grid-gap:40px!important}.gap-row-40{grid-row-gap:40px!important}.gap-col-40{grid-column-gap:40px!important}.gap-42{grid-gap:42px!important}.gap-row-42{grid-row-gap:42px!important}.gap-col-42{grid-column-gap:42px!important}.gap-44{grid-gap:44px!important}.gap-row-44{grid-row-gap:44px!important}.gap-col-44{grid-column-gap:44px!important}.gap-46{grid-gap:46px!important}.gap-row-46{grid-row-gap:46px!important}.gap-col-46{grid-column-gap:46px!important}.gap-48{grid-gap:48px!important}.gap-row-48{grid-row-gap:48px!important}.gap-col-48{grid-column-gap:48px!important}.d-none{display:none!important}.d-block{display:block!important}.d-inline{display:inline!important}.d-flex,.d-flex-around-center,.d-flex-between-center,.d-flex-between,.d-flex-align-center,.d-flex-column-center,.d-flex-column,.d-flex-center{display:flex!important}.d-grid{display:grid!important}.d-inline-block{display:inline-block!important}.d-inline-flex{display:inline-flex!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-between,.d-flex-between-center,.d-flex-between{justify-content:space-between!important}.justify-content-around,.d-flex-around-center{justify-content:space-around!important}.justify-content-center,.d-flex-center{justify-content:center!important}.justify-content-initial{justify-content:initial!important}.align-content-stretch{align-content:stretch!important}.align-content-center{align-content:center!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-initial{align-content:initial!important}.align-content-inherit{align-content:inherit!important}.justify-items-center{justify-items:center!important}.justify-items-start{justify-items:start!important}.justify-items-end{justify-items:end!important}.justify-items-start{justify-items:flex-start!important}.justify-items-end{justify-items:flex-end!important}.justify-items-self-start{justify-items:self-start!important}.justify-items-self-end{justify-items:self-end!important}.justify-items-left{justify-items:left!important}.justify-items-right{justify-items:right!important}.align-items-stretch{align-items:stretch!important}.align-items-center,.d-flex-around-center,.d-flex-between-center,.d-flex-align-center,.d-flex-column-center,.d-flex-center{align-items:center!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}.align-items-initial{align-items:initial!important}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column,.d-flex-column-center,.d-flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-relative{position:relative!important}.position-static{position:static!important}.position-inherit{position:inherit!important}.position-sticky{position:sticky!important}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-inherit{text-align:inherit!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}.vertical-align-top{vertical-align:top!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-inherit{vertical-align:inherit!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.float-inherit{float:inherit!important}.w-auto{width:auto!important}.w-fit{width:fit-content!important}.w-inherit{width:inherit!important}.h-auto{height:auto!important}.h-fit{height:fit-content!important}.h-inherit{height:inherit!important}.cursor-default{cursor:default!important}.cursor-auto{cursor:auto!important}.cursor-crosshair{cursor:crosshair!important}.cursor-pointer{cursor:pointer!important}.cursor-move{cursor:move!important}.cursor-e-resize{cursor:e-resize!important}.cursor-ne-resize{cursor:ne-resize!important}.cursor-nw-resize{cursor:nw-resize!important}.cursor-n-resize{cursor:n-resize!important}.cursor-se-resize{cursor:se-resize!important}.cursor-sw-resize{cursor:sw-resize!important}.cursor-s-resize{cursor:s-resize!important}.cursor-w-resize{cursor:w-resize!important}.cursor-text{cursor:text!important}.cursor-wait{cursor:wait!important}.cursor-help{cursor:help!important}.overflow-visible{overflow:visible!important}.overflow-hidden{overflow:hidden!important}.overflow-scroll{overflow:scroll!important}.overflow-auto{overflow:auto!important}.overflow-inherit{overflow:inherit!important}.events-none{pointer-events:none!important}.events-initial{pointer-events:initial!important}.events-inherit{pointer-events:inherit!important}.debugger-bor-1{outline:2px dashed hsl(50,100%,50%);box-shadow:inset 0 0 10px #ffd500b3}.debugger-bor-2{outline:2px dashed hsl(100,100%,50%);box-shadow:inset 0 0 10px #55ff00b3}.debugger-bor-3{outline:2px dashed hsl(150,100%,50%);box-shadow:inset 0 0 10px #00ff80b3}.debugger-bor-4{outline:2px dashed hsl(200,100%,50%);box-shadow:inset 0 0 10px #00aaffb3}.debugger-bor-5{outline:2px dashed hsl(250,100%,50%);box-shadow:inset 0 0 10px #2a00ffb3}.debugger-bor-6{outline:2px dashed hsl(300,100%,50%);box-shadow:inset 0 0 10px #ff00ffb3}.debugger-bor-7,.debugger-bor{outline:2px dashed hsl(350,100%,50%);box-shadow:inset 0 0 10px #ff002bb3}.overflow-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-line-clamp-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.overflow-line-clamp-3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.overflow-line-clamp-4{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}.text-gradient{background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.position-anchor[data-v-b1fd5468]{position:absolute;width:0;height:0;display:flex}.position-anchor.position-anchor--center[data-v-b1fd5468]{justify-content:center;align-items:center}.position-anchor.position-anchor--top-left[data-v-b1fd5468]{justify-content:left;align-items:flex-start}.position-anchor.position-anchor--top-right[data-v-b1fd5468]{justify-content:right;align-items:flex-start}.position-anchor.position-anchor--bottom-left[data-v-b1fd5468]{justify-content:left;align-items:flex-end}.position-anchor.position-anchor--bottom-right[data-v-b1fd5468]{justify-content:right;align-items:flex-end}.position-anchor.position-anchor--bottom[data-v-b1fd5468]{justify-content:center;align-items:flex-end}.position-anchor.position-anchor--top[data-v-b1fd5468]{justify-content:center;align-items:flex-start}.position-anchor.position-anchor--right[data-v-b1fd5468]{justify-content:flex-end;align-items:center}.position-anchor.position-anchor--left[data-v-b1fd5468]{justify-content:flex-start;align-items:center}.progress-ring[data-v-a48e82e0]{display:block}.progress-ring circle[data-v-a48e82e0]{transform-box:fill-box;transform-origin:center;transition:all var(--duration) ease-in-out}.adaptive-box__body[data-v-78619194]{overflow:hidden;margin-left:auto;margin-right:auto}.adaptive-box__content[data-v-78619194]{transform-origin:left top;width:fit-content;--adaptive-height: initial}.amap-content-body,.amap-content-body .amap-lib-infowindow{background:inherit}.coordinate-pickup-autocomplete li{margin-bottom:8px}.coordinate-pickup-autocomplete .autocomplete-subtitle{font-size:12px;color:var(--el-text-color-secondary);line-height:12px}.coordinate-pickup-form[data-v-f60f53ce] .el-form-item{margin-right:16px}.coordinate-pickup[data-v-f60f53ce]{height:50vh;min-height:400px;max-height:920px}.drag-drop-box[data-v-d1a01b58]{position:absolute}.drag-drop-content[data-v-ebe862bb]{width:fit-content;height:fit-content}.progress-bar[data-v-a7a9d9ba]{position:relative;display:flex;align-items:center}.icon[data-v-b3bb1cc0]{color:#fff}.icon.is-active[data-v-b3bb1cc0]{color:#157edf}.ys-video[data-v-0f68a5ad] .header-controls div:nth-child(2) .theme-icon-item{width:32px!important;display:flex;justify-content:center;align-items:center;padding-top:6px}.ys-video[data-v-0f68a5ad] .header-controls div:nth-child(2) .theme-icon-item svg{height:48px!important;width:48px!important}.ys-video[data-v-0f68a5ad] .header-controls div:nth-child(2) .theme-icon-item:last-child{padding-left:16px}.play-mask[data-v-0f68a5ad]{background-color:#626365;background-repeat:no-repeat;background-size:100% 100%;top:0;left:0}.play-mask .header[data-v-0f68a5ad]{height:20%;inset:0 auto auto 0;min-height:48px;background:linear-gradient(to bottom,#0008 0,#0006 30%,#0003 50%,#0000);padding:10px 8px;width:100%}.play-mask .header .title-box[data-v-0f68a5ad]{max-width:50%;height:48px}.show-log[data-v-39dd9fde]{background:#fff;border-radius:5px;padding:10px;-webkit-user-select:none;user-select:none;box-shadow:0 2px 4px #ccc;min-width:150px}.show-log.is-min[data-v-39dd9fde]{overflow:hidden}.empty-box{position:relative}.empty-box_content{width:100%;height:100%}.empty-box_content.is-hide{opacity:0}.empty-box_error{width:100%;height:100%;position:absolute;z-index:5;display:flex;justify-content:center;align-items:center}.empty-box_error .el-empty{--el-empty-padding: 0}.empty-box_error .empty-box__image{opacity:var(--opacity);filter:hue-rotate(var(--hue-rotate))}.echarts-canvas[data-v-ec5e13a9]{position:relative}.echarts-canvas .echarts-canvas__inner[data-v-ec5e13a9]{width:100%;height:100%;position:absolute}.echarts-canvas .echarts-canvas__inner.is-empty[data-v-ec5e13a9]{opacity:0}.scroll-container[data-v-a640aede]{overflow:auto}.scroll-container[data-v-a640aede]::-webkit-scrollbar{width:0;height:0}.scroll-container .scroll-inner[data-v-a640aede]{display:flex;width:100%;flex-direction:column}[data-v-92b72876] .el-pagination{--el-pagination-bg-color: transparent;--el-pagination-button-disabled-bg-color: transparent}.table-pagination[data-v-92b72876]{padding:16px 0 8px}.upload-image[data-v-0788da9a]{margin-bottom:-8px}.upload-image.limit_is-max[data-v-0788da9a] .el-upload-list--picture-card .el-upload--picture-card{display:none}.upload-image[data-v-0788da9a] .el-upload-list--picture-card .el-upload-list__item{width:var(--upload-size-w);height:var(--upload-size-h)}.upload-image[data-v-0788da9a] .el-upload-list--picture-card .el-upload-list__item.is-success:focus:not(:hover) .el-icon--close-tip{display:none!important}.upload-image[data-v-0788da9a] .el-upload-list--picture-card .el-upload-list__item.is-success:focus .el-upload-list__item-status-label{display:inline-flex;opacity:1}.upload-image[data-v-0788da9a] .el-upload-list--picture-card .el-upload--picture-card{margin-bottom:8px;width:var(--upload-size-w);height:var(--upload-size-h)}.upload-files[data-v-6d9ea612] .el-upload.is-drag{width:var(--upload-size-w);height:var(--upload-size-h)}.upload-files[data-v-6d9ea612] .el-upload .el-upload-dragger{padding:unset;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.upload-files[data-v-6d9ea612] .el-upload-list,.upload-file[data-v-235553c7] .el-upload-list{margin:unset}.images-box[data-v-2d732143]{display:flex;flex-wrap:wrap;gap:8px}.images-box[data-v-2d732143] .el-image{width:var(--size-w);height:var(--size-h)}
|
|
1
|
+
.fw-1{font-weight:100!important}.fw-2{font-weight:200!important}.fw-3{font-weight:300!important}.fw-4{font-weight:400!important}.fw-5{font-weight:500!important}.fw-6{font-weight:600!important}.fw-7{font-weight:700!important}.fw-8{font-weight:800!important}.fw-9{font-weight:900!important}.fs-12{font-size:12px!important}.fs-14{font-size:14px!important}.fs-16{font-size:16px!important}.fs-18{font-size:18px!important}.fs-20{font-size:20px!important}.fs-22{font-size:22px!important}.fs-24{font-size:24px!important}.fs-26{font-size:26px!important}.fs-28{font-size:28px!important}.fs-30{font-size:30px!important}.fs-32{font-size:32px!important}.fs-34{font-size:34px!important}.fs-36{font-size:36px!important}.fs-38{font-size:38px!important}.fs-40{font-size:40px!important}.fs-42{font-size:42px!important}.fs-44{font-size:44px!important}.fs-46{font-size:46px!important}.fs-48{font-size:48px!important}.flex-1{flex:1}.flex-hidden-1{overflow:hidden;flex:1}.flex-scroll-1{overflow:auto;flex:1}.flex-2{flex:2}.flex-hidden-2{overflow:hidden;flex:2}.flex-scroll-2{overflow:auto;flex:2}.flex-3{flex:3}.flex-hidden-3{overflow:hidden;flex:3}.flex-scroll-3{overflow:auto;flex:3}.flex-4{flex:4}.flex-hidden-4{overflow:hidden;flex:4}.flex-scroll-4{overflow:auto;flex:4}.w-0,.wh-0{width:0%!important}.h-0,.wh-0{height:0%!important}.w-10{width:10%!important}.h-10{height:10%!important}.w-20{width:20%!important}.h-20{height:20%!important}.w-30{width:30%!important}.h-30{height:30%!important}.w-40{width:40%!important}.h-40{height:40%!important}.w-50{width:50%!important}.h-50{height:50%!important}.w-60{width:60%!important}.h-60{height:60%!important}.w-70{width:70%!important}.h-70{height:70%!important}.w-80{width:80%!important}.h-80{height:80%!important}.w-90{width:90%!important}.h-90{height:90%!important}.w-100,.wh-100{width:100%!important}.h-100,.wh-100{height:100%!important}.bor-radius-2{border-radius:2px!important}.bor-radius-4{border-radius:4px!important}.bor-radius-6{border-radius:6px!important}.bor-radius-8{border-radius:8px!important}.bor-radius-10{border-radius:10px!important}.bor-radius-12{border-radius:12px!important}.m-0{margin:0!important}.p-0{padding:0!important}.mt-0,.my-0{margin-top:0!important}.pt-0,.py-0{padding-top:0!important}.mr-0,.mx-0{margin-right:0!important}.pr-0,.px-0{padding-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.pb-0,.py-0{padding-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.pl-0,.px-0{padding-left:0!important}.m-2{margin:2px!important}.p-2{padding:2px!important}.mt-2,.my-2{margin-top:2px!important}.pt-2,.py-2{padding-top:2px!important}.mr-2,.mx-2{margin-right:2px!important}.pr-2,.px-2{padding-right:2px!important}.mb-2,.my-2{margin-bottom:2px!important}.pb-2,.py-2{padding-bottom:2px!important}.ml-2,.mx-2{margin-left:2px!important}.pl-2,.px-2{padding-left:2px!important}.m-4{margin:4px!important}.p-4{padding:4px!important}.mt-4,.my-4{margin-top:4px!important}.pt-4,.py-4{padding-top:4px!important}.mr-4,.mx-4{margin-right:4px!important}.pr-4,.px-4{padding-right:4px!important}.mb-4,.my-4{margin-bottom:4px!important}.pb-4,.py-4{padding-bottom:4px!important}.ml-4,.mx-4{margin-left:4px!important}.pl-4,.px-4{padding-left:4px!important}.m-6{margin:6px!important}.p-6{padding:6px!important}.mt-6,.my-6{margin-top:6px!important}.pt-6,.py-6{padding-top:6px!important}.mr-6,.mx-6{margin-right:6px!important}.pr-6,.px-6{padding-right:6px!important}.mb-6,.my-6{margin-bottom:6px!important}.pb-6,.py-6{padding-bottom:6px!important}.ml-6,.mx-6{margin-left:6px!important}.pl-6,.px-6{padding-left:6px!important}.m-8{margin:8px!important}.p-8{padding:8px!important}.mt-8,.my-8{margin-top:8px!important}.pt-8,.py-8{padding-top:8px!important}.mr-8,.mx-8{margin-right:8px!important}.pr-8,.px-8{padding-right:8px!important}.mb-8,.my-8{margin-bottom:8px!important}.pb-8,.py-8{padding-bottom:8px!important}.ml-8,.mx-8{margin-left:8px!important}.pl-8,.px-8{padding-left:8px!important}.m-10{margin:10px!important}.p-10{padding:10px!important}.mt-10,.my-10{margin-top:10px!important}.pt-10,.py-10{padding-top:10px!important}.mr-10,.mx-10{margin-right:10px!important}.pr-10,.px-10{padding-right:10px!important}.mb-10,.my-10{margin-bottom:10px!important}.pb-10,.py-10{padding-bottom:10px!important}.ml-10,.mx-10{margin-left:10px!important}.pl-10,.px-10{padding-left:10px!important}.m-12{margin:12px!important}.p-12{padding:12px!important}.mt-12,.my-12{margin-top:12px!important}.pt-12,.py-12{padding-top:12px!important}.mr-12,.mx-12{margin-right:12px!important}.pr-12,.px-12{padding-right:12px!important}.mb-12,.my-12{margin-bottom:12px!important}.pb-12,.py-12{padding-bottom:12px!important}.ml-12,.mx-12{margin-left:12px!important}.pl-12,.px-12{padding-left:12px!important}.m-14{margin:14px!important}.p-14{padding:14px!important}.mt-14,.my-14{margin-top:14px!important}.pt-14,.py-14{padding-top:14px!important}.mr-14,.mx-14{margin-right:14px!important}.pr-14,.px-14{padding-right:14px!important}.mb-14,.my-14{margin-bottom:14px!important}.pb-14,.py-14{padding-bottom:14px!important}.ml-14,.mx-14{margin-left:14px!important}.pl-14,.px-14{padding-left:14px!important}.m-16{margin:16px!important}.p-16{padding:16px!important}.mt-16,.my-16{margin-top:16px!important}.pt-16,.py-16{padding-top:16px!important}.mr-16,.mx-16{margin-right:16px!important}.pr-16,.px-16{padding-right:16px!important}.mb-16,.my-16{margin-bottom:16px!important}.pb-16,.py-16{padding-bottom:16px!important}.ml-16,.mx-16{margin-left:16px!important}.pl-16,.px-16{padding-left:16px!important}.m-18{margin:18px!important}.p-18{padding:18px!important}.mt-18,.my-18{margin-top:18px!important}.pt-18,.py-18{padding-top:18px!important}.mr-18,.mx-18{margin-right:18px!important}.pr-18,.px-18{padding-right:18px!important}.mb-18,.my-18{margin-bottom:18px!important}.pb-18,.py-18{padding-bottom:18px!important}.ml-18,.mx-18{margin-left:18px!important}.pl-18,.px-18{padding-left:18px!important}.m-20{margin:20px!important}.p-20{padding:20px!important}.mt-20,.my-20{margin-top:20px!important}.pt-20,.py-20{padding-top:20px!important}.mr-20,.mx-20{margin-right:20px!important}.pr-20,.px-20{padding-right:20px!important}.mb-20,.my-20{margin-bottom:20px!important}.pb-20,.py-20{padding-bottom:20px!important}.ml-20,.mx-20{margin-left:20px!important}.pl-20,.px-20{padding-left:20px!important}.m-22{margin:22px!important}.p-22{padding:22px!important}.mt-22,.my-22{margin-top:22px!important}.pt-22,.py-22{padding-top:22px!important}.mr-22,.mx-22{margin-right:22px!important}.pr-22,.px-22{padding-right:22px!important}.mb-22,.my-22{margin-bottom:22px!important}.pb-22,.py-22{padding-bottom:22px!important}.ml-22,.mx-22{margin-left:22px!important}.pl-22,.px-22{padding-left:22px!important}.m-24{margin:24px!important}.p-24{padding:24px!important}.mt-24,.my-24{margin-top:24px!important}.pt-24,.py-24{padding-top:24px!important}.mr-24,.mx-24{margin-right:24px!important}.pr-24,.px-24{padding-right:24px!important}.mb-24,.my-24{margin-bottom:24px!important}.pb-24,.py-24{padding-bottom:24px!important}.ml-24,.mx-24{margin-left:24px!important}.pl-24,.px-24{padding-left:24px!important}.m-26{margin:26px!important}.p-26{padding:26px!important}.mt-26,.my-26{margin-top:26px!important}.pt-26,.py-26{padding-top:26px!important}.mr-26,.mx-26{margin-right:26px!important}.pr-26,.px-26{padding-right:26px!important}.mb-26,.my-26{margin-bottom:26px!important}.pb-26,.py-26{padding-bottom:26px!important}.ml-26,.mx-26{margin-left:26px!important}.pl-26,.px-26{padding-left:26px!important}.m-28{margin:28px!important}.p-28{padding:28px!important}.mt-28,.my-28{margin-top:28px!important}.pt-28,.py-28{padding-top:28px!important}.mr-28,.mx-28{margin-right:28px!important}.pr-28,.px-28{padding-right:28px!important}.mb-28,.my-28{margin-bottom:28px!important}.pb-28,.py-28{padding-bottom:28px!important}.ml-28,.mx-28{margin-left:28px!important}.pl-28,.px-28{padding-left:28px!important}.m-30{margin:30px!important}.p-30{padding:30px!important}.mt-30,.my-30{margin-top:30px!important}.pt-30,.py-30{padding-top:30px!important}.mr-30,.mx-30{margin-right:30px!important}.pr-30,.px-30{padding-right:30px!important}.mb-30,.my-30{margin-bottom:30px!important}.pb-30,.py-30{padding-bottom:30px!important}.ml-30,.mx-30{margin-left:30px!important}.pl-30,.px-30{padding-left:30px!important}.m-32{margin:32px!important}.p-32{padding:32px!important}.mt-32,.my-32{margin-top:32px!important}.pt-32,.py-32{padding-top:32px!important}.mr-32,.mx-32{margin-right:32px!important}.pr-32,.px-32{padding-right:32px!important}.mb-32,.my-32{margin-bottom:32px!important}.pb-32,.py-32{padding-bottom:32px!important}.ml-32,.mx-32{margin-left:32px!important}.pl-32,.px-32{padding-left:32px!important}.m-34{margin:34px!important}.p-34{padding:34px!important}.mt-34,.my-34{margin-top:34px!important}.pt-34,.py-34{padding-top:34px!important}.mr-34,.mx-34{margin-right:34px!important}.pr-34,.px-34{padding-right:34px!important}.mb-34,.my-34{margin-bottom:34px!important}.pb-34,.py-34{padding-bottom:34px!important}.ml-34,.mx-34{margin-left:34px!important}.pl-34,.px-34{padding-left:34px!important}.m-36{margin:36px!important}.p-36{padding:36px!important}.mt-36,.my-36{margin-top:36px!important}.pt-36,.py-36{padding-top:36px!important}.mr-36,.mx-36{margin-right:36px!important}.pr-36,.px-36{padding-right:36px!important}.mb-36,.my-36{margin-bottom:36px!important}.pb-36,.py-36{padding-bottom:36px!important}.ml-36,.mx-36{margin-left:36px!important}.pl-36,.px-36{padding-left:36px!important}.m-38{margin:38px!important}.p-38{padding:38px!important}.mt-38,.my-38{margin-top:38px!important}.pt-38,.py-38{padding-top:38px!important}.mr-38,.mx-38{margin-right:38px!important}.pr-38,.px-38{padding-right:38px!important}.mb-38,.my-38{margin-bottom:38px!important}.pb-38,.py-38{padding-bottom:38px!important}.ml-38,.mx-38{margin-left:38px!important}.pl-38,.px-38{padding-left:38px!important}.m-40{margin:40px!important}.p-40{padding:40px!important}.mt-40,.my-40{margin-top:40px!important}.pt-40,.py-40{padding-top:40px!important}.mr-40,.mx-40{margin-right:40px!important}.pr-40,.px-40{padding-right:40px!important}.mb-40,.my-40{margin-bottom:40px!important}.pb-40,.py-40{padding-bottom:40px!important}.ml-40,.mx-40{margin-left:40px!important}.pl-40,.px-40{padding-left:40px!important}.m-42{margin:42px!important}.p-42{padding:42px!important}.mt-42,.my-42{margin-top:42px!important}.pt-42,.py-42{padding-top:42px!important}.mr-42,.mx-42{margin-right:42px!important}.pr-42,.px-42{padding-right:42px!important}.mb-42,.my-42{margin-bottom:42px!important}.pb-42,.py-42{padding-bottom:42px!important}.ml-42,.mx-42{margin-left:42px!important}.pl-42,.px-42{padding-left:42px!important}.m-44{margin:44px!important}.p-44{padding:44px!important}.mt-44,.my-44{margin-top:44px!important}.pt-44,.py-44{padding-top:44px!important}.mr-44,.mx-44{margin-right:44px!important}.pr-44,.px-44{padding-right:44px!important}.mb-44,.my-44{margin-bottom:44px!important}.pb-44,.py-44{padding-bottom:44px!important}.ml-44,.mx-44{margin-left:44px!important}.pl-44,.px-44{padding-left:44px!important}.m-46{margin:46px!important}.p-46{padding:46px!important}.mt-46,.my-46{margin-top:46px!important}.pt-46,.py-46{padding-top:46px!important}.mr-46,.mx-46{margin-right:46px!important}.pr-46,.px-46{padding-right:46px!important}.mb-46,.my-46{margin-bottom:46px!important}.pb-46,.py-46{padding-bottom:46px!important}.ml-46,.mx-46{margin-left:46px!important}.pl-46,.px-46{padding-left:46px!important}.m-48{margin:48px!important}.p-48{padding:48px!important}.mt-48,.my-48{margin-top:48px!important}.pt-48,.py-48{padding-top:48px!important}.mr-48,.mx-48{margin-right:48px!important}.pr-48,.px-48{padding-right:48px!important}.mb-48,.my-48{margin-bottom:48px!important}.pb-48,.py-48{padding-bottom:48px!important}.ml-48,.mx-48{margin-left:48px!important}.pl-48,.px-48{padding-left:48px!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}.grid-columns-2{grid-template-columns:repeat(2,1fr)!important}.grid-col-span-2{grid-column:span 2!important}.grid-row-span-2{grid-row:span 2!important}.grid-columns-3{grid-template-columns:repeat(3,1fr)!important}.grid-col-span-3{grid-column:span 3!important}.grid-row-span-3{grid-row:span 3!important}.grid-columns-4{grid-template-columns:repeat(4,1fr)!important}.grid-col-span-4{grid-column:span 4!important}.grid-row-span-4{grid-row:span 4!important}.grid-columns-5{grid-template-columns:repeat(5,1fr)!important}.grid-col-span-5{grid-column:span 5!important}.grid-row-span-5{grid-row:span 5!important}.grid-columns-6{grid-template-columns:repeat(6,1fr)!important}.grid-col-span-6{grid-column:span 6!important}.grid-row-span-6{grid-row:span 6!important}.grid-columns-7{grid-template-columns:repeat(7,1fr)!important}.grid-col-span-7{grid-column:span 7!important}.grid-row-span-7{grid-row:span 7!important}.grid-columns-8{grid-template-columns:repeat(8,1fr)!important}.grid-col-span-8{grid-column:span 8!important}.grid-row-span-8{grid-row:span 8!important}.grid-columns-auto{--min-col-width: 100px;grid-template-columns:repeat(auto-fit,minmax(var(--min-col-width),1fr))}.gap-2{grid-gap:2px!important}.gap-row-2{grid-row-gap:2px!important}.gap-col-2{grid-column-gap:2px!important}.gap-4{grid-gap:4px!important}.gap-row-4{grid-row-gap:4px!important}.gap-col-4{grid-column-gap:4px!important}.gap-6{grid-gap:6px!important}.gap-row-6{grid-row-gap:6px!important}.gap-col-6{grid-column-gap:6px!important}.gap-8{grid-gap:8px!important}.gap-row-8{grid-row-gap:8px!important}.gap-col-8{grid-column-gap:8px!important}.gap-10{grid-gap:10px!important}.gap-row-10{grid-row-gap:10px!important}.gap-col-10{grid-column-gap:10px!important}.gap-12{grid-gap:12px!important}.gap-row-12{grid-row-gap:12px!important}.gap-col-12{grid-column-gap:12px!important}.gap-14{grid-gap:14px!important}.gap-row-14{grid-row-gap:14px!important}.gap-col-14{grid-column-gap:14px!important}.gap-16{grid-gap:16px!important}.gap-row-16{grid-row-gap:16px!important}.gap-col-16{grid-column-gap:16px!important}.gap-18{grid-gap:18px!important}.gap-row-18{grid-row-gap:18px!important}.gap-col-18{grid-column-gap:18px!important}.gap-20{grid-gap:20px!important}.gap-row-20{grid-row-gap:20px!important}.gap-col-20{grid-column-gap:20px!important}.gap-22{grid-gap:22px!important}.gap-row-22{grid-row-gap:22px!important}.gap-col-22{grid-column-gap:22px!important}.gap-24{grid-gap:24px!important}.gap-row-24{grid-row-gap:24px!important}.gap-col-24{grid-column-gap:24px!important}.gap-26{grid-gap:26px!important}.gap-row-26{grid-row-gap:26px!important}.gap-col-26{grid-column-gap:26px!important}.gap-28{grid-gap:28px!important}.gap-row-28{grid-row-gap:28px!important}.gap-col-28{grid-column-gap:28px!important}.gap-30{grid-gap:30px!important}.gap-row-30{grid-row-gap:30px!important}.gap-col-30{grid-column-gap:30px!important}.gap-32{grid-gap:32px!important}.gap-row-32{grid-row-gap:32px!important}.gap-col-32{grid-column-gap:32px!important}.gap-34{grid-gap:34px!important}.gap-row-34{grid-row-gap:34px!important}.gap-col-34{grid-column-gap:34px!important}.gap-36{grid-gap:36px!important}.gap-row-36{grid-row-gap:36px!important}.gap-col-36{grid-column-gap:36px!important}.gap-38{grid-gap:38px!important}.gap-row-38{grid-row-gap:38px!important}.gap-col-38{grid-column-gap:38px!important}.gap-40{grid-gap:40px!important}.gap-row-40{grid-row-gap:40px!important}.gap-col-40{grid-column-gap:40px!important}.gap-42{grid-gap:42px!important}.gap-row-42{grid-row-gap:42px!important}.gap-col-42{grid-column-gap:42px!important}.gap-44{grid-gap:44px!important}.gap-row-44{grid-row-gap:44px!important}.gap-col-44{grid-column-gap:44px!important}.gap-46{grid-gap:46px!important}.gap-row-46{grid-row-gap:46px!important}.gap-col-46{grid-column-gap:46px!important}.gap-48{grid-gap:48px!important}.gap-row-48{grid-row-gap:48px!important}.gap-col-48{grid-column-gap:48px!important}.d-none{display:none!important}.d-block{display:block!important}.d-inline{display:inline!important}.d-flex,.d-flex-around-center,.d-flex-between-center,.d-flex-between,.d-flex-align-center,.d-flex-column-center,.d-flex-column,.d-flex-center{display:flex!important}.d-grid{display:grid!important}.d-inline-block{display:inline-block!important}.d-inline-flex{display:inline-flex!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-between,.d-flex-between-center,.d-flex-between{justify-content:space-between!important}.justify-content-around,.d-flex-around-center{justify-content:space-around!important}.justify-content-center,.d-flex-center{justify-content:center!important}.justify-content-initial{justify-content:initial!important}.align-content-stretch{align-content:stretch!important}.align-content-center{align-content:center!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-initial{align-content:initial!important}.align-content-inherit{align-content:inherit!important}.justify-items-center{justify-items:center!important}.justify-items-start{justify-items:start!important}.justify-items-end{justify-items:end!important}.justify-items-start{justify-items:flex-start!important}.justify-items-end{justify-items:flex-end!important}.justify-items-self-start{justify-items:self-start!important}.justify-items-self-end{justify-items:self-end!important}.justify-items-left{justify-items:left!important}.justify-items-right{justify-items:right!important}.align-items-stretch{align-items:stretch!important}.align-items-center,.d-flex-around-center,.d-flex-between-center,.d-flex-align-center,.d-flex-column-center,.d-flex-center{align-items:center!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}.align-items-initial{align-items:initial!important}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column,.d-flex-column-center,.d-flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-relative{position:relative!important}.position-static{position:static!important}.position-inherit{position:inherit!important}.position-sticky{position:sticky!important}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-inherit{text-align:inherit!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}.vertical-align-top{vertical-align:top!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-inherit{vertical-align:inherit!important}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}.float-inherit{float:inherit!important}.w-auto{width:auto!important}.w-fit{width:fit-content!important}.w-inherit{width:inherit!important}.h-auto{height:auto!important}.h-fit{height:fit-content!important}.h-inherit{height:inherit!important}.cursor-default{cursor:default!important}.cursor-auto{cursor:auto!important}.cursor-crosshair{cursor:crosshair!important}.cursor-pointer{cursor:pointer!important}.cursor-move{cursor:move!important}.cursor-e-resize{cursor:e-resize!important}.cursor-ne-resize{cursor:ne-resize!important}.cursor-nw-resize{cursor:nw-resize!important}.cursor-n-resize{cursor:n-resize!important}.cursor-se-resize{cursor:se-resize!important}.cursor-sw-resize{cursor:sw-resize!important}.cursor-s-resize{cursor:s-resize!important}.cursor-w-resize{cursor:w-resize!important}.cursor-text{cursor:text!important}.cursor-wait{cursor:wait!important}.cursor-help{cursor:help!important}.overflow-visible{overflow:visible!important}.overflow-hidden{overflow:hidden!important}.overflow-scroll{overflow:scroll!important}.overflow-auto{overflow:auto!important}.overflow-inherit{overflow:inherit!important}.events-none{pointer-events:none!important}.events-initial{pointer-events:initial!important}.events-inherit{pointer-events:inherit!important}.debugger-bor-1{outline:2px dashed hsl(50,100%,50%);box-shadow:inset 0 0 10px #ffd500b3}.debugger-bor-2{outline:2px dashed hsl(100,100%,50%);box-shadow:inset 0 0 10px #55ff00b3}.debugger-bor-3{outline:2px dashed hsl(150,100%,50%);box-shadow:inset 0 0 10px #00ff80b3}.debugger-bor-4{outline:2px dashed hsl(200,100%,50%);box-shadow:inset 0 0 10px #00aaffb3}.debugger-bor-5{outline:2px dashed hsl(250,100%,50%);box-shadow:inset 0 0 10px #2a00ffb3}.debugger-bor-6{outline:2px dashed hsl(300,100%,50%);box-shadow:inset 0 0 10px #ff00ffb3}.debugger-bor-7,.debugger-bor{outline:2px dashed hsl(350,100%,50%);box-shadow:inset 0 0 10px #ff002bb3}.overflow-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.overflow-line-clamp-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.overflow-line-clamp-3{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.overflow-line-clamp-4{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}.text-gradient{background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.position-anchor[data-v-b1fd5468]{position:absolute;width:0;height:0;display:flex}.position-anchor.position-anchor--center[data-v-b1fd5468]{justify-content:center;align-items:center}.position-anchor.position-anchor--top-left[data-v-b1fd5468]{justify-content:left;align-items:flex-start}.position-anchor.position-anchor--top-right[data-v-b1fd5468]{justify-content:right;align-items:flex-start}.position-anchor.position-anchor--bottom-left[data-v-b1fd5468]{justify-content:left;align-items:flex-end}.position-anchor.position-anchor--bottom-right[data-v-b1fd5468]{justify-content:right;align-items:flex-end}.position-anchor.position-anchor--bottom[data-v-b1fd5468]{justify-content:center;align-items:flex-end}.position-anchor.position-anchor--top[data-v-b1fd5468]{justify-content:center;align-items:flex-start}.position-anchor.position-anchor--right[data-v-b1fd5468]{justify-content:flex-end;align-items:center}.position-anchor.position-anchor--left[data-v-b1fd5468]{justify-content:flex-start;align-items:center}.progress-ring[data-v-a48e82e0]{display:block}.progress-ring circle[data-v-a48e82e0]{transform-box:fill-box;transform-origin:center;transition:all var(--duration) ease-in-out}.adaptive-box__body[data-v-78619194]{overflow:hidden;margin-left:auto;margin-right:auto}.adaptive-box__content[data-v-78619194]{transform-origin:left top;width:fit-content;--adaptive-height: initial}.amap-content-body,.amap-content-body .amap-lib-infowindow{background:inherit}.coordinate-pickup-autocomplete li{margin-bottom:8px}.coordinate-pickup-autocomplete .autocomplete-subtitle{font-size:12px;color:var(--el-text-color-secondary);line-height:12px}.coordinate-pickup-form[data-v-f60f53ce] .el-form-item{margin-right:16px}.coordinate-pickup[data-v-f60f53ce]{height:50vh;min-height:400px;max-height:920px}.drag-drop-box[data-v-d1a01b58]{position:absolute}.drag-drop-content[data-v-ebe862bb]{width:fit-content;height:fit-content}.progress-bar[data-v-a7a9d9ba]{position:relative;display:flex;align-items:center}.icon[data-v-b3bb1cc0]{color:#fff}.icon.is-active[data-v-b3bb1cc0]{color:#157edf}.ys-video[data-v-0f68a5ad] .header-controls div:nth-child(2) .theme-icon-item{width:32px!important;display:flex;justify-content:center;align-items:center;padding-top:6px}.ys-video[data-v-0f68a5ad] .header-controls div:nth-child(2) .theme-icon-item svg{height:48px!important;width:48px!important}.ys-video[data-v-0f68a5ad] .header-controls div:nth-child(2) .theme-icon-item:last-child{padding-left:16px}.play-mask[data-v-0f68a5ad]{background-color:#626365;background-repeat:no-repeat;background-size:100% 100%;top:0;left:0}.play-mask .header[data-v-0f68a5ad]{height:20%;inset:0 auto auto 0;min-height:48px;background:linear-gradient(to bottom,#0008 0,#0006 30%,#0003 50%,#0000);padding:10px 8px;width:100%}.play-mask .header .title-box[data-v-0f68a5ad]{max-width:50%;height:48px}.show-log[data-v-39dd9fde]{background:#fff;border-radius:5px;padding:10px;-webkit-user-select:none;user-select:none;box-shadow:0 2px 4px #ccc;min-width:150px}.show-log.is-min[data-v-39dd9fde]{overflow:hidden}.empty-box{position:relative}.empty-box_content{width:100%;height:100%}.empty-box_content.is-hide{opacity:0}.empty-box_error{width:100%;height:100%;position:absolute;z-index:5;display:flex;justify-content:center;align-items:center}.empty-box_error .el-empty{--el-empty-padding: 0}.empty-box_error .empty-box__image{opacity:var(--opacity);filter:hue-rotate(var(--hue-rotate))}.echarts-canvas[data-v-ec5e13a9]{position:relative}.echarts-canvas .echarts-canvas__inner[data-v-ec5e13a9]{width:100%;height:100%;position:absolute}.echarts-canvas .echarts-canvas__inner.is-empty[data-v-ec5e13a9]{opacity:0}.scroll-container[data-v-a640aede]{overflow:auto}.scroll-container[data-v-a640aede]::-webkit-scrollbar{width:0;height:0}.scroll-container .scroll-inner[data-v-a640aede]{display:flex;width:100%;flex-direction:column}[data-v-92b72876] .el-pagination{--el-pagination-bg-color: transparent;--el-pagination-button-disabled-bg-color: transparent}.table-pagination[data-v-92b72876]{padding:16px 0 8px}.upload-image[data-v-a0e5396c]{margin-bottom:-8px}.upload-image.limit_is-max[data-v-a0e5396c] .el-upload-list--picture-card .el-upload--picture-card{display:none}.upload-image[data-v-a0e5396c] .el-upload-list--picture-card .el-upload-list__item{width:var(--upload-size-w);height:var(--upload-size-h)}.upload-image[data-v-a0e5396c] .el-upload-list--picture-card .el-upload-list__item.is-success:focus:not(:hover) .el-icon--close-tip{display:none!important}.upload-image[data-v-a0e5396c] .el-upload-list--picture-card .el-upload-list__item.is-success:focus .el-upload-list__item-status-label{display:inline-flex;opacity:1}.upload-image[data-v-a0e5396c] .el-upload-list--picture-card .el-upload--picture-card{margin-bottom:8px;width:var(--upload-size-w);height:var(--upload-size-h)}.upload-files[data-v-2240c927] .el-upload.is-drag{width:var(--upload-size-w);height:var(--upload-size-h)}.upload-files[data-v-2240c927] .el-upload .el-upload-dragger{padding:unset;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.upload-files[data-v-2240c927] .el-upload-list,.upload-file[data-v-235553c7] .el-upload-list{margin:unset}.images-box[data-v-3e7a597a]{display:flex;flex-wrap:wrap;gap:8px}.images-box[data-v-3e7a597a] .el-image{width:var(--size-w);height:var(--size-h)}
|
|
@@ -3,15 +3,18 @@ var index = () => {
|
|
|
3
3
|
{
|
|
4
4
|
type: "component",
|
|
5
5
|
resolve: (name) => {
|
|
6
|
-
if (name.startsWith("
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
if (name.startsWith("Yk") || name.startsWith("Mr")) {
|
|
7
|
+
const _name = name.replace(/^Yk|^Mr/, "");
|
|
8
|
+
if (_name.startsWith("El")) return { _name, from: "mrxy-yk/element-plus/components" };
|
|
9
|
+
else if (_name.startsWith("Ic")) return { _name, from: "mrxy-yk/icons" };
|
|
10
|
+
else return { _name, from: "mrxy-yk/components" };
|
|
11
|
+
}
|
|
9
12
|
}
|
|
10
13
|
},
|
|
11
14
|
{
|
|
12
15
|
type: "directive",
|
|
13
16
|
resolve: async (name) => {
|
|
14
|
-
return { name, from: "yk/directive" };
|
|
17
|
+
return { name, from: "mrxy-yk/directive" };
|
|
15
18
|
}
|
|
16
19
|
}
|
|
17
20
|
];
|
package/global.d.ts
CHANGED
|
@@ -2,32 +2,54 @@ export {}
|
|
|
2
2
|
|
|
3
3
|
declare module 'vue' {
|
|
4
4
|
export interface GlobalComponents {
|
|
5
|
-
YkPositionAnchor: typeof import('yk')['
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
5
|
+
YkPositionAnchor: typeof import('mrxy-yk/components')['PositionAnchor']
|
|
6
|
+
MrPositionAnchor: typeof import('mrxy-yk/components')['PositionAnchor']
|
|
7
|
+
YkProgressRing: typeof import('mrxy-yk/components')['ProgressRing']
|
|
8
|
+
MrProgressRing: typeof import('mrxy-yk/components')['ProgressRing']
|
|
9
|
+
YkAdaptiveBox: typeof import('mrxy-yk/components')['AdaptiveBox']
|
|
10
|
+
MrAdaptiveBox: typeof import('mrxy-yk/components')['AdaptiveBox']
|
|
11
|
+
YkCoordinatePickup: typeof import('mrxy-yk/components')['CoordinatePickup']
|
|
12
|
+
MrCoordinatePickup: typeof import('mrxy-yk/components')['CoordinatePickup']
|
|
13
|
+
YkInBody: typeof import('mrxy-yk/components')['InBody']
|
|
14
|
+
MrInBody: typeof import('mrxy-yk/components')['InBody']
|
|
15
|
+
YkDragDropBox: typeof import('mrxy-yk/components')['DragDropBox']
|
|
16
|
+
MrDragDropBox: typeof import('mrxy-yk/components')['DragDropBox']
|
|
17
|
+
YkDragDropContainer: typeof import('mrxy-yk/components')['DragDropContainer']
|
|
18
|
+
MrDragDropContainer: typeof import('mrxy-yk/components')['DragDropContainer']
|
|
19
|
+
YkProgressBar: typeof import('mrxy-yk/components')['ProgressBar']
|
|
20
|
+
MrProgressBar: typeof import('mrxy-yk/components')['ProgressBar']
|
|
21
|
+
YkYsVideo: typeof import('mrxy-yk/components')['YsVideo']
|
|
22
|
+
MrYsVideo: typeof import('mrxy-yk/components')['YsVideo']
|
|
23
|
+
YkShowLog: typeof import('mrxy-yk/components')['ShowLog']
|
|
24
|
+
MrShowLog: typeof import('mrxy-yk/components')['ShowLog']
|
|
25
|
+
YkEChartsCanvas: typeof import('mrxy-yk/components')['EChartsCanvas']
|
|
26
|
+
MrEChartsCanvas: typeof import('mrxy-yk/components')['EChartsCanvas']
|
|
27
|
+
YkScrollContainer: typeof import('mrxy-yk/components')['ScrollContainer']
|
|
28
|
+
MrScrollContainer: typeof import('mrxy-yk/components')['ScrollContainer']
|
|
29
|
+
YkElDatePicker: typeof import('mrxy-yk/components')['ElDatePicker']
|
|
30
|
+
MrElDatePicker: typeof import('mrxy-yk/components')['ElDatePicker']
|
|
18
31
|
|
|
19
|
-
YkElFormDialog: typeof import('yk')['
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
32
|
+
YkElFormDialog: typeof import('mrxy-yk/element-plus/components')['ElFormDialog']
|
|
33
|
+
MrElFormDialog: typeof import('mrxy-yk/element-plus/components')['ElFormDialog']
|
|
34
|
+
YkElPagination: typeof import('mrxy-yk/element-plus/components')['ElPagination']
|
|
35
|
+
MrElPagination: typeof import('mrxy-yk/element-plus/components')['ElPagination']
|
|
36
|
+
YkElUploadImages: typeof import('mrxy-yk/element-plus/components')['ElUploadImages']
|
|
37
|
+
MrElUploadImages: typeof import('mrxy-yk/element-plus/components')['ElUploadImages']
|
|
38
|
+
YkElUploadFiles: typeof import('mrxy-yk/element-plus/components')['ElUploadFiles']
|
|
39
|
+
MrElUploadFiles: typeof import('mrxy-yk/element-plus/components')['ElUploadFiles']
|
|
40
|
+
YkElSelectFile: typeof import('mrxy-yk/element-plus/components')['ElSelectFile']
|
|
41
|
+
MrElSelectFile: typeof import('mrxy-yk/element-plus/components')['ElSelectFile']
|
|
42
|
+
YkElEmpty: typeof import('mrxy-yk/element-plus/components')['ElEmpty']
|
|
43
|
+
MrElEmpty: typeof import('mrxy-yk/element-plus/components')['ElEmpty']
|
|
44
|
+
YkElImages: typeof import('mrxy-yk/element-plus/components')['ElImages']
|
|
45
|
+
MrElImages: typeof import('mrxy-yk/element-plus/components')['ElImages']
|
|
46
|
+
YkElTableColumn: typeof import('mrxy-yk/element-plus/components')['ElTableColumn']
|
|
47
|
+
& typeof import('element-plus/es')['ElTableColumn']
|
|
48
|
+
MrElTableColumn: typeof import('mrxy-yk/element-plus/components')['ElTableColumn']
|
|
27
49
|
& typeof import('element-plus/es')['ElTableColumn']
|
|
28
50
|
}
|
|
29
51
|
|
|
30
52
|
export interface GlobalDirectives {
|
|
31
|
-
vRefHeight: typeof import('yk')['RefHeight']
|
|
53
|
+
vRefHeight: typeof import('mrxy-yk')['RefHeight']
|
|
32
54
|
}
|
|
33
55
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mrxy-yk",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "A collection of Vue 3 components and utilities",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"mrxy",
|
|
9
|
+
"mrxy-yk",
|
|
9
10
|
"vue3",
|
|
10
11
|
"components",
|
|
11
12
|
"utilities",
|
|
@@ -38,6 +39,18 @@
|
|
|
38
39
|
"types": "./dist/@type/resolver/index.d.ts",
|
|
39
40
|
"import": "./dist/resolver/index.es.js"
|
|
40
41
|
},
|
|
42
|
+
"./components": {
|
|
43
|
+
"types": "./dist/@type/components/index.d.ts",
|
|
44
|
+
"import": "./dist/components/index.es.js"
|
|
45
|
+
},
|
|
46
|
+
"./element-plus/*": {
|
|
47
|
+
"types": "./dist/@type/element-plus/*",
|
|
48
|
+
"import": "./dist/element-plus/*"
|
|
49
|
+
},
|
|
50
|
+
"./components/*": {
|
|
51
|
+
"types": "./dist/@type/components/*",
|
|
52
|
+
"import": "./dist/components/*"
|
|
53
|
+
},
|
|
41
54
|
"./utils/*": {
|
|
42
55
|
"types": "./dist/@type/utils/*",
|
|
43
56
|
"import": "./dist/utils/*"
|
|
@@ -63,9 +76,9 @@
|
|
|
63
76
|
"web-types": "web-types.json",
|
|
64
77
|
"repository": {
|
|
65
78
|
"type": "git",
|
|
66
|
-
"url": "https://gitee.com/cscake/yk
|
|
79
|
+
"url": "https://gitee.com/cscake/mrxy-yk.git"
|
|
67
80
|
},
|
|
68
|
-
"homepage": "https://gitee.com/cscake/yk
|
|
81
|
+
"homepage": "https://gitee.com/cscake/mrxy-yk.git",
|
|
69
82
|
"scripts": {
|
|
70
83
|
"dev": "vite",
|
|
71
84
|
"pack": "npm pack",
|
|
@@ -76,7 +89,7 @@
|
|
|
76
89
|
"lint": "eslint . --fix"
|
|
77
90
|
},
|
|
78
91
|
"peerDependencies": {
|
|
79
|
-
"element-plus": "^2.
|
|
92
|
+
"element-plus": "^2.6.0",
|
|
80
93
|
"vue": "^3.5.0"
|
|
81
94
|
},
|
|
82
95
|
"dependencies": {
|
package/web-types.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
|
-
"name": "yk",
|
|
3
|
+
"name": "mrxy-yk",
|
|
4
4
|
"js-types-syntax": "typescript",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
@@ -8,10 +8,11 @@
|
|
|
8
8
|
{
|
|
9
9
|
"name": "YkAdaptiveBox",
|
|
10
10
|
"source": {
|
|
11
|
-
"symbol": "
|
|
11
|
+
"symbol": "AdaptiveBox",
|
|
12
|
+
"module": "mrxy-yk/components"
|
|
12
13
|
},
|
|
13
14
|
"description": "缩放型组件,可以使插槽内的元素等比缩放。",
|
|
14
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
15
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/AdaptiveBox.md",
|
|
15
16
|
"props": [
|
|
16
17
|
{
|
|
17
18
|
"name": "reference",
|
|
@@ -53,10 +54,11 @@
|
|
|
53
54
|
{
|
|
54
55
|
"name": "YkPositionAnchor",
|
|
55
56
|
"source": {
|
|
56
|
-
"symbol": "
|
|
57
|
+
"symbol": "PositionAnchor",
|
|
58
|
+
"module": "mrxy-yk/components"
|
|
57
59
|
},
|
|
58
60
|
"description": "锚点定位组件,普通定位的锚点做左上角,PositionAnchor改变锚点的位置",
|
|
59
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
61
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/PositionAnchor.md",
|
|
60
62
|
"props": [
|
|
61
63
|
{
|
|
62
64
|
"name": "anchor",
|
|
@@ -73,10 +75,11 @@
|
|
|
73
75
|
{
|
|
74
76
|
"name": "YkProgressRing",
|
|
75
77
|
"source": {
|
|
76
|
-
"symbol": "
|
|
78
|
+
"symbol": "ProgressRing",
|
|
79
|
+
"module": "mrxy-yk/components"
|
|
77
80
|
},
|
|
78
81
|
"description": "环形进度条。",
|
|
79
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
82
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/ProgressRing.md",
|
|
80
83
|
"props": [
|
|
81
84
|
{
|
|
82
85
|
"name": "progress",
|
|
@@ -123,10 +126,11 @@
|
|
|
123
126
|
{
|
|
124
127
|
"name": "YkCoordinatePickup",
|
|
125
128
|
"source": {
|
|
126
|
-
"symbol": "
|
|
129
|
+
"symbol": "CoordinatePickup",
|
|
130
|
+
"module": "mrxy-yk/components"
|
|
127
131
|
},
|
|
128
132
|
"description": "基于高德地图的坐标拾取工具,用于拾取地图坐标,以及位置信息。",
|
|
129
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
133
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/CoordinatePickup.md",
|
|
130
134
|
"props": [
|
|
131
135
|
{
|
|
132
136
|
"name": "model-value",
|
|
@@ -185,10 +189,11 @@
|
|
|
185
189
|
{
|
|
186
190
|
"name": "YkDragDropBox",
|
|
187
191
|
"source": {
|
|
188
|
-
"symbol": "
|
|
192
|
+
"symbol": "DragDropBox",
|
|
193
|
+
"module": "mrxy-yk/components"
|
|
189
194
|
},
|
|
190
195
|
"description": "使一个组件具有拖拽功能",
|
|
191
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
196
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/DragDropBox.md",
|
|
192
197
|
"props": [
|
|
193
198
|
{
|
|
194
199
|
"name": "v-model:top",
|
|
@@ -215,10 +220,11 @@
|
|
|
215
220
|
{
|
|
216
221
|
"name": "YkDragDropContainer",
|
|
217
222
|
"source": {
|
|
218
|
-
"symbol": "
|
|
223
|
+
"symbol": "DragDropContainer",
|
|
224
|
+
"module": "mrxy-yk/components"
|
|
219
225
|
},
|
|
220
226
|
"description": "简易拖拽组件,可以使插槽内的元素拖拽和缩放。",
|
|
221
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
227
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/DragDropContainer.md",
|
|
222
228
|
"props": [
|
|
223
229
|
{
|
|
224
230
|
"name": "step",
|
|
@@ -240,10 +246,11 @@
|
|
|
240
246
|
{
|
|
241
247
|
"name": "YkProgressBar",
|
|
242
248
|
"source": {
|
|
243
|
-
"symbol": "
|
|
249
|
+
"symbol": "ProgressBar",
|
|
250
|
+
"module": "mrxy-yk/components"
|
|
244
251
|
},
|
|
245
252
|
"description": "一个进度条组件,支持纯色,渐变色,斑马纹,允许自定义花纹和跟随点,提供多个插槽允许多处自定义重写,组件旨在完成进度功能。",
|
|
246
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
253
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/ProgressBar.md",
|
|
247
254
|
"props": [
|
|
248
255
|
{
|
|
249
256
|
"name": "progress",
|
|
@@ -298,10 +305,11 @@
|
|
|
298
305
|
{
|
|
299
306
|
"name": "YkYsVideo",
|
|
300
307
|
"source": {
|
|
301
|
-
"symbol": "
|
|
308
|
+
"symbol": "YsVideo",
|
|
309
|
+
"module": "mrxy-yk/components"
|
|
302
310
|
},
|
|
303
311
|
"description": "萤石云H5组件。",
|
|
304
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
312
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/YsVideo.md",
|
|
305
313
|
"props": [
|
|
306
314
|
{
|
|
307
315
|
"name": "ys-video",
|
|
@@ -328,10 +336,11 @@
|
|
|
328
336
|
{
|
|
329
337
|
"name": "YkShowLog",
|
|
330
338
|
"source": {
|
|
331
|
-
"symbol": "
|
|
339
|
+
"symbol": "ShowLog",
|
|
340
|
+
"module": "mrxy-yk/components"
|
|
332
341
|
},
|
|
333
342
|
"description": "一个主要用于显示实时双向绑定的调试容器,支持拖拽移动。",
|
|
334
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
343
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/ShowLog.md",
|
|
335
344
|
"props": [
|
|
336
345
|
{
|
|
337
346
|
"name": "title",
|
|
@@ -358,10 +367,11 @@
|
|
|
358
367
|
{
|
|
359
368
|
"name": "YkInBody",
|
|
360
369
|
"source": {
|
|
361
|
-
"symbol": "
|
|
370
|
+
"symbol": "InBody",
|
|
371
|
+
"module": "mrxy-yk/components"
|
|
362
372
|
},
|
|
363
373
|
"description": "用于将插槽里的内容渲染到body中",
|
|
364
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
374
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/InBody.md",
|
|
365
375
|
"slots":[
|
|
366
376
|
{
|
|
367
377
|
"name": "default"
|
|
@@ -371,10 +381,11 @@
|
|
|
371
381
|
{
|
|
372
382
|
"name": "YkEChartsCanvas",
|
|
373
383
|
"source": {
|
|
374
|
-
"symbol": "
|
|
384
|
+
"symbol": "EChartsCanvas",
|
|
385
|
+
"module": "mrxy-yk/components"
|
|
375
386
|
},
|
|
376
387
|
"description": "一个基于ECharts的图表组件,支持多种图表类型,如折线图、柱状图、饼图等。",
|
|
377
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
388
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/EChartsCanvas.md",
|
|
378
389
|
"props": [
|
|
379
390
|
{
|
|
380
391
|
"name": "resize",
|
|
@@ -401,10 +412,11 @@
|
|
|
401
412
|
{
|
|
402
413
|
"name": "YkScrollContainer",
|
|
403
414
|
"source": {
|
|
404
|
-
"symbol": "
|
|
415
|
+
"symbol": "ScrollContainer",
|
|
416
|
+
"module": "mrxy-yk/components"
|
|
405
417
|
},
|
|
406
418
|
"description": "滚动容器,子元素内容超出容器时,会无限滚动。",
|
|
407
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
419
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/components/ScrollContainer.md",
|
|
408
420
|
"props": [
|
|
409
421
|
{
|
|
410
422
|
"name": "speed",
|
|
@@ -426,10 +438,11 @@
|
|
|
426
438
|
{
|
|
427
439
|
"name": "YkElFormDialog",
|
|
428
440
|
"source": {
|
|
429
|
-
"symbol": "
|
|
441
|
+
"symbol": "ElFormDialog",
|
|
442
|
+
"module": "mrxy-yk/element-plus/components"
|
|
430
443
|
},
|
|
431
444
|
"description": "FormDialog将ElForm和ElDialog组件进行结合,是一个封装程度程度比较高的一个组件。主要用于解决对话框表单\n每次都需要定义form、rule、show、close、submit等等,为简化编写流程将特定流程进行封装。需要搭配useElFormDialogHooks一起使用",
|
|
432
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
445
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/FormDialog.md",
|
|
433
446
|
"props": [
|
|
434
447
|
{
|
|
435
448
|
"name": "hook",
|
|
@@ -480,6 +493,21 @@
|
|
|
480
493
|
"name": "fullscreen",
|
|
481
494
|
"type": ["boolean"],
|
|
482
495
|
"description": "el-dialog的fullscreen"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "close-on-click-modal",
|
|
499
|
+
"type": ["boolean"],
|
|
500
|
+
"description": "是否可以通过点击 modal 关闭 Dialog"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "dialog-center",
|
|
504
|
+
"type": ["boolean"],
|
|
505
|
+
"description": "是否让 Dialog 的 header 和 footer 部分居中排列"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "show-close",
|
|
509
|
+
"type": ["boolean"],
|
|
510
|
+
"description": "Dialog右上角是否显示关闭按钮"
|
|
483
511
|
}
|
|
484
512
|
],
|
|
485
513
|
"slots":[
|
|
@@ -494,10 +522,11 @@
|
|
|
494
522
|
{
|
|
495
523
|
"name": "YkElDatePicker",
|
|
496
524
|
"source": {
|
|
497
|
-
"symbol": "
|
|
525
|
+
"symbol": "ElDatePicker",
|
|
526
|
+
"module": "mrxy-yk/element-plus/components"
|
|
498
527
|
},
|
|
499
528
|
"description": "基于ElDatePicker二次封装的日期选取组件,支持原有功能并添加一定的语法糖",
|
|
500
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
529
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/DatePicker.md",
|
|
501
530
|
"props": [
|
|
502
531
|
{
|
|
503
532
|
"name": "model-value",
|
|
@@ -554,10 +583,11 @@
|
|
|
554
583
|
{
|
|
555
584
|
"name": "YkElPagination",
|
|
556
585
|
"source": {
|
|
557
|
-
"symbol": "
|
|
586
|
+
"symbol": "ElPagination",
|
|
587
|
+
"module": "mrxy-yk/element-plus/components"
|
|
558
588
|
},
|
|
559
589
|
"description": "分页组件",
|
|
560
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
590
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/Pagination.md",
|
|
561
591
|
"props": [
|
|
562
592
|
{
|
|
563
593
|
"name": "pages",
|
|
@@ -586,10 +616,11 @@
|
|
|
586
616
|
{
|
|
587
617
|
"name": "YkElSelectFile",
|
|
588
618
|
"source": {
|
|
589
|
-
"symbol": "
|
|
619
|
+
"symbol": "ElSelectFile",
|
|
620
|
+
"module": "mrxy-yk/element-plus/components"
|
|
590
621
|
},
|
|
591
622
|
"description": "组件用于获取一个文件。",
|
|
592
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
623
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/SelectFile.md",
|
|
593
624
|
"props": [
|
|
594
625
|
{
|
|
595
626
|
"name": "accept",
|
|
@@ -623,10 +654,11 @@
|
|
|
623
654
|
{
|
|
624
655
|
"name": "YkElUploadFiles",
|
|
625
656
|
"source": {
|
|
626
|
-
"symbol": "
|
|
657
|
+
"symbol": "ElUploadFiles",
|
|
658
|
+
"module": "mrxy-yk/element-plus/components"
|
|
627
659
|
},
|
|
628
660
|
"description": "多文件上传",
|
|
629
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
661
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/UploadFiles.md",
|
|
630
662
|
"props": [
|
|
631
663
|
{
|
|
632
664
|
"name": "model-value",
|
|
@@ -705,10 +737,11 @@
|
|
|
705
737
|
{
|
|
706
738
|
"name": "YkElUploadImages",
|
|
707
739
|
"source": {
|
|
708
|
-
"symbol": "
|
|
740
|
+
"symbol": "ElUploadImages",
|
|
741
|
+
"module": "mrxy-yk/element-plus/components"
|
|
709
742
|
},
|
|
710
743
|
"description": "多图片上传",
|
|
711
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
744
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/UploadImages.md",
|
|
712
745
|
"props": [
|
|
713
746
|
{
|
|
714
747
|
"name": "model-value",
|
|
@@ -782,10 +815,11 @@
|
|
|
782
815
|
{
|
|
783
816
|
"name": "YkElEmpty",
|
|
784
817
|
"source": {
|
|
785
|
-
"symbol": "
|
|
818
|
+
"symbol": "ElEmpty",
|
|
819
|
+
"module": "mrxy-yk/element-plus/components"
|
|
786
820
|
},
|
|
787
821
|
"description": "基于el-empty组件优化得来的缺省图组件,用来显示当前内容的异常时的缺省状态。组件中提供了枚举EmptyEnum,帮助你更便捷的使用各个缺省状态",
|
|
788
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
822
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/Empty.md",
|
|
789
823
|
"props": [
|
|
790
824
|
{
|
|
791
825
|
"name": "hook",
|
|
@@ -817,10 +851,11 @@
|
|
|
817
851
|
{
|
|
818
852
|
"name": "YkElImages",
|
|
819
853
|
"source": {
|
|
820
|
-
"symbol": "
|
|
854
|
+
"symbol": "ElImages",
|
|
855
|
+
"module": "mrxy-yk/element-plus/components"
|
|
821
856
|
},
|
|
822
857
|
"description": "图片展示组件",
|
|
823
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
858
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/Images.md",
|
|
824
859
|
"props": [
|
|
825
860
|
{
|
|
826
861
|
"name": "src-list",
|
|
@@ -857,10 +892,11 @@
|
|
|
857
892
|
{
|
|
858
893
|
"name": "YkElTableColumn",
|
|
859
894
|
"source": {
|
|
860
|
-
"symbol": "
|
|
895
|
+
"symbol": "ElTableColumn",
|
|
896
|
+
"module": "mrxy-yk/element-plus/components"
|
|
861
897
|
},
|
|
862
898
|
"description": "与ElTableColumn用法相同,没有值时默认显示一个字符",
|
|
863
|
-
"doc-url": "https://gitee.com/cscake/yk
|
|
899
|
+
"doc-url": "https://gitee.com/cscake/mrxy-yk/blob/master/doc/element-plus/components/TableColumn.md",
|
|
864
900
|
"props": [
|
|
865
901
|
{
|
|
866
902
|
"name": "label",
|