@atlaskit/editor-plugin-layout 2.8.2 → 2.9.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,17 @@
1
1
  # @atlaskit/editor-plugin-layout
2
2
 
3
+ ## 2.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#162136](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/162136)
8
+ [`356ae4cb21dae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/356ae4cb21dae) -
9
+ ED-28129 Fix multiple activation point for the full-width guideline
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 2.8.2
4
16
 
5
17
  ### Patch Changes
@@ -53,7 +53,9 @@ var layoutPlugin = exports.layoutPlugin = function layoutPlugin(_ref) {
53
53
  var _ref$config = _ref.config,
54
54
  options = _ref$config === void 0 ? {} : _ref$config,
55
55
  api = _ref.api;
56
- var allowAdvancedSingleColumnLayout = (0, _experiments.editorExperiment)('advanced_layouts', true) && (0, _experiments.editorExperiment)('single_column_layouts', true);
56
+ var allowAdvancedSingleColumnLayout = (0, _experiments.editorExperiment)('advanced_layouts', true) && (0, _experiments.editorExperiment)('single_column_layouts', true, {
57
+ exposure: true
58
+ });
57
59
  return {
58
60
  name: 'layout',
59
61
  nodes: function nodes() {
@@ -46,7 +46,9 @@ export const layoutPlugin = ({
46
46
  api
47
47
  }) => {
48
48
  var _api$analytics;
49
- const allowAdvancedSingleColumnLayout = editorExperiment('advanced_layouts', true) && editorExperiment('single_column_layouts', true);
49
+ const allowAdvancedSingleColumnLayout = editorExperiment('advanced_layouts', true) && editorExperiment('single_column_layouts', true, {
50
+ exposure: true
51
+ });
50
52
  return {
51
53
  name: 'layout',
52
54
  nodes() {
@@ -47,7 +47,9 @@ export var layoutPlugin = function layoutPlugin(_ref) {
47
47
  var _ref$config = _ref.config,
48
48
  options = _ref$config === void 0 ? {} : _ref$config,
49
49
  api = _ref.api;
50
- var allowAdvancedSingleColumnLayout = editorExperiment('advanced_layouts', true) && editorExperiment('single_column_layouts', true);
50
+ var allowAdvancedSingleColumnLayout = editorExperiment('advanced_layouts', true) && editorExperiment('single_column_layouts', true, {
51
+ exposure: true
52
+ });
51
53
  return {
52
54
  name: 'layout',
53
55
  nodes: function nodes() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-layout",
3
- "version": "2.8.2",
3
+ "version": "2.9.0",
4
4
  "description": "Layout plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@atlaskit/adf-schema": "^47.6.0",
37
- "@atlaskit/editor-common": "^106.0.0",
37
+ "@atlaskit/editor-common": "^106.1.0",
38
38
  "@atlaskit/editor-plugin-analytics": "^2.3.0",
39
39
  "@atlaskit/editor-plugin-decorations": "^2.0.0",
40
40
  "@atlaskit/editor-plugin-editor-disabled": "^2.0.0",
@@ -47,7 +47,7 @@
47
47
  "@atlaskit/icon": "^26.4.0",
48
48
  "@atlaskit/icon-lab": "^4.17.0",
49
49
  "@atlaskit/platform-feature-flags": "^1.1.0",
50
- "@atlaskit/tmp-editor-statsig": "^5.2.0",
50
+ "@atlaskit/tmp-editor-statsig": "^5.5.0",
51
51
  "@atlaskit/tokens": "^4.9.0",
52
52
  "@babel/runtime": "^7.0.0",
53
53
  "@emotion/react": "^11.7.1"