x-next 0.0.0-alpha.4 → 0.0.0-alpha.41
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/_container/client-only.d.ts +4 -0
- package/dist/_container/parent-scroll-observer.d.ts +6 -0
- package/dist/_container/resize-observer.d.ts +6 -0
- package/dist/_container/utils.d.ts +12 -0
- package/dist/_hooks/_types.d.ts +4 -0
- package/dist/_hooks/use-first-element.d.ts +5 -0
- package/dist/_hooks/use-index.d.ts +9 -0
- package/dist/_hooks/use-overflow.d.ts +5 -0
- package/dist/_hooks/use-popup-manager.d.ts +11 -0
- package/dist/_hooks/use-resize-observer.d.ts +8 -0
- package/dist/_props/css.d.ts +13 -0
- package/dist/_props/global.d.ts +1 -0
- package/dist/_utils/click.d.ts +13 -0
- package/dist/_utils/config.d.ts +9 -0
- package/dist/_utils/constant.d.ts +17 -0
- package/dist/_utils/convert-case.d.ts +3 -0
- package/dist/_utils/dom.d.ts +10 -0
- package/dist/_utils/helpers.d.ts +12 -0
- package/dist/_utils/is.d.ts +25 -0
- package/dist/_utils/keyboard.d.ts +24 -0
- package/dist/_utils/number.d.ts +0 -0
- package/dist/_utils/vue-eco.d.ts +38 -0
- package/dist/components/button/Button.d.ts +97 -0
- package/dist/components/button/index.d.ts +181 -0
- package/dist/components/button/props.d.ts +45 -0
- package/dist/components/dialog/Dialog.d.ts +188 -0
- package/dist/components/dialog/index.d.ts +334 -0
- package/dist/components/dialog/props.d.ts +83 -0
- package/dist/components/dialog/use-props.d.ts +33 -0
- package/dist/components/dialog/use.d.ts +3 -0
- package/dist/components/dialog/warp.d.ts +2 -0
- package/dist/components/form/constants.d.ts +4 -0
- package/dist/components/form/form-item.d.ts +31 -0
- package/dist/components/form/form.d.ts +39 -0
- package/dist/components/form/hooks.d.ts +4 -0
- package/dist/components/form/types.d.ts +31 -0
- package/dist/components/index.d.ts +10 -0
- package/dist/components/input/Input.d.ts +220 -0
- package/dist/components/input/index.d.ts +394 -0
- package/dist/components/input/props.d.ts +95 -0
- package/dist/components/input/utils.d.ts +6 -0
- package/dist/components/message/Message.d.ts +108 -0
- package/dist/components/message/MessageVue.vue.d.ts +362 -0
- package/dist/components/message/index.d.ts +193 -0
- package/dist/components/message/props.d.ts +31 -0
- package/dist/components/message/warp.d.ts +3 -0
- package/dist/components/message-box/MessageBox.d.ts +3 -0
- package/dist/components/message-box/index.d.ts +4 -0
- package/dist/components/message-box/props.d.ts +52 -0
- package/dist/components/message-box/warp.d.ts +2 -0
- package/dist/components/notification/Notification.d.ts +89 -0
- package/dist/components/notification/index.d.ts +166 -0
- package/dist/components/notification/props.d.ts +54 -0
- package/dist/components/notification/warp.d.ts +3 -0
- package/dist/components/popconfirm/index.d.ts +193 -0
- package/dist/components/popconfirm/src/Popconfirm.d.ts +104 -0
- package/dist/components/popconfirm/src/popup.vue.d.ts +407 -0
- package/dist/components/popconfirm/src/props.d.ts +45 -0
- package/dist/components/popconfirm/src/types.d.ts +3 -0
- package/dist/components/scrollbar/index.d.ts +0 -0
- package/dist/components/scrollbar/props.d.ts +16 -0
- package/dist/components/space/Space.d.ts +42 -0
- package/dist/components/space/index.d.ts +82 -0
- package/dist/components/tag-cloud/index.d.ts +0 -0
- package/dist/components/timeline/index.d.ts +58 -0
- package/dist/components/timeline/src/context.d.ts +12 -0
- package/dist/components/timeline/src/props.d.ts +31 -0
- package/dist/components/timeline/src/timeline-item.d.ts +12 -0
- package/dist/components/timeline/src/timeline.d.ts +24 -0
- package/dist/components/timeline/src/types.d.ts +9 -0
- package/dist/components/timeline-item/index.d.ts +34 -0
- package/dist/components/trend-chart/components/TrendChart.d.ts +277 -0
- package/dist/components/trend-chart/components/trend-chart-curve.d.ts +111 -0
- package/dist/components/trend-chart/components/trend-chart-grid.d.ts +55 -0
- package/dist/components/trend-chart/components/trend-chart-labels.d.ts +22 -0
- package/dist/components/trend-chart/helpers/genPath.d.ts +8 -0
- package/dist/components/trend-chart/helpers/genPoints.d.ts +3 -0
- package/dist/components/trend-chart/helpers/getPadding.d.ts +7 -0
- package/dist/components/trend-chart/helpers/validatePadding.d.ts +2 -0
- package/dist/components/trend-chart/index.d.ts +535 -0
- package/dist/components/trend-chart/props.d.ts +203 -0
- package/dist/components/trend-chart/themes.d.ts +128 -0
- package/dist/components/trend-chart.bak/components/trend-chart-curve.d.ts +111 -0
- package/dist/components/trend-chart.bak/components/trend-chart-grid.d.ts +55 -0
- package/dist/components/trend-chart.bak/components/trend-chart-labels.d.ts +22 -0
- package/dist/components/trend-chart.bak/components/trend-chart.d.ts +274 -0
- package/dist/components/trend-chart.bak/helpers/genPath.d.ts +8 -0
- package/dist/components/trend-chart.bak/helpers/genPoints.d.ts +3 -0
- package/dist/components/trend-chart.bak/helpers/getPadding.d.ts +7 -0
- package/dist/components/trend-chart.bak/helpers/validatePadding.d.ts +2 -0
- package/dist/components/trend-chart.bak/index.d.ts +530 -0
- package/dist/components/trend-chart.bak/props.d.ts +211 -0
- package/dist/components/trend-chart.bak/themes.d.ts +152 -0
- package/dist/components/trigger/index.d.ts +487 -0
- package/dist/components/trigger/src/_trigger.d.ts +217 -0
- package/dist/components/trigger/src/constant.d.ts +8 -0
- package/dist/components/trigger/src/trigger.d.ts +288 -0
- package/dist/components/trigger/src/utils.d.ts +50 -0
- package/dist/directives/clipboard/cache.d.ts +8 -0
- package/dist/directives/clipboard/clipboard.d.ts +18 -0
- package/dist/directives/clipboard/convert.d.ts +3 -0
- package/dist/directives/clipboard/index.d.ts +3 -0
- package/dist/directives/clipboard/plugin.d.ts +2 -0
- package/dist/directives/clipboard/textarea.d.ts +3 -0
- package/dist/icons/animation/animation-loading.d.ts +50 -0
- package/dist/icons/default/check-circle-fill.d.ts +50 -0
- package/dist/icons/default/close-circle-fill.d.ts +50 -0
- package/dist/icons/default/exclamation-circle-fill.d.ts +50 -0
- package/dist/icons/default/info-circle-fill.d.ts +50 -0
- package/dist/icons/default/logo-simple.d.ts +50 -0
- package/dist/icons/default/minus-circle-fill.d.ts +50 -0
- package/dist/icons/icon.d.ts +51 -0
- package/dist/icons/index.d.ts +8 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.es.js +3166 -0
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -0
- package/dist/types.d.ts +13 -0
- package/package.json +25 -11
- package/volar.d.ts +17 -0
@@ -0,0 +1,203 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
import { CSSColor } from '../../_props/css';
|
3
|
+
export type TrendChartStatus = 'primary' | 'success' | 'warning' | 'strong' | 'danger' | 'info';
|
4
|
+
export type Padding = {
|
5
|
+
top: number | string;
|
6
|
+
right: number | string;
|
7
|
+
bottom: number | string;
|
8
|
+
left: number | string;
|
9
|
+
};
|
10
|
+
export type Point = {
|
11
|
+
x: number;
|
12
|
+
y: number;
|
13
|
+
};
|
14
|
+
export type PointValue = number;
|
15
|
+
export type MouseMoveEvent = {
|
16
|
+
index: number;
|
17
|
+
data: PointValue;
|
18
|
+
} | null;
|
19
|
+
export type Boundary = {
|
20
|
+
minX: number;
|
21
|
+
maxX: number;
|
22
|
+
minY: number;
|
23
|
+
maxY: number;
|
24
|
+
};
|
25
|
+
export type DataSetTheme = {};
|
26
|
+
export type DataSet = number[];
|
27
|
+
export type Grid = {
|
28
|
+
verticalLines?: boolean;
|
29
|
+
verticalLinesNumber?: number;
|
30
|
+
horizontalLines?: boolean;
|
31
|
+
horizontalLinesNumber?: number;
|
32
|
+
};
|
33
|
+
export type Labels = {
|
34
|
+
xLabels: string[];
|
35
|
+
yLabels: number;
|
36
|
+
yLabelsTextFormatter: (value: number) => string;
|
37
|
+
};
|
38
|
+
export type CurveTheme = {
|
39
|
+
stroke?: {
|
40
|
+
width?: number;
|
41
|
+
color?: CSSColor;
|
42
|
+
opacity?: number;
|
43
|
+
};
|
44
|
+
fill?: {
|
45
|
+
color?: CSSColor;
|
46
|
+
opacity?: number;
|
47
|
+
};
|
48
|
+
point?: {
|
49
|
+
width?: number;
|
50
|
+
color?: CSSColor;
|
51
|
+
opacity?: number;
|
52
|
+
};
|
53
|
+
};
|
54
|
+
export interface Theme extends CurveTheme {
|
55
|
+
color?: CSSColor;
|
56
|
+
axisLine?: {
|
57
|
+
color?: CSSColor;
|
58
|
+
width?: number;
|
59
|
+
opacity?: number;
|
60
|
+
};
|
61
|
+
}
|
62
|
+
export declare const trendChartProps: {
|
63
|
+
dataset: {
|
64
|
+
required: boolean;
|
65
|
+
type: PropType<DataSet>;
|
66
|
+
default: () => never[];
|
67
|
+
};
|
68
|
+
status: {
|
69
|
+
type: PropType<TrendChartStatus>;
|
70
|
+
default: undefined;
|
71
|
+
};
|
72
|
+
grid: {
|
73
|
+
default: null;
|
74
|
+
type: PropType<Grid>;
|
75
|
+
};
|
76
|
+
labels: {
|
77
|
+
default: null;
|
78
|
+
type: PropType<Labels>;
|
79
|
+
};
|
80
|
+
max: {
|
81
|
+
type: NumberConstructor;
|
82
|
+
};
|
83
|
+
min: {
|
84
|
+
type: NumberConstructor;
|
85
|
+
};
|
86
|
+
padding: {
|
87
|
+
default: string;
|
88
|
+
type: StringConstructor;
|
89
|
+
validator(val: string): boolean;
|
90
|
+
};
|
91
|
+
interactive: {
|
92
|
+
default: boolean;
|
93
|
+
type: BooleanConstructor;
|
94
|
+
};
|
95
|
+
theme: {
|
96
|
+
type: PropType<Theme>;
|
97
|
+
default: () => {
|
98
|
+
activeLineColor: string;
|
99
|
+
};
|
100
|
+
};
|
101
|
+
};
|
102
|
+
export declare const trendChartCurveProps: {
|
103
|
+
boundary: {
|
104
|
+
required: boolean;
|
105
|
+
type: PropType<Boundary>;
|
106
|
+
default: () => void;
|
107
|
+
};
|
108
|
+
minValue: {
|
109
|
+
required: boolean;
|
110
|
+
type: NumberConstructor;
|
111
|
+
};
|
112
|
+
maxValue: {
|
113
|
+
required: boolean;
|
114
|
+
type: NumberConstructor;
|
115
|
+
};
|
116
|
+
maxAmount: {
|
117
|
+
required: boolean;
|
118
|
+
type: NumberConstructor;
|
119
|
+
};
|
120
|
+
activeLineParams: {
|
121
|
+
type: ObjectConstructor;
|
122
|
+
};
|
123
|
+
data: {
|
124
|
+
required: boolean;
|
125
|
+
type: PropType<number[]>;
|
126
|
+
default: () => never[];
|
127
|
+
};
|
128
|
+
className: {
|
129
|
+
type: PropType<string>;
|
130
|
+
};
|
131
|
+
smooth: {
|
132
|
+
default: boolean;
|
133
|
+
type: BooleanConstructor;
|
134
|
+
};
|
135
|
+
stroke: {
|
136
|
+
default: boolean;
|
137
|
+
type: BooleanConstructor;
|
138
|
+
};
|
139
|
+
fill: {
|
140
|
+
default: boolean;
|
141
|
+
type: BooleanConstructor;
|
142
|
+
};
|
143
|
+
showPoints: {
|
144
|
+
default: boolean;
|
145
|
+
type: BooleanConstructor;
|
146
|
+
};
|
147
|
+
theme: {
|
148
|
+
type: PropType<CurveTheme>;
|
149
|
+
};
|
150
|
+
mainTheme: {
|
151
|
+
type: PropType<CurveTheme>;
|
152
|
+
};
|
153
|
+
};
|
154
|
+
export declare const trendChartGridProps: {
|
155
|
+
boundary: {
|
156
|
+
required: boolean;
|
157
|
+
type: PropType<Boundary>;
|
158
|
+
default: () => void;
|
159
|
+
};
|
160
|
+
verticalLines: {
|
161
|
+
default: boolean;
|
162
|
+
type: BooleanConstructor;
|
163
|
+
};
|
164
|
+
verticalLinesNumber: {
|
165
|
+
default: number;
|
166
|
+
type: NumberConstructor;
|
167
|
+
};
|
168
|
+
horizontalLines: {
|
169
|
+
default: boolean;
|
170
|
+
type: BooleanConstructor;
|
171
|
+
};
|
172
|
+
horizontalLinesNumber: {
|
173
|
+
default: number;
|
174
|
+
type: NumberConstructor;
|
175
|
+
};
|
176
|
+
};
|
177
|
+
export declare const trendChartLabelsProps: {
|
178
|
+
boundary: {
|
179
|
+
required: boolean;
|
180
|
+
type: PropType<Boundary>;
|
181
|
+
default: () => void;
|
182
|
+
};
|
183
|
+
minValue: {
|
184
|
+
type: NumberConstructor;
|
185
|
+
required: boolean;
|
186
|
+
};
|
187
|
+
maxValue: {
|
188
|
+
type: NumberConstructor;
|
189
|
+
required: boolean;
|
190
|
+
};
|
191
|
+
xLabels: {
|
192
|
+
type: ArrayConstructor;
|
193
|
+
};
|
194
|
+
yLabels: {
|
195
|
+
type: NumberConstructor;
|
196
|
+
required: boolean;
|
197
|
+
};
|
198
|
+
yLabelsTextFormatter: {
|
199
|
+
default: (value: any) => any;
|
200
|
+
type: FunctionConstructor;
|
201
|
+
};
|
202
|
+
};
|
203
|
+
export type TrendChartLabelsProps = ExtractPropTypes<typeof trendChartLabelsProps>;
|
@@ -0,0 +1,128 @@
|
|
1
|
+
export declare const TrendChartTheme: {
|
2
|
+
DANGER: {
|
3
|
+
color: string;
|
4
|
+
point: {
|
5
|
+
width: number;
|
6
|
+
color: string;
|
7
|
+
};
|
8
|
+
stroke: {
|
9
|
+
width: number;
|
10
|
+
color: string;
|
11
|
+
opacity: number;
|
12
|
+
};
|
13
|
+
fill: {
|
14
|
+
color: string;
|
15
|
+
opacity: number;
|
16
|
+
};
|
17
|
+
axisLine: {
|
18
|
+
color: string;
|
19
|
+
width: number;
|
20
|
+
opacity: number;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
STRONG: {
|
24
|
+
color: string;
|
25
|
+
point: {
|
26
|
+
width: number;
|
27
|
+
color: string;
|
28
|
+
};
|
29
|
+
stroke: {
|
30
|
+
width: number;
|
31
|
+
color: string;
|
32
|
+
opacity: number;
|
33
|
+
};
|
34
|
+
fill: {
|
35
|
+
color: string;
|
36
|
+
opacity: number;
|
37
|
+
};
|
38
|
+
axisLine: {
|
39
|
+
color: string;
|
40
|
+
width: number;
|
41
|
+
opacity: number;
|
42
|
+
};
|
43
|
+
};
|
44
|
+
WARNING: {
|
45
|
+
color: string;
|
46
|
+
point: {
|
47
|
+
width: number;
|
48
|
+
color: string;
|
49
|
+
};
|
50
|
+
stroke: {
|
51
|
+
width: number;
|
52
|
+
color: string;
|
53
|
+
opacity: number;
|
54
|
+
};
|
55
|
+
fill: {
|
56
|
+
color: string;
|
57
|
+
opacity: number;
|
58
|
+
};
|
59
|
+
axisLine: {
|
60
|
+
color: string;
|
61
|
+
width: number;
|
62
|
+
opacity: number;
|
63
|
+
};
|
64
|
+
};
|
65
|
+
SUCCESS: {
|
66
|
+
color: string;
|
67
|
+
point: {
|
68
|
+
width: number;
|
69
|
+
color: string;
|
70
|
+
};
|
71
|
+
stroke: {
|
72
|
+
width: number;
|
73
|
+
color: string;
|
74
|
+
opacity: number;
|
75
|
+
};
|
76
|
+
fill: {
|
77
|
+
color: string;
|
78
|
+
opacity: number;
|
79
|
+
};
|
80
|
+
axisLine: {
|
81
|
+
color: string;
|
82
|
+
width: number;
|
83
|
+
opacity: number;
|
84
|
+
};
|
85
|
+
};
|
86
|
+
INFO: {
|
87
|
+
color: string;
|
88
|
+
point: {
|
89
|
+
width: number;
|
90
|
+
color: string;
|
91
|
+
};
|
92
|
+
stroke: {
|
93
|
+
width: number;
|
94
|
+
color: string;
|
95
|
+
opacity: number;
|
96
|
+
};
|
97
|
+
fill: {
|
98
|
+
color: string;
|
99
|
+
opacity: number;
|
100
|
+
};
|
101
|
+
axisLine: {
|
102
|
+
color: string;
|
103
|
+
width: number;
|
104
|
+
opacity: number;
|
105
|
+
};
|
106
|
+
};
|
107
|
+
PRIMARY: {
|
108
|
+
color: string;
|
109
|
+
point: {
|
110
|
+
width: number;
|
111
|
+
color: string;
|
112
|
+
};
|
113
|
+
stroke: {
|
114
|
+
width: number;
|
115
|
+
color: string;
|
116
|
+
opacity: number;
|
117
|
+
};
|
118
|
+
fill: {
|
119
|
+
color: string;
|
120
|
+
opacity: number;
|
121
|
+
};
|
122
|
+
axisLine: {
|
123
|
+
color: string;
|
124
|
+
width: number;
|
125
|
+
opacity: number;
|
126
|
+
};
|
127
|
+
};
|
128
|
+
};
|
@@ -0,0 +1,111 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
boundary: {
|
3
|
+
required: boolean;
|
4
|
+
type: import('vue').PropType<import('../props').Boundary>;
|
5
|
+
default: () => void;
|
6
|
+
};
|
7
|
+
minValue: {
|
8
|
+
required: boolean;
|
9
|
+
type: NumberConstructor;
|
10
|
+
};
|
11
|
+
maxValue: {
|
12
|
+
required: boolean;
|
13
|
+
type: NumberConstructor;
|
14
|
+
};
|
15
|
+
maxAmount: {
|
16
|
+
required: boolean;
|
17
|
+
type: NumberConstructor;
|
18
|
+
};
|
19
|
+
activeLineParams: {
|
20
|
+
type: ObjectConstructor;
|
21
|
+
};
|
22
|
+
data: {
|
23
|
+
required: boolean;
|
24
|
+
type: import('vue').PropType<import('../props').PointValue[]>;
|
25
|
+
default: () => never[];
|
26
|
+
};
|
27
|
+
className: {
|
28
|
+
type: import('vue').PropType<string>;
|
29
|
+
};
|
30
|
+
smooth: {
|
31
|
+
default: boolean;
|
32
|
+
type: BooleanConstructor;
|
33
|
+
};
|
34
|
+
stroke: {
|
35
|
+
default: boolean;
|
36
|
+
type: BooleanConstructor;
|
37
|
+
};
|
38
|
+
fill: {
|
39
|
+
default: boolean;
|
40
|
+
type: BooleanConstructor;
|
41
|
+
};
|
42
|
+
showPoints: {
|
43
|
+
default: boolean;
|
44
|
+
type: BooleanConstructor;
|
45
|
+
};
|
46
|
+
theme: {
|
47
|
+
type: import('vue').PropType<import('../props').CurveTheme>;
|
48
|
+
};
|
49
|
+
mainTheme: {
|
50
|
+
type: import('vue').PropType<import('../props').CurveTheme>;
|
51
|
+
};
|
52
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
53
|
+
boundary: {
|
54
|
+
required: boolean;
|
55
|
+
type: import('vue').PropType<import('../props').Boundary>;
|
56
|
+
default: () => void;
|
57
|
+
};
|
58
|
+
minValue: {
|
59
|
+
required: boolean;
|
60
|
+
type: NumberConstructor;
|
61
|
+
};
|
62
|
+
maxValue: {
|
63
|
+
required: boolean;
|
64
|
+
type: NumberConstructor;
|
65
|
+
};
|
66
|
+
maxAmount: {
|
67
|
+
required: boolean;
|
68
|
+
type: NumberConstructor;
|
69
|
+
};
|
70
|
+
activeLineParams: {
|
71
|
+
type: ObjectConstructor;
|
72
|
+
};
|
73
|
+
data: {
|
74
|
+
required: boolean;
|
75
|
+
type: import('vue').PropType<import('../props').PointValue[]>;
|
76
|
+
default: () => never[];
|
77
|
+
};
|
78
|
+
className: {
|
79
|
+
type: import('vue').PropType<string>;
|
80
|
+
};
|
81
|
+
smooth: {
|
82
|
+
default: boolean;
|
83
|
+
type: BooleanConstructor;
|
84
|
+
};
|
85
|
+
stroke: {
|
86
|
+
default: boolean;
|
87
|
+
type: BooleanConstructor;
|
88
|
+
};
|
89
|
+
fill: {
|
90
|
+
default: boolean;
|
91
|
+
type: BooleanConstructor;
|
92
|
+
};
|
93
|
+
showPoints: {
|
94
|
+
default: boolean;
|
95
|
+
type: BooleanConstructor;
|
96
|
+
};
|
97
|
+
theme: {
|
98
|
+
type: import('vue').PropType<import('../props').CurveTheme>;
|
99
|
+
};
|
100
|
+
mainTheme: {
|
101
|
+
type: import('vue').PropType<import('../props').CurveTheme>;
|
102
|
+
};
|
103
|
+
}>> & Readonly<{}>, {
|
104
|
+
fill: boolean;
|
105
|
+
data: import('../props').PointValue[];
|
106
|
+
stroke: boolean;
|
107
|
+
smooth: boolean;
|
108
|
+
boundary: import('../props').Boundary;
|
109
|
+
showPoints: boolean;
|
110
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
111
|
+
export default _default;
|
@@ -0,0 +1,55 @@
|
|
1
|
+
import { VNode } from 'vue';
|
2
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
3
|
+
boundary: {
|
4
|
+
required: boolean;
|
5
|
+
type: import('vue').PropType<import('../props').Boundary>;
|
6
|
+
default: () => void;
|
7
|
+
};
|
8
|
+
verticalLines: {
|
9
|
+
default: boolean;
|
10
|
+
type: BooleanConstructor;
|
11
|
+
};
|
12
|
+
verticalLinesNumber: {
|
13
|
+
default: number;
|
14
|
+
type: NumberConstructor;
|
15
|
+
};
|
16
|
+
horizontalLines: {
|
17
|
+
default: boolean;
|
18
|
+
type: BooleanConstructor;
|
19
|
+
};
|
20
|
+
horizontalLinesNumber: {
|
21
|
+
default: number;
|
22
|
+
type: NumberConstructor;
|
23
|
+
};
|
24
|
+
}>, () => VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
25
|
+
[key: string]: any;
|
26
|
+
}> | null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
27
|
+
boundary: {
|
28
|
+
required: boolean;
|
29
|
+
type: import('vue').PropType<import('../props').Boundary>;
|
30
|
+
default: () => void;
|
31
|
+
};
|
32
|
+
verticalLines: {
|
33
|
+
default: boolean;
|
34
|
+
type: BooleanConstructor;
|
35
|
+
};
|
36
|
+
verticalLinesNumber: {
|
37
|
+
default: number;
|
38
|
+
type: NumberConstructor;
|
39
|
+
};
|
40
|
+
horizontalLines: {
|
41
|
+
default: boolean;
|
42
|
+
type: BooleanConstructor;
|
43
|
+
};
|
44
|
+
horizontalLinesNumber: {
|
45
|
+
default: number;
|
46
|
+
type: NumberConstructor;
|
47
|
+
};
|
48
|
+
}>> & Readonly<{}>, {
|
49
|
+
boundary: import('../props').Boundary;
|
50
|
+
verticalLines: boolean;
|
51
|
+
verticalLinesNumber: number;
|
52
|
+
horizontalLines: boolean;
|
53
|
+
horizontalLinesNumber: number;
|
54
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
55
|
+
export default _default;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { VNode } from 'vue';
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
3
|
+
boundary: import('../props').Boundary;
|
4
|
+
yLabelsTextFormatter: Function;
|
5
|
+
minValue?: number | undefined;
|
6
|
+
maxValue?: number | undefined;
|
7
|
+
xLabels?: unknown[] | undefined;
|
8
|
+
yLabels?: number | undefined;
|
9
|
+
}, () => VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
10
|
+
[key: string]: any;
|
11
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
12
|
+
boundary: import('../props').Boundary;
|
13
|
+
yLabelsTextFormatter: Function;
|
14
|
+
minValue?: number | undefined;
|
15
|
+
maxValue?: number | undefined;
|
16
|
+
xLabels?: unknown[] | undefined;
|
17
|
+
yLabels?: number | undefined;
|
18
|
+
}> & Readonly<{}>, {
|
19
|
+
boundary: import('../props').Boundary;
|
20
|
+
yLabelsTextFormatter: Function;
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
22
|
+
export default _default;
|