sass-list-maps 0.9.5 → 0.9.6
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 +4 -4
- data/README.md +1 -1
- data/_sass-list-maps.scss +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ce46a31a81da5480c8851bbf97d2f27355dfec9
|
4
|
+
data.tar.gz: 041ec592adb9c6db306ac6e7adf6df10f42cde24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cd2555c74e76a17bacfdd8bc426dc97543d295e3df25be143d056867520ea16ab5674d7adf1fca8fe95df84e044983b7e4b6ffc5fefb894a6030f34125d9cbe
|
7
|
+
data.tar.gz: 4a592d308066c0f83e6c207552157e6d85ab3af9a4e38b4d62ebbeaded1252d19faea2212696ba624405629fe0a5c968a7061caa9787e302fa65f0aaa34ac7bd
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Forward-compatible map (hash) functionality for [libsass](https://github.com/hca
|
|
7
7
|
###### Latest Updates
|
8
8
|
|
9
9
|
* 0.9.5 -- now handles single-pair lists automatically. This means no more need for `list()` or `zip()` functions, which are now deprecated.
|
10
|
-
* 0.9.3 -- <del>deprecated `list()` function in favor of native `zip()` for creating single-pair list-maps</del>
|
10
|
+
* 0.9.3 -- <del>deprecated `list()` function in favor of native `zip()` for creating single-pair list-maps</del>
|
11
11
|
* 0.9.2 -- improved merge performance with rewritten `set-nth()` function
|
12
12
|
* 0.9.2 -- included `get()`, `merge()`, and `set()` aliases by default
|
13
13
|
* now listed at the [sache.in](http://www.sache.in/) directory of Sass & Compass Extensions
|
data/_sass-list-maps.scss
CHANGED
@@ -122,9 +122,9 @@
|
|
122
122
|
|
123
123
|
// aliases added as of 0.9.2: unify and replace map-*() and map-*-z() variants
|
124
124
|
|
125
|
-
@function get($args...) { @return
|
126
|
-
@function merge($args...) { @return
|
127
|
-
@function set($args...) { @return
|
125
|
+
@function get($args...) { @return map-get-z($args...); }
|
126
|
+
@function merge($args...) { @return map-merge-z($args...); }
|
127
|
+
@function set($args...) { @return map-merge-z($args...); }
|
128
128
|
|
129
129
|
// new as of 0.9.5: map-inspect()
|
130
130
|
// experimental
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-list-maps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lu Nelson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: compass
|