@vc-shell/create-vc-app 1.0.209 → 1.0.211

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/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.0.211](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.210...v1.0.211) (2024-05-09)
2
+
3
+
4
+
5
+ ## [1.0.210](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.209...v1.0.210) (2024-05-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * remove auto-open blade on param change, as it can lead to unpredictable behavior ([898e0d9](https://github.com/VirtoCommerce/vc-shell/commit/898e0d9ffc5812b71e8215a355c9ad0918c48dfe))
11
+
12
+
13
+
1
14
  ## [1.0.209](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.208...v1.0.209) (2024-05-07)
2
15
 
3
16
 
package/dist/index.js CHANGED
@@ -6,14 +6,14 @@ import i from "node:path";
6
6
  import u from "node:fs";
7
7
  import { fileURLToPath as Re } from "node:url";
8
8
  import { cwd as je, argv as Ae, exit as we } from "node:process";
9
- const ke = "@vc-shell/create-vc-app", Oe = "Application scaffolding", Ne = "1.0.209", Me = "module", Te = "./dist/index.js", Ue = [
9
+ const ke = "@vc-shell/create-vc-app", Oe = "Application scaffolding", Ne = "1.0.211", Me = "module", Te = "./dist/index.js", Ue = [
10
10
  "dist"
11
11
  ], Ee = {
12
12
  build: "vite build && yarn postbuild",
13
13
  postbuild: "shx cp -R src/templates dist/"
14
14
  }, Le = {
15
15
  "@types/prompts": "^2.4.4",
16
- "@vc-shell/ts-config": "^1.0.209",
16
+ "@vc-shell/ts-config": "^1.0.211",
17
17
  copyfiles: "^2.4.1",
18
18
  "cross-env": "^7.0.3",
19
19
  shx: "^0.3.4",
@@ -23,9 +23,9 @@
23
23
  "@types/node": "^20.10.5",
24
24
  "@typescript-eslint/eslint-plugin": "^6.16.0",
25
25
  "@typescript-eslint/parser": "^6.16.0",
26
- "@vc-shell/api-client-generator": "^1.0.209",
27
- "@vc-shell/release-config": "^1.0.209",
28
- "@vc-shell/ts-config": "^1.0.209",
26
+ "@vc-shell/api-client-generator": "^1.0.211",
27
+ "@vc-shell/release-config": "^1.0.211",
28
+ "@vc-shell/ts-config": "^1.0.211",
29
29
  "@vitejs/plugin-vue": "^5.0.3",
30
30
  "@vue/eslint-config-prettier": "^9.0.0",
31
31
  "@vue/eslint-config-typescript": "^12.0.0",
@@ -55,8 +55,8 @@
55
55
  },
56
56
  "dependencies": {
57
57
  "@fortawesome/fontawesome-free": "^5.15.3",
58
- "@vc-shell/config-generator": "^1.0.209",
59
- "@vc-shell/framework": "^1.0.209",
58
+ "@vc-shell/config-generator": "^1.0.211",
59
+ "@vc-shell/framework": "^1.0.211",
60
60
  "@vueuse/core": "^10.7.1",
61
61
  "@vueuse/integrations": "^10.7.1",
62
62
  "cross-spawn": "^7.0.3",
@@ -84,20 +84,7 @@ const selectedItemId = ref<string>();
84
84
  watch(
85
85
  () => props.param,
86
86
  (newVal) => {
87
- if (newVal) {
88
87
  selectedItemId.value = newVal;
89
-
90
- openBlade({
91
- blade: markRaw(Details),
92
- param: newVal,
93
- onOpen() {
94
- selectedItemId.value = newVal;
95
- },
96
- onClose() {
97
- selectedItemId.value = undefined;
98
- },
99
- });
100
- }
101
88
  },
102
89
  { immediate: true },
103
90
  );
@@ -99,20 +99,7 @@ const query = ref();
99
99
  watch(
100
100
  () => props.param,
101
101
  (newVal) => {
102
- if (newVal) {
103
102
  selectedItemId.value = newVal;
104
-
105
- openBlade({
106
- blade: markRaw(Details),
107
- param: newVal,
108
- onOpen() {
109
- selectedItemId.value = newVal;
110
- },
111
- onClose() {
112
- selectedItemId.value = undefined;
113
- },
114
- });
115
- }
116
103
  },
117
104
  { immediate: true },
118
105
  );
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vc-shell/create-vc-app",
3
3
  "description": "Application scaffolding",
4
- "version": "1.0.209",
4
+ "version": "1.0.211",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
7
7
  "files": [
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@types/prompts": "^2.4.4",
16
- "@vc-shell/ts-config": "^1.0.209",
16
+ "@vc-shell/ts-config": "^1.0.211",
17
17
  "copyfiles": "^2.4.1",
18
18
  "cross-env": "^7.0.3",
19
19
  "shx": "^0.3.4",