@atlaskit/section-message 6.3.17 → 6.4.1

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,21 @@
1
1
  # @atlaskit/section-message
2
2
 
3
+ ## 6.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
8
+
9
+ ## 6.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+
3
19
  ## 6.3.17
4
20
 
5
21
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/section-message",
3
- "version": "6.3.17",
3
+ "version": "6.4.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/section-message",
3
- "version": "6.3.17",
3
+ "version": "6.4.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/section-message",
3
- "version": "6.3.17",
3
+ "version": "6.4.1",
4
4
  "sideEffects": false
5
5
  }
@@ -3,7 +3,7 @@ import type { UIAnalyticsEvent } from '@atlaskit/analytics-next';
3
3
  /**
4
4
  * Appearance determines the icon and background color pairing indicating the message type
5
5
  */
6
- export declare type Appearance = 'information' | 'warning' | 'error' | 'success' | 'discovery';
6
+ export type Appearance = 'information' | 'warning' | 'error' | 'success' | 'discovery';
7
7
  export interface SectionMessageProps {
8
8
  /**
9
9
  * The appearance styling to use for the section message.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/section-message",
3
- "version": "6.3.17",
3
+ "version": "6.4.1",
4
4
  "description": "A section message is used to alert users to a particular section of the screen.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,6 +12,14 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
+ "typesVersions": {
16
+ ">=4.5 <4.9": {
17
+ "*": [
18
+ "dist/types-ts4.5/*",
19
+ "dist/types-ts4.5/index.d.ts"
20
+ ]
21
+ }
22
+ },
15
23
  "sideEffects": false,
16
24
  "atlaskit:src": "src/index.tsx",
17
25
  "atlassian": {
@@ -29,25 +37,25 @@
29
37
  ".": "./src/index.tsx"
30
38
  },
31
39
  "dependencies": {
32
- "@atlaskit/button": "^16.6.0",
33
- "@atlaskit/codemod-utils": "^4.1.0",
34
- "@atlaskit/ds-explorations": "^2.0.0",
35
- "@atlaskit/heading": "^1.2.0",
36
- "@atlaskit/icon": "^21.11.0",
37
- "@atlaskit/primitives": "^0.8.0",
38
- "@atlaskit/theme": "^12.4.0",
39
- "@atlaskit/tokens": "^1.2.0",
40
+ "@atlaskit/button": "^16.7.0",
41
+ "@atlaskit/codemod-utils": "^4.2.0",
42
+ "@atlaskit/ds-explorations": "^2.1.0",
43
+ "@atlaskit/heading": "^1.3.0",
44
+ "@atlaskit/icon": "^21.12.0",
45
+ "@atlaskit/primitives": "^0.9.0",
46
+ "@atlaskit/theme": "^12.5.0",
47
+ "@atlaskit/tokens": "^1.4.0",
40
48
  "@babel/runtime": "^7.0.0"
41
49
  },
42
50
  "peerDependencies": {
43
51
  "react": "^16.8.0"
44
52
  },
45
53
  "devDependencies": {
46
- "@atlaskit/analytics-next": "^9.0.0",
47
- "@atlaskit/code": "^14.5.0",
54
+ "@atlaskit/analytics-next": "^9.1.0",
55
+ "@atlaskit/code": "^14.6.0",
48
56
  "@atlaskit/docs": "*",
49
- "@atlaskit/ds-lib": "^2.1.0",
50
- "@atlaskit/range": "^7.0.0",
57
+ "@atlaskit/ds-lib": "^2.2.0",
58
+ "@atlaskit/range": "^7.1.0",
51
59
  "@atlaskit/ssr": "*",
52
60
  "@atlaskit/visual-regression": "*",
53
61
  "@atlaskit/webdriver-runner": "*",
@@ -59,7 +67,7 @@
59
67
  "react-dom": "^16.8.0",
60
68
  "react-test-renderer": "^16.8.0",
61
69
  "storybook-addon-performance": "^0.16.0",
62
- "typescript": "4.5.5"
70
+ "typescript": "~4.9.5"
63
71
  },
64
72
  "techstack": {
65
73
  "@atlassian/frontend": {
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/entry-points/section-message.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/entry-points/section-message.d.ts"
11
+ "../dist/types-ts4.5/entry-points/section-message.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/entry-points/section-message-action.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/entry-points/section-message-action.d.ts"
11
+ "../dist/types-ts4.5/entry-points/section-message-action.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/entry-points/types.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/entry-points/types.d.ts"
11
+ "../dist/types-ts4.5/entry-points/types.d.ts"
12
12
  ]
13
13
  }
14
14
  }