@backstage/core-components 0.12.5-next.2 → 0.12.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,25 @@
1
1
  # @backstage/core-components
2
2
 
3
+ ## 0.12.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 8bbf95b5507: Button labels in the sidebar (previously displayed in uppercase) will be displayed in the case that is provided without any transformations.
8
+ For example, a sidebar button with the label "Search" will appear as Search, "search" will appear as search, "SEARCH" will appear as SEARCH etc.
9
+ This can potentially affect any overriding styles previously applied to change the appearance of Button labels in the Sidebar.
10
+ - cb8ec97cdeb: Change black & white colors to be theme aware
11
+ - c10384a9235: Switch to using `LinkButton` instead of the deprecated `Button`
12
+ - 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
13
+ - e1aae2f5a0c: Updated the `aria-label` of the `HeaderTabs` component.
14
+ - 6a51a49a810: Fix bug where `<Table />` component would not take into account header styles defined in `columns[*].headerStyle`.
15
+ - fa004f66871: Use media queries to change layout instead of `isMobile` prop in `BackstagePage` component
16
+ - Updated dependencies
17
+ - @backstage/errors@1.1.5
18
+ - @backstage/core-plugin-api@1.5.0
19
+ - @backstage/config@1.0.7
20
+ - @backstage/theme@0.2.18
21
+ - @backstage/version-bridge@1.0.3
22
+
3
23
  ## 0.12.5-next.2
4
24
 
5
25
  ### Patch Changes
package/dist/index.esm.js CHANGED
@@ -5141,7 +5141,8 @@ const useTableStyles = makeStyles(
5141
5141
  );
5142
5142
  function convertColumns(columns, theme) {
5143
5143
  return columns.map((column) => {
5144
- const headerStyle = {};
5144
+ var _a;
5145
+ const headerStyle = (_a = column.headerStyle) != null ? _a : {};
5145
5146
  let cellStyle = column.cellStyle || {};
5146
5147
  if (column.highlight) {
5147
5148
  headerStyle.color = theme.palette.textContrast;