Merge branch 'master' into scalable-sidebar-new-implementation

Signed-off-by: hiba-aldalaty <hibaaldalaty@gmail.com>
This commit is contained in:
hiba-aldalaty
2021-11-15 11:13:28 +00:00
442 changed files with 10932 additions and 3038 deletions
+8
View File
@@ -1,5 +1,13 @@
# @backstage/theme
## 0.2.13
### Patch Changes
- c11a37710a: Added a warning variant to `DismissableBanner` component. If you are using a
custom theme, you will need to add the optional `palette.banner.warning` color,
otherwise this variant will fall back to the `palette.banner.error` color.
## 0.2.12
### Patch Changes
+1 -1
View File
@@ -70,7 +70,7 @@ export type BackstagePaletteAdditions = {
error: string;
text: string;
link: string;
warning: string;
warning?: string;
};
};
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/theme",
"description": "material-ui theme for use with Backstage.",
"version": "0.2.12",
"version": "0.2.13",
"private": false,
"publishConfig": {
"access": "public",
@@ -31,7 +31,7 @@
"@material-ui/core": "^4.12.2"
},
"devDependencies": {
"@backstage/cli": "^0.8.1"
"@backstage/cli": "^0.8.2"
},
"files": [
"dist"
+1 -1
View File
@@ -82,7 +82,7 @@ export type BackstagePaletteAdditions = {
error: string;
text: string;
link: string;
warning: string;
warning?: string;
};
};