@vc-shell/framework 1.0.278 → 1.0.279

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,12 @@
1
+ ## [1.0.279](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.278...v1.0.279) (2024-08-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **create-vc-app:** update currency option in details.vue and dynamic-blade-list.vue ([40a363a](https://github.com/VirtoCommerce/vc-shell/commit/40a363a292457d0f74e961a342909ed6f425d3b4))
7
+
8
+
9
+
1
10
  ## [1.0.278](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.277...v1.0.278) (2024-08-27)
2
11
 
3
12
 
package/dist/framework.js CHANGED
@@ -60403,9 +60403,9 @@ const $Oe = {
60403
60403
  query: void 0,
60404
60404
  scope: void 0
60405
60405
  }, M = re(
60406
- () => "disabled" in Ke(N || {}) ? !Ke(Ke(N || {}).disabled) : !1
60406
+ () => "disabled" in Ke(N || {}) ? !Ke(Ke(N || {})?.disabled) : !1
60407
60407
  ), j = re(
60408
- () => "selectedIds" in Ke(N || {}) && S.value?.filter((J) => Ke(Ke(N || {}).selectedIds)?.includes(J.id)) || []
60408
+ () => "selectedIds" in Ke(N || {}) && S.value?.filter((J) => Ke(Ke(N || {})?.selectedIds)?.includes(J.id)) || []
60409
60409
  );
60410
60410
  r.isWidgetView && (I.value.take = 5), m.value = I.value.sort ?? "createdDate:DESC";
60411
60411
  const V = Ch(() => Ke(N) ?? {}), { tableTemplates: te } = N9(E), z = (J) => J?.map(($e) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vc-shell/framework",
3
- "version": "1.0.278",
3
+ "version": "1.0.279",
4
4
  "type": "module",
5
5
  "main": "./dist/framework.js",
6
6
  "types": "./dist/index.d.ts",
@@ -61,9 +61,9 @@
61
61
  "devDependencies": {
62
62
  "@types/dompurify": "^3.0.5",
63
63
  "@types/quill": "^2.0.14",
64
- "@vc-shell/api-client-generator": "^1.0.278",
65
- "@vc-shell/config-generator": "^1.0.278",
66
- "@vc-shell/ts-config": "^1.0.278",
64
+ "@vc-shell/api-client-generator": "^1.0.279",
65
+ "@vc-shell/config-generator": "^1.0.279",
66
+ "@vc-shell/ts-config": "^1.0.279",
67
67
  "@vitejs/plugin-vue": "^5.0.3",
68
68
  "cypress-signalr-mock": "^1.5.0",
69
69
  "sass": "^1.69.6",
@@ -291,13 +291,13 @@ const { load, remove, items, loading, pagination, query, scope } = props.composa
291
291
  } as unknown as UseList<Record<string, any>[], Record<string, any>, ListBaseBladeScope>);
292
292
 
293
293
  const isBladeEditable = computed(() =>
294
- "disabled" in toValue(scope || {}) ? !toValue(toValue(scope || {}).disabled) : false,
294
+ "disabled" in toValue(scope || {}) ? !toValue(toValue(scope || {})?.disabled) : false,
295
295
  );
296
296
 
297
297
  const selection = computed(
298
298
  () =>
299
299
  ("selectedIds" in toValue(scope || {}) &&
300
- items.value?.filter((item) => toValue(toValue(scope || {}).selectedIds)?.includes(item.id))) ||
300
+ items.value?.filter((item) => toValue(toValue(scope || {})?.selectedIds)?.includes(item.id))) ||
301
301
  [],
302
302
  );
303
303