@backstage/ui 0.0.0-nightly-20251223024706 → 0.0.0-nightly-20251224024505

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,6 +1,6 @@
1
1
  # @backstage/ui
2
2
 
3
- ## 0.0.0-nightly-20251223024706
3
+ ## 0.0.0-nightly-20251224024505
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -8,6 +8,21 @@
8
8
 
9
9
  ### Patch Changes
10
10
 
11
+ - 1880402: Fixes app background color on dark mode.
12
+ - 9c76682: build(deps-dev): bump `storybook` from 10.1.9 to 10.1.10
13
+ - b4a4911: Fixed SearchField `startCollapsed` prop not working correctly in Backstage UI. The field now properly starts in a collapsed state, expands when clicked and focused, and collapses back when unfocused with no input. Also fixed CSS logic to work correctly in all layout contexts (flex row, flex column, and regular containers).
14
+
15
+ Affected components: SearchField
16
+
17
+ ## 0.11.0-next.0
18
+
19
+ ### Minor Changes
20
+
21
+ - 4ea1d15: **BREAKING**: Renamed CSS variable `--bui-bg` to `--bui-bg-surface-0` for consistency.
22
+
23
+ ### Patch Changes
24
+
25
+ - 1880402: Fixes app background color on dark mode.
11
26
  - 9c76682: build(deps-dev): bump `storybook` from 10.1.9 to 10.1.10
12
27
  - b4a4911: Fixed SearchField `startCollapsed` prop not working correctly in Backstage UI. The field now properly starts in a collapsed state, expands when clicked and focused, and collapses back when unfocused with no input. Also fixed CSS logic to work correctly in all layout contexts (flex row, flex column, and regular containers).
13
28
 
package/css/styles.css CHANGED
@@ -100,7 +100,7 @@
100
100
  --bui-gray-6: #7b7b7b;
101
101
  --bui-gray-7: #9e9e9e;
102
102
  --bui-gray-8: #b4b4b4;
103
- --bui-bg-surface-0: var(--bui-black);
103
+ --bui-bg-surface-0: #333;
104
104
  --bui-bg-surface-1: var(--bui-gray-1);
105
105
  --bui-bg-surface-2: var(--bui-gray-2);
106
106
  --bui-bg-surface-3: var(--bui-gray-3);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/ui",
3
- "version": "0.0.0-nightly-20251223024706",
3
+ "version": "0.0.0-nightly-20251224024505",
4
4
  "backstage": {
5
5
  "role": "web-library"
6
6
  },
@@ -46,7 +46,7 @@
46
46
  "react-aria-components": "^1.13.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@backstage/cli": "0.0.0-nightly-20251223024706",
49
+ "@backstage/cli": "0.0.0-nightly-20251224024505",
50
50
  "@types/react": "^18.0.0",
51
51
  "@types/react-dom": "^18.0.0",
52
52
  "chalk": "^5.4.1",