@atlaskit/renderer 137.1.10 → 137.1.11
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 +6 -0
- package/dist/cjs/actions/index.js +2 -2
- package/dist/cjs/react/index.js +2 -2
- package/dist/cjs/react/marks/breakout.js +3 -3
- package/dist/cjs/react/marks/code.js +1 -1
- package/dist/cjs/react/nodes/date.js +1 -1
- package/dist/cjs/react/nodes/embedCard.js +2 -2
- package/dist/cjs/react/nodes/heading-anchor.js +1 -1
- package/dist/cjs/react/nodes/layoutSection.js +2 -2
- package/dist/cjs/react/nodes/mediaInline.js +1 -1
- package/dist/cjs/react/nodes/mediaSingle/index.js +1 -1
- package/dist/cjs/react/nodes/table.js +3 -3
- package/dist/cjs/ui/Expand.js +1 -1
- package/dist/cjs/ui/Renderer/RendererStyleContainer.js +3 -3
- package/dist/cjs/ui/Renderer/index.js +5 -5
- package/dist/cjs/utils.js +2 -2
- package/dist/es2019/actions/index.js +1 -1
- package/dist/es2019/react/index.js +1 -1
- package/dist/es2019/react/marks/breakout.js +1 -1
- package/dist/es2019/react/marks/code.js +1 -1
- package/dist/es2019/react/nodes/date.js +1 -1
- package/dist/es2019/react/nodes/embedCard.js +1 -1
- package/dist/es2019/react/nodes/heading-anchor.js +1 -1
- package/dist/es2019/react/nodes/layoutSection.js +1 -1
- package/dist/es2019/react/nodes/mediaInline.js +1 -1
- package/dist/es2019/react/nodes/mediaSingle/index.js +1 -1
- package/dist/es2019/react/nodes/table.js +1 -1
- package/dist/es2019/ui/Expand.js +1 -1
- package/dist/es2019/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +2 -2
- package/dist/es2019/utils.js +1 -1
- package/dist/esm/actions/index.js +1 -1
- package/dist/esm/react/index.js +1 -1
- package/dist/esm/react/marks/breakout.js +1 -1
- package/dist/esm/react/marks/code.js +1 -1
- package/dist/esm/react/nodes/date.js +1 -1
- package/dist/esm/react/nodes/embedCard.js +1 -1
- package/dist/esm/react/nodes/heading-anchor.js +1 -1
- package/dist/esm/react/nodes/layoutSection.js +1 -1
- package/dist/esm/react/nodes/mediaInline.js +1 -1
- package/dist/esm/react/nodes/mediaSingle/index.js +1 -1
- package/dist/esm/react/nodes/table.js +1 -1
- package/dist/esm/ui/Expand.js +1 -1
- package/dist/esm/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/esm/ui/Renderer/index.js +2 -2
- package/dist/esm/utils.js +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -11,7 +11,7 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/creat
|
|
|
11
11
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
12
12
|
var _adfSchema = require("@atlaskit/adf-schema");
|
|
13
13
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
14
|
-
var
|
|
14
|
+
var _JSONTransformer = require("@atlaskit/editor-json-transformer/JSONTransformer-2");
|
|
15
15
|
var _state = require("@atlaskit/editor-prosemirror/state");
|
|
16
16
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
17
17
|
var _transform = require("@atlaskit/editor-prosemirror/transform");
|
|
@@ -33,7 +33,7 @@ var RendererActions = exports.default = /*#__PURE__*/function () {
|
|
|
33
33
|
// the <RendererContext> component for now.
|
|
34
34
|
(0, _defineProperty2.default)(this, "initFromContext", false);
|
|
35
35
|
this.initFromContext = initFromContext;
|
|
36
|
-
this.transformer = new
|
|
36
|
+
this.transformer = new _JSONTransformer.JSONTransformer();
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
//#region private
|
package/dist/cjs/react/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
|
14
14
|
var _react = _interopRequireDefault(require("react"));
|
|
15
15
|
var _model = require("@atlaskit/editor-prosemirror/model");
|
|
16
16
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
17
|
-
var
|
|
17
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
18
18
|
var _expandBody = require("../ui/utils/expand-body");
|
|
19
19
|
var _nodes = require("./nodes");
|
|
20
20
|
var _textWrapper = _interopRequireDefault(require("./nodes/text-wrapper"));
|
|
@@ -184,7 +184,7 @@ var ReactSerializer = exports.default = /*#__PURE__*/function () {
|
|
|
184
184
|
});
|
|
185
185
|
return props;
|
|
186
186
|
});
|
|
187
|
-
if ((0,
|
|
187
|
+
if ((0, _editorExperiment.editorExperiment)('comment_on_bodied_extensions', true)) {
|
|
188
188
|
this.initStartPos = init.startPos || 1;
|
|
189
189
|
this.startPos = init.startPos || 1;
|
|
190
190
|
} else {
|
|
@@ -8,7 +8,7 @@ exports.default = Breakout;
|
|
|
8
8
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
9
|
var _react = require("@emotion/react");
|
|
10
10
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
11
|
-
var
|
|
11
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
12
12
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
13
13
|
var _consts = require("../../consts");
|
|
14
14
|
/**
|
|
@@ -28,7 +28,7 @@ var innerWrapperStyles = (0, _react.css)({
|
|
|
28
28
|
flexShrink: 0
|
|
29
29
|
});
|
|
30
30
|
var getWidth = function getWidth(width, mode) {
|
|
31
|
-
if ((0,
|
|
31
|
+
if ((0, _editorExperiment.editorExperiment)('advanced_layouts', true) && width) {
|
|
32
32
|
return "min(".concat(width, "px, var(--ak-editor--breakout-container-without-gutter-width))");
|
|
33
33
|
} else {
|
|
34
34
|
if ((0, _expValEquals.expValEquals)('editor_tinymce_full_width_mode', 'isEnabled', true) || (0, _expValEquals.expValEquals)('confluence_max_width_content_appearance', 'isEnabled', true)) {
|
|
@@ -67,7 +67,7 @@ function Breakout(props) {
|
|
|
67
67
|
"data-mode": props.mode
|
|
68
68
|
// Ignored via go/ees005
|
|
69
69
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
70
|
-
}, (0,
|
|
70
|
+
}, (0, _editorExperiment.editorExperiment)('advanced_layouts', true) && {
|
|
71
71
|
'data-has-width': !!props.width,
|
|
72
72
|
'data-width': props.width
|
|
73
73
|
}, {
|
|
@@ -26,6 +26,6 @@ function CodeWithIntl(props) {
|
|
|
26
26
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
27
27
|
}, props.dataAttributes), props.children);
|
|
28
28
|
}
|
|
29
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
29
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
30
30
|
var _default_1 = (0, _reactIntl.injectIntl)(CodeWithIntl);
|
|
31
31
|
var _default = exports.default = _default_1;
|
|
@@ -37,7 +37,7 @@ var Date = /*#__PURE__*/(0, _react.memo)(function Date(props) {
|
|
|
37
37
|
}, parentIsIncompleteTask ? (0, _utils.timestampToTaskContext)(timestamp, intl, timeZone) : (0, _utils.timestampToString)(timestamp, intl)));
|
|
38
38
|
});
|
|
39
39
|
|
|
40
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
40
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
41
41
|
var DateComponent = exports.DateComponent = (0, _reactIntl.injectIntl)(Date);
|
|
42
42
|
function DateWithFormatContext(props) {
|
|
43
43
|
var _useTaskItemsFormatCo = (0, _TaskItemsFormatContext.useTaskItemsFormatContext)(),
|
|
@@ -16,7 +16,7 @@ var _ui = require("@atlaskit/editor-common/ui");
|
|
|
16
16
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
17
17
|
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
18
18
|
var _componentWithCondition = require("@atlaskit/platform-feature-flags-react/component-with-condition");
|
|
19
|
-
var
|
|
19
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
20
20
|
var _fallback = require("./fallback");
|
|
21
21
|
var _editorSmartLinkDraggable = require("@atlaskit/editor-smart-link-draggable");
|
|
22
22
|
var _consts = require("../../consts");
|
|
@@ -286,7 +286,7 @@ var EmbedOrBlockCardInternal = exports.EmbedOrBlockCardInternal = function Embed
|
|
|
286
286
|
});
|
|
287
287
|
};
|
|
288
288
|
var EmbedCardWithCondition = (0, _componentWithCondition.componentWithCondition)(function () {
|
|
289
|
-
return (0,
|
|
289
|
+
return (0, _editorExperiment.editorExperiment)('platform_editor_preview_panel_responsiveness', true, {
|
|
290
290
|
exposure: true
|
|
291
291
|
});
|
|
292
292
|
}, EmbedOrBlockCardInternal, EmbedCardInternal);
|
|
@@ -186,6 +186,6 @@ var HeadingAnchor = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
186
186
|
return this.renderAnchorButton();
|
|
187
187
|
}
|
|
188
188
|
}]);
|
|
189
|
-
}(_react.default.PureComponent); // eslint-disable-next-line @typescript-eslint/
|
|
189
|
+
}(_react.default.PureComponent); // eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
190
190
|
var _default_1 = (0, _reactIntl.injectIntl)(HeadingAnchor);
|
|
191
191
|
var _default = exports.default = _default_1;
|
|
@@ -6,11 +6,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.default = LayoutSection;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
var
|
|
9
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
10
10
|
function LayoutSection(props) {
|
|
11
11
|
var _ref, _props$content, _props$getContent;
|
|
12
12
|
var columnCount = (_ref = (_props$content = props.content) !== null && _props$content !== void 0 ? _props$content : (_props$getContent = props.getContent) === null || _props$getContent === void 0 ? void 0 : _props$getContent.call(props)) === null || _ref === void 0 ? void 0 : _ref.length;
|
|
13
|
-
return (0,
|
|
13
|
+
return (0, _editorExperiment.editorExperiment)('advanced_layouts', true) ?
|
|
14
14
|
/*#__PURE__*/
|
|
15
15
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
|
|
16
16
|
_react.default.createElement("div", {
|
|
@@ -218,6 +218,6 @@ var MediaInline = function MediaInline(props) {
|
|
|
218
218
|
});
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
221
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
222
222
|
var _default_1 = (0, _reactIntl.injectIntl)(MediaInline);
|
|
223
223
|
var _default = exports.default = _default_1;
|
|
@@ -289,6 +289,6 @@ var MediaSingle = function MediaSingle(props) {
|
|
|
289
289
|
}));
|
|
290
290
|
};
|
|
291
291
|
|
|
292
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
292
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
293
293
|
var _default_1 = (0, _reactIntl.injectIntl)(MediaSingle);
|
|
294
294
|
var _default = exports.default = _default_1;
|
|
@@ -23,7 +23,7 @@ var _consts = require("../../consts");
|
|
|
23
23
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
24
24
|
var _types = require("@atlaskit/editor-common/types");
|
|
25
25
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
26
|
-
var
|
|
26
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
27
27
|
var _tableCell = require("./tableCell");
|
|
28
28
|
var _SmartCardStorage = require("../../ui/SmartCardStorage");
|
|
29
29
|
var _sticky = require("./table/sticky");
|
|
@@ -62,7 +62,7 @@ var isTableResizingEnabled = exports.isTableResizingEnabled = function isTableRe
|
|
|
62
62
|
return (0, _appearance.isFullWidthOrFullPageAppearance)(appearance) || (0, _appearance.isCommentAppearance)(appearance);
|
|
63
63
|
};
|
|
64
64
|
var isStickyScrollbarEnabled = exports.isStickyScrollbarEnabled = function isStickyScrollbarEnabled(appearance) {
|
|
65
|
-
return (0, _appearance.isFullWidthOrFullPageAppearance)(appearance) && (0,
|
|
65
|
+
return (0, _appearance.isFullWidthOrFullPageAppearance)(appearance) && (0, _editorExperiment.editorExperiment)('platform_renderer_table_sticky_scrollbar', true, {
|
|
66
66
|
exposure: true
|
|
67
67
|
});
|
|
68
68
|
};
|
|
@@ -620,7 +620,7 @@ var TableContainer = exports.TableContainer = /*#__PURE__*/function (_React$Comp
|
|
|
620
620
|
var stickyMode = this.state.stickyMode;
|
|
621
621
|
var lineLengthFixedWidth = _editorSharedStyles.akEditorDefaultLayoutWidth;
|
|
622
622
|
var updatedLayout;
|
|
623
|
-
var fullPageRendererWidthCSS = (0,
|
|
623
|
+
var fullPageRendererWidthCSS = (0, _editorExperiment.editorExperiment)('platform_editor_preview_panel_responsiveness', true, {
|
|
624
624
|
exposure: true
|
|
625
625
|
}) ? 'calc(100cqw - var(--ak-renderer--full-page-gutter) * 2)' : "100cqw - ".concat(_style.FullPagePadding, "px * 2");
|
|
626
626
|
var renderWidthCSS = rendererAppearance === 'full-page' ? fullPageRendererWidthCSS : "100cqw";
|
package/dist/cjs/ui/Expand.js
CHANGED
|
@@ -452,6 +452,6 @@ function Expand(_ref) {
|
|
|
452
452
|
}, children)))));
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
455
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
456
456
|
var _default_1 = (0, _reactIntl.injectIntl)(Expand);
|
|
457
457
|
var _default = exports.default = _default_1;
|
|
@@ -18,7 +18,7 @@ var _styles = require("@atlaskit/editor-common/styles");
|
|
|
18
18
|
var _adfSchema = require("@atlaskit/adf-schema");
|
|
19
19
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
20
20
|
var _browser = require("@atlaskit/editor-common/browser");
|
|
21
|
-
var
|
|
21
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
22
22
|
var _table = require("../../react/nodes/table");
|
|
23
23
|
var _table2 = require("@atlaskit/editor-common/table");
|
|
24
24
|
var _lightWeightCodeBlock = require("../../react/nodes/codeBlock/components/lightWeightCodeBlock");
|
|
@@ -2277,8 +2277,8 @@ var RendererStyleContainer = exports.RendererStyleContainer = function RendererS
|
|
|
2277
2277
|
innerRef = props.innerRef,
|
|
2278
2278
|
testId = props.testId,
|
|
2279
2279
|
isInsideSyncBlock = props.isInsideSyncBlock;
|
|
2280
|
-
var isAdvancedLayoutsOn = (0,
|
|
2281
|
-
var isPreviewPanelResponsivenessOn = (0,
|
|
2280
|
+
var isAdvancedLayoutsOn = (0, _editorExperiment.editorExperiment)('advanced_layouts', true);
|
|
2281
|
+
var isPreviewPanelResponsivenessOn = (0, _editorExperiment.editorExperiment)('platform_editor_preview_panel_responsiveness', true, {
|
|
2282
2282
|
exposure: true
|
|
2283
2283
|
});
|
|
2284
2284
|
var isStickyScrollbarOn = (0, _table.isStickyScrollbarEnabled)(appearance);
|
|
@@ -15,7 +15,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
15
15
|
var _schemaDefault = require("@atlaskit/adf-schema/schema-default");
|
|
16
16
|
var _providerFactory = require("@atlaskit/editor-common/provider-factory");
|
|
17
17
|
var _ui = require("@atlaskit/editor-common/ui");
|
|
18
|
-
var
|
|
18
|
+
var _editorExperiment = require("@atlaskit/tmp-editor-statsig/editor-experiment");
|
|
19
19
|
var _react2 = require("@emotion/react");
|
|
20
20
|
var _browser = require("@atlaskit/editor-common/browser");
|
|
21
21
|
var _nesting = require("@atlaskit/editor-common/nesting");
|
|
@@ -74,7 +74,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
74
74
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
75
75
|
var RENDER_EVENT_SAMPLE_RATE = 0.1;
|
|
76
76
|
var packageName = "@atlaskit/renderer";
|
|
77
|
-
var packageVersion = "137.1.
|
|
77
|
+
var packageVersion = "137.1.10";
|
|
78
78
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
79
79
|
containerName: 'ak-renderer-wrapper',
|
|
80
80
|
containerType: 'inline-size'
|
|
@@ -224,7 +224,7 @@ var RendererFunctionalComponent = exports.RendererFunctionalComponent = function
|
|
|
224
224
|
createAnalyticsEvent(event).fire(channel);
|
|
225
225
|
}
|
|
226
226
|
}, [createAnalyticsEvent]);
|
|
227
|
-
var _fireAnalyticsEvent = (0,
|
|
227
|
+
var _fireAnalyticsEvent = (0, _editorExperiment.editorExperiment)('platform_renderer_fix_analytics_memo_callback', true, {
|
|
228
228
|
exposure: true
|
|
229
229
|
}) ? fireAnalyticsEventNew : fireAnalyticsEventOld;
|
|
230
230
|
var deriveSerializerProps = (0, _react.useCallback)(function (props) {
|
|
@@ -817,7 +817,7 @@ function RendererActionsInternalUpdater(_ref2) {
|
|
|
817
817
|
// be incorrect (nested renderers use a fake document which represents a subset
|
|
818
818
|
// of the actual document).
|
|
819
819
|
var _doc;
|
|
820
|
-
if ((0,
|
|
820
|
+
if ((0, _editorExperiment.editorExperiment)('comment_on_bodied_extensions', true) && rootRendererContextValue) {
|
|
821
821
|
// If rootRendererContextValue is set -- we are inside a nested renderer
|
|
822
822
|
// and should always use the doc from the root renderer
|
|
823
823
|
_doc = rootRendererContextValue.doc;
|
|
@@ -836,7 +836,7 @@ function RendererActionsInternalUpdater(_ref2) {
|
|
|
836
836
|
return actions._privateUnregisterRenderer();
|
|
837
837
|
};
|
|
838
838
|
}, [actions, schema, _doc, onAnalyticsEvent]);
|
|
839
|
-
if ((0,
|
|
839
|
+
if ((0, _editorExperiment.editorExperiment)('comment_on_bodied_extensions', true)) {
|
|
840
840
|
return (
|
|
841
841
|
// eslint-disable-next-line @atlassian/perf-linting/no-inline-context-value, @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
842
842
|
(0, _react2.jsx)(RootRendererContext.Provider, {
|
package/dist/cjs/utils.js
CHANGED
|
@@ -10,7 +10,7 @@ exports.getText = exports.getEventHandler = void 0;
|
|
|
10
10
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
11
11
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
12
12
|
var _schemaDefault = require("@atlaskit/adf-schema/schema-default");
|
|
13
|
-
var
|
|
13
|
+
var _JSONTransformer = require("@atlaskit/editor-json-transformer/JSONTransformer-2");
|
|
14
14
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
15
15
|
// Entry file in package.json
|
|
16
16
|
|
|
@@ -28,7 +28,7 @@ var ADFEncoder = exports.ADFEncoder = /*#__PURE__*/(0, _createClass2.default)(
|
|
|
28
28
|
function ADFEncoder(createTransformerWithSchema) {
|
|
29
29
|
(0, _classCallCheck2.default)(this, ADFEncoder);
|
|
30
30
|
var transformer = createTransformerWithSchema(_schemaDefault.defaultSchema);
|
|
31
|
-
this.encode = createEncoder(transformer, new
|
|
31
|
+
this.encode = createEncoder(transformer, new _JSONTransformer.JSONTransformer());
|
|
32
32
|
});
|
|
33
33
|
var getText = exports.getText = function getText(node) {
|
|
34
34
|
return node.text || node.attrs && (node.attrs.text || node.attrs.shortName) || "[".concat(typeof node.type === 'string' ? node.type : node.type.name, "]");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
import { AnnotationTypes } from '@atlaskit/adf-schema';
|
|
3
3
|
import { canApplyAnnotationOnRange, getAnnotationIdsFromRange, getAnnotationInlineNodeTypes, isEmptyTextSelectionRenderer } from '@atlaskit/editor-common/utils';
|
|
4
|
-
import { JSONTransformer } from '@atlaskit/editor-json-transformer';
|
|
4
|
+
import { JSONTransformer } from '@atlaskit/editor-json-transformer/JSONTransformer-2';
|
|
5
5
|
import { TextSelection } from '@atlaskit/editor-prosemirror/state';
|
|
6
6
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
7
7
|
import { AddNodeMarkStep, RemoveMarkStep, RemoveNodeMarkStep } from '@atlaskit/editor-prosemirror/transform';
|
|
@@ -3,7 +3,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { MarkType } from '@atlaskit/editor-prosemirror/model';
|
|
5
5
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
6
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
6
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
7
7
|
import { mergeExpandBodyText, withExpandBodyBlock } from '../ui/utils/expand-body';
|
|
8
8
|
import { Doc, DocWithSelectAllTrap, isTextNode, isTextWrapper, mergeTextNodes, toReact } from './nodes';
|
|
9
9
|
import TextWrapperComponent from './nodes/text-wrapper';
|
|
@@ -6,7 +6,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
6
6
|
/* eslint-disable @typescript-eslint/consistent-type-imports, @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766; jsx required at runtime for @jsxRuntime classic */
|
|
7
7
|
import { jsx, css } from '@emotion/react';
|
|
8
8
|
import { akEditorFullWidthLayoutWidth, akEditorMaxLayoutWidth, blockNodesVerticalMargin } from '@atlaskit/editor-shared-styles';
|
|
9
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
9
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
10
10
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
11
11
|
import { RendererCssClassName } from '../../consts';
|
|
12
12
|
const flexWrapperStyles = css({
|
|
@@ -18,6 +18,6 @@ export function CodeWithIntl(props) {
|
|
|
18
18
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
19
19
|
}, props.dataAttributes), props.children);
|
|
20
20
|
}
|
|
21
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
22
22
|
const _default_1 = injectIntl(CodeWithIntl);
|
|
23
23
|
export default _default_1;
|
|
@@ -30,7 +30,7 @@ const Date = /*#__PURE__*/memo(function Date(props) {
|
|
|
30
30
|
}, parentIsIncompleteTask ? timestampToTaskContext(timestamp, intl, timeZone) : timestampToString(timestamp, intl)));
|
|
31
31
|
});
|
|
32
32
|
|
|
33
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
33
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
34
34
|
export const DateComponent = injectIntl(Date);
|
|
35
35
|
function DateWithFormatContext(props) {
|
|
36
36
|
const [isChecked] = useTaskItemsFormatContext();
|
|
@@ -14,7 +14,7 @@ import { WidthConsumer, UnsupportedBlock, MediaSingle as UIMediaSingle, WidthCon
|
|
|
14
14
|
import { akEditorDefaultLayoutWidth, akEditorFullPageNarrowBreakout, akEditorFullWidthLayoutWidth, DEFAULT_EMBED_CARD_HEIGHT, DEFAULT_EMBED_CARD_WIDTH } from '@atlaskit/editor-shared-styles';
|
|
15
15
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
16
16
|
import { componentWithCondition } from '@atlaskit/platform-feature-flags-react/component-with-condition';
|
|
17
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
17
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
18
18
|
import { CardErrorBoundary } from './fallback';
|
|
19
19
|
import { SmartLinkDraggable, SMART_LINK_DRAG_TYPES, SMART_LINK_APPEARANCE } from '@atlaskit/editor-smart-link-draggable';
|
|
20
20
|
import { RendererCssClassName } from '../../consts';
|
|
@@ -152,6 +152,6 @@ class HeadingAnchor extends React.PureComponent {
|
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
155
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
156
156
|
const _default_1 = injectIntl(HeadingAnchor);
|
|
157
157
|
export default _default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
2
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
3
3
|
export default function LayoutSection(props) {
|
|
4
4
|
var _ref, _props$content, _props$getContent;
|
|
5
5
|
const columnCount = (_ref = (_props$content = props.content) !== null && _props$content !== void 0 ? _props$content : (_props$getContent = props.getContent) === null || _props$getContent === void 0 ? void 0 : _props$getContent.call(props)) === null || _ref === void 0 ? void 0 : _ref.length;
|
|
@@ -183,6 +183,6 @@ const MediaInline = props => {
|
|
|
183
183
|
});
|
|
184
184
|
};
|
|
185
185
|
|
|
186
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
186
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
187
187
|
const _default_1 = injectIntl(MediaInline);
|
|
188
188
|
export default _default_1;
|
|
@@ -275,6 +275,6 @@ const MediaSingle = props => {
|
|
|
275
275
|
}));
|
|
276
276
|
};
|
|
277
277
|
|
|
278
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
278
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
279
279
|
const _default_1 = injectIntl(MediaSingle);
|
|
280
280
|
export default _default_1;
|
|
@@ -11,7 +11,7 @@ import { RendererCssClassName } from '../../consts';
|
|
|
11
11
|
import { createCompareNodes, convertProsemirrorTableNodeToArrayOfRows, hasMergedCell, compose } from '@atlaskit/editor-common/utils';
|
|
12
12
|
import { SortOrder } from '@atlaskit/editor-common/types';
|
|
13
13
|
import { akEditorDefaultLayoutWidth, akEditorFullWidthLayoutWidth, akEditorMaxWidthLayoutWidth } from '@atlaskit/editor-shared-styles';
|
|
14
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
14
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
15
15
|
import { TableCell, TableHeader } from './tableCell';
|
|
16
16
|
import { withSmartCardStorage } from '../../ui/SmartCardStorage';
|
|
17
17
|
import { StickyTable, tableStickyPadding, OverflowParent } from './table/sticky';
|
package/dist/es2019/ui/Expand.js
CHANGED
|
@@ -19,7 +19,7 @@ import { CodeBlockSharedCssClassName, DateSharedCssClassName, listItemCounterPad
|
|
|
19
19
|
import { bulletListSelector, orderedListSelector } from '@atlaskit/adf-schema';
|
|
20
20
|
import { shadowClassNames, shadowObserverClassNames } from '@atlaskit/editor-common/ui';
|
|
21
21
|
import { getBrowserInfo } from '@atlaskit/editor-common/browser';
|
|
22
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
22
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
23
23
|
import { isStickyScrollbarEnabled, isTableResizingEnabled } from '../../react/nodes/table';
|
|
24
24
|
import { SORTABLE_COLUMN_ICON_CLASSNAME } from '@atlaskit/editor-common/table';
|
|
25
25
|
import { LightWeightCodeBlockCssClassName } from '../../react/nodes/codeBlock/components/lightWeightCodeBlock';
|
|
@@ -7,7 +7,7 @@ import React, { Fragment, useCallback, useContext, useEffect, useLayoutEffect, u
|
|
|
7
7
|
import { getSchemaBasedOnStage } from '@atlaskit/adf-schema/schema-default';
|
|
8
8
|
import { ProviderFactory, ProviderFactoryProvider } from '@atlaskit/editor-common/provider-factory';
|
|
9
9
|
import { BaseTheme, IntlErrorBoundary, UnsupportedBlock, WidthProvider, WithCreateAnalyticsEvent } from '@atlaskit/editor-common/ui';
|
|
10
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
10
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
11
11
|
// eslint-disable-next-line @typescript-eslint/consistent-type-imports, @atlaskit/ui-styling-standard/use-compiled -- emotion jsx pragma; go/DSP-18766
|
|
12
12
|
import { css, jsx } from '@emotion/react'; // oxlint-ignore @typescript-eslint/consistent-type-imports -- classic @jsx jsx factory + jsx.JSX.Element types
|
|
13
13
|
|
|
@@ -60,7 +60,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
60
60
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
61
61
|
const RENDER_EVENT_SAMPLE_RATE = 0.1;
|
|
62
62
|
const packageName = "@atlaskit/renderer";
|
|
63
|
-
const packageVersion = "137.1.
|
|
63
|
+
const packageVersion = "137.1.10";
|
|
64
64
|
const setAsQueryContainerStyles = css({
|
|
65
65
|
containerName: 'ak-renderer-wrapper',
|
|
66
66
|
containerType: 'inline-size'
|
package/dist/es2019/utils.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Entry file in package.json
|
|
3
3
|
|
|
4
4
|
import { defaultSchema } from '@atlaskit/adf-schema/schema-default';
|
|
5
|
-
import { JSONTransformer } from '@atlaskit/editor-json-transformer';
|
|
5
|
+
import { JSONTransformer } from '@atlaskit/editor-json-transformer/JSONTransformer-2';
|
|
6
6
|
|
|
7
7
|
// Ignored via go/ees005
|
|
8
8
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -4,7 +4,7 @@ import _createClass from "@babel/runtime/helpers/createClass";
|
|
|
4
4
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
5
5
|
import { AnnotationTypes } from '@atlaskit/adf-schema';
|
|
6
6
|
import { canApplyAnnotationOnRange, getAnnotationIdsFromRange, getAnnotationInlineNodeTypes, isEmptyTextSelectionRenderer } from '@atlaskit/editor-common/utils';
|
|
7
|
-
import { JSONTransformer } from '@atlaskit/editor-json-transformer';
|
|
7
|
+
import { JSONTransformer } from '@atlaskit/editor-json-transformer/JSONTransformer-2';
|
|
8
8
|
import { TextSelection } from '@atlaskit/editor-prosemirror/state';
|
|
9
9
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
10
10
|
import { AddNodeMarkStep, RemoveMarkStep, RemoveNodeMarkStep } from '@atlaskit/editor-prosemirror/transform';
|
package/dist/esm/react/index.js
CHANGED
|
@@ -10,7 +10,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
10
10
|
import React from 'react';
|
|
11
11
|
import { MarkType } from '@atlaskit/editor-prosemirror/model';
|
|
12
12
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
13
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
13
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
14
14
|
import { mergeExpandBodyText, withExpandBodyBlock } from '../ui/utils/expand-body';
|
|
15
15
|
import { Doc, DocWithSelectAllTrap, isTextNode, isTextWrapper, mergeTextNodes, toReact } from './nodes';
|
|
16
16
|
import TextWrapperComponent from './nodes/text-wrapper';
|
|
@@ -6,7 +6,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
6
6
|
/* eslint-disable @typescript-eslint/consistent-type-imports, @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766; jsx required at runtime for @jsxRuntime classic */
|
|
7
7
|
import { jsx, css } from '@emotion/react';
|
|
8
8
|
import { akEditorFullWidthLayoutWidth, akEditorMaxLayoutWidth, blockNodesVerticalMargin } from '@atlaskit/editor-shared-styles';
|
|
9
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
9
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
10
10
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
11
11
|
import { RendererCssClassName } from '../../consts';
|
|
12
12
|
var flexWrapperStyles = css({
|
|
@@ -18,6 +18,6 @@ export function CodeWithIntl(props) {
|
|
|
18
18
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
19
19
|
}, props.dataAttributes), props.children);
|
|
20
20
|
}
|
|
21
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
22
22
|
var _default_1 = injectIntl(CodeWithIntl);
|
|
23
23
|
export default _default_1;
|
|
@@ -28,7 +28,7 @@ var Date = /*#__PURE__*/memo(function Date(props) {
|
|
|
28
28
|
}, parentIsIncompleteTask ? timestampToTaskContext(timestamp, intl, timeZone) : timestampToString(timestamp, intl)));
|
|
29
29
|
});
|
|
30
30
|
|
|
31
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
31
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
32
32
|
export var DateComponent = injectIntl(Date);
|
|
33
33
|
function DateWithFormatContext(props) {
|
|
34
34
|
var _useTaskItemsFormatCo = useTaskItemsFormatContext(),
|
|
@@ -15,7 +15,7 @@ import { WidthConsumer, UnsupportedBlock, MediaSingle as UIMediaSingle, WidthCon
|
|
|
15
15
|
import { akEditorDefaultLayoutWidth, akEditorFullPageNarrowBreakout, akEditorFullWidthLayoutWidth, DEFAULT_EMBED_CARD_HEIGHT, DEFAULT_EMBED_CARD_WIDTH } from '@atlaskit/editor-shared-styles';
|
|
16
16
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
17
17
|
import { componentWithCondition } from '@atlaskit/platform-feature-flags-react/component-with-condition';
|
|
18
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
18
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
19
19
|
import { CardErrorBoundary } from './fallback';
|
|
20
20
|
import { SmartLinkDraggable, SMART_LINK_DRAG_TYPES, SMART_LINK_APPEARANCE } from '@atlaskit/editor-smart-link-draggable';
|
|
21
21
|
import { RendererCssClassName } from '../../consts';
|
|
@@ -180,6 +180,6 @@ var HeadingAnchor = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
180
180
|
return this.renderAnchorButton();
|
|
181
181
|
}
|
|
182
182
|
}]);
|
|
183
|
-
}(React.PureComponent); // eslint-disable-next-line @typescript-eslint/
|
|
183
|
+
}(React.PureComponent); // eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
184
184
|
var _default_1 = injectIntl(HeadingAnchor);
|
|
185
185
|
export default _default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
2
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
3
3
|
export default function LayoutSection(props) {
|
|
4
4
|
var _ref, _props$content, _props$getContent;
|
|
5
5
|
var columnCount = (_ref = (_props$content = props.content) !== null && _props$content !== void 0 ? _props$content : (_props$getContent = props.getContent) === null || _props$getContent === void 0 ? void 0 : _props$getContent.call(props)) === null || _ref === void 0 ? void 0 : _ref.length;
|
|
@@ -209,6 +209,6 @@ var MediaInline = function MediaInline(props) {
|
|
|
209
209
|
});
|
|
210
210
|
};
|
|
211
211
|
|
|
212
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
212
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
213
213
|
var _default_1 = injectIntl(MediaInline);
|
|
214
214
|
export default _default_1;
|
|
@@ -279,6 +279,6 @@ var MediaSingle = function MediaSingle(props) {
|
|
|
279
279
|
}));
|
|
280
280
|
};
|
|
281
281
|
|
|
282
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
282
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
283
283
|
var _default_1 = injectIntl(MediaSingle);
|
|
284
284
|
export default _default_1;
|
|
@@ -24,7 +24,7 @@ import { RendererCssClassName } from '../../consts';
|
|
|
24
24
|
import { createCompareNodes, convertProsemirrorTableNodeToArrayOfRows, hasMergedCell, compose } from '@atlaskit/editor-common/utils';
|
|
25
25
|
import { SortOrder } from '@atlaskit/editor-common/types';
|
|
26
26
|
import { akEditorDefaultLayoutWidth, akEditorFullWidthLayoutWidth, akEditorMaxWidthLayoutWidth } from '@atlaskit/editor-shared-styles';
|
|
27
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
27
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
28
28
|
import { TableCell, TableHeader } from './tableCell';
|
|
29
29
|
import { withSmartCardStorage } from '../../ui/SmartCardStorage';
|
|
30
30
|
import { StickyTable, tableStickyPadding, OverflowParent } from './table/sticky';
|
package/dist/esm/ui/Expand.js
CHANGED
|
@@ -442,6 +442,6 @@ function Expand(_ref) {
|
|
|
442
442
|
}, children)))));
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
445
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
446
446
|
var _default_1 = injectIntl(Expand);
|
|
447
447
|
export default _default_1;
|
|
@@ -23,7 +23,7 @@ import { CodeBlockSharedCssClassName, DateSharedCssClassName, listItemCounterPad
|
|
|
23
23
|
import { bulletListSelector, orderedListSelector } from '@atlaskit/adf-schema';
|
|
24
24
|
import { shadowClassNames, shadowObserverClassNames } from '@atlaskit/editor-common/ui';
|
|
25
25
|
import { getBrowserInfo } from '@atlaskit/editor-common/browser';
|
|
26
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
26
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
27
27
|
import { isStickyScrollbarEnabled, isTableResizingEnabled } from '../../react/nodes/table';
|
|
28
28
|
import { SORTABLE_COLUMN_ICON_CLASSNAME } from '@atlaskit/editor-common/table';
|
|
29
29
|
import { LightWeightCodeBlockCssClassName } from '../../react/nodes/codeBlock/components/lightWeightCodeBlock';
|
|
@@ -12,7 +12,7 @@ import React, { Fragment, useCallback, useContext, useEffect, useLayoutEffect, u
|
|
|
12
12
|
import { getSchemaBasedOnStage } from '@atlaskit/adf-schema/schema-default';
|
|
13
13
|
import { ProviderFactory, ProviderFactoryProvider } from '@atlaskit/editor-common/provider-factory';
|
|
14
14
|
import { BaseTheme, IntlErrorBoundary, UnsupportedBlock, WidthProvider, WithCreateAnalyticsEvent } from '@atlaskit/editor-common/ui';
|
|
15
|
-
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/
|
|
15
|
+
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/editor-experiment';
|
|
16
16
|
// eslint-disable-next-line @typescript-eslint/consistent-type-imports, @atlaskit/ui-styling-standard/use-compiled -- emotion jsx pragma; go/DSP-18766
|
|
17
17
|
import { css, jsx } from '@emotion/react'; // oxlint-ignore @typescript-eslint/consistent-type-imports -- classic @jsx jsx factory + jsx.JSX.Element types
|
|
18
18
|
|
|
@@ -65,7 +65,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
65
65
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
66
66
|
var RENDER_EVENT_SAMPLE_RATE = 0.1;
|
|
67
67
|
var packageName = "@atlaskit/renderer";
|
|
68
|
-
var packageVersion = "137.1.
|
|
68
|
+
var packageVersion = "137.1.10";
|
|
69
69
|
var setAsQueryContainerStyles = css({
|
|
70
70
|
containerName: 'ak-renderer-wrapper',
|
|
71
71
|
containerType: 'inline-size'
|
package/dist/esm/utils.js
CHANGED
|
@@ -4,7 +4,7 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
|
4
4
|
// Entry file in package.json
|
|
5
5
|
|
|
6
6
|
import { defaultSchema } from '@atlaskit/adf-schema/schema-default';
|
|
7
|
-
import { JSONTransformer } from '@atlaskit/editor-json-transformer';
|
|
7
|
+
import { JSONTransformer } from '@atlaskit/editor-json-transformer/JSONTransformer-2';
|
|
8
8
|
|
|
9
9
|
// Ignored via go/ees005
|
|
10
10
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "137.1.
|
|
3
|
+
"version": "137.1.11",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@atlaskit/status": "^5.8.0",
|
|
71
71
|
"@atlaskit/task-decision": "^21.8.0",
|
|
72
72
|
"@atlaskit/theme": "^28.1.0",
|
|
73
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
73
|
+
"@atlaskit/tmp-editor-statsig": "^168.0.0",
|
|
74
74
|
"@atlaskit/tokens": "^16.9.0",
|
|
75
75
|
"@atlaskit/tooltip": "^24.2.0",
|
|
76
76
|
"@atlaskit/visually-hidden": "^4.3.0",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"@atlaskit/editor-plugin-media": "^18.0.0",
|
|
101
101
|
"@atlaskit/editor-test-helpers": "workspace:^",
|
|
102
102
|
"@atlaskit/inline-edit": "^16.3.0",
|
|
103
|
+
"@atlaskit/json-ld-types": "^2.0.0",
|
|
103
104
|
"@atlaskit/link-provider": "^5.4.0",
|
|
104
105
|
"@atlaskit/link-test-helpers": "^11.1.0",
|
|
105
106
|
"@atlaskit/media-core": "^38.1.0",
|