@atlaskit/renderer 128.0.6 → 128.0.7
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 +9 -0
- package/dist/cjs/react/nodes/inlineCard.js +24 -8
- package/dist/cjs/render-document.js +5 -4
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/inlineCard.js +24 -8
- package/dist/es2019/render-document.js +5 -4
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/inlineCard.js +24 -8
- package/dist/esm/render-document.js +5 -4
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 128.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`3d428e4d1167c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d428e4d1167c) -
|
|
8
|
+
[ux] All inline smart card branches are wrapped with draggable (from pragmatic-drag-and-drop). The
|
|
9
|
+
draggable logic has been improved to have better native support.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 128.0.6
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -207,7 +207,11 @@ var InlineCard = function InlineCard(props) {
|
|
|
207
207
|
if (
|
|
208
208
|
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage
|
|
209
209
|
(0, _platformFeatureFlags.fg)('editor_inline_comments_on_inline_nodes')) {
|
|
210
|
-
return (0, _react2.jsx)(
|
|
210
|
+
return (0, _react2.jsx)(_editorSmartLinkDraggable.SmartLinkDraggable, {
|
|
211
|
+
url: url,
|
|
212
|
+
appearance: _editorSmartLinkDraggable.SMART_LINK_APPEARANCE.INLINE,
|
|
213
|
+
source: _editorSmartLinkDraggable.SMART_LINK_DRAG_TYPES.RENDERER
|
|
214
|
+
}, (0, _react2.jsx)("span", (0, _extends2.default)({
|
|
211
215
|
"data-inline-card": true,
|
|
212
216
|
"data-card-data": data ? JSON.stringify(data) : undefined,
|
|
213
217
|
"data-card-url": url
|
|
@@ -221,9 +225,13 @@ var InlineCard = function InlineCard(props) {
|
|
|
221
225
|
showHoverPreview: !hideHoverPreview,
|
|
222
226
|
actionOptions: actionOptions,
|
|
223
227
|
onClick: onClick
|
|
224
|
-
}))));
|
|
228
|
+
})))));
|
|
225
229
|
}
|
|
226
|
-
return (0, _react2.jsx)(
|
|
230
|
+
return (0, _react2.jsx)(_editorSmartLinkDraggable.SmartLinkDraggable, {
|
|
231
|
+
url: url,
|
|
232
|
+
appearance: _editorSmartLinkDraggable.SMART_LINK_APPEARANCE.INLINE,
|
|
233
|
+
source: _editorSmartLinkDraggable.SMART_LINK_DRAG_TYPES.RENDERER
|
|
234
|
+
}, (0, _react2.jsx)(_analyticsNext.AnalyticsContext, {
|
|
227
235
|
data: analyticsData
|
|
228
236
|
}, wrapWithSuspense((0, _react2.jsx)(_ssr.CardSSR, {
|
|
229
237
|
appearance: "inline",
|
|
@@ -231,14 +239,18 @@ var InlineCard = function InlineCard(props) {
|
|
|
231
239
|
showHoverPreview: !hideHoverPreview,
|
|
232
240
|
actionOptions: actionOptions,
|
|
233
241
|
onClick: onClick
|
|
234
|
-
})), CompetitorPromptComponent);
|
|
242
|
+
})), CompetitorPromptComponent));
|
|
235
243
|
} else if ((ssr || cardState && (0, _expValEquals.expValEquals)('platform_editor_smartlink_local_cache', 'isEnabled', true)) && url && (0, _experiments.editorExperiment)('platform_editor_preview_panel_linking_exp', true, {
|
|
236
244
|
exposure: true
|
|
237
245
|
})) {
|
|
238
246
|
if (
|
|
239
247
|
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage
|
|
240
248
|
(0, _platformFeatureFlags.fg)('editor_inline_comments_on_inline_nodes')) {
|
|
241
|
-
return (0, _react2.jsx)(
|
|
249
|
+
return (0, _react2.jsx)(_editorSmartLinkDraggable.SmartLinkDraggable, {
|
|
250
|
+
url: url,
|
|
251
|
+
appearance: _editorSmartLinkDraggable.SMART_LINK_APPEARANCE.INLINE,
|
|
252
|
+
source: _editorSmartLinkDraggable.SMART_LINK_DRAG_TYPES.RENDERER
|
|
253
|
+
}, (0, _react2.jsx)("span", {
|
|
242
254
|
"data-inline-card": true,
|
|
243
255
|
"data-card-data": data ? JSON.stringify(data) : undefined,
|
|
244
256
|
"data-card-url": url,
|
|
@@ -271,9 +283,13 @@ var InlineCard = function InlineCard(props) {
|
|
|
271
283
|
},
|
|
272
284
|
onError: onError,
|
|
273
285
|
disablePreviewPanel: true
|
|
274
|
-
})))));
|
|
286
|
+
}))))));
|
|
275
287
|
}
|
|
276
|
-
return (0, _react2.jsx)(
|
|
288
|
+
return (0, _react2.jsx)(_editorSmartLinkDraggable.SmartLinkDraggable, {
|
|
289
|
+
url: url,
|
|
290
|
+
appearance: _editorSmartLinkDraggable.SMART_LINK_APPEARANCE.INLINE,
|
|
291
|
+
source: _editorSmartLinkDraggable.SMART_LINK_DRAG_TYPES.RENDERER
|
|
292
|
+
}, (0, _react2.jsx)(_analyticsNext.AnalyticsContext, {
|
|
277
293
|
data: analyticsData
|
|
278
294
|
}, (0, _react2.jsx)(MaybeOverlay, {
|
|
279
295
|
url: url || '',
|
|
@@ -297,7 +313,7 @@ var InlineCard = function InlineCard(props) {
|
|
|
297
313
|
},
|
|
298
314
|
onError: onError,
|
|
299
315
|
disablePreviewPanel: true
|
|
300
|
-
}))), CompetitorPromptComponent);
|
|
316
|
+
}))), CompetitorPromptComponent));
|
|
301
317
|
}
|
|
302
318
|
return (0, _react2.jsx)(_editorSmartLinkDraggable.SmartLinkDraggable, {
|
|
303
319
|
url: url || '',
|
|
@@ -12,6 +12,7 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
12
12
|
var _utils = require("@atlaskit/editor-common/utils");
|
|
13
13
|
var _validator = require("@atlaskit/editor-common/validator");
|
|
14
14
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
|
+
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
15
16
|
var _memoizeOne = _interopRequireDefault(require("memoize-one"));
|
|
16
17
|
var _events = require("./analytics/events");
|
|
17
18
|
var _unsupportedContent = require("./analytics/unsupported-content");
|
|
@@ -92,17 +93,17 @@ var _validation = function _validation(doc, schema, adfStage, useSpecBasedValida
|
|
|
92
93
|
}
|
|
93
94
|
});
|
|
94
95
|
}
|
|
95
|
-
if (result && (0, _platformFeatureFlags.fg)('platform_editor_native_embeds_fallback_transform')) {
|
|
96
|
+
if (result && !(0, _expValEquals.expValEquals)('cc-maui-experiment', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_native_embeds_fallback_transform')) {
|
|
96
97
|
var _nativeEmbedsFallback = (0, _transforms.nativeEmbedsFallbackTransform)(result),
|
|
97
98
|
_transformedAdf2 = _nativeEmbedsFallback.transformedAdf,
|
|
98
|
-
|
|
99
|
-
if (
|
|
99
|
+
hasValidTransform = _nativeEmbedsFallback.hasValidTransform;
|
|
100
|
+
if (hasValidTransform && _transformedAdf2) {
|
|
100
101
|
dispatchAnalyticsEvent === null || dispatchAnalyticsEvent === void 0 || dispatchAnalyticsEvent({
|
|
101
102
|
action: _analytics.ACTION.NATIVE_EMBEDS_TRANSFORMED,
|
|
102
103
|
actionSubject: _analytics.ACTION_SUBJECT.RENDERER,
|
|
103
104
|
eventType: _analytics.EVENT_TYPE.OPERATIONAL
|
|
104
105
|
});
|
|
105
|
-
result = _transformedAdf2
|
|
106
|
+
result = _transformedAdf2;
|
|
106
107
|
}
|
|
107
108
|
}
|
|
108
109
|
return result;
|
|
@@ -71,7 +71,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
71
71
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
72
72
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
73
73
|
var packageName = "@atlaskit/renderer";
|
|
74
|
-
var packageVersion = "128.0.
|
|
74
|
+
var packageVersion = "128.0.6";
|
|
75
75
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
76
76
|
containerName: 'ak-renderer-wrapper',
|
|
77
77
|
containerType: 'inline-size'
|
|
@@ -192,7 +192,11 @@ const InlineCard = props => {
|
|
|
192
192
|
if (
|
|
193
193
|
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage
|
|
194
194
|
fg('editor_inline_comments_on_inline_nodes')) {
|
|
195
|
-
return jsx(
|
|
195
|
+
return jsx(SmartLinkDraggable, {
|
|
196
|
+
url: url,
|
|
197
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
198
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
199
|
+
}, jsx("span", _extends({
|
|
196
200
|
"data-inline-card": true,
|
|
197
201
|
"data-card-data": data ? JSON.stringify(data) : undefined,
|
|
198
202
|
"data-card-url": url
|
|
@@ -206,9 +210,13 @@ const InlineCard = props => {
|
|
|
206
210
|
showHoverPreview: !hideHoverPreview,
|
|
207
211
|
actionOptions: actionOptions,
|
|
208
212
|
onClick: onClick
|
|
209
|
-
}))));
|
|
213
|
+
})))));
|
|
210
214
|
}
|
|
211
|
-
return jsx(
|
|
215
|
+
return jsx(SmartLinkDraggable, {
|
|
216
|
+
url: url,
|
|
217
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
218
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
219
|
+
}, jsx(AnalyticsContext, {
|
|
212
220
|
data: analyticsData
|
|
213
221
|
}, wrapWithSuspense(jsx(CardSSR, {
|
|
214
222
|
appearance: "inline",
|
|
@@ -216,14 +224,18 @@ const InlineCard = props => {
|
|
|
216
224
|
showHoverPreview: !hideHoverPreview,
|
|
217
225
|
actionOptions: actionOptions,
|
|
218
226
|
onClick: onClick
|
|
219
|
-
})), CompetitorPromptComponent);
|
|
227
|
+
})), CompetitorPromptComponent));
|
|
220
228
|
} else if ((ssr || cardState && expValEquals('platform_editor_smartlink_local_cache', 'isEnabled', true)) && url && editorExperiment('platform_editor_preview_panel_linking_exp', true, {
|
|
221
229
|
exposure: true
|
|
222
230
|
})) {
|
|
223
231
|
if (
|
|
224
232
|
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage
|
|
225
233
|
fg('editor_inline_comments_on_inline_nodes')) {
|
|
226
|
-
return jsx(
|
|
234
|
+
return jsx(SmartLinkDraggable, {
|
|
235
|
+
url: url,
|
|
236
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
237
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
238
|
+
}, jsx("span", {
|
|
227
239
|
"data-inline-card": true,
|
|
228
240
|
"data-card-data": data ? JSON.stringify(data) : undefined,
|
|
229
241
|
"data-card-url": url,
|
|
@@ -256,9 +268,13 @@ const InlineCard = props => {
|
|
|
256
268
|
},
|
|
257
269
|
onError: onError,
|
|
258
270
|
disablePreviewPanel: true
|
|
259
|
-
})))));
|
|
271
|
+
}))))));
|
|
260
272
|
}
|
|
261
|
-
return jsx(
|
|
273
|
+
return jsx(SmartLinkDraggable, {
|
|
274
|
+
url: url,
|
|
275
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
276
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
277
|
+
}, jsx(AnalyticsContext, {
|
|
262
278
|
data: analyticsData
|
|
263
279
|
}, jsx(MaybeOverlay, {
|
|
264
280
|
url: url || '',
|
|
@@ -282,7 +298,7 @@ const InlineCard = props => {
|
|
|
282
298
|
},
|
|
283
299
|
onError: onError,
|
|
284
300
|
disablePreviewPanel: true
|
|
285
|
-
}))), CompetitorPromptComponent);
|
|
301
|
+
}))), CompetitorPromptComponent));
|
|
286
302
|
}
|
|
287
303
|
return jsx(SmartLinkDraggable, {
|
|
288
304
|
url: url || '',
|
|
@@ -7,6 +7,7 @@ import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/anal
|
|
|
7
7
|
import { findAndTrackUnsupportedContentNodes, validateADFEntity } from '@atlaskit/editor-common/utils';
|
|
8
8
|
import { getValidDocument } from '@atlaskit/editor-common/validator';
|
|
9
9
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
10
|
+
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
10
11
|
import memoizeOne from 'memoize-one';
|
|
11
12
|
import { PLATFORM } from './analytics/events';
|
|
12
13
|
import { trackUnsupportedContentLevels } from './analytics/unsupported-content';
|
|
@@ -86,18 +87,18 @@ const _validation = (doc, schema, adfStage, useSpecBasedValidator, dispatchAnaly
|
|
|
86
87
|
}
|
|
87
88
|
});
|
|
88
89
|
}
|
|
89
|
-
if (result && fg('platform_editor_native_embeds_fallback_transform')) {
|
|
90
|
+
if (result && !expValEquals('cc-maui-experiment', 'isEnabled', true) && fg('platform_editor_native_embeds_fallback_transform')) {
|
|
90
91
|
const {
|
|
91
92
|
transformedAdf,
|
|
92
|
-
|
|
93
|
+
hasValidTransform
|
|
93
94
|
} = nativeEmbedsFallbackTransform(result);
|
|
94
|
-
if (
|
|
95
|
+
if (hasValidTransform && transformedAdf) {
|
|
95
96
|
dispatchAnalyticsEvent === null || dispatchAnalyticsEvent === void 0 ? void 0 : dispatchAnalyticsEvent({
|
|
96
97
|
action: ACTION.NATIVE_EMBEDS_TRANSFORMED,
|
|
97
98
|
actionSubject: ACTION_SUBJECT.RENDERER,
|
|
98
99
|
eventType: EVENT_TYPE.OPERATIONAL
|
|
99
100
|
});
|
|
100
|
-
result = transformedAdf
|
|
101
|
+
result = transformedAdf;
|
|
101
102
|
}
|
|
102
103
|
}
|
|
103
104
|
return result;
|
|
@@ -57,7 +57,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
57
57
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
58
58
|
const RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
59
59
|
const packageName = "@atlaskit/renderer";
|
|
60
|
-
const packageVersion = "128.0.
|
|
60
|
+
const packageVersion = "128.0.6";
|
|
61
61
|
const setAsQueryContainerStyles = css({
|
|
62
62
|
containerName: 'ak-renderer-wrapper',
|
|
63
63
|
containerType: 'inline-size'
|
|
@@ -198,7 +198,11 @@ var InlineCard = function InlineCard(props) {
|
|
|
198
198
|
if (
|
|
199
199
|
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage
|
|
200
200
|
fg('editor_inline_comments_on_inline_nodes')) {
|
|
201
|
-
return jsx(
|
|
201
|
+
return jsx(SmartLinkDraggable, {
|
|
202
|
+
url: url,
|
|
203
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
204
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
205
|
+
}, jsx("span", _extends({
|
|
202
206
|
"data-inline-card": true,
|
|
203
207
|
"data-card-data": data ? JSON.stringify(data) : undefined,
|
|
204
208
|
"data-card-url": url
|
|
@@ -212,9 +216,13 @@ var InlineCard = function InlineCard(props) {
|
|
|
212
216
|
showHoverPreview: !hideHoverPreview,
|
|
213
217
|
actionOptions: actionOptions,
|
|
214
218
|
onClick: onClick
|
|
215
|
-
}))));
|
|
219
|
+
})))));
|
|
216
220
|
}
|
|
217
|
-
return jsx(
|
|
221
|
+
return jsx(SmartLinkDraggable, {
|
|
222
|
+
url: url,
|
|
223
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
224
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
225
|
+
}, jsx(AnalyticsContext, {
|
|
218
226
|
data: analyticsData
|
|
219
227
|
}, wrapWithSuspense(jsx(CardSSR, {
|
|
220
228
|
appearance: "inline",
|
|
@@ -222,14 +230,18 @@ var InlineCard = function InlineCard(props) {
|
|
|
222
230
|
showHoverPreview: !hideHoverPreview,
|
|
223
231
|
actionOptions: actionOptions,
|
|
224
232
|
onClick: onClick
|
|
225
|
-
})), CompetitorPromptComponent);
|
|
233
|
+
})), CompetitorPromptComponent));
|
|
226
234
|
} else if ((ssr || cardState && expValEquals('platform_editor_smartlink_local_cache', 'isEnabled', true)) && url && editorExperiment('platform_editor_preview_panel_linking_exp', true, {
|
|
227
235
|
exposure: true
|
|
228
236
|
})) {
|
|
229
237
|
if (
|
|
230
238
|
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage
|
|
231
239
|
fg('editor_inline_comments_on_inline_nodes')) {
|
|
232
|
-
return jsx(
|
|
240
|
+
return jsx(SmartLinkDraggable, {
|
|
241
|
+
url: url,
|
|
242
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
243
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
244
|
+
}, jsx("span", {
|
|
233
245
|
"data-inline-card": true,
|
|
234
246
|
"data-card-data": data ? JSON.stringify(data) : undefined,
|
|
235
247
|
"data-card-url": url,
|
|
@@ -262,9 +274,13 @@ var InlineCard = function InlineCard(props) {
|
|
|
262
274
|
},
|
|
263
275
|
onError: onError,
|
|
264
276
|
disablePreviewPanel: true
|
|
265
|
-
})))));
|
|
277
|
+
}))))));
|
|
266
278
|
}
|
|
267
|
-
return jsx(
|
|
279
|
+
return jsx(SmartLinkDraggable, {
|
|
280
|
+
url: url,
|
|
281
|
+
appearance: SMART_LINK_APPEARANCE.INLINE,
|
|
282
|
+
source: SMART_LINK_DRAG_TYPES.RENDERER
|
|
283
|
+
}, jsx(AnalyticsContext, {
|
|
268
284
|
data: analyticsData
|
|
269
285
|
}, jsx(MaybeOverlay, {
|
|
270
286
|
url: url || '',
|
|
@@ -288,7 +304,7 @@ var InlineCard = function InlineCard(props) {
|
|
|
288
304
|
},
|
|
289
305
|
onError: onError,
|
|
290
306
|
disablePreviewPanel: true
|
|
291
|
-
}))), CompetitorPromptComponent);
|
|
307
|
+
}))), CompetitorPromptComponent));
|
|
292
308
|
}
|
|
293
309
|
return jsx(SmartLinkDraggable, {
|
|
294
310
|
url: url || '',
|
|
@@ -8,6 +8,7 @@ import { ACTION, ACTION_SUBJECT, EVENT_TYPE } from '@atlaskit/editor-common/anal
|
|
|
8
8
|
import { findAndTrackUnsupportedContentNodes, validateADFEntity } from '@atlaskit/editor-common/utils';
|
|
9
9
|
import { getValidDocument } from '@atlaskit/editor-common/validator';
|
|
10
10
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
11
|
+
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
11
12
|
import memoizeOne from 'memoize-one';
|
|
12
13
|
import { PLATFORM } from './analytics/events';
|
|
13
14
|
import { trackUnsupportedContentLevels } from './analytics/unsupported-content';
|
|
@@ -85,17 +86,17 @@ var _validation = function _validation(doc, schema, adfStage, useSpecBasedValida
|
|
|
85
86
|
}
|
|
86
87
|
});
|
|
87
88
|
}
|
|
88
|
-
if (result && fg('platform_editor_native_embeds_fallback_transform')) {
|
|
89
|
+
if (result && !expValEquals('cc-maui-experiment', 'isEnabled', true) && fg('platform_editor_native_embeds_fallback_transform')) {
|
|
89
90
|
var _nativeEmbedsFallback = nativeEmbedsFallbackTransform(result),
|
|
90
91
|
_transformedAdf2 = _nativeEmbedsFallback.transformedAdf,
|
|
91
|
-
|
|
92
|
-
if (
|
|
92
|
+
hasValidTransform = _nativeEmbedsFallback.hasValidTransform;
|
|
93
|
+
if (hasValidTransform && _transformedAdf2) {
|
|
93
94
|
dispatchAnalyticsEvent === null || dispatchAnalyticsEvent === void 0 || dispatchAnalyticsEvent({
|
|
94
95
|
action: ACTION.NATIVE_EMBEDS_TRANSFORMED,
|
|
95
96
|
actionSubject: ACTION_SUBJECT.RENDERER,
|
|
96
97
|
eventType: EVENT_TYPE.OPERATIONAL
|
|
97
98
|
});
|
|
98
|
-
result = _transformedAdf2
|
|
99
|
+
result = _transformedAdf2;
|
|
99
100
|
}
|
|
100
101
|
}
|
|
101
102
|
return result;
|
|
@@ -62,7 +62,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
62
62
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
63
63
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
64
64
|
var packageName = "@atlaskit/renderer";
|
|
65
|
-
var packageVersion = "128.0.
|
|
65
|
+
var packageVersion = "128.0.6";
|
|
66
66
|
var setAsQueryContainerStyles = css({
|
|
67
67
|
containerName: 'ak-renderer-wrapper',
|
|
68
68
|
containerType: 'inline-size'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "128.0.
|
|
3
|
+
"version": "128.0.7",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@atlaskit/status": "^3.1.0",
|
|
60
60
|
"@atlaskit/task-decision": "^19.3.0",
|
|
61
61
|
"@atlaskit/theme": "^22.0.0",
|
|
62
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
62
|
+
"@atlaskit/tmp-editor-statsig": "^40.0.0",
|
|
63
63
|
"@atlaskit/tokens": "^11.1.0",
|
|
64
64
|
"@atlaskit/tooltip": "^20.14.0",
|
|
65
65
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"uuid": "^3.1.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@atlaskit/editor-common": "^112.
|
|
76
|
+
"@atlaskit/editor-common": "^112.4.0",
|
|
77
77
|
"@atlaskit/link-provider": "^4.2.0",
|
|
78
78
|
"@atlaskit/media-core": "^37.0.0",
|
|
79
79
|
"react": "^18.2.0",
|