@dargmuesli/nuxt-vio 10.2.3 → 11.0.0-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/error.vue +11 -8
- package/package.json +2 -2
- package/tailwind.config.ts +0 -9
package/error.vue
CHANGED
@@ -1,12 +1,15 @@
|
|
1
1
|
<template>
|
2
|
-
<
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
2
|
+
<div>
|
3
|
+
<!-- `NuxtLayout` can't be the root element (https://github.com/nuxt/nuxt/issues/25214) -->
|
4
|
+
<NuxtLayout>
|
5
|
+
<VioError
|
6
|
+
:status-code="error.statusCode"
|
7
|
+
:status-message="error.statusMessage"
|
8
|
+
:description="error.message"
|
9
|
+
:stack="error.stack"
|
10
|
+
/>
|
11
|
+
</NuxtLayout>
|
12
|
+
</div>
|
10
13
|
</template>
|
11
14
|
|
12
15
|
<script setup lang="ts">
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "
|
3
|
+
"version": "11.0.0-beta.1",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+https://github.com/dargmuesli/vio.git"
|
@@ -55,7 +55,7 @@
|
|
55
55
|
"dayjs": "2.0.0-alpha.4",
|
56
56
|
"jose": "5.2.0",
|
57
57
|
"nuxt-security": "1.0.1",
|
58
|
-
"sweetalert2": "11.10.
|
58
|
+
"sweetalert2": "11.10.4",
|
59
59
|
"vue-gtag": "2.0.1"
|
60
60
|
},
|
61
61
|
"devDependencies": {
|
package/tailwind.config.ts
CHANGED
@@ -168,15 +168,6 @@ export default {
|
|
168
168
|
cursor: theme('cursor.not-allowed'),
|
169
169
|
opacity: theme('opacity.50'),
|
170
170
|
},
|
171
|
-
'.max-w-xxs': {
|
172
|
-
maxWidth: '15rem',
|
173
|
-
},
|
174
|
-
'.min-w-xxs': {
|
175
|
-
minWidth: '15rem',
|
176
|
-
},
|
177
|
-
'.mb-20vh': {
|
178
|
-
marginBottom: '20vh',
|
179
|
-
},
|
180
171
|
})
|
181
172
|
},
|
182
173
|
],
|