@atlaskit/page-header 12.1.8 → 12.1.9
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 +6 -7
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/page-header
|
|
2
2
|
|
|
3
|
+
## 12.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
3
9
|
## 12.1.8
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -708,7 +714,6 @@
|
|
|
708
714
|
|
|
709
715
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
710
716
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
711
|
-
|
|
712
717
|
- @atlaskit/docs@8.3.2
|
|
713
718
|
- @atlaskit/visual-regression@0.1.9
|
|
714
719
|
- @atlaskit/breadcrumbs@9.2.6
|
|
@@ -887,7 +892,6 @@
|
|
|
887
892
|
- [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
|
|
888
893
|
|
|
889
894
|
In this PR, we are:
|
|
890
|
-
|
|
891
895
|
- Re-introducing dist build folders
|
|
892
896
|
- Adding back cjs
|
|
893
897
|
- Replacing es5 by cjs and es2015 by esm
|
|
@@ -931,7 +935,6 @@
|
|
|
931
935
|
## 9.0.0
|
|
932
936
|
|
|
933
937
|
- [major][afb88684ad](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/afb88684ad):
|
|
934
|
-
|
|
935
938
|
- @atlaskit/page-header has been converted to Typescript. Typescript consumers will now get static
|
|
936
939
|
type safety. Flow types are no longer provided. No API or behavioural changes.
|
|
937
940
|
|
|
@@ -944,7 +947,6 @@
|
|
|
944
947
|
## 8.0.0
|
|
945
948
|
|
|
946
949
|
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
947
|
-
|
|
948
950
|
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
949
951
|
this package, please ensure you use at least this version of react and react-dom.
|
|
950
952
|
|
|
@@ -1008,7 +1010,6 @@
|
|
|
1008
1010
|
## 7.0.0
|
|
1009
1011
|
|
|
1010
1012
|
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
1011
|
-
|
|
1012
1013
|
- Drop ES5 from all the flow modules
|
|
1013
1014
|
|
|
1014
1015
|
### Dropping CJS support in all @atlaskit packages
|
|
@@ -1059,7 +1060,6 @@
|
|
|
1059
1060
|
## 6.1.3
|
|
1060
1061
|
|
|
1061
1062
|
- [patch][4b0fb4e85f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4b0fb4e85f):
|
|
1062
|
-
|
|
1063
1063
|
- Allow items in Page Header actions to wrap on small screens.
|
|
1064
1064
|
|
|
1065
1065
|
## 6.1.2
|
|
@@ -1084,7 +1084,6 @@
|
|
|
1084
1084
|
## 6.1.0
|
|
1085
1085
|
|
|
1086
1086
|
- [minor][6cfa757](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6cfa757):
|
|
1087
|
-
|
|
1088
1087
|
- PageHeader without truncation now wraps actions below the heading to avoid the heading becoming
|
|
1089
1088
|
too narrow
|
|
1090
1089
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/page-header",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.9",
|
|
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/"
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/css": "^0.15.0",
|
|
28
28
|
"@atlaskit/primitives": "^15.0.0",
|
|
29
|
-
"@atlaskit/tokens": "^
|
|
29
|
+
"@atlaskit/tokens": "^7.0.0",
|
|
30
30
|
"@babel/runtime": "^7.0.0",
|
|
31
|
-
"@compiled/react": "^0.18.
|
|
31
|
+
"@compiled/react": "^0.18.6"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.2.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@af/visual-regression": "workspace:^",
|
|
41
41
|
"@atlaskit/breadcrumbs": "^15.3.0",
|
|
42
42
|
"@atlaskit/button": "^23.5.0",
|
|
43
|
-
"@atlaskit/docs": "^11.
|
|
43
|
+
"@atlaskit/docs": "^11.2.0",
|
|
44
44
|
"@atlaskit/ds-lib": "^5.1.0",
|
|
45
45
|
"@atlaskit/inline-edit": "^15.3.0",
|
|
46
46
|
"@atlaskit/link": "^3.2.0",
|