@scm-manager/ui-extensions 3.6.1 → 3.7.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 +11 -0
- package/package.json +3 -3
package/build/index.d.ts
CHANGED
|
@@ -311,6 +311,9 @@ declare type RepositoryOverviewListOptionsExtensionPoint = ExtensionPointDefinit
|
|
|
311
311
|
pageSize?: number;
|
|
312
312
|
showArchived?: boolean;
|
|
313
313
|
}>;
|
|
314
|
+
declare type DocumentTitleExtensionPoint = ExtensionPointDefinition<"document.title", {
|
|
315
|
+
documentTitle: string | ((originalTitle: string) => string);
|
|
316
|
+
}>;
|
|
314
317
|
declare type AdminNavigation = RenderableExtensionPointDefinition<"admin.navigation", {
|
|
315
318
|
links: Links;
|
|
316
319
|
url: string;
|
|
@@ -658,6 +661,10 @@ declare type RepositoryDangerZone = RenderableExtensionPointDefinition<"reposito
|
|
|
658
661
|
declare type RepositoryInformationTableBottom = RenderableExtensionPointDefinition<"repository.information.table.bottom", {
|
|
659
662
|
repository: Repository;
|
|
660
663
|
}>;
|
|
664
|
+
declare type RepositoryBanner = RenderableExtensionPointDefinition<"repository.banner", {
|
|
665
|
+
repository: Repository;
|
|
666
|
+
url: string;
|
|
667
|
+
}>;
|
|
661
668
|
declare type UserInformationTableBottom = RenderableExtensionPointDefinition<"user.information.table.bottom", {
|
|
662
669
|
user: User;
|
|
663
670
|
}>;
|
|
@@ -746,6 +753,7 @@ type extensionPoints_RepositoryOverviewTitle = RepositoryOverviewTitle;
|
|
|
746
753
|
type extensionPoints_RepositoryOverviewSubtitleExtension = RepositoryOverviewSubtitleExtension;
|
|
747
754
|
type extensionPoints_RepositoryOverviewSubtitle = RepositoryOverviewSubtitle;
|
|
748
755
|
type extensionPoints_RepositoryOverviewListOptionsExtensionPoint = RepositoryOverviewListOptionsExtensionPoint;
|
|
756
|
+
type extensionPoints_DocumentTitleExtensionPoint = DocumentTitleExtensionPoint;
|
|
749
757
|
type extensionPoints_AdminNavigation = AdminNavigation;
|
|
750
758
|
type extensionPoints_AdminRoute = AdminRoute;
|
|
751
759
|
type extensionPoints_AdminSetting = AdminSetting;
|
|
@@ -807,6 +815,7 @@ type extensionPoints_LoginForm = LoginForm;
|
|
|
807
815
|
type extensionPoints_RepositoryDeleteButton = RepositoryDeleteButton;
|
|
808
816
|
type extensionPoints_RepositoryDangerZone = RepositoryDangerZone;
|
|
809
817
|
type extensionPoints_RepositoryInformationTableBottom = RepositoryInformationTableBottom;
|
|
818
|
+
type extensionPoints_RepositoryBanner = RepositoryBanner;
|
|
810
819
|
type extensionPoints_UserInformationTableBottom = UserInformationTableBottom;
|
|
811
820
|
type extensionPoints_GroupInformationTableBottom = GroupInformationTableBottom;
|
|
812
821
|
type extensionPoints_BranchListMenu = BranchListMenu;
|
|
@@ -849,6 +858,7 @@ declare namespace extensionPoints {
|
|
|
849
858
|
extensionPoints_RepositoryOverviewSubtitleExtension as RepositoryOverviewSubtitleExtension,
|
|
850
859
|
extensionPoints_RepositoryOverviewSubtitle as RepositoryOverviewSubtitle,
|
|
851
860
|
extensionPoints_RepositoryOverviewListOptionsExtensionPoint as RepositoryOverviewListOptionsExtensionPoint,
|
|
861
|
+
extensionPoints_DocumentTitleExtensionPoint as DocumentTitleExtensionPoint,
|
|
852
862
|
extensionPoints_AdminNavigation as AdminNavigation,
|
|
853
863
|
extensionPoints_AdminRoute as AdminRoute,
|
|
854
864
|
extensionPoints_AdminSetting as AdminSetting,
|
|
@@ -910,6 +920,7 @@ declare namespace extensionPoints {
|
|
|
910
920
|
extensionPoints_RepositoryDeleteButton as RepositoryDeleteButton,
|
|
911
921
|
extensionPoints_RepositoryDangerZone as RepositoryDangerZone,
|
|
912
922
|
extensionPoints_RepositoryInformationTableBottom as RepositoryInformationTableBottom,
|
|
923
|
+
extensionPoints_RepositoryBanner as RepositoryBanner,
|
|
913
924
|
extensionPoints_UserInformationTableBottom as UserInformationTableBottom,
|
|
914
925
|
extensionPoints_GroupInformationTableBottom as GroupInformationTableBottom,
|
|
915
926
|
extensionPoints_BranchListMenu as BranchListMenu,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scm-manager/ui-extensions",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"react": "^17.0.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@scm-manager/ui-types": "3.
|
|
25
|
-
"@scm-manager/ui-tests": "3.
|
|
24
|
+
"@scm-manager/ui-types": "3.7.0",
|
|
25
|
+
"@scm-manager/ui-tests": "3.7.0",
|
|
26
26
|
"@scm-manager/babel-preset": "^2.13.1",
|
|
27
27
|
"@scm-manager/eslint-config": "^2.17.0",
|
|
28
28
|
"@scm-manager/jest-preset": "^2.14.1",
|