@atlaskit/editor-core 172.0.0 → 172.0.3
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 +23 -0
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/Toolbar.js +14 -14
- package/dist/cjs/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +10 -10
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui/ErrorBoundary/index.js +1 -0
- package/dist/cjs/ui/PortalProvider/index.js +18 -9
- package/dist/cjs/utils/document.js +2 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/Toolbar.js +14 -14
- package/dist/es2019/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +10 -10
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui/ErrorBoundary/index.js +1 -0
- package/dist/es2019/ui/PortalProvider/index.js +17 -9
- package/dist/es2019/utils/document.js +2 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/plugins/toolbar-lists-indentation/ui/Toolbar.js +14 -14
- package/dist/esm/plugins/toolbar-lists-indentation/ui/ToolbarDropdown.js +10 -10
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui/ErrorBoundary/index.js +1 -0
- package/dist/esm/ui/PortalProvider/index.js +18 -9
- package/dist/esm/utils/document.js +2 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.d.ts +2 -2
- package/dist/types/ui/Appearance/FullPage/StyledComponents.d.ts +10 -10
- package/dist/types/ui/ColorPickerButton/index.d.ts +1 -1
- package/dist/types/ui/ContentStyles/index.d.ts +2 -2
- package/dist/types/ui/PortalProvider/index.d.ts +2 -1
- package/package.json +13 -13
- package/tsconfig.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 172.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 172.0.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`8ed516834c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ed516834c1) - [ux] ED-15407: Bring forward patches below to master:
|
|
15
|
+
|
|
16
|
+
- ED-14988: Patch dark mode in mobile-bridge by ensuring theme context is not stale. Repaints editor nodes when theme mode changes.
|
|
17
|
+
- ME-2511: Revert the premature optimisation that introduces race condition.
|
|
18
|
+
- Partly from ED-15327: PortalProvider fix to ensure theme toggling updates nested mentions, nodes
|
|
19
|
+
|
|
20
|
+
## 172.0.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- [`4e63a26de78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e63a26de78) - [ux] DTR-624 Reversed order of indentation buttons in the toolbar. Note that the buttons are behind a feature flag and disabled by default.
|
|
25
|
+
|
|
3
26
|
## 172.0.0
|
|
4
27
|
|
|
5
28
|
### Major Changes
|
|
@@ -94,20 +94,6 @@ function Toolbar(props) {
|
|
|
94
94
|
iconBefore: (0, _react.jsx)(_numberList.default, {
|
|
95
95
|
label: ""
|
|
96
96
|
})
|
|
97
|
-
}), showIndentationButtons && (0, _react.jsx)(_ToolbarButton.default, {
|
|
98
|
-
buttonId: _ToolbarButton.TOOLBAR_BUTTON.INDENT,
|
|
99
|
-
testId: _ToolbarButton.TOOLBAR_BUTTON.INDENT,
|
|
100
|
-
spacing: isReducedSpacing ? 'none' : 'default',
|
|
101
|
-
onClick: handleOnItemActivated('indent'),
|
|
102
|
-
iconBefore: (0, _react.jsx)(_indent.default, {
|
|
103
|
-
label: ""
|
|
104
|
-
}),
|
|
105
|
-
disabled: indentDisabled || disabled,
|
|
106
|
-
"aria-label": formatMessage(_messages2.messages.indent),
|
|
107
|
-
title: (0, _react.jsx)(_keymaps.ToolTipContent, {
|
|
108
|
-
description: formatMessage(_messages2.messages.indent),
|
|
109
|
-
keymap: _keymaps.indent
|
|
110
|
-
})
|
|
111
97
|
}), showIndentationButtons && (0, _react.jsx)(_ToolbarButton.default, {
|
|
112
98
|
buttonId: _ToolbarButton.TOOLBAR_BUTTON.OUTDENT,
|
|
113
99
|
testId: _ToolbarButton.TOOLBAR_BUTTON.OUTDENT,
|
|
@@ -122,6 +108,20 @@ function Toolbar(props) {
|
|
|
122
108
|
description: formatMessage(_messages2.messages.outdent),
|
|
123
109
|
keymap: _keymaps.outdent
|
|
124
110
|
})
|
|
111
|
+
}), showIndentationButtons && (0, _react.jsx)(_ToolbarButton.default, {
|
|
112
|
+
buttonId: _ToolbarButton.TOOLBAR_BUTTON.INDENT,
|
|
113
|
+
testId: _ToolbarButton.TOOLBAR_BUTTON.INDENT,
|
|
114
|
+
spacing: isReducedSpacing ? 'none' : 'default',
|
|
115
|
+
onClick: handleOnItemActivated('indent'),
|
|
116
|
+
iconBefore: (0, _react.jsx)(_indent.default, {
|
|
117
|
+
label: ""
|
|
118
|
+
}),
|
|
119
|
+
disabled: indentDisabled || disabled,
|
|
120
|
+
"aria-label": formatMessage(_messages2.messages.indent),
|
|
121
|
+
title: (0, _react.jsx)(_keymaps.ToolTipContent, {
|
|
122
|
+
description: formatMessage(_messages2.messages.indent),
|
|
123
|
+
keymap: _keymaps.indent
|
|
124
|
+
})
|
|
125
125
|
}), (0, _react.jsx)("span", {
|
|
126
126
|
css: _styles.separatorStyles
|
|
127
127
|
}));
|
|
@@ -143,27 +143,27 @@ function useItems(props) {
|
|
|
143
143
|
var labelIndent = formatMessage(_messages2.messages.indent);
|
|
144
144
|
var labelOutdent = formatMessage(_messages2.messages.outdent);
|
|
145
145
|
items.push({
|
|
146
|
-
key: '
|
|
147
|
-
content:
|
|
146
|
+
key: 'outdent',
|
|
147
|
+
content: labelOutdent,
|
|
148
148
|
value: {
|
|
149
|
-
name: '
|
|
149
|
+
name: 'outdent'
|
|
150
150
|
},
|
|
151
|
-
isDisabled: props.
|
|
151
|
+
isDisabled: props.outdentDisabled,
|
|
152
152
|
isActive: false,
|
|
153
153
|
elemAfter: (0, _react.jsx)("div", {
|
|
154
154
|
css: _styles.shortcutStyle
|
|
155
|
-
}, (0, _keymaps.tooltip)(_keymaps.
|
|
155
|
+
}, (0, _keymaps.tooltip)(_keymaps.outdent))
|
|
156
156
|
}, {
|
|
157
|
-
key: '
|
|
158
|
-
content:
|
|
157
|
+
key: 'indent',
|
|
158
|
+
content: labelIndent,
|
|
159
159
|
value: {
|
|
160
|
-
name: '
|
|
160
|
+
name: 'indent'
|
|
161
161
|
},
|
|
162
|
-
isDisabled: props.
|
|
162
|
+
isDisabled: props.indentDisabled,
|
|
163
163
|
isActive: false,
|
|
164
164
|
elemAfter: (0, _react.jsx)("div", {
|
|
165
165
|
css: _styles.shortcutStyle
|
|
166
|
-
}, (0, _keymaps.tooltip)(_keymaps.
|
|
166
|
+
}, (0, _keymaps.tooltip)(_keymaps.indent))
|
|
167
167
|
});
|
|
168
168
|
}
|
|
169
169
|
|
|
@@ -46,7 +46,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
46
46
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
47
47
|
|
|
48
48
|
var packageName = "@atlaskit/editor-core";
|
|
49
|
-
var packageVersion = "172.0.
|
|
49
|
+
var packageVersion = "172.0.3";
|
|
50
50
|
var halfFocusRing = 1;
|
|
51
51
|
var dropOffset = "0, ".concat((0, _constants.gridSize)(), "px");
|
|
52
52
|
|
|
@@ -75,6 +75,11 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
75
75
|
|
|
76
76
|
var hasAnalyticsContext = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
77
77
|
var hasIntlContext = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
78
|
+
this.portals.set(container, {
|
|
79
|
+
children: children,
|
|
80
|
+
hasAnalyticsContext: hasAnalyticsContext,
|
|
81
|
+
hasIntlContext: hasIntlContext
|
|
82
|
+
});
|
|
78
83
|
|
|
79
84
|
var childrenWithThemeProviders = function childrenWithThemeProviders() {
|
|
80
85
|
return /*#__PURE__*/_react.default.createElement(_PortalProviderThemesProvider.PortalProviderThemeProviders, {
|
|
@@ -82,11 +87,6 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
82
87
|
}, children());
|
|
83
88
|
};
|
|
84
89
|
|
|
85
|
-
this.portals.set(container, {
|
|
86
|
-
children: childrenWithThemeProviders,
|
|
87
|
-
hasAnalyticsContext: hasAnalyticsContext,
|
|
88
|
-
hasIntlContext: hasIntlContext
|
|
89
|
-
});
|
|
90
90
|
var wrappedChildren = this.useAnalyticsContext ? /*#__PURE__*/_react.default.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders()) : childrenWithThemeProviders();
|
|
91
91
|
|
|
92
92
|
if (hasIntlContext) {
|
|
@@ -105,8 +105,10 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
105
105
|
value: function forceUpdate(_ref) {
|
|
106
106
|
var _this3 = this;
|
|
107
107
|
|
|
108
|
-
var intl = _ref.intl
|
|
108
|
+
var intl = _ref.intl,
|
|
109
|
+
themeMode = _ref.themeMode;
|
|
109
110
|
this.intl = intl;
|
|
111
|
+
this.themeMode = themeMode;
|
|
110
112
|
this.portals.forEach(function (portal, container) {
|
|
111
113
|
if (!portal.hasAnalyticsContext && !_this3.useAnalyticsContext && !portal.hasIntlContext) {
|
|
112
114
|
return;
|
|
@@ -114,14 +116,20 @@ var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
114
116
|
|
|
115
117
|
var wrappedChildren = portal.children();
|
|
116
118
|
|
|
119
|
+
var childrenWithThemeProviders = function childrenWithThemeProviders() {
|
|
120
|
+
return /*#__PURE__*/_react.default.createElement(_PortalProviderThemesProvider.PortalProviderThemeProviders, {
|
|
121
|
+
mode: themeMode
|
|
122
|
+
}, wrappedChildren);
|
|
123
|
+
};
|
|
124
|
+
|
|
117
125
|
if (portal.hasAnalyticsContext && _this3.useAnalyticsContext) {
|
|
118
|
-
wrappedChildren = /*#__PURE__*/_react.default.createElement(AnalyticsContextWrapper, null,
|
|
126
|
+
wrappedChildren = /*#__PURE__*/_react.default.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders());
|
|
119
127
|
}
|
|
120
128
|
|
|
121
129
|
if (portal.hasIntlContext) {
|
|
122
130
|
wrappedChildren = /*#__PURE__*/_react.default.createElement(_reactIntlNext.RawIntlProvider, {
|
|
123
131
|
value: _this3.intl
|
|
124
|
-
},
|
|
132
|
+
}, childrenWithThemeProviders());
|
|
125
133
|
}
|
|
126
134
|
|
|
127
135
|
(0, _reactDom.unstable_renderSubtreeIntoContainer)(_this3.context, wrappedChildren, container);
|
|
@@ -188,7 +196,8 @@ var BasePortalProvider = /*#__PURE__*/function (_React$Component) {
|
|
|
188
196
|
key: "componentDidUpdate",
|
|
189
197
|
value: function componentDidUpdate() {
|
|
190
198
|
this.portalProviderAPI.forceUpdate({
|
|
191
|
-
intl: this.props.intl
|
|
199
|
+
intl: this.props.intl,
|
|
200
|
+
themeMode: this.props.themeMode
|
|
192
201
|
});
|
|
193
202
|
}
|
|
194
203
|
}]);
|
|
@@ -303,7 +303,7 @@ function processRawValue(schema, value, providerFactory, sanitizePrivateContent,
|
|
|
303
303
|
actionSubject: _enums.ACTION_SUBJECT.EDITOR,
|
|
304
304
|
eventType: _enums.EVENT_TYPE.OPERATIONAL,
|
|
305
305
|
attributes: {
|
|
306
|
-
|
|
306
|
+
errorStack: err === null || err === void 0 ? void 0 : err.toString()
|
|
307
307
|
}
|
|
308
308
|
});
|
|
309
309
|
}
|
|
@@ -323,7 +323,7 @@ function processRawValue(schema, value, providerFactory, sanitizePrivateContent,
|
|
|
323
323
|
actionSubject: _enums.ACTION_SUBJECT.EDITOR,
|
|
324
324
|
eventType: _enums.EVENT_TYPE.OPERATIONAL,
|
|
325
325
|
attributes: {
|
|
326
|
-
|
|
326
|
+
errorStack: e === null || e === void 0 ? void 0 : e.toString()
|
|
327
327
|
}
|
|
328
328
|
});
|
|
329
329
|
} // eslint-disable-next-line no-console
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.version = exports.nextMajorVersion = exports.name = void 0;
|
|
7
7
|
var name = "@atlaskit/editor-core";
|
|
8
8
|
exports.name = name;
|
|
9
|
-
var version = "172.0.
|
|
9
|
+
var version = "172.0.3";
|
|
10
10
|
exports.version = version;
|
|
11
11
|
|
|
12
12
|
var nextMajorVersion = function nextMajorVersion() {
|
package/dist/cjs/version.json
CHANGED
|
@@ -66,20 +66,6 @@ export function Toolbar(props) {
|
|
|
66
66
|
iconBefore: jsx(NumberListIcon, {
|
|
67
67
|
label: ""
|
|
68
68
|
})
|
|
69
|
-
}), showIndentationButtons && jsx(ToolbarButton, {
|
|
70
|
-
buttonId: TOOLBAR_BUTTON.INDENT,
|
|
71
|
-
testId: TOOLBAR_BUTTON.INDENT,
|
|
72
|
-
spacing: isReducedSpacing ? 'none' : 'default',
|
|
73
|
-
onClick: handleOnItemActivated('indent'),
|
|
74
|
-
iconBefore: jsx(IndentIcon, {
|
|
75
|
-
label: ""
|
|
76
|
-
}),
|
|
77
|
-
disabled: indentDisabled || disabled,
|
|
78
|
-
"aria-label": formatMessage(indentationMessages.indent),
|
|
79
|
-
title: jsx(ToolTipContent, {
|
|
80
|
-
description: formatMessage(indentationMessages.indent),
|
|
81
|
-
keymap: toggleIndentKeymap
|
|
82
|
-
})
|
|
83
69
|
}), showIndentationButtons && jsx(ToolbarButton, {
|
|
84
70
|
buttonId: TOOLBAR_BUTTON.OUTDENT,
|
|
85
71
|
testId: TOOLBAR_BUTTON.OUTDENT,
|
|
@@ -94,6 +80,20 @@ export function Toolbar(props) {
|
|
|
94
80
|
description: formatMessage(indentationMessages.outdent),
|
|
95
81
|
keymap: toggleOutdentKeymap
|
|
96
82
|
})
|
|
83
|
+
}), showIndentationButtons && jsx(ToolbarButton, {
|
|
84
|
+
buttonId: TOOLBAR_BUTTON.INDENT,
|
|
85
|
+
testId: TOOLBAR_BUTTON.INDENT,
|
|
86
|
+
spacing: isReducedSpacing ? 'none' : 'default',
|
|
87
|
+
onClick: handleOnItemActivated('indent'),
|
|
88
|
+
iconBefore: jsx(IndentIcon, {
|
|
89
|
+
label: ""
|
|
90
|
+
}),
|
|
91
|
+
disabled: indentDisabled || disabled,
|
|
92
|
+
"aria-label": formatMessage(indentationMessages.indent),
|
|
93
|
+
title: jsx(ToolTipContent, {
|
|
94
|
+
description: formatMessage(indentationMessages.indent),
|
|
95
|
+
keymap: toggleIndentKeymap
|
|
96
|
+
})
|
|
97
97
|
}), jsx("span", {
|
|
98
98
|
css: separatorStyles
|
|
99
99
|
}));
|
|
@@ -119,27 +119,27 @@ function useItems(props) {
|
|
|
119
119
|
const labelIndent = formatMessage(indentationMessages.indent);
|
|
120
120
|
const labelOutdent = formatMessage(indentationMessages.outdent);
|
|
121
121
|
items.push({
|
|
122
|
-
key: '
|
|
123
|
-
content:
|
|
122
|
+
key: 'outdent',
|
|
123
|
+
content: labelOutdent,
|
|
124
124
|
value: {
|
|
125
|
-
name: '
|
|
125
|
+
name: 'outdent'
|
|
126
126
|
},
|
|
127
|
-
isDisabled: props.
|
|
127
|
+
isDisabled: props.outdentDisabled,
|
|
128
128
|
isActive: false,
|
|
129
129
|
elemAfter: jsx("div", {
|
|
130
130
|
css: shortcutStyle
|
|
131
|
-
}, tooltip(
|
|
131
|
+
}, tooltip(toggleOutdentKeymap))
|
|
132
132
|
}, {
|
|
133
|
-
key: '
|
|
134
|
-
content:
|
|
133
|
+
key: 'indent',
|
|
134
|
+
content: labelIndent,
|
|
135
135
|
value: {
|
|
136
|
-
name: '
|
|
136
|
+
name: 'indent'
|
|
137
137
|
},
|
|
138
|
-
isDisabled: props.
|
|
138
|
+
isDisabled: props.indentDisabled,
|
|
139
139
|
isActive: false,
|
|
140
140
|
elemAfter: jsx("div", {
|
|
141
141
|
css: shortcutStyle
|
|
142
|
-
}, tooltip(
|
|
142
|
+
}, tooltip(toggleIndentKeymap))
|
|
143
143
|
});
|
|
144
144
|
}
|
|
145
145
|
|
|
@@ -10,7 +10,7 @@ import { N0, DN50, DN600, N50A, N60A, N900 } from '@atlaskit/theme/colors';
|
|
|
10
10
|
import { themed } from '@atlaskit/theme/components';
|
|
11
11
|
import { token } from '@atlaskit/tokens';
|
|
12
12
|
const packageName = "@atlaskit/editor-core";
|
|
13
|
-
const packageVersion = "172.0.
|
|
13
|
+
const packageVersion = "172.0.3";
|
|
14
14
|
const halfFocusRing = 1;
|
|
15
15
|
const dropOffset = `0, ${gridSize()}px`;
|
|
16
16
|
|
|
@@ -28,15 +28,16 @@ export class PortalProviderAPI extends EventDispatcher {
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
render(children, container, hasAnalyticsContext = false, hasIntlContext = false) {
|
|
31
|
-
const childrenWithThemeProviders = () => /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
|
|
32
|
-
mode: this.themeMode
|
|
33
|
-
}, children());
|
|
34
|
-
|
|
35
31
|
this.portals.set(container, {
|
|
36
|
-
children:
|
|
32
|
+
children: children,
|
|
37
33
|
hasAnalyticsContext,
|
|
38
34
|
hasIntlContext
|
|
39
35
|
});
|
|
36
|
+
|
|
37
|
+
const childrenWithThemeProviders = () => /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
|
|
38
|
+
mode: this.themeMode
|
|
39
|
+
}, children());
|
|
40
|
+
|
|
40
41
|
let wrappedChildren = this.useAnalyticsContext ? /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders()) : childrenWithThemeProviders();
|
|
41
42
|
|
|
42
43
|
if (hasIntlContext) {
|
|
@@ -52,9 +53,11 @@ export class PortalProviderAPI extends EventDispatcher {
|
|
|
52
53
|
|
|
53
54
|
|
|
54
55
|
forceUpdate({
|
|
55
|
-
intl
|
|
56
|
+
intl,
|
|
57
|
+
themeMode
|
|
56
58
|
}) {
|
|
57
59
|
this.intl = intl;
|
|
60
|
+
this.themeMode = themeMode;
|
|
58
61
|
this.portals.forEach((portal, container) => {
|
|
59
62
|
if (!portal.hasAnalyticsContext && !this.useAnalyticsContext && !portal.hasIntlContext) {
|
|
60
63
|
return;
|
|
@@ -62,14 +65,18 @@ export class PortalProviderAPI extends EventDispatcher {
|
|
|
62
65
|
|
|
63
66
|
let wrappedChildren = portal.children();
|
|
64
67
|
|
|
68
|
+
const childrenWithThemeProviders = () => /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
|
|
69
|
+
mode: themeMode
|
|
70
|
+
}, wrappedChildren);
|
|
71
|
+
|
|
65
72
|
if (portal.hasAnalyticsContext && this.useAnalyticsContext) {
|
|
66
|
-
wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null,
|
|
73
|
+
wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders());
|
|
67
74
|
}
|
|
68
75
|
|
|
69
76
|
if (portal.hasIntlContext) {
|
|
70
77
|
wrappedChildren = /*#__PURE__*/React.createElement(RawIntlProvider, {
|
|
71
78
|
value: this.intl
|
|
72
|
-
},
|
|
79
|
+
}, childrenWithThemeProviders());
|
|
73
80
|
}
|
|
74
81
|
|
|
75
82
|
unstable_renderSubtreeIntoContainer(this.context, wrappedChildren, container);
|
|
@@ -121,7 +128,8 @@ class BasePortalProvider extends React.Component {
|
|
|
121
128
|
|
|
122
129
|
componentDidUpdate() {
|
|
123
130
|
this.portalProviderAPI.forceUpdate({
|
|
124
|
-
intl: this.props.intl
|
|
131
|
+
intl: this.props.intl,
|
|
132
|
+
themeMode: this.props.themeMode
|
|
125
133
|
});
|
|
126
134
|
}
|
|
127
135
|
|
|
@@ -265,7 +265,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
|
|
|
265
265
|
actionSubject: ACTION_SUBJECT.EDITOR,
|
|
266
266
|
eventType: EVENT_TYPE.OPERATIONAL,
|
|
267
267
|
attributes: {
|
|
268
|
-
|
|
268
|
+
errorStack: err === null || err === void 0 ? void 0 : err.toString()
|
|
269
269
|
}
|
|
270
270
|
});
|
|
271
271
|
}
|
|
@@ -285,7 +285,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
|
|
|
285
285
|
actionSubject: ACTION_SUBJECT.EDITOR,
|
|
286
286
|
eventType: EVENT_TYPE.OPERATIONAL,
|
|
287
287
|
attributes: {
|
|
288
|
-
|
|
288
|
+
errorStack: e === null || e === void 0 ? void 0 : e.toString()
|
|
289
289
|
}
|
|
290
290
|
});
|
|
291
291
|
} // eslint-disable-next-line no-console
|
package/dist/es2019/version.json
CHANGED
|
@@ -68,20 +68,6 @@ export function Toolbar(props) {
|
|
|
68
68
|
iconBefore: jsx(NumberListIcon, {
|
|
69
69
|
label: ""
|
|
70
70
|
})
|
|
71
|
-
}), showIndentationButtons && jsx(ToolbarButton, {
|
|
72
|
-
buttonId: TOOLBAR_BUTTON.INDENT,
|
|
73
|
-
testId: TOOLBAR_BUTTON.INDENT,
|
|
74
|
-
spacing: isReducedSpacing ? 'none' : 'default',
|
|
75
|
-
onClick: handleOnItemActivated('indent'),
|
|
76
|
-
iconBefore: jsx(IndentIcon, {
|
|
77
|
-
label: ""
|
|
78
|
-
}),
|
|
79
|
-
disabled: indentDisabled || disabled,
|
|
80
|
-
"aria-label": formatMessage(indentationMessages.indent),
|
|
81
|
-
title: jsx(ToolTipContent, {
|
|
82
|
-
description: formatMessage(indentationMessages.indent),
|
|
83
|
-
keymap: toggleIndentKeymap
|
|
84
|
-
})
|
|
85
71
|
}), showIndentationButtons && jsx(ToolbarButton, {
|
|
86
72
|
buttonId: TOOLBAR_BUTTON.OUTDENT,
|
|
87
73
|
testId: TOOLBAR_BUTTON.OUTDENT,
|
|
@@ -96,6 +82,20 @@ export function Toolbar(props) {
|
|
|
96
82
|
description: formatMessage(indentationMessages.outdent),
|
|
97
83
|
keymap: toggleOutdentKeymap
|
|
98
84
|
})
|
|
85
|
+
}), showIndentationButtons && jsx(ToolbarButton, {
|
|
86
|
+
buttonId: TOOLBAR_BUTTON.INDENT,
|
|
87
|
+
testId: TOOLBAR_BUTTON.INDENT,
|
|
88
|
+
spacing: isReducedSpacing ? 'none' : 'default',
|
|
89
|
+
onClick: handleOnItemActivated('indent'),
|
|
90
|
+
iconBefore: jsx(IndentIcon, {
|
|
91
|
+
label: ""
|
|
92
|
+
}),
|
|
93
|
+
disabled: indentDisabled || disabled,
|
|
94
|
+
"aria-label": formatMessage(indentationMessages.indent),
|
|
95
|
+
title: jsx(ToolTipContent, {
|
|
96
|
+
description: formatMessage(indentationMessages.indent),
|
|
97
|
+
keymap: toggleIndentKeymap
|
|
98
|
+
})
|
|
99
99
|
}), jsx("span", {
|
|
100
100
|
css: separatorStyles
|
|
101
101
|
}));
|
|
@@ -123,27 +123,27 @@ function useItems(props) {
|
|
|
123
123
|
var labelIndent = formatMessage(indentationMessages.indent);
|
|
124
124
|
var labelOutdent = formatMessage(indentationMessages.outdent);
|
|
125
125
|
items.push({
|
|
126
|
-
key: '
|
|
127
|
-
content:
|
|
126
|
+
key: 'outdent',
|
|
127
|
+
content: labelOutdent,
|
|
128
128
|
value: {
|
|
129
|
-
name: '
|
|
129
|
+
name: 'outdent'
|
|
130
130
|
},
|
|
131
|
-
isDisabled: props.
|
|
131
|
+
isDisabled: props.outdentDisabled,
|
|
132
132
|
isActive: false,
|
|
133
133
|
elemAfter: jsx("div", {
|
|
134
134
|
css: shortcutStyle
|
|
135
|
-
}, tooltip(
|
|
135
|
+
}, tooltip(toggleOutdentKeymap))
|
|
136
136
|
}, {
|
|
137
|
-
key: '
|
|
138
|
-
content:
|
|
137
|
+
key: 'indent',
|
|
138
|
+
content: labelIndent,
|
|
139
139
|
value: {
|
|
140
|
-
name: '
|
|
140
|
+
name: 'indent'
|
|
141
141
|
},
|
|
142
|
-
isDisabled: props.
|
|
142
|
+
isDisabled: props.indentDisabled,
|
|
143
143
|
isActive: false,
|
|
144
144
|
elemAfter: jsx("div", {
|
|
145
145
|
css: shortcutStyle
|
|
146
|
-
}, tooltip(
|
|
146
|
+
}, tooltip(toggleIndentKeymap))
|
|
147
147
|
});
|
|
148
148
|
}
|
|
149
149
|
|
|
@@ -23,7 +23,7 @@ import { N0, DN50, DN600, N50A, N60A, N900 } from '@atlaskit/theme/colors';
|
|
|
23
23
|
import { themed } from '@atlaskit/theme/components';
|
|
24
24
|
import { token } from '@atlaskit/tokens';
|
|
25
25
|
var packageName = "@atlaskit/editor-core";
|
|
26
|
-
var packageVersion = "172.0.
|
|
26
|
+
var packageVersion = "172.0.3";
|
|
27
27
|
var halfFocusRing = 1;
|
|
28
28
|
var dropOffset = "0, ".concat(gridSize(), "px");
|
|
29
29
|
|
|
@@ -54,6 +54,11 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
54
54
|
|
|
55
55
|
var hasAnalyticsContext = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
56
56
|
var hasIntlContext = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
57
|
+
this.portals.set(container, {
|
|
58
|
+
children: children,
|
|
59
|
+
hasAnalyticsContext: hasAnalyticsContext,
|
|
60
|
+
hasIntlContext: hasIntlContext
|
|
61
|
+
});
|
|
57
62
|
|
|
58
63
|
var childrenWithThemeProviders = function childrenWithThemeProviders() {
|
|
59
64
|
return /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
|
|
@@ -61,11 +66,6 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
61
66
|
}, children());
|
|
62
67
|
};
|
|
63
68
|
|
|
64
|
-
this.portals.set(container, {
|
|
65
|
-
children: childrenWithThemeProviders,
|
|
66
|
-
hasAnalyticsContext: hasAnalyticsContext,
|
|
67
|
-
hasIntlContext: hasIntlContext
|
|
68
|
-
});
|
|
69
69
|
var wrappedChildren = this.useAnalyticsContext ? /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders()) : childrenWithThemeProviders();
|
|
70
70
|
|
|
71
71
|
if (hasIntlContext) {
|
|
@@ -84,8 +84,10 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
84
84
|
value: function forceUpdate(_ref) {
|
|
85
85
|
var _this3 = this;
|
|
86
86
|
|
|
87
|
-
var intl = _ref.intl
|
|
87
|
+
var intl = _ref.intl,
|
|
88
|
+
themeMode = _ref.themeMode;
|
|
88
89
|
this.intl = intl;
|
|
90
|
+
this.themeMode = themeMode;
|
|
89
91
|
this.portals.forEach(function (portal, container) {
|
|
90
92
|
if (!portal.hasAnalyticsContext && !_this3.useAnalyticsContext && !portal.hasIntlContext) {
|
|
91
93
|
return;
|
|
@@ -93,14 +95,20 @@ export var PortalProviderAPI = /*#__PURE__*/function (_EventDispatcher) {
|
|
|
93
95
|
|
|
94
96
|
var wrappedChildren = portal.children();
|
|
95
97
|
|
|
98
|
+
var childrenWithThemeProviders = function childrenWithThemeProviders() {
|
|
99
|
+
return /*#__PURE__*/React.createElement(PortalProviderThemeProviders, {
|
|
100
|
+
mode: themeMode
|
|
101
|
+
}, wrappedChildren);
|
|
102
|
+
};
|
|
103
|
+
|
|
96
104
|
if (portal.hasAnalyticsContext && _this3.useAnalyticsContext) {
|
|
97
|
-
wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null,
|
|
105
|
+
wrappedChildren = /*#__PURE__*/React.createElement(AnalyticsContextWrapper, null, childrenWithThemeProviders());
|
|
98
106
|
}
|
|
99
107
|
|
|
100
108
|
if (portal.hasIntlContext) {
|
|
101
109
|
wrappedChildren = /*#__PURE__*/React.createElement(RawIntlProvider, {
|
|
102
110
|
value: _this3.intl
|
|
103
|
-
},
|
|
111
|
+
}, childrenWithThemeProviders());
|
|
104
112
|
}
|
|
105
113
|
|
|
106
114
|
unstable_renderSubtreeIntoContainer(_this3.context, wrappedChildren, container);
|
|
@@ -167,7 +175,8 @@ var BasePortalProvider = /*#__PURE__*/function (_React$Component) {
|
|
|
167
175
|
key: "componentDidUpdate",
|
|
168
176
|
value: function componentDidUpdate() {
|
|
169
177
|
this.portalProviderAPI.forceUpdate({
|
|
170
|
-
intl: this.props.intl
|
|
178
|
+
intl: this.props.intl,
|
|
179
|
+
themeMode: this.props.themeMode
|
|
171
180
|
});
|
|
172
181
|
}
|
|
173
182
|
}]);
|
|
@@ -262,7 +262,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
|
|
|
262
262
|
actionSubject: ACTION_SUBJECT.EDITOR,
|
|
263
263
|
eventType: EVENT_TYPE.OPERATIONAL,
|
|
264
264
|
attributes: {
|
|
265
|
-
|
|
265
|
+
errorStack: err === null || err === void 0 ? void 0 : err.toString()
|
|
266
266
|
}
|
|
267
267
|
});
|
|
268
268
|
}
|
|
@@ -282,7 +282,7 @@ export function processRawValue(schema, value, providerFactory, sanitizePrivateC
|
|
|
282
282
|
actionSubject: ACTION_SUBJECT.EDITOR,
|
|
283
283
|
eventType: EVENT_TYPE.OPERATIONAL,
|
|
284
284
|
attributes: {
|
|
285
|
-
|
|
285
|
+
errorStack: e === null || e === void 0 ? void 0 : e.toString()
|
|
286
286
|
}
|
|
287
287
|
});
|
|
288
288
|
} // eslint-disable-next-line no-console
|
package/dist/esm/version.json
CHANGED
|
@@ -28,8 +28,8 @@ export declare class TableRowNodeView implements NodeView {
|
|
|
28
28
|
get tree(): TableDOMElements | null | undefined;
|
|
29
29
|
constructor(node: PmNode, view: EditorView, getPos: any, eventDispatcher: EventDispatcher);
|
|
30
30
|
listening: boolean;
|
|
31
|
-
headerRowMouseScrollEnd: (() => void
|
|
32
|
-
headerRowMouseScroll: (() => void
|
|
31
|
+
headerRowMouseScrollEnd: import("lodash").DebouncedFunc<() => void>;
|
|
32
|
+
headerRowMouseScroll: import("lodash").DebouncedFunc<() => void>;
|
|
33
33
|
subscribe(): void;
|
|
34
34
|
unsubscribe(): void;
|
|
35
35
|
private initObservers;
|
|
@@ -27,9 +27,15 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
27
27
|
width?: string | number | undefined;
|
|
28
28
|
color?: string | undefined;
|
|
29
29
|
height?: string | number | undefined;
|
|
30
|
+
start?: number | undefined;
|
|
31
|
+
hidden?: boolean | undefined;
|
|
32
|
+
size?: number | undefined;
|
|
33
|
+
wrap?: string | undefined;
|
|
34
|
+
open?: boolean | undefined;
|
|
35
|
+
multiple?: boolean | undefined;
|
|
36
|
+
disabled?: boolean | undefined;
|
|
30
37
|
accessKey?: string | undefined;
|
|
31
38
|
draggable?: boolean | undefined;
|
|
32
|
-
hidden?: boolean | undefined;
|
|
33
39
|
lang?: string | undefined;
|
|
34
40
|
className?: string | undefined;
|
|
35
41
|
id?: string | undefined;
|
|
@@ -41,7 +47,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
41
47
|
defaultValue?: string | string[] | undefined;
|
|
42
48
|
onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
43
49
|
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
44
|
-
open?: boolean | undefined;
|
|
45
50
|
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
46
51
|
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
47
52
|
placeholder?: string | undefined;
|
|
@@ -49,10 +54,8 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
49
54
|
name?: string | undefined;
|
|
50
55
|
key?: import("react").Key | undefined;
|
|
51
56
|
action?: string | undefined;
|
|
52
|
-
disabled?: boolean | undefined;
|
|
53
57
|
property?: string | undefined;
|
|
54
58
|
target?: string | undefined;
|
|
55
|
-
start?: number | undefined;
|
|
56
59
|
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
57
60
|
onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
58
61
|
onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
@@ -109,7 +112,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
109
112
|
method?: string | undefined;
|
|
110
113
|
min?: string | number | undefined;
|
|
111
114
|
minLength?: number | undefined;
|
|
112
|
-
multiple?: boolean | undefined;
|
|
113
115
|
muted?: boolean | undefined;
|
|
114
116
|
noValidate?: boolean | undefined;
|
|
115
117
|
optimum?: number | undefined;
|
|
@@ -128,7 +130,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
128
130
|
scrolling?: string | undefined;
|
|
129
131
|
seamless?: boolean | undefined;
|
|
130
132
|
shape?: string | undefined;
|
|
131
|
-
size?: number | undefined;
|
|
132
133
|
sizes?: string | undefined;
|
|
133
134
|
src?: string | undefined;
|
|
134
135
|
srcDoc?: string | undefined;
|
|
@@ -137,7 +138,6 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
137
138
|
step?: string | number | undefined;
|
|
138
139
|
useMap?: string | undefined;
|
|
139
140
|
wmode?: string | undefined;
|
|
140
|
-
wrap?: string | undefined;
|
|
141
141
|
defaultChecked?: boolean | undefined;
|
|
142
142
|
suppressContentEditableWarning?: boolean | undefined;
|
|
143
143
|
suppressHydrationWarning?: boolean | undefined;
|
|
@@ -165,14 +165,14 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
165
165
|
unselectable?: "on" | "off" | undefined;
|
|
166
166
|
'aria-activedescendant'?: string | undefined;
|
|
167
167
|
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
|
168
|
-
'aria-autocomplete'?: "none" | "inline" | "
|
|
168
|
+
'aria-autocomplete'?: "none" | "inline" | "both" | "list" | undefined;
|
|
169
169
|
'aria-busy'?: boolean | "false" | "true" | undefined;
|
|
170
170
|
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
|
171
171
|
'aria-colcount'?: number | undefined;
|
|
172
172
|
'aria-colindex'?: number | undefined;
|
|
173
173
|
'aria-colspan'?: number | undefined;
|
|
174
174
|
'aria-controls'?: string | undefined;
|
|
175
|
-
'aria-current'?: boolean | "time" | "date" | "false" | "true" | "
|
|
175
|
+
'aria-current'?: boolean | "time" | "date" | "false" | "true" | "page" | "step" | "location" | undefined;
|
|
176
176
|
'aria-describedby'?: string | undefined;
|
|
177
177
|
'aria-details'?: string | undefined;
|
|
178
178
|
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
|
@@ -365,7 +365,7 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
|
|
|
365
365
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
366
366
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
367
367
|
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
368
|
-
}, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "
|
|
368
|
+
}, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "start" | "hidden" | "size" | "wrap" | "open" | "multiple" | "disabled" | "accessKey" | "draggable" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "property" | "target" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
369
369
|
export declare const positionedOverEditorStyle: import("@emotion/react").SerializedStyles;
|
|
370
370
|
export declare const contentArea: import("@emotion/react").SerializedStyles;
|
|
371
371
|
export declare const sidebarArea: import("@emotion/react").SerializedStyles;
|
|
@@ -15,5 +15,5 @@ declare type Props = WithAnalyticsEventsProps & {
|
|
|
15
15
|
height: number;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "title" | "
|
|
18
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Omit<Props, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "title" | "size" | "currentColor" | "onChange" | "key" | "placement" | "cols" | "analyticsContext" | "alignX" | "colorPalette"> & React.RefAttributes<any>>;
|
|
19
19
|
export default _default;
|
|
@@ -7,6 +7,6 @@ declare type ContentStylesProps = {
|
|
|
7
7
|
featureFlags?: FeatureFlags;
|
|
8
8
|
};
|
|
9
9
|
declare type Props = Omit<ContentStylesProps & React.HTMLProps<HTMLDivElement>, 'featureFlags'>;
|
|
10
|
-
export declare const createEditorContentStyle: (styles?: SerializedStyles | undefined) => React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "
|
|
11
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "
|
|
10
|
+
export declare const createEditorContentStyle: (styles?: SerializedStyles | undefined) => React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "start" | "hidden" | "size" | "wrap" | "open" | "multiple" | "disabled" | "accessKey" | "draggable" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "property" | "target" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Props, "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "default" | "mediaGroup" | "media" | "content" | "aria-label" | "aria-haspopup" | "children" | "theme" | "pattern" | "value" | "type" | "onSubmit" | "width" | "color" | "height" | "start" | "hidden" | "size" | "wrap" | "open" | "multiple" | "disabled" | "accessKey" | "draggable" | "lang" | "className" | "id" | "prefix" | "contentEditable" | "inputMode" | "nonce" | "tabIndex" | "defaultValue" | "onError" | "onChange" | "onFocus" | "onBlur" | "placeholder" | "autoFocus" | "name" | "key" | "action" | "property" | "target" | "onClick" | "onMouseEnter" | "onMouseLeave" | "selected" | "href" | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "method" | "min" | "minLength" | "muted" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "shape" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "step" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contextMenu" | "spellCheck" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css"> & React.RefAttributes<HTMLDivElement>>;
|
|
12
12
|
export default _default;
|
|
@@ -28,8 +28,9 @@ export declare class PortalProviderAPI extends EventDispatcher {
|
|
|
28
28
|
constructor(intl: IntlShape, onAnalyticsEvent?: FireAnalyticsCallback, analyticsContext?: boolean, themeMode?: ThemeModes);
|
|
29
29
|
setContext: (context: any) => void;
|
|
30
30
|
render(children: () => React.ReactChild | JSX.Element | null, container: HTMLElement, hasAnalyticsContext?: boolean, hasIntlContext?: boolean): void;
|
|
31
|
-
forceUpdate({ intl }: {
|
|
31
|
+
forceUpdate({ intl, themeMode, }: {
|
|
32
32
|
intl: IntlShape;
|
|
33
|
+
themeMode: ThemeModes | undefined;
|
|
33
34
|
}): void;
|
|
34
35
|
remove(container: HTMLElement): void;
|
|
35
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "172.0.
|
|
3
|
+
"version": "172.0.3",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@atlaskit/form": "^8.5.0",
|
|
52
52
|
"@atlaskit/icon": "^21.10.0",
|
|
53
53
|
"@atlaskit/icon-object": "^6.2.0",
|
|
54
|
-
"@atlaskit/link-picker": "^1.
|
|
54
|
+
"@atlaskit/link-picker": "^1.8.0",
|
|
55
55
|
"@atlaskit/locale": "^2.3.0",
|
|
56
56
|
"@atlaskit/logo": "^13.8.0",
|
|
57
57
|
"@atlaskit/media-card": "^74.1.0",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"@atlaskit/prosemirror-input-rules": "^2.1.0",
|
|
68
68
|
"@atlaskit/radio": "^5.3.0",
|
|
69
69
|
"@atlaskit/section-message": "^6.1.0",
|
|
70
|
-
"@atlaskit/select": "^15.
|
|
71
|
-
"@atlaskit/smart-card": "^21.
|
|
70
|
+
"@atlaskit/select": "^15.6.0",
|
|
71
|
+
"@atlaskit/smart-card": "^21.1.0",
|
|
72
72
|
"@atlaskit/smart-user-picker": "^6.0.0",
|
|
73
73
|
"@atlaskit/spinner": "^15.1.0",
|
|
74
74
|
"@atlaskit/status": "^1.1.0",
|
|
@@ -129,8 +129,8 @@
|
|
|
129
129
|
"w3c-keyname": "^2.1.0"
|
|
130
130
|
},
|
|
131
131
|
"peerDependencies": {
|
|
132
|
-
"@atlaskit/link-provider": "^1.
|
|
133
|
-
"@atlaskit/media-core": "^33.0.
|
|
132
|
+
"@atlaskit/link-provider": "^1.2.4",
|
|
133
|
+
"@atlaskit/media-core": "^33.0.2",
|
|
134
134
|
"react": "^16.8.0",
|
|
135
135
|
"react-dom": "^16.8.0",
|
|
136
136
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
@@ -138,9 +138,9 @@
|
|
|
138
138
|
},
|
|
139
139
|
"devDependencies": {
|
|
140
140
|
"@atlaskit/atlassian-navigation": "^2.2.0",
|
|
141
|
-
"@atlaskit/breadcrumbs": "11.6.
|
|
141
|
+
"@atlaskit/breadcrumbs": "11.6.3",
|
|
142
142
|
"@atlaskit/code": "^14.3.0",
|
|
143
|
-
"@atlaskit/collab-provider": "7.5.
|
|
143
|
+
"@atlaskit/collab-provider": "7.5.1",
|
|
144
144
|
"@atlaskit/docs": "*",
|
|
145
145
|
"@atlaskit/drawer": "^7.1.0",
|
|
146
146
|
"@atlaskit/dropdown-menu": "^11.3.0",
|
|
@@ -151,14 +151,14 @@
|
|
|
151
151
|
"@atlaskit/flag": "^14.6.0",
|
|
152
152
|
"@atlaskit/inline-dialog": "^13.3.0",
|
|
153
153
|
"@atlaskit/link-provider": "^1.0.0",
|
|
154
|
-
"@atlaskit/link-test-helpers": "^1.
|
|
154
|
+
"@atlaskit/link-test-helpers": "^1.4.0",
|
|
155
155
|
"@atlaskit/lozenge": "^11.1.0",
|
|
156
156
|
"@atlaskit/media-core": "^33.0.0",
|
|
157
157
|
"@atlaskit/media-integration-test-helpers": "^2.6.0",
|
|
158
158
|
"@atlaskit/media-test-helpers": "^30.0.0",
|
|
159
159
|
"@atlaskit/menu": "^1.3.0",
|
|
160
160
|
"@atlaskit/page-layout": "^1.2.0",
|
|
161
|
-
"@atlaskit/profilecard": "^16.
|
|
161
|
+
"@atlaskit/profilecard": "^16.12.0",
|
|
162
162
|
"@atlaskit/pubsub": "^6.0.0",
|
|
163
163
|
"@atlaskit/renderer": "^101.0.0",
|
|
164
164
|
"@atlaskit/section-message": "^6.1.0",
|
|
@@ -172,8 +172,8 @@
|
|
|
172
172
|
"@atlaskit/visual-regression": "*",
|
|
173
173
|
"@atlaskit/webdriver-runner": "*",
|
|
174
174
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
175
|
-
"@atlassian/link-picker-atlassian-plugin": "^
|
|
176
|
-
"@atlassian/search-provider": "2.3.
|
|
175
|
+
"@atlassian/link-picker-atlassian-plugin": "^18.0.0",
|
|
176
|
+
"@atlassian/search-provider": "2.3.3",
|
|
177
177
|
"@atlassian/ufo": "^0.1.0",
|
|
178
178
|
"@emotion/jest": "^11.8.0",
|
|
179
179
|
"@testing-library/dom": "^7.7.3",
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
"rison": "^0.1.1",
|
|
207
207
|
"sinon": "^2.2.0",
|
|
208
208
|
"styled-components": "^3.2.6",
|
|
209
|
-
"typescript": "4.
|
|
209
|
+
"typescript": "4.3.5",
|
|
210
210
|
"url-search-params": "^0.10.0",
|
|
211
211
|
"worker-plugin": "^4.0.2"
|
|
212
212
|
},
|