@sidekick-coder/zenith-kit 0.3.10 → 0.3.11
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/client/index.es.js +4242 -4440
- package/dist/client/src/client/utils/toast.d.ts +2 -54
- package/dist/components/index.es.js +5861 -5848
- package/dist/components/src/client/utils/toast.d.ts +2 -54
- package/dist/server/index.d.mts +2 -2
- package/package.json +1 -1
- package/src/client/components/DialogForm.vue +1 -1
- package/src/client/components/FormFilePicker.vue +1 -1
- package/src/client/components/UserMenu.vue +1 -1
- package/src/client/components/ZAlertButton.vue +1 -1
- package/src/client/components/ZDialogForm.vue +1 -1
- package/src/client/services/FetchService.ts +1 -1
- package/src/client/utils/toast.ts +1 -1
package/package.json
CHANGED
|
@@ -5,7 +5,6 @@ import { toTypedSchema } from '@vee-validate/valibot'
|
|
|
5
5
|
import { computed, ref, watch } from 'vue'
|
|
6
6
|
import type { PropType } from 'vue'
|
|
7
7
|
import type { BaseSchema } from 'valibot'
|
|
8
|
-
import { toast } from 'vue-sonner'
|
|
9
8
|
import ClientOnly from './ClientOnly.vue'
|
|
10
9
|
import FormAutoFieldList from './FormAutoFieldList.vue'
|
|
11
10
|
|
|
@@ -23,6 +22,7 @@ import {
|
|
|
23
22
|
import { tryCatch } from '#shared/utils/tryCatch.ts'
|
|
24
23
|
import { validator } from '#shared/facades/validator.ts'
|
|
25
24
|
import type { DefineFormField } from '#client/utils/defineFormFields.ts'
|
|
25
|
+
import toast from '#client/facades/toast.ts'
|
|
26
26
|
|
|
27
27
|
const props = defineProps({
|
|
28
28
|
title: {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { ref } from 'vue'
|
|
3
3
|
import { useField } from 'vee-validate'
|
|
4
|
-
import { toast } from 'vue-sonner'
|
|
5
4
|
|
|
6
5
|
import { $fetch } from '#client/utils/fetcher.ts'
|
|
7
6
|
import { $file } from '#client/utils/file.ts'
|
|
@@ -16,6 +15,7 @@ import {
|
|
|
16
15
|
} from '#client/components/ui/form/index.ts'
|
|
17
16
|
import Button from '#client/components/ZButton.vue'
|
|
18
17
|
import Icon from '#client/components/Icon.vue'
|
|
18
|
+
import toast from '#client/facades/toast.ts'
|
|
19
19
|
|
|
20
20
|
const props = defineProps({
|
|
21
21
|
name: {
|
|
@@ -5,7 +5,7 @@ import { toTypedSchema } from '@vee-validate/valibot'
|
|
|
5
5
|
import { computed, ref, watch } from 'vue'
|
|
6
6
|
import type { PropType } from 'vue'
|
|
7
7
|
import type { BaseSchema } from 'valibot'
|
|
8
|
-
import
|
|
8
|
+
import toast from '#client/facades/toast.ts'
|
|
9
9
|
import ClientOnly from './ClientOnly.vue'
|
|
10
10
|
import FormAutoFieldList from './FormAutoFieldList.vue'
|
|
11
11
|
|