@backstage/ui 0.0.0-nightly-20251202024405 → 0.0.0-nightly-20251203024610
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 +53 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/ui
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20251203024610
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -61,6 +61,58 @@
|
|
|
61
61
|
|
|
62
62
|
Affected components: Column
|
|
63
63
|
|
|
64
|
+
## 0.10.0-next.1
|
|
65
|
+
|
|
66
|
+
### Minor Changes
|
|
67
|
+
|
|
68
|
+
- 16543fa: **Breaking change** The `Cell` component has been refactored to be a generic wrapper component that accepts `children` for custom cell content. The text-specific functionality (previously part of `Cell`) has been moved to a new `CellText` component.
|
|
69
|
+
|
|
70
|
+
### Migration Guide
|
|
71
|
+
|
|
72
|
+
If you were using `Cell` with text-specific props (`title`, `description`, `leadingIcon`, `href`), you need to update your code to use `CellText` instead:
|
|
73
|
+
|
|
74
|
+
**Before:**
|
|
75
|
+
|
|
76
|
+
```tsx
|
|
77
|
+
<Cell
|
|
78
|
+
title="My Title"
|
|
79
|
+
description="My description"
|
|
80
|
+
leadingIcon={<Icon />}
|
|
81
|
+
href="/path"
|
|
82
|
+
/>
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
**After:**
|
|
86
|
+
|
|
87
|
+
```tsx
|
|
88
|
+
<CellText
|
|
89
|
+
title="My Title"
|
|
90
|
+
description="My description"
|
|
91
|
+
leadingIcon={<Icon />}
|
|
92
|
+
href="/path"
|
|
93
|
+
/>
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
For custom cell content, use the new generic `Cell` component:
|
|
97
|
+
|
|
98
|
+
```tsx
|
|
99
|
+
<Cell>{/* Your custom content */}</Cell>
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Patch Changes
|
|
103
|
+
|
|
104
|
+
- 50b7927: Fixed Checkbox indicator showing checkmark color when unchecked.
|
|
105
|
+
|
|
106
|
+
Affected components: Checkbox
|
|
107
|
+
|
|
108
|
+
- 5bacf55: Fixed `ButtonIcon` incorrectly applying `className` to inner elements instead of only the root element.
|
|
109
|
+
|
|
110
|
+
Affected components: ButtonIcon
|
|
111
|
+
|
|
112
|
+
- a20d317: Added row selection support with visual state styling for hover, selected, and pressed states. Fixed checkbox rendering to only show for multi-select toggle mode.
|
|
113
|
+
|
|
114
|
+
Affected components: Table, TableHeader, Row, Column
|
|
115
|
+
|
|
64
116
|
## 0.9.1-next.0
|
|
65
117
|
|
|
66
118
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/ui",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20251203024610",
|
|
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-
|
|
49
|
+
"@backstage/cli": "0.0.0-nightly-20251203024610",
|
|
50
50
|
"@types/react": "^18.0.0",
|
|
51
51
|
"@types/react-dom": "^18.0.0",
|
|
52
52
|
"chalk": "^5.4.1",
|