@atlaskit/logo 14.1.0 → 14.2.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,29 @@
1
1
  # @atlaskit/logo
2
2
 
3
+ ## 14.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#127511](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127511)
8
+ [`db30e29344013`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/db30e29344013) -
9
+ Widening range of `react` and `react-dom` peer dependencies from `^16.8.0 || ^17.0.0 || ~18.2.0`
10
+ to the wider range of ``^16.8.0 || ^17.0.0 || ^18.0.0` (where applicable).
11
+
12
+ This change has been done to enable usage of `react@18.3` as well as to have a consistent peer
13
+ dependency range for `react` and `react-dom` for `/platform` packages.
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+
19
+ ## 14.1.1
20
+
21
+ ### Patch Changes
22
+
23
+ - [#118742](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/118742)
24
+ [`b4588e60d187b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b4588e60d187b) -
25
+ Remove remnants of `extract-react-types`.
26
+
3
27
  ## 14.1.0
4
28
 
5
29
  ### Minor Changes
@@ -14,8 +14,8 @@ var _constants = require("./constants");
14
14
  var _excluded = ["label", "svg", "size", "appearance", "iconColor", "textColor", "testId"];
15
15
  /**
16
16
  * @jsxRuntime classic
17
+ * @jsx jsx
17
18
  */
18
- /** @jsx jsx */
19
19
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
20
20
  var CSS_VAR_COLOR = '--logo-color';
21
21
  var CSS_VAR_FILL = '--logo-fill';
@@ -1,8 +1,8 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  /**
3
3
  * @jsxRuntime classic
4
+ * @jsx jsx
4
5
  */
5
- /** @jsx jsx */
6
6
 
7
7
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
8
8
  import { css, jsx } from '@emotion/react';
@@ -5,8 +5,8 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
5
5
  var _excluded = ["label", "svg", "size", "appearance", "iconColor", "textColor", "testId"];
6
6
  /**
7
7
  * @jsxRuntime classic
8
+ * @jsx jsx
8
9
  */
9
- /** @jsx jsx */
10
10
 
11
11
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
12
12
  import { css, jsx } from '@emotion/react';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  import { jsx } from '@emotion/react';
6
6
  import { type WrapperProps } from './constants';
7
7
  /**
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  import { jsx } from '@emotion/react';
6
6
  import { type WrapperProps } from './constants';
7
7
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "14.1.0",
3
+ "version": "14.2.0",
4
4
  "description": "A logo is a visual representation of a brand or product. It can be a word or an image, or a combination of both.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -27,18 +27,18 @@
27
27
  "runReact18": true
28
28
  },
29
29
  "dependencies": {
30
- "@atlaskit/theme": "^12.10.0",
31
- "@atlaskit/tokens": "^1.51.0",
30
+ "@atlaskit/theme": "^12.12.0",
31
+ "@atlaskit/tokens": "^1.58.0",
32
32
  "@babel/runtime": "^7.0.0",
33
33
  "@emotion/react": "^11.7.1",
34
34
  "react-uid": "^2.2.0"
35
35
  },
36
36
  "peerDependencies": {
37
- "react": "^16.8.0 || ^17.0.0 || ~18.2.0"
37
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@af/accessibility-testing": "*",
41
- "@atlaskit/ds-lib": "^2.3.0",
41
+ "@atlaskit/ds-lib": "^2.4.0",
42
42
  "@atlaskit/ssr": "*",
43
43
  "@atlaskit/visual-regression": "*",
44
44
  "@testing-library/react": "^12.1.5",
@@ -1,5 +0,0 @@
1
- import { type Props as LogoProps } from '../src/constants';
2
-
3
- export default function LogoPropsFunc(props: LogoProps) {
4
- return null;
5
- }