b33bb24b5a
* Add NumberField component to @backstage/ui Signed-off-by: James Brooks <jamesbrooks@spotify.com> * Address review feedback on NumberField Signed-off-by: James Brooks <jamesbrooks@spotify.com> * Fix NumberField CSS formatting Signed-off-by: James Brooks <jamesbrooks@spotify.com> * Add increment/decrement buttons to NumberField Signed-off-by: James Brooks <jamesbrooks@spotify.com> * Fix NumberField looking disabled at min/max bounds Signed-off-by: James Brooks <jamesbrooks@spotify.com> --------- Signed-off-by: James Brooks <jamesbrooks@spotify.com>
Changesets
Hello and welcome! This folder has been automatically generated by @changesets/cli, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it in our repository
We have a quick list of common questions to get you started engaging with this project in our documentation
Backstage UI Changesets
For @backstage/ui changesets, use this format:
---
'@backstage/ui': patch
---
Brief summary
Optional description with code examples.
**Migration:**
Migration instructions (breaking changes only).
**Affected components:** Button, Card
Required:
- End with
**Affected components:**+ comma-separated component names - For breaking changes: Add
**Migration:**section - No headings (
##,###) inside - use bold markers
Examples:
Fixed button hover state
**Affected components:** Button
**BREAKING**: New Table API
**Migration:**
Update imports:
```diff
- import { Table } from '@backstage/ui';
+ import { Table, type ColumnConfig } from '@backstage/ui';
```
Affected components: Table