quasar-ui-danx 0.4.7 → 0.4.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/danx.es.js +337 -337
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +6 -6
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ActionTable/Form/Fields/FieldLabel.vue +1 -1
- package/src/components/ActionTable/Form/Fields/MultiFileField.vue +1 -2
- package/src/components/Utility/Dialogs/FullscreenCarouselDialog.vue +1 -1
- package/src/components/Utility/Files/FilePreview.vue +4 -4
- package/src/styles/themes/danx/carousels.scss +5 -0
- package/src/styles/themes/danx/index.scss +1 -0
- package/src/types/files.d.ts +3 -0
- package/src/types/requests.d.ts +1 -1
package/package.json
CHANGED
@@ -26,9 +26,8 @@
|
|
26
26
|
v-for="file in uploadedFiles"
|
27
27
|
:key="'file-upload-' + file.id"
|
28
28
|
class="w-32 h-32 m-2 cursor-pointer bg-gray-200"
|
29
|
-
:class="{'border border-dashed border-blue-600': !uploadedFiles.length}"
|
30
29
|
:file="file"
|
31
|
-
:related-files="uploadedFiles"
|
30
|
+
:related-files="file.transcodes || uploadedFiles"
|
32
31
|
downloadable
|
33
32
|
:removable="!readonly && !disable"
|
34
33
|
@remove="onRemove(file)"
|
@@ -107,7 +107,7 @@
|
|
107
107
|
<FullScreenCarouselDialog
|
108
108
|
v-if="showPreview && !disabled"
|
109
109
|
:files="relatedFiles || [computedImage]"
|
110
|
-
:default-slide="computedImage?.id || ''"
|
110
|
+
:default-slide="relatedFiles ? relatedFiles[0].id : (computedImage?.id || '')"
|
111
111
|
@close="showPreview = false"
|
112
112
|
/>
|
113
113
|
</div>
|
@@ -115,10 +115,10 @@
|
|
115
115
|
|
116
116
|
<script setup lang="ts">
|
117
117
|
import { DocumentTextIcon as TextFileIcon, DownloadIcon, PlayIcon } from "@heroicons/vue/outline";
|
118
|
-
import { UploadedFile } from "src/types";
|
119
118
|
import { computed, ComputedRef, ref } from "vue";
|
120
119
|
import { download } from "../../../helpers";
|
121
120
|
import { ImageIcon, PdfIcon, TrashIcon as RemoveIcon } from "../../../svg";
|
121
|
+
import { UploadedFile } from "../../../types";
|
122
122
|
import { FullScreenCarouselDialog } from "../Dialogs";
|
123
123
|
|
124
124
|
export interface FilePreviewProps {
|
@@ -171,10 +171,10 @@ const isImage = computed(() => !!mimeType.value.match(/^image\//));
|
|
171
171
|
const isVideo = computed(() => !!mimeType.value.match(/^video\//));
|
172
172
|
const isPdf = computed(() => !!mimeType.value.match(/^application\/pdf/));
|
173
173
|
const previewUrl = computed(
|
174
|
-
() => computedImage.value?.
|
174
|
+
() => computedImage.value?.optimized?.url || computedImage.value?.blobUrl || computedImage.value?.url
|
175
175
|
);
|
176
176
|
const thumbUrl = computed(() => {
|
177
|
-
return computedImage.value?.
|
177
|
+
return computedImage.value?.thumb?.url;
|
178
178
|
});
|
179
179
|
const isPreviewable = computed(() => {
|
180
180
|
return !!thumbUrl.value || isVideo.value || isImage.value;
|
package/src/types/files.d.ts
CHANGED
package/src/types/requests.d.ts
CHANGED