oulu 0.12.27 → 0.12.28

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 435328fcbc6585178506673bfb7682e4be7ced75
4
- data.tar.gz: 01ea72f1c2d6154a515a494ca759d776ad26704c
3
+ metadata.gz: a356e6ac717b19b27a6cb0c76a6301b25c69da5c
4
+ data.tar.gz: acbcdd4af7d09a6f788f2246dddc9551733ec245
5
5
  SHA512:
6
- metadata.gz: bcb3906e0e1655a5fee5b95e2546b744a08202a7a4ee7bfbaeeec4991a022682eba5e10b438c0f227df01c0104d5bff4b390724bfe98315132f01acf3233646d
7
- data.tar.gz: 360d70242d2440b2835dd60d42e074a2d600bba5c405e35f927c8d42cbb2a77472af5102c77c56b0140f9ef570fb98acb0a2f6d5b67d943ae4b3eb9b03397942
6
+ metadata.gz: 66af1ec528b756843fd6d28d345bb50c9f56e6c6c0e57341623a30b3f24b7a885cdf305cd75580b6854f83dd5cad778e39bf2000ac0a7c7cfcb2e72b7c50471c
7
+ data.tar.gz: d18f2bace99f63522f6f6e6e2bf5857eead50708d6fd97fc881392e0f14c809eb1a9057e3046579f9f9e824e09923a2b473a799830d70ff10435779372462a47
@@ -41,15 +41,15 @@
41
41
  @return null
42
42
 
43
43
  @function flex($values...)
44
- @if length($value) > 3
44
+ @if length($values) > 3
45
45
  @return null
46
46
  @else
47
- @if flex-grow(nth($value, 1))
48
- @if length($value) = 3
49
- @if flex-shrink(nth($value, 2)) and flex-flex-basis(nth($value, 3))
47
+ @if flex-grow(nth($values, 1))
48
+ @if length($values) == 3
49
+ @if flex-shrink(nth($values, 2)) and flex-flex-basis(nth($values, 3))
50
50
  @return true
51
- @else if length($value) = 2
52
- @if flex-shrink(nth($value, 2))
51
+ @else if length($values) == 2
52
+ @if flex-shrink(nth($values, 2))
53
53
  @return true
54
54
  @else
55
55
  @return true
@@ -57,12 +57,12 @@
57
57
  @return null
58
58
 
59
59
  @function flex-flow($values...)
60
- @if length($value) > 2
60
+ @if length($values) > 2
61
61
  @return null
62
62
  @else
63
- @if flex-direction(nth($value, 1))
64
- @if length($value) = 2
65
- @if flex-wrap(nth($value, 2))
63
+ @if flex-direction(nth($values, 1))
64
+ @if length($values) == 2
65
+ @if flex-wrap(nth($values, 2))
66
66
  @return true
67
67
  @else
68
68
  @return true
@@ -14,7 +14,7 @@
14
14
 
15
15
  // $n以下のときにtrue
16
16
  @function or_less_nth($value, $n)
17
- @if length($value) =< $n
17
+ @if length($value) <= $n
18
18
  @return true
19
19
  @else
20
20
  @return null
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oulu",
3
- "version": "0.12.27",
3
+ "version": "0.12.28",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
data/lib/oulu/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oulu
2
- VERSION = "0.12.27"
2
+ VERSION = "0.12.28"
3
3
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oulu",
3
- "version": "0.12.27",
3
+ "version": "0.12.28",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oulu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.27
4
+ version: 0.12.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida