@atlaskit/editor-plugin-text-formatting 2.1.10 → 2.2.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
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-text-formatting
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#139139](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139139)
|
|
8
|
+
[`7f6b665d778dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f6b665d778dd) -
|
|
9
|
+
[https://product-fabric.atlassian.net/browse/ED-27499](ED-27499) - the new
|
|
10
|
+
`@atlassian/confluence-presets` package with Confluence `full-page` preset is created
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 2.1.10
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { textFormattingPlugin } from './textFormattingPlugin';
|
|
2
|
-
export type { TextFormattingPlugin } from './textFormattingPluginType';
|
|
2
|
+
export type { TextFormattingPlugin, TextFormattingPluginOptions } from './textFormattingPluginType';
|
|
3
3
|
export type { ToggleMarkEditorCommand } from './pm-plugins/commands';
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import type { NextEditorPlugin, OptionalPlugin, TextFormattingOptions, TextFormattingState } from '@atlaskit/editor-common/types';
|
|
1
|
+
import type { NextEditorPlugin, OptionalPlugin, TextFormattingOptions as CommonTextFormattingOptions, TextFormattingState } from '@atlaskit/editor-common/types';
|
|
2
2
|
import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
3
3
|
import type { BasePlugin } from '@atlaskit/editor-plugin-base';
|
|
4
4
|
import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugin-primary-toolbar';
|
|
5
5
|
import type { SelectionToolbarPlugin } from '@atlaskit/editor-plugin-selection-toolbar';
|
|
6
6
|
import type { ToggleMarkEditorCommand } from './pm-plugins/commands';
|
|
7
|
+
export type TextFormattingPluginOptions = CommonTextFormattingOptions;
|
|
7
8
|
export type TextFormattingPlugin = NextEditorPlugin<'textFormatting', {
|
|
8
|
-
pluginConfiguration:
|
|
9
|
+
pluginConfiguration: TextFormattingPluginOptions | undefined;
|
|
9
10
|
dependencies: [
|
|
10
11
|
OptionalPlugin<AnalyticsPlugin>,
|
|
11
12
|
OptionalPlugin<PrimaryToolbarPlugin>,
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { textFormattingPlugin } from './textFormattingPlugin';
|
|
2
|
-
export type { TextFormattingPlugin } from './textFormattingPluginType';
|
|
2
|
+
export type { TextFormattingPlugin, TextFormattingPluginOptions } from './textFormattingPluginType';
|
|
3
3
|
export type { ToggleMarkEditorCommand } from './pm-plugins/commands';
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import type { NextEditorPlugin, OptionalPlugin, TextFormattingOptions, TextFormattingState } from '@atlaskit/editor-common/types';
|
|
1
|
+
import type { NextEditorPlugin, OptionalPlugin, TextFormattingOptions as CommonTextFormattingOptions, TextFormattingState } from '@atlaskit/editor-common/types';
|
|
2
2
|
import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
3
3
|
import type { BasePlugin } from '@atlaskit/editor-plugin-base';
|
|
4
4
|
import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugin-primary-toolbar';
|
|
5
5
|
import type { SelectionToolbarPlugin } from '@atlaskit/editor-plugin-selection-toolbar';
|
|
6
6
|
import type { ToggleMarkEditorCommand } from './pm-plugins/commands';
|
|
7
|
+
export type TextFormattingPluginOptions = CommonTextFormattingOptions;
|
|
7
8
|
export type TextFormattingPlugin = NextEditorPlugin<'textFormatting', {
|
|
8
|
-
pluginConfiguration:
|
|
9
|
+
pluginConfiguration: TextFormattingPluginOptions | undefined;
|
|
9
10
|
dependencies: [
|
|
10
11
|
OptionalPlugin<AnalyticsPlugin>,
|
|
11
12
|
OptionalPlugin<PrimaryToolbarPlugin>,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-text-formatting",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Text-formatting plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/adf-schema": "^47.6.0",
|
|
37
|
-
"@atlaskit/editor-common": "^103.
|
|
37
|
+
"@atlaskit/editor-common": "^103.4.0",
|
|
38
38
|
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
39
39
|
"@atlaskit/editor-plugin-base": "^2.3.0",
|
|
40
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^3.
|
|
41
|
-
"@atlaskit/editor-plugin-selection-toolbar": "^3.
|
|
40
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^3.2.0",
|
|
41
|
+
"@atlaskit/editor-plugin-selection-toolbar": "^3.4.0",
|
|
42
42
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
43
43
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
44
44
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@atlaskit/editor-plugin-composition": "^1.3.0",
|
|
59
59
|
"@atlaskit/editor-plugin-decorations": "^2.0.0",
|
|
60
|
-
"@atlaskit/editor-plugin-feature-flags": "^1.
|
|
60
|
+
"@atlaskit/editor-plugin-feature-flags": "^1.4.0",
|
|
61
61
|
"@testing-library/react": "^13.4.0",
|
|
62
62
|
"typescript": "~5.4.2"
|
|
63
63
|
},
|