vgapp 0.2.7 → 0.2.8

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.
@@ -1,198 +1,198 @@
1
- .vg-backdrop {
2
- --vg-backdrop-bg: rgb(0, 0, 0) ;
3
- --vg-backdrop-opacity: 0.4 ;
4
- --vg-backdrop-z-index: 999 ;
5
- --vg-backdrop-transition: all 0.5s ease-in-out ;
6
- position: fixed;
7
- top: 0;
8
- left: 0;
9
- width: 100vw;
10
- height: 100vh;
11
- background: var(--vg-backdrop-bg);
12
- transition: var(--vg-backdrop-transition);
13
- opacity: 0;
14
- z-index: var(--vg-backdrop-z-index);
15
- }
16
- .vg-backdrop.fade {
17
- opacity: var(--vg-backdrop-opacity);
18
- }
19
-
20
- .vg-btn-close {
21
- position: absolute;
22
- right: 1rem;
23
- top: 1rem;
24
- border: none;
25
- background: transparent;
26
- }
27
- .vg-btn-close svg {
28
- width: 24px;
29
- height: 24px;
30
- }
31
-
32
- .vg-collapse:not(.show) {
33
- display: none;
34
- }
35
-
36
- .vg-collapsing {
37
- height: 0;
38
- overflow: hidden;
39
- transition: all 0.5s ease-in-out;
40
- }
41
-
42
- /**
43
- * Loader
44
- */
45
- .vg-loader, .vg.loader:after {
46
- border-radius: 50%;
47
- width: 7em;
48
- height: 7em;
49
- }
50
-
51
- .vg-loader {
52
- --vg-loader-border-width: 0.75em ;
53
- --vg-loader-border-style: solid ;
54
- --vg-loader-border-color: rgba(0, 0, 0, 0.2) ;
55
- --vg-loader-color: rgb(33, 37, 41) ;
56
- --vg-loader-font-size: 10px ;
57
- --vg-loader-margin: 30px auto ;
58
- --vg-loader-animation: vgLoader 1.1s infinite linear ;
59
- --vg-loader-transform: translateZ(0) ;
60
- margin: var(--vg-loader-margin);
61
- font-size: var(--vg-loader-font-size);
62
- position: relative;
63
- text-indent: -9999em;
64
- border-top: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
65
- border-right: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
66
- border-bottom: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
67
- border-left: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-color);
68
- transform: var(--vg-loader-transform);
69
- animation: var(--vg-loader-animation);
70
- }
71
-
72
- /**
73
- * UI before Animation
74
- */
75
- .ui-success-circle {
76
- stroke-dasharray: 260.752190248px, 260.752190248px;
77
- stroke-dashoffset: 270.752190248px;
78
- transform: rotate(0);
79
- transform-origin: center center;
80
- stroke-linecap: round;
81
- animation: ani-success-circle 1s ease-in both;
82
- }
83
- .ui-success-path {
84
- stroke-dasharray: 60px 64px;
85
- stroke-dashoffset: 62px;
86
- stroke-linecap: round;
87
- animation: ani-success-path 0.4s 1s ease-in both;
88
- }
89
-
90
- .ui-error-circle {
91
- stroke-dasharray: 260.752190248px, 260.752190248px;
92
- stroke-dashoffset: 260.752190248px;
93
- animation: ani-error-circle 1.2s linear;
94
- }
95
- .ui-error-line1 {
96
- stroke-dasharray: 54px 55px;
97
- stroke-dashoffset: 55px;
98
- stroke-linecap: round;
99
- animation: ani-error-line 0.15s 1.2s linear both;
100
- }
101
- .ui-error-line2 {
102
- stroke-dasharray: 54px 55px;
103
- stroke-dashoffset: 55px;
104
- stroke-linecap: round;
105
- animation: ani-error-line 0.2s 0.9s linear both;
106
- }
107
-
108
- .ui-waiting-circle {
109
- stroke-dasharray: 260.752190248px, 260.752190248px;
110
- stroke-dashoffset: 260.752190248px;
111
- animation: ani-waiting-circle 1.2s linear;
112
- }
113
- .ui-waiting-line1 {
114
- stroke-dasharray: 280.752190248px, 200.752190248px;
115
- stroke-dashoffset: 280.752190248px;
116
- animation: ani-waiting-line 0.8s 0.3s linear both;
117
- transform: rotate(0);
118
- transform-origin: center center;
119
- }
120
- .ui-waiting-line2 {
121
- stroke-dasharray: 54px 55px;
122
- stroke-dashoffset: 55px;
123
- animation: ani-waiting-line2 0.85s 0.6s ease-in both;
124
- transform: rotate(0) scale(0.9);
125
- transform-origin: center center;
126
- }
127
-
128
- /**
129
- * Animation Loader
130
- */
131
- @keyframes vgLoader {
132
- 0% {
133
- transform: rotate(0deg);
134
- }
135
- 100% {
136
- transform: rotate(360deg);
137
- }
138
- }
139
- @keyframes ani-success-circle {
140
- to {
141
- stroke-dashoffset: 782.2565707439px;
142
- }
143
- }
144
- @keyframes ani-success-path {
145
- 0% {
146
- stroke-dashoffset: 62px;
147
- }
148
- 65% {
149
- stroke-dashoffset: -5px;
150
- }
151
- 84% {
152
- stroke-dashoffset: 4px;
153
- }
154
- 100% {
155
- stroke-dashoffset: -2px;
156
- }
157
- }
158
- @keyframes ani-error-line {
159
- to {
160
- stroke-dashoffset: 0;
161
- }
162
- }
163
- @keyframes ani-error-circle {
164
- 0% {
165
- stroke-dasharray: 0, 260.752190248px;
166
- stroke-dashoffset: 0;
167
- }
168
- 35% {
169
- stroke-dasharray: 120px, 120px;
170
- stroke-dashoffset: -120px;
171
- }
172
- 70% {
173
- stroke-dasharray: 0, 260.752190248px;
174
- stroke-dashoffset: -260.752190248px;
175
- }
176
- 100% {
177
- stroke-dasharray: 260.752190248px, 0;
178
- stroke-dashoffset: -260.752190248px;
179
- }
180
- }
181
- @keyframes ani-waiting-circle {
182
- to {
183
- stroke-dashoffset: 782.2565707439px;
184
- }
185
- }
186
- @keyframes ani-waiting-line {
187
- to {
188
- stroke-dashoffset: 0;
189
- }
190
- }
191
- @keyframes ani-waiting-line2 {
192
- to {
193
- stroke-dashoffset: 0;
194
- transform: rotate(360deg) scale(1);
195
- }
196
- }
197
-
198
- /*# sourceMappingURL=default.css.map */
1
+ .vg-backdrop {
2
+ --vg-backdrop-bg: rgb(0, 0, 0) ;
3
+ --vg-backdrop-opacity: 0.4 ;
4
+ --vg-backdrop-z-index: 999 ;
5
+ --vg-backdrop-transition: all 0.5s ease-in-out ;
6
+ position: fixed;
7
+ top: 0;
8
+ left: 0;
9
+ width: 100vw;
10
+ height: 100vh;
11
+ background: var(--vg-backdrop-bg);
12
+ transition: var(--vg-backdrop-transition);
13
+ opacity: 0;
14
+ z-index: var(--vg-backdrop-z-index);
15
+ }
16
+ .vg-backdrop.fade {
17
+ opacity: var(--vg-backdrop-opacity);
18
+ }
19
+
20
+ .vg-btn-close {
21
+ position: absolute;
22
+ right: 1rem;
23
+ top: 1rem;
24
+ border: none;
25
+ background: transparent;
26
+ }
27
+ .vg-btn-close svg {
28
+ width: 24px;
29
+ height: 24px;
30
+ }
31
+
32
+ .vg-collapse:not(.show) {
33
+ display: none;
34
+ }
35
+
36
+ .vg-collapsing {
37
+ height: 0;
38
+ overflow: hidden;
39
+ transition: all 0.5s ease-in-out;
40
+ }
41
+
42
+ /**
43
+ * Loader
44
+ */
45
+ .vg-loader, .vg.loader:after {
46
+ border-radius: 50%;
47
+ width: 7em;
48
+ height: 7em;
49
+ }
50
+
51
+ .vg-loader {
52
+ --vg-loader-border-width: 0.75em ;
53
+ --vg-loader-border-style: solid ;
54
+ --vg-loader-border-color: rgba(0, 0, 0, 0.2) ;
55
+ --vg-loader-color: rgb(33, 37, 41) ;
56
+ --vg-loader-font-size: 10px ;
57
+ --vg-loader-margin: 30px auto ;
58
+ --vg-loader-animation: vgLoader 1.1s infinite linear ;
59
+ --vg-loader-transform: translateZ(0) ;
60
+ margin: var(--vg-loader-margin);
61
+ font-size: var(--vg-loader-font-size);
62
+ position: relative;
63
+ text-indent: -9999em;
64
+ border-top: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
65
+ border-right: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
66
+ border-bottom: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
67
+ border-left: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-color);
68
+ transform: var(--vg-loader-transform);
69
+ animation: var(--vg-loader-animation);
70
+ }
71
+
72
+ /**
73
+ * UI before Animation
74
+ */
75
+ .ui-success-circle {
76
+ stroke-dasharray: 260.752190248px, 260.752190248px;
77
+ stroke-dashoffset: 270.752190248px;
78
+ transform: rotate(0);
79
+ transform-origin: center center;
80
+ stroke-linecap: round;
81
+ animation: ani-success-circle 1s ease-in both;
82
+ }
83
+ .ui-success-path {
84
+ stroke-dasharray: 60px 64px;
85
+ stroke-dashoffset: 62px;
86
+ stroke-linecap: round;
87
+ animation: ani-success-path 0.4s 1s ease-in both;
88
+ }
89
+
90
+ .ui-error-circle {
91
+ stroke-dasharray: 260.752190248px, 260.752190248px;
92
+ stroke-dashoffset: 260.752190248px;
93
+ animation: ani-error-circle 1.2s linear;
94
+ }
95
+ .ui-error-line1 {
96
+ stroke-dasharray: 54px 55px;
97
+ stroke-dashoffset: 55px;
98
+ stroke-linecap: round;
99
+ animation: ani-error-line 0.15s 1.2s linear both;
100
+ }
101
+ .ui-error-line2 {
102
+ stroke-dasharray: 54px 55px;
103
+ stroke-dashoffset: 55px;
104
+ stroke-linecap: round;
105
+ animation: ani-error-line 0.2s 0.9s linear both;
106
+ }
107
+
108
+ .ui-waiting-circle {
109
+ stroke-dasharray: 260.752190248px, 260.752190248px;
110
+ stroke-dashoffset: 260.752190248px;
111
+ animation: ani-waiting-circle 1.2s linear;
112
+ }
113
+ .ui-waiting-line1 {
114
+ stroke-dasharray: 280.752190248px, 200.752190248px;
115
+ stroke-dashoffset: 280.752190248px;
116
+ animation: ani-waiting-line 0.8s 0.3s linear both;
117
+ transform: rotate(0);
118
+ transform-origin: center center;
119
+ }
120
+ .ui-waiting-line2 {
121
+ stroke-dasharray: 54px 55px;
122
+ stroke-dashoffset: 55px;
123
+ animation: ani-waiting-line2 0.85s 0.6s ease-in both;
124
+ transform: rotate(0) scale(0.9);
125
+ transform-origin: center center;
126
+ }
127
+
128
+ /**
129
+ * Animation Loader
130
+ */
131
+ @keyframes vgLoader {
132
+ 0% {
133
+ transform: rotate(0deg);
134
+ }
135
+ 100% {
136
+ transform: rotate(360deg);
137
+ }
138
+ }
139
+ @keyframes ani-success-circle {
140
+ to {
141
+ stroke-dashoffset: 782.2565707439px;
142
+ }
143
+ }
144
+ @keyframes ani-success-path {
145
+ 0% {
146
+ stroke-dashoffset: 62px;
147
+ }
148
+ 65% {
149
+ stroke-dashoffset: -5px;
150
+ }
151
+ 84% {
152
+ stroke-dashoffset: 4px;
153
+ }
154
+ 100% {
155
+ stroke-dashoffset: -2px;
156
+ }
157
+ }
158
+ @keyframes ani-error-line {
159
+ to {
160
+ stroke-dashoffset: 0;
161
+ }
162
+ }
163
+ @keyframes ani-error-circle {
164
+ 0% {
165
+ stroke-dasharray: 0, 260.752190248px;
166
+ stroke-dashoffset: 0;
167
+ }
168
+ 35% {
169
+ stroke-dasharray: 120px, 120px;
170
+ stroke-dashoffset: -120px;
171
+ }
172
+ 70% {
173
+ stroke-dasharray: 0, 260.752190248px;
174
+ stroke-dashoffset: -260.752190248px;
175
+ }
176
+ 100% {
177
+ stroke-dasharray: 260.752190248px, 0;
178
+ stroke-dashoffset: -260.752190248px;
179
+ }
180
+ }
181
+ @keyframes ani-waiting-circle {
182
+ to {
183
+ stroke-dashoffset: 782.2565707439px;
184
+ }
185
+ }
186
+ @keyframes ani-waiting-line {
187
+ to {
188
+ stroke-dashoffset: 0;
189
+ }
190
+ }
191
+ @keyframes ani-waiting-line2 {
192
+ to {
193
+ stroke-dashoffset: 0;
194
+ transform: rotate(360deg) scale(1);
195
+ }
196
+ }
197
+
198
+ /*# sourceMappingURL=default.css.map */