@ecan-bi/datav 1.0.53 → 1.0.54
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.es.js +20 -12
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +20 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +3 -3
- package/package.json +1 -1
- package/types/text/proportion/Proportion.vue.d.ts +22 -0
- package/types/text/proportion/index.d.ts +22 -0
- package/types/text/proportion/props.d.ts +12 -0
package/dist/style.css
CHANGED
|
@@ -171,14 +171,14 @@ x-vue-echarts{display:block;width:100%;height:100%}
|
|
|
171
171
|
[datav-theme='darkBlue'] .ecan-list .empty {
|
|
172
172
|
color: #ffffff;
|
|
173
173
|
}
|
|
174
|
-
.ecan-proportion[data-v-
|
|
174
|
+
.ecan-proportion[data-v-f029c988] {
|
|
175
175
|
overflow: hidden;
|
|
176
176
|
}
|
|
177
|
-
.progress[data-v-
|
|
177
|
+
.progress[data-v-f029c988] {
|
|
178
178
|
width: 100%;
|
|
179
179
|
height: 100%;
|
|
180
180
|
}
|
|
181
|
-
.format[data-v-
|
|
181
|
+
.format[data-v-f029c988] {
|
|
182
182
|
margin: 0 auto;
|
|
183
183
|
}
|
|
184
184
|
.input[data-v-506cf42a] {
|
package/package.json
CHANGED
|
@@ -143,6 +143,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
143
143
|
[key: string]: any;
|
|
144
144
|
};
|
|
145
145
|
};
|
|
146
|
+
textDefaultValue: {
|
|
147
|
+
type?: undefined;
|
|
148
|
+
default?: undefined;
|
|
149
|
+
} | {
|
|
150
|
+
type: any;
|
|
151
|
+
default: string | number | boolean | Events | {
|
|
152
|
+
[key: string]: any;
|
|
153
|
+
} | import('../../_utils/props').RequestParams | {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
146
157
|
id: {
|
|
147
158
|
type?: undefined;
|
|
148
159
|
default?: undefined;
|
|
@@ -536,6 +547,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
536
547
|
[key: string]: any;
|
|
537
548
|
};
|
|
538
549
|
};
|
|
550
|
+
textDefaultValue: {
|
|
551
|
+
type?: undefined;
|
|
552
|
+
default?: undefined;
|
|
553
|
+
} | {
|
|
554
|
+
type: any;
|
|
555
|
+
default: string | number | boolean | Events | {
|
|
556
|
+
[key: string]: any;
|
|
557
|
+
} | import('../../_utils/props').RequestParams | {
|
|
558
|
+
[key: string]: any;
|
|
559
|
+
};
|
|
560
|
+
};
|
|
539
561
|
id: {
|
|
540
562
|
type?: undefined;
|
|
541
563
|
default?: undefined;
|
|
@@ -142,6 +142,17 @@ export declare const EcanProportion: import('../../_utils/withInstall').SFCWithI
|
|
|
142
142
|
[key: string]: any;
|
|
143
143
|
};
|
|
144
144
|
};
|
|
145
|
+
textDefaultValue: {
|
|
146
|
+
type?: undefined;
|
|
147
|
+
default?: undefined;
|
|
148
|
+
} | {
|
|
149
|
+
type: any;
|
|
150
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
151
|
+
[key: string]: any;
|
|
152
|
+
} | import("../../_utils/props").RequestParams | {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
145
156
|
id: {
|
|
146
157
|
type?: undefined;
|
|
147
158
|
default?: undefined;
|
|
@@ -535,6 +546,17 @@ export declare const EcanProportion: import('../../_utils/withInstall').SFCWithI
|
|
|
535
546
|
[key: string]: any;
|
|
536
547
|
};
|
|
537
548
|
};
|
|
549
|
+
textDefaultValue: {
|
|
550
|
+
type?: undefined;
|
|
551
|
+
default?: undefined;
|
|
552
|
+
} | {
|
|
553
|
+
type: any;
|
|
554
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
555
|
+
[key: string]: any;
|
|
556
|
+
} | import("../../_utils/props").RequestParams | {
|
|
557
|
+
[key: string]: any;
|
|
558
|
+
};
|
|
559
|
+
};
|
|
538
560
|
id: {
|
|
539
561
|
type?: undefined;
|
|
540
562
|
default?: undefined;
|
|
@@ -15,6 +15,7 @@ export interface ProportionProps extends Props {
|
|
|
15
15
|
strokeTextWidth: string;
|
|
16
16
|
lineHeight: string;
|
|
17
17
|
decimalFormat: boolean;
|
|
18
|
+
textDefaultValue: string;
|
|
18
19
|
}
|
|
19
20
|
export declare const proportionProps: ProportionProps;
|
|
20
21
|
export declare const proportionComponentProps: {
|
|
@@ -161,6 +162,17 @@ export declare const proportionComponentProps: {
|
|
|
161
162
|
[key: string]: any;
|
|
162
163
|
};
|
|
163
164
|
};
|
|
165
|
+
textDefaultValue: {
|
|
166
|
+
type?: undefined;
|
|
167
|
+
default?: undefined;
|
|
168
|
+
} | {
|
|
169
|
+
type: any;
|
|
170
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
171
|
+
[key: string]: any;
|
|
172
|
+
} | import('../../_utils/props').RequestParams | {
|
|
173
|
+
[key: string]: any;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
164
176
|
id: {
|
|
165
177
|
type?: undefined;
|
|
166
178
|
default?: undefined;
|