@backstage/core-components 0.16.0-next.2 → 0.16.1
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 +45 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.16.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/theme@0.6.2
|
|
9
|
+
- @backstage/config@1.3.0
|
|
10
|
+
- @backstage/core-plugin-api@1.10.1
|
|
11
|
+
- @backstage/errors@1.2.5
|
|
12
|
+
- @backstage/version-bridge@1.0.10
|
|
13
|
+
|
|
14
|
+
## 0.16.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- dc409c5: The SupportButton component will now be hidden if no support config is specified in app-config
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 0f18340: Change core component Table tool bar search box to the a appropriate Search icon and text
|
|
23
|
+
- af9097e: Adds the ability to mock a media query per break point and to change the active break point during a test. Usage example:
|
|
24
|
+
|
|
25
|
+
```ts
|
|
26
|
+
const { set } = mockBreakpoint({
|
|
27
|
+
initialBreakpoint: 'md',
|
|
28
|
+
queryBreakpointMap: {
|
|
29
|
+
'(min-width:1500px)': 'xl',
|
|
30
|
+
'(min-width:1000px)': 'lg',
|
|
31
|
+
'(min-width:700px)': 'md',
|
|
32
|
+
'(min-width:400px)': 'sm',
|
|
33
|
+
'(min-width:0px)': 'xs',
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
// assertions for when the active break point is "md"
|
|
37
|
+
set('lg');
|
|
38
|
+
// assertions for when the active break point is "lg"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
- @backstage/config@1.3.0
|
|
43
|
+
- @backstage/theme@0.6.1
|
|
44
|
+
- @backstage/core-plugin-api@1.10.1
|
|
45
|
+
- @backstage/errors@1.2.5
|
|
46
|
+
- @backstage/version-bridge@1.0.10
|
|
47
|
+
|
|
3
48
|
## 0.16.0-next.2
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-components",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Core components used by Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library"
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/config": "1.
|
|
70
|
-
"@backstage/core-plugin-api": "1.10.
|
|
71
|
-
"@backstage/errors": "1.2.
|
|
72
|
-
"@backstage/theme": "0.6.
|
|
73
|
-
"@backstage/version-bridge": "1.0.10",
|
|
69
|
+
"@backstage/config": "^1.3.0",
|
|
70
|
+
"@backstage/core-plugin-api": "^1.10.1",
|
|
71
|
+
"@backstage/errors": "^1.2.5",
|
|
72
|
+
"@backstage/theme": "^0.6.2",
|
|
73
|
+
"@backstage/version-bridge": "^1.0.10",
|
|
74
74
|
"@date-io/core": "^1.3.13",
|
|
75
75
|
"@material-table/core": "^3.1.0",
|
|
76
76
|
"@material-ui/core": "^4.12.2",
|
|
@@ -105,10 +105,10 @@
|
|
|
105
105
|
"zod": "^3.22.4"
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
|
-
"@backstage/app-defaults": "1.5.
|
|
109
|
-
"@backstage/cli": "0.29.
|
|
110
|
-
"@backstage/core-app-api": "1.15.
|
|
111
|
-
"@backstage/test-utils": "1.7.
|
|
108
|
+
"@backstage/app-defaults": "^1.5.14",
|
|
109
|
+
"@backstage/cli": "^0.29.2",
|
|
110
|
+
"@backstage/core-app-api": "^1.15.2",
|
|
111
|
+
"@backstage/test-utils": "^1.7.2",
|
|
112
112
|
"@testing-library/dom": "^10.0.0",
|
|
113
113
|
"@testing-library/jest-dom": "^6.0.0",
|
|
114
114
|
"@testing-library/user-event": "^14.0.0",
|