Skip to content

Commit 9704da2

Browse files
authored
Merge pull request #2972 from nextcloud/refactor/vue3
refactor: Migrate components for Vue 3 compatibility
2 parents 07759e3 + f377c36 commit 9704da2

59 files changed

Lines changed: 1360 additions & 2151 deletions

Some content is hidden

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

REUSE.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
1+
# SPDX-FileCopyrightText: 2024-2026 Nextcloud GmbH and Nextcloud contributors
22
# SPDX-License-Identifier: AGPL-3.0-or-later
33
version = 1
44
SPDX-PackageName = "forms"
@@ -8,25 +8,25 @@ SPDX-PackageDownloadLocation = "https://github.com/nextcloud/forms"
88
[[annotations]]
99
path = ["l10n/**.js", "l10n/**.json", "js/**.js.map", "js/**.js"]
1010
precedence = "aggregate"
11-
SPDX-FileCopyrightText = "2019-2024 Nextcloud GmbH and Nextcloud contributors"
11+
SPDX-FileCopyrightText = "2019-2026 Nextcloud GmbH and Nextcloud contributors"
1212
SPDX-License-Identifier = "AGPL-3.0-or-later"
1313

1414
[[annotations]]
1515
path = ["composer.json", "composer.lock"]
1616
precedence = "aggregate"
17-
SPDX-FileCopyrightText = "2019-2024 Nextcloud GmbH and Nextcloud contributors"
17+
SPDX-FileCopyrightText = "2019-2026 Nextcloud GmbH and Nextcloud contributors"
1818
SPDX-License-Identifier = "AGPL-3.0-or-later"
1919

2020
[[annotations]]
2121
path = ["package-lock.json", "package.json"]
2222
precedence = "aggregate"
23-
SPDX-FileCopyrightText = "2018-2024 Nextcloud GmbH and Nextcloud contributors"
23+
SPDX-FileCopyrightText = "2018-2026 Nextcloud GmbH and Nextcloud contributors"
2424
SPDX-License-Identifier = "AGPL-3.0-or-later"
2525

2626
[[annotations]]
2727
path = ["vendor-bin/psalm/composer.json", "vendor-bin/psalm/composer.lock"]
2828
precedence = "aggregate"
29-
SPDX-FileCopyrightText = "2018-2024 Nextcloud GmbH and Nextcloud contributors"
29+
SPDX-FileCopyrightText = "2018-2026 Nextcloud GmbH and Nextcloud contributors"
3030
SPDX-License-Identifier = "AGPL-3.0-or-later"
3131

3232
[[annotations]]
@@ -38,7 +38,7 @@ SPDX-License-Identifier = "CC0-1.0"
3838
[[annotations]]
3939
path = ["vendor-bin/cs-fixer/composer.json", "vendor-bin/cs-fixer/composer.lock", "vendor-bin/psalm/composer.json", "vendor-bin/psalm/composer.lock", "vendor-bin/openapi-extractor/composer.json", "vendor-bin/openapi-extractor/composer.lock", "openapi.json"]
4040
precedence = "aggregate"
41-
SPDX-FileCopyrightText = "2021-2024 Nextcloud GmbH and Nextcloud contributors"
41+
SPDX-FileCopyrightText = "2021-2026 Nextcloud GmbH and Nextcloud contributors"
4242
SPDX-License-Identifier = "AGPL-3.0-or-later"
4343

4444
[[annotations]]
@@ -56,7 +56,7 @@ SPDX-License-Identifier = "AGPL-3.0-or-later"
5656
[[annotations]]
5757
path = ["img/*"]
5858
precedence = "aggregate"
59-
SPDX-FileCopyrightText = "2018-2024 Google LLC, 2016-2024 Nextcloud GmbH and Nextcloud contributors"
59+
SPDX-FileCopyrightText = "2018-2026 Google LLC, 2016-2024 Nextcloud GmbH and Nextcloud contributors"
6060
SPDX-License-Identifier = "Apache-2.0"
6161

6262
[[annotations]]

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
import { recommendedVue2 } from '@nextcloud/eslint-config'
6+
import { recommended } from '@nextcloud/eslint-config'
77
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
88

99
export default [
10-
...recommendedVue2,
10+
...recommended,
1111
eslintPluginPrettierRecommended,
1212
{
1313
rules: {

0 commit comments

Comments
 (0)