@atlaskit/inline-message 12.4.1 → 12.4.3

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,23 @@
1
1
  # @atlaskit/inline-message
2
2
 
3
+ ## 12.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#171994](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/171994)
8
+ [`be58e4bb2e387`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be58e4bb2e387) -
9
+ Migrating usages of UNSAFE types and entrypoints that have been renamed in `@atlaskit/icon` and
10
+ `@atlaskit/icon-lab`.
11
+ - Updated dependencies
12
+
13
+ ## 12.4.2
14
+
15
+ ### Patch Changes
16
+
17
+ - [#166026](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/166026)
18
+ [`962b5e77810fb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/962b5e77810fb) -
19
+ Adds side-effect config to support Compiled css extraction in third-party apps
20
+
3
21
  ## 12.4.1
4
22
 
5
23
  ### Patch Changes
@@ -3,7 +3,9 @@
3
3
  "main": "../dist/cjs/constants.js",
4
4
  "module": "../dist/esm/constants.js",
5
5
  "module:es2019": "../dist/es2019/constants.js",
6
- "sideEffects": false,
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
7
9
  "types": "../dist/types/constants.d.ts",
8
10
  "typesVersions": {
9
11
  ">=4.5 <5.4": {
@@ -1,8 +1,8 @@
1
1
  import { type ComponentType } from 'react';
2
- import type { UNSAFE_NewCoreIconProps } from '@atlaskit/icon';
2
+ import type { NewCoreIconProps } from '@atlaskit/icon';
3
3
  export interface Icon {
4
4
  defaultLabel: string;
5
- icon: ComponentType<UNSAFE_NewCoreIconProps>;
5
+ icon: ComponentType<NewCoreIconProps>;
6
6
  }
7
7
  export type IconAppearanceMap = Record<IconAppearance, Icon>;
8
8
  export type IconAppearance = 'connectivity' | 'confirmation' | 'info' | 'warning' | 'error';
@@ -1,8 +1,8 @@
1
1
  import { type ComponentType } from 'react';
2
- import type { UNSAFE_NewCoreIconProps } from '@atlaskit/icon';
2
+ import type { NewCoreIconProps } from '@atlaskit/icon';
3
3
  export interface Icon {
4
4
  defaultLabel: string;
5
- icon: ComponentType<UNSAFE_NewCoreIconProps>;
5
+ icon: ComponentType<NewCoreIconProps>;
6
6
  }
7
7
  export type IconAppearanceMap = Record<IconAppearance, Icon>;
8
8
  export type IconAppearance = 'connectivity' | 'confirmation' | 'info' | 'warning' | 'error';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/inline-message",
3
- "version": "12.4.1",
3
+ "version": "12.4.3",
4
4
  "description": "An inline message lets users know when important information is available or when an action is required.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,7 +12,9 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "sideEffects": false,
15
+ "sideEffects": [
16
+ "**/*.compiled.css"
17
+ ],
16
18
  "atlaskit:src": "src/index.tsx",
17
19
  "af:exports": {
18
20
  ".": "./src/index.tsx",
@@ -23,17 +25,17 @@
23
25
  "team": "Design System Team",
24
26
  "website": {
25
27
  "name": "Inline message",
26
- "category": "Components"
28
+ "category": "Messaging"
27
29
  },
28
30
  "runReact18": true
29
31
  },
30
32
  "dependencies": {
31
33
  "@atlaskit/button": "^20.3.0",
32
- "@atlaskit/icon": "^22.24.0",
33
- "@atlaskit/inline-dialog": "^15.2.0",
34
- "@atlaskit/primitives": "^13.0.0",
34
+ "@atlaskit/icon": "^23.0.0",
35
+ "@atlaskit/inline-dialog": "^15.3.0",
36
+ "@atlaskit/primitives": "^13.3.0",
35
37
  "@atlaskit/theme": "^14.0.0",
36
- "@atlaskit/tokens": "^2.0.0",
38
+ "@atlaskit/tokens": "^2.4.0",
37
39
  "@babel/runtime": "^7.0.0",
38
40
  "@emotion/react": "^11.7.1"
39
41
  },
@@ -44,7 +46,7 @@
44
46
  "@af/accessibility-testing": "*",
45
47
  "@af/integration-testing": "*",
46
48
  "@af/visual-regression": "*",
47
- "@atlaskit/ds-lib": "^3.1.0",
49
+ "@atlaskit/ds-lib": "^3.3.0",
48
50
  "@atlaskit/ssr": "*",
49
51
  "@atlaskit/visual-regression": "*",
50
52
  "@emotion/jest": "^11.8.0",
@@ -3,7 +3,9 @@
3
3
  "main": "../dist/cjs/types.js",
4
4
  "module": "../dist/esm/types.js",
5
5
  "module:es2019": "../dist/es2019/types.js",
6
- "sideEffects": false,
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
7
9
  "types": "../dist/types/types.d.ts",
8
10
  "typesVersions": {
9
11
  ">=4.5 <5.4": {