@atlaskit/section-message 6.4.16 → 6.4.17

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,11 @@
1
1
  # @atlaskit/section-message
2
2
 
3
+ ## 6.4.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 6.4.16
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/section-message",
3
- "version": "6.4.16",
3
+ "version": "6.4.17",
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/"
@@ -37,14 +37,14 @@
37
37
  ".": "./src/index.tsx"
38
38
  },
39
39
  "dependencies": {
40
- "@atlaskit/button": "^16.16.0",
40
+ "@atlaskit/button": "^17.0.0",
41
41
  "@atlaskit/codemod-utils": "^4.2.0",
42
- "@atlaskit/ds-explorations": "^3.0.0",
42
+ "@atlaskit/ds-explorations": "^3.1.0",
43
43
  "@atlaskit/heading": "^1.4.0",
44
44
  "@atlaskit/icon": "^22.0.0",
45
- "@atlaskit/primitives": "^1.10.0",
45
+ "@atlaskit/primitives": "^1.15.0",
46
46
  "@atlaskit/theme": "^12.6.0",
47
- "@atlaskit/tokens": "^1.28.0",
47
+ "@atlaskit/tokens": "^1.30.0",
48
48
  "@babel/runtime": "^7.0.0"
49
49
  },
50
50
  "peerDependencies": {
@@ -52,6 +52,7 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@af/accessibility-testing": "*",
55
+ "@af/integration-testing": "*",
55
56
  "@atlaskit/analytics-next": "^9.1.0",
56
57
  "@atlaskit/ds-lib": "^2.2.0",
57
58
  "@atlaskit/ssr": "*",
@@ -1,42 +0,0 @@
1
- ## API Report File for "@atlaskit/section-message"
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 { default as React_2 } from 'react';
8
- import type { ReactElement } from 'react';
9
- import type { UIAnalyticsEvent } from '@atlaskit/analytics-next';
10
-
11
- // @public
12
- export type Appearance = 'discovery' | 'error' | 'information' | 'success' | 'warning';
13
-
14
- // @public
15
- const SectionMessage: React_2.ForwardRefExoticComponent<SectionMessageProps & React_2.RefAttributes<HTMLElement>>;
16
- export default SectionMessage;
17
-
18
- // @public
19
- export const SectionMessageAction: React_2.NamedExoticComponent<SectionMessageActionProps>;
20
-
21
- // @public (undocumented)
22
- export interface SectionMessageActionProps {
23
- children: React.ReactNode;
24
- href?: string;
25
- linkComponent?: React.ComponentType<any>;
26
- onClick?: (e: React.MouseEvent<HTMLElement>, analyticsEvent: UIAnalyticsEvent) => void;
27
- testId?: string;
28
- }
29
-
30
- // @public (undocumented)
31
- export interface SectionMessageProps {
32
- actions?: ReactElement | ReactElement<SectionMessageActionProps>[];
33
- appearance?: Appearance;
34
- children: React.ReactNode;
35
- icon?: React.ElementType;
36
- testId?: string;
37
- title?: string;
38
- }
39
-
40
- // (No @packageDocumentation comment for this package)
41
-
42
- ```