@backstage/plugin-app 0.4.1 → 0.4.2

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @backstage/plugin-app
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 5783b63: Updated the `PageLayout` swap to pass a clickable `titleLink` on the `PluginHeader`, resolved from the plugin's root route ref.
8
+ - Updated dependencies
9
+ - @backstage/ui@0.13.1
10
+ - @backstage/frontend-plugin-api@0.15.1
11
+
3
12
  ## 0.4.1
4
13
 
5
14
  ### Patch Changes
@@ -1,3 +1,5 @@
1
+ import { cloneElement } from 'react';
2
+
1
3
  const EMPTY_ACTIONS = new Array();
2
4
  class DefaultPluginHeaderActionsApi {
3
5
  constructor(actionsByPlugin) {
@@ -14,7 +16,12 @@ class DefaultPluginHeaderActionsApi {
14
16
  pluginActions = [];
15
17
  actionsByPlugin.set(action.pluginId, pluginActions);
16
18
  }
17
- pluginActions.push(action.element);
19
+ const index = pluginActions.length;
20
+ pluginActions.push(
21
+ cloneElement(action.element, {
22
+ key: action.element.key ?? `plugin-header-action-${action.pluginId}-${index}`
23
+ })
24
+ );
18
25
  }
19
26
  return new DefaultPluginHeaderActionsApi(actionsByPlugin);
20
27
  }
@@ -1 +1 @@
1
- {"version":3,"file":"DefaultPluginHeaderActionsApi.esm.js","sources":["../../../src/apis/PluginHeaderActionsApi/DefaultPluginHeaderActionsApi.tsx"],"sourcesContent":["/*\n * Copyright 2026 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { JSX } from 'react';\nimport { type PluginHeaderActionsApi } from '@backstage/frontend-plugin-api';\n\n// Stable reference\nconst EMPTY_ACTIONS = new Array<JSX.Element | null>();\n\ntype ActionInput = {\n element: JSX.Element;\n pluginId: string;\n};\n\n/**\n * Default implementation of PluginHeaderActionsApi.\n *\n * @internal\n */\nexport class DefaultPluginHeaderActionsApi implements PluginHeaderActionsApi {\n constructor(\n private readonly actionsByPlugin: Map<string, Array<JSX.Element | null>>,\n ) {}\n\n getPluginHeaderActions(pluginId: string): Array<JSX.Element | null> {\n return this.actionsByPlugin.get(pluginId) ?? EMPTY_ACTIONS;\n }\n\n static fromActions(\n actions: Array<ActionInput>,\n ): DefaultPluginHeaderActionsApi {\n const actionsByPlugin = new Map<string, Array<JSX.Element | null>>();\n\n for (const action of actions) {\n let pluginActions = actionsByPlugin.get(action.pluginId);\n if (!pluginActions) {\n pluginActions = [];\n actionsByPlugin.set(action.pluginId, pluginActions);\n }\n\n pluginActions.push(action.element);\n }\n\n return new DefaultPluginHeaderActionsApi(actionsByPlugin);\n }\n}\n"],"names":[],"mappings":"AAoBA,MAAM,aAAA,GAAgB,IAAI,KAAA,EAA0B;AAY7C,MAAM,6BAAA,CAAgE;AAAA,EAC3E,YACmB,eAAA,EACjB;AADiB,IAAA,IAAA,CAAA,eAAA,GAAA,eAAA;AAAA,EAChB;AAAA,EAEH,uBAAuB,QAAA,EAA6C;AAClE,IAAA,OAAO,IAAA,CAAK,eAAA,CAAgB,GAAA,CAAI,QAAQ,CAAA,IAAK,aAAA;AAAA,EAC/C;AAAA,EAEA,OAAO,YACL,OAAA,EAC+B;AAC/B,IAAA,MAAM,eAAA,uBAAsB,GAAA,EAAuC;AAEnE,IAAA,KAAA,MAAW,UAAU,OAAA,EAAS;AAC5B,MAAA,IAAI,aAAA,GAAgB,eAAA,CAAgB,GAAA,CAAI,MAAA,CAAO,QAAQ,CAAA;AACvD,MAAA,IAAI,CAAC,aAAA,EAAe;AAClB,QAAA,aAAA,GAAgB,EAAC;AACjB,QAAA,eAAA,CAAgB,GAAA,CAAI,MAAA,CAAO,QAAA,EAAU,aAAa,CAAA;AAAA,MACpD;AAEA,MAAA,aAAA,CAAc,IAAA,CAAK,OAAO,OAAO,CAAA;AAAA,IACnC;AAEA,IAAA,OAAO,IAAI,8BAA8B,eAAe,CAAA;AAAA,EAC1D;AACF;;;;"}
1
+ {"version":3,"file":"DefaultPluginHeaderActionsApi.esm.js","sources":["../../../src/apis/PluginHeaderActionsApi/DefaultPluginHeaderActionsApi.tsx"],"sourcesContent":["/*\n * Copyright 2026 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { cloneElement, JSX } from 'react';\nimport { type PluginHeaderActionsApi } from '@backstage/frontend-plugin-api';\n\n// Stable reference\nconst EMPTY_ACTIONS = new Array<JSX.Element | null>();\n\ntype ActionInput = {\n element: JSX.Element;\n pluginId: string;\n};\n\n/**\n * Default implementation of PluginHeaderActionsApi.\n *\n * @internal\n */\nexport class DefaultPluginHeaderActionsApi implements PluginHeaderActionsApi {\n constructor(\n private readonly actionsByPlugin: Map<string, Array<JSX.Element | null>>,\n ) {}\n\n getPluginHeaderActions(pluginId: string): Array<JSX.Element | null> {\n return this.actionsByPlugin.get(pluginId) ?? EMPTY_ACTIONS;\n }\n\n static fromActions(\n actions: Array<ActionInput>,\n ): DefaultPluginHeaderActionsApi {\n const actionsByPlugin = new Map<string, Array<JSX.Element | null>>();\n\n for (const action of actions) {\n let pluginActions = actionsByPlugin.get(action.pluginId);\n if (!pluginActions) {\n pluginActions = [];\n actionsByPlugin.set(action.pluginId, pluginActions);\n }\n\n const index = pluginActions.length;\n pluginActions.push(\n cloneElement(action.element, {\n key:\n action.element.key ??\n `plugin-header-action-${action.pluginId}-${index}`,\n }),\n );\n }\n\n return new DefaultPluginHeaderActionsApi(actionsByPlugin);\n }\n}\n"],"names":[],"mappings":";;AAoBA,MAAM,aAAA,GAAgB,IAAI,KAAA,EAA0B;AAY7C,MAAM,6BAAA,CAAgE;AAAA,EAC3E,YACmB,eAAA,EACjB;AADiB,IAAA,IAAA,CAAA,eAAA,GAAA,eAAA;AAAA,EAChB;AAAA,EAEH,uBAAuB,QAAA,EAA6C;AAClE,IAAA,OAAO,IAAA,CAAK,eAAA,CAAgB,GAAA,CAAI,QAAQ,CAAA,IAAK,aAAA;AAAA,EAC/C;AAAA,EAEA,OAAO,YACL,OAAA,EAC+B;AAC/B,IAAA,MAAM,eAAA,uBAAsB,GAAA,EAAuC;AAEnE,IAAA,KAAA,MAAW,UAAU,OAAA,EAAS;AAC5B,MAAA,IAAI,aAAA,GAAgB,eAAA,CAAgB,GAAA,CAAI,MAAA,CAAO,QAAQ,CAAA;AACvD,MAAA,IAAI,CAAC,aAAA,EAAe;AAClB,QAAA,aAAA,GAAgB,EAAC;AACjB,QAAA,eAAA,CAAgB,GAAA,CAAI,MAAA,CAAO,QAAA,EAAU,aAAa,CAAA;AAAA,MACpD;AAEA,MAAA,MAAM,QAAQ,aAAA,CAAc,MAAA;AAC5B,MAAA,aAAA,CAAc,IAAA;AAAA,QACZ,YAAA,CAAa,OAAO,OAAA,EAAS;AAAA,UAC3B,GAAA,EACE,OAAO,OAAA,CAAQ,GAAA,IACf,wBAAwB,MAAA,CAAO,QAAQ,IAAI,KAAK,CAAA;AAAA,SACnD;AAAA,OACH;AAAA,IACF;AAEA,IAAA,OAAO,IAAI,8BAA8B,eAAe,CAAA;AAAA,EAC1D;AACF;;;;"}
@@ -37,7 +37,15 @@ const PageLayout = SwappableComponentBlueprint.make({
37
37
  params: (define) => define({
38
38
  component: PageLayout$1,
39
39
  loader: () => (props) => {
40
- const { title, icon, noHeader, headerActions, tabs, children } = props;
40
+ const {
41
+ title,
42
+ icon,
43
+ noHeader,
44
+ titleLink,
45
+ headerActions,
46
+ tabs,
47
+ children
48
+ } = props;
41
49
  const parentPath = useResolvedPath(".").pathname.replace(/\/$/, "");
42
50
  const resolvedTabs = useMemo(
43
51
  () => tabs?.map((tab) => ({
@@ -56,6 +64,7 @@ const PageLayout = SwappableComponentBlueprint.make({
56
64
  {
57
65
  title,
58
66
  icon,
67
+ titleLink,
59
68
  tabs: resolvedTabs,
60
69
  customActions: headerActions
61
70
  }
@@ -1 +1 @@
1
- {"version":3,"file":"components.esm.js","sources":["../../src/extensions/components.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport {\n NotFoundErrorPage as SwappableNotFoundErrorPage,\n Progress as SwappableProgress,\n ErrorDisplay as SwappableErrorDisplay,\n PageLayout as SwappablePageLayout,\n type PageLayoutProps,\n} from '@backstage/frontend-plugin-api';\nimport { SwappableComponentBlueprint } from '@backstage/plugin-app-react';\nimport {\n ErrorPage,\n ErrorPanel,\n Progress as ProgressComponent,\n} from '@backstage/core-components';\nimport { PluginHeader } from '@backstage/ui';\nimport Button from '@material-ui/core/Button';\nimport { useMemo } from 'react';\nimport { useResolvedPath } from 'react-router-dom';\n\nexport const Progress = SwappableComponentBlueprint.make({\n name: 'core-progress',\n params: define =>\n define({\n component: SwappableProgress,\n loader: () => ProgressComponent,\n }),\n});\n\nexport const NotFoundErrorPage = SwappableComponentBlueprint.make({\n name: 'core-not-found-error-page',\n params: define =>\n define({\n component: SwappableNotFoundErrorPage,\n loader: () => () =>\n <ErrorPage status=\"404\" statusMessage=\"PAGE NOT FOUND\" />,\n }),\n});\n\nexport const ErrorDisplay = SwappableComponentBlueprint.make({\n name: 'core-error-display',\n params: define =>\n define({\n component: SwappableErrorDisplay,\n loader: () => props => {\n const { plugin, error, resetError } = props;\n const title = `Error in ${plugin?.id}`;\n return (\n <ErrorPanel title={title} error={error} defaultExpanded>\n <Button variant=\"outlined\" onClick={resetError}>\n Retry\n </Button>\n </ErrorPanel>\n );\n },\n }),\n});\n\nexport const PageLayout = SwappableComponentBlueprint.make({\n name: 'core-page-layout',\n params: define =>\n define({\n component: SwappablePageLayout,\n loader: () => (props: PageLayoutProps) => {\n const { title, icon, noHeader, headerActions, tabs, children } = props;\n // TODO(Rugvip): Different solution to this path handling would be good\n const parentPath = useResolvedPath('.').pathname.replace(/\\/$/, '');\n const resolvedTabs = useMemo(\n () =>\n tabs?.map(tab => ({\n ...tab,\n href: tab.href.startsWith('/')\n ? tab.href\n : `${parentPath}/${tab.href}`.replace(/\\/{2,}/g, '/'),\n matchStrategy: 'prefix' as const,\n })),\n [tabs, parentPath],\n );\n\n if (noHeader) {\n return <>{children}</>;\n }\n\n return (\n <>\n <PluginHeader\n title={title}\n icon={icon}\n tabs={resolvedTabs}\n customActions={headerActions}\n />\n {children}\n </>\n );\n },\n }),\n});\n"],"names":["SwappableProgress","ProgressComponent","SwappableNotFoundErrorPage","SwappableErrorDisplay","SwappablePageLayout"],"mappings":";;;;;;;;;AAiCO,MAAM,QAAA,GAAW,4BAA4B,IAAA,CAAK;AAAA,EACvD,IAAA,EAAM,eAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWA,UAAA;AAAA,IACX,QAAQ,MAAMC;AAAA,GACf;AACL,CAAC;AAEM,MAAM,iBAAA,GAAoB,4BAA4B,IAAA,CAAK;AAAA,EAChE,IAAA,EAAM,2BAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWC,mBAAA;AAAA,IACX,MAAA,EAAQ,MAAM,sBACZ,GAAA,CAAC,aAAU,MAAA,EAAO,KAAA,EAAM,eAAc,gBAAA,EAAiB;AAAA,GAC1D;AACL,CAAC;AAEM,MAAM,YAAA,GAAe,4BAA4B,IAAA,CAAK;AAAA,EAC3D,IAAA,EAAM,oBAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWC,cAAA;AAAA,IACX,MAAA,EAAQ,MAAM,CAAA,KAAA,KAAS;AACrB,MAAA,MAAM,EAAE,MAAA,EAAQ,KAAA,EAAO,UAAA,EAAW,GAAI,KAAA;AACtC,MAAA,MAAM,KAAA,GAAQ,CAAA,SAAA,EAAY,MAAA,EAAQ,EAAE,CAAA,CAAA;AACpC,MAAA,uBACE,GAAA,CAAC,UAAA,EAAA,EAAW,KAAA,EAAc,KAAA,EAAc,eAAA,EAAe,IAAA,EACrD,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAO,OAAA,EAAQ,UAAA,EAAW,OAAA,EAAS,UAAA,EAAY,mBAEhD,CAAA,EACF,CAAA;AAAA,IAEJ;AAAA,GACD;AACL,CAAC;AAEM,MAAM,UAAA,GAAa,4BAA4B,IAAA,CAAK;AAAA,EACzD,IAAA,EAAM,kBAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWC,YAAA;AAAA,IACX,MAAA,EAAQ,MAAM,CAAC,KAAA,KAA2B;AACxC,MAAA,MAAM,EAAE,KAAA,EAAO,IAAA,EAAM,UAAU,aAAA,EAAe,IAAA,EAAM,UAAS,GAAI,KAAA;AAEjE,MAAA,MAAM,aAAa,eAAA,CAAgB,GAAG,EAAE,QAAA,CAAS,OAAA,CAAQ,OAAO,EAAE,CAAA;AAClE,MAAA,MAAM,YAAA,GAAe,OAAA;AAAA,QACnB,MACE,IAAA,EAAM,GAAA,CAAI,CAAA,GAAA,MAAQ;AAAA,UAChB,GAAG,GAAA;AAAA,UACH,MAAM,GAAA,CAAI,IAAA,CAAK,UAAA,CAAW,GAAG,IACzB,GAAA,CAAI,IAAA,GACJ,CAAA,EAAG,UAAU,IAAI,GAAA,CAAI,IAAI,CAAA,CAAA,CAAG,OAAA,CAAQ,WAAW,GAAG,CAAA;AAAA,UACtD,aAAA,EAAe;AAAA,SACjB,CAAE,CAAA;AAAA,QACJ,CAAC,MAAM,UAAU;AAAA,OACnB;AAEA,MAAA,IAAI,QAAA,EAAU;AACZ,QAAA,uCAAU,QAAA,EAAS,CAAA;AAAA,MACrB;AAEA,MAAA,uBACE,IAAA,CAAA,QAAA,EAAA,EACE,QAAA,EAAA;AAAA,wBAAA,GAAA;AAAA,UAAC,YAAA;AAAA,UAAA;AAAA,YACC,KAAA;AAAA,YACA,IAAA;AAAA,YACA,IAAA,EAAM,YAAA;AAAA,YACN,aAAA,EAAe;AAAA;AAAA,SACjB;AAAA,QACC;AAAA,OAAA,EACH,CAAA;AAAA,IAEJ;AAAA,GACD;AACL,CAAC;;;;"}
1
+ {"version":3,"file":"components.esm.js","sources":["../../src/extensions/components.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport {\n NotFoundErrorPage as SwappableNotFoundErrorPage,\n Progress as SwappableProgress,\n ErrorDisplay as SwappableErrorDisplay,\n PageLayout as SwappablePageLayout,\n type PageLayoutProps,\n} from '@backstage/frontend-plugin-api';\nimport { SwappableComponentBlueprint } from '@backstage/plugin-app-react';\nimport {\n ErrorPage,\n ErrorPanel,\n Progress as ProgressComponent,\n} from '@backstage/core-components';\nimport { PluginHeader } from '@backstage/ui';\nimport Button from '@material-ui/core/Button';\nimport { useMemo } from 'react';\nimport { useResolvedPath } from 'react-router-dom';\n\nexport const Progress = SwappableComponentBlueprint.make({\n name: 'core-progress',\n params: define =>\n define({\n component: SwappableProgress,\n loader: () => ProgressComponent,\n }),\n});\n\nexport const NotFoundErrorPage = SwappableComponentBlueprint.make({\n name: 'core-not-found-error-page',\n params: define =>\n define({\n component: SwappableNotFoundErrorPage,\n loader: () => () =>\n <ErrorPage status=\"404\" statusMessage=\"PAGE NOT FOUND\" />,\n }),\n});\n\nexport const ErrorDisplay = SwappableComponentBlueprint.make({\n name: 'core-error-display',\n params: define =>\n define({\n component: SwappableErrorDisplay,\n loader: () => props => {\n const { plugin, error, resetError } = props;\n const title = `Error in ${plugin?.id}`;\n return (\n <ErrorPanel title={title} error={error} defaultExpanded>\n <Button variant=\"outlined\" onClick={resetError}>\n Retry\n </Button>\n </ErrorPanel>\n );\n },\n }),\n});\n\nexport const PageLayout = SwappableComponentBlueprint.make({\n name: 'core-page-layout',\n params: define =>\n define({\n component: SwappablePageLayout,\n loader: () => (props: PageLayoutProps) => {\n const {\n title,\n icon,\n noHeader,\n titleLink,\n headerActions,\n tabs,\n children,\n } = props;\n // TODO(Rugvip): Different solution to this path handling would be good\n const parentPath = useResolvedPath('.').pathname.replace(/\\/$/, '');\n const resolvedTabs = useMemo(\n () =>\n tabs?.map(tab => ({\n ...tab,\n href: tab.href.startsWith('/')\n ? tab.href\n : `${parentPath}/${tab.href}`.replace(/\\/{2,}/g, '/'),\n matchStrategy: 'prefix' as const,\n })),\n [tabs, parentPath],\n );\n\n if (noHeader) {\n return <>{children}</>;\n }\n\n return (\n <>\n <PluginHeader\n title={title}\n icon={icon}\n titleLink={titleLink}\n tabs={resolvedTabs}\n customActions={headerActions}\n />\n {children}\n </>\n );\n },\n }),\n});\n"],"names":["SwappableProgress","ProgressComponent","SwappableNotFoundErrorPage","SwappableErrorDisplay","SwappablePageLayout"],"mappings":";;;;;;;;;AAiCO,MAAM,QAAA,GAAW,4BAA4B,IAAA,CAAK;AAAA,EACvD,IAAA,EAAM,eAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWA,UAAA;AAAA,IACX,QAAQ,MAAMC;AAAA,GACf;AACL,CAAC;AAEM,MAAM,iBAAA,GAAoB,4BAA4B,IAAA,CAAK;AAAA,EAChE,IAAA,EAAM,2BAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWC,mBAAA;AAAA,IACX,MAAA,EAAQ,MAAM,sBACZ,GAAA,CAAC,aAAU,MAAA,EAAO,KAAA,EAAM,eAAc,gBAAA,EAAiB;AAAA,GAC1D;AACL,CAAC;AAEM,MAAM,YAAA,GAAe,4BAA4B,IAAA,CAAK;AAAA,EAC3D,IAAA,EAAM,oBAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWC,cAAA;AAAA,IACX,MAAA,EAAQ,MAAM,CAAA,KAAA,KAAS;AACrB,MAAA,MAAM,EAAE,MAAA,EAAQ,KAAA,EAAO,UAAA,EAAW,GAAI,KAAA;AACtC,MAAA,MAAM,KAAA,GAAQ,CAAA,SAAA,EAAY,MAAA,EAAQ,EAAE,CAAA,CAAA;AACpC,MAAA,uBACE,GAAA,CAAC,UAAA,EAAA,EAAW,KAAA,EAAc,KAAA,EAAc,eAAA,EAAe,IAAA,EACrD,QAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EAAO,OAAA,EAAQ,UAAA,EAAW,OAAA,EAAS,UAAA,EAAY,mBAEhD,CAAA,EACF,CAAA;AAAA,IAEJ;AAAA,GACD;AACL,CAAC;AAEM,MAAM,UAAA,GAAa,4BAA4B,IAAA,CAAK;AAAA,EACzD,IAAA,EAAM,kBAAA;AAAA,EACN,MAAA,EAAQ,YACN,MAAA,CAAO;AAAA,IACL,SAAA,EAAWC,YAAA;AAAA,IACX,MAAA,EAAQ,MAAM,CAAC,KAAA,KAA2B;AACxC,MAAA,MAAM;AAAA,QACJ,KAAA;AAAA,QACA,IAAA;AAAA,QACA,QAAA;AAAA,QACA,SAAA;AAAA,QACA,aAAA;AAAA,QACA,IAAA;AAAA,QACA;AAAA,OACF,GAAI,KAAA;AAEJ,MAAA,MAAM,aAAa,eAAA,CAAgB,GAAG,EAAE,QAAA,CAAS,OAAA,CAAQ,OAAO,EAAE,CAAA;AAClE,MAAA,MAAM,YAAA,GAAe,OAAA;AAAA,QACnB,MACE,IAAA,EAAM,GAAA,CAAI,CAAA,GAAA,MAAQ;AAAA,UAChB,GAAG,GAAA;AAAA,UACH,MAAM,GAAA,CAAI,IAAA,CAAK,UAAA,CAAW,GAAG,IACzB,GAAA,CAAI,IAAA,GACJ,CAAA,EAAG,UAAU,IAAI,GAAA,CAAI,IAAI,CAAA,CAAA,CAAG,OAAA,CAAQ,WAAW,GAAG,CAAA;AAAA,UACtD,aAAA,EAAe;AAAA,SACjB,CAAE,CAAA;AAAA,QACJ,CAAC,MAAM,UAAU;AAAA,OACnB;AAEA,MAAA,IAAI,QAAA,EAAU;AACZ,QAAA,uCAAU,QAAA,EAAS,CAAA;AAAA,MACrB;AAEA,MAAA,uBACE,IAAA,CAAA,QAAA,EAAA,EACE,QAAA,EAAA;AAAA,wBAAA,GAAA;AAAA,UAAC,YAAA;AAAA,UAAA;AAAA,YACC,KAAA;AAAA,YACA,IAAA;AAAA,YACA,SAAA;AAAA,YACA,IAAA,EAAM,YAAA;AAAA,YACN,aAAA,EAAe;AAAA;AAAA,SACjB;AAAA,QACC;AAAA,OAAA,EACH,CAAA;AAAA,IAEJ;AAAA,GACD;AACL,CAAC;;;;"}
@@ -1,5 +1,5 @@
1
1
  var name = "@backstage/plugin-app";
2
- var version = "0.4.1";
2
+ var version = "0.4.2";
3
3
  var backstage = {
4
4
  role: "frontend-plugin",
5
5
  pluginId: "app",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "app",
@@ -66,13 +66,13 @@
66
66
  "@backstage/core-components": "^0.18.8",
67
67
  "@backstage/core-plugin-api": "^1.12.4",
68
68
  "@backstage/filter-predicates": "^0.1.1",
69
- "@backstage/frontend-plugin-api": "^0.15.0",
69
+ "@backstage/frontend-plugin-api": "^0.15.1",
70
70
  "@backstage/integration-react": "^1.2.16",
71
71
  "@backstage/plugin-app-react": "^0.2.1",
72
72
  "@backstage/plugin-permission-react": "^0.4.41",
73
73
  "@backstage/theme": "^0.7.2",
74
74
  "@backstage/types": "^1.2.2",
75
- "@backstage/ui": "^0.13.0",
75
+ "@backstage/ui": "^0.13.1",
76
76
  "@backstage/version-bridge": "^1.0.12",
77
77
  "@material-ui/core": "^4.9.13",
78
78
  "@material-ui/icons": "^4.9.1",