bkui-vue 0.0.1-beta.423 → 0.0.1-beta.425
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/index.cjs.js +30 -30
- package/dist/index.esm.js +269 -12
- package/dist/index.umd.js +35 -35
- package/lib/date-picker/base/month-table.d.ts +117 -0
- package/lib/date-picker/base/year-table.d.ts +117 -0
- package/lib/date-picker/index.js +1 -1
- package/lib/input/index.d.ts +49 -49
- package/lib/input/input.d.ts +9 -9
- package/lib/loading/index.js +1 -1
- package/lib/table/index.d.ts +4 -4
- package/lib/table/table.d.ts +1 -1
- package/package.json +1 -1
@@ -0,0 +1,117 @@
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
2
|
+
import { PropType } from 'vue';
|
3
|
+
import type { DatePickerValueType } from '../interface';
|
4
|
+
declare const monthTableProps: {
|
5
|
+
readonly tableDate: {
|
6
|
+
readonly type: DateConstructor;
|
7
|
+
readonly required: true;
|
8
|
+
};
|
9
|
+
readonly disabledDate: {
|
10
|
+
readonly type: FunctionConstructor;
|
11
|
+
};
|
12
|
+
readonly selectionMode: {
|
13
|
+
readonly type: StringConstructor;
|
14
|
+
readonly required: true;
|
15
|
+
};
|
16
|
+
readonly modelValue: {
|
17
|
+
readonly type: PropType<DatePickerValueType>;
|
18
|
+
readonly required: true;
|
19
|
+
};
|
20
|
+
readonly rangeState: {
|
21
|
+
readonly type: ObjectConstructor;
|
22
|
+
readonly default: () => {
|
23
|
+
from: any;
|
24
|
+
to: any;
|
25
|
+
selecting: boolean;
|
26
|
+
};
|
27
|
+
};
|
28
|
+
readonly focusedDate: {
|
29
|
+
readonly type: DateConstructor;
|
30
|
+
readonly required: true;
|
31
|
+
};
|
32
|
+
readonly cellClass: {
|
33
|
+
readonly type: FunctionConstructor;
|
34
|
+
readonly default: () => string;
|
35
|
+
};
|
36
|
+
};
|
37
|
+
export declare type MonthTableProps = Readonly<ExtractPropTypes<typeof monthTableProps>>;
|
38
|
+
declare const _default: import("vue").DefineComponent<{
|
39
|
+
readonly tableDate: {
|
40
|
+
readonly type: DateConstructor;
|
41
|
+
readonly required: true;
|
42
|
+
};
|
43
|
+
readonly disabledDate: {
|
44
|
+
readonly type: FunctionConstructor;
|
45
|
+
};
|
46
|
+
readonly selectionMode: {
|
47
|
+
readonly type: StringConstructor;
|
48
|
+
readonly required: true;
|
49
|
+
};
|
50
|
+
readonly modelValue: {
|
51
|
+
readonly type: PropType<DatePickerValueType>;
|
52
|
+
readonly required: true;
|
53
|
+
};
|
54
|
+
readonly rangeState: {
|
55
|
+
readonly type: ObjectConstructor;
|
56
|
+
readonly default: () => {
|
57
|
+
from: any;
|
58
|
+
to: any;
|
59
|
+
selecting: boolean;
|
60
|
+
};
|
61
|
+
};
|
62
|
+
readonly focusedDate: {
|
63
|
+
readonly type: DateConstructor;
|
64
|
+
readonly required: true;
|
65
|
+
};
|
66
|
+
readonly cellClass: {
|
67
|
+
readonly type: FunctionConstructor;
|
68
|
+
readonly default: () => string;
|
69
|
+
};
|
70
|
+
}, {
|
71
|
+
cells: import("vue").ComputedRef<any[]>;
|
72
|
+
getCellCls: (cell: any) => (string | {
|
73
|
+
[x: string]: any;
|
74
|
+
})[];
|
75
|
+
handleClick: (cell: any) => void;
|
76
|
+
handleMouseMove: (cell: any) => void;
|
77
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("pick" | "pick-click" | "change-range")[], "pick" | "pick-click" | "change-range", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
78
|
+
readonly tableDate: {
|
79
|
+
readonly type: DateConstructor;
|
80
|
+
readonly required: true;
|
81
|
+
};
|
82
|
+
readonly disabledDate: {
|
83
|
+
readonly type: FunctionConstructor;
|
84
|
+
};
|
85
|
+
readonly selectionMode: {
|
86
|
+
readonly type: StringConstructor;
|
87
|
+
readonly required: true;
|
88
|
+
};
|
89
|
+
readonly modelValue: {
|
90
|
+
readonly type: PropType<DatePickerValueType>;
|
91
|
+
readonly required: true;
|
92
|
+
};
|
93
|
+
readonly rangeState: {
|
94
|
+
readonly type: ObjectConstructor;
|
95
|
+
readonly default: () => {
|
96
|
+
from: any;
|
97
|
+
to: any;
|
98
|
+
selecting: boolean;
|
99
|
+
};
|
100
|
+
};
|
101
|
+
readonly focusedDate: {
|
102
|
+
readonly type: DateConstructor;
|
103
|
+
readonly required: true;
|
104
|
+
};
|
105
|
+
readonly cellClass: {
|
106
|
+
readonly type: FunctionConstructor;
|
107
|
+
readonly default: () => string;
|
108
|
+
};
|
109
|
+
}>> & {
|
110
|
+
onPick?: (...args: any[]) => any;
|
111
|
+
"onPick-click"?: (...args: any[]) => any;
|
112
|
+
"onChange-range"?: (...args: any[]) => any;
|
113
|
+
}, {
|
114
|
+
rangeState: Record<string, any>;
|
115
|
+
cellClass: Function;
|
116
|
+
}>;
|
117
|
+
export default _default;
|
@@ -0,0 +1,117 @@
|
|
1
|
+
import type { ExtractPropTypes } from 'vue';
|
2
|
+
import { PropType } from 'vue';
|
3
|
+
import type { DatePickerValueType } from '../interface';
|
4
|
+
declare const yearTableProps: {
|
5
|
+
readonly tableDate: {
|
6
|
+
readonly type: DateConstructor;
|
7
|
+
readonly required: true;
|
8
|
+
};
|
9
|
+
readonly disabledDate: {
|
10
|
+
readonly type: FunctionConstructor;
|
11
|
+
};
|
12
|
+
readonly selectionMode: {
|
13
|
+
readonly type: StringConstructor;
|
14
|
+
readonly required: true;
|
15
|
+
};
|
16
|
+
readonly modelValue: {
|
17
|
+
readonly type: PropType<DatePickerValueType>;
|
18
|
+
readonly required: true;
|
19
|
+
};
|
20
|
+
readonly rangeState: {
|
21
|
+
readonly type: ObjectConstructor;
|
22
|
+
readonly default: () => {
|
23
|
+
from: any;
|
24
|
+
to: any;
|
25
|
+
selecting: boolean;
|
26
|
+
};
|
27
|
+
};
|
28
|
+
readonly focusedDate: {
|
29
|
+
readonly type: DateConstructor;
|
30
|
+
readonly required: true;
|
31
|
+
};
|
32
|
+
readonly cellClass: {
|
33
|
+
readonly type: FunctionConstructor;
|
34
|
+
readonly default: () => string;
|
35
|
+
};
|
36
|
+
};
|
37
|
+
export declare type YearTableProps = Readonly<ExtractPropTypes<typeof yearTableProps>>;
|
38
|
+
declare const _default: import("vue").DefineComponent<{
|
39
|
+
readonly tableDate: {
|
40
|
+
readonly type: DateConstructor;
|
41
|
+
readonly required: true;
|
42
|
+
};
|
43
|
+
readonly disabledDate: {
|
44
|
+
readonly type: FunctionConstructor;
|
45
|
+
};
|
46
|
+
readonly selectionMode: {
|
47
|
+
readonly type: StringConstructor;
|
48
|
+
readonly required: true;
|
49
|
+
};
|
50
|
+
readonly modelValue: {
|
51
|
+
readonly type: PropType<DatePickerValueType>;
|
52
|
+
readonly required: true;
|
53
|
+
};
|
54
|
+
readonly rangeState: {
|
55
|
+
readonly type: ObjectConstructor;
|
56
|
+
readonly default: () => {
|
57
|
+
from: any;
|
58
|
+
to: any;
|
59
|
+
selecting: boolean;
|
60
|
+
};
|
61
|
+
};
|
62
|
+
readonly focusedDate: {
|
63
|
+
readonly type: DateConstructor;
|
64
|
+
readonly required: true;
|
65
|
+
};
|
66
|
+
readonly cellClass: {
|
67
|
+
readonly type: FunctionConstructor;
|
68
|
+
readonly default: () => string;
|
69
|
+
};
|
70
|
+
}, {
|
71
|
+
cells: import("vue").ComputedRef<any[]>;
|
72
|
+
getCellCls: (cell: any) => (string | {
|
73
|
+
[x: string]: any;
|
74
|
+
})[];
|
75
|
+
handleClick: (cell: any) => void;
|
76
|
+
handleMouseMove: (cell: any) => void;
|
77
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("pick" | "pick-click" | "change-range")[], "pick" | "pick-click" | "change-range", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
78
|
+
readonly tableDate: {
|
79
|
+
readonly type: DateConstructor;
|
80
|
+
readonly required: true;
|
81
|
+
};
|
82
|
+
readonly disabledDate: {
|
83
|
+
readonly type: FunctionConstructor;
|
84
|
+
};
|
85
|
+
readonly selectionMode: {
|
86
|
+
readonly type: StringConstructor;
|
87
|
+
readonly required: true;
|
88
|
+
};
|
89
|
+
readonly modelValue: {
|
90
|
+
readonly type: PropType<DatePickerValueType>;
|
91
|
+
readonly required: true;
|
92
|
+
};
|
93
|
+
readonly rangeState: {
|
94
|
+
readonly type: ObjectConstructor;
|
95
|
+
readonly default: () => {
|
96
|
+
from: any;
|
97
|
+
to: any;
|
98
|
+
selecting: boolean;
|
99
|
+
};
|
100
|
+
};
|
101
|
+
readonly focusedDate: {
|
102
|
+
readonly type: DateConstructor;
|
103
|
+
readonly required: true;
|
104
|
+
};
|
105
|
+
readonly cellClass: {
|
106
|
+
readonly type: FunctionConstructor;
|
107
|
+
readonly default: () => string;
|
108
|
+
};
|
109
|
+
}>> & {
|
110
|
+
onPick?: (...args: any[]) => any;
|
111
|
+
"onPick-click"?: (...args: any[]) => any;
|
112
|
+
"onChange-range"?: (...args: any[]) => any;
|
113
|
+
}, {
|
114
|
+
rangeState: Record<string, any>;
|
115
|
+
cellClass: Function;
|
116
|
+
}>;
|
117
|
+
export default _default;
|