@dfsj/components 3.5.1 → 3.5.3
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.vue2.js +2 -2
- 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/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/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/package.json +3 -3
|
@@ -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,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;
|