@atlaskit/editor-plugin-text-formatting 1.16.10 → 1.16.11
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,15 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-text-formatting
|
|
2
2
|
|
|
3
|
+
## 1.16.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#105009](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105009)
|
|
8
|
+
[`a4039ebf7ed11`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a4039ebf7ed11) -
|
|
9
|
+
[ux] Implement variant 2 cohorts experience for platform_editor_contextual_formatting_toolbar_v2
|
|
10
|
+
experiment
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 1.16.10
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -135,6 +135,8 @@ var textFormattingPlugin = exports.textFormattingPlugin = function textFormattin
|
|
|
135
135
|
selectionToolbar: function selectionToolbar() {
|
|
136
136
|
if ((0, _experiments.editorExperiment)('contextual_formatting_toolbar', true, {
|
|
137
137
|
exposure: true
|
|
138
|
+
}) || (0, _experiments.editorExperiment)('platform_editor_contextual_formatting_toolbar_v2', 'variant2', {
|
|
139
|
+
exposure: true
|
|
138
140
|
})) {
|
|
139
141
|
var toolbarCustom = {
|
|
140
142
|
type: 'custom',
|
|
@@ -129,6 +129,8 @@ export const textFormattingPlugin = ({
|
|
|
129
129
|
selectionToolbar: () => {
|
|
130
130
|
if (editorExperiment('contextual_formatting_toolbar', true, {
|
|
131
131
|
exposure: true
|
|
132
|
+
}) || editorExperiment('platform_editor_contextual_formatting_toolbar_v2', 'variant2', {
|
|
133
|
+
exposure: true
|
|
132
134
|
})) {
|
|
133
135
|
const toolbarCustom = {
|
|
134
136
|
type: 'custom',
|
|
@@ -129,6 +129,8 @@ export var textFormattingPlugin = function textFormattingPlugin(_ref) {
|
|
|
129
129
|
selectionToolbar: function selectionToolbar() {
|
|
130
130
|
if (editorExperiment('contextual_formatting_toolbar', true, {
|
|
131
131
|
exposure: true
|
|
132
|
+
}) || editorExperiment('platform_editor_contextual_formatting_toolbar_v2', 'variant2', {
|
|
133
|
+
exposure: true
|
|
132
134
|
})) {
|
|
133
135
|
var toolbarCustom = {
|
|
134
136
|
type: 'custom',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-text-formatting",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.11",
|
|
4
4
|
"description": "Text-formatting plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
35
|
-
"@atlaskit/editor-common": "^99.
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
35
|
+
"@atlaskit/editor-common": "^99.5.0",
|
|
36
|
+
"@atlaskit/editor-plugin-analytics": "^1.11.0",
|
|
37
37
|
"@atlaskit/editor-plugin-base": "^2.1.0",
|
|
38
38
|
"@atlaskit/editor-plugin-primary-toolbar": "^2.1.0",
|
|
39
39
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
40
40
|
"@atlaskit/editor-shared-styles": "^3.2.0",
|
|
41
41
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
42
|
-
"@atlaskit/icon": "^23.
|
|
42
|
+
"@atlaskit/icon": "^23.4.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
44
44
|
"@atlaskit/prosemirror-input-rules": "^3.2.0",
|
|
45
|
-
"@atlaskit/tmp-editor-statsig": "^2.
|
|
46
|
-
"@atlaskit/tokens": "^3.
|
|
45
|
+
"@atlaskit/tmp-editor-statsig": "^2.39.0",
|
|
46
|
+
"@atlaskit/tokens": "^3.2.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|
|
48
48
|
"@emotion/react": "^11.7.1",
|
|
49
49
|
"react-intl-next": "npm:react-intl@^5.18.1"
|