@atlaskit/renderer 133.7.7 → 133.7.9
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 +15 -0
- package/compass.yml +3 -0
- package/dist/cjs/react/nodes/media/index.js +27 -4
- package/dist/cjs/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/media/index.js +23 -4
- package/dist/es2019/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/media/index.js +27 -4
- package/dist/esm/ui/Renderer/RendererStyleContainer.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/types/analytics/events.d.ts +2 -2
- package/package.json +4 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 133.7.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`155028f4665ee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/155028f4665ee) -
|
|
8
|
+
Clean up the `ally_30945_accessibility_outline_fix` feature gate.
|
|
9
|
+
|
|
10
|
+
## 133.7.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`a72d5084ae782`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a72d5084ae782) -
|
|
15
|
+
Add a rendered analytics event for remix generated images
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 133.7.7
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/compass.yml
CHANGED
|
@@ -24,6 +24,9 @@ customFields:
|
|
|
24
24
|
- name: Department
|
|
25
25
|
type: text
|
|
26
26
|
value: Eng - Editor Frontend Platform
|
|
27
|
+
- name: Trusted Reviewer Teams
|
|
28
|
+
type: text
|
|
29
|
+
value: ari:cloud:identity::team/cf6a670b-5252-4c68-a769-9207de366beb
|
|
27
30
|
- name: Technical Owner
|
|
28
31
|
type: user
|
|
29
32
|
value: ari:cloud:identity::user/612646c53fe26c00694fbe6a # Chris Kimber
|
|
@@ -246,6 +246,12 @@ var Media = /*#__PURE__*/function (_PureComponent) {
|
|
|
246
246
|
var _this;
|
|
247
247
|
(0, _classCallCheck2.default)(this, Media);
|
|
248
248
|
_this = _callSuper(this, Media, [props]);
|
|
249
|
+
(0, _defineProperty2.default)(_this, "getDataConsumerMark", function () {
|
|
250
|
+
return (0, _platformFeatureFlags.fg)('cc-maui-add-mark-for-remix-generated-images') ? _this.props.marks.find(function (m) {
|
|
251
|
+
var _m$type;
|
|
252
|
+
return m.type === 'dataConsumer' || ((_m$type = m.type) === null || _m$type === void 0 ? void 0 : _m$type.name) === 'dataConsumer';
|
|
253
|
+
}) : undefined;
|
|
254
|
+
});
|
|
249
255
|
(0, _defineProperty2.default)(_this, "renderCard", function () {
|
|
250
256
|
var _dataConsumerMark$att;
|
|
251
257
|
var providers = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
@@ -264,10 +270,7 @@ var Media = /*#__PURE__*/function (_PureComponent) {
|
|
|
264
270
|
isDrafting = _this$props$isDraftin === void 0 ? false : _this$props$isDraftin;
|
|
265
271
|
var annotationMarks = _this.props.isAnnotationMark ? _this.props.marks.filter(_this.props.isAnnotationMark) : undefined;
|
|
266
272
|
var borderMark = _this.props.marks.find(_this.props.isBorderMark);
|
|
267
|
-
var dataConsumerMark =
|
|
268
|
-
var _m$type;
|
|
269
|
-
return m.type === 'dataConsumer' || ((_m$type = m.type) === null || _m$type === void 0 ? void 0 : _m$type.name) === 'dataConsumer';
|
|
270
|
-
}) : undefined;
|
|
273
|
+
var dataConsumerMark = _this.getDataConsumerMark();
|
|
271
274
|
var linkMark = _this.props.marks.find(_this.props.isLinkMark);
|
|
272
275
|
var linkHref = linkMark === null || linkMark === void 0 ? void 0 : linkMark.attrs.href;
|
|
273
276
|
var eventHandlers = linkHref ? undefined : _this.props.eventHandlers;
|
|
@@ -349,6 +352,26 @@ var Media = /*#__PURE__*/function (_PureComponent) {
|
|
|
349
352
|
}
|
|
350
353
|
(0, _inherits2.default)(Media, _PureComponent);
|
|
351
354
|
return (0, _createClass2.default)(Media, [{
|
|
355
|
+
key: "componentDidMount",
|
|
356
|
+
value: function componentDidMount() {
|
|
357
|
+
var _dataConsumerMark$att2;
|
|
358
|
+
var dataConsumerMark = this.getDataConsumerMark();
|
|
359
|
+
var infographicType = dataConsumerMark === null || dataConsumerMark === void 0 || (_dataConsumerMark$att2 = dataConsumerMark.attrs.sources) === null || _dataConsumerMark$att2 === void 0 ? void 0 : _dataConsumerMark$att2[0];
|
|
360
|
+
if (infographicType && this.props.fireAnalyticsEvent) {
|
|
361
|
+
this.props.fireAnalyticsEvent({
|
|
362
|
+
action: _analytics.ACTION.RENDERED,
|
|
363
|
+
actionSubject: _analytics.ACTION_SUBJECT.MEDIA,
|
|
364
|
+
actionSubjectId: this.props.id,
|
|
365
|
+
eventType: _analytics.EVENT_TYPE.TRACK,
|
|
366
|
+
attributes: {
|
|
367
|
+
infographicType: infographicType,
|
|
368
|
+
pageMode: 'view',
|
|
369
|
+
mediaId: this.props.id
|
|
370
|
+
}
|
|
371
|
+
});
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}, {
|
|
352
375
|
key: "render",
|
|
353
376
|
value: function render() {
|
|
354
377
|
var providers = this.props.providers;
|
|
@@ -2246,7 +2246,7 @@ var RendererStyleContainer = exports.RendererStyleContainer = function RendererS
|
|
|
2246
2246
|
}, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && {
|
|
2247
2247
|
'--ak-renderer-editor-font-small-text': (0, _ugcTokens.editorUGCToken)('editor.font.body.small')
|
|
2248
2248
|
}),
|
|
2249
|
-
css: [(0, _expValEquals.expValEquals)('confluence_ttvc_inline_extensions', 'isEnabled', true) ? baseFontStyle : originalBaseFontLineHeight, baseStyles, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && fontSizeStyles, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingAnchorStyles : headingAnchorStylesDuplicateAnchor,
|
|
2249
|
+
css: [(0, _expValEquals.expValEquals)('confluence_ttvc_inline_extensions', 'isEnabled', true) ? baseFontStyle : originalBaseFontLineHeight, baseStyles, (0, _expValEquals.expValEquals)('platform_editor_small_font_size', 'isEnabled', true) && fontSizeStyles, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingAnchorStyles : headingAnchorStylesDuplicateAnchor, headingAnchorButtonFocusVisibleStyles, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? hideHeadingCopyLinkWrapperStyles : hideHeadingCopyLinkWrapperStylesDuplicateAnchor, appearance === 'full-page' && isPreviewPanelResponsivenessOn && rendererFullPageStylesWithReducedPadding, appearance === 'full-page' && !isPreviewPanelResponsivenessOn && rendererFullPageStyles, appearance === 'full-width' && ((0, _expValEquals.expValEquals)('platform_editor_remove_important_in_render_ext', 'isEnabled', true) ? rendererFullWidthStyles : oldRendererFullWidthStyles), (appearance === 'full-width' || appearance === 'max' && ((0, _expValEquals.expValEquals)('editor_tinymce_full_width_mode', 'isEnabled', true) || (0, _expValEquals.expValEquals)('confluence_max_width_content_appearance', 'isEnabled', true))) && !(0, _table.isTableResizingEnabled)(appearance) && rendererFullWidthStylesForTableResizing, appearance === 'max' && ((0, _expValEquals.expValEquals)('editor_tinymce_full_width_mode', 'isEnabled', true) || (0, _expValEquals.expValEquals)('confluence_max_width_content_appearance', 'isEnabled', true)) && ((0, _expValEquals.expValEquals)('platform_editor_remove_important_in_render_ext', 'isEnabled', true) ? rendererMaxWidthStyles : oldRendererMaxWidthStyles), rovoTelepointerStyles, whitespaceSharedStyles, blockquoteSharedStyles, headingsSharedStyles, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) && headingWrapperInlineFlowStyles, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingWithAlignmentStyles : headingWithAlignmentStylesDuplicateAnchor, ruleSharedStyles, contentMode === 'compact' && extensionStyle, (0, _platformFeatureFlags.fg)('platform_editor_typography_ugc') ? contentMode === 'compact' ? paragraphStylesUGCScaledMargin : paragraphSharedStylesWithEditorUGC : contentMode === 'compact' ? paragraphSharedStyleScaledMargin : paragraphSharedStyles, listsSharedStyles, browser.gecko && listsSharedStylesForGekko, (0, _expValEquals.expValEquals)('platform_editor_flexible_list_schema', 'isEnabled', true) && listItemHiddenMarkerStyles, indentationSharedStyles, indentationSharedStylesWithMarginFix, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? blockMarksSharedStyles : blockMarksSharedStylesDuplicateAnchor, codeMarkSharedStyles, shadowSharedStyle, dateSharedStyle, textColorStyles, backgroundColorStyles, !(0, _expValEquals.expValEquals)('platform_editor_lovability_text_bg_color', 'isEnabled', true) && highlightLinksUnsetStyles,
|
|
2250
2250
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
2251
2251
|
textHighlightPaddingStyles, tasksAndDecisionsStyles, (0, _expValEquals.expValEquals)('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) && headingPanelStyles, smartCardStyles, smartCardStylesAvatarFix, (0, _experiments.editorExperiment)('platform_editor_preview_panel_linking_exp', true) && headerSmartCardStyles, smartCardStylesAvatarMarginFix, smartCardStylesAvatarListZeroMarginTop, (0, _platformFeatureFlags.fg)('editor_inline_comments_on_inline_nodes') && ((0, _expValEquals.expValEquals)('confluence_fe_renderer_inline_node_mark_color_fix', 'isEnabled', true) ? rendererAnnotationStyles : rendererAnnotationStylesOld),
|
|
2252
2252
|
// eslint-disable-next-line @atlaskit/platform/no-preconditioning
|
|
@@ -72,7 +72,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
72
72
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
73
73
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
74
74
|
var packageName = "@atlaskit/renderer";
|
|
75
|
-
var packageVersion = "133.7.
|
|
75
|
+
var packageVersion = "133.7.8";
|
|
76
76
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
77
77
|
containerName: 'ak-renderer-wrapper',
|
|
78
78
|
containerType: 'inline-size'
|
|
@@ -215,6 +215,10 @@ const CommentBadgeWrapper = ({
|
|
|
215
215
|
class Media extends PureComponent {
|
|
216
216
|
constructor(props) {
|
|
217
217
|
super(props);
|
|
218
|
+
_defineProperty(this, "getDataConsumerMark", () => fg('cc-maui-add-mark-for-remix-generated-images') ? this.props.marks.find(m => {
|
|
219
|
+
var _m$type;
|
|
220
|
+
return m.type === 'dataConsumer' || ((_m$type = m.type) === null || _m$type === void 0 ? void 0 : _m$type.name) === 'dataConsumer';
|
|
221
|
+
}) : undefined);
|
|
218
222
|
_defineProperty(this, "renderCard", (providers = {}) => {
|
|
219
223
|
var _dataConsumerMark$att;
|
|
220
224
|
const {
|
|
@@ -234,10 +238,7 @@ class Media extends PureComponent {
|
|
|
234
238
|
} = this.props;
|
|
235
239
|
const annotationMarks = this.props.isAnnotationMark ? this.props.marks.filter(this.props.isAnnotationMark) : undefined;
|
|
236
240
|
const borderMark = this.props.marks.find(this.props.isBorderMark);
|
|
237
|
-
const dataConsumerMark =
|
|
238
|
-
var _m$type;
|
|
239
|
-
return m.type === 'dataConsumer' || ((_m$type = m.type) === null || _m$type === void 0 ? void 0 : _m$type.name) === 'dataConsumer';
|
|
240
|
-
}) : undefined;
|
|
241
|
+
const dataConsumerMark = this.getDataConsumerMark();
|
|
241
242
|
const linkMark = this.props.marks.find(this.props.isLinkMark);
|
|
242
243
|
const linkHref = linkMark === null || linkMark === void 0 ? void 0 : linkMark.attrs.href;
|
|
243
244
|
const eventHandlers = linkHref ? undefined : this.props.eventHandlers;
|
|
@@ -318,6 +319,24 @@ class Media extends PureComponent {
|
|
|
318
319
|
});
|
|
319
320
|
this.handleMediaLinkClickFn = this.handleMediaLinkClick.bind(this);
|
|
320
321
|
}
|
|
322
|
+
componentDidMount() {
|
|
323
|
+
var _dataConsumerMark$att2;
|
|
324
|
+
const dataConsumerMark = this.getDataConsumerMark();
|
|
325
|
+
const infographicType = dataConsumerMark === null || dataConsumerMark === void 0 ? void 0 : (_dataConsumerMark$att2 = dataConsumerMark.attrs.sources) === null || _dataConsumerMark$att2 === void 0 ? void 0 : _dataConsumerMark$att2[0];
|
|
326
|
+
if (infographicType && this.props.fireAnalyticsEvent) {
|
|
327
|
+
this.props.fireAnalyticsEvent({
|
|
328
|
+
action: ACTION.RENDERED,
|
|
329
|
+
actionSubject: ACTION_SUBJECT.MEDIA,
|
|
330
|
+
actionSubjectId: this.props.id,
|
|
331
|
+
eventType: EVENT_TYPE.TRACK,
|
|
332
|
+
attributes: {
|
|
333
|
+
infographicType,
|
|
334
|
+
pageMode: 'view',
|
|
335
|
+
mediaId: this.props.id
|
|
336
|
+
}
|
|
337
|
+
});
|
|
338
|
+
}
|
|
339
|
+
}
|
|
321
340
|
render() {
|
|
322
341
|
const {
|
|
323
342
|
providers
|
|
@@ -2859,7 +2859,7 @@ export const RendererStyleContainer = props => {
|
|
|
2859
2859
|
'--ak-renderer-editor-font-small-text': editorUGCToken('editor.font.body.small')
|
|
2860
2860
|
})
|
|
2861
2861
|
},
|
|
2862
|
-
css: [expValEquals('confluence_ttvc_inline_extensions', 'isEnabled', true) ? baseFontStyle : originalBaseFontLineHeight, baseStyles, expValEquals('platform_editor_small_font_size', 'isEnabled', true) && fontSizeStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingAnchorStyles : headingAnchorStylesDuplicateAnchor,
|
|
2862
|
+
css: [expValEquals('confluence_ttvc_inline_extensions', 'isEnabled', true) ? baseFontStyle : originalBaseFontLineHeight, baseStyles, expValEquals('platform_editor_small_font_size', 'isEnabled', true) && fontSizeStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingAnchorStyles : headingAnchorStylesDuplicateAnchor, headingAnchorButtonFocusVisibleStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? hideHeadingCopyLinkWrapperStyles : hideHeadingCopyLinkWrapperStylesDuplicateAnchor, appearance === 'full-page' && isPreviewPanelResponsivenessOn && rendererFullPageStylesWithReducedPadding, appearance === 'full-page' && !isPreviewPanelResponsivenessOn && rendererFullPageStyles, appearance === 'full-width' && (expValEquals('platform_editor_remove_important_in_render_ext', 'isEnabled', true) ? rendererFullWidthStyles : oldRendererFullWidthStyles), (appearance === 'full-width' || appearance === 'max' && (expValEquals('editor_tinymce_full_width_mode', 'isEnabled', true) || expValEquals('confluence_max_width_content_appearance', 'isEnabled', true))) && !isTableResizingEnabled(appearance) && rendererFullWidthStylesForTableResizing, appearance === 'max' && (expValEquals('editor_tinymce_full_width_mode', 'isEnabled', true) || expValEquals('confluence_max_width_content_appearance', 'isEnabled', true)) && (expValEquals('platform_editor_remove_important_in_render_ext', 'isEnabled', true) ? rendererMaxWidthStyles : oldRendererMaxWidthStyles), rovoTelepointerStyles, whitespaceSharedStyles, blockquoteSharedStyles, headingsSharedStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) && headingWrapperInlineFlowStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingWithAlignmentStyles : headingWithAlignmentStylesDuplicateAnchor, ruleSharedStyles, contentMode === 'compact' && extensionStyle, fg('platform_editor_typography_ugc') ? contentMode === 'compact' ? paragraphStylesUGCScaledMargin : paragraphSharedStylesWithEditorUGC : contentMode === 'compact' ? paragraphSharedStyleScaledMargin : paragraphSharedStyles, listsSharedStyles, browser.gecko && listsSharedStylesForGekko, expValEquals('platform_editor_flexible_list_schema', 'isEnabled', true) && listItemHiddenMarkerStyles, indentationSharedStyles, indentationSharedStylesWithMarginFix, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? blockMarksSharedStyles : blockMarksSharedStylesDuplicateAnchor, codeMarkSharedStyles, shadowSharedStyle, dateSharedStyle, textColorStyles, backgroundColorStyles, !expValEquals('platform_editor_lovability_text_bg_color', 'isEnabled', true) && highlightLinksUnsetStyles,
|
|
2863
2863
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
2864
2864
|
textHighlightPaddingStyles, tasksAndDecisionsStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) && headingPanelStyles, smartCardStyles, smartCardStylesAvatarFix, editorExperiment('platform_editor_preview_panel_linking_exp', true) && headerSmartCardStyles, smartCardStylesAvatarMarginFix, smartCardStylesAvatarListZeroMarginTop, fg('editor_inline_comments_on_inline_nodes') && (expValEquals('confluence_fe_renderer_inline_node_mark_color_fix', 'isEnabled', true) ? rendererAnnotationStyles : rendererAnnotationStylesOld),
|
|
2865
2865
|
// eslint-disable-next-line @atlaskit/platform/no-preconditioning
|
|
@@ -58,7 +58,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
58
58
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
59
59
|
const RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
60
60
|
const packageName = "@atlaskit/renderer";
|
|
61
|
-
const packageVersion = "133.7.
|
|
61
|
+
const packageVersion = "133.7.8";
|
|
62
62
|
const setAsQueryContainerStyles = css({
|
|
63
63
|
containerName: 'ak-renderer-wrapper',
|
|
64
64
|
containerType: 'inline-size'
|
|
@@ -238,6 +238,12 @@ var Media = /*#__PURE__*/function (_PureComponent) {
|
|
|
238
238
|
var _this;
|
|
239
239
|
_classCallCheck(this, Media);
|
|
240
240
|
_this = _callSuper(this, Media, [props]);
|
|
241
|
+
_defineProperty(_this, "getDataConsumerMark", function () {
|
|
242
|
+
return fg('cc-maui-add-mark-for-remix-generated-images') ? _this.props.marks.find(function (m) {
|
|
243
|
+
var _m$type;
|
|
244
|
+
return m.type === 'dataConsumer' || ((_m$type = m.type) === null || _m$type === void 0 ? void 0 : _m$type.name) === 'dataConsumer';
|
|
245
|
+
}) : undefined;
|
|
246
|
+
});
|
|
241
247
|
_defineProperty(_this, "renderCard", function () {
|
|
242
248
|
var _dataConsumerMark$att;
|
|
243
249
|
var providers = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
@@ -256,10 +262,7 @@ var Media = /*#__PURE__*/function (_PureComponent) {
|
|
|
256
262
|
isDrafting = _this$props$isDraftin === void 0 ? false : _this$props$isDraftin;
|
|
257
263
|
var annotationMarks = _this.props.isAnnotationMark ? _this.props.marks.filter(_this.props.isAnnotationMark) : undefined;
|
|
258
264
|
var borderMark = _this.props.marks.find(_this.props.isBorderMark);
|
|
259
|
-
var dataConsumerMark =
|
|
260
|
-
var _m$type;
|
|
261
|
-
return m.type === 'dataConsumer' || ((_m$type = m.type) === null || _m$type === void 0 ? void 0 : _m$type.name) === 'dataConsumer';
|
|
262
|
-
}) : undefined;
|
|
265
|
+
var dataConsumerMark = _this.getDataConsumerMark();
|
|
263
266
|
var linkMark = _this.props.marks.find(_this.props.isLinkMark);
|
|
264
267
|
var linkHref = linkMark === null || linkMark === void 0 ? void 0 : linkMark.attrs.href;
|
|
265
268
|
var eventHandlers = linkHref ? undefined : _this.props.eventHandlers;
|
|
@@ -341,6 +344,26 @@ var Media = /*#__PURE__*/function (_PureComponent) {
|
|
|
341
344
|
}
|
|
342
345
|
_inherits(Media, _PureComponent);
|
|
343
346
|
return _createClass(Media, [{
|
|
347
|
+
key: "componentDidMount",
|
|
348
|
+
value: function componentDidMount() {
|
|
349
|
+
var _dataConsumerMark$att2;
|
|
350
|
+
var dataConsumerMark = this.getDataConsumerMark();
|
|
351
|
+
var infographicType = dataConsumerMark === null || dataConsumerMark === void 0 || (_dataConsumerMark$att2 = dataConsumerMark.attrs.sources) === null || _dataConsumerMark$att2 === void 0 ? void 0 : _dataConsumerMark$att2[0];
|
|
352
|
+
if (infographicType && this.props.fireAnalyticsEvent) {
|
|
353
|
+
this.props.fireAnalyticsEvent({
|
|
354
|
+
action: ACTION.RENDERED,
|
|
355
|
+
actionSubject: ACTION_SUBJECT.MEDIA,
|
|
356
|
+
actionSubjectId: this.props.id,
|
|
357
|
+
eventType: EVENT_TYPE.TRACK,
|
|
358
|
+
attributes: {
|
|
359
|
+
infographicType: infographicType,
|
|
360
|
+
pageMode: 'view',
|
|
361
|
+
mediaId: this.props.id
|
|
362
|
+
}
|
|
363
|
+
});
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
}, {
|
|
344
367
|
key: "render",
|
|
345
368
|
value: function render() {
|
|
346
369
|
var providers = this.props.providers;
|
|
@@ -2239,7 +2239,7 @@ export var RendererStyleContainer = function RendererStyleContainer(props) {
|
|
|
2239
2239
|
}, expValEquals('platform_editor_small_font_size', 'isEnabled', true) && {
|
|
2240
2240
|
'--ak-renderer-editor-font-small-text': editorUGCToken('editor.font.body.small')
|
|
2241
2241
|
}),
|
|
2242
|
-
css: [expValEquals('confluence_ttvc_inline_extensions', 'isEnabled', true) ? baseFontStyle : originalBaseFontLineHeight, baseStyles, expValEquals('platform_editor_small_font_size', 'isEnabled', true) && fontSizeStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingAnchorStyles : headingAnchorStylesDuplicateAnchor,
|
|
2242
|
+
css: [expValEquals('confluence_ttvc_inline_extensions', 'isEnabled', true) ? baseFontStyle : originalBaseFontLineHeight, baseStyles, expValEquals('platform_editor_small_font_size', 'isEnabled', true) && fontSizeStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingAnchorStyles : headingAnchorStylesDuplicateAnchor, headingAnchorButtonFocusVisibleStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? hideHeadingCopyLinkWrapperStyles : hideHeadingCopyLinkWrapperStylesDuplicateAnchor, appearance === 'full-page' && isPreviewPanelResponsivenessOn && rendererFullPageStylesWithReducedPadding, appearance === 'full-page' && !isPreviewPanelResponsivenessOn && rendererFullPageStyles, appearance === 'full-width' && (expValEquals('platform_editor_remove_important_in_render_ext', 'isEnabled', true) ? rendererFullWidthStyles : oldRendererFullWidthStyles), (appearance === 'full-width' || appearance === 'max' && (expValEquals('editor_tinymce_full_width_mode', 'isEnabled', true) || expValEquals('confluence_max_width_content_appearance', 'isEnabled', true))) && !isTableResizingEnabled(appearance) && rendererFullWidthStylesForTableResizing, appearance === 'max' && (expValEquals('editor_tinymce_full_width_mode', 'isEnabled', true) || expValEquals('confluence_max_width_content_appearance', 'isEnabled', true)) && (expValEquals('platform_editor_remove_important_in_render_ext', 'isEnabled', true) ? rendererMaxWidthStyles : oldRendererMaxWidthStyles), rovoTelepointerStyles, whitespaceSharedStyles, blockquoteSharedStyles, headingsSharedStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) && headingWrapperInlineFlowStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? headingWithAlignmentStyles : headingWithAlignmentStylesDuplicateAnchor, ruleSharedStyles, contentMode === 'compact' && extensionStyle, fg('platform_editor_typography_ugc') ? contentMode === 'compact' ? paragraphStylesUGCScaledMargin : paragraphSharedStylesWithEditorUGC : contentMode === 'compact' ? paragraphSharedStyleScaledMargin : paragraphSharedStyles, listsSharedStyles, browser.gecko && listsSharedStylesForGekko, expValEquals('platform_editor_flexible_list_schema', 'isEnabled', true) && listItemHiddenMarkerStyles, indentationSharedStyles, indentationSharedStylesWithMarginFix, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) ? blockMarksSharedStyles : blockMarksSharedStylesDuplicateAnchor, codeMarkSharedStyles, shadowSharedStyle, dateSharedStyle, textColorStyles, backgroundColorStyles, !expValEquals('platform_editor_lovability_text_bg_color', 'isEnabled', true) && highlightLinksUnsetStyles,
|
|
2243
2243
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
|
|
2244
2244
|
textHighlightPaddingStyles, tasksAndDecisionsStyles, expValEquals('platform_editor_copy_link_a11y_inconsistency_fix', 'isEnabled', true) && headingPanelStyles, smartCardStyles, smartCardStylesAvatarFix, editorExperiment('platform_editor_preview_panel_linking_exp', true) && headerSmartCardStyles, smartCardStylesAvatarMarginFix, smartCardStylesAvatarListZeroMarginTop, fg('editor_inline_comments_on_inline_nodes') && (expValEquals('confluence_fe_renderer_inline_node_mark_color_fix', 'isEnabled', true) ? rendererAnnotationStyles : rendererAnnotationStylesOld),
|
|
2245
2245
|
// eslint-disable-next-line @atlaskit/platform/no-preconditioning
|
|
@@ -63,7 +63,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
63
63
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
64
64
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
65
65
|
var packageName = "@atlaskit/renderer";
|
|
66
|
-
var packageVersion = "133.7.
|
|
66
|
+
var packageVersion = "133.7.8";
|
|
67
67
|
var setAsQueryContainerStyles = css({
|
|
68
68
|
containerName: 'ak-renderer-wrapper',
|
|
69
69
|
containerType: 'inline-size'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, OperationalAEP, ExperienceEventPayload, TABLE_ACTION, SyncedBlockSSRErrorAEP, ExtensionType } from '@atlaskit/editor-common/analytics';
|
|
1
|
+
import type { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, OperationalAEP, ExperienceEventPayload, TABLE_ACTION, SyncedBlockSSRErrorAEP, ExtensionType, MediaRenderedAEP } from '@atlaskit/editor-common/analytics';
|
|
2
2
|
import type { AEP } from './enums';
|
|
3
3
|
import type { SortOrder } from '@atlaskit/editor-common/types';
|
|
4
4
|
import type { SEVERITY, UNSUPPORTED_CONTENT_LEVEL_SEVERITY, UnsupportedContentPayload, UnsupportedContentTooltipPayload } from '@atlaskit/editor-common/utils';
|
|
@@ -183,6 +183,6 @@ export type MBEChangeActiveAnalyticsEvent = AEP<ACTION.CHANGE_ACTIVE, ACTION_SUB
|
|
|
183
183
|
extensionKey: string;
|
|
184
184
|
extensionType: string;
|
|
185
185
|
}, EVENT_TYPE.TRACK>;
|
|
186
|
-
export type AnalyticsEventPayload<_T = void> = RendererStartAEP | RendererRenderedAEP | RendererRenderedSampledAEP | ComponentCrashErrorAEP | RendererUnsupportedContentLevelsTrackingSucceeded | RendererUnsupportedContentLevelsTrackingErrored | RendererSelectAllCaughtAEP | RendererSelectAllEscapedAEP | CodeBlockCopyAEP | CodeBlockWrapAEP | HeadingAnchorLinkButtonAEP | HoverLabelAEP | AnchorLinkAEP | TableSortColumnNotAllowedAEP | TableSortColumnAEP | TableWidthInfoAEP | TableRendererHeightInfoAEP | VisitLinkAEP | VisitMediaLinkAEP | ExpandAEP | UnsupportedContentPayload | UnsupportedContentTooltipPayload | AnnotationAEP | AnnotationDeleteAEP | MediaLnkTransformedAEP | InvalidProsemirrorDocumentErrorAEP | NestedTableTransformedAEP | ContainerNodeTransformedAEP | NativeEmbedsTransformedAEP | MediaRenderErrorEvent | SyncedBlockFetchErrorAEP | SyncedBlockGetSourceInfoErrorAEP | SyncedBlockSSRErrorAEP | ReferenceSyncedBlockUpdateErrorAEP | SyncedBlockFetchSuccessAEP | ExperienceEventPayload | ExtensionRenderedAsInlineAEP | MBEChangeActiveAnalyticsEvent;
|
|
186
|
+
export type AnalyticsEventPayload<_T = void> = RendererStartAEP | RendererRenderedAEP | RendererRenderedSampledAEP | ComponentCrashErrorAEP | RendererUnsupportedContentLevelsTrackingSucceeded | RendererUnsupportedContentLevelsTrackingErrored | RendererSelectAllCaughtAEP | RendererSelectAllEscapedAEP | CodeBlockCopyAEP | CodeBlockWrapAEP | HeadingAnchorLinkButtonAEP | HoverLabelAEP | AnchorLinkAEP | TableSortColumnNotAllowedAEP | TableSortColumnAEP | TableWidthInfoAEP | TableRendererHeightInfoAEP | VisitLinkAEP | VisitMediaLinkAEP | ExpandAEP | UnsupportedContentPayload | UnsupportedContentTooltipPayload | AnnotationAEP | AnnotationDeleteAEP | MediaLnkTransformedAEP | InvalidProsemirrorDocumentErrorAEP | NestedTableTransformedAEP | ContainerNodeTransformedAEP | NativeEmbedsTransformedAEP | MediaRenderErrorEvent | SyncedBlockFetchErrorAEP | SyncedBlockGetSourceInfoErrorAEP | SyncedBlockSSRErrorAEP | ReferenceSyncedBlockUpdateErrorAEP | SyncedBlockFetchSuccessAEP | ExperienceEventPayload | MediaRenderedAEP | ExtensionRenderedAsInlineAEP | MBEChangeActiveAnalyticsEvent;
|
|
187
187
|
export type FireAnalyticsCallback = <T = void>(payload: AnalyticsEventPayload<T>) => void | undefined;
|
|
188
188
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "133.7.
|
|
3
|
+
"version": "133.7.9",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@atlaskit/adf-schema": "^56.0.0",
|
|
34
|
-
"@atlaskit/adf-utils": "^20.
|
|
34
|
+
"@atlaskit/adf-utils": "^20.2.0",
|
|
35
35
|
"@atlaskit/afm-i18n-platform-editor-renderer": "2.168.0",
|
|
36
36
|
"@atlaskit/analytics-listeners": "^11.1.0",
|
|
37
37
|
"@atlaskit/analytics-namespaced-context": "^8.1.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
45
45
|
"@atlaskit/editor-shared-styles": "^4.0.0",
|
|
46
46
|
"@atlaskit/editor-smart-link-draggable": "^1.1.0",
|
|
47
|
-
"@atlaskit/emoji": "^71.
|
|
47
|
+
"@atlaskit/emoji": "^71.7.0",
|
|
48
48
|
"@atlaskit/feature-gate-js-client": "^6.0.0",
|
|
49
49
|
"@atlaskit/icon": "^36.1.0",
|
|
50
50
|
"@atlaskit/link": "^4.1.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@atlaskit/status": "^5.4.0",
|
|
68
68
|
"@atlaskit/task-decision": "^21.4.0",
|
|
69
69
|
"@atlaskit/theme": "^26.1.0",
|
|
70
|
-
"@atlaskit/tmp-editor-statsig": "^119.
|
|
70
|
+
"@atlaskit/tmp-editor-statsig": "^119.3.0",
|
|
71
71
|
"@atlaskit/tokens": "^15.3.0",
|
|
72
72
|
"@atlaskit/tooltip": "^23.1.0",
|
|
73
73
|
"@atlaskit/visually-hidden": "^4.1.0",
|
|
@@ -235,9 +235,6 @@
|
|
|
235
235
|
"platform_fix_macro_renders_in_layouts": {
|
|
236
236
|
"type": "boolean"
|
|
237
237
|
},
|
|
238
|
-
"ally_30945_accessibility_outline_fix": {
|
|
239
|
-
"type": "boolean"
|
|
240
|
-
},
|
|
241
238
|
"platform_editor_table_fixed_column_width_prop": {
|
|
242
239
|
"type": "boolean"
|
|
243
240
|
},
|