@atlaskit/renderer 124.10.3 → 124.11.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 +17 -0
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/cjs/react/nodes/codeBlock/components/lightWeightCodeBlock.js +3 -3
- package/dist/cjs/react/nodes/heading-anchor.js +2 -2
- package/dist/cjs/react/nodes/panel.js +5 -5
- package/dist/cjs/ui/Expand.js +3 -3
- package/dist/cjs/ui/Renderer/RendererStyleContainer.js +17 -17
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/cjs/ui/annotations/draft/component.js +2 -2
- package/dist/cjs/ui/annotations/element/mark.js +12 -12
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockContainer.js +6 -6
- package/dist/es2019/react/nodes/codeBlock/components/lightWeightCodeBlock.js +3 -3
- package/dist/es2019/react/nodes/heading-anchor.js +2 -2
- package/dist/es2019/react/nodes/panel.js +5 -5
- package/dist/es2019/ui/Expand.js +3 -3
- package/dist/es2019/ui/Renderer/RendererStyleContainer.js +27 -27
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/es2019/ui/annotations/draft/component.js +2 -2
- package/dist/es2019/ui/annotations/element/mark.js +12 -12
- package/dist/esm/react/nodes/codeBlock/components/codeBlockContainer.js +1 -1
- package/dist/esm/react/nodes/codeBlock/components/lightWeightCodeBlock.js +3 -3
- package/dist/esm/react/nodes/heading-anchor.js +2 -2
- package/dist/esm/react/nodes/panel.js +5 -5
- package/dist/esm/ui/Expand.js +3 -3
- package/dist/esm/ui/Renderer/RendererStyleContainer.js +17 -17
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/esm/ui/annotations/draft/component.js +2 -2
- package/dist/esm/ui/annotations/element/mark.js +12 -12
- package/package.json +10 -7
|
@@ -21,14 +21,14 @@ var markStyles = css(_defineProperty({
|
|
|
21
21
|
WebkitTapHighlightColor: 'transparent'
|
|
22
22
|
}, "&[data-mark-annotation-state='".concat(AnnotationMarkStates.ACTIVE, "']"), {
|
|
23
23
|
// was from blur in AnnotationSharedCSSByState().blur
|
|
24
|
-
background: "var(--ds-background-accent-yellow-subtlest, #
|
|
24
|
+
background: "var(--ds-background-accent-yellow-subtlest, #FEF7C8)",
|
|
25
25
|
borderBottom: "var(--ds-border-width-selected, 2px)".concat(" solid ", "var(--ds-border-accent-yellow, #B38600)"),
|
|
26
26
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
27
27
|
'&[data-has-focus="true"]': {
|
|
28
|
-
background: "var(--ds-background-accent-yellow-subtler, #
|
|
28
|
+
background: "var(--ds-background-accent-yellow-subtler, #F5E989)",
|
|
29
29
|
borderBottom: "var(--ds-border-width-selected, 2px)".concat(" solid ", "var(--ds-border-accent-yellow, #B38600)"),
|
|
30
30
|
// TODO: DSP-4147 - Annotation shadow
|
|
31
|
-
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #
|
|
31
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
32
32
|
cursor: 'pointer'
|
|
33
33
|
}
|
|
34
34
|
}));
|
|
@@ -40,17 +40,17 @@ var markStylesLayeringFix = css(_defineProperty({}, "&[data-mark-annotation-stat
|
|
|
40
40
|
},
|
|
41
41
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
42
42
|
'.fabric-background-color-mark &[data-has-focus="true"], &[data-has-focus="true"]': {
|
|
43
|
-
background: "var(--ds-background-accent-yellow-subtlest-pressed, #
|
|
43
|
+
background: "var(--ds-background-accent-yellow-subtlest-pressed, #EFDD4E)",
|
|
44
44
|
borderBottomColor: "var(--ds-border-accent-yellow, #B38600)",
|
|
45
|
-
boxShadow: "var(--ds-shadow-raised, 0px 1px 1px #
|
|
45
|
+
boxShadow: "var(--ds-shadow-raised, 0px 1px 1px #1E1F2140, 0px 0px 1px #1E1F214f)"
|
|
46
46
|
}
|
|
47
47
|
}));
|
|
48
48
|
var markStylesWithUpdatedShadow = css(_defineProperty({}, "&[data-mark-annotation-state='".concat(AnnotationMarkStates.ACTIVE, "']"), {
|
|
49
49
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
50
50
|
'&[data-has-focus="true"]': {
|
|
51
|
-
background: "var(--ds-background-accent-yellow-subtlest-pressed, #
|
|
51
|
+
background: "var(--ds-background-accent-yellow-subtlest-pressed, #EFDD4E)",
|
|
52
52
|
borderBottomColor: "var(--ds-border-accent-yellow, #B38600)",
|
|
53
|
-
boxShadow: "var(--ds-shadow-raised, 0px 1px 1px #
|
|
53
|
+
boxShadow: "var(--ds-shadow-raised, 0px 1px 1px #1E1F2140, 0px 0px 1px #1E1F214f)"
|
|
54
54
|
}
|
|
55
55
|
}));
|
|
56
56
|
var markStylesWithInlineComments = css(_defineProperty({}, "&[data-mark-annotation-state='".concat(AnnotationMarkStates.ACTIVE, "']"), {
|
|
@@ -68,21 +68,21 @@ var markStylesWithInlineComments = css(_defineProperty({}, "&[data-mark-annotati
|
|
|
68
68
|
paddingTop: "var(--ds-space-025, 2px)"
|
|
69
69
|
},
|
|
70
70
|
// was from blur in AnnotationSharedCSSByState().blur
|
|
71
|
-
background: "var(--ds-background-accent-yellow-subtlest, #
|
|
71
|
+
background: "var(--ds-background-accent-yellow-subtlest, #FEF7C8)",
|
|
72
72
|
borderBottomColor: "var(--ds-border-accent-yellow, #B38600)",
|
|
73
73
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
74
74
|
'&[data-has-focus="true"]': {
|
|
75
|
-
background: "var(--ds-background-accent-yellow-subtlest-pressed, #
|
|
75
|
+
background: "var(--ds-background-accent-yellow-subtlest-pressed, #EFDD4E)",
|
|
76
76
|
borderBottomColor: "var(--ds-border-accent-yellow, #B38600)",
|
|
77
|
-
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #
|
|
77
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)"
|
|
78
78
|
}
|
|
79
79
|
}));
|
|
80
80
|
var markStylesWithCommentsPanel = css(_defineProperty({}, "&[data-mark-annotation-state='".concat(AnnotationMarkStates.ACTIVE, "']"), {
|
|
81
81
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
82
82
|
'&[data-is-hovered="true"]:not([data-has-focus="true"])': {
|
|
83
|
-
background: "var(--ds-background-accent-yellow-subtlest-hovered, #
|
|
83
|
+
background: "var(--ds-background-accent-yellow-subtlest-hovered, #F5E989)",
|
|
84
84
|
borderBottomColor: "var(--ds-border-accent-yellow, #B38600)",
|
|
85
|
-
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #
|
|
85
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)"
|
|
86
86
|
}
|
|
87
87
|
}));
|
|
88
88
|
var isMobile = function isMobile() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "124.
|
|
3
|
+
"version": "124.11.0",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"@atlaskit/analytics-namespaced-context": "^7.1.0",
|
|
31
31
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
32
32
|
"@atlaskit/browser-apis": "^0.0.1",
|
|
33
|
-
"@atlaskit/button": "^23.
|
|
33
|
+
"@atlaskit/button": "^23.6.0",
|
|
34
34
|
"@atlaskit/code": "^17.3.0",
|
|
35
35
|
"@atlaskit/editor-json-transformer": "^8.31.0",
|
|
36
36
|
"@atlaskit/editor-palette": "^2.1.0",
|
|
37
37
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
38
38
|
"@atlaskit/editor-shared-styles": "^3.8.0",
|
|
39
39
|
"@atlaskit/editor-tables": "^2.9.0",
|
|
40
|
-
"@atlaskit/emoji": "^69.
|
|
40
|
+
"@atlaskit/emoji": "^69.7.0",
|
|
41
41
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
42
42
|
"@atlaskit/icon": "^28.5.0",
|
|
43
43
|
"@atlaskit/link": "^3.2.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@atlaskit/link-extractors": "^2.4.0",
|
|
46
46
|
"@atlaskit/linking-common": "^9.8.0",
|
|
47
47
|
"@atlaskit/media-card": "^79.6.0",
|
|
48
|
-
"@atlaskit/media-client": "^35.
|
|
48
|
+
"@atlaskit/media-client": "^35.6.0",
|
|
49
49
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
50
50
|
"@atlaskit/media-common": "^12.3.0",
|
|
51
51
|
"@atlaskit/media-filmstrip": "^51.1.0",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"@atlaskit/status": "^3.0.0",
|
|
59
59
|
"@atlaskit/task-decision": "^19.2.0",
|
|
60
60
|
"@atlaskit/theme": "^21.0.0",
|
|
61
|
-
"@atlaskit/tmp-editor-statsig": "^13.
|
|
62
|
-
"@atlaskit/tokens": "^
|
|
61
|
+
"@atlaskit/tmp-editor-statsig": "^13.34.0",
|
|
62
|
+
"@atlaskit/tokens": "^8.0.0",
|
|
63
63
|
"@atlaskit/tooltip": "^20.8.0",
|
|
64
64
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
65
65
|
"@babel/runtime": "^7.0.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"uuid": "^3.1.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@atlaskit/editor-common": "^110.
|
|
75
|
+
"@atlaskit/editor-common": "^110.25.0",
|
|
76
76
|
"@atlaskit/link-provider": "^4.0.0",
|
|
77
77
|
"@atlaskit/media-core": "^37.0.0",
|
|
78
78
|
"react": "^18.2.0",
|
|
@@ -241,6 +241,9 @@
|
|
|
241
241
|
},
|
|
242
242
|
"platform_editor_table_height_analytics_event": {
|
|
243
243
|
"type": "boolean"
|
|
244
|
+
},
|
|
245
|
+
"platform_editor_ai_adf_prompts_in_all_products": {
|
|
246
|
+
"type": "boolean"
|
|
244
247
|
}
|
|
245
248
|
}
|
|
246
249
|
}
|