@backstage/core-app-api 1.0.4 → 1.0.6-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 CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/core-app-api
2
2
 
3
+ ## 1.0.6-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 744fea158b: Added `getSystemIcons()` function to the `AppContext` available through `useApp` that will pull a list of all the icons that have been registered in the App.
8
+ - bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
9
+ - Updated dependencies
10
+ - @backstage/core-plugin-api@1.0.6-next.0
11
+
12
+ ## 1.0.5
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+ - @backstage/core-plugin-api@1.0.5
18
+
19
+ ## 1.0.5-next.0
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @backstage/core-plugin-api@1.0.5-next.0
25
+
3
26
  ## 1.0.4
4
27
 
5
28
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -778,6 +778,10 @@ declare type AppContext = {
778
778
  * Get a common or custom icon for this app.
779
779
  */
780
780
  getSystemIcon(key: string): IconComponent | undefined;
781
+ /**
782
+ * Get a list of common and custom icons for this app.
783
+ */
784
+ getSystemIcons(): Record<string, IconComponent>;
781
785
  /**
782
786
  * Get the components registered for various purposes in the app.
783
787
  */