@creatorsn/vfluent3 0.3.23 → 0.3.25
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/style.css +1 -1
- package/dist/types/packages/progress-bar/index.d.ts +3 -0
- package/dist/types/packages/progress-bar/source/index.vue.d.ts +3 -0
- package/dist/types/packages/table-view/index.d.ts +3 -3
- package/dist/types/packages/table-view/source/index.vue.d.ts +3 -3
- package/dist/types/packages/table-view/source/sub/defaultExtensions/date/dateCell.vue.d.ts +141 -1
- package/dist/types/packages/table-view/source/sub/defaultExtensions/date/dateHead.vue.d.ts +111 -1
- package/dist/types/packages/table-view/source/sub/defaultExtensions/date/index.d.ts +254 -4
- package/dist/types/packages/table-view/source/sub/defaultExtensions/email/emailCell.vue.d.ts +69 -1
- package/dist/types/packages/table-view/source/sub/defaultExtensions/email/emailHead.vue.d.ts +72 -1
- package/dist/types/packages/table-view/source/sub/defaultExtensions/email/index.d.ts +141 -2
- package/dist/types/packages/table-view/source/sub/defaultExtensions/number/index.d.ts +245 -4
- package/dist/types/packages/table-view/source/sub/defaultExtensions/number/numberCell.vue.d.ts +111 -1
- package/dist/types/packages/table-view/source/sub/defaultExtensions/number/numberHead.vue.d.ts +132 -1
- package/dist/types/packages/table-view/source/sub/defaultExtensions/number/utils/optionList.d.ts +8 -0
- package/dist/types/packages/table-view-cell-base/index.d.ts +68 -52
- package/dist/types/packages/table-view-cell-base/source/index.d.ts +59 -0
- package/dist/types/packages/table-view-cell-base/source/index.vue.d.ts +10 -52
- package/dist/types/packages/table-view-head-base/index.d.ts +60 -44
- package/dist/types/packages/table-view-head-base/source/index.d.ts +50 -0
- package/dist/types/packages/table-view-head-base/source/index.vue.d.ts +10 -43
- package/dist/vfluent3.js +8979 -9189
- package/dist/vfluent3.umd.cjs +11 -11
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ export declare const FvProgressBar: import("../../types/plugins/component-plugin
|
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
4
4
|
$props: {
|
|
5
5
|
readonly background?: string | undefined;
|
|
6
|
+
readonly borderRadius?: number | undefined;
|
|
6
7
|
readonly theme?: string | undefined;
|
|
7
8
|
readonly disabled?: boolean | undefined;
|
|
8
9
|
readonly lang?: string | undefined;
|
|
@@ -26,6 +27,7 @@ export declare const FvProgressBar: import("../../types/plugins/component-plugin
|
|
|
26
27
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
27
28
|
$props: {
|
|
28
29
|
readonly background?: string | undefined;
|
|
30
|
+
readonly borderRadius?: number | undefined;
|
|
29
31
|
readonly theme?: string | undefined;
|
|
30
32
|
readonly disabled?: boolean | undefined;
|
|
31
33
|
readonly lang?: string | undefined;
|
|
@@ -46,6 +48,7 @@ export declare const FvProgressBar: import("../../types/plugins/component-plugin
|
|
|
46
48
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
47
49
|
$props: {
|
|
48
50
|
readonly background?: string | undefined;
|
|
51
|
+
readonly borderRadius?: number | undefined;
|
|
49
52
|
readonly theme?: string | undefined;
|
|
50
53
|
readonly disabled?: boolean | undefined;
|
|
51
54
|
readonly lang?: string | undefined;
|
|
@@ -2,6 +2,7 @@ declare const _default: {
|
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
3
|
$props: {
|
|
4
4
|
readonly background?: string | undefined;
|
|
5
|
+
readonly borderRadius?: number | undefined;
|
|
5
6
|
readonly theme?: string | undefined;
|
|
6
7
|
readonly disabled?: boolean | undefined;
|
|
7
8
|
readonly lang?: string | undefined;
|
|
@@ -25,6 +26,7 @@ declare const _default: {
|
|
|
25
26
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
26
27
|
$props: {
|
|
27
28
|
readonly background?: string | undefined;
|
|
29
|
+
readonly borderRadius?: number | undefined;
|
|
28
30
|
readonly theme?: string | undefined;
|
|
29
31
|
readonly disabled?: boolean | undefined;
|
|
30
32
|
readonly lang?: string | undefined;
|
|
@@ -45,6 +47,7 @@ declare const _default: {
|
|
|
45
47
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
46
48
|
$props: {
|
|
47
49
|
readonly background?: string | undefined;
|
|
50
|
+
readonly borderRadius?: number | undefined;
|
|
48
51
|
readonly theme?: string | undefined;
|
|
49
52
|
readonly disabled?: boolean | undefined;
|
|
50
53
|
readonly lang?: string | undefined;
|
|
@@ -66,7 +66,7 @@ export declare const FvTableView: import("../../types/plugins/component-plugin")
|
|
|
66
66
|
handleColumnDrag(event: any, item: any): void;
|
|
67
67
|
rowRightClick(obj: any): void;
|
|
68
68
|
addMenuClick(event: any, mode?: boolean): void;
|
|
69
|
-
handleSort(
|
|
69
|
+
handleSort(index: any, desc?: boolean): void;
|
|
70
70
|
GuidWithoutDash(): string;
|
|
71
71
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
72
72
|
P: {};
|
|
@@ -141,7 +141,7 @@ export declare const FvTableView: import("../../types/plugins/component-plugin")
|
|
|
141
141
|
handleColumnDrag(event: any, item: any): void;
|
|
142
142
|
rowRightClick(obj: any): void;
|
|
143
143
|
addMenuClick(event: any, mode?: boolean): void;
|
|
144
|
-
handleSort(
|
|
144
|
+
handleSort(index: any, desc?: boolean): void;
|
|
145
145
|
GuidWithoutDash(): string;
|
|
146
146
|
}, {}>;
|
|
147
147
|
__isFragment?: undefined;
|
|
@@ -213,7 +213,7 @@ export declare const FvTableView: import("../../types/plugins/component-plugin")
|
|
|
213
213
|
handleColumnDrag(event: any, item: any): void;
|
|
214
214
|
rowRightClick(obj: any): void;
|
|
215
215
|
addMenuClick(event: any, mode?: boolean): void;
|
|
216
|
-
handleSort(
|
|
216
|
+
handleSort(index: any, desc?: boolean): void;
|
|
217
217
|
GuidWithoutDash(): string;
|
|
218
218
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
219
219
|
$slots: {
|
|
@@ -65,7 +65,7 @@ declare const _default: {
|
|
|
65
65
|
handleColumnDrag(event: any, item: any): void;
|
|
66
66
|
rowRightClick(obj: any): void;
|
|
67
67
|
addMenuClick(event: any, mode?: boolean): void;
|
|
68
|
-
handleSort(
|
|
68
|
+
handleSort(index: any, desc?: boolean): void;
|
|
69
69
|
GuidWithoutDash(): string;
|
|
70
70
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
71
71
|
P: {};
|
|
@@ -140,7 +140,7 @@ declare const _default: {
|
|
|
140
140
|
handleColumnDrag(event: any, item: any): void;
|
|
141
141
|
rowRightClick(obj: any): void;
|
|
142
142
|
addMenuClick(event: any, mode?: boolean): void;
|
|
143
|
-
handleSort(
|
|
143
|
+
handleSort(index: any, desc?: boolean): void;
|
|
144
144
|
GuidWithoutDash(): string;
|
|
145
145
|
}, {}>;
|
|
146
146
|
__isFragment?: undefined;
|
|
@@ -212,7 +212,7 @@ declare const _default: {
|
|
|
212
212
|
handleColumnDrag(event: any, item: any): void;
|
|
213
213
|
rowRightClick(obj: any): void;
|
|
214
214
|
addMenuClick(event: any, mode?: boolean): void;
|
|
215
|
-
handleSort(
|
|
215
|
+
handleSort(index: any, desc?: boolean): void;
|
|
216
216
|
GuidWithoutDash(): string;
|
|
217
217
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
218
218
|
$slots: {
|
|
@@ -1,2 +1,142 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly theme?: string | undefined;
|
|
5
|
+
readonly head?: Record<string, any> | undefined;
|
|
6
|
+
readonly disabled?: boolean | undefined;
|
|
7
|
+
readonly lang?: string | undefined;
|
|
8
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
9
|
+
readonly foreground?: string | undefined;
|
|
10
|
+
readonly row_index?: number | undefined;
|
|
11
|
+
readonly i18n?: Function | undefined;
|
|
12
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
13
|
+
readonly fixedRightWidth?: number | undefined;
|
|
14
|
+
readonly wrapperWidth?: string | undefined;
|
|
15
|
+
readonly isUnder?: boolean | undefined;
|
|
16
|
+
readonly formatFunction?: Function | undefined;
|
|
17
|
+
readonly col_index?: number | undefined;
|
|
18
|
+
readonly selectPos?: Record<string, any> | undefined;
|
|
19
|
+
};
|
|
20
|
+
}, {
|
|
21
|
+
currentChoosenDates: never[];
|
|
22
|
+
startDateStr: string;
|
|
23
|
+
endDateStr: string;
|
|
24
|
+
startTimeStr: string;
|
|
25
|
+
endTimeStr: string;
|
|
26
|
+
currentDate: Date;
|
|
27
|
+
}, {
|
|
28
|
+
computedContent(): string;
|
|
29
|
+
currentDatesRange(): any[];
|
|
30
|
+
}, {
|
|
31
|
+
formatDate(modelValue: any, head: any): void;
|
|
32
|
+
dateInit(): void;
|
|
33
|
+
setStartDate(): any;
|
|
34
|
+
setEndDate(): any;
|
|
35
|
+
setStartTime(): string;
|
|
36
|
+
setEndTime(): string;
|
|
37
|
+
getDateRange(start: any, end: any): Date[];
|
|
38
|
+
syncStrValue(): void;
|
|
39
|
+
selectChoosenDates(dates: any): void;
|
|
40
|
+
timeFormat(val: any): string;
|
|
41
|
+
timeValueFormat(val: any): any;
|
|
42
|
+
getDaysInMonth(month: any, year: any): number;
|
|
43
|
+
GuidWithoutDash(): string;
|
|
44
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
45
|
+
P: {};
|
|
46
|
+
B: {};
|
|
47
|
+
D: {};
|
|
48
|
+
C: {};
|
|
49
|
+
M: {};
|
|
50
|
+
Defaults: {};
|
|
51
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
52
|
+
$props: {
|
|
53
|
+
readonly theme?: string | undefined;
|
|
54
|
+
readonly head?: Record<string, any> | undefined;
|
|
55
|
+
readonly disabled?: boolean | undefined;
|
|
56
|
+
readonly lang?: string | undefined;
|
|
57
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
58
|
+
readonly foreground?: string | undefined;
|
|
59
|
+
readonly row_index?: number | undefined;
|
|
60
|
+
readonly i18n?: Function | undefined;
|
|
61
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
62
|
+
readonly fixedRightWidth?: number | undefined;
|
|
63
|
+
readonly wrapperWidth?: string | undefined;
|
|
64
|
+
readonly isUnder?: boolean | undefined;
|
|
65
|
+
readonly formatFunction?: Function | undefined;
|
|
66
|
+
readonly col_index?: number | undefined;
|
|
67
|
+
readonly selectPos?: Record<string, any> | undefined;
|
|
68
|
+
};
|
|
69
|
+
}, {
|
|
70
|
+
currentChoosenDates: never[];
|
|
71
|
+
startDateStr: string;
|
|
72
|
+
endDateStr: string;
|
|
73
|
+
startTimeStr: string;
|
|
74
|
+
endTimeStr: string;
|
|
75
|
+
currentDate: Date;
|
|
76
|
+
}, {
|
|
77
|
+
computedContent(): string;
|
|
78
|
+
currentDatesRange(): any[];
|
|
79
|
+
}, {
|
|
80
|
+
formatDate(modelValue: any, head: any): void;
|
|
81
|
+
dateInit(): void;
|
|
82
|
+
setStartDate(): any;
|
|
83
|
+
setEndDate(): any;
|
|
84
|
+
setStartTime(): string;
|
|
85
|
+
setEndTime(): string;
|
|
86
|
+
getDateRange(start: any, end: any): Date[];
|
|
87
|
+
syncStrValue(): void;
|
|
88
|
+
selectChoosenDates(dates: any): void;
|
|
89
|
+
timeFormat(val: any): string;
|
|
90
|
+
timeValueFormat(val: any): any;
|
|
91
|
+
getDaysInMonth(month: any, year: any): number;
|
|
92
|
+
GuidWithoutDash(): string;
|
|
93
|
+
}, {}>;
|
|
94
|
+
__isFragment?: undefined;
|
|
95
|
+
__isTeleport?: undefined;
|
|
96
|
+
__isSuspense?: undefined;
|
|
97
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
98
|
+
$props: {
|
|
99
|
+
readonly theme?: string | undefined;
|
|
100
|
+
readonly head?: Record<string, any> | undefined;
|
|
101
|
+
readonly disabled?: boolean | undefined;
|
|
102
|
+
readonly lang?: string | undefined;
|
|
103
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
104
|
+
readonly foreground?: string | undefined;
|
|
105
|
+
readonly row_index?: number | undefined;
|
|
106
|
+
readonly i18n?: Function | undefined;
|
|
107
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
108
|
+
readonly fixedRightWidth?: number | undefined;
|
|
109
|
+
readonly wrapperWidth?: string | undefined;
|
|
110
|
+
readonly isUnder?: boolean | undefined;
|
|
111
|
+
readonly formatFunction?: Function | undefined;
|
|
112
|
+
readonly col_index?: number | undefined;
|
|
113
|
+
readonly selectPos?: Record<string, any> | undefined;
|
|
114
|
+
};
|
|
115
|
+
}, {
|
|
116
|
+
currentChoosenDates: never[];
|
|
117
|
+
startDateStr: string;
|
|
118
|
+
endDateStr: string;
|
|
119
|
+
startTimeStr: string;
|
|
120
|
+
endTimeStr: string;
|
|
121
|
+
currentDate: Date;
|
|
122
|
+
}, {
|
|
123
|
+
computedContent(): string;
|
|
124
|
+
currentDatesRange(): any[];
|
|
125
|
+
}, {
|
|
126
|
+
formatDate(modelValue: any, head: any): void;
|
|
127
|
+
dateInit(): void;
|
|
128
|
+
setStartDate(): any;
|
|
129
|
+
setEndDate(): any;
|
|
130
|
+
setStartTime(): string;
|
|
131
|
+
setEndTime(): string;
|
|
132
|
+
getDateRange(start: any, end: any): Date[];
|
|
133
|
+
syncStrValue(): void;
|
|
134
|
+
selectChoosenDates(dates: any): void;
|
|
135
|
+
timeFormat(val: any): string;
|
|
136
|
+
timeValueFormat(val: any): any;
|
|
137
|
+
getDaysInMonth(month: any, year: any): number;
|
|
138
|
+
GuidWithoutDash(): string;
|
|
139
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
140
|
+
$slots: {};
|
|
141
|
+
});
|
|
2
142
|
export default _default;
|
|
@@ -1,2 +1,112 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
|
+
$props: {
|
|
4
|
+
readonly theme?: string | undefined;
|
|
5
|
+
readonly disabled?: boolean | undefined;
|
|
6
|
+
readonly lang?: string | undefined;
|
|
7
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
8
|
+
readonly index?: number | undefined;
|
|
9
|
+
readonly foreground?: string | undefined;
|
|
10
|
+
readonly dragItem?: Record<string, any> | undefined;
|
|
11
|
+
readonly i18n?: Function | undefined;
|
|
12
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
13
|
+
readonly fixedRightWidth?: number | undefined;
|
|
14
|
+
readonly wrapperWidth?: string | undefined;
|
|
15
|
+
readonly isUnder?: boolean | undefined;
|
|
16
|
+
readonly formatFunction?: null | undefined;
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
currentDateFormats: never[];
|
|
20
|
+
currentTimeFormats: never[];
|
|
21
|
+
dateFormatList: {
|
|
22
|
+
key: string;
|
|
23
|
+
text: string;
|
|
24
|
+
}[];
|
|
25
|
+
timeFormatList: {
|
|
26
|
+
key: string;
|
|
27
|
+
text: string;
|
|
28
|
+
}[];
|
|
29
|
+
}, {}, {
|
|
30
|
+
dateFormatInit(): void;
|
|
31
|
+
timeFormatInit(): void;
|
|
32
|
+
formatDateHead(modelValue: any): void;
|
|
33
|
+
GuidWithoutDash(): string;
|
|
34
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
35
|
+
P: {};
|
|
36
|
+
B: {};
|
|
37
|
+
D: {};
|
|
38
|
+
C: {};
|
|
39
|
+
M: {};
|
|
40
|
+
Defaults: {};
|
|
41
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
42
|
+
$props: {
|
|
43
|
+
readonly theme?: string | undefined;
|
|
44
|
+
readonly disabled?: boolean | undefined;
|
|
45
|
+
readonly lang?: string | undefined;
|
|
46
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
47
|
+
readonly index?: number | undefined;
|
|
48
|
+
readonly foreground?: string | undefined;
|
|
49
|
+
readonly dragItem?: Record<string, any> | undefined;
|
|
50
|
+
readonly i18n?: Function | undefined;
|
|
51
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
52
|
+
readonly fixedRightWidth?: number | undefined;
|
|
53
|
+
readonly wrapperWidth?: string | undefined;
|
|
54
|
+
readonly isUnder?: boolean | undefined;
|
|
55
|
+
readonly formatFunction?: null | undefined;
|
|
56
|
+
};
|
|
57
|
+
}, {
|
|
58
|
+
currentDateFormats: never[];
|
|
59
|
+
currentTimeFormats: never[];
|
|
60
|
+
dateFormatList: {
|
|
61
|
+
key: string;
|
|
62
|
+
text: string;
|
|
63
|
+
}[];
|
|
64
|
+
timeFormatList: {
|
|
65
|
+
key: string;
|
|
66
|
+
text: string;
|
|
67
|
+
}[];
|
|
68
|
+
}, {}, {
|
|
69
|
+
dateFormatInit(): void;
|
|
70
|
+
timeFormatInit(): void;
|
|
71
|
+
formatDateHead(modelValue: any): void;
|
|
72
|
+
GuidWithoutDash(): string;
|
|
73
|
+
}, {}>;
|
|
74
|
+
__isFragment?: undefined;
|
|
75
|
+
__isTeleport?: undefined;
|
|
76
|
+
__isSuspense?: undefined;
|
|
77
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
78
|
+
$props: {
|
|
79
|
+
readonly theme?: string | undefined;
|
|
80
|
+
readonly disabled?: boolean | undefined;
|
|
81
|
+
readonly lang?: string | undefined;
|
|
82
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
83
|
+
readonly index?: number | undefined;
|
|
84
|
+
readonly foreground?: string | undefined;
|
|
85
|
+
readonly dragItem?: Record<string, any> | undefined;
|
|
86
|
+
readonly i18n?: Function | undefined;
|
|
87
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
88
|
+
readonly fixedRightWidth?: number | undefined;
|
|
89
|
+
readonly wrapperWidth?: string | undefined;
|
|
90
|
+
readonly isUnder?: boolean | undefined;
|
|
91
|
+
readonly formatFunction?: null | undefined;
|
|
92
|
+
};
|
|
93
|
+
}, {
|
|
94
|
+
currentDateFormats: never[];
|
|
95
|
+
currentTimeFormats: never[];
|
|
96
|
+
dateFormatList: {
|
|
97
|
+
key: string;
|
|
98
|
+
text: string;
|
|
99
|
+
}[];
|
|
100
|
+
timeFormatList: {
|
|
101
|
+
key: string;
|
|
102
|
+
text: string;
|
|
103
|
+
}[];
|
|
104
|
+
}, {}, {
|
|
105
|
+
dateFormatInit(): void;
|
|
106
|
+
timeFormatInit(): void;
|
|
107
|
+
formatDateHead(modelValue: any): void;
|
|
108
|
+
GuidWithoutDash(): string;
|
|
109
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
110
|
+
$slots: {};
|
|
111
|
+
});
|
|
2
112
|
export default _default;
|
|
@@ -3,13 +3,263 @@ declare namespace _default {
|
|
|
3
3
|
const type: string;
|
|
4
4
|
const icon: string;
|
|
5
5
|
const emoji: string;
|
|
6
|
-
const headComponent:
|
|
7
|
-
|
|
6
|
+
const headComponent: import("vue").Raw<{
|
|
7
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
8
|
+
$props: {
|
|
9
|
+
readonly theme?: string | undefined;
|
|
10
|
+
readonly disabled?: boolean | undefined;
|
|
11
|
+
readonly lang?: string | undefined;
|
|
12
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
13
|
+
readonly index?: number | undefined;
|
|
14
|
+
readonly foreground?: string | undefined;
|
|
15
|
+
readonly dragItem?: Record<string, any> | undefined;
|
|
16
|
+
readonly i18n?: Function | undefined;
|
|
17
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
18
|
+
readonly fixedRightWidth?: number | undefined;
|
|
19
|
+
readonly wrapperWidth?: string | undefined;
|
|
20
|
+
readonly isUnder?: boolean | undefined;
|
|
21
|
+
readonly formatFunction?: null | undefined;
|
|
22
|
+
};
|
|
23
|
+
}, {
|
|
24
|
+
currentDateFormats: never[];
|
|
25
|
+
currentTimeFormats: never[];
|
|
26
|
+
dateFormatList: {
|
|
27
|
+
key: string;
|
|
28
|
+
text: string;
|
|
29
|
+
}[];
|
|
30
|
+
timeFormatList: {
|
|
31
|
+
key: string;
|
|
32
|
+
text: string;
|
|
33
|
+
}[];
|
|
34
|
+
}, {}, {
|
|
35
|
+
dateFormatInit(): void;
|
|
36
|
+
timeFormatInit(): void;
|
|
37
|
+
formatDateHead(modelValue: any): void;
|
|
38
|
+
GuidWithoutDash(): string;
|
|
39
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
40
|
+
P: {};
|
|
41
|
+
B: {};
|
|
42
|
+
D: {};
|
|
43
|
+
C: {};
|
|
44
|
+
M: {};
|
|
45
|
+
Defaults: {};
|
|
46
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
47
|
+
$props: {
|
|
48
|
+
readonly theme?: string | undefined;
|
|
49
|
+
readonly disabled?: boolean | undefined;
|
|
50
|
+
readonly lang?: string | undefined;
|
|
51
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
52
|
+
readonly index?: number | undefined;
|
|
53
|
+
readonly foreground?: string | undefined;
|
|
54
|
+
readonly dragItem?: Record<string, any> | undefined;
|
|
55
|
+
readonly i18n?: Function | undefined;
|
|
56
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
57
|
+
readonly fixedRightWidth?: number | undefined;
|
|
58
|
+
readonly wrapperWidth?: string | undefined;
|
|
59
|
+
readonly isUnder?: boolean | undefined;
|
|
60
|
+
readonly formatFunction?: null | undefined;
|
|
61
|
+
};
|
|
62
|
+
}, {
|
|
63
|
+
currentDateFormats: never[];
|
|
64
|
+
currentTimeFormats: never[];
|
|
65
|
+
dateFormatList: {
|
|
66
|
+
key: string;
|
|
67
|
+
text: string;
|
|
68
|
+
}[];
|
|
69
|
+
timeFormatList: {
|
|
70
|
+
key: string;
|
|
71
|
+
text: string;
|
|
72
|
+
}[];
|
|
73
|
+
}, {}, {
|
|
74
|
+
dateFormatInit(): void;
|
|
75
|
+
timeFormatInit(): void;
|
|
76
|
+
formatDateHead(modelValue: any): void;
|
|
77
|
+
GuidWithoutDash(): string;
|
|
78
|
+
}, {}>;
|
|
79
|
+
__isFragment?: undefined;
|
|
80
|
+
__isTeleport?: undefined;
|
|
81
|
+
__isSuspense?: undefined;
|
|
82
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
83
|
+
$props: {
|
|
84
|
+
readonly theme?: string | undefined;
|
|
85
|
+
readonly disabled?: boolean | undefined;
|
|
86
|
+
readonly lang?: string | undefined;
|
|
87
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
88
|
+
readonly index?: number | undefined;
|
|
89
|
+
readonly foreground?: string | undefined;
|
|
90
|
+
readonly dragItem?: Record<string, any> | undefined;
|
|
91
|
+
readonly i18n?: Function | undefined;
|
|
92
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
93
|
+
readonly fixedRightWidth?: number | undefined;
|
|
94
|
+
readonly wrapperWidth?: string | undefined;
|
|
95
|
+
readonly isUnder?: boolean | undefined;
|
|
96
|
+
readonly formatFunction?: null | undefined;
|
|
97
|
+
};
|
|
98
|
+
}, {
|
|
99
|
+
currentDateFormats: never[];
|
|
100
|
+
currentTimeFormats: never[];
|
|
101
|
+
dateFormatList: {
|
|
102
|
+
key: string;
|
|
103
|
+
text: string;
|
|
104
|
+
}[];
|
|
105
|
+
timeFormatList: {
|
|
106
|
+
key: string;
|
|
107
|
+
text: string;
|
|
108
|
+
}[];
|
|
109
|
+
}, {}, {
|
|
110
|
+
dateFormatInit(): void;
|
|
111
|
+
timeFormatInit(): void;
|
|
112
|
+
formatDateHead(modelValue: any): void;
|
|
113
|
+
GuidWithoutDash(): string;
|
|
114
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
115
|
+
$slots: {};
|
|
116
|
+
})>;
|
|
117
|
+
const cellComponent: import("vue").Raw<{
|
|
118
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
119
|
+
$props: {
|
|
120
|
+
readonly theme?: string | undefined;
|
|
121
|
+
readonly head?: Record<string, any> | undefined;
|
|
122
|
+
readonly disabled?: boolean | undefined;
|
|
123
|
+
readonly lang?: string | undefined;
|
|
124
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
125
|
+
readonly foreground?: string | undefined;
|
|
126
|
+
readonly row_index?: number | undefined;
|
|
127
|
+
readonly i18n?: Function | undefined;
|
|
128
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
129
|
+
readonly fixedRightWidth?: number | undefined;
|
|
130
|
+
readonly wrapperWidth?: string | undefined;
|
|
131
|
+
readonly isUnder?: boolean | undefined;
|
|
132
|
+
readonly formatFunction?: Function | undefined;
|
|
133
|
+
readonly col_index?: number | undefined;
|
|
134
|
+
readonly selectPos?: Record<string, any> | undefined;
|
|
135
|
+
};
|
|
136
|
+
}, {
|
|
137
|
+
currentChoosenDates: never[];
|
|
138
|
+
startDateStr: string;
|
|
139
|
+
endDateStr: string;
|
|
140
|
+
startTimeStr: string;
|
|
141
|
+
endTimeStr: string;
|
|
142
|
+
currentDate: Date;
|
|
143
|
+
}, {
|
|
144
|
+
computedContent(): string;
|
|
145
|
+
currentDatesRange(): any[];
|
|
146
|
+
}, {
|
|
147
|
+
formatDate(modelValue: any, head: any): void;
|
|
148
|
+
dateInit(): void;
|
|
149
|
+
setStartDate(): any;
|
|
150
|
+
setEndDate(): any;
|
|
151
|
+
setStartTime(): string;
|
|
152
|
+
setEndTime(): string;
|
|
153
|
+
getDateRange(start: any, end: any): Date[];
|
|
154
|
+
syncStrValue(): void;
|
|
155
|
+
selectChoosenDates(dates: any): void;
|
|
156
|
+
timeFormat(val: any): string;
|
|
157
|
+
timeValueFormat(val: any): any;
|
|
158
|
+
getDaysInMonth(month: any, year: any): number;
|
|
159
|
+
GuidWithoutDash(): string;
|
|
160
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
161
|
+
P: {};
|
|
162
|
+
B: {};
|
|
163
|
+
D: {};
|
|
164
|
+
C: {};
|
|
165
|
+
M: {};
|
|
166
|
+
Defaults: {};
|
|
167
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
168
|
+
$props: {
|
|
169
|
+
readonly theme?: string | undefined;
|
|
170
|
+
readonly head?: Record<string, any> | undefined;
|
|
171
|
+
readonly disabled?: boolean | undefined;
|
|
172
|
+
readonly lang?: string | undefined;
|
|
173
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
174
|
+
readonly foreground?: string | undefined;
|
|
175
|
+
readonly row_index?: number | undefined;
|
|
176
|
+
readonly i18n?: Function | undefined;
|
|
177
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
178
|
+
readonly fixedRightWidth?: number | undefined;
|
|
179
|
+
readonly wrapperWidth?: string | undefined;
|
|
180
|
+
readonly isUnder?: boolean | undefined;
|
|
181
|
+
readonly formatFunction?: Function | undefined;
|
|
182
|
+
readonly col_index?: number | undefined;
|
|
183
|
+
readonly selectPos?: Record<string, any> | undefined;
|
|
184
|
+
};
|
|
185
|
+
}, {
|
|
186
|
+
currentChoosenDates: never[];
|
|
187
|
+
startDateStr: string;
|
|
188
|
+
endDateStr: string;
|
|
189
|
+
startTimeStr: string;
|
|
190
|
+
endTimeStr: string;
|
|
191
|
+
currentDate: Date;
|
|
192
|
+
}, {
|
|
193
|
+
computedContent(): string;
|
|
194
|
+
currentDatesRange(): any[];
|
|
195
|
+
}, {
|
|
196
|
+
formatDate(modelValue: any, head: any): void;
|
|
197
|
+
dateInit(): void;
|
|
198
|
+
setStartDate(): any;
|
|
199
|
+
setEndDate(): any;
|
|
200
|
+
setStartTime(): string;
|
|
201
|
+
setEndTime(): string;
|
|
202
|
+
getDateRange(start: any, end: any): Date[];
|
|
203
|
+
syncStrValue(): void;
|
|
204
|
+
selectChoosenDates(dates: any): void;
|
|
205
|
+
timeFormat(val: any): string;
|
|
206
|
+
timeValueFormat(val: any): any;
|
|
207
|
+
getDaysInMonth(month: any, year: any): number;
|
|
208
|
+
GuidWithoutDash(): string;
|
|
209
|
+
}, {}>;
|
|
210
|
+
__isFragment?: undefined;
|
|
211
|
+
__isTeleport?: undefined;
|
|
212
|
+
__isSuspense?: undefined;
|
|
213
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
214
|
+
$props: {
|
|
215
|
+
readonly theme?: string | undefined;
|
|
216
|
+
readonly head?: Record<string, any> | undefined;
|
|
217
|
+
readonly disabled?: boolean | undefined;
|
|
218
|
+
readonly lang?: string | undefined;
|
|
219
|
+
readonly modelValue?: Record<string, any> | undefined;
|
|
220
|
+
readonly foreground?: string | undefined;
|
|
221
|
+
readonly row_index?: number | undefined;
|
|
222
|
+
readonly i18n?: Function | undefined;
|
|
223
|
+
readonly fixedLeftWidth?: number | undefined;
|
|
224
|
+
readonly fixedRightWidth?: number | undefined;
|
|
225
|
+
readonly wrapperWidth?: string | undefined;
|
|
226
|
+
readonly isUnder?: boolean | undefined;
|
|
227
|
+
readonly formatFunction?: Function | undefined;
|
|
228
|
+
readonly col_index?: number | undefined;
|
|
229
|
+
readonly selectPos?: Record<string, any> | undefined;
|
|
230
|
+
};
|
|
231
|
+
}, {
|
|
232
|
+
currentChoosenDates: never[];
|
|
233
|
+
startDateStr: string;
|
|
234
|
+
endDateStr: string;
|
|
235
|
+
startTimeStr: string;
|
|
236
|
+
endTimeStr: string;
|
|
237
|
+
currentDate: Date;
|
|
238
|
+
}, {
|
|
239
|
+
computedContent(): string;
|
|
240
|
+
currentDatesRange(): any[];
|
|
241
|
+
}, {
|
|
242
|
+
formatDate(modelValue: any, head: any): void;
|
|
243
|
+
dateInit(): void;
|
|
244
|
+
setStartDate(): any;
|
|
245
|
+
setEndDate(): any;
|
|
246
|
+
setStartTime(): string;
|
|
247
|
+
setEndTime(): string;
|
|
248
|
+
getDateRange(start: any, end: any): Date[];
|
|
249
|
+
syncStrValue(): void;
|
|
250
|
+
selectChoosenDates(dates: any): void;
|
|
251
|
+
timeFormat(val: any): string;
|
|
252
|
+
timeValueFormat(val: any): any;
|
|
253
|
+
getDaysInMonth(month: any, year: any): number;
|
|
254
|
+
GuidWithoutDash(): string;
|
|
255
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
256
|
+
$slots: {};
|
|
257
|
+
})>;
|
|
8
258
|
function filter({ input, value }: {
|
|
9
259
|
input: any;
|
|
10
260
|
value: any;
|
|
11
261
|
}): boolean;
|
|
12
|
-
function sortAsc(a: any, b: any):
|
|
13
|
-
function sortDesc(a: any, b: any):
|
|
262
|
+
function sortAsc(a: any, b: any): number;
|
|
263
|
+
function sortDesc(a: any, b: any): number;
|
|
14
264
|
}
|
|
15
265
|
export default _default;
|