@atlaskit/embedded-confluence 1.1.0 → 1.3.0

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.
@@ -1,4 +1,3 @@
1
1
  import React from 'react';
2
2
  import type { EditPageProps } from '@atlassian/embedded-confluence-common';
3
- declare const EditPage: React.FC<EditPageProps>;
4
- export default EditPage;
3
+ export declare const EditPage: React.FC<EditPageProps>;
@@ -1,3 +1,3 @@
1
- export { default as ViewPage } from './view-page/ViewPage';
2
- export { default as EditPage } from './edit-page/EditPage';
1
+ export { ViewPage } from './view-page/ViewPage';
2
+ export { EditPage } from './edit-page/EditPage';
3
3
  export { ExperienceTrackerContext, ExperienceTracker, } from '@atlassian/experience-tracker';
@@ -1,2 +1,9 @@
1
1
  import React from 'react';
2
- export declare const I18nProvider: React.FC;
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
+ };
@@ -1,4 +1,3 @@
1
1
  import React from 'react';
2
2
  import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
3
- declare const ViewPage: React.FC<ViewPageProps>;
4
- export default ViewPage;
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.1.0",
3
+ "version": "1.3.0",
4
4
  "description": "Public release version of Embeddedable Pages for Confluence",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
package/report.api.md ADDED
@@ -0,0 +1,23 @@
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
+ import type { EditPageProps } from '@atlassian/embedded-confluence-common';
7
+ import { ExperienceTracker } from '@atlassian/experience-tracker';
8
+ import { ExperienceTrackerContext } from '@atlassian/experience-tracker';
9
+ import { default as React_2 } from 'react';
10
+ import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
11
+
12
+ // @public (undocumented)
13
+ export const EditPage: React_2.FC<EditPageProps>;
14
+
15
+ export { ExperienceTracker };
16
+
17
+ export { ExperienceTrackerContext };
18
+
19
+ // @public (undocumented)
20
+ export const ViewPage: React_2.FC<ViewPageProps>;
21
+
22
+ // (No @packageDocumentation comment for this package)
23
+ ```