@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.
- package/CHANGELOG.md +18 -0
- package/dist/embedded-confluence-bundle.js +8 -23
- package/dist/types/edit-page/EditPage.d.ts +1 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/page-common/I18nProvider.d.ts +8 -1
- package/dist/types/view-page/ViewPage.d.ts +1 -2
- package/package.json +1 -1
- package/report.api.md +23 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
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
|
-
|
|
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
|
+
};
|
package/package.json
CHANGED
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
|
+
```
|