@atlaskit/editor-plugin-expand 2.6.5 → 2.7.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,14 @@
1
1
  # @atlaskit/editor-plugin-expand
2
2
 
3
+ ## 2.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#141652](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/141652)
8
+ [`1cbce9d217a8e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1cbce9d217a8e) -
9
+ [ux] EDF-1549 AI button added in floating toolbar of panel, table, layout and expand behind
10
+ experiment.
11
+
3
12
  ## 2.6.5
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -27,4 +27,4 @@ Please see [Atlaskit - Editor plugin expand](https://atlaskit.atlassian.com/pack
27
27
  For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
28
28
  ## License
29
29
  ---
30
- Please see [Atlassian Frontend - License](https://developer.atlassian.com/cloud/framework/atlassian-frontend/#license) for more licensing information.
30
+ Please see [Atlassian Frontend - License](https://hello.atlassian.net/wiki/spaces/AF/pages/2589099144/Documentation#Platform-License) for more licensing information.
@@ -17,7 +17,7 @@ var expandPlugin = exports.expandPlugin = function expandPlugin(_ref) {
17
17
  api: api
18
18
  });
19
19
  } else {
20
- if ((0, _platformFeatureFlags.getBooleanFF)('platform.editor.single-player-expand')) {
20
+ if ((0, _platformFeatureFlags.fg)('platform.editor.single-player-expand')) {
21
21
  return (0, _plugin2.expandPlugin)({
22
22
  config: options,
23
23
  api: api
@@ -1,4 +1,4 @@
1
- import { getBooleanFF } from '@atlaskit/platform-feature-flags';
1
+ import { fg } from '@atlaskit/platform-feature-flags';
2
2
  import { expandPlugin as legacyExpandPlugin } from './legacyExpand/plugin';
3
3
  import { expandPlugin as singlePlayerExpandPlugin } from './singlePlayerExpand/plugin';
4
4
  export const expandPlugin = ({
@@ -11,7 +11,7 @@ export const expandPlugin = ({
11
11
  api
12
12
  });
13
13
  } else {
14
- if (getBooleanFF('platform.editor.single-player-expand')) {
14
+ if (fg('platform.editor.single-player-expand')) {
15
15
  return singlePlayerExpandPlugin({
16
16
  config: options,
17
17
  api
@@ -1,4 +1,4 @@
1
- import { getBooleanFF } from '@atlaskit/platform-feature-flags';
1
+ import { fg } from '@atlaskit/platform-feature-flags';
2
2
  import { expandPlugin as legacyExpandPlugin } from './legacyExpand/plugin';
3
3
  import { expandPlugin as singlePlayerExpandPlugin } from './singlePlayerExpand/plugin';
4
4
  export var expandPlugin = function expandPlugin(_ref) {
@@ -11,7 +11,7 @@ export var expandPlugin = function expandPlugin(_ref) {
11
11
  api: api
12
12
  });
13
13
  } else {
14
- if (getBooleanFF('platform.editor.single-player-expand')) {
14
+ if (fg('platform.editor.single-player-expand')) {
15
15
  return singlePlayerExpandPlugin({
16
16
  config: options,
17
17
  api: api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-expand",
3
- "version": "2.6.5",
3
+ "version": "2.7.0",
4
4
  "description": "Expand plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^40.9.0",
35
35
  "@atlaskit/button": "^20.1.0",
36
- "@atlaskit/editor-common": "^89.1.0",
36
+ "@atlaskit/editor-common": "^89.3.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^1.8.0",
38
38
  "@atlaskit/editor-plugin-decorations": "^1.3.0",
39
39
  "@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
@@ -59,7 +59,7 @@
59
59
  "@atlaskit/editor-plugin-content-insertion": "^1.8.0",
60
60
  "@atlaskit/editor-plugin-guideline": "^1.2.0",
61
61
  "@atlaskit/editor-plugin-quick-insert": "^1.3.0",
62
- "@atlaskit/editor-plugin-table": "^7.25.0",
62
+ "@atlaskit/editor-plugin-table": "^7.26.0",
63
63
  "@atlaskit/editor-plugin-type-ahead": "^1.8.0",
64
64
  "@atlaskit/editor-plugin-width": "^1.3.0",
65
65
  "@testing-library/react": "^12.1.5",