create-vuetify 3.0.14-beta-next.2 → 3.0.14-next.1

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.
Files changed (2) hide show
  1. package/dist/index.mjs +29 -7
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -10721,6 +10721,17 @@ var en_default = {
10721
10721
  "vuetify0": "Vuetify0 (alpha)",
10722
10722
  "nuxt": "Nuxt"
10723
10723
  },
10724
+ "type": {
10725
+ "select": "Which version of Vuetify?",
10726
+ "vuetify": {
10727
+ "label": "Vuetify",
10728
+ "hint": "Standard Material Design Component Framework"
10729
+ },
10730
+ "vuetify0": {
10731
+ "label": "Vuetify 0 (alpha)",
10732
+ "hint": "Headless Component Library"
10733
+ }
10734
+ },
10724
10735
  "css_framework": {
10725
10736
  "select": "Which CSS framework?",
10726
10737
  "unocss": { "hint": "Instant on-demand atomic CSS engine" },
@@ -10931,6 +10942,17 @@ var ru_default = {
10931
10942
  "vuetify0": "Vuetify0 (alpha)",
10932
10943
  "nuxt": "Nuxt"
10933
10944
  },
10945
+ "type": {
10946
+ "select": "Какую версию Vuetify использовать?",
10947
+ "vuetify": {
10948
+ "label": "Vuetify",
10949
+ "hint": "Стандартная библиотека компонентов Material Design"
10950
+ },
10951
+ "vuetify0": {
10952
+ "label": "Vuetify 0 (альфа)",
10953
+ "hint": "Библиотека headless компонентов"
10954
+ }
10955
+ },
10934
10956
  "css_framework": {
10935
10957
  "select": "Какой фреймворк CSS вы хотите использовать?",
10936
10958
  "none": "Никакой",
@@ -25766,16 +25788,16 @@ async function prompt(args$2, cwd$1 = process.cwd()) {
25766
25788
  if (args$2.type) return Promise.resolve(args$2.type);
25767
25789
  if (!args$2.interactive) return Promise.resolve("vuetify");
25768
25790
  return qt({
25769
- message: "Which version of Vuetify?",
25791
+ message: i18n.t("prompts.type.select"),
25770
25792
  initialValue: "vuetify",
25771
25793
  options: [{
25772
- label: "Vuetify",
25794
+ label: i18n.t("prompts.type.vuetify.label"),
25773
25795
  value: "vuetify",
25774
- hint: "Standard Material Design Component Framework"
25796
+ hint: i18n.t("prompts.type.vuetify.hint")
25775
25797
  }, {
25776
- label: "Vuetify 0 (alpha)",
25798
+ label: i18n.t("prompts.type.vuetify0.label"),
25777
25799
  value: "vuetify0",
25778
- hint: "Headless Component Library"
25800
+ hint: i18n.t("prompts.type.vuetify0.hint")
25779
25801
  }]
25780
25802
  });
25781
25803
  },
@@ -40998,7 +41020,7 @@ export const useAppStore = defineStore('app', {
40998
41020
 
40999
41021
  //#endregion
41000
41022
  //#region ../shared/package.json
41001
- var version$1 = "0.0.14-beta.2";
41023
+ var version$1 = "0.0.14";
41002
41024
 
41003
41025
  //#endregion
41004
41026
  //#region ../shared/src/utils/getTemplateSource.ts
@@ -43638,7 +43660,7 @@ const blue = ansi256(33);
43638
43660
 
43639
43661
  //#endregion
43640
43662
  //#region package.json
43641
- var version = "3.0.14-beta-next.2";
43663
+ var version = "3.0.14-next.1";
43642
43664
 
43643
43665
  //#endregion
43644
43666
  //#region src/commands/upgrade.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vuetify",
3
- "version": "3.0.14-beta-next.2",
3
+ "version": "3.0.14-next.1",
4
4
  "description": "Create a new Vuetify project",
5
5
  "type": "module",
6
6
  "files": [
@@ -38,7 +38,7 @@
38
38
  "pathe": "^2.0.3",
39
39
  "tsdown": "^0.16.8",
40
40
  "vitest": "^4.0.17",
41
- "@vuetify/cli-shared": "0.0.14-beta.2"
41
+ "@vuetify/cli-shared": "0.0.14"
42
42
  },
43
43
  "main": "./dist/index.mjs",
44
44
  "module": "./dist/index.mjs",