toggle-components-library 1.24.7 → 1.24.8
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/toggle-components-library.common.js +5517 -8838
- package/dist/toggle-components-library.common.js.map +1 -1
- package/dist/toggle-components-library.css +1 -1
- package/dist/toggle-components-library.umd.js +5517 -8838
- package/dist/toggle-components-library.umd.js.map +1 -1
- package/dist/toggle-components-library.umd.min.js +6 -6
- package/dist/toggle-components-library.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/metrics/ToggleMetricBarChart.vue +6 -5
- package/src/components/metrics/ToggleMetricPieChart.vue +1 -1
- package/src/components/metrics/ToggleMetricSparkLine.vue +3 -0
- package/src/components/mixins/mixins.js +1 -1
- package/src/sass/includes/_as_metrics.scss +2 -2
- package/src/sass/includes/_as_navs.scss +1 -1
package/package.json
CHANGED
package/src/.DS_Store
ADDED
|
Binary file
|
|
@@ -69,7 +69,8 @@ export default {
|
|
|
69
69
|
plotOptions: {
|
|
70
70
|
bar: {
|
|
71
71
|
borderRadius: 5,
|
|
72
|
-
columnWidth: '
|
|
72
|
+
columnWidth: '85%',
|
|
73
|
+
|
|
73
74
|
}
|
|
74
75
|
|
|
75
76
|
},
|
|
@@ -112,17 +113,17 @@ export default {
|
|
|
112
113
|
|
|
113
114
|
colors: this.colors ? this.colors : this.getDefaultColors(),
|
|
114
115
|
legend: {
|
|
115
|
-
horizontalAlign: '
|
|
116
|
-
offsetX: -12,
|
|
116
|
+
horizontalAlign: 'center',
|
|
117
117
|
showForSingleSeries: true,
|
|
118
|
+
fontSize: '16px',
|
|
118
119
|
markers: {
|
|
119
120
|
width: 50,
|
|
121
|
+
height: 12,
|
|
120
122
|
radius: 5,
|
|
121
|
-
offsetY: 3
|
|
122
123
|
},
|
|
123
124
|
|
|
124
125
|
itemMargin: {
|
|
125
|
-
horizontal:
|
|
126
|
+
horizontal: 30,
|
|
126
127
|
vertical: 0
|
|
127
128
|
},
|
|
128
129
|
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
|
|
31
31
|
.funnel-grid-svg {
|
|
32
32
|
min-height: 12rem;
|
|
33
|
-
background: transparent url('../assets/img/funnel.svg') no-repeat padding-box
|
|
34
|
-
background-size: 100%
|
|
33
|
+
background: transparent url('../assets/img/funnel.svg') no-repeat padding-box center;
|
|
34
|
+
background-size: 100% auto;
|
|
35
35
|
grid-row-start: 2;
|
|
36
36
|
grid-column-start: 1;
|
|
37
37
|
grid-row-end: 3;
|