sass-zero 1.3.0 → 1.3.1

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
  SHA256:
3
- metadata.gz: b7ebc6d459fe63526c843f3d2d0fd1b9623ae8a483f8d34d4c5f48ffba0a07ee
4
- data.tar.gz: 94aeedd8ddbfaae27157f6b22810d54e70f811c64f42934a4d35139b4989587b
3
+ metadata.gz: 669ee902b4728f9a5f9b1457f3025001cd28090849453e443be8ddf0dc01973c
4
+ data.tar.gz: b1b454f558ab362219ffa2d9752e11f34417692e7e2421688798d37abdb175ad
5
5
  SHA512:
6
- metadata.gz: '009d8b25d79f018878e725bdcf66006c48967b57074ccdd0081fb715dbca30a27224c8b2ef5ce51f06ade5ed02da864460818a6c363c2bce09faa54a67014e29'
7
- data.tar.gz: aa6d4b392b5f08cdd47d92452f8a09ad13f6885bec2a7401caaaa0e6a216aa2b058ddbde685dd55ecb58615ded6c0d346d507f3645280cc4a36652a708e492fc
6
+ metadata.gz: 793557acb4df0cce7454628eb3f428a937dc991ba666d2ebcc06c9236e6abb87aa9657cf101fd15b30c08d86fea8a958538764942b7e4acf9a929a68c845616f
7
+ data.tar.gz: 28b68629357d86a7d436ea2ad7153f050abdfbcead3288e94f8b1a2231a566a45654cafecc070370eabbcb08df7703cd32f19d03f8f3eae5dca71426dbfb23da
@@ -725,7 +725,37 @@ $z-50: 50;
725
725
  @mixin antialiased {}
726
726
  @mixin subpixel-antialiased {}
727
727
  @mixin progress-bar {}
728
+
729
+ // *******************************************************************
730
+ // Animations
731
+ // *******************************************************************
732
+
728
733
  @mixin animate-spin {}
729
734
  @mixin animate-ping {}
730
735
  @mixin animate-pulse {}
731
736
  @mixin animate-bounce {}
737
+ @mixin animate-pop-open {}
738
+ @mixin animate-appear {}
739
+ @mixin animate-fade-out {}
740
+ @mixin animate-fade-in-out {}
741
+ @mixin animate-appear-then-fade {}
742
+ @mixin animate-appear-then-fade-extended {}
743
+ @mixin animate-slide-up-then-down {}
744
+ @mixin animate-wiggle {}
745
+ @mixin animate-fade-in-up {}
746
+ @mixin animate-fade-in-down {}
747
+ @mixin animate-fade-out-up {}
748
+ @mixin animate-fade-out-down {}
749
+ @mixin animate-flip-up {}
750
+ @mixin animate-slide-right {}
751
+ @mixin animate-slide-left {}
752
+ @mixin animate-slide-in-from-left {}
753
+ @mixin animate-slide-in-from-bottom {}
754
+ @mixin animate-slide-in-from-bottom-no-fade {}
755
+ @mixin animate-slide-in-from-bottom-no-bounce {}
756
+ @mixin animate-slide-in-tilt-left {}
757
+ @mixin animate-slide-in-tilt-right {}
758
+ @mixin animate-pop {}
759
+ @mixin animate-burst {}
760
+ @mixin animate-bubble-burst {}
761
+ @mixin animate-shake {}
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sass-zero (1.3.0)
4
+ sass-zero (1.3.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -50,10 +50,110 @@
50
50
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
51
51
  }
52
52
 
53
- @mixin animate-pulse {
53
+ @mixin animate-pulse {
54
54
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
55
55
  }
56
56
 
57
57
  @mixin animate-bounce {
58
58
  animation: bounce 1s infinite;
59
59
  }
60
+
61
+ @mixin animate-pop-open {
62
+ animation: pop-open .1s both;
63
+ }
64
+
65
+ @mixin animate-appear {
66
+ animation: appear .3s ease-out both;
67
+ }
68
+
69
+ @mixin animate-fade-out {
70
+ animation: fade-out 2s .3s both;
71
+ }
72
+
73
+ @mixin animate-fade-in-out {
74
+ animation: fade-in-out 1.5s infinite both;
75
+ }
76
+
77
+ @mixin animate-appear-then-fade {
78
+ animation: appear-then-fade 4s .3s both;
79
+ }
80
+
81
+ @mixin animate-appear-then-fade-extended {
82
+ animation: appear-then-fade-extended 12s .3s both;
83
+ }
84
+
85
+ @mixin animate-slide-up-then-down {
86
+ animation: slide-up-then-down 2s both;
87
+ }
88
+
89
+ @mixin animate-wiggle {
90
+ animation: wiggle .4s both;
91
+ }
92
+
93
+ @mixin animate-fade-in-up {
94
+ animation: fade-in-up .5s both;
95
+ }
96
+
97
+ @mixin animate-fade-in-down {
98
+ animation: fade-in-down .3s both ease-in-out;
99
+ }
100
+
101
+ @mixin animate-fade-out-up {
102
+ animation: fade-out-up .3s both;
103
+ }
104
+
105
+ @mixin animate-fade-out-down {
106
+ animation: fade-out-down .3s ease-in both;
107
+ }
108
+
109
+ @mixin animate-flip-up {
110
+ animation: flip-up .1s ease;
111
+ }
112
+
113
+ @mixin animate-slide-right {
114
+ animation: slide-right 2.5s ease-in infinite;
115
+ }
116
+
117
+ @mixin animate-slide-left {
118
+ animation: slide-left 2.5s ease-in infinite;
119
+ }
120
+
121
+ @mixin animate-slide-in-from-left {
122
+ animation: slide-in-from-left .5s both;
123
+ }
124
+
125
+ @mixin animate-slide-in-from-bottom {
126
+ animation: slide-in-from-bottom .5s .5s both;
127
+ }
128
+
129
+ @mixin animate-slide-in-from-bottom-no-fade {
130
+ animation: slide-in-from-bottom-no-fade .33s ease both;
131
+ }
132
+
133
+ @mixin animate-slide-in-from-bottom-no-bounce {
134
+ animation: slide-in-from-bottom-no-bounce .5s ease-out both;
135
+ }
136
+
137
+ @mixin animate-slide-in-tilt-left {
138
+ animation: slide-in-tilt-left .5s both;
139
+ }
140
+
141
+ @mixin animate-slide-in-tilt-right {
142
+ animation: slide-in-tilt-right .5s both;
143
+ }
144
+
145
+ @mixin animate-pop {
146
+ animation: pop 2.5s ease infinite;
147
+ }
148
+
149
+ @mixin animate-burst {
150
+ animation: burst 2.5s 2.2s ease infinite;
151
+ }
152
+
153
+ @mixin animate-bubble-burst {
154
+ animation: bubble-burst .16s ease-out .16s forwards;
155
+ }
156
+
157
+ @mixin animate-shake {
158
+ animation: shake .3s both;
159
+ }
@@ -52,24 +52,6 @@
52
52
  }
53
53
  }
54
54
 
55
- @keyframes blind-open {
56
- from {
57
- max-height: 0;
58
- }
59
- to {
60
- max-height: 100rem;
61
- }
62
- }
63
-
64
- @keyframes blind-close {
65
- from {
66
- max-height: 100rem;
67
- }
68
- to {
69
- max-height: 0;
70
- }
71
- }
72
-
73
55
  @keyframes appear {
74
56
  from {
75
57
  opacity: 0;
@@ -124,14 +106,6 @@
124
106
  }
125
107
  }
126
108
 
127
- @keyframes hide {
128
- to {
129
- max-height: 0;
130
- max-width: 0;
131
- visibility: hidden;
132
- }
133
- }
134
-
135
109
  @keyframes wiggle {
136
110
  0% {
137
111
  transform: rotate(0deg);
@@ -153,23 +127,6 @@
153
127
  }
154
128
  }
155
129
 
156
- @keyframes pop-visible {
157
- 0% {
158
- transform: scale(0.75);
159
- text-indent: 0;
160
- }
161
- 33% {
162
- transform: scale(0.85);
163
- }
164
- 67% {
165
- transform: scale(1.25);
166
- }
167
- 100% {
168
- transform: scale(1);
169
- text-indent: 2.3em;
170
- }
171
- }
172
-
173
130
  @keyframes fade-in-up {
174
131
  0% {
175
132
  transform: translateY(50px);
@@ -420,15 +377,6 @@
420
377
  }
421
378
  }
422
379
 
423
- @keyframes bump {
424
- 0%, 100% {
425
- transform: scale(1);
426
- }
427
- 50% {
428
- transform: scale(1.2);
429
- }
430
- }
431
-
432
380
  @keyframes shake {
433
381
  0% {
434
382
  transform: translateX(-2rem);
@@ -444,11 +392,10 @@
444
392
  }
445
393
  }
446
394
 
447
- @keyframes dancing-ants {
448
- 0% {
449
- background-position: left top,right bottom,left bottom,right top;
450
- }
451
- 100% {
452
- background-position: left 1.5rem top,right 1.5rem bottom,left bottom 1.5rem,right top 1.5rem;
395
+ @keyframes hide {
396
+ to {
397
+ max-height: 0;
398
+ max-width: 0;
399
+ visibility: hidden;
453
400
  }
454
401
  }
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.3.0"
3
+ VERSION = "1.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-10 00:00:00.000000000 Z
11
+ date: 2023-07-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: