@scm-manager/ui-extensions 4.0.0-REACT19-20250825-073633 → 4.0.0-REACT19-20250910-113025
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/build/index.d.ts +2 -5
- package/package.json +8 -4
package/build/index.d.ts
CHANGED
|
@@ -572,11 +572,9 @@ type RepositoryCreationInitialization = RenderableExtensionPointDefinition<"repo
|
|
|
572
572
|
type NamespaceTopLevelNavigation = RenderableExtensionPointDefinition<"namespace.navigation.topLevel", {
|
|
573
573
|
namespace: Namespace;
|
|
574
574
|
}>;
|
|
575
|
-
type NamespaceRoute =
|
|
576
|
-
namespace?: Namespace;
|
|
577
|
-
}>;
|
|
575
|
+
type NamespaceRoute = RenderableExtensionPointDefinition<"namespace.route">;
|
|
578
576
|
type NamespaceSetting = RenderableExtensionPointDefinition<"namespace.setting", {
|
|
579
|
-
namespace
|
|
577
|
+
namespace: Namespace;
|
|
580
578
|
}>;
|
|
581
579
|
type RepositoryTagDetailsInformation = RenderableExtensionPointDefinition<"repos.tag-details.information", {
|
|
582
580
|
repository: Repository;
|
|
@@ -592,7 +590,6 @@ type RepositorySourcesContentDownloadButton = RenderableExtensionPointDefinition
|
|
|
592
590
|
type RepositoryRoute = RouteExtensionPointDefinition<"repository.route", {
|
|
593
591
|
repository?: Repository;
|
|
594
592
|
indexLinks: Links;
|
|
595
|
-
urlForLinks: string;
|
|
596
593
|
}>;
|
|
597
594
|
type RepositoryRedirectProps = {
|
|
598
595
|
namespace: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scm-manager/ui-extensions",
|
|
3
|
-
"version": "4.0.0-REACT19-
|
|
3
|
+
"version": "4.0.0-REACT19-20250910-113025",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@scm-manager/babel-preset": "^2.13.1",
|
|
28
|
-
"@scm-manager/eslint-config": "^2.
|
|
28
|
+
"@scm-manager/eslint-config": "^2.18.2",
|
|
29
29
|
"@scm-manager/jest-preset": "^2.15.0-alpha1",
|
|
30
30
|
"@scm-manager/prettier-config": "^2.12.0",
|
|
31
31
|
"@scm-manager/tsconfig": "^2.13.0",
|
|
32
|
-
"@scm-manager/ui-types": "4.0.0-REACT19-
|
|
32
|
+
"@scm-manager/ui-types": "4.0.0-REACT19-20250910-113025",
|
|
33
33
|
"@testing-library/react": "16.3.0",
|
|
34
34
|
"@types/react": "^19.1.1",
|
|
35
35
|
"minimatch": "^10.0.3",
|
|
@@ -45,7 +45,11 @@
|
|
|
45
45
|
},
|
|
46
46
|
"prettier": "@scm-manager/prettier-config",
|
|
47
47
|
"eslintConfig": {
|
|
48
|
-
"extends": "@scm-manager/eslint-config"
|
|
48
|
+
"extends": "@scm-manager/eslint-config",
|
|
49
|
+
"rules": {
|
|
50
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
51
|
+
"no-dupe-class-members": "off"
|
|
52
|
+
}
|
|
49
53
|
},
|
|
50
54
|
"publishConfig": {
|
|
51
55
|
"access": "public"
|