@christianriedl/media 1.0.54 → 1.0.55
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/package.json
CHANGED
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
}
|
|
123
123
|
});
|
|
124
124
|
}
|
|
125
|
-
function
|
|
125
|
+
function onClick() {
|
|
126
126
|
keyDialog.value = true;
|
|
127
127
|
}
|
|
128
128
|
async function onKey(ev: KeyboardEvent) {
|
|
@@ -311,13 +311,13 @@
|
|
|
311
311
|
<v-container fluid :style="heightStyle" class="bg-grey-darken-3 pa-0">
|
|
312
312
|
<v-carousel hide-delimiters :show-arrows="false" v-model="index"
|
|
313
313
|
:width="width" :height="height" :cycle="cycle" :interval="interval"
|
|
314
|
-
@
|
|
314
|
+
@click="onClick" @update:modelValue="infoDialog = false">
|
|
315
315
|
<v-carousel-item v-for="item in items" :key="item.DLNAID">
|
|
316
316
|
<img :src="getUrl(item)" :alt="item.Name" :width="getWidth(item)" :height="getHeight(item)" />
|
|
317
317
|
</v-carousel-item>
|
|
318
318
|
</v-carousel>
|
|
319
319
|
<v-dialog v-model="infoDialog" :fullscreen="isMobile" >
|
|
320
|
-
<v-card v-if="infoDialog" width="600">
|
|
320
|
+
<v-card v-if="infoDialog" width="600" v-click-outside="infoDialog = false">
|
|
321
321
|
<v-card-title class="headline">Metadata</v-card-title>
|
|
322
322
|
<v-card-text>
|
|
323
323
|
<v-container>
|
|
@@ -340,8 +340,8 @@
|
|
|
340
340
|
</v-card-actions>
|
|
341
341
|
</v-card>
|
|
342
342
|
</v-dialog>
|
|
343
|
-
<v-dialog v-model="keyDialog" :fullscreen="isMobile"
|
|
344
|
-
<v-card v-if="keyDialog" width="400">
|
|
343
|
+
<v-dialog v-model="keyDialog" :fullscreen="isMobile" >
|
|
344
|
+
<v-card v-if="keyDialog" width="400" v-click-outside="keyDialog = false">
|
|
345
345
|
<v-card-text>
|
|
346
346
|
<v-container>
|
|
347
347
|
<v-row dense>
|