Bump @nextcloud/eslint-config from 6.1.2 to 7.0.1

Bumps [@nextcloud/eslint-config](https://github.com/nextcloud/eslint-config) from 6.1.2 to 7.0.1.
- [Release notes](https://github.com/nextcloud/eslint-config/releases)
- [Changelog](https://github.com/nextcloud/eslint-config/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/eslint-config/compare/v6.1.2...v7.0.1)

---
updated-dependencies:
- dependency-name: "@nextcloud/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-01-17 13:30:24 +00:00 committed by John Molakvoæ
parent 3648c97e18
commit c84495e031
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
18 changed files with 713 additions and 868 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

1540
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -63,7 +63,7 @@
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^6.1.2",
"@nextcloud/eslint-config": "^7.0.1",
"@nextcloud/stylelint-config": "^2.1.2",
"@nextcloud/webpack-vue-config": "^4.3.1",
"@vue/test-utils": "^1.3.0",

View File

@ -24,7 +24,8 @@
<Content app-name="photos">
<AppNavigation>
<template #list>
<AppNavigationItem :to="{name: 'timeline'}"
<AppNavigationItem
:to="{name: 'timeline'}"
class="app-navigation__photos"
:title="t('photos', 'Your photos')"
icon="icon-yourphotos"
@ -34,11 +35,13 @@
<AppNavigationItem :to="{name: 'thisday'}" :title="t('photos', 'On this day')" icon="icon-calendar-dark" />
<AppNavigationItem :to="{name: 'albums'}" :title="t('photos', 'Your folders')" icon="icon-files-dark" />
<AppNavigationItem :to="{name: 'shared'}" :title="t('photos', 'Shared with you')" icon="icon-share" />
<AppNavigationItem v-if="areTagsInstalled"
<AppNavigationItem
v-if="areTagsInstalled"
:to="{name: 'tags'}"
:title="t('photos', 'Tagged photos')"
icon="icon-tag" />
<AppNavigationItem v-if="showLocationMenuEntry"
<AppNavigationItem
v-if="showLocationMenuEntry"
:to="{name: 'maps'}"
:title="t('photos', 'Locations')"
icon="icon-address" />

View File

@ -21,7 +21,8 @@
-->
<template>
<a :class="{
<a
:class="{
'file--cropped': croppedLayout,
}"
class="file"
@ -41,7 +42,8 @@
@load="onLoad"
@error="onError">
<svg v-if="!loaded || error"
<svg
v-if="!loaded || error"
:key="`${item.injected.basename}-svg`"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 32 32"

View File

@ -22,7 +22,8 @@
-->
<template>
<FolderTagPreview :id="item.injected.fileid"
<FolderTagPreview
:id="item.injected.fileid"
:name="item.injected.basename"
:path="item.injected.filename"
:file-list="previewFiles" />

View File

@ -21,17 +21,20 @@
-->
<template>
<router-link :class="{'folder--clear': isEmpty}"
<router-link
:class="{'folder--clear': isEmpty}"
class="folder"
:to="to"
:aria-label="ariaLabel">
<!-- Images preview -->
<transition name="fade">
<div v-show="loaded"
<div
v-show="loaded"
:class="`folder-content--grid-${previewList.length}`"
class="folder-content"
role="none">
<img v-for="file in previewList"
<img
v-for="file in previewList"
:key="file.fileid"
:src="generateImgSrc(file)"
alt=""
@ -40,9 +43,9 @@
</div>
</transition>
<div
class="folder-name">
<span :class="[!isEmpty ? 'icon-white' : 'icon-dark', icon]"
<div class="folder-name">
<span
:class="[!isEmpty ? 'icon-white' : 'icon-dark', icon]"
class="folder-name__icon"
role="img" />
<p :id="ariaUuid" class="folder-name__name">

View File

@ -22,7 +22,8 @@
-->
<template>
<FolderTagPreview :id="item.injected.id"
<FolderTagPreview
:id="item.injected.id"
icon="icon-tag"
:name="item.injected.displayName"
:path="item.injected.displayName"

View File

@ -32,7 +32,8 @@
<!-- Folder content -->
<div v-else-if="!loading">
<Navigation v-if="folder"
<Navigation
v-if="folder"
key="navigation"
v-bind="folder"
:root-title="rootTitle"