gerillass 1.2.3 → 1.2.7

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.
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "author": "Halil İbrahim Çakıroğlu",
7
7
  "main": "scss/_gerillass.scss",
8
8
  "license": "Apache-2.0",
9
- "version": "1.2.3",
9
+ "version": "1.2.7",
10
10
  "repository": {
11
11
  "type": "git",
12
12
  "url": "https://github.com/selfishprimate/gerillass"
@@ -40,10 +40,11 @@
40
40
  "test": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "glob": "^7.1.6",
44
- "jest": "^26.1.0",
45
- "node-sass": "^4.14.1",
46
- "sass-true": "^5.0.0"
43
+ "glob": "^7.2.0",
44
+ "jest": "^27.5.1",
45
+ "sass": "^1.49.7",
46
+ "sass-loader": "^12.5.0",
47
+ "sass-true": "^6.0.1"
47
48
  },
48
49
  "devDependencies": {
49
50
  "gulp": "^4.0.2",
@@ -807,7 +807,7 @@
807
807
  backface-visibility: visible;
808
808
  }
809
809
  }
810
- .loadify-static-rules {
810
+ %loadify {
811
811
  opacity: 0;
812
812
  visibility: hidden;
813
813
  backface-visibility: hidden;
@@ -820,7 +820,7 @@
820
820
  @error "Only one argument is allowed when you call this mixin at the root of your stylesheet! Please pass `init` as an argument to initialize the effect or do not pass any argument at all.";
821
821
  }
822
822
  } @else if & {
823
- @extend .loadify-static-rules;
823
+ @extend %loadify;
824
824
  @if length($params) == 0 {
825
825
  animation-delay: 0.2s;
826
826
  animation-duration: 0.5s;
@@ -10,7 +10,7 @@
10
10
  backface-visibility: visible;
11
11
  }
12
12
  }
13
- .loadify-static-rules {
13
+ %loadify {
14
14
  opacity: 0;
15
15
  visibility: hidden;
16
16
  backface-visibility: hidden;
@@ -23,7 +23,7 @@
23
23
  @error "Only one argument is allowed when you call this mixin at the root of your stylesheet! Please pass `init` as an argument to initialize the effect or do not pass any argument at all.";
24
24
  }
25
25
  } @else if & {
26
- @extend .loadify-static-rules;
26
+ @extend %loadify;
27
27
  @if length($params) == 0 {
28
28
  animation-delay: 0.2s;
29
29
  animation-duration: 0.5s;
package/CHANGELOG.md DELETED
@@ -1,64 +0,0 @@
1
- # Changelog
2
- _Change is the essence._
3
-
4
- ## 1.2.3
5
-
6
- ### Added
7
-
8
- - Added `__isTime` function to validate the time values.
9
-
10
- ### Updated
11
-
12
- - Loadify mixin has been refactored.
13
-
14
- ## 1.2.2
15
-
16
- ### Changed
17
-
18
- - Improved Loadify mixin. The `init` argument is now available to initialize the mixin at the root level of stylesheet.
19
-
20
- ### Removed
21
-
22
- - Removed `.travis.yml` file. Travis CI integration no longer available.
23
-
24
- ## 1.2.1
25
-
26
- ### Added
27
-
28
- - The `extend` directive has been added to use Loadify mixin for multiple selectors.
29
-
30
- ## 1.2.0
31
-
32
- ### Added
33
-
34
- - Added Loadify: A new mixin to help page elements render more natural during the time of page loads.
35
-
36
- ## 1.1.3
37
-
38
- ### Added
39
-
40
- - Added box-sizing property to Columnizer mixin.
41
-
42
- ## 1.1.2
43
-
44
- ### Updated
45
-
46
- - Uptade for security vulnerabilities.
47
-
48
- ## 1.1.1
49
-
50
- ### Fixed
51
-
52
- - Bugfix for a comment.
53
-
54
- ## 1.1.0
55
-
56
- ### Removed
57
-
58
- - Remove all the `gls-` prefixes from the mixin files under the `library` folder and make prefix usage optional (`gls-` prefix still can ben use).
59
-
60
- ## 0.0.1
61
-
62
- ### Added
63
-
64
- - Changelog created!