@vc-shell/create-vc-app 1.0.278 → 1.0.280

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.280](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.279...v1.0.280) (2024-08-28)
2
+
3
+
4
+
5
+ ## [1.0.279](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.278...v1.0.279) (2024-08-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **create-vc-app:** update currency option in details.vue and dynamic-blade-list.vue ([40a363a](https://github.com/VirtoCommerce/vc-shell/commit/40a363a292457d0f74e961a342909ed6f425d3b4))
11
+
12
+
13
+
1
14
  ## [1.0.278](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.277...v1.0.278) (2024-08-27)
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 $e } from "node:url";
8
8
  import { cwd as je, argv as Ae, exit as ke } from "node:process";
9
- const we = "@vc-shell/create-vc-app", Oe = "Application scaffolding", Ne = "1.0.278", Me = "module", Te = "./dist/index.js", Ue = [
9
+ const we = "@vc-shell/create-vc-app", Oe = "Application scaffolding", Ne = "1.0.280", 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.278",
16
+ "@vc-shell/ts-config": "^1.0.280",
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.278",
27
- "@vc-shell/release-config": "^1.0.278",
28
- "@vc-shell/ts-config": "^1.0.278",
26
+ "@vc-shell/api-client-generator": "^1.0.280",
27
+ "@vc-shell/release-config": "^1.0.280",
28
+ "@vc-shell/ts-config": "^1.0.280",
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",
@@ -54,8 +54,8 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@fortawesome/fontawesome-free": "^5.15.3",
57
- "@vc-shell/config-generator": "^1.0.278",
58
- "@vc-shell/framework": "^1.0.278",
57
+ "@vc-shell/config-generator": "^1.0.280",
58
+ "@vc-shell/framework": "^1.0.280",
59
59
  "@vueuse/core": "^10.7.1",
60
60
  "@vueuse/integrations": "^10.7.1",
61
61
  "cross-spawn": "^7.0.3",
@@ -91,7 +91,7 @@
91
91
  >
92
92
  <VcInputCurrency
93
93
  v-model="item.price"
94
- v-model:option="item.currency.name"
94
+ v-model:option="item.currency"
95
95
  :label="$t('SAMPLE_APP.PAGES.DETAILS.FIELDS.PRICE')"
96
96
  required
97
97
  option-value="value"
@@ -115,7 +115,7 @@
115
115
  >
116
116
  <VcInputCurrency
117
117
  v-model="item.salePrice"
118
- v-model:option="item.currency.name"
118
+ v-model:option="item.currency"
119
119
  :label="$t('SAMPLE_APP.PAGES.DETAILS.FIELDS.SALE_PRICE')"
120
120
  required
121
121
  option-value="value"
@@ -75,7 +75,7 @@ export const details: DynamicDetailsSchema = {
75
75
  property: "price",
76
76
  rules: { required: true },
77
77
  options: "currencyOptions",
78
- optionProperty: "currency.name",
78
+ optionProperty: "currency",
79
79
  optionValue: "value",
80
80
  optionLabel: "label",
81
81
  },
@@ -86,7 +86,7 @@ export const details: DynamicDetailsSchema = {
86
86
  property: "salePrice",
87
87
  rules: { required: true },
88
88
  options: "currencyOptions",
89
- optionProperty: "currency.name",
89
+ optionProperty: "currency",
90
90
  optionValue: "value",
91
91
  optionLabel: "label",
92
92
  },
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.278",
4
+ "version": "1.0.280",
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.278",
16
+ "@vc-shell/ts-config": "^1.0.280",
17
17
  "copyfiles": "^2.4.1",
18
18
  "cross-env": "^7.0.3",
19
19
  "shx": "^0.3.4",