diff --git a/auto-imports.d.ts b/auto-imports.d.ts index c4bfed0..17035b0 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -6,7 +6,10 @@ // biome-ignore lint: disable export {} declare global { + const ConfirmationService: typeof import('utils4u/primevue')['ConfirmationService'] + const DialogService: typeof import('utils4u/primevue')['DialogService'] const EffectScope: typeof import('vue')['EffectScope'] + const ToastService: typeof import('utils4u/primevue')['ToastService'] const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate'] const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] const autoResetRef: typeof import('@vueuse/core')['autoResetRef'] @@ -242,6 +245,7 @@ declare global { const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages'] const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion'] const usePrevious: typeof import('@vueuse/core')['usePrevious'] + const usePrimevueDialogRef: typeof import('utils4u/primevue')['usePrimevueDialogRef'] const useRafFn: typeof import('@vueuse/core')['useRafFn'] const useRefHistory: typeof import('@vueuse/core')['useRefHistory'] const useRefs: typeof import('utils4u/vue-use')['useRefs'] diff --git a/package.json b/package.json index 8c5f57f..d280f28 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "taze": "^0.18.0", "tdesign-icons-vue-next": "^0.3.3", "ts-enum-util": "^4.1.0", - "utils4u": "^2.17.0", + "utils4u": "^2.18.1", "vant": "^4.9.15", "vite-plugin-webfont-dl": "^3.10.3", "vue": "^3.5.13", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 18af483..03fe4a8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -83,8 +83,8 @@ importers: specifier: ^4.1.0 version: 4.1.0 utils4u: - specifier: ^2.17.0 - version: 2.17.0 + specifier: ^2.18.1 + version: 2.18.1 vant: specifier: ^4.9.15 version: 4.9.15(vue@3.5.13(typescript@5.7.2)) @@ -4756,8 +4756,8 @@ packages: util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - utils4u@2.17.0: - resolution: {integrity: sha512-66k6/FlZxSwauQGuFJARA3KleXi8ypSrtbHBAzWSETeMTarEFPoAWrfl2fWHC6wxWCg9oWK1zHjtPL9BQkKjqw==} + utils4u@2.18.1: + resolution: {integrity: sha512-FTKfiwFUZLxp5UMLLilcQFWF/WZq2pZpk0Dg/Q8LLDJEHHN0QlMOm+25p6+tI0lDArC6uG/zmA/d9SnlU720AA==} uuid@3.3.2: resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==} @@ -10108,7 +10108,7 @@ snapshots: util-deprecate@1.0.2: {} - utils4u@2.17.0: {} + utils4u@2.18.1: {} uuid@3.3.2: {} diff --git a/src/components/primevue/__dialog-content.vue b/src/components/primevue/__dialog-content.vue index 4edadc1..9bac725 100644 --- a/src/components/primevue/__dialog-content.vue +++ b/src/components/primevue/__dialog-content.vue @@ -1,7 +1,5 @@