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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toggle-components-library",
3
- "version": "1.24.7",
3
+ "version": "1.24.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
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: '60%',
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: 'left',
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: 5,
126
+ horizontal: 30,
126
127
  vertical: 0
127
128
  },
128
129
 
@@ -68,7 +68,7 @@ export default {
68
68
  style: {
69
69
  colors: [this.getColor('black')],
70
70
  fontSize: '1rem',
71
- fontWeight: 300
71
+ fontWeight: 'bold'
72
72
  },
73
73
  background: {
74
74
  enabled: false,
@@ -136,6 +136,9 @@ export default {
136
136
  },
137
137
  stroke: {
138
138
  width: 5,
139
+ curve: 'smooth',
140
+ lineCap: 'butt',
141
+
139
142
  },
140
143
  grid: {
141
144
  padding: {
@@ -126,7 +126,7 @@ export const charts = {
126
126
 
127
127
  // If all values in the values array are 0 return 0;
128
128
  if (values.every((val) => val === 0)){
129
- return 0;
129
+ return false;
130
130
  }
131
131
 
132
132
  let sum = 0
@@ -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 bottom;
34
- background-size: 100% 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;
@@ -140,7 +140,7 @@
140
140
  min-height: 100vh;
141
141
 
142
142
  .toggle-multi-tier-sidenav-logo {
143
- max-width: 6rem;
143
+ max-width: 5rem;
144
144
  margin: 1rem 0 1rem 0.6rem;
145
145
  }
146
146