@atlaskit/embedded-confluence 2.15.0 → 2.15.2
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 +12 -0
- package/dist/embedded-confluence-bundle.js +25 -25
- package/dist/types/edit-page/EditPage.d.ts +2 -2
- package/dist/types/page-common/I18nProvider.d.ts +2 -2
- package/dist/types/view-page/ViewPage.d.ts +2 -2
- package/dist/types-ts4.5/edit-page/EditPage.d.ts +2 -2
- package/dist/types-ts4.5/page-common/I18nProvider.d.ts +2 -2
- package/dist/types-ts4.5/view-page/ViewPage.d.ts +2 -2
- package/i18n/package.json +1 -1
- package/package.json +2 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import type { EditPageProps } from '@atlassian/embedded-confluence-common';
|
|
3
|
-
export declare const EditPage:
|
|
3
|
+
export declare const EditPage: (props: EditPageProps) => JSX.Element;
|
|
@@ -2,8 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import type { WrappedComponentProps } from 'react-intl-next';
|
|
3
3
|
export declare const I18nProvider: React.FC<import("react-intl-next").WithIntlProps<{
|
|
4
4
|
locale?: string | undefined;
|
|
5
|
-
} & WrappedComponentProps
|
|
5
|
+
} & WrappedComponentProps>> & {
|
|
6
6
|
WrappedComponent: React.ComponentType<{
|
|
7
7
|
locale?: string | undefined;
|
|
8
|
-
} & WrappedComponentProps
|
|
8
|
+
} & WrappedComponentProps>;
|
|
9
9
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
|
|
3
|
-
export declare const ViewPage:
|
|
3
|
+
export declare const ViewPage: (props: ViewPageProps) => JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import type { EditPageProps } from '@atlassian/embedded-confluence-common';
|
|
3
|
-
export declare const EditPage:
|
|
3
|
+
export declare const EditPage: (props: EditPageProps) => JSX.Element;
|
|
@@ -2,8 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import type { WrappedComponentProps } from 'react-intl-next';
|
|
3
3
|
export declare const I18nProvider: React.FC<import("react-intl-next").WithIntlProps<{
|
|
4
4
|
locale?: string | undefined;
|
|
5
|
-
} & WrappedComponentProps
|
|
5
|
+
} & WrappedComponentProps>> & {
|
|
6
6
|
WrappedComponent: React.ComponentType<{
|
|
7
7
|
locale?: string | undefined;
|
|
8
|
-
} & WrappedComponentProps
|
|
8
|
+
} & WrappedComponentProps>;
|
|
9
9
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import type { ViewPageProps } from '@atlassian/embedded-confluence-common';
|
|
3
|
-
export declare const ViewPage:
|
|
3
|
+
export declare const ViewPage: (props: ViewPageProps) => JSX.Element;
|
package/i18n/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/embedded-confluence",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.2",
|
|
4
4
|
"description": "Public release version of Embeddedable Pages for Confluence",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@testing-library/user-event": "^14.4.3",
|
|
48
48
|
"react-markdown": "^8.0.0",
|
|
49
49
|
"remark-gfm": "^3.0.0",
|
|
50
|
-
"typescript": "~4.
|
|
50
|
+
"typescript": "~5.4.2",
|
|
51
51
|
"wait-for-expect": "^1.2.0"
|
|
52
52
|
},
|
|
53
53
|
"browser": "dist/embedded-confluence-bundle.js",
|