beyond-rails 0.0.195 → 0.0.200

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 789ec155be6f8c0964f3eeb815206dd41071ce22a9c51ee90b855b51ef53f1d7
4
- data.tar.gz: f2529da5850fddc43bd4a4ceb8a3b27e6497e9e6e408cc881725edcd9613448a
3
+ metadata.gz: 90b290525546bec1ffa0d4ee65b86a698f563669f9ce2e165a8ec622dd5b9531
4
+ data.tar.gz: 94061c757c884606642e8e50cb99068622847e01eb10996ac7027d80dc1a44b2
5
5
  SHA512:
6
- metadata.gz: 9b7ac625f3d7e9a6ee4308c624f1540ca79cd0610db86dc37e7dd8ce4e574d57c3718d22ab97a3406679cff17dd3dac023c4ea9e843d51bac0a725debdae21a6
7
- data.tar.gz: bda148369234a2e81bfc04e91be587ece36dd9f92308a677a36d420563207312dd53fa20d4b310dd7a8434a95da74a775e7fd4a095508f34dc62dc646537427f
6
+ metadata.gz: 2e7ccd34afc77cc5bc34eb9e443aa08ba7d502b909edc3e7a69eafa7bbbe70a54218b5c858bc42a21e54e2065f8d017c425ea196df0f0f001516fd27766c1419
7
+ data.tar.gz: 6f1b0e4a4457eb315d712f466828936cb5eeb0e6d0746f4de21657a9399fe12b32d8abf9353eb99c18f113a234b50f556fc14cb04d00cfcca4cdf4ee2d2cb21c
@@ -20,7 +20,7 @@ export default class BarChart {
20
20
  this.options = options
21
21
  this.bars = []
22
22
 
23
- this.height = options.height || 186
23
+ this.height = options.height
24
24
  this.width = options.width
25
25
 
26
26
  this.toYLabel = isDef(options.toYLabel) ? mem(options.toYLabel) : (v => v)
@@ -46,7 +46,7 @@ export default class BarChart {
46
46
 
47
47
  init() {
48
48
  this.setDpr()
49
- this.setDomWidthIfNeeded()
49
+ this.setDomSizeIfNeeded()
50
50
  this.setCanvas()
51
51
  this.clear()
52
52
  this.bindMedia()
@@ -342,7 +342,7 @@ export default class BarChart {
342
342
  refresh() {
343
343
  this.raf(() => {
344
344
  this.clearBarPos()
345
- this.setDomWidthIfNeeded()
345
+ this.setDomSizeIfNeeded()
346
346
  this.setCanvasSize(this.canvas)
347
347
  this.setLabelWidths()
348
348
  this.setLabelHeights()
@@ -41,7 +41,7 @@ export default class LineChart {
41
41
  this.dom = dom
42
42
  this.options = options
43
43
  this.pointsArr = []
44
- this.height = options.height || 150
44
+ this.height = options.height
45
45
  this.width = options.width
46
46
 
47
47
  this.toXLabel = isDef(options.toXLabel) ? mem(options.toXLabel) : (v => v)
@@ -76,7 +76,7 @@ export default class LineChart {
76
76
 
77
77
  init() {
78
78
  this.setDpr()
79
- this.setDomWidthIfNeeded()
79
+ this.setDomSizeIfNeeded()
80
80
  this.setCanvas()
81
81
  this.clear()
82
82
  this.bindMedia()
@@ -438,7 +438,7 @@ export default class LineChart {
438
438
  refresh() {
439
439
  this.raf(() => {
440
440
  this.clearPointPos()
441
- this.setDomWidthIfNeeded()
441
+ this.setDomSizeIfNeeded()
442
442
  this.setCanvasSize(this.canvas)
443
443
  this.layers.forEach(layer => this.setCanvasSize(layer.canvas))
444
444
  this.setLabelWidths()
@@ -205,10 +205,13 @@ export default function chartCommon(target) {
205
205
  canvas.getContext('2d').scale(dpr, dpr)
206
206
  }
207
207
 
208
- setDomWidthIfNeeded() {
208
+ setDomSizeIfNeeded() {
209
209
  if (isUndef(this.options.width)) {
210
210
  this.width = this.dom.offsetWidth
211
211
  }
212
+ if (isUndef(this.options.height)) {
213
+ this.height = this.dom.offsetHeight
214
+ }
212
215
  }
213
216
 
214
217
  setDpr() {
@@ -122,13 +122,13 @@ $color-active: #5469d4;
122
122
  }
123
123
 
124
124
  .align-left {
125
- text-align: left;
125
+ text-align: left !important;
126
126
  }
127
127
  .align-right {
128
- text-align: right;
128
+ text-align: right !important;
129
129
  }
130
130
  .align-center {
131
- text-align: center;
131
+ text-align: center !important;
132
132
  }
133
133
 
134
134
  .sr-only {
@@ -2,6 +2,7 @@
2
2
  outline: 0;
3
3
  background-color: #fff;
4
4
  display: inline-flex;
5
+ justify-content: center;
5
6
  align-items: center;
6
7
  border: 0;
7
8
  padding: 6px 12px 7px;
@@ -220,7 +220,7 @@ label {
220
220
  font-size: 80%;
221
221
  margin-top: .35rem;
222
222
  &:before {
223
- font-family: 'icomoon';
223
+ font-family: $beyond-icon-font-name;
224
224
  display: inline-block;
225
225
  }
226
226
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beyond-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.195
4
+ version: 0.0.200
5
5
  platform: ruby
6
6
  authors:
7
7
  - kmsheng
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-09-16 00:00:00.000000000 Z
12
+ date: 2020-09-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sassc