@fxlt/common-ui 0.0.5-rc1 → 0.0.5-rc2
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/components.css
CHANGED
|
@@ -162,6 +162,9 @@ input[type='password'] {
|
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
/* system style */
|
|
165
|
+
.txt-heading-02 {
|
|
166
|
+
@apply font-semibold text-4xl tracking-normal leading-10 text-text-primary;
|
|
167
|
+
}
|
|
165
168
|
.txt-heading-03 {
|
|
166
169
|
@apply font-semibold text-3xl tracking-normal leading-10 text-text-primary;
|
|
167
170
|
}
|
|
@@ -1499,6 +1499,7 @@ class ChartComponent {
|
|
|
1499
1499
|
avoidLabelOverlap: true,
|
|
1500
1500
|
data,
|
|
1501
1501
|
label: {
|
|
1502
|
+
show: this.showPieLabel,
|
|
1502
1503
|
//{a} Series name
|
|
1503
1504
|
//{b} Data name (slice label)
|
|
1504
1505
|
//{c} Data value
|
|
@@ -1527,6 +1528,23 @@ class ChartComponent {
|
|
|
1527
1528
|
},
|
|
1528
1529
|
},
|
|
1529
1530
|
],
|
|
1531
|
+
media: [
|
|
1532
|
+
{
|
|
1533
|
+
query: { maxWidth: 480 },
|
|
1534
|
+
option: {
|
|
1535
|
+
legend: {
|
|
1536
|
+
orient: 'horizontal',
|
|
1537
|
+
left: 'center',
|
|
1538
|
+
bottom: 0,
|
|
1539
|
+
},
|
|
1540
|
+
series: [
|
|
1541
|
+
{
|
|
1542
|
+
center: ['50%', '40%'],
|
|
1543
|
+
},
|
|
1544
|
+
],
|
|
1545
|
+
},
|
|
1546
|
+
},
|
|
1547
|
+
],
|
|
1530
1548
|
graphic: {
|
|
1531
1549
|
type: 'group',
|
|
1532
1550
|
left: '40%',
|