@atlaskit/editor-plugin-block-type 3.0.29 → 3.0.30
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
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-type
|
|
2
2
|
|
|
3
|
+
## 3.0.30
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#80883](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80883) [`5ecfa883d4ba`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ecfa883d4ba) - React 18 types for alignment, annotation, avatar-group and blocktype plugins.
|
|
8
|
+
|
|
3
9
|
## 3.0.29
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import React from 'react';
|
|
3
|
+
import { jsx } from '@emotion/react';
|
|
3
4
|
import type { MessageDescriptor, WrappedComponentProps } from 'react-intl-next';
|
|
4
5
|
export interface BlockTypeButtonProps {
|
|
5
6
|
isSmall?: boolean;
|
|
@@ -12,4 +13,4 @@ export interface BlockTypeButtonProps {
|
|
|
12
13
|
onKeyDown(e: React.KeyboardEvent): void;
|
|
13
14
|
formatMessage: WrappedComponentProps['intl']['formatMessage'];
|
|
14
15
|
}
|
|
15
|
-
export declare const BlockTypeButton:
|
|
16
|
+
export declare const BlockTypeButton: (props: BlockTypeButtonProps) => jsx.JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import React from 'react';
|
|
3
|
+
import { jsx } from '@emotion/react';
|
|
3
4
|
import type { MessageDescriptor, WrappedComponentProps } from 'react-intl-next';
|
|
4
5
|
export interface BlockTypeButtonProps {
|
|
5
6
|
isSmall?: boolean;
|
|
@@ -12,4 +13,4 @@ export interface BlockTypeButtonProps {
|
|
|
12
13
|
onKeyDown(e: React.KeyboardEvent): void;
|
|
13
14
|
formatMessage: WrappedComponentProps['intl']['formatMessage'];
|
|
14
15
|
}
|
|
15
|
-
export declare const BlockTypeButton:
|
|
16
|
+
export declare const BlockTypeButton: (props: BlockTypeButtonProps) => jsx.JSX.Element;
|