@atlaskit/editor-plugin-toolbar-lists-indentation 1.15.0 → 1.16.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/types/toolbarListsIndentationPlugin.d.ts +2 -2
- package/dist/types/ui/FloatingToolbarComponent.d.ts +2 -2
- package/dist/types-ts4.5/toolbarListsIndentationPlugin.d.ts +2 -2
- package/dist/types-ts4.5/ui/FloatingToolbarComponent.d.ts +2 -2
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-toolbar-lists-indentation
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#105322](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105322)
|
|
8
|
+
[`8876083532adc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8876083532adc) -
|
|
9
|
+
Bumped editor-prosemirror version to 7.0.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 1.15.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 1.15.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { ExtractInjectionAPI, FeatureFlags, ToolbarUiComponentFactoryParams } from '@atlaskit/editor-common/types';
|
|
3
3
|
import type { ToolbarListsIndentationPlugin } from './toolbarListsIndentationPluginType';
|
|
4
4
|
export declare const toolbarListsIndentationPlugin: ToolbarListsIndentationPlugin;
|
|
@@ -9,5 +9,5 @@ type PrimaryToolbarComponentProps = Pick<ToolbarUiComponentFactoryParams, 'edito
|
|
|
9
9
|
pluginInjectionApi: ExtractInjectionAPI<typeof toolbarListsIndentationPlugin> | undefined;
|
|
10
10
|
allowHeadingAndParagraphIndentation: boolean;
|
|
11
11
|
};
|
|
12
|
-
export declare function PrimaryToolbarComponent({ featureFlags, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, isSmall, isToolbarReducedSpacing, disabled, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: PrimaryToolbarComponentProps): JSX.Element | null;
|
|
12
|
+
export declare function PrimaryToolbarComponent({ featureFlags, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, isSmall, isToolbarReducedSpacing, disabled, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: PrimaryToolbarComponentProps): React.JSX.Element | null;
|
|
13
13
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { ExtractInjectionAPI, FeatureFlags } from '@atlaskit/editor-common/types';
|
|
3
3
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
4
4
|
import type { ToolbarListsIndentationPlugin } from '../toolbarListsIndentationPluginType';
|
|
@@ -9,5 +9,5 @@ type FloatingToolbarComponentProps = {
|
|
|
9
9
|
pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
|
|
10
10
|
showIndentationButtons?: boolean;
|
|
11
11
|
};
|
|
12
|
-
export declare function FloatingToolbarComponent({ featureFlags, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: FloatingToolbarComponentProps): JSX.Element | null;
|
|
12
|
+
export declare function FloatingToolbarComponent({ featureFlags, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: FloatingToolbarComponentProps): React.JSX.Element | null;
|
|
13
13
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { ExtractInjectionAPI, FeatureFlags, ToolbarUiComponentFactoryParams } from '@atlaskit/editor-common/types';
|
|
3
3
|
import type { ToolbarListsIndentationPlugin } from './toolbarListsIndentationPluginType';
|
|
4
4
|
export declare const toolbarListsIndentationPlugin: ToolbarListsIndentationPlugin;
|
|
@@ -9,5 +9,5 @@ type PrimaryToolbarComponentProps = Pick<ToolbarUiComponentFactoryParams, 'edito
|
|
|
9
9
|
pluginInjectionApi: ExtractInjectionAPI<typeof toolbarListsIndentationPlugin> | undefined;
|
|
10
10
|
allowHeadingAndParagraphIndentation: boolean;
|
|
11
11
|
};
|
|
12
|
-
export declare function PrimaryToolbarComponent({ featureFlags, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, isSmall, isToolbarReducedSpacing, disabled, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: PrimaryToolbarComponentProps): JSX.Element | null;
|
|
12
|
+
export declare function PrimaryToolbarComponent({ featureFlags, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, isSmall, isToolbarReducedSpacing, disabled, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: PrimaryToolbarComponentProps): React.JSX.Element | null;
|
|
13
13
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import type { ExtractInjectionAPI, FeatureFlags } from '@atlaskit/editor-common/types';
|
|
3
3
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
4
4
|
import type { ToolbarListsIndentationPlugin } from '../toolbarListsIndentationPluginType';
|
|
@@ -9,5 +9,5 @@ type FloatingToolbarComponentProps = {
|
|
|
9
9
|
pluginInjectionApi?: ExtractInjectionAPI<ToolbarListsIndentationPlugin> | undefined;
|
|
10
10
|
showIndentationButtons?: boolean;
|
|
11
11
|
};
|
|
12
|
-
export declare function FloatingToolbarComponent({ featureFlags, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: FloatingToolbarComponentProps): JSX.Element | null;
|
|
12
|
+
export declare function FloatingToolbarComponent({ featureFlags, editorView, showIndentationButtons, pluginInjectionApi, allowHeadingAndParagraphIndentation, }: FloatingToolbarComponentProps): React.JSX.Element | null;
|
|
13
13
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-toolbar-lists-indentation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Toolbar lists and indentation plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,20 +31,20 @@
|
|
|
31
31
|
".": "./src/index.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/editor-common": "^99.
|
|
35
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
36
|
-
"@atlaskit/editor-plugin-block-type": "^4.
|
|
37
|
-
"@atlaskit/editor-plugin-feature-flags": "^1.
|
|
38
|
-
"@atlaskit/editor-plugin-indentation": "^1.
|
|
39
|
-
"@atlaskit/editor-plugin-list": "^3.
|
|
40
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^2.
|
|
41
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "^2.
|
|
42
|
-
"@atlaskit/editor-prosemirror": "
|
|
34
|
+
"@atlaskit/editor-common": "^99.10.0",
|
|
35
|
+
"@atlaskit/editor-plugin-analytics": "^1.12.0",
|
|
36
|
+
"@atlaskit/editor-plugin-block-type": "^4.3.0",
|
|
37
|
+
"@atlaskit/editor-plugin-feature-flags": "^1.3.0",
|
|
38
|
+
"@atlaskit/editor-plugin-indentation": "^1.10.0",
|
|
39
|
+
"@atlaskit/editor-plugin-list": "^3.10.0",
|
|
40
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^2.2.0",
|
|
41
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "^2.14.0",
|
|
42
|
+
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
43
43
|
"@atlaskit/editor-shared-styles": "^3.2.0",
|
|
44
|
-
"@atlaskit/icon": "^23.
|
|
45
|
-
"@atlaskit/platform-feature-flags": "^0.
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
47
|
-
"@atlaskit/tokens": "3.3.
|
|
44
|
+
"@atlaskit/icon": "^23.7.0",
|
|
45
|
+
"@atlaskit/platform-feature-flags": "^1.0.0",
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^2.43.0",
|
|
47
|
+
"@atlaskit/tokens": "3.3.1",
|
|
48
48
|
"@babel/runtime": "^7.0.0",
|
|
49
49
|
"@emotion/react": "^11.7.1"
|
|
50
50
|
},
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"@af/visual-regression": "*",
|
|
59
59
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
60
60
|
"@atlaskit/analytics-next": "^10.3.0",
|
|
61
|
-
"@atlaskit/editor-plugin-base": "^2.
|
|
62
|
-
"@atlaskit/editor-plugin-text-formatting": "^1.
|
|
61
|
+
"@atlaskit/editor-plugin-base": "^2.2.0",
|
|
62
|
+
"@atlaskit/editor-plugin-text-formatting": "^1.18.0",
|
|
63
63
|
"@atlaskit/ssr": "*",
|
|
64
64
|
"@atlaskit/visual-regression": "*",
|
|
65
65
|
"@testing-library/react": "^13.4.0",
|