Skip to content

Commit cf07c8a

Browse files
Merge pull request #57709 from nextcloud/dependabot/npm_and_yarn/stable33/nextcloud/eslint-config-9.0.0-rc.7
[stable33] build(deps-dev): bump @nextcloud/eslint-config from 9.0.0-rc.6 to 9.0.0-rc.7
2 parents 4752464 + a264777 commit cf07c8a

File tree

185 files changed

+661
-660
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+661
-660
lines changed

apps/dav/src/components/AbsenceForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<label for="replacement-search-input">{{ t('dav', 'Out of office replacement (optional)') }}</label>
2323
<NcSelectUsers
2424
v-model="replacementUser"
25-
input-id="replacement-search-input"
25+
inputId="replacement-search-input"
2626
:loading="searchLoading"
2727
:placeholder="t('dav', 'Name of the replacement')"
2828
:options="options"

apps/dav/src/components/AvailabilityForm.vue

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,20 @@ async function save() {
7676
<CalendarAvailability
7777
v-model:slots="slots"
7878
:loading="loading"
79-
:l10n-to="t('dav', 'to')"
80-
:l10n-delete-slot="t('dav', 'Delete slot')"
81-
:l10n-empty-day="t('dav', 'No working hours set')"
82-
:l10n-add-slot="t('dav', 'Add slot')"
83-
:l10n-week-day-list-label="t('dav', 'Weekdays')"
84-
:l10n-monday="t('dav', 'Monday')"
85-
:l10n-tuesday="t('dav', 'Tuesday')"
86-
:l10n-wednesday="t('dav', 'Wednesday')"
87-
:l10n-thursday="t('dav', 'Thursday')"
88-
:l10n-friday="t('dav', 'Friday')"
89-
:l10n-saturday="t('dav', 'Saturday')"
90-
:l10n-sunday="t('dav', 'Sunday')"
91-
:l10n-start-picker-label="(dayName) => t('dav', 'Pick a start time for {dayName}', { dayName })"
92-
:l10n-end-picker-label="(dayName) => t('dav', 'Pick a end time for {dayName}', { dayName })" />
79+
:l10nTo="t('dav', 'to')"
80+
:l10nDeleteSlot="t('dav', 'Delete slot')"
81+
:l10nEmptyDay="t('dav', 'No working hours set')"
82+
:l10nAddSlot="t('dav', 'Add slot')"
83+
:l10nWeekDayListLabel="t('dav', 'Weekdays')"
84+
:l10nMonday="t('dav', 'Monday')"
85+
:l10nTuesday="t('dav', 'Tuesday')"
86+
:l10nWednesday="t('dav', 'Wednesday')"
87+
:l10nThursday="t('dav', 'Thursday')"
88+
:l10nFriday="t('dav', 'Friday')"
89+
:l10nSaturday="t('dav', 'Saturday')"
90+
:l10nSunday="t('dav', 'Sunday')"
91+
:l10nStartPickerLabel="(dayName) => t('dav', 'Pick a start time for {dayName}', { dayName })"
92+
:l10nEndPickerLabel="(dayName) => t('dav', 'Pick a end time for {dayName}', { dayName })" />
9393

9494
<NcCheckboxRadioSwitch v-model="automated">
9595
{{ t('dav', 'Automatically set user status to "Do not disturb" outside of availability to mute all notifications.') }}

apps/dav/src/components/ExampleContactSettings.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<template>
77
<div class="example-contact-settings">
88
<NcCheckboxRadioSwitch
9-
:model-value="enableDefaultContact"
9+
:modelValue="enableDefaultContact"
1010
type="switch"
11-
@update:model-value="updateEnableDefaultContact">
11+
@update:modelValue="updateEnableDefaultContact">
1212
{{ t('dav', "Add example contact to user's address book when they first log in") }}
1313
</NcCheckboxRadioSwitch>
1414
<div v-if="enableDefaultContact" class="example-contact-settings__buttons">

apps/dav/src/components/ExampleEventSettings.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<template>
77
<div class="example-event-settings">
88
<NcCheckboxRadioSwitch
9-
:model-value="createExampleEvent"
9+
:modelValue="createExampleEvent"
1010
:disabled="savingConfig"
1111
type="switch"
12-
@update:model-value="updateCreateExampleEvent">
12+
@update:modelValue="updateCreateExampleEvent">
1313
{{ t('dav', "Add example event to user's calendar when they first log in") }}
1414
</NcCheckboxRadioSwitch>
1515
<div

apps/dav/src/views/CalDavSettings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<template>
66
<NcSettingsSection
77
:name="t('dav', 'Calendar server')"
8-
:doc-url="userSyncCalendarsDocUrl">
8+
:docUrl="userSyncCalendarsDocUrl">
99
<!-- Can use v-html as:
1010
- t passes the translated string through DOMPurify.sanitize,
1111
- replacement strings are not user-controlled. -->

apps/encryption/src/components/SettingsAdminRecoveryKey.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async function onSubmit() {
7878
required
7979
name="confirmPassword"
8080
:error="!!confirmPassword && !passwordMatch"
81-
:helper-text="(passwordMatch || !confirmPassword) ? '' : t('encryption', 'Passwords fields do not match')"
81+
:helperText="(passwordMatch || !confirmPassword) ? '' : t('encryption', 'Passwords fields do not match')"
8282
:label="t('encryption', 'Repeat recovery key password')" />
8383

8484
<NcButton type="submit" :variant="recoveryEnabled ? 'error' : 'primary'">

apps/encryption/src/components/SettingsAdminRecoveryKeyChange.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ async function onSubmit() {
7777
required
7878
name="confirmPassword"
7979
:error="!passwordMatch && !!confirmPassword"
80-
:helper-text="(passwordMatch || !confirmPassword) ? '' : t('encryption', 'Passwords fields do not match')"
80+
:helperText="(passwordMatch || !confirmPassword) ? '' : t('encryption', 'Passwords fields do not match')"
8181
:label="t('encryption', 'Repeat new recovery key password')" />
8282

8383
<NcButton type="submit" variant="primary">

apps/encryption/src/views/SettingsPersonal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async function reloadStatus() {
5151

5252
<SettingsPersonalChangePrivateKey
5353
v-else-if="initialized === InitStatus.InitExecuted"
54-
:recovery-enabled-for-user
54+
:recoveryEnabledForUser
5555
@updated="reloadStatus" />
5656
<SettingsPersonalEnableRecovery
5757
v-else-if="personalSettings.recoveryEnabled && personalSettings.privateKeySet"

apps/federatedfilesharing/src/components/AdminSettings.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ async function updateAppConfig(key: string, value: boolean) {
156156
<NcSettingsSection
157157
:name="t('federatedfilesharing', 'Federated Cloud Sharing')"
158158
:description="t('federatedfilesharing', 'Adjust how people can share between servers. This includes shares between people on this server as well if they are using federated sharing.')"
159-
:doc-url="sharingFederatedDocUrl">
159+
:docUrl="sharingFederatedDocUrl">
160160
<NcCheckboxRadioSwitch
161161
v-model="state.outgoingServer2serverShareEnabled"
162162
type="switch">
@@ -188,17 +188,17 @@ async function updateAppConfig(key: string, value: boolean) {
188188

189189
<NcCheckboxRadioSwitch
190190
type="switch"
191-
:model-value="state.lookupServerEnabled"
191+
:modelValue="state.lookupServerEnabled"
192192
disabled
193-
@update:model-value="showLookupServerConfirmation">
193+
@update:modelValue="showLookupServerConfirmation">
194194
{{ t('federatedfilesharing', 'Search global and public address book for people') }}
195195
</NcCheckboxRadioSwitch>
196196

197197
<NcCheckboxRadioSwitch
198198
type="switch"
199-
:model-value="state.lookupServerUploadEnabled"
199+
:modelValue="state.lookupServerUploadEnabled"
200200
disabled
201-
@update:model-value="showLookupServerUploadConfirmation">
201+
@update:modelValue="showLookupServerUploadConfirmation">
202202
{{ t('federatedfilesharing', 'Allow people to publish their data to a global and public address book') }}
203203
</NcCheckboxRadioSwitch>
204204
</fieldset>

apps/federatedfilesharing/src/components/PersonalSettings.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,18 +76,18 @@ async function copyCloudId(): Promise<void> {
7676
<NcSettingsSection
7777
:name="t('federatedfilesharing', 'Federated Cloud')"
7878
:description="t('federatedfilesharing', 'You can share with anyone who uses a {productName} server or other Open Cloud Mesh (OCM) compatible servers and services! Just put their Federated Cloud ID in the share dialog. It looks like person@cloud.example.com', { productName })"
79-
:doc-url="docUrlFederated">
79+
:docUrl="docUrlFederated">
8080
<NcInputField
8181
class="federated-cloud__cloud-id"
8282
readonly
8383
:label="t('federatedfilesharing', 'Your Federated Cloud ID')"
84-
:model-value="cloudId"
84+
:modelValue="cloudId"
8585
:success="isCopied"
86-
show-trailing-button
87-
:trailing-button-label="copyLinkTooltip"
88-
@trailing-button-click="copyCloudId">
86+
showTrailingButton
87+
:trailingButtonLabel="copyLinkTooltip"
88+
@trailingButtonClick="copyCloudId">
8989
<template #trailing-button-icon>
90-
<IconCheck v-if="isCopied" :size="20" fill-color="var(--color-border-success)" />
90+
<IconCheck v-if="isCopied" :size="20" fillColor="var(--color-border-success)" />
9191
<IconClipboard v-else :size="20" />
9292
</template>
9393
</NcInputField>

0 commit comments

Comments
 (0)