@atlaskit/editor-plugin-type-ahead 7.0.19 → 7.0.21
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/types/ui/ContentComponent.d.ts +1 -1
- package/dist/types/ui/TypeAheadErrorFallback/EmptyState.d.ts +1 -1
- package/dist/types/ui/TypeAheadMenu.d.ts +1 -1
- package/dist/types-ts4.5/ui/ContentComponent.d.ts +1 -1
- package/dist/types-ts4.5/ui/TypeAheadErrorFallback/EmptyState.d.ts +1 -1
- package/dist/types-ts4.5/ui/TypeAheadMenu.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,5 +8,5 @@ interface ContentComponentProps {
|
|
|
8
8
|
editorView: EditorView;
|
|
9
9
|
popupMountRef: PopupMountPointReference;
|
|
10
10
|
}
|
|
11
|
-
export declare function ContentComponent({ api, editorView, popupMountRef }: ContentComponentProps): React.JSX.Element | null;
|
|
11
|
+
export declare function ContentComponent({ api, editorView, popupMountRef, }: ContentComponentProps): React.JSX.Element | null;
|
|
12
12
|
export {};
|
|
@@ -5,5 +5,5 @@ type EmptyStateProps = {
|
|
|
5
5
|
renderImage?: () => React.ReactNode;
|
|
6
6
|
testId?: string;
|
|
7
7
|
};
|
|
8
|
-
export declare const EmptyState: ({ testId, header, description, renderImage }: EmptyStateProps) => React.JSX.Element;
|
|
8
|
+
export declare const EmptyState: ({ testId, header, description, renderImage, }: EmptyStateProps) => React.JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -10,5 +10,5 @@ type TypeAheadMenuType = {
|
|
|
10
10
|
selectedIndex: number;
|
|
11
11
|
typeAheadState: Omit<TypeAheadPluginSharedState, 'isOpen' | 'isAllowed' | 'selectedIndex'>;
|
|
12
12
|
};
|
|
13
|
-
export declare const TypeAheadMenu: React.MemoExoticComponent<({ editorView, popupMountRef, typeAheadState, selectedIndex, api }: TypeAheadMenuType) => React.JSX.Element | null>;
|
|
13
|
+
export declare const TypeAheadMenu: React.MemoExoticComponent<({ editorView, popupMountRef, typeAheadState, selectedIndex, api, }: TypeAheadMenuType) => React.JSX.Element | null>;
|
|
14
14
|
export {};
|
|
@@ -8,5 +8,5 @@ interface ContentComponentProps {
|
|
|
8
8
|
editorView: EditorView;
|
|
9
9
|
popupMountRef: PopupMountPointReference;
|
|
10
10
|
}
|
|
11
|
-
export declare function ContentComponent({ api, editorView, popupMountRef }: ContentComponentProps): React.JSX.Element | null;
|
|
11
|
+
export declare function ContentComponent({ api, editorView, popupMountRef, }: ContentComponentProps): React.JSX.Element | null;
|
|
12
12
|
export {};
|
|
@@ -5,5 +5,5 @@ type EmptyStateProps = {
|
|
|
5
5
|
renderImage?: () => React.ReactNode;
|
|
6
6
|
testId?: string;
|
|
7
7
|
};
|
|
8
|
-
export declare const EmptyState: ({ testId, header, description, renderImage }: EmptyStateProps) => React.JSX.Element;
|
|
8
|
+
export declare const EmptyState: ({ testId, header, description, renderImage, }: EmptyStateProps) => React.JSX.Element;
|
|
9
9
|
export {};
|
|
@@ -10,5 +10,5 @@ type TypeAheadMenuType = {
|
|
|
10
10
|
selectedIndex: number;
|
|
11
11
|
typeAheadState: Omit<TypeAheadPluginSharedState, 'isOpen' | 'isAllowed' | 'selectedIndex'>;
|
|
12
12
|
};
|
|
13
|
-
export declare const TypeAheadMenu: React.MemoExoticComponent<({ editorView, popupMountRef, typeAheadState, selectedIndex, api }: TypeAheadMenuType) => React.JSX.Element | null>;
|
|
13
|
+
export declare const TypeAheadMenu: React.MemoExoticComponent<({ editorView, popupMountRef, typeAheadState, selectedIndex, api, }: TypeAheadMenuType) => React.JSX.Element | null>;
|
|
14
14
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-type-ahead",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.21",
|
|
4
4
|
"description": "Type-ahead plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
46
46
|
"@atlaskit/prosemirror-input-rules": "^3.6.0",
|
|
47
47
|
"@atlaskit/theme": "^21.0.0",
|
|
48
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
48
|
+
"@atlaskit/tmp-editor-statsig": "^30.0.0",
|
|
49
49
|
"@atlaskit/tokens": "^11.0.0",
|
|
50
50
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
51
51
|
"@babel/runtime": "^7.0.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"w3c-keyname": "^2.1.8"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@atlaskit/editor-common": "^111.
|
|
60
|
+
"@atlaskit/editor-common": "^111.20.0",
|
|
61
61
|
"react": "^18.2.0",
|
|
62
62
|
"react-dom": "^18.2.0",
|
|
63
63
|
"react-intl-next": "npm:react-intl@^5.18.1"
|