flint-gs 2.3.5 → 2.3.6
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04ab8c5b406e1036194b2eb4e90958a8c07f79bb
|
4
|
+
data.tar.gz: f5db48383b53f3114d11c94bc18ff5a64b1aada4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69036ec25b836fcc4eff89344d1c045639eb7d2f6ffd7777fd0fe25fc309becdc2a2b66d47e7e81326f54308f879f83ab6a8450fe161c0770bc35ff7b13b801d
|
7
|
+
data.tar.gz: 0baee9a78d8cfae3b93179097ed462cb0804a0696d4fe55ad851650ee29e66096002522597aabcf4e2d0865bdbe544bf2848b8caba8c85fc088a8ea8e5fdcaf8
|
data/lib/flint/version.rb
CHANGED
@@ -62,7 +62,7 @@
|
|
62
62
|
|
63
63
|
// Save result to cache
|
64
64
|
@if $context != "auto" {
|
65
|
-
$flint-cached-values: map-merge($flint-cached-values, ("#{$key, $span, $context, $deduct}::width": $result));
|
65
|
+
$flint-cached-values: map-merge($flint-cached-values, ("#{$key, $span, $context, $deduct}::width": $result)) !global;
|
66
66
|
}
|
67
67
|
|
68
68
|
// Return result
|
@@ -38,7 +38,7 @@
|
|
38
38
|
@if map-has-key($flint-instances, "#{flint-last($parsed-selector)}::#{$key}") {
|
39
39
|
|
40
40
|
// Cache result
|
41
|
-
$flint-cached-instances: map-merge($flint-cached-instances, ("#{$selector}": "#{flint-last($parsed-selector)}"));
|
41
|
+
$flint-cached-instances: map-merge($flint-cached-instances, ("#{$selector}": "#{flint-last($parsed-selector)}")) !global;
|
42
42
|
|
43
43
|
// Return the matching instance key
|
44
44
|
@return "#{flint-last($parsed-selector)}::#{$key}";
|
@@ -66,7 +66,7 @@
|
|
66
66
|
@if map-has-key($flint-instances, "#{$selector-string}::#{$key}") and $selector != $selector-list {
|
67
67
|
|
68
68
|
// Cache result
|
69
|
-
$flint-cached-instances: map-merge($flint-cached-instances, ("#{$selector}": "#{$selector-string}"));
|
69
|
+
$flint-cached-instances: map-merge($flint-cached-instances, ("#{$selector}": "#{$selector-string}")) !global;
|
70
70
|
|
71
71
|
// Return the matching instance key
|
72
72
|
@return "#{$selector-string}::#{$key}";
|