@backstage/core-components 0.7.1 → 0.7.5

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,70 @@
1
1
  # @backstage/core-components
2
2
 
3
+ ## 0.7.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 157530187a: Pin sidebar by default for easier navigation
8
+ - Updated dependencies
9
+ - @backstage/errors@0.1.5
10
+ - @backstage/core-plugin-api@0.2.1
11
+
12
+ ## 0.7.4
13
+
14
+ ### Patch Changes
15
+
16
+ - 274a4fc633: Add Props Icon for Sidebar Item SidebarSearchField and Settings
17
+ - 682945e233: Changing the `Header` styles to use more theme variables. With this the title `font-size` will not change on resizing the window.
18
+ - 892c1d9202: Update OAuthAdapter to create identity.token from identity.idToken if it does not exist, and prevent overwrites to identity.toke. Update login page commonProvider to prefer .token over .idToken
19
+ - Updated dependencies
20
+ - @backstage/core-plugin-api@0.2.0
21
+
22
+ ## 0.7.3
23
+
24
+ ### Patch Changes
25
+
26
+ - c11a37710a: Added a warning variant to `DismissableBanner` component. If you are using a
27
+ custom theme, you will need to add the optional `palette.banner.warning` color,
28
+ otherwise this variant will fall back to the `palette.banner.error` color.
29
+ - 5826c17b7d: Allow for `cellStyle` property on `TableColumn` to be a function as well as `React.CSSProperties` as per the Material UI Table component
30
+ - e0861b92ff: Add new way to override color selection to progress bar/gauge components.
31
+
32
+ `Gauge`, `LinearGauge` and `GaugeCard` all accept a `getColor` prop,
33
+ which is a function of the type:
34
+
35
+ ```ts
36
+ export type GaugePropsGetColor = (args: {
37
+ palette: Palette;
38
+ value: number;
39
+ inverse?: boolean;
40
+ max?: number;
41
+ }) => string;
42
+ ```
43
+
44
+ Return a standard CSS color string (e.g. "red", "#f02020"), and the gauge will
45
+ be set to that color.
46
+
47
+ If the prop is omitted, the default implementation is unchanged from previous
48
+ versions.
49
+
50
+ - 021986e8a3: fixed route resolving (issue #7741) when user cannot select a tab in any of the tabbed pages (like the Catalog page) if it shares the same initial letters as a preceding tab. (i.e. where tab with a path of /ci is followed by a path of /ci-2, user cannot select /ci-2 as /ci will always be selected first).
51
+ - a39a2105ef: Add Theme Overrides for Sidebar
52
+ - Updated dependencies
53
+ - @backstage/theme@0.2.13
54
+ - @backstage/core-plugin-api@0.1.13
55
+
56
+ ## 0.7.2
57
+
58
+ ### Patch Changes
59
+
60
+ - afd5c82ce1: Updates the d3 dependencies
61
+ - c6c2942daa: Deprecated `DismissbleBannerClassKey` and fixed the typo to make `DismissableBannerClassKey`
62
+ - Updated dependencies
63
+ - @backstage/config@0.1.11
64
+ - @backstage/theme@0.2.12
65
+ - @backstage/errors@0.1.4
66
+ - @backstage/core-plugin-api@0.1.12
67
+
3
68
  ## 0.7.1
4
69
 
5
70
  ### Patch Changes