@vc-shell/framework 1.0.103 → 1.0.105
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 +8 -0
- package/dist/framework.mjs +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/vc-image/index.d.ts +6 -6
- package/dist/ui/components/atoms/vc-image/vc-image.vue.d.ts +4 -4
- package/dist/ui/components/atoms/vc-image/vc-image.vue.d.ts.map +1 -1
- package/package.json +3 -3
- package/ui/components/atoms/vc-image/vc-image.stories.ts +1 -1
- package/ui/components/atoms/vc-image/vc-image.vue +2 -2
- package/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.0.105](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.104...v1.0.105) (2023-10-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [1.0.104](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.103...v1.0.104) (2023-10-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
## [1.0.103](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.102...v1.0.103) (2023-09-29)
|
|
2
10
|
|
|
3
11
|
|
package/dist/framework.mjs
CHANGED
|
@@ -50481,7 +50481,7 @@ const r4 = /* @__PURE__ */ ne("span", null, ")", -1), i4 = { class: "tw-w-full t
|
|
|
50481
50481
|
setup(n) {
|
|
50482
50482
|
const e = n, { t } = At({ useScope: "global" }), r = le(e.index), i = we(() => {
|
|
50483
50483
|
if (o.value.url)
|
|
50484
|
-
return `background
|
|
50484
|
+
return `background: url(${CSS.escape(o.value.url)}) center / contain no-repeat`;
|
|
50485
50485
|
}), o = we(() => e.images[r.value]), f = (g) => {
|
|
50486
50486
|
g.charAt(0) === "/" ? navigator.clipboard?.writeText(`${location.origin}${g}`) : navigator.clipboard?.writeText(g);
|
|
50487
50487
|
};
|
|
@@ -50542,6 +50542,7 @@ const r4 = /* @__PURE__ */ ne("span", null, ")", -1), i4 = { class: "tw-w-full t
|
|
|
50542
50542
|
se(Y(vl), {
|
|
50543
50543
|
src: p.url,
|
|
50544
50544
|
size: "xl",
|
|
50545
|
+
background: "contain",
|
|
50545
50546
|
bordered: !0,
|
|
50546
50547
|
clickable: !0,
|
|
50547
50548
|
onClick: (s) => r.value = a
|