bourbon 4.3.2 → 4.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/app/assets/stylesheets/_bourbon.scss +1 -1
- data/app/assets/stylesheets/addons/_size.scss +5 -0
- data/app/assets/stylesheets/functions/_is-size.scss +5 -0
- data/bower.json +1 -1
- data/lib/bourbon/version.rb +1 -1
- data/package.json +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4dd5f41a77dc5547dc3f9df3ce3c0e69cd6a47af
|
4
|
+
data.tar.gz: fff13411382760806e8c2cc5fd4e4802ae9b7427
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80928aaf1bcb04d012f3aa894290bcfafbb8bc94c74392987c0ae98817adb112bc65962bec9b3c412d5f349cc341516d435e81b023240df4e7016038c4126936
|
7
|
+
data.tar.gz: a28d12f4073f0686dccedae22811b081ddc58e23b6cd34a9b4a1562a8dd0e24e8d4a9d8fd818be29a4436e38112699c7774624e342b2f319d4a6d02c6291a265
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,13 @@
|
|
3
3
|
All notable changes to this project will be documented in this file. This
|
4
4
|
project adheres to [Semantic Versioning](http://semver.org).
|
5
5
|
|
6
|
+
## 4.3.3 - 2017-02-23
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- Internal Bourbon deprecation warnings for `is-size` and `is-length` will no
|
11
|
+
longer be thrown when using the `size` mixin.
|
12
|
+
|
6
13
|
## 4.3.2 - 2017-02-10
|
7
14
|
|
8
15
|
### Fixed
|
@@ -37,6 +37,9 @@
|
|
37
37
|
$height: nth($value, 2);
|
38
38
|
}
|
39
39
|
|
40
|
+
$user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
|
41
|
+
$output-bourbon-deprecation-warnings: false !global;
|
42
|
+
|
40
43
|
@if is-size($height) {
|
41
44
|
height: $height;
|
42
45
|
} @else {
|
@@ -48,4 +51,6 @@
|
|
48
51
|
} @else {
|
49
52
|
@warn "`#{$width}` is not a valid length for the `$width` parameter in the `size` mixin.";
|
50
53
|
}
|
54
|
+
|
55
|
+
$output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
|
51
56
|
}
|
@@ -13,6 +13,11 @@
|
|
13
13
|
"removed in 5.0.0.";
|
14
14
|
}
|
15
15
|
|
16
|
+
$user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
|
17
|
+
$output-bourbon-deprecation-warnings: false !global;
|
18
|
+
|
16
19
|
@return is-length($value)
|
17
20
|
or contains("fill" "fit-content" "min-content" "max-content", $value);
|
21
|
+
|
22
|
+
$output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
|
18
23
|
}
|
data/bower.json
CHANGED
data/lib/bourbon/version.rb
CHANGED
data/package.json
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bourbon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.3.
|
4
|
+
version: 4.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andres Mejia
|
@@ -22,7 +22,7 @@ authors:
|
|
22
22
|
autorequire:
|
23
23
|
bindir: bin
|
24
24
|
cert_chain: []
|
25
|
-
date: 2017-02-
|
25
|
+
date: 2017-02-23 00:00:00.000000000 Z
|
26
26
|
dependencies:
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: sass
|
@@ -341,7 +341,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
341
341
|
version: '0'
|
342
342
|
requirements: []
|
343
343
|
rubyforge_project:
|
344
|
-
rubygems_version: 2.5.
|
344
|
+
rubygems_version: 2.5.2
|
345
345
|
signing_key:
|
346
346
|
specification_version: 4
|
347
347
|
summary: A simple and lightweight mixin library for Sass
|