@atlaskit/page-header 10.3.6 → 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 CHANGED
@@ -1,5 +1,15 @@
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
+
3
13
  ## 10.3.6
4
14
 
5
15
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/page-header",
3
- "version": "10.3.6",
3
+ "version": "10.4.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/page-header",
3
- "version": "10.3.6",
3
+ "version": "10.4.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/page-header",
3
- "version": "10.3.6",
3
+ "version": "10.4.0",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/page-header",
3
- "version": "10.3.6",
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/"
@@ -27,8 +27,8 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@atlaskit/theme": "^12.4.0",
31
- "@atlaskit/tokens": "^1.2.5",
30
+ "@atlaskit/theme": "^12.5.0",
31
+ "@atlaskit/tokens": "^1.3.0",
32
32
  "@babel/runtime": "^7.0.0",
33
33
  "@emotion/react": "^11.7.1"
34
34
  },
@@ -37,16 +37,16 @@
37
37
  "react-dom": "^16.8.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@atlaskit/breadcrumbs": "^11.8.0",
41
- "@atlaskit/button": "^16.6.0",
40
+ "@atlaskit/breadcrumbs": "^11.10.0",
41
+ "@atlaskit/button": "^16.7.0",
42
42
  "@atlaskit/docs": "*",
43
- "@atlaskit/ds-lib": "^2.0.1",
44
- "@atlaskit/inline-edit": "^12.2.0",
45
- "@atlaskit/page": "^12.2.0",
46
- "@atlaskit/section-message": "^6.3.0",
47
- "@atlaskit/select": "^16.1.0",
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",
48
48
  "@atlaskit/ssr": "*",
49
- "@atlaskit/textfield": "^5.3.0",
49
+ "@atlaskit/textfield": "^5.4.0",
50
50
  "@atlaskit/visual-regression": "*",
51
51
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
52
52
  "@testing-library/react": "^12.1.5",
@@ -1,28 +0,0 @@
1
- ## API Report File for "@atlaskit/page-header"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import { ReactElement } from 'react';
8
- import { ReactNode } from 'react';
9
-
10
- // @public
11
- const PageHeader: ({ innerRef, breadcrumbs, actions, bottomBar, children, id, disableTitleStyles, truncateTitle, }: PageHeaderProps) => JSX.Element;
12
- export default PageHeader;
13
-
14
- // @public (undocumented)
15
- type PageHeaderProps = {
16
- actions?: ReactElement;
17
- bottomBar?: ReactElement;
18
- breadcrumbs?: ReactElement;
19
- children?: ReactNode;
20
- disableTitleStyles?: boolean;
21
- innerRef?: (element: HTMLElement) => void;
22
- truncateTitle?: boolean;
23
- id?: string;
24
- };
25
-
26
- // (No @packageDocumentation comment for this package)
27
-
28
- ```