nuxt-nightly 4.1.3-29316215.910d159d → 4.1.3-29316225.304409da
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/app/components/error-404.d.vue.ts +16 -0
- package/dist/app/components/error-500.d.vue.ts +16 -0
- package/dist/app/components/error-dev.d.vue.ts +16 -0
- package/dist/app/components/nuxt-error-boundary.d.vue.ts +23 -0
- package/dist/app/components/nuxt-error-page.d.vue.ts +8 -0
- package/dist/app/components/nuxt-root.d.vue.ts +2 -0
- package/dist/app/components/nuxt-time.d.vue.ts +34 -0
- package/dist/app/components/welcome.d.vue.ts +10 -0
- package/dist/app/composables/head.d.ts +1 -1
- package/dist/app/composables/head.js +1 -9
- package/dist/index.mjs +2 -2
- package/dist/pages/runtime/app.d.vue.ts +2 -0
- package/package.json +4 -4
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
appName: string;
|
|
4
|
+
statusCode: number;
|
|
5
|
+
statusMessage: string;
|
|
6
|
+
description: string;
|
|
7
|
+
backHome: string;
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
export default _default;
|
|
10
|
+
declare const props: {
|
|
11
|
+
readonly appName: string;
|
|
12
|
+
readonly statusCode: number;
|
|
13
|
+
readonly statusMessage: string;
|
|
14
|
+
readonly description: string;
|
|
15
|
+
readonly backHome: string;
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
appName: string;
|
|
4
|
+
statusCode: number;
|
|
5
|
+
statusMessage: string;
|
|
6
|
+
description: string;
|
|
7
|
+
refresh: string;
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
export default _default;
|
|
10
|
+
declare const props: {
|
|
11
|
+
readonly appName: string;
|
|
12
|
+
readonly statusCode: number;
|
|
13
|
+
readonly statusMessage: string;
|
|
14
|
+
readonly description: string;
|
|
15
|
+
readonly refresh: string;
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
appName: string;
|
|
4
|
+
statusCode: number;
|
|
5
|
+
statusMessage: string;
|
|
6
|
+
description: string;
|
|
7
|
+
stack: string;
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
export default _default;
|
|
10
|
+
declare const props: {
|
|
11
|
+
readonly appName: string;
|
|
12
|
+
readonly statusCode: number;
|
|
13
|
+
readonly statusMessage: string;
|
|
14
|
+
readonly description: string;
|
|
15
|
+
readonly stack: string;
|
|
16
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Slots = {
|
|
2
|
+
error(props: {
|
|
3
|
+
error: Error;
|
|
4
|
+
clearError: () => void;
|
|
5
|
+
}): any;
|
|
6
|
+
default(): any;
|
|
7
|
+
};
|
|
8
|
+
declare function clearError(): void;
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
10
|
+
error: import("vue").ShallowRef<Error | null, Error | null>;
|
|
11
|
+
clearError: typeof clearError;
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
error: (error: Error) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
15
|
+
onError?: ((error: Error) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
error?: Record<string, any> | undefined;
|
|
4
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
|
+
export default _default;
|
|
6
|
+
declare const props: {
|
|
7
|
+
readonly error?: Record<string, any> | undefined;
|
|
8
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface NuxtTimeProps {
|
|
2
|
+
locale?: string;
|
|
3
|
+
datetime: string | number | Date;
|
|
4
|
+
localeMatcher?: 'best fit' | 'lookup';
|
|
5
|
+
weekday?: 'long' | 'short' | 'narrow';
|
|
6
|
+
era?: 'long' | 'short' | 'narrow';
|
|
7
|
+
year?: 'numeric' | '2-digit';
|
|
8
|
+
month?: 'numeric' | '2-digit' | 'long' | 'short' | 'narrow';
|
|
9
|
+
day?: 'numeric' | '2-digit';
|
|
10
|
+
hour?: 'numeric' | '2-digit';
|
|
11
|
+
minute?: 'numeric' | '2-digit';
|
|
12
|
+
second?: 'numeric' | '2-digit';
|
|
13
|
+
timeZoneName?: 'short' | 'long' | 'shortOffset' | 'longOffset' | 'shortGeneric' | 'longGeneric';
|
|
14
|
+
formatMatcher?: 'best fit' | 'basic';
|
|
15
|
+
hour12?: boolean;
|
|
16
|
+
timeZone?: string;
|
|
17
|
+
calendar?: string;
|
|
18
|
+
dayPeriod?: 'narrow' | 'short' | 'long';
|
|
19
|
+
numberingSystem?: string;
|
|
20
|
+
dateStyle?: 'full' | 'long' | 'medium' | 'short';
|
|
21
|
+
timeStyle?: 'full' | 'long' | 'medium' | 'short';
|
|
22
|
+
hourCycle?: 'h11' | 'h12' | 'h23' | 'h24';
|
|
23
|
+
relative?: boolean;
|
|
24
|
+
title?: boolean | string;
|
|
25
|
+
}
|
|
26
|
+
declare global {
|
|
27
|
+
interface Window {
|
|
28
|
+
_nuxtTimeNow?: number;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
declare const _default: import("vue").DefineComponent<NuxtTimeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NuxtTimeProps> & Readonly<{}>, {
|
|
32
|
+
hour12: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: Partial<typeof props>;
|
|
3
|
+
appName: string;
|
|
4
|
+
title: string;
|
|
5
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
declare const props: {
|
|
8
|
+
readonly appName: string;
|
|
9
|
+
readonly title: string;
|
|
10
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { injectHead, useHead, useServerHead, useSeoMeta, useServerSeoMeta, useHeadSafe, useServerHeadSafe
|
|
1
|
+
export { injectHead, useHead, useServerHead, useSeoMeta, useServerSeoMeta, useHeadSafe, useServerHeadSafe } from '#unhead/composables';
|
|
@@ -1,9 +1 @@
|
|
|
1
|
-
export {
|
|
2
|
-
injectHead,
|
|
3
|
-
useHead,
|
|
4
|
-
useServerHead,
|
|
5
|
-
useSeoMeta,
|
|
6
|
-
useServerSeoMeta,
|
|
7
|
-
useHeadSafe,
|
|
8
|
-
useServerHeadSafe
|
|
9
|
-
} from "#unhead/composables";
|
|
1
|
+
export { injectHead, useHead, useServerHead, useSeoMeta, useServerSeoMeta, useHeadSafe, useServerHeadSafe } from "#unhead/composables";
|
package/dist/index.mjs
CHANGED
|
@@ -3821,7 +3821,7 @@ function addDeclarationTemplates(ctx, options) {
|
|
|
3821
3821
|
});
|
|
3822
3822
|
}
|
|
3823
3823
|
|
|
3824
|
-
const version = "4.1.3-
|
|
3824
|
+
const version = "4.1.3-29316225.304409da";
|
|
3825
3825
|
|
|
3826
3826
|
const createImportProtectionPatterns = (nuxt, options) => {
|
|
3827
3827
|
const patterns = [];
|
|
@@ -4088,7 +4088,7 @@ const addModuleTranspiles = (nuxt) => {
|
|
|
4088
4088
|
};
|
|
4089
4089
|
|
|
4090
4090
|
const template = () => {
|
|
4091
|
-
return '<svg xmlns="http://www.w3.org/2000/svg" width="80" fill="none" class="nuxt-spa-loading" viewBox="0 0 37 25"><path d="M24.236 22.006h10.742L25.563 5.822l-8.979 14.31a4 4 0 0 1-3.388 1.874H2.978l11.631-20 5.897 10.567"/></svg><style>.nuxt-spa-loading{left:50%;position:fixed;top:50%;transform:translate(-50%,-50%)}.nuxt-spa-loading>path{fill:none;stroke:#00dc82;stroke-
|
|
4091
|
+
return '<svg xmlns="http://www.w3.org/2000/svg" width="80" fill="none" class="nuxt-spa-loading" viewBox="0 0 37 25"><path d="M24.236 22.006h10.742L25.563 5.822l-8.979 14.31a4 4 0 0 1-3.388 1.874H2.978l11.631-20 5.897 10.567"/></svg><style>.nuxt-spa-loading{left:50%;position:fixed;top:50%;transform:translate(-50%,-50%)}.nuxt-spa-loading>path{animation:nuxt-spa-loading-move 3s linear infinite;fill:none;stroke:#00dc82;stroke-dasharray:128;stroke-dashoffset:128;stroke-linecap:round;stroke-linejoin:round;stroke-width:4px}@keyframes nuxt-spa-loading-move{to{stroke-dashoffset:-128}}</style>';
|
|
4092
4092
|
};
|
|
4093
4093
|
|
|
4094
4094
|
const logLevelMapReverse = {
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-nightly",
|
|
3
|
-
"version": "4.1.3-
|
|
3
|
+
"version": "4.1.3-29316225.304409da",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"@nuxt/cli": "npm:@nuxt/cli-nightly@latest",
|
|
68
68
|
"@nuxt/devalue": "^2.0.2",
|
|
69
69
|
"@nuxt/devtools": "^2.6.3",
|
|
70
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.1.3-
|
|
71
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.1.3-
|
|
70
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.1.3-29316225.304409da",
|
|
71
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.1.3-29316225.304409da",
|
|
72
72
|
"@nuxt/telemetry": "^2.6.6",
|
|
73
|
-
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.1.3-
|
|
73
|
+
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.1.3-29316225.304409da",
|
|
74
74
|
"@unhead/vue": "^2.0.14",
|
|
75
75
|
"@vue/shared": "^3.5.21",
|
|
76
76
|
"c12": "^3.3.0",
|