@atlaskit/editor-core 219.1.8 → 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 +14 -0
- package/dist/cjs/ui/Addon/ClickAreaBlock/index.js +1 -2
- package/dist/es2019/ui/Addon/ClickAreaBlock/index.js +1 -2
- package/dist/esm/ui/Addon/ClickAreaBlock/index.js +1 -2
- package/dist/types/ui/PluginSlot/index.d.ts +1 -2
- package/dist/types-ts4.5/ui/PluginSlot/index.d.ts +1 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
11
|
+
## 219.1.9
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 219.1.8
|
|
4
18
|
|
|
5
19
|
### 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;
|
|
@@ -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;
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
5
|
import React from 'react';
|
|
6
|
-
import { jsx } from '@emotion/react';
|
|
7
6
|
import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
8
7
|
import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
9
8
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
@@ -27,5 +26,5 @@ export interface Props {
|
|
|
27
26
|
providerFactory: ProviderFactory;
|
|
28
27
|
wrapperElement: HTMLElement | null;
|
|
29
28
|
}
|
|
30
|
-
declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) =>
|
|
29
|
+
declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) => JSX.Element | null>;
|
|
31
30
|
export default PluginSlotComponent;
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
5
|
import React from 'react';
|
|
6
|
-
import { jsx } from '@emotion/react';
|
|
7
6
|
import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
|
|
8
7
|
import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
9
8
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
@@ -27,5 +26,5 @@ export interface Props {
|
|
|
27
26
|
providerFactory: ProviderFactory;
|
|
28
27
|
wrapperElement: HTMLElement | null;
|
|
29
28
|
}
|
|
30
|
-
declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) =>
|
|
29
|
+
declare const PluginSlotComponent: React.MemoExoticComponent<({ items, editorView, editorActions, eventDispatcher, providerFactory, appearance, popupsMountPoint, popupsBoundariesElement, popupsScrollableElement, containerElement, disabled, dispatchAnalyticsEvent, wrapperElement, pluginHooks, }: Props) => JSX.Element | null>;
|
|
31
30
|
export default PluginSlotComponent;
|
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/"
|
|
@@ -68,13 +68,13 @@
|
|
|
68
68
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
69
69
|
"@atlaskit/icon": "^34.3.0",
|
|
70
70
|
"@atlaskit/link": "^3.4.0",
|
|
71
|
-
"@atlaskit/media-card": "^80.
|
|
71
|
+
"@atlaskit/media-card": "^80.3.0",
|
|
72
72
|
"@atlaskit/mention": "^25.0.0",
|
|
73
73
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
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",
|