@atlaskit/page-header 11.0.3 → 11.1.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,17 @@
1
1
  # @atlaskit/page-header
2
2
 
3
+ ## 11.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
8
+ [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
9
+ Update `React` from v16 to v18
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 11.0.3
4
16
 
5
17
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- /* styled.tsx generated by @compiled/babel-plugin v0.35.0 */
1
+ /* styled.tsx generated by @compiled/babel-plugin v0.36.0 */
2
2
  // TODO: Remove this eslint-disable when prop names have been renamed.
3
3
  // This rule is here as prop name changes are a major as they are used
4
4
  // by our consumers. The prop name concerned here is truncateTitle.
@@ -1,4 +1,4 @@
1
- /* styled.tsx generated by @compiled/babel-plugin v0.35.0 */
1
+ /* styled.tsx generated by @compiled/babel-plugin v0.36.0 */
2
2
  // TODO: Remove this eslint-disable when prop names have been renamed.
3
3
  // This rule is here as prop name changes are a major as they are used
4
4
  // by our consumers. The prop name concerned here is truncateTitle.
@@ -1,4 +1,4 @@
1
- /* styled.tsx generated by @compiled/babel-plugin v0.35.0 */
1
+ /* styled.tsx generated by @compiled/babel-plugin v0.36.0 */
2
2
  // TODO: Remove this eslint-disable when prop names have been renamed.
3
3
  // This rule is here as prop name changes are a major as they are used
4
4
  // by our consumers. The prop name concerned here is truncateTitle.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/page-header",
3
- "version": "11.0.3",
3
+ "version": "11.1.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/"
@@ -25,9 +25,9 @@
25
25
  "runReact18": true
26
26
  },
27
27
  "dependencies": {
28
- "@atlaskit/css": "^0.7.0",
29
- "@atlaskit/primitives": "^13.3.0",
30
- "@atlaskit/tokens": "^3.0.0",
28
+ "@atlaskit/css": "^0.8.0",
29
+ "@atlaskit/primitives": "^13.4.0",
30
+ "@atlaskit/tokens": "^3.3.0",
31
31
  "@babel/runtime": "^7.0.0",
32
32
  "@compiled/react": "^0.18.1"
33
33
  },
@@ -39,14 +39,14 @@
39
39
  "@af/accessibility-testing": "*",
40
40
  "@af/integration-testing": "*",
41
41
  "@af/visual-regression": "*",
42
- "@atlaskit/breadcrumbs": "^14.0.0",
43
- "@atlaskit/ds-lib": "^3.3.0",
44
- "@atlaskit/page": "^12.6.0",
42
+ "@atlaskit/breadcrumbs": "^14.1.0",
43
+ "@atlaskit/ds-lib": "^3.5.0",
44
+ "@atlaskit/page": "^12.7.0",
45
45
  "@atlaskit/ssr": "*",
46
- "@atlaskit/textfield": "^6.7.0",
46
+ "@atlaskit/textfield": "^6.8.0",
47
47
  "@atlaskit/visual-regression": "*",
48
- "@testing-library/react": "^12.1.5",
49
- "react-dom": "^16.8.0",
48
+ "@testing-library/react": "^13.4.0",
49
+ "react-dom": "^18.2.0",
50
50
  "typescript": "~5.4.2"
51
51
  },
52
52
  "keywords": [
@@ -1,17 +0,0 @@
1
- import React from 'react';
2
-
3
- import Breadcrumbs, { BreadcrumbsItem } from '@atlaskit/breadcrumbs';
4
- import __noop from '@atlaskit/ds-lib/noop';
5
-
6
- import PageHeader from '../src';
7
-
8
- const breadcrumbs = (
9
- <Breadcrumbs onExpand={__noop}>
10
- <BreadcrumbsItem text="Some project" key="Some project" />
11
- <BreadcrumbsItem text="Parent page" key="Parent page" />
12
- </Breadcrumbs>
13
- );
14
-
15
- export default () => (
16
- <PageHeader breadcrumbs={breadcrumbs}>Title describing the content</PageHeader>
17
- );