@byteluck-fe/model-driven-controls 7.0.0-props.102 → 7.0.0-props.103
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/esm/baseControls/BarChart/designer.js +4 -4
- package/dist/esm/baseControls/BarChart/property.js +18 -17
- package/dist/esm/baseControls/LineChart/designer.js +4 -4
- package/dist/esm/baseControls/LineChart/property.js +18 -17
- package/dist/esm/baseControls/PieChart/designer.js +4 -4
- package/dist/esm/baseControls/PieChart/property.js +16 -15
- package/dist/index.umd.js +1 -1
- package/dist/types/baseControls/BarChart/property.d.ts +7 -0
- package/dist/types/baseControls/LineChart/property.d.ts +7 -0
- package/dist/types/baseControls/PieChart/property.d.ts +7 -0
- package/package.json +2 -2
|
@@ -30,6 +30,12 @@ interface BarChartPropertyInterface extends PropertyInterface {
|
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
32
|
isShowCaptionTip: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* 标题布局;取值:top:上方;left:左侧;
|
|
35
|
+
* @defaultValue 'top'
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
labelPosition: 'top' | 'left';
|
|
33
39
|
/**
|
|
34
40
|
* 气泡提示语
|
|
35
41
|
* @defaultValue ''
|
|
@@ -143,6 +149,7 @@ declare class BarChartProperty extends Property implements BarChartPropertyInter
|
|
|
143
149
|
caption: string;
|
|
144
150
|
isHideCaption: boolean;
|
|
145
151
|
isShowCaptionTip: boolean;
|
|
152
|
+
labelPosition: 'top' | 'left';
|
|
146
153
|
captionTip: string;
|
|
147
154
|
captionSize: string;
|
|
148
155
|
captionColor: string;
|
|
@@ -33,6 +33,12 @@ interface LineChartPropertyInterface extends PropertyInterface {
|
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
35
|
isShowCaptionTip: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* 标题布局;取值:top:上方;left:左侧;
|
|
38
|
+
* @defaultValue 'top'
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
labelPosition: 'top' | 'left';
|
|
36
42
|
/**
|
|
37
43
|
* 气泡提示语
|
|
38
44
|
* @defaultValue ''
|
|
@@ -146,6 +152,7 @@ declare class LineChartProperty extends Property implements LineChartPropertyInt
|
|
|
146
152
|
caption: string;
|
|
147
153
|
isHideCaption: boolean;
|
|
148
154
|
isShowCaptionTip: boolean;
|
|
155
|
+
labelPosition: 'top' | 'left';
|
|
149
156
|
captionTip: string;
|
|
150
157
|
captionSize: string;
|
|
151
158
|
captionColor: string;
|
|
@@ -24,6 +24,12 @@ interface PieChartPropertyInterface extends PropertyInterface {
|
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
26
|
isShowCaptionTip: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* 标题布局;取值:top:上方;left:左侧;
|
|
29
|
+
* @defaultValue 'top'
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
labelPosition: 'top' | 'left';
|
|
27
33
|
/**
|
|
28
34
|
* 气泡提示语
|
|
29
35
|
* @defaultValue ''
|
|
@@ -125,6 +131,7 @@ declare class PieChartProperty extends Property implements PieChartPropertyInter
|
|
|
125
131
|
caption: string;
|
|
126
132
|
isHideCaption: boolean;
|
|
127
133
|
isShowCaptionTip: boolean;
|
|
134
|
+
labelPosition: 'top' | 'left';
|
|
128
135
|
captionTip: string;
|
|
129
136
|
captionSize: string;
|
|
130
137
|
captionColor: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "7.0.0-props.
|
|
3
|
+
"version": "7.0.0-props.103",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"@byteluck-fe/model-driven-shared": "7.0.0-props.101",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "ef8434f5693d1f0ab169af4b47bafa5a89a6539f"
|
|
35
35
|
}
|