@dfsj/components 3.7.2-alpha.2 → 3.7.2-alpha.4
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/Boards/src/Boards.vue.d.ts +2 -0
- package/dist/components/Boards/src/Boards.vue2.js +10 -5
- package/dist/components/Boards/src/hooKs/useStyle.d.ts +5 -1
- package/dist/components/Boards/src/hooKs/useStyle.js +7 -2
- package/dist/components/Boards/src/props.d.ts +2 -0
- package/dist/components/Boards/src/props.js +2 -1
- package/dist/components/ClickOutSide/src/ClickOutSide.vue2.js +1 -1
- package/dist/components/Modal/src/hooks/useTimeout.js +1 -1
- package/dist/components/Table/src/Table.vue.d.ts +3 -3
- package/dist/components/Video/src/VideoPlayerToolbar.vue2.js +1 -1
- package/dist/components/Visual/src/BufferLayerPlayer.d.ts +4 -0
- package/dist/components/Visual/src/BufferLayerPlayer.js +23 -2
- package/dist/index.min.css +3 -3
- package/dist/node_modules/.pnpm/{@vueuse_core@13.7.0_vue@3.5.19_typescript@5.9.2_ → @vueuse_core@13.9.0_vue@3.5.20_typescript@5.9.2_}/node_modules/@vueuse/core/index.js +2 -2
- package/package.json +2 -2
- /package/dist/node_modules/.pnpm/{@vueuse_shared@13.7.0_vue@3.5.19_typescript@5.9.2_ → @vueuse_shared@13.9.0_vue@3.5.20_typescript@5.9.2_}/node_modules/@vueuse/shared/index.js +0 -0
|
@@ -36,6 +36,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
36
36
|
margin: any[];
|
|
37
37
|
fixed: any[];
|
|
38
38
|
color: string;
|
|
39
|
+
width: string;
|
|
39
40
|
};
|
|
40
41
|
};
|
|
41
42
|
customId: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/shared/vue-types.d8e57a80").b<string>> & {
|
|
@@ -83,6 +84,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
83
84
|
margin: any[];
|
|
84
85
|
fixed: any[];
|
|
85
86
|
color: string;
|
|
87
|
+
width: string;
|
|
86
88
|
};
|
|
87
89
|
};
|
|
88
90
|
customId: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/shared/vue-types.d8e57a80").b<string>> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
2
|
-
import { defineComponent, ref, toRefs, computed, watchEffect, toRaw, unref, resolveComponent, withDirectives, openBlock, createElementBlock, normalizeClass, normalizeStyle, withModifiers, createVNode, createCommentVNode, createElementVNode, withCtx, Fragment, renderList, createBlock, toDisplayString, KeepAlive, resolveDynamicComponent, markRaw, mergeProps,
|
|
2
|
+
import { defineComponent, ref, toRefs, computed, watchEffect, toRaw, unref, resolveComponent, withDirectives, openBlock, createElementBlock, normalizeClass, normalizeStyle, withModifiers, createVNode, createCommentVNode, createElementVNode, withCtx, Fragment, renderList, createBlock, toDisplayString, KeepAlive, resolveDynamicComponent, markRaw, mergeProps, renderSlot, defineAsyncComponent } from 'vue';
|
|
3
3
|
import { BoardProps, BoardPositionEnum } from './props.js';
|
|
4
4
|
import '../../Icon/src/Icon.vue.js';
|
|
5
5
|
import '../../Icon/src/SvgIcon.vue.js';
|
|
@@ -31,7 +31,8 @@ var script = defineComponent({
|
|
|
31
31
|
resizable = _toRefs.resizable,
|
|
32
32
|
display = _toRefs.display,
|
|
33
33
|
customId = _toRefs.customId;
|
|
34
|
-
var
|
|
34
|
+
var resized = ref(false);
|
|
35
|
+
var _useStyle = useStyle(props, resized),
|
|
35
36
|
getStyle = _useStyle.getStyle,
|
|
36
37
|
position = _useStyle.position,
|
|
37
38
|
board = _useStyle.board,
|
|
@@ -92,6 +93,9 @@ var script = defineComponent({
|
|
|
92
93
|
style: normalizeStyle(unref(getStyle)),
|
|
93
94
|
ref_key: "el",
|
|
94
95
|
ref: el,
|
|
96
|
+
onResize: _cache[1] || (_cache[1] = function ($event) {
|
|
97
|
+
return resized.value = true;
|
|
98
|
+
}),
|
|
95
99
|
id: unref(customId)
|
|
96
100
|
}, [unref(board).items.length ? (openBlock(), createElementBlock("span", {
|
|
97
101
|
key: 0,
|
|
@@ -135,12 +139,13 @@ var script = defineComponent({
|
|
|
135
139
|
"class": normalizeClass(["board--panel-container", {
|
|
136
140
|
active: unref(board).value === item.id
|
|
137
141
|
}])
|
|
138
|
-
}, [(openBlock(), createBlock(KeepAlive, null, [
|
|
142
|
+
}, [(openBlock(), createBlock(KeepAlive, null, [unref(board).value === item.id ? (openBlock(), createBlock(resolveDynamicComponent(markRaw(resolve(item.content))), mergeProps({
|
|
143
|
+
key: 0,
|
|
139
144
|
ref_for: true
|
|
140
|
-
}, item.props), null, 16))
|
|
145
|
+
}, item.props), null, 16)) : createCommentVNode("v-if", true)], 1024))], 2);
|
|
141
146
|
}), 128))]), createCommentVNode(" <div class=\"flex-1 w-full min-w-0 box-border h-full overflow-hidden\">"), createCommentVNode(" <div class=\"board--panels box-border h-full flex-1 w-full min-w-0 overflow-hidden\">"), createCommentVNode(" <template v-for=\"item in board.items\" :key=\"item.id\">"), createCommentVNode(" <component"), createCommentVNode(" v-show=\"board.value === item.id\""), createCommentVNode(" :is=\"markRaw(resolve(item.content))\""), createCommentVNode(" v-bind=\"item.props\">"), createCommentVNode(" </component>"), createCommentVNode(" </template>"), createCommentVNode(" </div>"), createCommentVNode(" </div>")], 2), props.slotVisible ? renderSlot(_ctx.$slots, "default", {
|
|
142
147
|
key: 1
|
|
143
|
-
}) : createCommentVNode("v-if", true)],
|
|
148
|
+
}) : createCommentVNode("v-if", true)], 46, _hoisted_1)), [[unref(vResizable), getResizable.value]]);
|
|
144
149
|
};
|
|
145
150
|
}
|
|
146
151
|
});
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
export declare function useStyle(props: any): {
|
|
1
|
+
export declare function useStyle(props: any, resized: any): {
|
|
2
2
|
position: import("vue").Ref<any, any>;
|
|
3
3
|
board: import("vue").Ref<any, any>;
|
|
4
4
|
customStyle: import("vue").Ref<any, any>;
|
|
5
5
|
getStyle: import("vue").ComputedRef<{
|
|
6
6
|
margin: string;
|
|
7
7
|
transform: string;
|
|
8
|
+
} | {
|
|
9
|
+
margin: string;
|
|
10
|
+
transform: string;
|
|
11
|
+
width: any;
|
|
8
12
|
}>;
|
|
9
13
|
};
|
|
@@ -6,7 +6,7 @@ import { BoardPositionEnum } from '../props.js';
|
|
|
6
6
|
|
|
7
7
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
8
8
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
9
|
-
function useStyle(props) {
|
|
9
|
+
function useStyle(props, resized) {
|
|
10
10
|
var _toRefs = toRefs(props),
|
|
11
11
|
position = _toRefs.position,
|
|
12
12
|
board = _toRefs.board,
|
|
@@ -48,6 +48,7 @@ function useStyle(props) {
|
|
|
48
48
|
return transform;
|
|
49
49
|
});
|
|
50
50
|
var getStyle = computed(function () {
|
|
51
|
+
var _customStyle$value4;
|
|
51
52
|
var _fixed = {};
|
|
52
53
|
var _fixed$value = _slicedToArray(fixed.value, 4),
|
|
53
54
|
t = _fixed$value[0],
|
|
@@ -84,9 +85,13 @@ function useStyle(props) {
|
|
|
84
85
|
};
|
|
85
86
|
break;
|
|
86
87
|
}
|
|
87
|
-
return _objectSpread(_objectSpread({}, _fixed), {}, {
|
|
88
|
+
return resized.value ? _objectSpread(_objectSpread({}, _fixed), {}, {
|
|
88
89
|
margin: marginCssStr.value,
|
|
89
90
|
transform: getTransform.value
|
|
91
|
+
}) : _objectSpread(_objectSpread({}, _fixed), {}, {
|
|
92
|
+
margin: marginCssStr.value,
|
|
93
|
+
transform: getTransform.value,
|
|
94
|
+
width: ((_customStyle$value4 = customStyle.value) === null || _customStyle$value4 === void 0 ? void 0 : _customStyle$value4.width) || 'auto'
|
|
90
95
|
});
|
|
91
96
|
});
|
|
92
97
|
return {
|
|
@@ -32,6 +32,7 @@ export interface BoardCustomStyle {
|
|
|
32
32
|
margin?: [string, string, string, string];
|
|
33
33
|
fixed?: [string, string, string, string];
|
|
34
34
|
color?: string;
|
|
35
|
+
width?: string;
|
|
35
36
|
}
|
|
36
37
|
export declare enum BoardPositionEnum {
|
|
37
38
|
EAST = "east",
|
|
@@ -79,6 +80,7 @@ export declare const BoardProps: {
|
|
|
79
80
|
margin: any[];
|
|
80
81
|
fixed: any[];
|
|
81
82
|
color: string;
|
|
83
|
+
width: string;
|
|
82
84
|
};
|
|
83
85
|
};
|
|
84
86
|
customId: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/shared/vue-types.d8e57a80").b<string>> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, openBlock, createElementBlock, renderSlot } from 'vue';
|
|
2
|
-
import { onClickOutside } from '../../../node_modules/.pnpm/@vueuse_core@13.
|
|
2
|
+
import { onClickOutside } from '../../../node_modules/.pnpm/@vueuse_core@13.9.0_vue@3.5.20_typescript@5.9.2_/node_modules/@vueuse/core/index.js';
|
|
3
3
|
|
|
4
4
|
var script = defineComponent({
|
|
5
5
|
__name: 'ClickOutSide',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { watch, ref } from 'vue';
|
|
2
|
-
import { tryOnUnmounted } from '../../../../node_modules/.pnpm/@vueuse_shared@13.
|
|
2
|
+
import { tryOnUnmounted } from '../../../../node_modules/.pnpm/@vueuse_shared@13.9.0_vue@3.5.20_typescript@5.9.2_/node_modules/@vueuse/shared/index.js';
|
|
3
3
|
|
|
4
4
|
function isFunction(val) {
|
|
5
5
|
return typeof val === 'function';
|
|
@@ -1379,10 +1379,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1379
1379
|
width: string | number;
|
|
1380
1380
|
minWidth: string | number;
|
|
1381
1381
|
type: string;
|
|
1382
|
+
resizable: boolean;
|
|
1382
1383
|
showOverflowTooltip: boolean | Partial<Pick<ElTooltipProps, "offset" | "transition" | "placement" | "effect" | "showAfter" | "hideAfter" | "popperOptions" | "enterable" | "popperClass" | "appendTo" | "showArrow">> | undefined;
|
|
1383
1384
|
sortOrders: (("ascending" | "descending") | null)[];
|
|
1384
1385
|
sortable: string | boolean;
|
|
1385
|
-
resizable: boolean;
|
|
1386
1386
|
reserveSelection: boolean;
|
|
1387
1387
|
filterMultiple: boolean;
|
|
1388
1388
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -1452,10 +1452,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1452
1452
|
width: string | number;
|
|
1453
1453
|
minWidth: string | number;
|
|
1454
1454
|
type: string;
|
|
1455
|
+
resizable: boolean;
|
|
1455
1456
|
showOverflowTooltip: boolean | Partial<Pick<ElTooltipProps, "offset" | "transition" | "placement" | "effect" | "showAfter" | "hideAfter" | "popperOptions" | "enterable" | "popperClass" | "appendTo" | "showArrow">> | undefined;
|
|
1456
1457
|
sortOrders: (("ascending" | "descending") | null)[];
|
|
1457
1458
|
sortable: string | boolean;
|
|
1458
|
-
resizable: boolean;
|
|
1459
1459
|
reserveSelection: boolean;
|
|
1460
1460
|
filterMultiple: boolean;
|
|
1461
1461
|
}>;
|
|
@@ -1522,10 +1522,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1522
1522
|
width: string | number;
|
|
1523
1523
|
minWidth: string | number;
|
|
1524
1524
|
type: string;
|
|
1525
|
+
resizable: boolean;
|
|
1525
1526
|
showOverflowTooltip: boolean | Partial<Pick<ElTooltipProps, "offset" | "transition" | "placement" | "effect" | "showAfter" | "hideAfter" | "popperOptions" | "enterable" | "popperClass" | "appendTo" | "showArrow">> | undefined;
|
|
1526
1527
|
sortOrders: (("ascending" | "descending") | null)[];
|
|
1527
1528
|
sortable: string | boolean;
|
|
1528
|
-
resizable: boolean;
|
|
1529
1529
|
reserveSelection: boolean;
|
|
1530
1530
|
filterMultiple: boolean;
|
|
1531
1531
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, toRefs, computed, openBlock, createElementBlock, renderSlot, createVNode, unref, mergeProps, withModifiers } from 'vue';
|
|
2
|
-
import { useFullscreen } from '../../../node_modules/.pnpm/@vueuse_core@13.
|
|
2
|
+
import { useFullscreen } from '../../../node_modules/.pnpm/@vueuse_core@13.9.0_vue@3.5.20_typescript@5.9.2_/node_modules/@vueuse/core/index.js';
|
|
3
3
|
import '../../Icon/src/Icon.vue.js';
|
|
4
4
|
import '../../Icon/src/SvgIcon.vue.js';
|
|
5
5
|
import propTypes from 'vue-types';
|
|
@@ -12,6 +12,10 @@ export default class BufferLayerPlayer implements LayerPlayer {
|
|
|
12
12
|
protected cursor: number;
|
|
13
13
|
protected center: number;
|
|
14
14
|
protected last: Layer;
|
|
15
|
+
protected _silent: boolean;
|
|
16
|
+
get silent(): boolean;
|
|
17
|
+
set silent(value: boolean);
|
|
18
|
+
setSilent(value: boolean, opacity?: number): void;
|
|
15
19
|
constructor(manager: LayerManager, provider: LayerProvider, options?: Visual.PlayerOptions);
|
|
16
20
|
backward(): Promise<void>;
|
|
17
21
|
forward(): Promise<void>;
|
|
@@ -16,6 +16,7 @@ var BufferLayerPlayer = /*#__PURE__*/function () {
|
|
|
16
16
|
_defineProperty(this, "cursor", 0);
|
|
17
17
|
_defineProperty(this, "center", 0);
|
|
18
18
|
_defineProperty(this, "last", null);
|
|
19
|
+
_defineProperty(this, "_silent", false);
|
|
19
20
|
this.manager = manager;
|
|
20
21
|
this.provider = provider;
|
|
21
22
|
this.options = options;
|
|
@@ -24,6 +25,22 @@ var BufferLayerPlayer = /*#__PURE__*/function () {
|
|
|
24
25
|
this.queue.length = 0;
|
|
25
26
|
}
|
|
26
27
|
return _createClass(BufferLayerPlayer, [{
|
|
28
|
+
key: "silent",
|
|
29
|
+
get: function get() {
|
|
30
|
+
return this._silent;
|
|
31
|
+
},
|
|
32
|
+
set: function set(value) {
|
|
33
|
+
this._silent = value;
|
|
34
|
+
}
|
|
35
|
+
}, {
|
|
36
|
+
key: "setSilent",
|
|
37
|
+
value: function setSilent(value) {
|
|
38
|
+
var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0.6;
|
|
39
|
+
this._silent = value;
|
|
40
|
+
if (!this.last) return;
|
|
41
|
+
this.manager.modify(this.last, "opacity", value ? opacity || 1 : 0);
|
|
42
|
+
}
|
|
43
|
+
}, {
|
|
27
44
|
key: "backward",
|
|
28
45
|
value: function () {
|
|
29
46
|
var _backward = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
@@ -279,8 +296,12 @@ var BufferLayerPlayer = /*#__PURE__*/function () {
|
|
|
279
296
|
}
|
|
280
297
|
if (!queue || (queue === null || queue === void 0 ? void 0 : queue.length) <= 0) return;
|
|
281
298
|
if ((this.last = queue[cursor]) != null) {
|
|
282
|
-
|
|
283
|
-
|
|
299
|
+
if (this.silent) {
|
|
300
|
+
this.manager.modify(queue[cursor], "opacity", 0);
|
|
301
|
+
} else {
|
|
302
|
+
var opacity = this.manager.query(queue[cursor], "$opacity");
|
|
303
|
+
this.manager.modify(queue[cursor], "opacity", opacity);
|
|
304
|
+
}
|
|
284
305
|
}
|
|
285
306
|
}
|
|
286
307
|
}]);
|
package/dist/index.min.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@dfsj/components:通用的vue组件;包括专业组件、原子级组件
|
|
3
|
-
版本: 3.7.2-alpha.
|
|
3
|
+
版本: 3.7.2-alpha.3
|
|
4
4
|
作者:yangbo <1747837358@qq.com>
|
|
5
|
-
日期:2025-
|
|
6
|
-
*/.ec-component-board-container-page-wrap{position:fixed;z-index:100;background:#fff;transition:transform 200ms ease-in-out}.ec-component-board-container-page-wrap .r-dot{background:rgba(0,0,0,.21);border-radius:6px;color:#f2f2f2;display:flex;align-items:center;justify-content:center}.ec-component-board-container-page-wrap .r-dot.r-l-dot,.ec-component-board-container-page-wrap .r-dot.r-r-dot{height:30px !important;top:50% !important;transform:translateY(-50%)}.ec-component-board-container-page-wrap .r-dot.r-l-dot:before,.ec-component-board-container-page-wrap .r-dot.r-r-dot:before{content:"";height:70%;border-left:2px dotted rgba(0,0,0,.36);box-sizing:border-box}.ec-component-board-container-page-wrap .r-dot.r-t-dot,.ec-component-board-container-page-wrap .r-dot.r-b-dot{width:30px !important;left:50% !important;transform:translateX(-50%)}.ec-component-board-container-page-wrap .r-dot.r-t-dot:before,.ec-component-board-container-page-wrap .r-dot.r-b-dot:before{content:"";width:70%;border-top:2px dotted rgba(0,0,0,.36);box-sizing:border-box}.ec-component-board-container-page-wrap .board--wing{position:absolute !important;z-index:1;width:18px;height:80px;border-radius:2px;background:rgba(3,19,78,.12);backdrop-filter:blur(2px);box-shadow:2px 1px 1px 0px rgba(0,0,0,.3),-2px -2px 2px 0px #fff;cursor:pointer}.ec-component-board-container-page-wrap .board--wing .app-iconify{position:absolute;top:50%;right:0;font-weight:bolder;color:#fff;transform-origin:50% 50%;max-width:fit-content;max-height:fit-content}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-wrap::after{display:none}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__active-bar{display:none;width:0;height:0}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__item{height:auto;padding:10px;color:var(--board-tab-color);background:#eee}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__item.is-active{color:#fff;background:var(--board-tab-color)}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__nav{gap:10px}.ec-component-board-container-page-wrap.east .custom-label,.ec-component-board-container-page-wrap.west .custom-label{display:flex;width:100%;min-height:0;letter-spacing:5px;writing-mode:vertical-lr}.ec-component-board-container-page-wrap.east{flex-direction:row-reverse;right:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3);border-radius:2px 0 0}.ec-component-board-container-page-wrap.east .ec-component-board-container-page-wrap__layout{display:flex;flex-direction:row-reverse;align-items:flex-start}.ec-component-board-container-page-wrap.east .board--wing{z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(-100%, -50%);top:50%;left:0;clip-path:polygon(0 18%, 100% 0, 100% 100%, 0 82%)}.ec-component-board-container-page-wrap.east .board--wing .app-iconify{transform:translateY(-50%) rotate(0deg);top:50%;right:-2px}.ec-component-board-container-page-wrap.east.minify .board--wing .app-iconify{transform:rotate(180deg) translateY(50%)}.ec-component-board-container-page-wrap.west{flex-direction:row-reverse;left:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3);border-radius:0 2px 0 0}.ec-component-board-container-page-wrap.west .board--wing{z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(100%, -50%);top:50%;right:0;clip-path:polygon(0 0, 100% 18%, 100% 82%, 0% 100%)}.ec-component-board-container-page-wrap.west .board--wing .app-iconify{transform:translateY(-50%) rotate(180deg);top:50%;left:-2px}.ec-component-board-container-page-wrap.west.minify .board--wing .app-iconify{transform:translateY(-50%) rotate(0deg)}.ec-component-board-container-page-wrap.full{flex-direction:row-reverse;right:0;left:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.full .board--wing{display:none;top:-30px;left:calc(50% - 70px);z-index:1;width:140px;height:30px;box-shadow:0 -8px 10px 0 rgba(64,72,191,.2);border-radius:10px 10px 0 0}.ec-component-board-container-page-wrap.full.minify{transform:translateY(100%)}.ec-component-board-container-page-wrap.top{top:0px;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.top .ec-component-board-container-page-wrap__layout{display:flex;flex-direction:column}.ec-component-board-container-page-wrap.top .board--wing{height:18px;width:80px;z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(50%, 100%);right:50%;bottom:0px;clip-path:polygon(0% 18%, 100% 18%, 82% 100%, 18% 100%)}.ec-component-board-container-page-wrap.top .board--wing .app-iconify{transform:translateX(-50%) rotate(270deg);left:50%;top:-2px}.ec-component-board-container-page-wrap.top.minify .board--wing .app-iconify{transform:translateX(-50%) rotate(90deg)}.ec-component-board-container-page-wrap.south{bottom:0px;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.south .ec-component-board-container-page-wrap__layout{display:flex;flex-direction:column}.ec-component-board-container-page-wrap.south .board--panels .board--panel-container{position:inherit;padding:0}.ec-component-board-container-page-wrap.south .board--wing{height:18px;width:80px;z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(50%, -100%);right:50%;top:0px;clip-path:polygon(18% 18%, 82% 18%, 100% 100%, 0% 100%)}.ec-component-board-container-page-wrap.south .board--wing .app-iconify{transform:translateX(-50%) rotate(90deg);left:50%;top:-2px}.ec-component-board-container-page-wrap.south.minify .board--wing .app-iconify{transform:translateX(-50%) rotate(270deg)}.custom-month-range .el-month-table .current .cell{background-color:var(--el-color-primary);color:#fff !important}.ec-component-svg-icon{display:inline-block;overflow:hidden;vertical-align:-0.15em;fill:currentColor}.svg-icon-spin{animation:loadingCircle 1s infinite linear}.app-iconify{display:inline-block;vertical-align:middle}.app-iconify-spin svg{animation:loadingCircle 1s infinite linear}span.iconify{display:block;min-width:1em;min-height:1em;background-color:rgba(225,223,223,.55);border-radius:100%}.ec-component-input-password :deep(.el-input__clear){margin-left:5px}.ec-component-input-password__bar{background-color:var(--el-text-color-disabled);border-radius:var(--el-border-radius-base)}.ec-component-input-password__bar::before,.ec-component-input-password__bar::after{position:absolute;z-index:10;display:block;width:20%;height:inherit;background-color:rgba(0,0,0,0);border-color:var(--el-color-white);border-style:solid;border-width:0 5px;content:""}.ec-component-input-password__bar::before{left:20%}.ec-component-input-password__bar::after{right:20%}.ec-component-input-password__bar--fill{position:absolute;width:0;height:inherit;background-color:rgba(0,0,0,0);border-radius:inherit;transition:width .5s ease-in-out,background .25s}.ec-component-input-password__bar--fill[data-score="0"]{width:20%;background-color:var(--el-color-danger)}.ec-component-input-password__bar--fill[data-score="1"]{width:40%;background-color:var(--el-color-danger)}.ec-component-input-password__bar--fill[data-score="2"]{width:60%;background-color:var(--el-color-warning)}.ec-component-input-password__bar--fill[data-score="3"]{width:80%;background-color:var(--el-color-success)}.ec-component-input-password__bar--fill[data-score="4"]{width:100%;background-color:var(--el-color-success)}.ec-component-input-password--mini>.ec-component-input-password__bar{border-radius:var(--el-border-radius-small)}.component.modal{--ec-modal-border-radius: 0.3rem;position:fixed}.component.modal.minimized{height:0 !important;width:0 !important;overflow:hidden}.component.modal.maximum .modal--body,.component.modal.maximum,.component.modal.modally,.component.modal.modally.maximum .modal--body{top:0 !important;left:0 !important;width:100% !important;height:100% !important}.component.modal.modally:before{content:"";display:block;position:absolute;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:-1}.component.modal .modal--body{display:flex;flex:1;border-radius:var(--ec-modal-border-radius);background:rgba(0,0,0,0);box-shadow:.1rem .1rem 1.5rem .1rem rgba(64,72,191,.3)}.component.modal.modally .modal--body{position:absolute}.component.modal .modal--content{position:relative;flex:1;display:flex;background:#fff;flex-direction:column}.component-modal-page-wrap{display:flex;flex-direction:column;min-height:0}.component-modal-page-wrap .component-modal-body{height:100%;width:100%;display:flex;flex-direction:column;min-height:0}.component-modal-page-wrap .component-modal-body .component-modal-header{position:relative;width:100%;height:40px;min-height:40px}.component-modal-page-wrap .component-modal-body .component-modal-header .modal-header-main-container-wrap{width:100%;height:100%;overflow:hidden;display:flex;align-items:center;position:relative;z-index:1}.component-modal-page-wrap .component-modal-body .component-modal-header .modal-header-right-control-wrap{position:absolute;z-index:4;top:0;right:0;bottom:0;display:flex;justify-content:flex-end;align-items:center;gap:10px;padding-right:10px}.component-modal-page-wrap .component-modal-body .component-modal-content{flex:1;height:100%}.component-modal-page-wrap .component-modal-body .component-modal-footer{position:absolute;bottom:0;left:0;right:0;height:40px;display:flex;justify-content:center;align-items:center;box-shadow:0 0 12px rgba(0,0,0,.12)}.window--enter-active{animation:animate-window-enter-active 200ms cubic-bezier(0.39, 0.575, 0.565, 1) both}.window--leave-active{animation:animate-window-leave-active 200ms cubic-bezier(0.39, 0.575, 0.565, 1) both}@keyframes animate-window-enter-active{0%{transform:scale(0.5);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes animate-window-leave-active{0%{transform:scale(1);opacity:1}100%{transform:scale(0.5);opacity:0}}.component.stateful{position:relative;flex:1}.component.stateful .stateful--content{display:flex;position:absolute;width:100%;height:100%;left:0;top:0}.component.stateful .stateful--content.cover{filter:blur(1.25px)}.component.stateful .stateful--cover{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;align-items:center;justify-content:center}.component.stateful .stateful--cover .cover--icon{margin-right:10px}.component.stateful .stateful--cover .cover--box{display:flex;align-items:center;justify-content:center;padding:50px 70px;border-radius:.8rem;box-shadow:.1rem .1rem 1.5rem .1rem rgba(64,72,191,.15);position:relative;overflow:hidden;width:auto;height:auto}.component.stateful .stateful--cover .cover--text{font-size:20px;margin-bottom:2px;font-weight:400;text-shadow:0 0 rgba(64,72,191,.3)}.ec-chart-toolbox-wrap{height:100%;width:100%;min-height:0;min-width:0}.ec-chart-toolbox-wrap .tools-container{min-height:0;display:flex;justify-content:flex-end;cursor:pointer;right:0px;top:0px;gap:10px;z-index:9999}.ec-chart-toolbox-wrap .tools-container .app-iconify{cursor:pointer !important;transition:all .5s ease}.ec-chart-toolbox-wrap .tools-container .app-iconify:hover{transition:all .5s ease;box-shadow:0px 1px 10px 0px rgba(0,0,0,.05),0px 4px 5px 0px rgba(0,0,0,.08),0px 2px 4px -1px rgba(0,0,0,.12)}.wrap-el{position:relative;float:left;width:100%;height:100%;overflow:hidden}.video-player-toolbar{color:#fff;position:absolute;left:0;right:0;bottom:0;height:30px;background:rgba(0,0,0,.5);display:flex;align-items:center;gap:10px;justify-content:flex-end;padding:0px 12px;z-index:1000}.video-player-toolbar .app-iconify{cursor:pointer}.component.node-axis{position:relative}.component.node-axis .node-axis--overlay{top:0;left:0;position:absolute;background:rgba(0,0,0,.7);backdrop-filter:blur(10px);box-shadow:0 0 5px 1px rgba(0,0,0,.5);color:#fff;padding:5px;font-size:14px;letter-spacing:1px;display:flex;align-items:center;justify-content:center;border-radius:3px;word-break:keep-all;white-space:nowrap;transition:all 80ms linear;opacity:0}:deep(.el-descriptions__header){display:none !important}:deep(.ec-descriptions-component-label){width:150px !important}.ec-descriptions-component__default .item{padding:8px 11px;font-size:14px}.ec-descriptions-component__default .ec-descriptions-component-content{padding:8px 1px}.ec-descriptions-component__small .item{padding:4px 7px;font-size:12px}.ec-descriptions-component__small .ec-descriptions-component-content{padding:5px 1px}.ec-descriptions-component__large .item{padding:12px 15px;font-size:16px}.ec-descriptions-component__large .ec-descriptions-component-content{padding:10px 1px}.ec-descriptions-component-header__default{font-size:16px;height:32px}.ec-descriptions-component-header__small{font-size:14px;height:32px}.ec-descriptions-component-header__large{font-size:18px;height:40px}.ec-descriptions-component-header__title::after{position:absolute;top:3px;left:-10px;width:4px;height:70%;background:var(--el-color-primary);content:""}
|
|
5
|
+
日期:2025-11-12 15:07:19
|
|
6
|
+
*/.ec-component-board-container-page-wrap{position:fixed;z-index:100;background:#fff;transition:transform 200ms ease-in-out}.ec-component-board-container-page-wrap .board--panels .board--panel-container{position:inherit;padding:0}.ec-component-board-container-page-wrap .board--panels .board--panel-container.active{height:100%}.ec-component-board-container-page-wrap .r-dot{background:rgba(0,0,0,.21);border-radius:6px;color:#f2f2f2;display:flex;align-items:center;justify-content:center}.ec-component-board-container-page-wrap .r-dot.r-l-dot,.ec-component-board-container-page-wrap .r-dot.r-r-dot{height:30px !important;top:50% !important;transform:translateY(-50%)}.ec-component-board-container-page-wrap .r-dot.r-l-dot:before,.ec-component-board-container-page-wrap .r-dot.r-r-dot:before{content:"";height:70%;border-left:2px dotted rgba(0,0,0,.36);box-sizing:border-box}.ec-component-board-container-page-wrap .r-dot.r-t-dot,.ec-component-board-container-page-wrap .r-dot.r-b-dot{width:30px !important;left:50% !important;transform:translateX(-50%)}.ec-component-board-container-page-wrap .r-dot.r-t-dot:before,.ec-component-board-container-page-wrap .r-dot.r-b-dot:before{content:"";width:70%;border-top:2px dotted rgba(0,0,0,.36);box-sizing:border-box}.ec-component-board-container-page-wrap .board--wing{position:absolute !important;z-index:1;width:18px;height:80px;border-radius:2px;background:rgba(3,19,78,.12);backdrop-filter:blur(2px);box-shadow:2px 1px 1px 0px rgba(0,0,0,.3),-2px -2px 2px 0px #fff;cursor:pointer}.ec-component-board-container-page-wrap .board--wing .app-iconify{position:absolute;top:50%;right:0;font-weight:bolder;color:#fff;transform-origin:50% 50%;max-width:fit-content;max-height:fit-content}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-wrap::after{display:none}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__active-bar{display:none;width:0;height:0}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__item{height:auto;padding:10px;color:var(--board-tab-color);background:#eee}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__item.is-active{color:#fff;background:var(--board-tab-color)}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__nav{gap:10px}.ec-component-board-container-page-wrap.east .custom-label,.ec-component-board-container-page-wrap.west .custom-label{display:flex;width:100%;min-height:0;letter-spacing:5px;writing-mode:vertical-lr}.ec-component-board-container-page-wrap.east{flex-direction:row-reverse;right:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3);border-radius:2px 0 0}.ec-component-board-container-page-wrap.east .ec-component-board-container-page-wrap__layout{display:flex;flex-direction:row-reverse;align-items:flex-start}.ec-component-board-container-page-wrap.east .board--wing{z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(-100%, -50%);top:50%;left:0;clip-path:polygon(0 18%, 100% 0, 100% 100%, 0 82%)}.ec-component-board-container-page-wrap.east .board--wing .app-iconify{transform:translateY(-50%) rotate(0deg);top:50%;right:-2px}.ec-component-board-container-page-wrap.east.minify .board--wing .app-iconify{transform:rotate(180deg) translateY(50%)}.ec-component-board-container-page-wrap.west{flex-direction:row-reverse;left:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3);border-radius:0 2px 0 0}.ec-component-board-container-page-wrap.west .board--wing{z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(100%, -50%);top:50%;right:0;clip-path:polygon(0 0, 100% 18%, 100% 82%, 0% 100%)}.ec-component-board-container-page-wrap.west .board--wing .app-iconify{transform:translateY(-50%) rotate(180deg);top:50%;left:-2px}.ec-component-board-container-page-wrap.west.minify .board--wing .app-iconify{transform:translateY(-50%) rotate(0deg)}.ec-component-board-container-page-wrap.full{flex-direction:row-reverse;right:0;left:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.full .board--wing{display:none;top:-30px;left:calc(50% - 70px);z-index:1;width:140px;height:30px;box-shadow:0 -8px 10px 0 rgba(64,72,191,.2);border-radius:10px 10px 0 0}.ec-component-board-container-page-wrap.full.minify{transform:translateY(100%)}.ec-component-board-container-page-wrap.top{top:0px;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.top .ec-component-board-container-page-wrap__layout{display:flex;flex-direction:column}.ec-component-board-container-page-wrap.top .board--wing{height:18px;width:80px;z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(50%, 100%);right:50%;bottom:0px;clip-path:polygon(0% 18%, 100% 18%, 82% 100%, 18% 100%)}.ec-component-board-container-page-wrap.top .board--wing .app-iconify{transform:translateX(-50%) rotate(270deg);left:50%;top:-2px}.ec-component-board-container-page-wrap.top.minify .board--wing .app-iconify{transform:translateX(-50%) rotate(90deg)}.ec-component-board-container-page-wrap.south{bottom:0px;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.south .ec-component-board-container-page-wrap__layout{display:flex;flex-direction:column}.ec-component-board-container-page-wrap.south .board--wing{height:18px;width:80px;z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(50%, -100%);right:50%;top:0px;clip-path:polygon(18% 18%, 82% 18%, 100% 100%, 0% 100%)}.ec-component-board-container-page-wrap.south .board--wing .app-iconify{transform:translateX(-50%) rotate(90deg);left:50%;top:-2px}.ec-component-board-container-page-wrap.south.minify .board--wing .app-iconify{transform:translateX(-50%) rotate(270deg)}.custom-month-range .el-month-table .current .cell{background-color:var(--el-color-primary);color:#fff !important}.ec-component-svg-icon{display:inline-block;overflow:hidden;vertical-align:-0.15em;fill:currentColor}.svg-icon-spin{animation:loadingCircle 1s infinite linear}.app-iconify{display:inline-block;vertical-align:middle}.app-iconify-spin svg{animation:loadingCircle 1s infinite linear}span.iconify{display:block;min-width:1em;min-height:1em;background-color:rgba(225,223,223,.55);border-radius:100%}.ec-component-input-password :deep(.el-input__clear){margin-left:5px}.ec-component-input-password__bar{background-color:var(--el-text-color-disabled);border-radius:var(--el-border-radius-base)}.ec-component-input-password__bar::before,.ec-component-input-password__bar::after{position:absolute;z-index:10;display:block;width:20%;height:inherit;background-color:rgba(0,0,0,0);border-color:var(--el-color-white);border-style:solid;border-width:0 5px;content:""}.ec-component-input-password__bar::before{left:20%}.ec-component-input-password__bar::after{right:20%}.ec-component-input-password__bar--fill{position:absolute;width:0;height:inherit;background-color:rgba(0,0,0,0);border-radius:inherit;transition:width .5s ease-in-out,background .25s}.ec-component-input-password__bar--fill[data-score="0"]{width:20%;background-color:var(--el-color-danger)}.ec-component-input-password__bar--fill[data-score="1"]{width:40%;background-color:var(--el-color-danger)}.ec-component-input-password__bar--fill[data-score="2"]{width:60%;background-color:var(--el-color-warning)}.ec-component-input-password__bar--fill[data-score="3"]{width:80%;background-color:var(--el-color-success)}.ec-component-input-password__bar--fill[data-score="4"]{width:100%;background-color:var(--el-color-success)}.ec-component-input-password--mini>.ec-component-input-password__bar{border-radius:var(--el-border-radius-small)}.component.modal{--ec-modal-border-radius: 0.3rem;position:fixed}.component.modal.minimized{height:0 !important;width:0 !important;overflow:hidden}.component.modal.maximum .modal--body,.component.modal.maximum,.component.modal.modally,.component.modal.modally.maximum .modal--body{top:0 !important;left:0 !important;width:100% !important;height:100% !important}.component.modal.modally:before{content:"";display:block;position:absolute;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:-1}.component.modal .modal--body{display:flex;flex:1;border-radius:var(--ec-modal-border-radius);background:rgba(0,0,0,0);box-shadow:.1rem .1rem 1.5rem .1rem rgba(64,72,191,.3)}.component.modal.modally .modal--body{position:absolute}.component.modal .modal--content{position:relative;flex:1;display:flex;background:#fff;flex-direction:column}.component-modal-page-wrap{display:flex;flex-direction:column;min-height:0}.component-modal-page-wrap .component-modal-body{height:100%;width:100%;display:flex;flex-direction:column;min-height:0}.component-modal-page-wrap .component-modal-body .component-modal-header{position:relative;width:100%;height:40px;min-height:40px}.component-modal-page-wrap .component-modal-body .component-modal-header .modal-header-main-container-wrap{width:100%;height:100%;overflow:hidden;display:flex;align-items:center;position:relative;z-index:1}.component-modal-page-wrap .component-modal-body .component-modal-header .modal-header-right-control-wrap{position:absolute;z-index:4;top:0;right:0;bottom:0;display:flex;justify-content:flex-end;align-items:center;gap:10px;padding-right:10px}.component-modal-page-wrap .component-modal-body .component-modal-content{flex:1;height:100%}.component-modal-page-wrap .component-modal-body .component-modal-footer{position:absolute;bottom:0;left:0;right:0;height:40px;display:flex;justify-content:center;align-items:center;box-shadow:0 0 12px rgba(0,0,0,.12)}.window--enter-active{animation:animate-window-enter-active 200ms cubic-bezier(0.39, 0.575, 0.565, 1) both}.window--leave-active{animation:animate-window-leave-active 200ms cubic-bezier(0.39, 0.575, 0.565, 1) both}@keyframes animate-window-enter-active{0%{transform:scale(0.5);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes animate-window-leave-active{0%{transform:scale(1);opacity:1}100%{transform:scale(0.5);opacity:0}}.component.stateful{position:relative;flex:1}.component.stateful .stateful--content{display:flex;position:absolute;width:100%;height:100%;left:0;top:0}.component.stateful .stateful--content.cover{filter:blur(1.25px)}.component.stateful .stateful--cover{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;align-items:center;justify-content:center}.component.stateful .stateful--cover .cover--icon{margin-right:10px}.component.stateful .stateful--cover .cover--box{display:flex;align-items:center;justify-content:center;padding:50px 70px;border-radius:.8rem;box-shadow:.1rem .1rem 1.5rem .1rem rgba(64,72,191,.15);position:relative;overflow:hidden;width:auto;height:auto}.component.stateful .stateful--cover .cover--text{font-size:20px;margin-bottom:2px;font-weight:400;text-shadow:0 0 rgba(64,72,191,.3)}.ec-chart-toolbox-wrap{height:100%;width:100%;min-height:0;min-width:0}.ec-chart-toolbox-wrap .tools-container{min-height:0;display:flex;justify-content:flex-end;cursor:pointer;right:0px;top:0px;gap:10px;z-index:9999}.ec-chart-toolbox-wrap .tools-container .app-iconify{cursor:pointer !important;transition:all .5s ease}.ec-chart-toolbox-wrap .tools-container .app-iconify:hover{transition:all .5s ease;box-shadow:0px 1px 10px 0px rgba(0,0,0,.05),0px 4px 5px 0px rgba(0,0,0,.08),0px 2px 4px -1px rgba(0,0,0,.12)}.wrap-el{position:relative;float:left;width:100%;height:100%;overflow:hidden}.video-player-toolbar{color:#fff;position:absolute;left:0;right:0;bottom:0;height:30px;background:rgba(0,0,0,.5);display:flex;align-items:center;gap:10px;justify-content:flex-end;padding:0px 12px;z-index:1000}.video-player-toolbar .app-iconify{cursor:pointer}.component.node-axis{position:relative}.component.node-axis .node-axis--overlay{top:0;left:0;position:absolute;background:rgba(0,0,0,.7);backdrop-filter:blur(10px);box-shadow:0 0 5px 1px rgba(0,0,0,.5);color:#fff;padding:5px;font-size:14px;letter-spacing:1px;display:flex;align-items:center;justify-content:center;border-radius:3px;word-break:keep-all;white-space:nowrap;transition:all 80ms linear;opacity:0}:deep(.el-descriptions__header){display:none !important}:deep(.ec-descriptions-component-label){width:150px !important}.ec-descriptions-component__default .item{padding:8px 11px;font-size:14px}.ec-descriptions-component__default .ec-descriptions-component-content{padding:8px 1px}.ec-descriptions-component__small .item{padding:4px 7px;font-size:12px}.ec-descriptions-component__small .ec-descriptions-component-content{padding:5px 1px}.ec-descriptions-component__large .item{padding:12px 15px;font-size:16px}.ec-descriptions-component__large .ec-descriptions-component-content{padding:10px 1px}.ec-descriptions-component-header__default{font-size:16px;height:32px}.ec-descriptions-component-header__small{font-size:14px;height:32px}.ec-descriptions-component-header__large{font-size:18px;height:40px}.ec-descriptions-component-header__title::after{position:absolute;top:3px;left:-10px;width:4px;height:70%;background:var(--el-color-primary);content:""}
|
|
@@ -5,8 +5,8 @@ import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
|
5
5
|
import _defineProperty from '@babel/runtime/helpers/defineProperty';
|
|
6
6
|
import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
|
|
7
7
|
import _regeneratorRuntime from '@babel/runtime/regenerator';
|
|
8
|
-
import { noop, isIOS, tryOnMounted, tryOnScopeDispose, toArray, watchImmediate, isClient, isObject } from '../../../../@vueuse_shared@13.
|
|
9
|
-
export { getLifeCycleTarget, tryOnUnmounted } from '../../../../@vueuse_shared@13.
|
|
8
|
+
import { noop, isIOS, tryOnMounted, tryOnScopeDispose, toArray, watchImmediate, isClient, isObject } from '../../../../@vueuse_shared@13.9.0_vue@3.5.20_typescript@5.9.2_/node_modules/@vueuse/shared/index.js';
|
|
9
|
+
export { getLifeCycleTarget, tryOnUnmounted } from '../../../../@vueuse_shared@13.9.0_vue@3.5.20_typescript@5.9.2_/node_modules/@vueuse/shared/index.js';
|
|
10
10
|
import { computed, shallowRef, toValue, unref, getCurrentInstance, onMounted } from 'vue';
|
|
11
11
|
|
|
12
12
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
package/package.json
CHANGED