@atlaskit/editor-plugin-layout 1.12.14 → 1.12.15

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,13 @@
1
1
  # @atlaskit/editor-plugin-layout
2
2
 
3
+ ## 1.12.15
4
+
5
+ ### Patch Changes
6
+
7
+ - [#177517](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/177517)
8
+ [`aeb14b8b4eab8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aeb14b8b4eab8) -
9
+ ED-26010 fix firefox placeholder selection issue
10
+
3
11
  ## 1.12.14
4
12
 
5
13
  ### Patch Changes
@@ -45,7 +45,8 @@ var getPlaceholderStyle = function getPlaceholderStyle(message) {
45
45
  position: 'absolute',
46
46
  color: "var(--ds-text-disabled, #A5ADBA)",
47
47
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
48
- marginTop: "var(--ds-space-050, 4px)"
48
+ marginTop: "var(--ds-space-050, 4px)",
49
+ pointerEvents: 'none'
49
50
  }
50
51
  }
51
52
  });
@@ -1 +1,4 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ // Entry file in package.json
3
+
1
4
  export { layoutPlugin } from './layoutPlugin';
@@ -38,7 +38,8 @@ const getPlaceholderStyle = message => {
38
38
  position: 'absolute',
39
39
  color: "var(--ds-text-disabled, #A5ADBA)",
40
40
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
41
- marginTop: "var(--ds-space-050, 4px)"
41
+ marginTop: "var(--ds-space-050, 4px)",
42
+ pointerEvents: 'none'
42
43
  }
43
44
  }
44
45
  });
package/dist/esm/index.js CHANGED
@@ -1 +1,4 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ // Entry file in package.json
3
+
1
4
  export { layoutPlugin } from './layoutPlugin';
@@ -38,7 +38,8 @@ var getPlaceholderStyle = function getPlaceholderStyle(message) {
38
38
  position: 'absolute',
39
39
  color: "var(--ds-text-disabled, #A5ADBA)",
40
40
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
41
- marginTop: "var(--ds-space-050, 4px)"
41
+ marginTop: "var(--ds-space-050, 4px)",
42
+ pointerEvents: 'none'
42
43
  }
43
44
  }
44
45
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-layout",
3
- "version": "1.12.14",
3
+ "version": "1.12.15",
4
4
  "description": "Layout plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "^46.1.0",
35
- "@atlaskit/editor-common": "^96.4.0",
35
+ "@atlaskit/editor-common": "^96.5.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^1.10.0",
37
37
  "@atlaskit/editor-plugin-decorations": "^1.3.0",
38
38
  "@atlaskit/editor-plugin-editor-disabled": "^1.3.0",