@atlaskit/embedded-confluence 1.3.1 → 1.3.3

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.1",
3
+ "version": "1.3.3",
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",
47
+ "@testing-library/react": "^12.1.5",
41
48
  "react-markdown": "^3.6.0",
42
- "typescript": "4.2.4",
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
@@ -2,6 +2,12 @@
2
2
 
3
3
  > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
4
 
5
+ <!--
6
+ Generated API Report version: 2.0
7
+ -->
8
+
9
+ [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
10
+
5
11
  ```ts
6
12
  import type { EditPageProps } from '@atlassian/embedded-confluence-common';
7
13
  import { ExperienceTracker } from '@atlassian/experience-tracker';
@@ -9,13 +15,15 @@ import { ExperienceTrackerContext } from '@atlassian/experience-tracker';
9
15
  import { default as React_2 } from 'react';
10
16
  import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
11
17
 
12
- export declare const EditPage: React_2.FC<EditPageProps>;
18
+ // @public (undocumented)
19
+ export const EditPage: React_2.FC<EditPageProps>;
13
20
 
14
21
  export { ExperienceTracker };
15
22
 
16
23
  export { ExperienceTrackerContext };
17
24
 
18
- export declare const ViewPage: React_2.FC<ViewPageProps>;
25
+ // @public (undocumented)
26
+ export const ViewPage: React_2.FC<ViewPageProps>;
19
27
 
20
- export {};
28
+ // (No @packageDocumentation comment for this package)
21
29
  ```