mrxy-yk 1.1.4 → 1.1.5-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/echarts-canvas/EChartsCanvas.d.ts +1 -1
- package/dist/components/echarts-canvas/EChartsCanvas.vue.js +4 -4
- package/dist/{element-plus/components → components}/empty/Empty.vue.js +27 -36
- package/dist/{element-plus/components → components}/empty/config.d.ts +0 -2
- package/dist/components/empty/hooks/index.d.ts +2 -0
- package/dist/{element-plus/components → components}/empty/hooks/index.js +2 -2
- package/dist/{element-plus/components → components}/empty/type.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +17 -17
- package/dist/components/position-anchor/PositionAnchor.vue.js +1 -1
- package/dist/components/ys-video/type.js +20 -0
- package/dist/config/index.d.ts +1 -1
- package/dist/element-plus/components/index.d.ts +0 -1
- package/dist/element-plus/hooks/index.d.ts +0 -1
- package/dist/entity/index.d.ts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/index.js +4 -2
- package/dist/styles/index.css +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
- package/dist/element-plus/components/empty/hooks/index.d.ts +0 -2
- /package/dist/{element-plus/components → components}/empty/Empty.d.ts +0 -0
- /package/dist/{element-plus/components → components}/empty/Empty.vue3.js +0 -0
- /package/dist/{element-plus/components → components}/empty/config.js +0 -0
- /package/dist/{element-plus/components → components}/empty/hooks/type.d.ts +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EChartsType, EChartsOption } from 'echarts';
|
|
2
2
|
import { EcBasicOption } from '../../utils/echarts';
|
|
3
|
-
import { UseEmptyHooksExample } from '
|
|
3
|
+
import { UseEmptyHooksExample } from '../empty/hooks/type';
|
|
4
4
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
5
5
|
type __VLS_Props = {
|
|
6
6
|
emptyHook?: UseEmptyHooksExample;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent, shallowRef, onMounted, createElementBlock, openBlock, createBlock, createCommentVNode, createElementVNode, normalizeClass, normalizeStyle, renderSlot } from "vue";
|
|
1
|
+
import { defineComponent, shallowRef, onMounted, createElementBlock, openBlock, createBlock, createCommentVNode, createElementVNode, unref, normalizeClass, normalizeStyle, renderSlot } from "vue";
|
|
2
2
|
import * as echarts from "echarts";
|
|
3
3
|
import { EChartsUtil } from "../../utils/echarts/utils/index.js";
|
|
4
|
-
import _sfc_main$1 from "
|
|
5
|
-
/* empty css
|
|
4
|
+
import _sfc_main$1 from "../empty/Empty.vue.js";
|
|
5
|
+
/* empty css */
|
|
6
6
|
import { EcBasicOption } from "../../utils/echarts/modules/coordinate/basic.js";
|
|
7
7
|
const _hoisted_1 = { class: "yk-echarts-canvas" };
|
|
8
8
|
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -55,7 +55,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
55
55
|
});
|
|
56
56
|
return (_ctx, _cache) => {
|
|
57
57
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
58
|
-
props.emptyHook && !props.emptyHook.isSUCCESS ? (openBlock(), createBlock(_sfc_main$1, {
|
|
58
|
+
props.emptyHook && !props.emptyHook.isSUCCESS ? (openBlock(), createBlock(unref(_sfc_main$1), {
|
|
59
59
|
key: 0,
|
|
60
60
|
class: "position-absolute wh-100",
|
|
61
61
|
style: { "z-index": "999" },
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { defineComponent, onMounted, ref, computed, watch, withDirectives, createElementBlock, openBlock, createCommentVNode, createElementVNode, unref,
|
|
3
|
-
import { ObjectUtil } from "
|
|
1
|
+
import { ElLoadingDirective } from "element-plus/es";
|
|
2
|
+
import { defineComponent, onMounted, ref, computed, watch, withDirectives, createElementBlock, openBlock, createCommentVNode, createElementVNode, unref, normalizeStyle, toDisplayString, renderSlot, normalizeClass } from "vue";
|
|
3
|
+
import { ObjectUtil } from "../../utils/prototype/lib/ObjectUtil.js";
|
|
4
4
|
import { EmptyStatusConfig } from "./config.js";
|
|
5
|
-
import { EmptyStatusExtendConfig } from "
|
|
5
|
+
import { EmptyStatusExtendConfig } from "../../config/index.js";
|
|
6
6
|
const _hoisted_1 = { class: "yk-empty" };
|
|
7
7
|
const _hoisted_2 = {
|
|
8
8
|
key: 0,
|
|
9
|
-
class: "
|
|
9
|
+
class: "empty_error"
|
|
10
10
|
};
|
|
11
|
-
const _hoisted_3 =
|
|
11
|
+
const _hoisted_3 = { class: "empty__description debugger-bor" };
|
|
12
|
+
const _hoisted_4 = { class: "empty__bottom debugger-bor" };
|
|
12
13
|
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
13
14
|
__name: "Empty",
|
|
14
15
|
props: {
|
|
@@ -41,43 +42,33 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
41
42
|
tempEmpty.type = emptyType;
|
|
42
43
|
currentEmpty.value = ObjectUtil.toJSON(tempEmpty);
|
|
43
44
|
}
|
|
45
|
+
const emptyImageStyle = computed(() => {
|
|
46
|
+
const empty = currentEmpty.value;
|
|
47
|
+
return {
|
|
48
|
+
"--yk-empty-image-size": `${props.imageSize}px`,
|
|
49
|
+
"hue-rotate": `${empty.hueRotate || 0}deg`,
|
|
50
|
+
"opacity": `${empty.hueRotate ? 0.9 : 1}`,
|
|
51
|
+
"--yk-empty-image": `var(--yk-empty-${empty.type}, url('${empty.src}'))`
|
|
52
|
+
};
|
|
53
|
+
});
|
|
44
54
|
watch(() => props.hook.state.value, updateStatus, { deep: true });
|
|
45
55
|
return (_ctx, _cache) => {
|
|
46
|
-
const _component_el_empty = ElEmpty;
|
|
47
56
|
const _directive_loading = ElLoadingDirective;
|
|
48
57
|
return withDirectives((openBlock(), createElementBlock("div", _hoisted_1, [
|
|
49
58
|
unref(isShowEmpty) ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"--hue-rotate": `${unref(currentEmpty).hueRotate || 0}deg`,
|
|
61
|
-
"--opacity": `${unref(currentEmpty).hueRotate ? 0.9 : 1}`
|
|
62
|
-
})
|
|
63
|
-
}, [
|
|
64
|
-
unref(currentEmpty).src ? (openBlock(), createElementBlock("img", {
|
|
65
|
-
key: 0,
|
|
66
|
-
src: unref(currentEmpty).src,
|
|
67
|
-
alt: ""
|
|
68
|
-
}, null, 8, _hoisted_3)) : createCommentVNode("", true)
|
|
69
|
-
], 4)
|
|
70
|
-
]),
|
|
71
|
-
default: withCtx(() => [
|
|
72
|
-
renderSlot(_ctx.$slots, "footer", {
|
|
73
|
-
type: unref(currentEmpty).type
|
|
74
|
-
})
|
|
75
|
-
]),
|
|
76
|
-
_: 3
|
|
77
|
-
}, 16, ["image-size", "description", "class", "style"])
|
|
59
|
+
createElementVNode("div", {
|
|
60
|
+
class: "empty__image debugger-bor",
|
|
61
|
+
style: normalizeStyle(unref(emptyImageStyle))
|
|
62
|
+
}, null, 4),
|
|
63
|
+
createElementVNode("div", _hoisted_3, toDisplayString(unref(currentEmpty).description), 1),
|
|
64
|
+
createElementVNode("div", _hoisted_4, [
|
|
65
|
+
renderSlot(_ctx.$slots, "footer", {
|
|
66
|
+
type: unref(currentEmpty).type
|
|
67
|
+
})
|
|
68
|
+
])
|
|
78
69
|
])) : createCommentVNode("", true),
|
|
79
70
|
createElementVNode("div", {
|
|
80
|
-
class: normalizeClass(["
|
|
71
|
+
class: normalizeClass(["empty_content", { "is-hide": unref(isShowEmpty) }])
|
|
81
72
|
}, [
|
|
82
73
|
renderSlot(_ctx.$slots, "default")
|
|
83
74
|
], 2)
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { EmptyOption } from './type';
|
|
2
1
|
export declare const EmptyStatusConfig: {
|
|
3
2
|
readonly LOADING: {
|
|
4
3
|
readonly src: "";
|
|
@@ -21,4 +20,3 @@ export declare const EmptyStatusConfig: {
|
|
|
21
20
|
readonly description: "当前无内容,请选择参数";
|
|
22
21
|
};
|
|
23
22
|
};
|
|
24
|
-
export declare const extendEmptyConfig: <T extends EmptyOption>(config: T) => T;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref } from "vue";
|
|
2
|
-
function
|
|
2
|
+
function useEmptyHooks(options) {
|
|
3
3
|
const emptyState = ref(options?.defaultType || "NONE");
|
|
4
4
|
const proxy = new Proxy({
|
|
5
5
|
state: emptyState,
|
|
@@ -24,5 +24,5 @@ function useElEmptyHooks(options) {
|
|
|
24
24
|
return proxy;
|
|
25
25
|
}
|
|
26
26
|
export {
|
|
27
|
-
|
|
27
|
+
useEmptyHooks
|
|
28
28
|
};
|
|
@@ -11,4 +11,5 @@ export { default as ShowLog } from './show-log/ShowLog';
|
|
|
11
11
|
export { default as EChartsCanvas } from './echarts-canvas/EChartsCanvas';
|
|
12
12
|
export { default as ScrollContainer } from './scroll-container/ScrollContainer';
|
|
13
13
|
export { default as ExportLink } from './export-link/ExportLink';
|
|
14
|
+
export { default as Empty } from './empty/Empty';
|
|
14
15
|
export * from '../element-plus/components';
|
package/dist/components/index.js
CHANGED
|
@@ -22,19 +22,19 @@ import { default as default12 } from "./echarts-canvas/EChartsCanvas.vue.js";
|
|
|
22
22
|
import { default as default13 } from "./scroll-container/ScrollContainer.vue.js";
|
|
23
23
|
/* empty css */
|
|
24
24
|
import { default as default14 } from "./export-link/ExportLink.vue.js";
|
|
25
|
-
import { default as default15 } from "
|
|
26
|
-
|
|
27
|
-
import { default as
|
|
25
|
+
import { default as default15 } from "./empty/Empty.vue.js";
|
|
26
|
+
/* empty css */
|
|
27
|
+
import { default as default16 } from "../element-plus/components/date-picker/DatePicker.vue.js";
|
|
28
|
+
import { default as default17 } from "../element-plus/components/form-dialog/FormDialog.vue.js";
|
|
29
|
+
import { default as default18 } from "../element-plus/components/pagination/Pagination.vue.js";
|
|
28
30
|
/* empty css */
|
|
29
|
-
import { default as
|
|
31
|
+
import { default as default19 } from "../element-plus/components/upload/upload-images/UploadImages.vue.js";
|
|
30
32
|
/* empty css */
|
|
31
|
-
import { default as
|
|
33
|
+
import { default as default20 } from "../element-plus/components/upload/upload-files/UploadFiles.vue.js";
|
|
32
34
|
/* empty css */
|
|
33
|
-
import { default as
|
|
35
|
+
import { default as default21 } from "../element-plus/components/upload/select-file/SelectFile.vue.js";
|
|
34
36
|
/* empty css */
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as default22 } from "../element-plus/components/empty/Empty.vue.js";
|
|
37
|
-
/* empty css */
|
|
37
|
+
import { default as default22 } from "../element-plus/components/table-column/TableColumn.vue.js";
|
|
38
38
|
import { default as default23 } from "../element-plus/components/images/Images.vue.js";
|
|
39
39
|
/* empty css */
|
|
40
40
|
export {
|
|
@@ -43,15 +43,15 @@ export {
|
|
|
43
43
|
default7 as DragDropBox,
|
|
44
44
|
default8 as DragDropContainer,
|
|
45
45
|
default12 as EChartsCanvas,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
default16 as ElFormDialog,
|
|
46
|
+
default16 as ElDatePicker,
|
|
47
|
+
default17 as ElFormDialog,
|
|
49
48
|
default23 as ElImages,
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
49
|
+
default18 as ElPagination,
|
|
50
|
+
default21 as ElSelectFile,
|
|
51
|
+
default22 as ElTableColumn,
|
|
52
|
+
default20 as ElUploadFiles,
|
|
53
|
+
default19 as ElUploadImages,
|
|
54
|
+
default15 as Empty,
|
|
55
55
|
default14 as ExportLink,
|
|
56
56
|
default6 as InBody,
|
|
57
57
|
default2 as PositionAnchor,
|
|
@@ -8,7 +8,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
8
8
|
const props = __props;
|
|
9
9
|
return (_ctx, _cache) => {
|
|
10
10
|
return openBlock(), createElementBlock("div", {
|
|
11
|
-
class: normalizeClass(["position-anchor", ["position-anchor--" + props.anchor]])
|
|
11
|
+
class: normalizeClass(["yk-position-anchor", ["position-anchor--" + props.anchor]])
|
|
12
12
|
}, [
|
|
13
13
|
createElementVNode("div", null, [
|
|
14
14
|
renderSlot(_ctx.$slots, "default")
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
class YsVideo {
|
|
2
|
+
constructor(option) {
|
|
3
|
+
if (option) Object.assign(this, option);
|
|
4
|
+
}
|
|
5
|
+
// 视频名称
|
|
6
|
+
videoName;
|
|
7
|
+
// 访问令牌
|
|
8
|
+
accessToken;
|
|
9
|
+
// 设备序列号
|
|
10
|
+
deviceSerial;
|
|
11
|
+
// 通道
|
|
12
|
+
channelNo = 1;
|
|
13
|
+
// 验证码
|
|
14
|
+
validCode;
|
|
15
|
+
// 封面图片
|
|
16
|
+
image;
|
|
17
|
+
}
|
|
18
|
+
export {
|
|
19
|
+
YsVideo
|
|
20
|
+
};
|
package/dist/config/index.d.ts
CHANGED
|
@@ -5,5 +5,4 @@ export { default as ElUploadImages } from './upload/upload-images/UploadImages';
|
|
|
5
5
|
export { default as ElUploadFiles } from './upload/upload-files/UploadFiles';
|
|
6
6
|
export { default as ElSelectFile } from './upload/select-file/SelectFile';
|
|
7
7
|
export { default as ElTableColumn } from './table-column/TableColumn';
|
|
8
|
-
export { default as ElEmpty } from './empty/Empty';
|
|
9
8
|
export { default as ElImages } from './images/Images';
|
package/dist/entity/index.d.ts
CHANGED
package/dist/hooks/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,19 +4,20 @@ import * as index$2 from "./directives/index.js";
|
|
|
4
4
|
import "./element-plus/index.js";
|
|
5
5
|
import { useTableSearchHooks } from "./hooks/table-search/index.js";
|
|
6
6
|
import { useInjectEventsHooks } from "./hooks/inject-events/index.js";
|
|
7
|
+
import { useEmptyHooks } from "./components/empty/hooks/index.js";
|
|
7
8
|
import { MatchUnit } from "./utils/match-unit/index.js";
|
|
8
9
|
import { TransitionFade } from "./utils/transition-fade/index.js";
|
|
9
10
|
import { AMapLoader } from "./utils/amap/index.js";
|
|
10
11
|
import { Pages } from "./entity/Pages.js";
|
|
11
12
|
import { BigFloat } from "./entity/BigFloat.js";
|
|
12
13
|
import { RejectError } from "./entity/RejectError.js";
|
|
14
|
+
import { YsVideo } from "./components/ys-video/type.js";
|
|
13
15
|
import { IcImage, IcImageError } from "./icons/index.js";
|
|
14
16
|
import * as echarts$1 from "echarts";
|
|
15
17
|
import { useElDialogHooks } from "./element-plus/hooks/dialog/index.js";
|
|
16
18
|
import { useElFormHooks } from "./element-plus/hooks/form/index.js";
|
|
17
19
|
import { useElTableSortHooks } from "./element-plus/hooks/table-sort/index.js";
|
|
18
20
|
import { useElFormDialogHooks } from "./element-plus/hooks/form-dialog/index.js";
|
|
19
|
-
import { useElEmptyHooks } from "./element-plus/components/empty/hooks/index.js";
|
|
20
21
|
import { TableUtil } from "./element-plus/utils/table-util/index.js";
|
|
21
22
|
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.js";
|
|
22
23
|
import { ArrayUtil } from "./utils/prototype/lib/ArrayUtil.js";
|
|
@@ -77,6 +78,7 @@ export {
|
|
|
77
78
|
RejectError,
|
|
78
79
|
TableUtil,
|
|
79
80
|
TransitionFade,
|
|
81
|
+
YsVideo,
|
|
80
82
|
index as default,
|
|
81
83
|
echarts,
|
|
82
84
|
integerRule,
|
|
@@ -103,10 +105,10 @@ export {
|
|
|
103
105
|
useEcLineOption,
|
|
104
106
|
useEcPieOption,
|
|
105
107
|
useElDialogHooks,
|
|
106
|
-
useElEmptyHooks,
|
|
107
108
|
useElFormDialogHooks,
|
|
108
109
|
useElFormHooks,
|
|
109
110
|
useElTableSortHooks,
|
|
111
|
+
useEmptyHooks,
|
|
110
112
|
useInjectEventsHooks,
|
|
111
113
|
useTableSearchHooks,
|
|
112
114
|
usernameRule,
|
package/dist/styles/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.position-anchor{position:absolute;width:0;height:0;display:flex}.position-anchor.position-anchor--center{justify-content:center;align-items:center}.position-anchor.position-anchor--top-left{justify-content:left;align-items:flex-start}.position-anchor.position-anchor--top-right{justify-content:right;align-items:flex-start}.position-anchor.position-anchor--bottom-left{justify-content:left;align-items:flex-end}.position-anchor.position-anchor--bottom-right{justify-content:right;align-items:flex-end}.position-anchor.position-anchor--bottom{justify-content:center;align-items:flex-end}.position-anchor.position-anchor--top{justify-content:center;align-items:flex-start}.position-anchor.position-anchor--right{justify-content:flex-end;align-items:center}.position-anchor.position-anchor--left{justify-content:flex-start;align-items:center}.yk-progress-ring{display:block}.yk-progress-ring circle{transform-box:fill-box;transform-origin:center;transition:all var(--duration) ease-in-out}.yk-adaptive-box .adaptive-box__body{overflow:hidden;margin-left:auto;margin-right:auto}.yk-adaptive-box .adaptive-box__content{transform-origin:left top;width:fit-content;--adaptive-height: initial}.yk-coordinate-pickup-autocomplete li{margin-bottom:8px}.yk-coordinate-pickup-autocomplete .autocomplete-subtitle{font-size:12px;color:var(--el-text-color-secondary);line-height:12px}.yk-coordinate-pickup-form .el-form-item{margin-right:16px}.coordinate-pickup{height:50vh;min-height:400px;max-height:920px}.amap-content-body,.amap-content-body .amap-lib-infowindow{background:inherit}.yk-drag-drop-box{position:absolute}.yk-drag-drop-container .drag-drop-content{width:fit-content;height:fit-content}.yk-progress-bar{position:relative;display:flex;align-items:center}.yk-ys-video .icon--replay{color:#fff}.yk-ys-video .icon--replay.is-active{color:#157edf}.yk-ys-video .header-controls div:nth-child(2) .theme-icon-item{width:32px!important;display:flex;justify-content:center;align-items:center;padding-top:6px}.yk-ys-video .header-controls div:nth-child(2) .theme-icon-item svg{height:48px!important;width:48px!important}.yk-ys-video .header-controls div:nth-child(2) .theme-icon-item:last-child{padding-left:16px}.yk-ys-video .play-mask{background-color:#626365;background-repeat:no-repeat;background-size:100% 100%;top:0;left:0}.yk-ys-video .play-mask .header{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%}.yk-ys-video .play-mask .header .title-box{max-width:50%;height:48px}.yk-show-log{background:#fff;border-radius:5px;padding:10px;-webkit-user-select:none;user-select:none;box-shadow:0 2px 4px #ccc;min-width:150px}.yk-show-log.is-min{overflow:hidden}.yk-empty{position:relative}.yk-empty .
|
|
1
|
+
.yk-position-anchor{position:absolute;width:0;height:0;display:flex}.yk-position-anchor.position-anchor--center{justify-content:center;align-items:center}.yk-position-anchor.position-anchor--top-left{justify-content:left;align-items:flex-start}.yk-position-anchor.position-anchor--top-right{justify-content:right;align-items:flex-start}.yk-position-anchor.position-anchor--bottom-left{justify-content:left;align-items:flex-end}.yk-position-anchor.position-anchor--bottom-right{justify-content:right;align-items:flex-end}.yk-position-anchor.position-anchor--bottom{justify-content:center;align-items:flex-end}.yk-position-anchor.position-anchor--top{justify-content:center;align-items:flex-start}.yk-position-anchor.position-anchor--right{justify-content:flex-end;align-items:center}.yk-position-anchor.position-anchor--left{justify-content:flex-start;align-items:center}.yk-progress-ring{display:block}.yk-progress-ring circle{transform-box:fill-box;transform-origin:center;transition:all var(--duration) ease-in-out}.yk-adaptive-box .adaptive-box__body{overflow:hidden;margin-left:auto;margin-right:auto}.yk-adaptive-box .adaptive-box__content{transform-origin:left top;width:fit-content;--adaptive-height: initial}.yk-coordinate-pickup-autocomplete li{margin-bottom:8px}.yk-coordinate-pickup-autocomplete .autocomplete-subtitle{font-size:12px;color:var(--el-text-color-secondary);line-height:12px}.yk-coordinate-pickup-form .el-form-item{margin-right:16px}.coordinate-pickup{height:50vh;min-height:400px;max-height:920px}.amap-content-body,.amap-content-body .amap-lib-infowindow{background:inherit}.yk-drag-drop-box{position:absolute}.yk-drag-drop-container .drag-drop-content{width:fit-content;height:fit-content}.yk-progress-bar{position:relative;display:flex;align-items:center}.yk-ys-video .icon--replay{color:#fff}.yk-ys-video .icon--replay.is-active{color:#157edf}.yk-ys-video .header-controls div:nth-child(2) .theme-icon-item{width:32px!important;display:flex;justify-content:center;align-items:center;padding-top:6px}.yk-ys-video .header-controls div:nth-child(2) .theme-icon-item svg{height:48px!important;width:48px!important}.yk-ys-video .header-controls div:nth-child(2) .theme-icon-item:last-child{padding-left:16px}.yk-ys-video .play-mask{background-color:#626365;background-repeat:no-repeat;background-size:100% 100%;top:0;left:0}.yk-ys-video .play-mask .header{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%}.yk-ys-video .play-mask .header .title-box{max-width:50%;height:48px}.yk-show-log{background:#fff;border-radius:5px;padding:10px;-webkit-user-select:none;user-select:none;box-shadow:0 2px 4px #ccc;min-width:150px}.yk-show-log.is-min{overflow:hidden}.yk-empty{position:relative;--yk-empty-description-font-size: var(--el-font-size-base, 14px);--yk-empty-description-color: var(--el-text-color-secondary, #909399);--yk-empty-description-margin-top: var(--el-empty-description-margin-top, 20px);--yk-empty-bottom-margin-top: var(--el-empty-bottom-margin-top, 20px)}.yk-empty .empty_content{width:100%;height:100%}.yk-empty .empty_content.is-hide{opacity:0}.yk-empty .empty_error{width:100%;height:100%;position:absolute;z-index:5;display:flex;flex-direction:column;justify-content:center;align-items:center}.yk-empty .empty_error .empty__image{background:var(--yk-empty-image);background-size:cover;width:var(--yk-empty-image-size);height:var(--yk-empty-image-size);opacity:var(--opacity);filter:hue-rotate(var(--hue-rotate))}.yk-empty .empty_error .empty__description{font-size:var(--yk-empty-description-font-size);color:var(--yk-empty-description-color);margin-top:var(--yk-empty-description-margin-top)}.yk-empty .empty_error .empty__bottom{margin-top:var(--yk-empty-bottom-margin-top)}.yk-echarts-canvas{position:relative;container-type:size}.yk-echarts-canvas .echarts-canvas__inner{width:100%;height:100%;position:absolute;z-index:2}.yk-echarts-canvas .echarts-canvas__inner.is-empty{opacity:0}.yk-scroll-container{overflow:auto}.yk-scroll-container::-webkit-scrollbar{width:0;height:0}.yk-scroll-container .scroll-inner{display:flex;width:100%;flex-direction:column}.yk-pagination{padding:16px 0 8px}.yk-pagination .el-pagination{--el-pagination-bg-color: transparent;--el-pagination-button-disabled-bg-color: transparent}.yk-upload-image{margin-bottom:-8px}.yk-upload-image.limit_is-max .el-upload-list--picture-card .el-upload--picture-card{display:none}.yk-upload-image .el-upload-list--picture-card .el-upload-list__item{width:var(--upload-size-w);height:var(--upload-size-h)}.yk-upload-image .el-upload-list--picture-card .el-upload-list__item.is-success:focus:not(:hover) .el-icon--close-tip{display:none!important}.yk-upload-image .el-upload-list--picture-card .el-upload-list__item.is-success:focus .el-upload-list__item-status-label{display:inline-flex;opacity:1}.yk-upload-image .el-upload-list--picture-card .el-upload--picture-card{margin-bottom:8px;width:var(--upload-size-w);height:var(--upload-size-h)}.yk-upload-files .el-upload.is-drag{width:var(--upload-size-w);height:var(--upload-size-h)}.yk-upload-files .el-upload .el-upload-dragger{padding:unset;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.yk-upload-files .el-upload-list{margin:unset}.yk-upload-file :deep(.el-upload-list){margin:unset}.yk-images{display:flex;flex-wrap:wrap;gap:8px}.yk-images :deep(.el-image){width:var(--size-w);height:var(--size-h)}
|
package/package.json
CHANGED
package/web-types.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|