@atlaskit/help-article 4.1.6 → 4.1.7

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/help-article
2
2
 
3
+ ## 4.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 4.1.6
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1,34 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.confluence.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "composite": true,
7
+ "outDir": "../dist",
8
+ "rootDir": "../",
9
+ "baseUrl": "../"
10
+ },
11
+ "include": [
12
+ "../src/**/*.ts",
13
+ "../src/**/*.tsx"
14
+ ],
15
+ "exclude": [
16
+ "../src/**/__tests__/*",
17
+ "../src/**/*.test.*",
18
+ "../src/**/test.*"
19
+ ],
20
+ "references": [
21
+ {
22
+ "path": "../../../design-system/css-reset/afm-cc/tsconfig.json"
23
+ },
24
+ {
25
+ "path": "../../../design-system/icon/afm-cc/tsconfig.json"
26
+ },
27
+ {
28
+ "path": "../../../editor/renderer/afm-cc/tsconfig.json"
29
+ },
30
+ {
31
+ "path": "../../../design-system/tokens/afm-cc/tsconfig.json"
32
+ }
33
+ ]
34
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/help-article",
3
- "version": "4.1.6",
3
+ "version": "4.1.7",
4
4
  "description": "A cross-product help-article component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -33,8 +33,8 @@
33
33
  "dependencies": {
34
34
  "@atlaskit/css-reset": "^6.6.0",
35
35
  "@atlaskit/icon": "^22.0.0",
36
- "@atlaskit/renderer": "^108.16.0",
37
- "@atlaskit/tokens": "^1.28.0",
36
+ "@atlaskit/renderer": "^109.0.0",
37
+ "@atlaskit/tokens": "^1.30.0",
38
38
  "@babel/runtime": "^7.0.0",
39
39
  "@emotion/styled": "^10.0.7",
40
40
  "lodash": "^4.17.21"
@@ -1,42 +0,0 @@
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
- ```