@atlaskit/editor-common 116.14.1 → 116.16.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 +32 -0
- package/dist/cjs/extensibility/Extension/InlineExtension/index.js +23 -4
- package/dist/cjs/extensibility/extensionNodeView.js +1 -4
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/extensibility/Extension/InlineExtension/index.js +22 -3
- package/dist/es2019/extensibility/extensionNodeView.js +1 -4
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/extensibility/Extension/InlineExtension/index.js +24 -5
- package/dist/esm/extensibility/extensionNodeView.js +1 -4
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/ui/DropList/index.js +1 -1
- package/package.json +38 -41
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 116.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5d42cea730a1b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d42cea730a1b) -
|
|
8
|
+
[ENGHEALTH-53346] Gate the inline extension width-context memoization fix behind a Jira
|
|
9
|
+
experiment.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`4f29c6cc37a8a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f29c6cc37a8a) -
|
|
14
|
+
Clean up ff forge-ui-extensionnodeview-stop-event-for-textarea
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 116.15.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [`cd097a2111788`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cd097a2111788) -
|
|
22
|
+
Republish packages depending on `@atlaskit/react-compiler-gating` so their published dependency
|
|
23
|
+
reference is updated to the renamed `@atlaskit/react-compiler-gating` scope.
|
|
24
|
+
|
|
25
|
+
The earlier rename of `@atlassian/react-compiler-gating` to `@atlaskit/react-compiler-gating` only
|
|
26
|
+
bumped the renamed package itself, so dependent packages were never republished and their
|
|
27
|
+
published versions still referenced the old `@atlassian/react-compiler-gating` name, which is not
|
|
28
|
+
available in the public npm registry. This minor bump republishes all affected packages with the
|
|
29
|
+
corrected dependency.
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
|
|
3
35
|
## 116.14.1
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
|
@@ -41,6 +41,23 @@ var hoverStyles = (0, _react2.css)({
|
|
|
41
41
|
boxShadow: "0 0 0 1px ".concat("var(--ds-border-input, #8C8F97)")
|
|
42
42
|
}
|
|
43
43
|
});
|
|
44
|
+
var MemoizedWidthContextProvider = function MemoizedWidthContextProvider(_ref) {
|
|
45
|
+
var rendererContainerWidth = _ref.rendererContainerWidth,
|
|
46
|
+
children = _ref.children;
|
|
47
|
+
var widthContextValue = (0, _react.useMemo)(function () {
|
|
48
|
+
return (0, _ui.createWidthContext)(rendererContainerWidth);
|
|
49
|
+
}, [rendererContainerWidth]);
|
|
50
|
+
return (0, _react2.jsx)(_ui.WidthContext.Provider, {
|
|
51
|
+
value: widthContextValue
|
|
52
|
+
}, children);
|
|
53
|
+
};
|
|
54
|
+
var LegacyWidthContextProvider = function LegacyWidthContextProvider(_ref2) {
|
|
55
|
+
var rendererContainerWidth = _ref2.rendererContainerWidth,
|
|
56
|
+
children = _ref2.children;
|
|
57
|
+
return (0, _react2.jsx)(_ui.WidthContext.Provider, {
|
|
58
|
+
value: (0, _ui.createWidthContext)(rendererContainerWidth)
|
|
59
|
+
}, children);
|
|
60
|
+
};
|
|
44
61
|
var InlineExtension = function InlineExtension(props) {
|
|
45
62
|
var node = props.node,
|
|
46
63
|
pluginInjectionApi = props.pluginInjectionApi,
|
|
@@ -50,8 +67,8 @@ var InlineExtension = function InlineExtension(props) {
|
|
|
50
67
|
isNodeHovered = props.isNodeHovered,
|
|
51
68
|
setIsNodeHovered = props.setIsNodeHovered,
|
|
52
69
|
isLivePageViewMode = props.isLivePageViewMode;
|
|
53
|
-
var
|
|
54
|
-
showMacroInteractionDesignUpdates =
|
|
70
|
+
var _ref3 = macroInteractionDesignFeatureFlags || {},
|
|
71
|
+
showMacroInteractionDesignUpdates = _ref3.showMacroInteractionDesignUpdates;
|
|
55
72
|
var _useSharedPluginState = (0, _hooks.useSharedPluginStateWithSelector)(pluginInjectionApi, ['width'], function (states) {
|
|
56
73
|
var _states$widthState;
|
|
57
74
|
return {
|
|
@@ -116,8 +133,10 @@ var InlineExtension = function InlineExtension(props) {
|
|
|
116
133
|
showMacroInteractionDesignUpdates: showMacroInteractionDesignUpdates,
|
|
117
134
|
pluginInjectionApi: pluginInjectionApi
|
|
118
135
|
})));
|
|
119
|
-
return (0, _react2.jsx)(
|
|
120
|
-
|
|
136
|
+
return (0, _expValEquals.expValEquals)('enghealth-53346_fix_redaction_marker_editor', 'isEnabled', true) ? (0, _react2.jsx)(MemoizedWidthContextProvider, {
|
|
137
|
+
rendererContainerWidth: rendererContainerWidth
|
|
138
|
+
}, inlineExtensionInternal) : (0, _react2.jsx)(LegacyWidthContextProvider, {
|
|
139
|
+
rendererContainerWidth: rendererContainerWidth
|
|
121
140
|
}, inlineExtensionInternal);
|
|
122
141
|
};
|
|
123
142
|
var _default = exports.default = InlineExtension;
|
|
@@ -259,10 +259,7 @@ var ExtensionNode = exports.ExtensionNode = /*#__PURE__*/function (_ReactNodeVie
|
|
|
259
259
|
}
|
|
260
260
|
return false;
|
|
261
261
|
}
|
|
262
|
-
|
|
263
|
-
return event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement;
|
|
264
|
-
}
|
|
265
|
-
return event.target instanceof HTMLInputElement;
|
|
262
|
+
return event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement;
|
|
266
263
|
}
|
|
267
264
|
}, {
|
|
268
265
|
key: "getContentDOM",
|
|
@@ -28,7 +28,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
28
28
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
29
29
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
30
30
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
31
|
-
var packageVersion = "116.
|
|
31
|
+
var packageVersion = "116.15.0";
|
|
32
32
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
33
33
|
// Remove URL as it has UGC
|
|
34
34
|
// Ignored via go/ees007
|
|
@@ -24,7 +24,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
24
24
|
* @jsx jsx
|
|
25
25
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
26
|
var packageName = "@atlaskit/editor-common";
|
|
27
|
-
var packageVersion = "116.
|
|
27
|
+
var packageVersion = "116.15.0";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var fadeIn = (0, _react2.keyframes)({
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import React, { Fragment } from 'react';
|
|
5
|
+
import React, { Fragment, useMemo } 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';
|
|
@@ -31,6 +31,23 @@ const hoverStyles = css({
|
|
|
31
31
|
boxShadow: `0 0 0 1px ${"var(--ds-border-input, #8C8F97)"}`
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
|
+
const MemoizedWidthContextProvider = ({
|
|
35
|
+
rendererContainerWidth,
|
|
36
|
+
children
|
|
37
|
+
}) => {
|
|
38
|
+
const widthContextValue = useMemo(() => createWidthContext(rendererContainerWidth), [rendererContainerWidth]);
|
|
39
|
+
return jsx(WidthContext.Provider, {
|
|
40
|
+
value: widthContextValue
|
|
41
|
+
}, children);
|
|
42
|
+
};
|
|
43
|
+
const LegacyWidthContextProvider = ({
|
|
44
|
+
rendererContainerWidth,
|
|
45
|
+
children
|
|
46
|
+
}) => {
|
|
47
|
+
return jsx(WidthContext.Provider, {
|
|
48
|
+
value: createWidthContext(rendererContainerWidth)
|
|
49
|
+
}, children);
|
|
50
|
+
};
|
|
34
51
|
const InlineExtension = props => {
|
|
35
52
|
const {
|
|
36
53
|
node,
|
|
@@ -106,8 +123,10 @@ const InlineExtension = props => {
|
|
|
106
123
|
showMacroInteractionDesignUpdates: showMacroInteractionDesignUpdates,
|
|
107
124
|
pluginInjectionApi: pluginInjectionApi
|
|
108
125
|
})));
|
|
109
|
-
return jsx(
|
|
110
|
-
|
|
126
|
+
return expValEquals('enghealth-53346_fix_redaction_marker_editor', 'isEnabled', true) ? jsx(MemoizedWidthContextProvider, {
|
|
127
|
+
rendererContainerWidth: rendererContainerWidth
|
|
128
|
+
}, inlineExtensionInternal) : jsx(LegacyWidthContextProvider, {
|
|
129
|
+
rendererContainerWidth: rendererContainerWidth
|
|
111
130
|
}, inlineExtensionInternal);
|
|
112
131
|
};
|
|
113
132
|
export default InlineExtension;
|
|
@@ -217,10 +217,7 @@ export class ExtensionNode extends ReactNodeView {
|
|
|
217
217
|
}
|
|
218
218
|
return false;
|
|
219
219
|
}
|
|
220
|
-
|
|
221
|
-
return event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement;
|
|
222
|
-
}
|
|
223
|
-
return event.target instanceof HTMLInputElement;
|
|
220
|
+
return event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement;
|
|
224
221
|
}
|
|
225
222
|
getContentDOM() {
|
|
226
223
|
var _this$reactComponentP4, _this$reactComponentP5;
|
|
@@ -14,7 +14,7 @@ const NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
14
14
|
const RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
15
15
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
16
16
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
17
|
-
const packageVersion = "116.
|
|
17
|
+
const packageVersion = "116.15.0";
|
|
18
18
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
19
19
|
// Remove URL as it has UGC
|
|
20
20
|
// Ignored via go/ees007
|
|
@@ -14,7 +14,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
14
14
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
15
15
|
import Layer from '../Layer';
|
|
16
16
|
const packageName = "@atlaskit/editor-common";
|
|
17
|
-
const packageVersion = "116.
|
|
17
|
+
const packageVersion = "116.15.0";
|
|
18
18
|
const halfFocusRing = 1;
|
|
19
19
|
const dropOffset = '0, 8';
|
|
20
20
|
const fadeIn = keyframes({
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jsxRuntime classic
|
|
3
3
|
* @jsx jsx
|
|
4
4
|
*/
|
|
5
|
-
import React, { Fragment } from 'react';
|
|
5
|
+
import React, { Fragment, useMemo } 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';
|
|
@@ -31,6 +31,23 @@ var hoverStyles = css({
|
|
|
31
31
|
boxShadow: "0 0 0 1px ".concat("var(--ds-border-input, #8C8F97)")
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
|
+
var MemoizedWidthContextProvider = function MemoizedWidthContextProvider(_ref) {
|
|
35
|
+
var rendererContainerWidth = _ref.rendererContainerWidth,
|
|
36
|
+
children = _ref.children;
|
|
37
|
+
var widthContextValue = useMemo(function () {
|
|
38
|
+
return createWidthContext(rendererContainerWidth);
|
|
39
|
+
}, [rendererContainerWidth]);
|
|
40
|
+
return jsx(WidthContext.Provider, {
|
|
41
|
+
value: widthContextValue
|
|
42
|
+
}, children);
|
|
43
|
+
};
|
|
44
|
+
var LegacyWidthContextProvider = function LegacyWidthContextProvider(_ref2) {
|
|
45
|
+
var rendererContainerWidth = _ref2.rendererContainerWidth,
|
|
46
|
+
children = _ref2.children;
|
|
47
|
+
return jsx(WidthContext.Provider, {
|
|
48
|
+
value: createWidthContext(rendererContainerWidth)
|
|
49
|
+
}, children);
|
|
50
|
+
};
|
|
34
51
|
var InlineExtension = function InlineExtension(props) {
|
|
35
52
|
var node = props.node,
|
|
36
53
|
pluginInjectionApi = props.pluginInjectionApi,
|
|
@@ -40,8 +57,8 @@ var InlineExtension = function InlineExtension(props) {
|
|
|
40
57
|
isNodeHovered = props.isNodeHovered,
|
|
41
58
|
setIsNodeHovered = props.setIsNodeHovered,
|
|
42
59
|
isLivePageViewMode = props.isLivePageViewMode;
|
|
43
|
-
var
|
|
44
|
-
showMacroInteractionDesignUpdates =
|
|
60
|
+
var _ref3 = macroInteractionDesignFeatureFlags || {},
|
|
61
|
+
showMacroInteractionDesignUpdates = _ref3.showMacroInteractionDesignUpdates;
|
|
45
62
|
var _useSharedPluginState = useSharedPluginStateWithSelector(pluginInjectionApi, ['width'], function (states) {
|
|
46
63
|
var _states$widthState;
|
|
47
64
|
return {
|
|
@@ -106,8 +123,10 @@ var InlineExtension = function InlineExtension(props) {
|
|
|
106
123
|
showMacroInteractionDesignUpdates: showMacroInteractionDesignUpdates,
|
|
107
124
|
pluginInjectionApi: pluginInjectionApi
|
|
108
125
|
})));
|
|
109
|
-
return jsx(
|
|
110
|
-
|
|
126
|
+
return expValEquals('enghealth-53346_fix_redaction_marker_editor', 'isEnabled', true) ? jsx(MemoizedWidthContextProvider, {
|
|
127
|
+
rendererContainerWidth: rendererContainerWidth
|
|
128
|
+
}, inlineExtensionInternal) : jsx(LegacyWidthContextProvider, {
|
|
129
|
+
rendererContainerWidth: rendererContainerWidth
|
|
111
130
|
}, inlineExtensionInternal);
|
|
112
131
|
};
|
|
113
132
|
export default InlineExtension;
|
|
@@ -251,10 +251,7 @@ export var ExtensionNode = /*#__PURE__*/function (_ReactNodeView) {
|
|
|
251
251
|
}
|
|
252
252
|
return false;
|
|
253
253
|
}
|
|
254
|
-
|
|
255
|
-
return event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement;
|
|
256
|
-
}
|
|
257
|
-
return event.target instanceof HTMLInputElement;
|
|
254
|
+
return event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement;
|
|
258
255
|
}
|
|
259
256
|
}, {
|
|
260
257
|
key: "getContentDOM",
|
|
@@ -20,7 +20,7 @@ var NETWORK_FAILURE_REGEX = /^network failure/i;
|
|
|
20
20
|
var RESIZE_OBSERVER_LOOP_REGEX = /ResizeObserver loop completed with undelivered notifications/;
|
|
21
21
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
22
22
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
23
|
-
var packageVersion = "116.
|
|
23
|
+
var packageVersion = "116.15.0";
|
|
24
24
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
25
25
|
// Remove URL as it has UGC
|
|
26
26
|
// Ignored via go/ees007
|
|
@@ -21,7 +21,7 @@ import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
|
21
21
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
22
22
|
import Layer from '../Layer';
|
|
23
23
|
var packageName = "@atlaskit/editor-common";
|
|
24
|
-
var packageVersion = "116.
|
|
24
|
+
var packageVersion = "116.15.0";
|
|
25
25
|
var halfFocusRing = 1;
|
|
26
26
|
var dropOffset = '0, 8';
|
|
27
27
|
var fadeIn = keyframes({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "116.
|
|
3
|
+
"version": "116.16.0",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,58 +32,58 @@
|
|
|
32
32
|
"@atlaskit/adf-schema": "^56.0.0",
|
|
33
33
|
"@atlaskit/adf-utils": "^20.0.0",
|
|
34
34
|
"@atlaskit/afm-i18n-platform-editor-editor-common": "2.168.0",
|
|
35
|
-
"@atlaskit/analytics-listeners": "^11.
|
|
36
|
-
"@atlaskit/analytics-namespaced-context": "^8.
|
|
37
|
-
"@atlaskit/analytics-next": "^12.
|
|
35
|
+
"@atlaskit/analytics-listeners": "^11.1.0",
|
|
36
|
+
"@atlaskit/analytics-namespaced-context": "^8.1.0",
|
|
37
|
+
"@atlaskit/analytics-next": "^12.1.0",
|
|
38
38
|
"@atlaskit/atlassian-context": "^1.0.0",
|
|
39
|
-
"@atlaskit/browser-apis": "^1.
|
|
40
|
-
"@atlaskit/button": "^24.
|
|
39
|
+
"@atlaskit/browser-apis": "^1.1.0",
|
|
40
|
+
"@atlaskit/button": "^24.2.0",
|
|
41
41
|
"@atlaskit/codemod-utils": "^5.0.0",
|
|
42
42
|
"@atlaskit/css": "^1.0.0",
|
|
43
43
|
"@atlaskit/custom-steps": "^1.0.0",
|
|
44
|
-
"@atlaskit/dropdown-menu": "^17.
|
|
44
|
+
"@atlaskit/dropdown-menu": "^17.1.0",
|
|
45
45
|
"@atlaskit/editor-json-transformer": "^9.0.0",
|
|
46
46
|
"@atlaskit/editor-palette": "^3.1.0",
|
|
47
47
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
48
48
|
"@atlaskit/editor-shared-styles": "^4.0.0",
|
|
49
49
|
"@atlaskit/editor-tables": "^3.0.0",
|
|
50
|
-
"@atlaskit/editor-toolbar": "^2.
|
|
51
|
-
"@atlaskit/editor-toolbar-model": "^1.
|
|
50
|
+
"@atlaskit/editor-toolbar": "^2.1.0",
|
|
51
|
+
"@atlaskit/editor-toolbar-model": "^1.1.0",
|
|
52
52
|
"@atlaskit/emoji": "^71.6.0",
|
|
53
|
-
"@atlaskit/icon": "^36.
|
|
54
|
-
"@atlaskit/link": "^4.
|
|
55
|
-
"@atlaskit/link-datasource": "^6.
|
|
56
|
-
"@atlaskit/link-picker": "^6.
|
|
57
|
-
"@atlaskit/media-card": "^81.
|
|
53
|
+
"@atlaskit/icon": "^36.1.0",
|
|
54
|
+
"@atlaskit/link": "^4.1.0",
|
|
55
|
+
"@atlaskit/link-datasource": "^6.1.0",
|
|
56
|
+
"@atlaskit/link-picker": "^6.2.0",
|
|
57
|
+
"@atlaskit/media-card": "^81.2.0",
|
|
58
58
|
"@atlaskit/media-client": "^37.1.0",
|
|
59
|
-
"@atlaskit/media-client-react": "^6.
|
|
60
|
-
"@atlaskit/media-common": "^14.
|
|
61
|
-
"@atlaskit/media-file-preview": "^1.
|
|
62
|
-
"@atlaskit/media-picker": "^72.
|
|
63
|
-
"@atlaskit/media-ui": "^30.
|
|
64
|
-
"@atlaskit/media-viewer": "^54.
|
|
65
|
-
"@atlaskit/mention": "^27.
|
|
66
|
-
"@atlaskit/menu": "^9.
|
|
67
|
-
"@atlaskit/object": "^2.
|
|
68
|
-
"@atlaskit/onboarding": "^15.
|
|
59
|
+
"@atlaskit/media-client-react": "^6.1.0",
|
|
60
|
+
"@atlaskit/media-common": "^14.2.0",
|
|
61
|
+
"@atlaskit/media-file-preview": "^1.1.0",
|
|
62
|
+
"@atlaskit/media-picker": "^72.1.0",
|
|
63
|
+
"@atlaskit/media-ui": "^30.5.0",
|
|
64
|
+
"@atlaskit/media-viewer": "^54.3.0",
|
|
65
|
+
"@atlaskit/mention": "^27.5.0",
|
|
66
|
+
"@atlaskit/menu": "^9.1.0",
|
|
67
|
+
"@atlaskit/object": "^2.1.0",
|
|
68
|
+
"@atlaskit/onboarding": "^15.1.0",
|
|
69
69
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
70
|
-
"@atlaskit/platform-feature-flags-react": "^1.
|
|
71
|
-
"@atlaskit/primitives": "^20.
|
|
72
|
-
"@atlaskit/profilecard": "^26.
|
|
70
|
+
"@atlaskit/platform-feature-flags-react": "^1.1.0",
|
|
71
|
+
"@atlaskit/primitives": "^20.1.0",
|
|
72
|
+
"@atlaskit/profilecard": "^26.4.0",
|
|
73
73
|
"@atlaskit/prosemirror-history": "^1.0.0",
|
|
74
74
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
75
|
-
"@atlaskit/react-ufo": "^7.
|
|
76
|
-
"@atlaskit/section-message": "^9.
|
|
77
|
-
"@atlaskit/smart-card": "^45.
|
|
75
|
+
"@atlaskit/react-ufo": "^7.3.0",
|
|
76
|
+
"@atlaskit/section-message": "^9.2.0",
|
|
77
|
+
"@atlaskit/smart-card": "^45.6.0",
|
|
78
78
|
"@atlaskit/smart-user-picker": "^11.0.0",
|
|
79
|
-
"@atlaskit/spinner": "^20.
|
|
80
|
-
"@atlaskit/task-decision": "^21.
|
|
81
|
-
"@atlaskit/teams-app-config": "^2.
|
|
82
|
-
"@atlaskit/textfield": "^9.
|
|
83
|
-
"@atlaskit/tmp-editor-statsig": "^114.
|
|
84
|
-
"@atlaskit/tokens": "^15.
|
|
85
|
-
"@atlaskit/tooltip": "^23.
|
|
86
|
-
"@atlaskit/width-detector": "^6.
|
|
79
|
+
"@atlaskit/spinner": "^20.1.0",
|
|
80
|
+
"@atlaskit/task-decision": "^21.4.0",
|
|
81
|
+
"@atlaskit/teams-app-config": "^2.1.0",
|
|
82
|
+
"@atlaskit/textfield": "^9.1.0",
|
|
83
|
+
"@atlaskit/tmp-editor-statsig": "^114.3.0",
|
|
84
|
+
"@atlaskit/tokens": "^15.1.0",
|
|
85
|
+
"@atlaskit/tooltip": "^23.1.0",
|
|
86
|
+
"@atlaskit/width-detector": "^6.1.0",
|
|
87
87
|
"@babel/runtime": "^7.0.0",
|
|
88
88
|
"@compiled/react": "^0.20.0",
|
|
89
89
|
"@emotion/react": "^11.7.1",
|
|
@@ -223,9 +223,6 @@
|
|
|
223
223
|
"rovo_chat_enable_skills_ui_m1": {
|
|
224
224
|
"type": "boolean"
|
|
225
225
|
},
|
|
226
|
-
"forge-ui-extensionnodeview-stop-event-for-textarea": {
|
|
227
|
-
"type": "boolean"
|
|
228
|
-
},
|
|
229
226
|
"platform_fix_macro_renders_in_layouts": {
|
|
230
227
|
"type": "boolean"
|
|
231
228
|
},
|