@atlaskit/embedded-confluence 1.1.0 → 1.2.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.2.0",
4
4
  "description": "Public release version of Embeddedable Pages for Confluence",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"