@atlaskit/help-article 4.0.30 → 4.0.32

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/help-article
2
2
 
3
+ ## 4.0.32
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 4.0.31
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 4.0.30
4
16
 
5
17
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/help-article",
3
- "version": "4.0.30",
3
+ "version": "4.0.32",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/help-article",
3
- "version": "4.0.30",
3
+ "version": "4.0.32",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/help-article",
3
- "version": "4.0.30",
3
+ "version": "4.0.32",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/help-article",
3
- "version": "4.0.30",
3
+ "version": "4.0.32",
4
4
  "description": "A cross-product help-article component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@atlaskit/css-reset": "^6.3.0",
34
- "@atlaskit/icon": "^21.10.0",
35
- "@atlaskit/renderer": "^101.1.0",
34
+ "@atlaskit/icon": "^21.11.0",
35
+ "@atlaskit/renderer": "^103.0.0",
36
36
  "@atlaskit/theme": "^12.2.0",
37
37
  "@babel/runtime": "^7.0.0",
38
38
  "@emotion/styled": "^10.0.7",
package/report.api.md CHANGED
@@ -1,12 +1,17 @@
1
+ <!-- API Report Version: 2.2 -->
2
+
1
3
  ## API Report File for "@atlaskit/help-article"
2
4
 
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
6
+ > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
+
8
+ ### Table of contents
4
9
 
5
- <!--
6
- Generated API Report version: 2.0
7
- -->
10
+ - [Main Entry Types](#main-entry-types)
8
11
 
9
- [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
12
+ ### Main Entry Types
13
+
14
+ <!--SECTION START: Main Entry Types-->
10
15
 
11
16
  ```ts
12
17
  /// <reference types="react" />
@@ -31,7 +36,7 @@ export enum BODY_FORMAT_TYPES {
31
36
  // @public (undocumented)
32
37
  export type HelpArticle = {
33
38
  title?: string;
34
- body?: string | AdfDoc;
39
+ body?: AdfDoc | string;
35
40
  bodyFormat?: BODY_FORMAT_TYPES;
36
41
  titleLinkUrl?: string;
37
42
  onArticleRenderBegin?(): void;
@@ -44,3 +49,5 @@ export default HelpArticle_2;
44
49
 
45
50
  // (No @packageDocumentation comment for this package)
46
51
  ```
52
+
53
+ <!--SECTION END: Main Entry Types-->
@@ -0,0 +1,42 @@
1
+ ## API Report File for "@atlaskit/help-article"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ /// <reference types="react" />
8
+
9
+ // @public (undocumented)
10
+ export type AdfDoc = {
11
+ type: string;
12
+ version: number;
13
+ content: {
14
+ [fieldName: string]: any;
15
+ }[];
16
+ };
17
+
18
+ // @public (undocumented)
19
+ export enum BODY_FORMAT_TYPES {
20
+ // (undocumented)
21
+ adf = "adf",
22
+ // (undocumented)
23
+ html = "html"
24
+ }
25
+
26
+ // @public (undocumented)
27
+ export type HelpArticle = {
28
+ title?: string;
29
+ body?: AdfDoc | string;
30
+ bodyFormat?: BODY_FORMAT_TYPES;
31
+ titleLinkUrl?: string;
32
+ onArticleRenderBegin?(): void;
33
+ onArticleRenderDone?(): void;
34
+ };
35
+
36
+ // @public (undocumented)
37
+ const HelpArticle_2: (props: HelpArticle) => JSX.Element;
38
+ export default HelpArticle_2;
39
+
40
+ // (No @packageDocumentation comment for this package)
41
+
42
+ ```