@upsoftware_tech/svarium 1.0.5 → 1.0.6
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/dist/index.d.ts +270 -126
- package/dist/src/pages/Auth/Verification.vue +2 -1
- package/dist/src/pages/Resources/Form.vue +15 -0
- package/dist/svarium.css +1 -1
- package/dist/svarium.es.js +8227 -6196
- package/dist/svarium.umd.js +8 -4
- package/package.json +2 -1
- package/src/pages/Auth/Verification.vue +2 -1
- package/src/pages/Resources/Form.vue +15 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"email": "info@upSoftware.tech",
|
|
6
6
|
"url": "https://upsoftware.tech"
|
|
7
7
|
},
|
|
8
|
-
"version": "1.0.
|
|
8
|
+
"version": "1.0.6",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"tailwind-merge": "^3.4.0",
|
|
61
61
|
"tailwindcss": "^4.1.18",
|
|
62
62
|
"tw-animate-css": "^1.4.0",
|
|
63
|
+
"vaul-vue": "^0.4.1",
|
|
63
64
|
"vue-draggable-plus": "^0.6.1",
|
|
64
65
|
"vue-input-otp": "^0.3.2",
|
|
65
66
|
"vue-sonner": "^2.0.9",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
<div class="text-sm">{{ $t('Enter the verification code you received') }}</div>
|
|
13
13
|
</div>
|
|
14
14
|
</div>
|
|
15
|
+
<Alert />
|
|
15
16
|
<div class="flex flex-col gap-4">
|
|
16
17
|
<BlockFormVerification v-bind="$props" />
|
|
17
18
|
</div>
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
</template>
|
|
21
22
|
|
|
22
23
|
<script setup lang="ts">
|
|
23
|
-
import { AuthLayout, BlockFormVerification } from '@upsoftware_tech/svarium';
|
|
24
|
+
import { AuthLayout, BlockFormVerification, Alert } from '@upsoftware_tech/svarium';
|
|
24
25
|
import { Icon } from '@iconify/vue';
|
|
25
26
|
import { Link } from "@inertiajs/vue3";
|
|
26
27
|
import {computed} from "vue";
|