@inzombieland/nuxt-common 1.16.12 → 1.16.14
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/assets/css/layer.css +12 -6
- package/dist/module.d.mts +2 -1
- package/dist/module.d.ts +2 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/AppProvider.vue +7 -11
- package/dist/runtime/api/account/account.get.mjs +1 -1
- package/dist/runtime/api/account/authcheck.get.mjs +1 -1
- package/dist/runtime/api/account/default-handler.mjs +1 -1
- package/dist/runtime/api/account/middleware.mjs +1 -1
- package/dist/runtime/api/account/token.get.mjs +1 -1
- package/dist/runtime/composables/use-active-sessions.mjs +1 -1
- package/dist/runtime/composables/use-subscribe.d.ts +3 -10
- package/dist/runtime/composables/use-subscribe.mjs +3 -22
- package/dist/runtime/composables/use-user.d.ts +1 -1
- package/dist/runtime/composables/use-user.mjs +1 -1
- package/dist/runtime/packages/api/api-client.d.ts +1 -1
- package/dist/runtime/packages/api/api-client.mjs +2 -2
- package/dist/runtime/packages/api/comet-client.d.ts +1 -1
- package/dist/runtime/packages/api/comet-client.mjs +1 -1
- package/dist/runtime/packages/api/composables/use-subscribe.d.ts +10 -0
- package/dist/runtime/packages/api/composables/use-subscribe.mjs +22 -0
- package/dist/runtime/packages/api/get-user.mjs +2 -2
- package/dist/runtime/packages/api/helpers/date-helper.mjs +1 -2
- package/dist/runtime/packages/api/index.d.ts +2 -1
- package/dist/runtime/packages/api/index.mjs +3 -2
- package/dist/runtime/packages/api/package.json +1 -1
- package/dist/runtime/packages/api/types.d.ts +1 -1
- package/dist/runtime/packages/api/user-actions.mjs +1 -1
- package/dist/runtime/packages/layer-manager/package.json +1 -1
- package/dist/runtime/plugins/otp-input.mjs +1 -1
- package/dist/runtime/plugins/sanitize-html.mjs +1 -1
- package/dist/runtime/server/middleware/basic-auth.mjs +1 -1
- package/dist/types.d.mts +2 -10
- package/dist/types.d.ts +2 -10
- package/package.json +20 -20
- /package/dist/runtime/packages/api/{use-api-actions.d.ts → composables/use-api-actions.d.ts} +0 -0
- /package/dist/runtime/packages/api/{use-api-actions.mjs → composables/use-api-actions.mjs} +0 -0
- /package/dist/runtime/packages/api/{use-user.d.ts → composables/use-user.d.ts} +0 -0
- /package/dist/runtime/packages/api/{use-user.mjs → composables/use-user.mjs} +0 -0
package/assets/css/layer.css
CHANGED
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
.layer-header > h1 {
|
|
34
34
|
display: inline-block;
|
|
35
35
|
flex: 1 1 0;
|
|
36
|
-
font-size:
|
|
37
|
-
font-weight:
|
|
38
|
-
line-height:
|
|
39
|
-
text-align:
|
|
36
|
+
font-size: 20px;
|
|
37
|
+
font-weight: 400;
|
|
38
|
+
line-height: 1;
|
|
39
|
+
text-align: left;
|
|
40
40
|
margin: 0;
|
|
41
41
|
padding-right: 28px;
|
|
42
42
|
-webkit-font-smoothing: antialiased;
|
|
@@ -180,6 +180,12 @@
|
|
|
180
180
|
justify-content: center;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
.layer-header > h1 {
|
|
184
|
+
font-size: 15px;
|
|
185
|
+
font-weight: 600;
|
|
186
|
+
text-align: center;
|
|
187
|
+
}
|
|
188
|
+
|
|
183
189
|
.layer-main {
|
|
184
190
|
padding: 2rem 1rem;
|
|
185
191
|
}
|
|
@@ -191,7 +197,7 @@
|
|
|
191
197
|
}
|
|
192
198
|
|
|
193
199
|
.layer-close {
|
|
194
|
-
top:
|
|
200
|
+
top: 16px !important;
|
|
195
201
|
}
|
|
196
202
|
|
|
197
203
|
.layer-close:before {
|
|
@@ -234,7 +240,7 @@
|
|
|
234
240
|
|
|
235
241
|
.layer-close {
|
|
236
242
|
position: absolute;
|
|
237
|
-
top:
|
|
243
|
+
top: 15px;
|
|
238
244
|
left: 16px;
|
|
239
245
|
width: 20px;
|
|
240
246
|
height: 20px;
|
package/dist/module.d.mts
CHANGED
package/dist/module.d.ts
CHANGED
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { fileURLToPath } from 'node:url';
|
|
|
2
2
|
import { defineNuxtModule, createResolver, addServerHandler, addImportsDir, addPlugin, addComponent } from '@nuxt/kit';
|
|
3
3
|
|
|
4
4
|
const name = "@inzombieland/nuxt-common";
|
|
5
|
-
const version = "1.16.
|
|
5
|
+
const version = "1.16.14";
|
|
6
6
|
|
|
7
7
|
const module = defineNuxtModule({
|
|
8
8
|
meta: {
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { StyleProvider, Themes, Locale as VarletLocale } from "@varlet/ui"
|
|
3
3
|
import { useLocalStorage } from "@vueuse/core"
|
|
4
|
+
import { useI18n, useLocalePath } from "#i18n"
|
|
5
|
+
import { useNuxtApp } from "#imports"
|
|
4
6
|
import { setNotifyDefaultOptions, Locale as VantLocale, type ConfigProviderTheme } from "vant"
|
|
5
7
|
import enUS from "vant/es/locale/lang/en-US"
|
|
6
8
|
import ruRU from "vant/es/locale/lang/ru-RU"
|
|
7
9
|
import { onMounted, ref, watch } from "vue"
|
|
8
10
|
import { useRouter } from "vue-router"
|
|
9
|
-
import { useI18n, useLocalePath } from "#i18n"
|
|
10
|
-
import { useNuxtApp } from "#imports"
|
|
11
11
|
import { getVisitorId, getVisitorIdentifier } from "./api"
|
|
12
12
|
import { useActiveSessions } from "./composables/use-active-sessions"
|
|
13
|
-
import { useSubscribe } from "./composables/use-subscribe"
|
|
14
|
-
import { useUser } from "./composables/use-user"
|
|
15
13
|
import { useUserActions } from "./composables/use-user-actions"
|
|
14
|
+
import { useSubscribe, useUser } from "./packages/api"
|
|
16
15
|
import "@vant/touch-emulator"
|
|
17
16
|
|
|
18
17
|
const theme = useLocalStorage("theme", "")
|
|
@@ -70,17 +69,14 @@ onMounted(() => {
|
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
if (theme === "dark") {
|
|
73
|
-
document.documentElement.classList.remove("light")
|
|
74
|
-
document.documentElement.classList.
|
|
75
|
-
document.documentElement.classList.add("van-theme-dark")
|
|
72
|
+
document.documentElement.classList.remove("light", "van-theme-light")
|
|
73
|
+
document.documentElement.classList.add("dark", "van-theme-dark")
|
|
76
74
|
StyleProvider(Themes.dark)
|
|
77
75
|
} else {
|
|
78
|
-
document.documentElement.classList.remove("dark")
|
|
79
|
-
document.documentElement.classList.
|
|
80
|
-
document.documentElement.classList.add("van-theme-light")
|
|
76
|
+
document.documentElement.classList.remove("dark", "van-theme-dark")
|
|
77
|
+
document.documentElement.classList.add("light", "van-theme-light")
|
|
81
78
|
StyleProvider(null)
|
|
82
79
|
}
|
|
83
|
-
document.documentElement.classList.add(theme)
|
|
84
80
|
|
|
85
81
|
if ($mobileApp?.changeTheme && typeof $mobileApp.changeTheme === "function") {
|
|
86
82
|
$mobileApp.changeTheme({ theme })
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineEventHandler, getRequestHeader, parseCookies } from "h3";
|
|
2
1
|
import { useRuntimeConfig } from "#imports";
|
|
2
|
+
import { defineEventHandler, getRequestHeader, parseCookies } from "h3";
|
|
3
3
|
export default defineEventHandler(async (event) => {
|
|
4
4
|
const cookies = parseCookies(event);
|
|
5
5
|
if (cookies.lin !== "yes") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineEventHandler, parseCookies } from "h3";
|
|
2
1
|
import { useRuntimeConfig } from "#imports";
|
|
2
|
+
import { defineEventHandler, parseCookies } from "h3";
|
|
3
3
|
export default defineEventHandler(async (event) => {
|
|
4
4
|
const cookies = parseCookies(event);
|
|
5
5
|
if (cookies.lin !== "yes") {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { cookieHelper } from "@inzombieland/nuxt-common/helpers";
|
|
2
|
-
import { appendHeader, defineEventHandler, readBody } from "h3";
|
|
3
2
|
import { useRuntimeConfig } from "#imports";
|
|
3
|
+
import { appendHeader, defineEventHandler, readBody } from "h3";
|
|
4
4
|
export default defineEventHandler(async (event) => {
|
|
5
5
|
const config = useRuntimeConfig();
|
|
6
6
|
const request = String(config.public.apiBaseURL) + String(event.node.req.url);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineEventHandler, getRequestHeader } from "h3";
|
|
2
1
|
import { useRuntimeConfig } from "#imports";
|
|
2
|
+
import { defineEventHandler, getRequestHeader } from "h3";
|
|
3
3
|
export default defineEventHandler((event) => {
|
|
4
4
|
const config = useRuntimeConfig();
|
|
5
5
|
let authorization = "";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { cookieHelper } from "@inzombieland/nuxt-common/helpers";
|
|
2
|
-
import { appendHeader, defineEventHandler, parseCookies } from "h3";
|
|
3
2
|
import { useRuntimeConfig } from "#imports";
|
|
3
|
+
import { appendHeader, defineEventHandler, parseCookies } from "h3";
|
|
4
4
|
export default defineEventHandler(async (event) => {
|
|
5
5
|
const cookies = parseCookies(event);
|
|
6
6
|
if (cookies.lin !== "yes") {
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
unsubscribeOnUnmount?: boolean;
|
|
5
|
-
}) => Subscription | undefined;
|
|
6
|
-
declare const _default: <T>(eventName: string, func: (data: T) => void, options?: {
|
|
7
|
-
once?: boolean;
|
|
8
|
-
unsubscribeOnUnmount?: boolean;
|
|
9
|
-
}) => Subscription | undefined;
|
|
10
|
-
export default _default;
|
|
1
|
+
import { useSubscribe } from "../packages/api";
|
|
2
|
+
export { useSubscribe };
|
|
3
|
+
export default useSubscribe;
|
|
@@ -1,22 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
let subscription;
|
|
5
|
-
onMounted(() => {
|
|
6
|
-
subscription = bus.subscribe(eventName, (data) => {
|
|
7
|
-
func(data);
|
|
8
|
-
if (options.once) {
|
|
9
|
-
subscription?.unsubscribe();
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
});
|
|
13
|
-
onUnmounted(() => {
|
|
14
|
-
if (options.unsubscribeOnUnmount) {
|
|
15
|
-
subscription?.unsubscribe();
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
return subscription;
|
|
19
|
-
};
|
|
20
|
-
export default (eventName, func, options) => {
|
|
21
|
-
return useSubscribe(eventName, func, options);
|
|
22
|
-
};
|
|
1
|
+
import { useSubscribe } from "../packages/api/index.mjs";
|
|
2
|
+
export { useSubscribe };
|
|
3
|
+
export default useSubscribe;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type User } from "./use-user";
|
|
1
|
+
import { type User } from "./composables/use-user";
|
|
2
2
|
import type { Fetch, FetchConfig, FetchExtraOptions as FetchOptions } from "./types";
|
|
3
3
|
export declare const setUser: (newUser?: User | null) => void;
|
|
4
4
|
export declare const updateUser: (newUser: Partial<User>) => void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import bus from "./bus.mjs";
|
|
2
2
|
import { newCometClient } from "./comet-client.mjs";
|
|
3
|
+
import { useApiActions } from "./composables/use-api-actions.mjs";
|
|
4
|
+
import { useUser } from "./composables/use-user.mjs";
|
|
3
5
|
import { getVisitor } from "./get-visitor.mjs";
|
|
4
6
|
import { apiHelper, once } from "./helpers/index.mjs";
|
|
5
|
-
import { useApiActions } from "./use-api-actions.mjs";
|
|
6
|
-
import { useUser } from "./use-user.mjs";
|
|
7
7
|
let token = null;
|
|
8
8
|
export const setUser = (newUser) => {
|
|
9
9
|
const user = useUser();
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Centrifuge } from "centrifuge";
|
|
2
2
|
import { getToken } from "./api-client.mjs";
|
|
3
3
|
import bus from "./bus.mjs";
|
|
4
|
+
import { useApiActions } from "./composables/use-api-actions.mjs";
|
|
4
5
|
import { apiHelper } from "./helpers/index.mjs";
|
|
5
|
-
import { useApiActions } from "./use-api-actions.mjs";
|
|
6
6
|
if (typeof window !== "undefined" && import.meta.env.MODE !== "production") {
|
|
7
7
|
window.wsPublish = (eventName, data) => {
|
|
8
8
|
setTimeout(() => bus.publish(`WS.${eventName}`, data), 0);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type Subscription } from "../bus";
|
|
2
|
+
export declare const useSubscribe: <T>(eventName: string, func: (data: T) => void, options?: {
|
|
3
|
+
once?: boolean;
|
|
4
|
+
unsubscribeOnUnmount?: boolean;
|
|
5
|
+
}) => Subscription | undefined;
|
|
6
|
+
declare const _default: <T>(eventName: string, func: (data: T) => void, options?: {
|
|
7
|
+
once?: boolean;
|
|
8
|
+
unsubscribeOnUnmount?: boolean;
|
|
9
|
+
}) => Subscription | undefined;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { onMounted, onUnmounted } from "vue";
|
|
2
|
+
import bus from "../bus.mjs";
|
|
3
|
+
export const useSubscribe = (eventName, func, options = { once: false, unsubscribeOnUnmount: true }) => {
|
|
4
|
+
let subscription;
|
|
5
|
+
onMounted(() => {
|
|
6
|
+
subscription = bus.subscribe(eventName, (data) => {
|
|
7
|
+
func(data);
|
|
8
|
+
if (options.once) {
|
|
9
|
+
subscription?.unsubscribe();
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
});
|
|
13
|
+
onUnmounted(() => {
|
|
14
|
+
if (options.unsubscribeOnUnmount) {
|
|
15
|
+
subscription?.unsubscribe();
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
return subscription;
|
|
19
|
+
};
|
|
20
|
+
export default (eventName, func, options) => {
|
|
21
|
+
return useSubscribe(eventName, func, options);
|
|
22
|
+
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { useLocalStorage } from "@vueuse/core";
|
|
2
2
|
import { flush, getToken, setUser } from "./api-client.mjs";
|
|
3
|
+
import { useApiActions } from "./composables/use-api-actions.mjs";
|
|
4
|
+
import { useUser } from "./composables/use-user.mjs";
|
|
3
5
|
import { once } from "./helpers/index.mjs";
|
|
4
|
-
import { useApiActions } from "./use-api-actions.mjs";
|
|
5
|
-
import { useUser } from "./use-user.mjs";
|
|
6
6
|
let gettingUserInProgress = false;
|
|
7
7
|
let gettingUserPromise = null;
|
|
8
8
|
function getUser(fetch, config) {
|
|
@@ -105,7 +105,7 @@ const pad = (value, len = 2) => {
|
|
|
105
105
|
return val;
|
|
106
106
|
};
|
|
107
107
|
const createOnlyDate = (date) => {
|
|
108
|
-
const d = new Date(date
|
|
108
|
+
const d = new Date(date);
|
|
109
109
|
d.setHours(0, 0, 0, 0);
|
|
110
110
|
return d;
|
|
111
111
|
};
|
|
@@ -220,7 +220,6 @@ export function dateFormat(date = /* @__PURE__ */ new Date(), format = "default"
|
|
|
220
220
|
TT: H < 12 ? "AM" : "PM",
|
|
221
221
|
Z: utc ? "UTC" : (String(date).match(timezone) || [""]).pop()?.replace(timezoneClip, ""),
|
|
222
222
|
o: (o > 0 ? "-" : "+") + pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4)
|
|
223
|
-
// eslint-disable-line no-mixed-operators
|
|
224
223
|
};
|
|
225
224
|
const mask = getMask(format, locale, isCurrentDay, isYesterday, isCurrentYear);
|
|
226
225
|
const parsedDate = mask.replaceAll(token, ($0) => {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ActiveSession, Fetch, FetchConfig } from "./types";
|
|
2
2
|
export type { ActiveSession, Fetch, FetchConfig };
|
|
3
|
-
export { useUser, type User } from "./use-user";
|
|
3
|
+
export { useUser, type User } from "./composables/use-user";
|
|
4
|
+
export { useSubscribe } from "./composables/use-subscribe";
|
|
4
5
|
export { getVisitor, getVisitorId, type Visitor } from "./get-visitor";
|
|
5
6
|
export declare function initApiFetch($fetch: Fetch, config: FetchConfig): {
|
|
6
7
|
fetch: Fetch;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { createApiFetch } from "./api-client.mjs";
|
|
2
|
+
import { useApiActions } from "./composables/use-api-actions.mjs";
|
|
2
3
|
import { createApiGetUser } from "./get-user.mjs";
|
|
3
4
|
import { createApiGetVisitorIdentifier } from "./get-visitor.mjs";
|
|
4
5
|
import { createApiRefreshToken } from "./refresh-token.mjs";
|
|
5
|
-
import { useApiActions } from "./use-api-actions.mjs";
|
|
6
6
|
import { createApiUserActions } from "./user-actions.mjs";
|
|
7
|
-
export { useUser } from "./use-user.mjs";
|
|
7
|
+
export { useUser } from "./composables/use-user.mjs";
|
|
8
|
+
export { useSubscribe } from "./composables/use-subscribe.mjs";
|
|
8
9
|
export { getVisitor, getVisitorId } from "./get-visitor.mjs";
|
|
9
10
|
const apiActions = useApiActions();
|
|
10
11
|
export function initApiFetch($fetch, config) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { flush, setToken } from "./api-client.mjs";
|
|
2
|
+
import { useUser } from "./composables/use-user.mjs";
|
|
2
3
|
import { once } from "./helpers/index.mjs";
|
|
3
|
-
import { useUser } from "./use-user.mjs";
|
|
4
4
|
export const createApiUserActions = once(
|
|
5
5
|
(fetch, config, getUser) => {
|
|
6
6
|
return {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { defineNuxtPlugin } from "#app";
|
|
1
2
|
import { transform } from "ultrahtml";
|
|
2
3
|
import sanitize from "ultrahtml/transformers/sanitize";
|
|
3
|
-
import { defineNuxtPlugin } from "#app";
|
|
4
4
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
5
5
|
nuxtApp.vueApp.directive("sanitize-html", async (el, binding) => {
|
|
6
6
|
if (binding.value !== binding.oldValue) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Buffer } from "node:buffer";
|
|
2
|
-
import { defineEventHandler } from "h3";
|
|
3
2
|
import { useRuntimeConfig } from "#imports";
|
|
3
|
+
import { defineEventHandler } from "h3";
|
|
4
4
|
export default defineEventHandler((event) => {
|
|
5
5
|
let basicAuthEnabled = false;
|
|
6
6
|
let basicAuthUsers;
|
package/dist/types.d.mts
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
import type {
|
|
2
|
+
import type { } from './module.js'
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
declare module '@nuxt/schema' {
|
|
6
|
-
interface NuxtConfig { ['nuxt-common']?: Partial<ModuleOptions> }
|
|
7
|
-
interface NuxtOptions { ['nuxt-common']?: ModuleOptions }
|
|
8
|
-
}
|
|
9
5
|
|
|
10
|
-
declare module 'nuxt/schema' {
|
|
11
|
-
interface NuxtConfig { ['nuxt-common']?: Partial<ModuleOptions> }
|
|
12
|
-
interface NuxtOptions { ['nuxt-common']?: ModuleOptions }
|
|
13
|
-
}
|
|
14
6
|
|
|
15
7
|
|
|
16
|
-
export type {
|
|
8
|
+
export type { default } from './module.js'
|
package/dist/types.d.ts
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
import type {
|
|
2
|
+
import type { } from './module'
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
declare module '@nuxt/schema' {
|
|
6
|
-
interface NuxtConfig { ['nuxt-common']?: Partial<ModuleOptions> }
|
|
7
|
-
interface NuxtOptions { ['nuxt-common']?: ModuleOptions }
|
|
8
|
-
}
|
|
9
5
|
|
|
10
|
-
declare module 'nuxt/schema' {
|
|
11
|
-
interface NuxtConfig { ['nuxt-common']?: Partial<ModuleOptions> }
|
|
12
|
-
interface NuxtOptions { ['nuxt-common']?: ModuleOptions }
|
|
13
|
-
}
|
|
14
6
|
|
|
15
7
|
|
|
16
|
-
export type {
|
|
8
|
+
export type { default } from './module'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inzombieland/nuxt-common",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.14",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -47,44 +47,44 @@
|
|
|
47
47
|
"@nuxt/kit": "^3.17.0",
|
|
48
48
|
"@nuxt/module-builder": "^0.6.0",
|
|
49
49
|
"@nuxt/schema": "^3.17.0",
|
|
50
|
-
"@nuxtjs/i18n": "^9.
|
|
51
|
-
"@nuxtjs/tailwindcss": "^6.
|
|
52
|
-
"@pinia/colada": "^0.
|
|
53
|
-
"@pinia/colada-nuxt": "^0.
|
|
54
|
-
"@pinia/nuxt": "^0.
|
|
55
|
-
"@primeuix/themes": "^1.0.
|
|
56
|
-
"@primevue/nuxt-module": "^4.3.
|
|
50
|
+
"@nuxtjs/i18n": "^9.5.4",
|
|
51
|
+
"@nuxtjs/tailwindcss": "^6.14.0",
|
|
52
|
+
"@pinia/colada": "^0.15.1",
|
|
53
|
+
"@pinia/colada-nuxt": "^0.1.3",
|
|
54
|
+
"@pinia/nuxt": "^0.11.0",
|
|
55
|
+
"@primeuix/themes": "^1.0.3",
|
|
56
|
+
"@primevue/nuxt-module": "^4.3.3",
|
|
57
57
|
"@rollup/plugin-commonjs": "^26.0.3",
|
|
58
58
|
"@rollup/plugin-node-resolve": "^15.3.1",
|
|
59
59
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
60
|
-
"@sxzz/eslint-config": "^
|
|
61
|
-
"@types/node": "^
|
|
60
|
+
"@sxzz/eslint-config": "^6.2.0",
|
|
61
|
+
"@types/node": "^22.15.3",
|
|
62
62
|
"@vant/nuxt": "^1.0.6",
|
|
63
63
|
"@vant/touch-emulator": "^1.4.0",
|
|
64
|
-
"@varlet/ui": "^3.
|
|
64
|
+
"@varlet/ui": "^3.10.5",
|
|
65
65
|
"@vite-pwa/assets-generator": "^0.2.6",
|
|
66
|
-
"@vite-pwa/nuxt": "^0.10.
|
|
66
|
+
"@vite-pwa/nuxt": "^0.10.8",
|
|
67
67
|
"@vueuse/nuxt": "^10.5.0",
|
|
68
68
|
"autoprefixer": "^10.4.20",
|
|
69
69
|
"changelogen": "^0.5.7",
|
|
70
70
|
"config": "^3.3.12",
|
|
71
|
-
"eslint": "^
|
|
71
|
+
"eslint": "^9.25.1",
|
|
72
72
|
"lerna": "^8.2.2",
|
|
73
73
|
"nuxt": "^3.17.0",
|
|
74
74
|
"ofetch": "^1.4.1",
|
|
75
|
-
"pinia": "^3.0.
|
|
76
|
-
"postcss": "^8.
|
|
75
|
+
"pinia": "^3.0.2",
|
|
76
|
+
"postcss": "^8.5.3",
|
|
77
77
|
"postcss-pxtorem": "^6.1.0",
|
|
78
|
-
"prettier": "^3.
|
|
78
|
+
"prettier": "^3.5.3",
|
|
79
79
|
"primeicons": "^7.0.0",
|
|
80
|
-
"primevue": "^4.3.
|
|
80
|
+
"primevue": "^4.3.3",
|
|
81
81
|
"rollup": "^4.29.1",
|
|
82
82
|
"rollup-plugin-dts": "^6.1.1",
|
|
83
|
-
"sass": "^1.
|
|
83
|
+
"sass": "^1.87.0",
|
|
84
84
|
"tailwindcss": "^3.4.17",
|
|
85
|
-
"vant": "^4.9.
|
|
85
|
+
"vant": "^4.9.19",
|
|
86
86
|
"vue": "^3.5.13",
|
|
87
|
-
"vue-tsc": "^2.2.
|
|
87
|
+
"vue-tsc": "^2.2.10",
|
|
88
88
|
"vue3-otp-input": "^0.5.21",
|
|
89
89
|
"zod": "^3.24.3"
|
|
90
90
|
}
|
/package/dist/runtime/packages/api/{use-api-actions.d.ts → composables/use-api-actions.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|