File tree Expand file tree Collapse file tree 7 files changed +1506
-2273
lines changed Expand file tree Collapse file tree 7 files changed +1506
-2273
lines changed Original file line number Diff line number Diff line change 50
50
"@vitest/browser" : " 0.25.8" ,
51
51
"@vitest/coverage-c8" : " 0.24.5" ,
52
52
"@vue/eslint-config-typescript" : " 13.0.0" ,
53
+ "@vue/server-renderer" : " ^3.5.13" ,
54
+ "@vue/test-utils" : " ^2.4.6" ,
53
55
"autoprefixer" : " 10.4.20" ,
54
56
"browserslist-to-esbuild" : " 2.1.1" ,
55
57
"eslint" : " 8.57.0" ,
129
131
"scroll-into-view" : " ^1.16.2" ,
130
132
"tabbable" : " 6.2.0" ,
131
133
"tiptap-extension-font-size" : " ^1.2.0" ,
134
+ "vue" : " 3.5.13" ,
132
135
"vue-collapsed" : " ^1.2.5" ,
133
136
"vue-content-loader" : " ^2.0.1" ,
134
137
"vue-demi" : " 0.14.10" ,
144
147
},
145
148
"workspaces" : [
146
149
" packages/*"
147
- ]
150
+ ],
151
+ "resolutions" : {
152
+ "whatwg-url" : " 13.0.0"
153
+ }
148
154
}
Original file line number Diff line number Diff line change 62
62
"webfont" : " 11.2.26"
63
63
},
64
64
"dependencies" : {
65
- "@nuxt/kit" : " 3.13.2 "
65
+ "@nuxt/kit" : " 3.15.0 "
66
66
},
67
67
"publishConfig" : {
68
68
"access" : " public"
Original file line number Diff line number Diff line change 81
81
"webfont" : " 11.2.26"
82
82
},
83
83
"dependencies" : {
84
- "@nuxt/kit" : " 3.13.2 "
84
+ "@nuxt/kit" : " 3.15.0 "
85
85
},
86
86
"publishConfig" : {
87
87
"access" : " public"
Original file line number Diff line number Diff line change 61
61
"@floating-ui/dom" : " 1.6.12" ,
62
62
"@jill64/universal-sanitizer" : " 1.3.4" ,
63
63
"@juggle/resize-observer" : " 3.4.0" ,
64
- "@nuxt/kit" : " 3.13.2 " ,
64
+ "@nuxt/kit" : " 3.15.0 " ,
65
65
"@splidejs/splide" : " 4.1.4" ,
66
66
"@testing-library/dom" : " 10.4.0" ,
67
67
"@testing-library/user-event" : " 14.5.2" ,
122
122
},
123
123
"devDependencies" : {
124
124
"@nuxt/module-builder" : " 0.8.4" ,
125
- "@nuxt/schema" : " 3.13.2 " ,
125
+ "@nuxt/schema" : " 3.15.0 " ,
126
126
"@nuxtjs/tailwindcss" : " 6.12.2" ,
127
127
"@privyid/browserslist-config" : " workspace:^" ,
128
128
"@privyid/tailwind-preset" : " workspace:^" ,
129
129
"@types/sanitize-html" : " 2.13.0" ,
130
130
"browserslist-to-esbuild" : " 2.1.1" ,
131
- "nuxt" : " 3.13.2 " ,
131
+ "nuxt" : " 3.15.0 " ,
132
132
"postcss-custom-properties" : " 14.0.4" ,
133
133
"postcss-hexrgba" : " 2.1.0" ,
134
134
"postcss-lighten-darken" : " 0.9.0" ,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ const props = defineProps({
64
64
default: undefined ,
65
65
},
66
66
titleActionUrl: {
67
- type : String ,
67
+ type : [ String , Object ] as PropType < RouteLocationRaw > ,
68
68
default: undefined ,
69
69
},
70
70
condensed: {
Original file line number Diff line number Diff line change @@ -100,12 +100,8 @@ const navItemClass = computed(() => {
100
100
})
101
101
102
102
const link = computed (() => {
103
- let permalink: string | undefined
104
-
105
103
if (! props .disabled )
106
- permalink = props .href
107
-
108
- return permalink
104
+ return props .href
109
105
})
110
106
</script >
111
107
You can’t perform that action at this time.
0 commit comments