@scm-manager/ui-extensions 2.47.0 → 2.48.0
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 +5 -0
- package/package.json +2 -2
package/build/index.d.ts
CHANGED
|
@@ -645,6 +645,9 @@ declare type LoginForm = RenderableExtensionPointDefinition<"login.form">;
|
|
|
645
645
|
declare type RepositoryDeleteButton = RenderableExtensionPointDefinition<"repository.deleteButton", {
|
|
646
646
|
repository: Repository;
|
|
647
647
|
}>;
|
|
648
|
+
declare type RepositoryDangerZone = RenderableExtensionPointDefinition<"repository.dangerZone", {
|
|
649
|
+
repository: Repository;
|
|
650
|
+
}>;
|
|
648
651
|
declare type RepositoryInformationTableBottom = RenderableExtensionPointDefinition<"repository.information.table.bottom", {
|
|
649
652
|
repository: Repository;
|
|
650
653
|
}>;
|
|
@@ -793,6 +796,7 @@ type extensionPoints_LinkMenuProps = LinkMenuProps;
|
|
|
793
796
|
type extensionPoints_FileViewActionBarOverflowMenu = FileViewActionBarOverflowMenu;
|
|
794
797
|
type extensionPoints_LoginForm = LoginForm;
|
|
795
798
|
type extensionPoints_RepositoryDeleteButton = RepositoryDeleteButton;
|
|
799
|
+
type extensionPoints_RepositoryDangerZone = RepositoryDangerZone;
|
|
796
800
|
type extensionPoints_RepositoryInformationTableBottom = RepositoryInformationTableBottom;
|
|
797
801
|
type extensionPoints_UserInformationTableBottom = UserInformationTableBottom;
|
|
798
802
|
type extensionPoints_GroupInformationTableBottom = GroupInformationTableBottom;
|
|
@@ -893,6 +897,7 @@ declare namespace extensionPoints {
|
|
|
893
897
|
extensionPoints_FileViewActionBarOverflowMenu as FileViewActionBarOverflowMenu,
|
|
894
898
|
extensionPoints_LoginForm as LoginForm,
|
|
895
899
|
extensionPoints_RepositoryDeleteButton as RepositoryDeleteButton,
|
|
900
|
+
extensionPoints_RepositoryDangerZone as RepositoryDangerZone,
|
|
896
901
|
extensionPoints_RepositoryInformationTableBottom as RepositoryInformationTableBottom,
|
|
897
902
|
extensionPoints_UserInformationTableBottom as UserInformationTableBottom,
|
|
898
903
|
extensionPoints_GroupInformationTableBottom as GroupInformationTableBottom,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scm-manager/ui-extensions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.48.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "jest"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@scm-manager/ui-types": "2.
|
|
20
|
+
"@scm-manager/ui-types": "2.48.0",
|
|
21
21
|
"react": "^17.0.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|