@atlaskit/embedded-confluence 1.3.2 → 1.3.4

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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { EditPageProps } from '@atlassian/embedded-confluence-common';
3
+ export declare const EditPage: React.FC<EditPageProps>;
@@ -0,0 +1,3 @@
1
+ export { ViewPage } from './view-page/ViewPage';
2
+ export { EditPage } from './edit-page/EditPage';
3
+ export { ExperienceTrackerContext, ExperienceTracker, } from '@atlassian/experience-tracker';
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import type { WrappedComponentProps } from 'react-intl-next';
3
+ export declare const I18nProvider: React.FC<import("react-intl-next").WithIntlProps<{
4
+ locale?: string | undefined;
5
+ } & WrappedComponentProps<"intl">>> & {
6
+ WrappedComponent: React.ComponentType<{
7
+ locale?: string | undefined;
8
+ } & WrappedComponentProps<"intl">>;
9
+ };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
3
+ export declare const ViewPage: React.FC<ViewPageProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/embedded-confluence",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "Public release version of Embeddedable Pages for Confluence",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -10,6 +10,13 @@
10
10
  "license": "Apache-2.0",
11
11
  "main": "dist/embedded-confluence-bundle.js",
12
12
  "types": "dist/types/index.d.ts",
13
+ "typesVersions": {
14
+ ">=4.0 <4.5": {
15
+ "*": [
16
+ "dist/types-ts4.0/*"
17
+ ]
18
+ }
19
+ },
13
20
  "sideEffects": false,
14
21
  "atlaskit:src": "src/index.ts",
15
22
  "atlassian": {
@@ -37,9 +44,9 @@
37
44
  "devDependencies": {
38
45
  "@atlaskit/analytics-next": "^8.3.0",
39
46
  "@atlaskit/docs": "*",
40
- "@testing-library/react": "^8.0.1",
41
- "react-markdown": "^3.6.0",
42
- "typescript": "4.3.5",
47
+ "@testing-library/react": "^12.1.5",
48
+ "react-markdown": "^8.0.0",
49
+ "typescript": "4.5.5",
43
50
  "wait-for-expect": "^1.2.0"
44
51
  },
45
52
  "browser": "dist/embedded-confluence-bundle.js",
package/report.api.md CHANGED
@@ -1,8 +1,17 @@
1
- ## API Report File for "@atlaskit/embedded-confluence".
1
+ <!-- API Report Version: 2.2 -->
2
2
 
3
- > Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
3
+ ## API Report File for "@atlaskit/embedded-confluence"
4
4
 
5
- [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
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
9
+
10
+ - [Main Entry Types](#main-entry-types)
11
+
12
+ ### Main Entry Types
13
+
14
+ <!--SECTION START: Main Entry Types-->
6
15
 
7
16
  ```ts
8
17
  import type { EditPageProps } from '@atlassian/embedded-confluence-common';
@@ -11,13 +20,17 @@ import { ExperienceTrackerContext } from '@atlassian/experience-tracker';
11
20
  import { default as React_2 } from 'react';
12
21
  import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
13
22
 
14
- export declare const EditPage: React_2.FC<EditPageProps>;
23
+ // @public (undocumented)
24
+ export const EditPage: React_2.FC<EditPageProps>;
15
25
 
16
26
  export { ExperienceTracker };
17
27
 
18
28
  export { ExperienceTrackerContext };
19
29
 
20
- export declare const ViewPage: React_2.FC<ViewPageProps>;
30
+ // @public (undocumented)
31
+ export const ViewPage: React_2.FC<ViewPageProps>;
21
32
 
22
- export {};
33
+ // (No @packageDocumentation comment for this package)
23
34
  ```
35
+
36
+ <!--SECTION END: Main Entry Types-->
@@ -0,0 +1,25 @@
1
+ ## API Report File for "@atlaskit/embedded-confluence"
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 type { EditPageProps } from '@atlassian/embedded-confluence-common';
8
+ import { ExperienceTracker } from '@atlassian/experience-tracker';
9
+ import { ExperienceTrackerContext } from '@atlassian/experience-tracker';
10
+ import { default as React_2 } from 'react';
11
+ import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
12
+
13
+ // @public (undocumented)
14
+ export const EditPage: React_2.FC<EditPageProps>;
15
+
16
+ export { ExperienceTracker }
17
+
18
+ export { ExperienceTrackerContext }
19
+
20
+ // @public (undocumented)
21
+ export const ViewPage: React_2.FC<ViewPageProps>;
22
+
23
+ // (No @packageDocumentation comment for this package)
24
+
25
+ ```