@dfsj/components 3.7.2-alpha.1 → 3.7.2-alpha.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/Form/src/helper/componentMap.js +0 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/dist/components/DatePicker/index.d.ts +0 -2
- package/dist/components/DatePicker/src/composables/use-month-range-header.d.ts +0 -16
- package/dist/components/DatePicker/src/composables/use-month-range-header.js +0 -52
- package/dist/components/DatePicker/src/composables/use-range-picker.d.ts +0 -173
- package/dist/components/DatePicker/src/composables/use-range-picker.js +0 -99
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue.d.ts +0 -19
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue.js +0 -5
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue2.js +0 -564
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue.d.ts +0 -16
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue.js +0 -5
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue2.js +0 -210
- package/dist/components/DatePicker/src/index.d.ts +0 -224
- package/dist/components/DatePicker/src/index.js +0 -87
- package/dist/components/DatePicker/src/panel-utils.d.ts +0 -2
- package/dist/components/DatePicker/src/panel-utils.js +0 -25
- package/dist/components/src/components/Boards/src/hooKs/useStyle.d.ts +0 -9
- package/dist/components/src/components/DatePicker/src/composables/use-month-range-header.d.ts +0 -16
- package/dist/components/src/components/DatePicker/src/composables/use-range-picker.d.ts +0 -173
- package/dist/components/src/components/DatePicker/src/date-picker-com/panel-date-range.vue.d.ts +0 -19
- package/dist/components/src/components/DatePicker/src/date-picker-com/panel-month-range.vue.d.ts +0 -16
- package/dist/components/src/components/Descriptions/src/Descriptions.vue.d.ts +0 -97
- package/dist/components/src/components/Form/src/components/useRenderCheckbox.d.ts +0 -4
- package/dist/components/src/components/Form/src/components/useRenderRadio.d.ts +0 -4
- package/dist/components/src/components/Form/src/components/useRenderSelect.d.ts +0 -4
- package/dist/components/src/components/Form/src/helper/componentMap.d.ts +0 -5
- package/dist/components/src/components/Form/src/helper/index.d.ts +0 -7
- package/dist/components/src/components/InputPassword/src/InputPassword.vue.d.ts +0 -27
- package/dist/components/src/components/Modal/src/hooks/useTimeout.d.ts +0 -15
- package/dist/components/src/components/Modal/src/utils/index.d.ts +0 -3
- package/dist/components/src/components/NodeAxis/src/BCanvasNodeRender.d.ts +0 -19
- package/dist/components/src/components/NodeAxis/src/NodeAxis.d.ts +0 -12
- package/dist/components/src/components/NodeAxis/src/NodeAxis.vue.d.ts +0 -17
- package/dist/components/src/components/NodeAxis/src/TimerNodePlayer.d.ts +0 -19
- package/dist/components/src/components/NodeAxis/src/interface/NodePlayer.d.ts +0 -9
- package/dist/components/src/components/Table/src/components/ColumnSetting.vue.d.ts +0 -30
- package/dist/components/src/components/Table/src/components/TableActions.vue.d.ts +0 -96
- package/dist/components/src/components/Table/src/helper/index.d.ts +0 -2
- package/dist/components/src/components/Video/src/VideoPlayerToolbar.vue.d.ts +0 -34
- package/dist/components/src/components/Video/src/abstract/AbstractVideoControl.d.ts +0 -7
- package/dist/components/src/components/Video/src/abstract/Observable.d.ts +0 -6
- package/dist/components/src/components/Video/src/abstract/VideoControl.d.ts +0 -32
- package/dist/components/src/components/Video/src/control/DaHua.d.ts +0 -12
- package/dist/components/src/components/Video/src/control/Hikvision.d.ts +0 -28
- package/dist/components/src/components/Video/src/control/VideoFactory.d.ts +0 -3
- package/dist/components/src/components/Video/src/enums/CommonEnum.d.ts +0 -26
- package/dist/components/src/helper/lang.d.ts +0 -1
- package/dist/components/src/themes/index.d.ts +0 -1
- package/dist/components/src/utils/index.d.ts +0 -11
- package/dist/node_modules/.pnpm/@vueuse_core@10.11.1_vue@3.5.13_typescript@5.7.3_/node_modules/@vueuse/core/index.js +0 -335
- package/dist/node_modules/.pnpm/@vueuse_shared@10.11.1_vue@3.5.13_typescript@5.7.3_/node_modules/@vueuse/shared/index.js +0 -40
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { type Ref } from 'vue';
|
|
2
|
-
import type { Dayjs } from 'dayjs';
|
|
3
|
-
import dayjs from "dayjs";
|
|
4
|
-
import type { PanelRangeSharedProps, RangeState } from 'element-plus/es/components/date-picker/src/props/shared';
|
|
5
|
-
type UseRangePickerProps = {
|
|
6
|
-
leftDate: Ref<Dayjs>;
|
|
7
|
-
rightDate: Ref<Dayjs>;
|
|
8
|
-
unit: 'month' | 'year';
|
|
9
|
-
parsedValue: Ref<Dayjs[]>;
|
|
10
|
-
disabledDate: (date: Dayjs) => boolean;
|
|
11
|
-
};
|
|
12
|
-
type ExtendProps = {
|
|
13
|
-
visible: boolean;
|
|
14
|
-
};
|
|
15
|
-
export declare const useRangePicker: (props: PanelRangeSharedProps & ExtendProps, { leftDate, rightDate, unit, parsedValue, disabledDate, }: UseRangePickerProps) => {
|
|
16
|
-
lang: any;
|
|
17
|
-
ppNs: any;
|
|
18
|
-
drpNs: any;
|
|
19
|
-
rangeState: Ref<{
|
|
20
|
-
endDate: {
|
|
21
|
-
clone: () => Dayjs;
|
|
22
|
-
isValid: () => boolean;
|
|
23
|
-
year: {
|
|
24
|
-
(): number;
|
|
25
|
-
(value: number): Dayjs;
|
|
26
|
-
};
|
|
27
|
-
month: {
|
|
28
|
-
(): number;
|
|
29
|
-
(value: number): Dayjs;
|
|
30
|
-
};
|
|
31
|
-
date: {
|
|
32
|
-
(): number;
|
|
33
|
-
(value: number): Dayjs;
|
|
34
|
-
};
|
|
35
|
-
day: {
|
|
36
|
-
(): 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
37
|
-
(value: number): Dayjs;
|
|
38
|
-
};
|
|
39
|
-
hour: {
|
|
40
|
-
(): number;
|
|
41
|
-
(value: number): Dayjs;
|
|
42
|
-
};
|
|
43
|
-
minute: {
|
|
44
|
-
(): number;
|
|
45
|
-
(value: number): Dayjs;
|
|
46
|
-
};
|
|
47
|
-
second: {
|
|
48
|
-
(): number;
|
|
49
|
-
(value: number): Dayjs;
|
|
50
|
-
};
|
|
51
|
-
millisecond: {
|
|
52
|
-
(): number;
|
|
53
|
-
(value: number): Dayjs;
|
|
54
|
-
};
|
|
55
|
-
set: (unit: dayjs.UnitType, value: number) => Dayjs;
|
|
56
|
-
get: (unit: dayjs.UnitType) => number;
|
|
57
|
-
add: (value: number, unit?: dayjs.ManipulateType) => Dayjs;
|
|
58
|
-
subtract: (value: number, unit?: dayjs.ManipulateType) => Dayjs;
|
|
59
|
-
startOf: (unit: dayjs.OpUnitType) => Dayjs;
|
|
60
|
-
endOf: (unit: dayjs.OpUnitType) => Dayjs;
|
|
61
|
-
format: (template?: string) => string;
|
|
62
|
-
diff: (date?: dayjs.ConfigType, unit?: dayjs.QUnitType | dayjs.OpUnitType, float?: boolean) => number;
|
|
63
|
-
valueOf: () => number;
|
|
64
|
-
unix: () => number;
|
|
65
|
-
daysInMonth: () => number;
|
|
66
|
-
toDate: () => Date;
|
|
67
|
-
toJSON: () => string;
|
|
68
|
-
toISOString: () => string;
|
|
69
|
-
toString: () => string;
|
|
70
|
-
utcOffset: () => number;
|
|
71
|
-
isBefore: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
72
|
-
isSame: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
73
|
-
isAfter: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
74
|
-
locale: {
|
|
75
|
-
(): string;
|
|
76
|
-
(preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
|
|
77
|
-
};
|
|
78
|
-
localeData: () => dayjs.InstanceLocaleDataReturn;
|
|
79
|
-
week: {
|
|
80
|
-
(): number;
|
|
81
|
-
(value: number): Dayjs;
|
|
82
|
-
};
|
|
83
|
-
weekYear: () => number;
|
|
84
|
-
dayOfYear: {
|
|
85
|
-
(): number;
|
|
86
|
-
(value: number): Dayjs;
|
|
87
|
-
};
|
|
88
|
-
isSameOrAfter: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
89
|
-
isSameOrBefore: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
90
|
-
};
|
|
91
|
-
selecting: boolean;
|
|
92
|
-
}, RangeState | {
|
|
93
|
-
endDate: {
|
|
94
|
-
clone: () => Dayjs;
|
|
95
|
-
isValid: () => boolean;
|
|
96
|
-
year: {
|
|
97
|
-
(): number;
|
|
98
|
-
(value: number): Dayjs;
|
|
99
|
-
};
|
|
100
|
-
month: {
|
|
101
|
-
(): number;
|
|
102
|
-
(value: number): Dayjs;
|
|
103
|
-
};
|
|
104
|
-
date: {
|
|
105
|
-
(): number;
|
|
106
|
-
(value: number): Dayjs;
|
|
107
|
-
};
|
|
108
|
-
day: {
|
|
109
|
-
(): 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
110
|
-
(value: number): Dayjs;
|
|
111
|
-
};
|
|
112
|
-
hour: {
|
|
113
|
-
(): number;
|
|
114
|
-
(value: number): Dayjs;
|
|
115
|
-
};
|
|
116
|
-
minute: {
|
|
117
|
-
(): number;
|
|
118
|
-
(value: number): Dayjs;
|
|
119
|
-
};
|
|
120
|
-
second: {
|
|
121
|
-
(): number;
|
|
122
|
-
(value: number): Dayjs;
|
|
123
|
-
};
|
|
124
|
-
millisecond: {
|
|
125
|
-
(): number;
|
|
126
|
-
(value: number): Dayjs;
|
|
127
|
-
};
|
|
128
|
-
set: (unit: dayjs.UnitType, value: number) => Dayjs;
|
|
129
|
-
get: (unit: dayjs.UnitType) => number;
|
|
130
|
-
add: (value: number, unit?: dayjs.ManipulateType) => Dayjs;
|
|
131
|
-
subtract: (value: number, unit?: dayjs.ManipulateType) => Dayjs;
|
|
132
|
-
startOf: (unit: dayjs.OpUnitType) => Dayjs;
|
|
133
|
-
endOf: (unit: dayjs.OpUnitType) => Dayjs;
|
|
134
|
-
format: (template?: string) => string;
|
|
135
|
-
diff: (date?: dayjs.ConfigType, unit?: dayjs.QUnitType | dayjs.OpUnitType, float?: boolean) => number;
|
|
136
|
-
valueOf: () => number;
|
|
137
|
-
unix: () => number;
|
|
138
|
-
daysInMonth: () => number;
|
|
139
|
-
toDate: () => Date;
|
|
140
|
-
toJSON: () => string;
|
|
141
|
-
toISOString: () => string;
|
|
142
|
-
toString: () => string;
|
|
143
|
-
utcOffset: () => number;
|
|
144
|
-
isBefore: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
145
|
-
isSame: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
146
|
-
isAfter: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
147
|
-
locale: {
|
|
148
|
-
(): string;
|
|
149
|
-
(preset: string | ILocale, object?: Partial<ILocale>): Dayjs;
|
|
150
|
-
};
|
|
151
|
-
localeData: () => dayjs.InstanceLocaleDataReturn;
|
|
152
|
-
week: {
|
|
153
|
-
(): number;
|
|
154
|
-
(value: number): Dayjs;
|
|
155
|
-
};
|
|
156
|
-
weekYear: () => number;
|
|
157
|
-
dayOfYear: {
|
|
158
|
-
(): number;
|
|
159
|
-
(value: number): Dayjs;
|
|
160
|
-
};
|
|
161
|
-
isSameOrAfter: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
162
|
-
isSameOrBefore: (date?: dayjs.ConfigType, unit?: dayjs.OpUnitType) => boolean;
|
|
163
|
-
};
|
|
164
|
-
selecting: boolean;
|
|
165
|
-
}>;
|
|
166
|
-
handleRangeConfirm: (visible?: boolean) => void;
|
|
167
|
-
onSelect: (selecting: boolean) => void;
|
|
168
|
-
handleShortcutClick: any;
|
|
169
|
-
leftDisableDate: (date: any) => boolean;
|
|
170
|
-
rightDisableDate: (date: any) => boolean;
|
|
171
|
-
t: any;
|
|
172
|
-
};
|
|
173
|
-
export {};
|
package/dist/components/src/components/DatePicker/src/date-picker-com/panel-date-range.vue.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
unlinkPanels: BooleanConstructor;
|
|
3
|
-
visible: BooleanConstructor;
|
|
4
|
-
parsedValue: any;
|
|
5
|
-
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
|
-
[key: string]: any;
|
|
7
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("pick" | "set-picker-option" | "calendar-change" | "panel-change")[], "pick" | "set-picker-option" | "calendar-change" | "panel-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
unlinkPanels: BooleanConstructor;
|
|
9
|
-
visible: BooleanConstructor;
|
|
10
|
-
parsedValue: any;
|
|
11
|
-
}>> & Readonly<{
|
|
12
|
-
onPick?: (...args: any[]) => any;
|
|
13
|
-
"onSet-picker-option"?: (...args: any[]) => any;
|
|
14
|
-
"onCalendar-change"?: (...args: any[]) => any;
|
|
15
|
-
"onPanel-change"?: (...args: any[]) => any;
|
|
16
|
-
}>, {
|
|
17
|
-
[x: string]: unknown;
|
|
18
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
-
export default _default;
|
package/dist/components/src/components/DatePicker/src/date-picker-com/panel-month-range.vue.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
unlinkPanels: BooleanConstructor;
|
|
3
|
-
visible: BooleanConstructor;
|
|
4
|
-
parsedValue: any;
|
|
5
|
-
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
|
-
[key: string]: any;
|
|
7
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
unlinkPanels: BooleanConstructor;
|
|
9
|
-
visible: BooleanConstructor;
|
|
10
|
-
parsedValue: any;
|
|
11
|
-
}>> & Readonly<{
|
|
12
|
-
[x: `on${Capitalize<string>}`]: (...args: any[]) => any;
|
|
13
|
-
}>, {
|
|
14
|
-
[x: string]: unknown;
|
|
15
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
-
export default _default;
|
|
@@ -1,97 +0,0 @@
|
|
|
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>;
|
|
97
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ColProps, FormSchema, PlaceholderModel } from '../types';
|
|
2
|
-
import { Recordable } from '../../../../types';
|
|
3
|
-
export declare const setTextPlaceholder: (schema: FormSchema) => PlaceholderModel;
|
|
4
|
-
export declare const setGridProp: (col?: ColProps) => ColProps;
|
|
5
|
-
export declare const setComponentProps: (item: FormSchema) => Recordable;
|
|
6
|
-
export declare const setItemComponentSlots: (slotsProps?: Recordable) => Recordable;
|
|
7
|
-
export declare const initModel: (schema: FormSchema[], formModel: Recordable) => Recordable;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
strength: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>> & {
|
|
3
|
-
default: boolean;
|
|
4
|
-
};
|
|
5
|
-
modelValue: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
6
|
-
default: string;
|
|
7
|
-
} & {
|
|
8
|
-
default: string;
|
|
9
|
-
};
|
|
10
|
-
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
|
-
[key: string]: any;
|
|
12
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
-
strength: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>> & {
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
|
-
modelValue: import("vue-types").VueTypeValidableDef<string, import("vue-types/dist/types").ValidatorFunction<string>> & {
|
|
17
|
-
default: string;
|
|
18
|
-
} & {
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
|
-
}>> & Readonly<{
|
|
22
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23
|
-
}>, {
|
|
24
|
-
strength: boolean;
|
|
25
|
-
modelValue: string;
|
|
26
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare function isFunction(val: unknown): val is Function;
|
|
2
|
-
declare interface Fn<T = any, R = T> {
|
|
3
|
-
(...arg: T[]): R;
|
|
4
|
-
}
|
|
5
|
-
export declare function useTimeoutFn(handle: Fn<any>, wait: number, native?: boolean): {
|
|
6
|
-
readyRef: import("vue").Ref<boolean, boolean>;
|
|
7
|
-
stop: () => void;
|
|
8
|
-
start: () => void;
|
|
9
|
-
};
|
|
10
|
-
export declare function useTimeoutRef(wait: number): {
|
|
11
|
-
readyRef: import("vue").Ref<boolean, boolean>;
|
|
12
|
-
stop: () => void;
|
|
13
|
-
start: () => void;
|
|
14
|
-
};
|
|
15
|
-
export {};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import NodeRender from "./NodeRender";
|
|
2
|
-
export default class BCanvasNodeRender extends NodeRender {
|
|
3
|
-
protected canvas: HTMLCanvasElement;
|
|
4
|
-
protected context: CanvasRenderingContext2D;
|
|
5
|
-
protected overlay: HTMLElement;
|
|
6
|
-
protected cache: any;
|
|
7
|
-
protected onMouseWheel(event: WheelEvent): void;
|
|
8
|
-
protected onMouseMove(event: MouseEvent): void;
|
|
9
|
-
protected onMouseLeave(event: any): void;
|
|
10
|
-
protected onMouseDown(event: any): void;
|
|
11
|
-
protected onMouseUp(event: any): void;
|
|
12
|
-
protected showOverlay(index: number): any;
|
|
13
|
-
initialize(container: HTMLElement, accept: Function): void;
|
|
14
|
-
resize(): void;
|
|
15
|
-
reset(): void;
|
|
16
|
-
dataChange(): void;
|
|
17
|
-
dispose(): void;
|
|
18
|
-
render(index?: number): void;
|
|
19
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { PropType } from "vue";
|
|
2
|
-
import NodeRender from "./NodeRender";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
render: PropType<NodeRender>;
|
|
5
|
-
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
|
-
[key: string]: any;
|
|
7
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:frame"[], "update:frame", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
render: PropType<NodeRender>;
|
|
9
|
-
}>> & Readonly<{
|
|
10
|
-
"onUpdate:frame"?: (...args: any[]) => any;
|
|
11
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
-
export default _default;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
config: ObjectConstructor;
|
|
3
|
-
res: {
|
|
4
|
-
type: ObjectConstructor;
|
|
5
|
-
};
|
|
6
|
-
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:frame" | "register")[], "update:frame" | "register", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
-
config: ObjectConstructor;
|
|
10
|
-
res: {
|
|
11
|
-
type: ObjectConstructor;
|
|
12
|
-
};
|
|
13
|
-
}>> & Readonly<{
|
|
14
|
-
"onUpdate:frame"?: (...args: any[]) => any;
|
|
15
|
-
onRegister?: (...args: any[]) => any;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
|
-
export default _default;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import NodeModel from "./NodeModel";
|
|
2
|
-
import NodeRender from "./NodeRender";
|
|
3
|
-
import { NodeAxis } from "./types";
|
|
4
|
-
import NodePlayer from "./interface/NodePlayer";
|
|
5
|
-
export default class TimerNodePlayer implements NodePlayer {
|
|
6
|
-
protected renderer: NodeRender;
|
|
7
|
-
protected model: NodeModel;
|
|
8
|
-
protected timer: any;
|
|
9
|
-
protected options: NodeAxis.PlayOptions;
|
|
10
|
-
constructor(model: NodeModel, renderer: NodeRender, options?: NodeAxis.PlayOptions);
|
|
11
|
-
get playing(): boolean;
|
|
12
|
-
play(): void;
|
|
13
|
-
stop(): void;
|
|
14
|
-
reset(): void;
|
|
15
|
-
backward(loop: boolean): void;
|
|
16
|
-
forward(loop: boolean): void;
|
|
17
|
-
jump(index: number): void;
|
|
18
|
-
protected render(index?: number): void;
|
|
19
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { TableColumn } from '../types';
|
|
2
|
-
import { PropType } from 'vue';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
columns: {
|
|
5
|
-
type: PropType<TableColumn[]>;
|
|
6
|
-
default: () => any[];
|
|
7
|
-
};
|
|
8
|
-
modelValue: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("confirm" | "update:modelValue")[], "confirm" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
columns: {
|
|
16
|
-
type: PropType<TableColumn[]>;
|
|
17
|
-
default: () => any[];
|
|
18
|
-
};
|
|
19
|
-
modelValue: {
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
}>> & Readonly<{
|
|
24
|
-
onConfirm?: (...args: any[]) => any;
|
|
25
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
26
|
-
}>, {
|
|
27
|
-
columns: TableColumn[];
|
|
28
|
-
modelValue: boolean;
|
|
29
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
30
|
-
export default _default;
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { TableColumn } from '../types';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
columns: {
|
|
5
|
-
type: PropType<TableColumn[]>;
|
|
6
|
-
default: () => any[];
|
|
7
|
-
};
|
|
8
|
-
}>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("refresh" | "changSize" | "confirm")[], "refresh" | "changSize" | "confirm", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
-
columns: {
|
|
10
|
-
type: PropType<TableColumn[]>;
|
|
11
|
-
default: () => any[];
|
|
12
|
-
};
|
|
13
|
-
}>> & Readonly<{
|
|
14
|
-
onRefresh?: (...args: any[]) => any;
|
|
15
|
-
onChangSize?: (...args: any[]) => any;
|
|
16
|
-
onConfirm?: (...args: any[]) => any;
|
|
17
|
-
}>, {
|
|
18
|
-
columns: TableColumn[];
|
|
19
|
-
}, {}, {
|
|
20
|
-
ElDropdown: any;
|
|
21
|
-
ElDropdownMenu: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
22
|
-
onKeydown: {
|
|
23
|
-
readonly type: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
24
|
-
readonly required: false;
|
|
25
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
26
|
-
__epPropKey: true;
|
|
27
|
-
};
|
|
28
|
-
}, {
|
|
29
|
-
size: import("vue").ComputedRef<string> | undefined;
|
|
30
|
-
rovingFocusGroupRootStyle: import("vue").Ref<import("vue").StyleValue>;
|
|
31
|
-
tabIndex: import("vue").Ref<number>;
|
|
32
|
-
dropdownKls: import("vue").ComputedRef<string[]>;
|
|
33
|
-
role: import("vue").ComputedRef<string>;
|
|
34
|
-
triggerId: import("vue").ComputedRef<string>;
|
|
35
|
-
dropdownListWrapperRef: (el: Element | import("vue").ComponentPublicInstance | null) => void;
|
|
36
|
-
handleKeydown: (e: KeyboardEvent) => void;
|
|
37
|
-
onBlur: (e: Event) => void;
|
|
38
|
-
onFocus: (e: FocusEvent) => void;
|
|
39
|
-
onMousedown: (e: Event) => void;
|
|
40
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
onKeydown: {
|
|
42
|
-
readonly type: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
43
|
-
readonly required: false;
|
|
44
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
45
|
-
__epPropKey: true;
|
|
46
|
-
};
|
|
47
|
-
}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
48
|
-
ElDropdownItem: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
49
|
-
readonly command: import("element-plus/es/utils").EpPropFinalized<readonly [ObjectConstructor, StringConstructor, NumberConstructor], unknown, unknown, () => {}, boolean>;
|
|
50
|
-
readonly disabled: BooleanConstructor;
|
|
51
|
-
readonly divided: BooleanConstructor;
|
|
52
|
-
readonly textValue: StringConstructor;
|
|
53
|
-
readonly icon: {
|
|
54
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
55
|
-
readonly required: false;
|
|
56
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
57
|
-
__epPropKey: true;
|
|
58
|
-
};
|
|
59
|
-
}, {
|
|
60
|
-
handleClick: (event: PointerEvent) => void;
|
|
61
|
-
handlePointerMove: (event: PointerEvent) => void;
|
|
62
|
-
handlePointerLeave: (event: PointerEvent) => void;
|
|
63
|
-
textContent: import("vue").ComputedRef<string>;
|
|
64
|
-
propsAndAttrs: import("vue").ComputedRef<{
|
|
65
|
-
disabled: boolean;
|
|
66
|
-
icon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
|
|
67
|
-
onClick: ((...args: any[]) => any) | undefined;
|
|
68
|
-
onPointermove: ((...args: any[]) => any) | undefined;
|
|
69
|
-
onPointerleave: ((...args: any[]) => any) | undefined;
|
|
70
|
-
command: import("element-plus/es/utils").EpPropMergeType<readonly [ObjectConstructor, StringConstructor, NumberConstructor], unknown, unknown>;
|
|
71
|
-
divided: boolean;
|
|
72
|
-
textValue: string | undefined;
|
|
73
|
-
}>;
|
|
74
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "pointerleave" | "pointermove")[], "click" | "pointerleave" | "pointermove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
75
|
-
readonly command: import("element-plus/es/utils").EpPropFinalized<readonly [ObjectConstructor, StringConstructor, NumberConstructor], unknown, unknown, () => {}, boolean>;
|
|
76
|
-
readonly disabled: BooleanConstructor;
|
|
77
|
-
readonly divided: BooleanConstructor;
|
|
78
|
-
readonly textValue: StringConstructor;
|
|
79
|
-
readonly icon: {
|
|
80
|
-
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
|
|
81
|
-
readonly required: false;
|
|
82
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
|
-
__epPropKey: true;
|
|
84
|
-
};
|
|
85
|
-
}>> & {
|
|
86
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
87
|
-
onPointermove?: ((...args: any[]) => any) | undefined;
|
|
88
|
-
onPointerleave?: ((...args: any[]) => any) | undefined;
|
|
89
|
-
}, {
|
|
90
|
-
readonly disabled: boolean;
|
|
91
|
-
readonly command: import("element-plus/es/utils").EpPropMergeType<readonly [ObjectConstructor, StringConstructor, NumberConstructor], unknown, unknown>;
|
|
92
|
-
readonly divided: boolean;
|
|
93
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
|
94
|
-
ColumnSetting: import("vue").DefineComponent<{}, {}, any>;
|
|
95
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
96
|
-
export default _default;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
domRef: import("vue-types").VueTypeValidableDef<any, import("vue-types/dist/types").ValidatorFunction<any>>;
|
|
3
|
-
stop: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
4
|
-
default: (...args: any[]) => any;
|
|
5
|
-
};
|
|
6
|
-
play: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
7
|
-
default: (...args: any[]) => any;
|
|
8
|
-
};
|
|
9
|
-
isPlay: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>>;
|
|
10
|
-
isFullscreen: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>>;
|
|
11
|
-
toggleFullscreenFn: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
12
|
-
default: (...args: any[]) => any;
|
|
13
|
-
};
|
|
14
|
-
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
-
[key: string]: any;
|
|
16
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
domRef: import("vue-types").VueTypeValidableDef<any, import("vue-types/dist/types").ValidatorFunction<any>>;
|
|
18
|
-
stop: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
19
|
-
default: (...args: any[]) => any;
|
|
20
|
-
};
|
|
21
|
-
play: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
22
|
-
default: (...args: any[]) => any;
|
|
23
|
-
};
|
|
24
|
-
isPlay: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>>;
|
|
25
|
-
isFullscreen: import("vue-types").VueTypeValidableDef<boolean, import("vue-types/dist/types").ValidatorFunction<boolean>>;
|
|
26
|
-
toggleFullscreenFn: import("vue-types").VueTypeValidableDef<(...args: any[]) => any, import("vue-types/dist/types").ValidatorFunction<(...args: any[]) => any>> & {
|
|
27
|
-
default: (...args: any[]) => any;
|
|
28
|
-
};
|
|
29
|
-
}>> & Readonly<{}>, {
|
|
30
|
-
stop: (...args: any[]) => any;
|
|
31
|
-
play: (...args: any[]) => any;
|
|
32
|
-
toggleFullscreenFn: (...args: any[]) => any;
|
|
33
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
-
export default _default;
|