@dfsj/components 3.5.1 → 3.6.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/CHANGELOG.md +27 -0
- package/dist/components/Boards/src/Boards.vue2.js +3 -3
- package/dist/components/ClickOutSide/src/ClickOutSide.vue2.js +1 -1
- package/dist/components/Descriptions/src/Descriptions.vue.d.ts +96 -1
- package/dist/components/Form/src/Form.vue.d.ts +803 -1
- package/dist/components/Form/src/Form.vue2.js +1 -1
- package/dist/components/Highlight/src/Highlight.vue.d.ts +40 -1
- package/dist/components/Modal/src/BasicModal.vue.d.ts +323 -1
- package/dist/components/Modal/src/hooks/useTimeout.js +1 -1
- package/dist/components/Table/src/Table.vue.d.ts +1489 -1
- package/dist/components/Table/src/Table.vue2.js +1 -1
- package/dist/components/Table/src/components/TableActions.vue.d.ts +95 -1
- package/dist/components/Video/src/VideoPlayerToolbar.vue2.js +1 -1
- package/dist/index.min.css +2 -2
- package/dist/node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.11_typescript@5.6.2_/node_modules/@vueuse/core/index.js +1 -1
- package/dist/node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.12_typescript@5.6.2_/node_modules/@vueuse/core/index.js +513 -0
- package/dist/node_modules/.pnpm/@vueuse_shared@10.11.1_vue@3.5.12_typescript@5.6.2_/node_modules/@vueuse/shared/index.js +49 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.6.0](http://10.10.12.18/dfsj/dfsj/compare/@dfsj/components@3.1.3...@dfsj/components@3.6.0) (2024-10-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* (components) 类型推断any<VueComponent> ([4b651a7](http://10.10.12.18/dfsj/dfsj/commits/4b651a78a453adafbb906954c746bb2d63dd5aac))
|
|
12
|
+
* (components) UnifyChart.vue ([9a5d4db](http://10.10.12.18/dfsj/dfsj/commits/9a5d4dbe80b10bf9de80718e0b6e18c22cbd0205))
|
|
13
|
+
* **components:** 时间轴主题可配置 ([4bdca6e](http://10.10.12.18/dfsj/dfsj/commits/4bdca6eb7a944bf25c999600cf556146e698eee4))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* (components) BasicModal支持vh、vw、px、rem ([866c6d2](http://10.10.12.18/dfsj/dfsj/commits/866c6d2447a203329ba3783f6a3edababf91a50c))
|
|
19
|
+
* (components) Descriptions ([5873c14](http://10.10.12.18/dfsj/dfsj/commits/5873c14bc746596c536b203551147de8d2c097c0))
|
|
20
|
+
* (components) UnifyChart.vue 导出方法 ([d4065b9](http://10.10.12.18/dfsj/dfsj/commits/d4065b984d4f97dad21bb55474bb616f2149a16e))
|
|
21
|
+
* **components:** 导出组件 ([d6e313e](http://10.10.12.18/dfsj/dfsj/commits/d6e313e53f09a3a6895f1a212d8341fc5a196cbf))
|
|
22
|
+
* **components:** 新增clickOutSide组件 ([e663b5d](http://10.10.12.18/dfsj/dfsj/commits/e663b5db93844d2052f07861739534956f2f908a))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Performance Improvements
|
|
26
|
+
|
|
27
|
+
* (component) 修复升级element-plus以后打包类丢失报错 & Board组件高度设置100% ([5029f65](http://10.10.12.18/dfsj/dfsj/commits/5029f6517b5223c046a5b4ac2fa1751bbaa4cffb))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [3.5.1](http://10.10.12.18/dfsj/dfsj/compare/@dfsj/components@3.1.3...@dfsj/components@3.5.1) (2024-10-09)
|
|
7
34
|
|
|
8
35
|
|
|
@@ -5,7 +5,7 @@ import { defineComponent, toRefs, ref, computed, unref, onMounted, watch, resolv
|
|
|
5
5
|
import { BoardProps, BoardPosition } from './props.js';
|
|
6
6
|
import '../../Icon/src/Icon.vue.js';
|
|
7
7
|
import '../../Icon/src/SvgIcon.vue.js';
|
|
8
|
-
import { useElementBounding } from '../../../node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.
|
|
8
|
+
import { useElementBounding } from '../../../node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.12_typescript@5.6.2_/node_modules/@vueuse/core/index.js';
|
|
9
9
|
import { isString } from '../../../utils/is.js';
|
|
10
10
|
import script$1 from '../../Icon/src/Icon.vue2.js';
|
|
11
11
|
|
|
@@ -15,11 +15,11 @@ var _hoisted_1 = {
|
|
|
15
15
|
"class": "custom-label"
|
|
16
16
|
};
|
|
17
17
|
var _hoisted_2 = {
|
|
18
|
-
"class": "board--panels flex-1 w-full min-w-0"
|
|
18
|
+
"class": "board--panels box-border h-full flex-1 w-full min-w-0 overflow-hidden"
|
|
19
19
|
};
|
|
20
20
|
var _hoisted_3 = {
|
|
21
21
|
key: 1,
|
|
22
|
-
"class": "
|
|
22
|
+
"class": "flex-1 w-full min-w-0 box-border h-full overflow-hidden"
|
|
23
23
|
};
|
|
24
24
|
var prefixCls = "ec-component-board-container-page-wrap";
|
|
25
25
|
var script = defineComponent({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, openBlock, createElementBlock, renderSlot } from 'vue';
|
|
2
|
-
import { onClickOutside } from '../../../node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.
|
|
2
|
+
import { onClickOutside } from '../../../node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.12_typescript@5.6.2_/node_modules/@vueuse/core/index.js';
|
|
3
3
|
|
|
4
4
|
var script = defineComponent({
|
|
5
5
|
__name: 'ClickOutSide',
|
|
@@ -1,2 +1,97 @@
|
|
|
1
|
-
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { DescriptionsSchema } from './types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
+
title: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
5
|
+
default: string;
|
|
6
|
+
} & {
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
message: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
10
|
+
default: string;
|
|
11
|
+
} & {
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
collapse: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>> & {
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
border: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>> & {
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
column: import("vue-types").VueTypeValidableDef<number, import("vue-types/dist/types").ValidatorFunction<number>> & {
|
|
21
|
+
default: number;
|
|
22
|
+
} & {
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
direction: import("vue-types").VueTypeDef<string> & {
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
extra: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
32
|
+
default: string;
|
|
33
|
+
} & {
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
schema: {
|
|
37
|
+
type: PropType<DescriptionsSchema[]>;
|
|
38
|
+
default: () => any[];
|
|
39
|
+
};
|
|
40
|
+
data: {
|
|
41
|
+
type: PropType<any>;
|
|
42
|
+
default: () => {};
|
|
43
|
+
};
|
|
44
|
+
}>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
|
+
title: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
46
|
+
default: string;
|
|
47
|
+
} & {
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
message: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
51
|
+
default: string;
|
|
52
|
+
} & {
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
collapse: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>> & {
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
border: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>> & {
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
column: import("vue-types").VueTypeValidableDef<number, import("vue-types/dist/types").ValidatorFunction<number>> & {
|
|
62
|
+
default: number;
|
|
63
|
+
} & {
|
|
64
|
+
default: number;
|
|
65
|
+
};
|
|
66
|
+
size: import("vue-types").VueTypeDef<string> & {
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
direction: import("vue-types").VueTypeDef<string> & {
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
extra: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
73
|
+
default: string;
|
|
74
|
+
} & {
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
schema: {
|
|
78
|
+
type: PropType<DescriptionsSchema[]>;
|
|
79
|
+
default: () => any[];
|
|
80
|
+
};
|
|
81
|
+
data: {
|
|
82
|
+
type: PropType<any>;
|
|
83
|
+
default: () => {};
|
|
84
|
+
};
|
|
85
|
+
}>> & Readonly<{}>, {
|
|
86
|
+
title: string;
|
|
87
|
+
message: string;
|
|
88
|
+
collapse: boolean;
|
|
89
|
+
border: boolean;
|
|
90
|
+
column: number;
|
|
91
|
+
size: string;
|
|
92
|
+
direction: string;
|
|
93
|
+
extra: string;
|
|
94
|
+
schema: DescriptionsSchema[];
|
|
95
|
+
data: any;
|
|
96
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
97
|
export default _default;
|