tsv2-library 1.0.61-alpha.19 → 1.0.61-alpha.20
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.
|
@@ -62,9 +62,7 @@ export type Asset = {
|
|
|
62
62
|
updatedAt?: string;
|
|
63
63
|
rfid?: string;
|
|
64
64
|
qr?: string;
|
|
65
|
-
|
|
66
|
-
firstImageMedium?: string;
|
|
67
|
-
firstImageBig?: string;
|
|
65
|
+
firstImage?: string;
|
|
68
66
|
secondImageSmall?: string;
|
|
69
67
|
secondImageMedium?: string;
|
|
70
68
|
secondImageBig?: string;
|
package/dist/tsv2-library.es.js
CHANGED
|
@@ -27952,8 +27952,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
|
|
|
27952
27952
|
const defaultImage = computed(() => {
|
|
27953
27953
|
const {
|
|
27954
27954
|
setDefault,
|
|
27955
|
-
|
|
27956
|
-
firstImageBig,
|
|
27955
|
+
firstImage,
|
|
27957
27956
|
secondImageBig,
|
|
27958
27957
|
secondImageMedium,
|
|
27959
27958
|
assetImage
|
|
@@ -27966,8 +27965,8 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
|
|
|
27966
27965
|
};
|
|
27967
27966
|
}
|
|
27968
27967
|
return {
|
|
27969
|
-
thumbnail: useFirstImage ?
|
|
27970
|
-
preview: useFirstImage ?
|
|
27968
|
+
thumbnail: useFirstImage ? firstImage : secondImageMedium,
|
|
27969
|
+
preview: useFirstImage ? firstImage : secondImageBig
|
|
27971
27970
|
};
|
|
27972
27971
|
});
|
|
27973
27972
|
const aliasCode = computed(() => {
|