@christianriedl/media 1.0.27 → 1.0.28
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
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
const router = useRouter();
|
|
8
8
|
const route = useRoute();
|
|
9
9
|
const appState = inject<IAppState>('appstate')!;
|
|
10
|
-
const appConfig = inject<
|
|
10
|
+
const appConfig = inject<IAppConfig>('appconfig')!;
|
|
11
11
|
const getMediaService = inject<() => MediaService>('get-media')!;
|
|
12
12
|
const mediaService = getMediaService();
|
|
13
13
|
const heightStyle = computed(() => { return { height: appState.bodyHeight.value + 'px', overflowY: 'hidden' } });
|
|
@@ -246,14 +246,14 @@
|
|
|
246
246
|
|
|
247
247
|
<template>
|
|
248
248
|
<v-container fluid :style="heightStyle">
|
|
249
|
-
<v-carousel hide-delimiters :show-arrows="false" v-model="index"
|
|
249
|
+
<v-carousel hide-delimiters :show-arrows="false" v-model="index"
|
|
250
250
|
:width="width" :height="height" :cycle="cycle" :interval="interval"
|
|
251
251
|
@change="onInput" @dblclick="onDblClick">
|
|
252
252
|
<v-carousel-item v-for="item in items" :key="item.DLNAID">
|
|
253
253
|
<img :src="item.realUrl" />
|
|
254
254
|
</v-carousel-item>
|
|
255
255
|
</v-carousel>
|
|
256
|
-
<v-dialog v-model="infoDialog" :fullscreen="isMobile">
|
|
256
|
+
<v-dialog v-model="infoDialog" :fullscreen="isMobile" v-click-outside="infoDialog = false">
|
|
257
257
|
<v-card v-if="infoDialog" width="400">
|
|
258
258
|
<v-card-title class="headline">Metadata</v-card-title>
|
|
259
259
|
<v-card-text>
|
|
@@ -274,7 +274,7 @@
|
|
|
274
274
|
</v-card-actions>
|
|
275
275
|
</v-card>
|
|
276
276
|
</v-dialog>
|
|
277
|
-
<v-dialog v-model="keyDialog" :fullscreen="isMobile">
|
|
277
|
+
<v-dialog v-model="keyDialog" :fullscreen="isMobile" v-click-outside="keyDialog = false">
|
|
278
278
|
<v-card v-if="keyDialog" width="400">
|
|
279
279
|
<v-card-text>
|
|
280
280
|
<v-container>
|