@atlaskit/editor-core 219.1.9 → 219.1.10
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 +8 -0
- package/dist/cjs/ui/Addon/ClickAreaBlock/index.js +1 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Addon/ClickAreaBlock/index.js +1 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Addon/ClickAreaBlock/index.js +1 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 219.1.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d94df511393a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d94df511393a9) -
|
|
8
|
+
Removing FG platform_editor_a11y_eslint_fix
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 219.1.9
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.default = exports.ClickAreaBlock = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _react2 = require("@emotion/react");
|
|
10
|
-
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
11
10
|
var _clickAreaHelper = require("../click-area-helper");
|
|
12
11
|
/**
|
|
13
12
|
* @jsxRuntime classic
|
|
@@ -40,7 +39,7 @@ var ClickAreaBlock = exports.ClickAreaBlock = function ClickAreaBlock(_ref) {
|
|
|
40
39
|
// This div is a presentational container that captures mouse events
|
|
41
40
|
// for programmatic editor focus management, not user interaction.
|
|
42
41
|
,
|
|
43
|
-
role:
|
|
42
|
+
role: "presentation"
|
|
44
43
|
}, children);
|
|
45
44
|
};
|
|
46
45
|
var _default = exports.default = ClickAreaBlock;
|
|
@@ -6,7 +6,6 @@ import React from 'react';
|
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports -- Ignored via go/DSP-18766; jsx required at runtime for @jsxRuntime classic
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
10
9
|
import { clickAreaClickHandler } from '../click-area-helper';
|
|
11
10
|
const clickWrapper = css({
|
|
12
11
|
flexGrow: 1,
|
|
@@ -33,7 +32,7 @@ export const ClickAreaBlock = ({
|
|
|
33
32
|
// This div is a presentational container that captures mouse events
|
|
34
33
|
// for programmatic editor focus management, not user interaction.
|
|
35
34
|
,
|
|
36
|
-
role:
|
|
35
|
+
role: "presentation"
|
|
37
36
|
}, children);
|
|
38
37
|
};
|
|
39
38
|
export default ClickAreaBlock;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "
|
|
2
|
+
export const version = "0.0.0-development";
|
|
@@ -6,7 +6,6 @@ import React from 'react';
|
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports -- Ignored via go/DSP-18766; jsx required at runtime for @jsxRuntime classic
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
10
9
|
import { clickAreaClickHandler } from '../click-area-helper';
|
|
11
10
|
var clickWrapper = css({
|
|
12
11
|
flexGrow: 1,
|
|
@@ -32,7 +31,7 @@ export var ClickAreaBlock = function ClickAreaBlock(_ref) {
|
|
|
32
31
|
// This div is a presentational container that captures mouse events
|
|
33
32
|
// for programmatic editor focus management, not user interaction.
|
|
34
33
|
,
|
|
35
|
-
role:
|
|
34
|
+
role: "presentation"
|
|
36
35
|
}, children);
|
|
37
36
|
};
|
|
38
37
|
export default ClickAreaBlock;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "
|
|
2
|
+
export var version = "0.0.0-development";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "219.1.
|
|
3
|
+
"version": "219.1.10",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
75
75
|
"@atlaskit/react-ufo": "^5.16.0",
|
|
76
76
|
"@atlaskit/task-decision": "^20.0.0",
|
|
77
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
77
|
+
"@atlaskit/tmp-editor-statsig": "^72.0.0",
|
|
78
78
|
"@atlaskit/tokens": "^13.0.0",
|
|
79
79
|
"@atlaskit/tooltip": "^21.2.0",
|
|
80
80
|
"@atlaskit/width-detector": "^5.1.0",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"uuid": "^3.1.0"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
|
-
"@atlaskit/editor-common": "^114.
|
|
94
|
+
"@atlaskit/editor-common": "^114.13.0",
|
|
95
95
|
"@atlaskit/link-provider": "^4.3.0",
|
|
96
96
|
"@atlaskit/media-core": "^37.0.0",
|
|
97
97
|
"react": "^18.2.0",
|
|
@@ -104,11 +104,11 @@
|
|
|
104
104
|
"@af/visual-regression": "workspace:^",
|
|
105
105
|
"@atlaskit/adf-utils": "^19.27.0",
|
|
106
106
|
"@atlaskit/analytics-listeners": "^10.0.0",
|
|
107
|
-
"@atlaskit/collab-provider": "^18.
|
|
107
|
+
"@atlaskit/collab-provider": "^18.1.0",
|
|
108
108
|
"@atlaskit/editor-plugin-annotation": "^10.1.0",
|
|
109
109
|
"@atlaskit/editor-plugin-card": "^16.4.0",
|
|
110
110
|
"@atlaskit/editor-plugin-list": "^12.0.0",
|
|
111
|
-
"@atlaskit/editor-plugin-paste": "^11.
|
|
111
|
+
"@atlaskit/editor-plugin-paste": "^11.1.0",
|
|
112
112
|
"@atlaskit/editor-test-helpers": "workspace:^",
|
|
113
113
|
"@atlaskit/link-provider": "^4.3.0",
|
|
114
114
|
"@atlaskit/linking-common": "^9.11.0",
|