@atlaskit/page-header 10.3.5 → 10.4.0
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 +16 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +15 -12
- package/report.api.md +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/page-header
|
|
2
2
|
|
|
3
|
+
## 10.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 10.3.6
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [`f8a61ff6218`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f8a61ff6218) - Enrol @atlaskit/page-header on push model consumption in Jira
|
|
18
|
+
|
|
3
19
|
## 10.3.5
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-header",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.4.0",
|
|
4
4
|
"description": "A page header defines the top of a page. It contains a title and can be optionally combined with breadcrumbs buttons, search, and filters.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -17,15 +17,18 @@
|
|
|
17
17
|
"homepage": "https://atlassian.design/components/page-header",
|
|
18
18
|
"atlassian": {
|
|
19
19
|
"team": "Design System Team",
|
|
20
|
-
"releaseModel": "
|
|
20
|
+
"releaseModel": "continuous",
|
|
21
|
+
"productPushConsumption": [
|
|
22
|
+
"jira"
|
|
23
|
+
],
|
|
21
24
|
"website": {
|
|
22
25
|
"name": "Page header",
|
|
23
26
|
"category": "Components"
|
|
24
27
|
}
|
|
25
28
|
},
|
|
26
29
|
"dependencies": {
|
|
27
|
-
"@atlaskit/theme": "^12.
|
|
28
|
-
"@atlaskit/tokens": "^1.
|
|
30
|
+
"@atlaskit/theme": "^12.5.0",
|
|
31
|
+
"@atlaskit/tokens": "^1.3.0",
|
|
29
32
|
"@babel/runtime": "^7.0.0",
|
|
30
33
|
"@emotion/react": "^11.7.1"
|
|
31
34
|
},
|
|
@@ -34,16 +37,16 @@
|
|
|
34
37
|
"react-dom": "^16.8.0"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
37
|
-
"@atlaskit/breadcrumbs": "^11.
|
|
38
|
-
"@atlaskit/button": "^16.
|
|
40
|
+
"@atlaskit/breadcrumbs": "^11.10.0",
|
|
41
|
+
"@atlaskit/button": "^16.7.0",
|
|
39
42
|
"@atlaskit/docs": "*",
|
|
40
|
-
"@atlaskit/ds-lib": "^2.0
|
|
41
|
-
"@atlaskit/inline-edit": "^12.
|
|
42
|
-
"@atlaskit/page": "^12.
|
|
43
|
-
"@atlaskit/section-message": "^6.
|
|
44
|
-
"@atlaskit/select": "^16.
|
|
43
|
+
"@atlaskit/ds-lib": "^2.2.0",
|
|
44
|
+
"@atlaskit/inline-edit": "^12.3.0",
|
|
45
|
+
"@atlaskit/page": "^12.3.0",
|
|
46
|
+
"@atlaskit/section-message": "^6.4.0",
|
|
47
|
+
"@atlaskit/select": "^16.2.0",
|
|
45
48
|
"@atlaskit/ssr": "*",
|
|
46
|
-
"@atlaskit/textfield": "^5.
|
|
49
|
+
"@atlaskit/textfield": "^5.4.0",
|
|
47
50
|
"@atlaskit/visual-regression": "*",
|
|
48
51
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
49
52
|
"@testing-library/react": "^12.1.5",
|
package/report.api.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
### Table of contents
|
|
9
9
|
|
|
10
10
|
- [Main Entry Types](#main-entry-types)
|
|
11
|
+
- [Peer Dependencies](#peer-dependencies)
|
|
11
12
|
|
|
12
13
|
### Main Entry Types
|
|
13
14
|
|
|
@@ -46,3 +47,16 @@ type PageHeaderProps = {
|
|
|
46
47
|
```
|
|
47
48
|
|
|
48
49
|
<!--SECTION END: Main Entry Types-->
|
|
50
|
+
|
|
51
|
+
### Peer Dependencies
|
|
52
|
+
|
|
53
|
+
<!--SECTION START: Peer Dependencies-->
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"react": "^16.8.0",
|
|
58
|
+
"react-dom": "^16.8.0"
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
<!--SECTION END: Peer Dependencies-->
|