nuxt-glorious 1.1.9-5 → 1.1.9-7

Sign up to get free protection for your applications and to get access to all the features.
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "glorious",
3
3
  "configKey": "glorious",
4
- "version": "1.1.9-5"
4
+ "version": "1.1.9-7"
5
5
  }
@@ -31,15 +31,15 @@
31
31
  .g-scafold-modal.close {
32
32
  @apply hidden;
33
33
  }
34
- .g-scafold-modal.open {
35
- animation: animation-mobile 0.3s normal forwards;
36
- }
37
34
  @screen md {
38
35
  .g-scafold-modal.open {
39
- animation: animation-opacity 0.2s normal forwards;
36
+ animation: animationOpacity 0.2s normal forwards;
40
37
  }
41
38
  }
42
- @keyframes animation-opacity {
39
+ .g-scafold-modal.open {
40
+ animation: animationMobile 0.3s normal forwards;
41
+ }
42
+ @keyframes animationOpacity {
43
43
  from {
44
44
  opacity: 0;
45
45
  }
@@ -47,7 +47,7 @@
47
47
  opacity: 1;
48
48
  }
49
49
  }
50
- @keyframes animation-mobile {
50
+ @keyframes animationMobile {
51
51
  from {
52
52
  transform: translateY(100%);
53
53
  }
@@ -150,15 +150,15 @@ watch(
150
150
  .g-scafold-modal.close {
151
151
  @apply hidden;
152
152
  }
153
- .g-scafold-modal.open {
154
- animation: animation-mobile 0.3s normal forwards;
155
- }
156
153
  @screen md {
157
154
  .g-scafold-modal.open {
158
- animation: animation-opacity 0.2s normal forwards;
155
+ animation: animationOpacity 0.2s normal forwards;
159
156
  }
160
157
  }
161
- @keyframes animation-opacity {
158
+ .g-scafold-modal.open {
159
+ animation: animationMobile 0.3s normal forwards;
160
+ }
161
+ @keyframes animationOpacity {
162
162
  from {
163
163
  opacity: 0;
164
164
  }
@@ -166,7 +166,7 @@ watch(
166
166
  opacity: 1;
167
167
  }
168
168
  }
169
- @keyframes animation-mobile {
169
+ @keyframes animationMobile {
170
170
  from {
171
171
  transform: translateY(100%);
172
172
  }
@@ -1,6 +1,5 @@
1
1
  import colors from "tailwindcss/colors";
2
2
  export default function tailwindColor(name, range) {
3
3
  const tailwindColor2 = colors;
4
- console.log(colors);
5
4
  return tailwindColor2[name][range];
6
5
  }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
- "version": "1.1.9-5",
2
+ "version": "1.1.9-7",
3
3
  "name": "nuxt-glorious",
4
4
  "description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
5
5
  "repository": "sajadhzj/nuxt-glorious",
6
6
  "author": "sajad hossein zadeh (https://github.com/sajadhzj)",
7
7
  "license": "MIT",
8
+ "type": "module",
8
9
  "exports": {
9
10
  ".": {
10
11
  "types": "./dist/types.d.ts",