@backstage/plugin-home 0.5.5 → 0.5.7-next.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/CHANGELOG.md +13 -0
- package/dist/index.d.ts +14 -14
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.5.7-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-home-react@0.1.3-next.0
|
|
9
|
+
- @backstage/core-plugin-api@1.6.0-next.0
|
|
10
|
+
- @backstage/core-components@0.13.5-next.0
|
|
11
|
+
- @backstage/catalog-model@1.4.1
|
|
12
|
+
- @backstage/config@1.0.8
|
|
13
|
+
- @backstage/theme@0.4.1
|
|
14
|
+
- @backstage/plugin-catalog-react@1.8.3-next.0
|
|
15
|
+
|
|
3
16
|
## 0.5.5
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ declare const homePlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
|
40
40
|
declare const HomepageCompositionRoot: (props: {
|
|
41
41
|
title?: string | undefined;
|
|
42
42
|
children?: react.ReactNode;
|
|
43
|
-
}) => JSX.Element;
|
|
43
|
+
}) => react.JSX.Element;
|
|
44
44
|
/** @public */
|
|
45
45
|
declare const ComponentAccordion: (props: {
|
|
46
46
|
title?: string | undefined;
|
|
@@ -49,7 +49,7 @@ declare const ComponentAccordion: (props: {
|
|
|
49
49
|
Actions?: (() => JSX.Element) | undefined;
|
|
50
50
|
Settings?: (() => JSX.Element) | undefined;
|
|
51
51
|
ContextProvider?: ((props: any) => JSX.Element) | undefined;
|
|
52
|
-
}) => JSX.Element;
|
|
52
|
+
}) => react.JSX.Element;
|
|
53
53
|
/** @public */
|
|
54
54
|
declare const ComponentTabs: (props: {
|
|
55
55
|
title: string;
|
|
@@ -57,19 +57,19 @@ declare const ComponentTabs: (props: {
|
|
|
57
57
|
label: string;
|
|
58
58
|
Component: () => JSX.Element;
|
|
59
59
|
}[];
|
|
60
|
-
}) => JSX.Element;
|
|
60
|
+
}) => react.JSX.Element;
|
|
61
61
|
/** @public */
|
|
62
62
|
declare const ComponentTab: (props: {
|
|
63
63
|
title: string;
|
|
64
64
|
Content: () => JSX.Element;
|
|
65
65
|
ContextProvider?: ((props: any) => JSX.Element) | undefined;
|
|
66
|
-
}) => JSX.Element;
|
|
66
|
+
}) => react.JSX.Element;
|
|
67
67
|
/**
|
|
68
68
|
* A component to display a playful greeting for the user.
|
|
69
69
|
*
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
declare const WelcomeTitle: ({ language }: WelcomeTitleLanguageProps) => JSX.Element;
|
|
72
|
+
declare const WelcomeTitle: ({ language }: WelcomeTitleLanguageProps) => react.JSX.Element;
|
|
73
73
|
/**
|
|
74
74
|
* A component to display a company logo for the user.
|
|
75
75
|
*
|
|
@@ -78,23 +78,23 @@ declare const WelcomeTitle: ({ language }: WelcomeTitleLanguageProps) => JSX.Ele
|
|
|
78
78
|
declare const HomePageCompanyLogo: (props: {
|
|
79
79
|
logo?: react.ReactNode;
|
|
80
80
|
className?: string | undefined;
|
|
81
|
-
}) => JSX.Element;
|
|
81
|
+
}) => react.JSX.Element;
|
|
82
82
|
/** @public */
|
|
83
83
|
declare const HomePageRandomJoke: (props: _backstage_plugin_home_react.CardExtensionProps<{
|
|
84
84
|
defaultCategory?: "any" | "programming" | undefined;
|
|
85
|
-
}>) => JSX.Element;
|
|
85
|
+
}>) => react.JSX.Element;
|
|
86
86
|
/**
|
|
87
87
|
* A component to display a list of tools for the user.
|
|
88
88
|
*
|
|
89
89
|
* @public
|
|
90
90
|
*/
|
|
91
|
-
declare const HomePageToolkit: (props: _backstage_plugin_home_react.CardExtensionProps<ToolkitContentProps>) => JSX.Element;
|
|
91
|
+
declare const HomePageToolkit: (props: _backstage_plugin_home_react.CardExtensionProps<ToolkitContentProps>) => react.JSX.Element;
|
|
92
92
|
/**
|
|
93
93
|
* A component to display a list of starred entities for the user.
|
|
94
94
|
*
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
declare const HomePageStarredEntities: (props: _backstage_plugin_home_react.CardExtensionProps<unknown>) => JSX.Element;
|
|
97
|
+
declare const HomePageStarredEntities: (props: _backstage_plugin_home_react.CardExtensionProps<unknown>) => react.JSX.Element;
|
|
98
98
|
/**
|
|
99
99
|
* A component to display a configurable list of clocks for various time zones.
|
|
100
100
|
*
|
|
@@ -103,7 +103,7 @@ declare const HomePageStarredEntities: (props: _backstage_plugin_home_react.Card
|
|
|
103
103
|
declare const HeaderWorldClock: (props: {
|
|
104
104
|
clockConfigs: ClockConfig[];
|
|
105
105
|
customTimeFormat?: Intl.DateTimeFormatOptions | undefined;
|
|
106
|
-
}) => JSX.Element | null;
|
|
106
|
+
}) => react.JSX.Element | null;
|
|
107
107
|
|
|
108
108
|
/**
|
|
109
109
|
* Layout configuration that can be passed to the custom home page.
|
|
@@ -197,7 +197,7 @@ type CustomHomepageGridProps = {
|
|
|
197
197
|
*
|
|
198
198
|
* @public
|
|
199
199
|
*/
|
|
200
|
-
declare const CustomHomepageGrid: (props: CustomHomepageGridProps) => JSX.Element;
|
|
200
|
+
declare const CustomHomepageGrid: (props: CustomHomepageGridProps) => react__default.JSX.Element;
|
|
201
201
|
|
|
202
202
|
/** @public */
|
|
203
203
|
declare const TemplateBackstageLogo: (props: {
|
|
@@ -205,10 +205,10 @@ declare const TemplateBackstageLogo: (props: {
|
|
|
205
205
|
svg: string;
|
|
206
206
|
path: string;
|
|
207
207
|
};
|
|
208
|
-
}) => JSX.Element;
|
|
208
|
+
}) => react__default.JSX.Element;
|
|
209
209
|
|
|
210
210
|
/** @public */
|
|
211
|
-
declare const TemplateBackstageLogoIcon: () => JSX.Element;
|
|
211
|
+
declare const TemplateBackstageLogoIcon: () => react__default.JSX.Element;
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
214
|
* @public
|
|
@@ -259,6 +259,6 @@ declare const SettingsModal: (props: {
|
|
|
259
259
|
close: Function;
|
|
260
260
|
componentName?: string | undefined;
|
|
261
261
|
children: JSX.Element;
|
|
262
|
-
}) => JSX.Element;
|
|
262
|
+
}) => react.JSX.Element;
|
|
263
263
|
|
|
264
264
|
export { Breakpoint, CardConfig, CardExtensionProps, CardLayout, CardSettings, ClockConfig, ComponentAccordion, ComponentParts, ComponentRenderer, ComponentTab, ComponentTabs, CustomHomepageGrid, CustomHomepageGridProps, HeaderWorldClock, HomePageCompanyLogo, HomePageRandomJoke, HomePageStarredEntities, HomePageToolkit, HomepageCompositionRoot, LayoutConfiguration, RendererProps, SettingsModal, TemplateBackstageLogo, TemplateBackstageLogoIcon, Tool, ToolkitContentProps, WelcomeTitle, WelcomeTitleLanguageProps, createCardExtension, homePlugin };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-home",
|
|
3
3
|
"description": "A Backstage plugin that helps you build a home page",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.7-next.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@backstage/catalog-model": "^1.4.1",
|
|
37
37
|
"@backstage/config": "^1.0.8",
|
|
38
|
-
"@backstage/core-components": "^0.13.
|
|
39
|
-
"@backstage/core-plugin-api": "^1.
|
|
40
|
-
"@backstage/plugin-catalog-react": "^1.8.
|
|
41
|
-
"@backstage/plugin-home-react": "^0.1.
|
|
38
|
+
"@backstage/core-components": "^0.13.5-next.0",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.6.0-next.0",
|
|
40
|
+
"@backstage/plugin-catalog-react": "^1.8.3-next.0",
|
|
41
|
+
"@backstage/plugin-home-react": "^0.1.3-next.0",
|
|
42
42
|
"@backstage/theme": "^0.4.1",
|
|
43
43
|
"@material-ui/core": "^4.12.2",
|
|
44
44
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/cli": "^0.22.
|
|
64
|
-
"@backstage/core-app-api": "^1.
|
|
65
|
-
"@backstage/dev-utils": "^1.0.
|
|
66
|
-
"@backstage/test-utils": "^1.4.
|
|
63
|
+
"@backstage/cli": "^0.22.12-next.0",
|
|
64
|
+
"@backstage/core-app-api": "^1.10.0-next.0",
|
|
65
|
+
"@backstage/dev-utils": "^1.0.20-next.0",
|
|
66
|
+
"@backstage/test-utils": "^1.4.3-next.0",
|
|
67
67
|
"@testing-library/dom": "^8.0.0",
|
|
68
68
|
"@testing-library/jest-dom": "^5.10.1",
|
|
69
69
|
"@testing-library/react": "^12.1.3",
|