create-vuetify 1.0.6 → 1.0.8
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/package.json +1 -1
- package/template/javascript/base/package.json +7 -7
- package/template/javascript/base/src/components/HelloWorld.vue +4 -8
- package/template/javascript/base/src/styles/settings.scss +2 -2
- package/template/javascript/default/package.json +4 -4
- package/template/javascript/default/src/components/HelloWorld.vue +4 -8
- package/template/javascript/essentials/package.json +8 -8
- package/template/javascript/essentials/src/components/HelloWorld.vue +4 -8
- package/template/javascript/essentials/src/styles/settings.scss +2 -2
- package/template/typescript/base/package.json +10 -9
- package/template/typescript/base/src/components/HelloWorld.vue +4 -8
- package/template/typescript/base/src/styles/settings.scss +2 -2
- package/template/typescript/custom/eslint/package.json +3 -3
- package/template/typescript/default/package.json +8 -7
- package/template/typescript/default/src/components/HelloWorld.vue +4 -8
- package/template/typescript/essentials/package.json +12 -11
- package/template/typescript/essentials/src/components/HelloWorld.vue +4 -8
- package/template/typescript/essentials/src/styles/settings.scss +2 -2
package/package.json
CHANGED
|
@@ -9,19 +9,19 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@mdi/font": "7.0.96",
|
|
12
|
-
"core-js": "^3.
|
|
12
|
+
"core-js": "^3.29.0",
|
|
13
13
|
"roboto-fontface": "*",
|
|
14
|
-
"vue": "^3.2.
|
|
14
|
+
"vue": "^3.2.0",
|
|
15
15
|
"vue-router": "^4.0.0",
|
|
16
16
|
"vuetify": "^3.0.0",
|
|
17
17
|
"webfontloader": "^1.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@vitejs/plugin-vue": "^
|
|
21
|
-
"eslint": "^8.
|
|
20
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
21
|
+
"eslint": "^8.37.0",
|
|
22
22
|
"eslint-plugin-vue": "^9.3.0",
|
|
23
|
-
"sass": "^1.
|
|
24
|
-
"vite": "^
|
|
25
|
-
"vite-plugin-vuetify": "^1.0.0
|
|
23
|
+
"sass": "^1.60.0",
|
|
24
|
+
"vite": "^4.2.0",
|
|
25
|
+
"vite-plugin-vuetify": "^1.0.0"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-container class="fill-height">
|
|
3
|
-
<v-responsive class="
|
|
4
|
-
<v-img
|
|
5
|
-
contain
|
|
6
|
-
height="300"
|
|
7
|
-
src="@/assets/logo.svg"
|
|
8
|
-
/>
|
|
3
|
+
<v-responsive class="align-center text-center fill-height">
|
|
4
|
+
<v-img height="300" src="@/assets/logo.svg" />
|
|
9
5
|
|
|
10
6
|
<div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
|
|
11
7
|
|
|
@@ -16,7 +12,7 @@
|
|
|
16
12
|
<v-row class="d-flex align-center justify-center">
|
|
17
13
|
<v-col cols="auto">
|
|
18
14
|
<v-btn
|
|
19
|
-
href="https://
|
|
15
|
+
href="https://vuetifyjs.com/components/all/"
|
|
20
16
|
min-width="164"
|
|
21
17
|
rel="noopener noreferrer"
|
|
22
18
|
target="_blank"
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
<v-col cols="auto">
|
|
36
32
|
<v-btn
|
|
37
33
|
color="primary"
|
|
38
|
-
href="https://
|
|
34
|
+
href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
|
|
39
35
|
min-width="228"
|
|
40
36
|
rel="noopener noreferrer"
|
|
41
37
|
size="x-large"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Configures SASS variables and Vuetify overwrites
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// https://
|
|
8
|
-
// @use 'vuetify' with (
|
|
7
|
+
// https://vuetifyjs.com/features/sass-variables/`
|
|
8
|
+
// @use 'vuetify/settings' with (
|
|
9
9
|
// $color-pack: false
|
|
10
10
|
// );
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@mdi/font": "7.0.96",
|
|
10
10
|
"roboto-fontface": "*",
|
|
11
|
-
"vue": "^3.2.
|
|
11
|
+
"vue": "^3.2.0",
|
|
12
12
|
"vuetify": "^3.0.0",
|
|
13
13
|
"webfontloader": "^1.0.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@vitejs/plugin-vue": "^
|
|
17
|
-
"vite-plugin-vuetify": "^1.0.0
|
|
18
|
-
"vite": "^
|
|
16
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
17
|
+
"vite-plugin-vuetify": "^1.0.0",
|
|
18
|
+
"vite": "^4.2.0"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-container class="fill-height">
|
|
3
|
-
<v-responsive class="
|
|
4
|
-
<v-img
|
|
5
|
-
contain
|
|
6
|
-
height="300"
|
|
7
|
-
src="@/assets/logo.svg"
|
|
8
|
-
/>
|
|
3
|
+
<v-responsive class="align-center text-center fill-height">
|
|
4
|
+
<v-img height="300" src="@/assets/logo.svg" />
|
|
9
5
|
|
|
10
6
|
<div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
|
|
11
7
|
|
|
@@ -16,7 +12,7 @@
|
|
|
16
12
|
<v-row class="d-flex align-center justify-center">
|
|
17
13
|
<v-col cols="auto">
|
|
18
14
|
<v-btn
|
|
19
|
-
href="https://
|
|
15
|
+
href="https://vuetifyjs.com/components/all/"
|
|
20
16
|
min-width="164"
|
|
21
17
|
rel="noopener noreferrer"
|
|
22
18
|
target="_blank"
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
<v-col cols="auto">
|
|
36
32
|
<v-btn
|
|
37
33
|
color="primary"
|
|
38
|
-
href="https://
|
|
34
|
+
href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
|
|
39
35
|
min-width="228"
|
|
40
36
|
rel="noopener noreferrer"
|
|
41
37
|
size="x-large"
|
|
@@ -9,20 +9,20 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@mdi/font": "7.0.96",
|
|
12
|
-
"core-js": "^3.
|
|
13
|
-
"pinia": "^2.0.
|
|
12
|
+
"core-js": "^3.29.0",
|
|
13
|
+
"pinia": "^2.0.0",
|
|
14
14
|
"roboto-fontface": "*",
|
|
15
|
-
"vue": "^3.2.
|
|
15
|
+
"vue": "^3.2.0",
|
|
16
16
|
"vue-router": "^4.0.0",
|
|
17
17
|
"vuetify": "^3.0.0",
|
|
18
18
|
"webfontloader": "^1.0.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@vitejs/plugin-vue": "^
|
|
22
|
-
"eslint": "^8.
|
|
21
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
22
|
+
"eslint": "^8.37.0",
|
|
23
23
|
"eslint-plugin-vue": "^9.3.0",
|
|
24
|
-
"sass": "^1.
|
|
25
|
-
"vite": "^
|
|
26
|
-
"vite-plugin-vuetify": "^1.0.0
|
|
24
|
+
"sass": "^1.60.0",
|
|
25
|
+
"vite": "^4.2.0",
|
|
26
|
+
"vite-plugin-vuetify": "^1.0.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-container class="fill-height">
|
|
3
|
-
<v-responsive class="
|
|
4
|
-
<v-img
|
|
5
|
-
contain
|
|
6
|
-
height="300"
|
|
7
|
-
src="@/assets/logo.svg"
|
|
8
|
-
/>
|
|
3
|
+
<v-responsive class="align-center text-center fill-height">
|
|
4
|
+
<v-img height="300" src="@/assets/logo.svg" />
|
|
9
5
|
|
|
10
6
|
<div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
|
|
11
7
|
|
|
@@ -16,7 +12,7 @@
|
|
|
16
12
|
<v-row class="d-flex align-center justify-center">
|
|
17
13
|
<v-col cols="auto">
|
|
18
14
|
<v-btn
|
|
19
|
-
href="https://
|
|
15
|
+
href="https://vuetifyjs.com/components/all/"
|
|
20
16
|
min-width="164"
|
|
21
17
|
rel="noopener noreferrer"
|
|
22
18
|
target="_blank"
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
<v-col cols="auto">
|
|
36
32
|
<v-btn
|
|
37
33
|
color="primary"
|
|
38
|
-
href="https://
|
|
34
|
+
href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
|
|
39
35
|
min-width="228"
|
|
40
36
|
rel="noopener noreferrer"
|
|
41
37
|
size="x-large"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Configures SASS variables and Vuetify overwrites
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// https://
|
|
8
|
-
// @use 'vuetify' with (
|
|
7
|
+
// https://vuetifyjs.com/features/sass-variables/`
|
|
8
|
+
// @use 'vuetify/settings' with (
|
|
9
9
|
// $color-pack: false
|
|
10
10
|
// );
|
|
@@ -9,24 +9,25 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@mdi/font": "7.0.96",
|
|
12
|
-
"core-js": "^3.
|
|
12
|
+
"core-js": "^3.29.0",
|
|
13
13
|
"roboto-fontface": "*",
|
|
14
|
-
"vue": "^3.2.
|
|
14
|
+
"vue": "^3.2.0",
|
|
15
15
|
"vue-router": "^4.0.0",
|
|
16
16
|
"vuetify": "^3.0.0",
|
|
17
17
|
"webfontloader": "^1.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@types
|
|
20
|
+
"@babel/types": "^7.21.4",
|
|
21
|
+
"@types/node": "^18.15.0",
|
|
21
22
|
"@types/webfontloader": "^1.6.35",
|
|
22
|
-
"@vitejs/plugin-vue": "^
|
|
23
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
23
24
|
"@vue/eslint-config-typescript": "^11.0.0",
|
|
24
25
|
"eslint": "^8.22.0",
|
|
25
26
|
"eslint-plugin-vue": "^9.3.0",
|
|
26
|
-
"sass": "^1.
|
|
27
|
-
"typescript": "^
|
|
28
|
-
"vite": "^
|
|
29
|
-
"vite-plugin-vuetify": "^1.0.0
|
|
30
|
-
"vue-tsc": "^1.0
|
|
27
|
+
"sass": "^1.60.0",
|
|
28
|
+
"typescript": "^5.0.0",
|
|
29
|
+
"vite": "^4.2.0",
|
|
30
|
+
"vite-plugin-vuetify": "^1.0.0",
|
|
31
|
+
"vue-tsc": "^1.2.0"
|
|
31
32
|
}
|
|
32
33
|
}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-container class="fill-height">
|
|
3
|
-
<v-responsive class="
|
|
4
|
-
<v-img
|
|
5
|
-
contain
|
|
6
|
-
height="300"
|
|
7
|
-
src="@/assets/logo.svg"
|
|
8
|
-
/>
|
|
3
|
+
<v-responsive class="align-center text-center fill-height">
|
|
4
|
+
<v-img height="300" src="@/assets/logo.svg" />
|
|
9
5
|
|
|
10
6
|
<div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
|
|
11
7
|
|
|
@@ -16,7 +12,7 @@
|
|
|
16
12
|
<v-row class="d-flex align-center justify-center">
|
|
17
13
|
<v-col cols="auto">
|
|
18
14
|
<v-btn
|
|
19
|
-
href="https://
|
|
15
|
+
href="https://vuetifyjs.com/components/all/"
|
|
20
16
|
min-width="164"
|
|
21
17
|
rel="noopener noreferrer"
|
|
22
18
|
target="_blank"
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
<v-col cols="auto">
|
|
36
32
|
<v-btn
|
|
37
33
|
color="primary"
|
|
38
|
-
href="https://
|
|
34
|
+
href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
|
|
39
35
|
min-width="228"
|
|
40
36
|
rel="noopener noreferrer"
|
|
41
37
|
size="x-large"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Configures SASS variables and Vuetify overwrites
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// https://
|
|
8
|
-
// @use 'vuetify' with (
|
|
7
|
+
// https://vuetifyjs.com/features/sass-variables/`
|
|
8
|
+
// @use 'vuetify/settings' with (
|
|
9
9
|
// $color-pack: false
|
|
10
10
|
// );
|
|
@@ -8,17 +8,18 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@mdi/font": "7.0.96",
|
|
10
10
|
"roboto-fontface": "*",
|
|
11
|
-
"vue": "^3.2.
|
|
11
|
+
"vue": "^3.2.0",
|
|
12
12
|
"vuetify": "^3.0.0",
|
|
13
13
|
"webfontloader": "^1.0.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@types
|
|
16
|
+
"@babel/types": "^7.21.4",
|
|
17
|
+
"@types/node": "^18.15.0",
|
|
17
18
|
"@types/webfontloader": "^1.6.35",
|
|
18
|
-
"@vitejs/plugin-vue": "^
|
|
19
|
-
"typescript": "^
|
|
20
|
-
"vite": "^
|
|
21
|
-
"vite-plugin-vuetify": "^1.0.0
|
|
22
|
-
"vue-tsc": "^1.0
|
|
19
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
20
|
+
"typescript": "^5.0.0",
|
|
21
|
+
"vite": "^4.2.0",
|
|
22
|
+
"vite-plugin-vuetify": "^1.0.0",
|
|
23
|
+
"vue-tsc": "^1.2.0"
|
|
23
24
|
}
|
|
24
25
|
}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-container class="fill-height">
|
|
3
|
-
<v-responsive class="
|
|
4
|
-
<v-img
|
|
5
|
-
contain
|
|
6
|
-
height="300"
|
|
7
|
-
src="@/assets/logo.svg"
|
|
8
|
-
/>
|
|
3
|
+
<v-responsive class="align-center text-center fill-height">
|
|
4
|
+
<v-img height="300" src="@/assets/logo.svg" />
|
|
9
5
|
|
|
10
6
|
<div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
|
|
11
7
|
|
|
@@ -16,7 +12,7 @@
|
|
|
16
12
|
<v-row class="d-flex align-center justify-center">
|
|
17
13
|
<v-col cols="auto">
|
|
18
14
|
<v-btn
|
|
19
|
-
href="https://
|
|
15
|
+
href="https://vuetifyjs.com/components/all/"
|
|
20
16
|
min-width="164"
|
|
21
17
|
rel="noopener noreferrer"
|
|
22
18
|
target="_blank"
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
<v-col cols="auto">
|
|
36
32
|
<v-btn
|
|
37
33
|
color="primary"
|
|
38
|
-
href="https://
|
|
34
|
+
href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
|
|
39
35
|
min-width="228"
|
|
40
36
|
rel="noopener noreferrer"
|
|
41
37
|
size="x-large"
|
|
@@ -9,25 +9,26 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@mdi/font": "7.0.96",
|
|
12
|
-
"core-js": "^3.
|
|
13
|
-
"pinia": "^2.0.
|
|
12
|
+
"core-js": "^3.29.0",
|
|
13
|
+
"pinia": "^2.0.0",
|
|
14
14
|
"roboto-fontface": "*",
|
|
15
|
-
"vue": "^3.2.
|
|
15
|
+
"vue": "^3.2.0",
|
|
16
16
|
"vue-router": "^4.0.0",
|
|
17
17
|
"vuetify": "^3.0.0",
|
|
18
18
|
"webfontloader": "^1.0.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types
|
|
21
|
+
"@babel/types": "^7.21.4",
|
|
22
|
+
"@types/node": "^18.15.0",
|
|
22
23
|
"@types/webfontloader": "^1.6.35",
|
|
23
|
-
"@vitejs/plugin-vue": "^
|
|
24
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
24
25
|
"@vue/eslint-config-typescript": "^11.0.0",
|
|
25
|
-
"eslint": "^8.
|
|
26
|
+
"eslint": "^8.37.0",
|
|
26
27
|
"eslint-plugin-vue": "^9.3.0",
|
|
27
|
-
"sass": "^1.
|
|
28
|
-
"typescript": "^
|
|
29
|
-
"vite": "^
|
|
30
|
-
"vite-plugin-vuetify": "^1.0.0
|
|
31
|
-
"vue-tsc": "^1.0
|
|
28
|
+
"sass": "^1.60.0",
|
|
29
|
+
"typescript": "^5.0.0",
|
|
30
|
+
"vite": "^4.2.0",
|
|
31
|
+
"vite-plugin-vuetify": "^1.0.0",
|
|
32
|
+
"vue-tsc": "^1.2.0"
|
|
32
33
|
}
|
|
33
34
|
}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<v-container class="fill-height">
|
|
3
|
-
<v-responsive class="
|
|
4
|
-
<v-img
|
|
5
|
-
contain
|
|
6
|
-
height="300"
|
|
7
|
-
src="@/assets/logo.svg"
|
|
8
|
-
/>
|
|
3
|
+
<v-responsive class="align-center text-center fill-height">
|
|
4
|
+
<v-img height="300" src="@/assets/logo.svg" />
|
|
9
5
|
|
|
10
6
|
<div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
|
|
11
7
|
|
|
@@ -16,7 +12,7 @@
|
|
|
16
12
|
<v-row class="d-flex align-center justify-center">
|
|
17
13
|
<v-col cols="auto">
|
|
18
14
|
<v-btn
|
|
19
|
-
href="https://
|
|
15
|
+
href="https://vuetifyjs.com/components/all/"
|
|
20
16
|
min-width="164"
|
|
21
17
|
rel="noopener noreferrer"
|
|
22
18
|
target="_blank"
|
|
@@ -35,7 +31,7 @@
|
|
|
35
31
|
<v-col cols="auto">
|
|
36
32
|
<v-btn
|
|
37
33
|
color="primary"
|
|
38
|
-
href="https://
|
|
34
|
+
href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
|
|
39
35
|
min-width="228"
|
|
40
36
|
rel="noopener noreferrer"
|
|
41
37
|
size="x-large"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Configures SASS variables and Vuetify overwrites
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
// https://
|
|
8
|
-
// @use 'vuetify' with (
|
|
7
|
+
// https://vuetifyjs.com/features/sass-variables/`
|
|
8
|
+
// @use 'vuetify/settings' with (
|
|
9
9
|
// $color-pack: false
|
|
10
10
|
// );
|