@atlaskit/renderer 109.43.0 → 109.44.1

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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/renderer
2
2
 
3
+ ## 109.44.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 109.44.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#124209](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124209)
14
+ [`8aa1792f12ed3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8aa1792f12ed3) -
15
+ bump @atlaskit/editor-prosemirror to 5.0.0, bump @atlaskit/adf-schema to 40.1.0
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 109.43.0
4
22
 
5
23
  ### Minor Changes
@@ -0,0 +1,111 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.post-office.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../tsDist/@atlaskit__renderer/app",
7
+ "composite": true,
8
+ "rootDir": "../"
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../adf-utils/afm-post-office/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../analytics/analytics-listeners/afm-post-office/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../analytics/analytics-namespaced-context/afm-post-office/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../analytics/analytics-next/afm-post-office/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/button/afm-post-office/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../../design-system/code/afm-post-office/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../editor-common/afm-post-office/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../editor-json-transformer/afm-post-office/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../editor-palette/afm-post-office/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../editor-shared-styles/afm-post-office/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../elements/emoji/afm-post-office/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../measurement/feature-gate-js-client/afm-post-office/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/icon/afm-post-office/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../linking-platform/link-datasource/afm-post-office/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../../media/media-card/afm-post-office/tsconfig.json"
64
+ },
65
+ {
66
+ "path": "../../../media/media-client/afm-post-office/tsconfig.json"
67
+ },
68
+ {
69
+ "path": "../../../media/media-client-react/afm-post-office/tsconfig.json"
70
+ },
71
+ {
72
+ "path": "../../../media/media-common/afm-post-office/tsconfig.json"
73
+ },
74
+ {
75
+ "path": "../../../media/media-filmstrip/afm-post-office/tsconfig.json"
76
+ },
77
+ {
78
+ "path": "../../../media/media-ui/afm-post-office/tsconfig.json"
79
+ },
80
+ {
81
+ "path": "../../../media/media-viewer/afm-post-office/tsconfig.json"
82
+ },
83
+ {
84
+ "path": "../../../platform/feature-flags/afm-post-office/tsconfig.json"
85
+ },
86
+ {
87
+ "path": "../../../linking-platform/smart-card/afm-post-office/tsconfig.json"
88
+ },
89
+ {
90
+ "path": "../../../elements/status/afm-post-office/tsconfig.json"
91
+ },
92
+ {
93
+ "path": "../../../elements/task-decision/afm-post-office/tsconfig.json"
94
+ },
95
+ {
96
+ "path": "../../../design-system/theme/afm-post-office/tsconfig.json"
97
+ },
98
+ {
99
+ "path": "../../../design-system/tokens/afm-post-office/tsconfig.json"
100
+ },
101
+ {
102
+ "path": "../../../design-system/tooltip/afm-post-office/tsconfig.json"
103
+ },
104
+ {
105
+ "path": "../../../linking-platform/link-provider/afm-post-office/tsconfig.json"
106
+ },
107
+ {
108
+ "path": "../../../media/media-core/afm-post-office/tsconfig.json"
109
+ }
110
+ ]
111
+ }
@@ -138,7 +138,9 @@ var HeadingAnchor = /*#__PURE__*/function (_React$PureComponent) {
138
138
  // We set the key to the message to ensure it remounts when the message
139
139
  // changes, so that it correctly repositions.
140
140
  // @see https://ecosystem.atlassian.net/projects/AK/queues/issue/AK-6548
141
- return (0, _react2.jsx)(_tooltip.default, {
141
+ return (0, _react2.jsx)(_tooltip.default
142
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
143
+ , {
142
144
  tag: CopyAnchorWrapperWithRef,
143
145
  content: tooltipMessage,
144
146
  position: "top",
@@ -172,7 +172,9 @@ function Expand(_ref) {
172
172
  label: label
173
173
  })) : (0, _react.jsx)(_tooltip.default, {
174
174
  content: label,
175
- position: "top",
175
+ position: "top"
176
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
177
+ ,
176
178
  tag: _ui.ExpandLayoutWrapperWithRef,
177
179
  testId: 'tooltip'
178
180
  }, (0, _react.jsx)(_ui.ExpandIconWrapper, {
@@ -60,7 +60,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
60
60
  var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
61
61
  var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
62
62
  var packageName = "@atlaskit/renderer";
63
- var packageVersion = "109.43.0";
63
+ var packageVersion = "109.44.1";
64
64
  var defaultNodeComponents = exports.defaultNodeComponents = _nodes.nodeToReact;
65
65
  var Renderer = exports.Renderer = /*#__PURE__*/function (_PureComponent) {
66
66
  (0, _inherits2.default)(Renderer, _PureComponent);
@@ -97,7 +97,9 @@ class HeadingAnchor extends React.PureComponent {
97
97
  // We set the key to the message to ensure it remounts when the message
98
98
  // changes, so that it correctly repositions.
99
99
  // @see https://ecosystem.atlassian.net/projects/AK/queues/issue/AK-6548
100
- return jsx(Tooltip, {
100
+ return jsx(Tooltip
101
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
102
+ , {
101
103
  tag: CopyAnchorWrapperWithRef,
102
104
  content: tooltipMessage,
103
105
  position: "top",
@@ -154,7 +154,9 @@ function Expand({
154
154
  label: label
155
155
  })) : jsx(Tooltip, {
156
156
  content: label,
157
- position: "top",
157
+ position: "top"
158
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
159
+ ,
158
160
  tag: ExpandLayoutWrapperWithRef,
159
161
  testId: 'tooltip'
160
162
  }, jsx(ExpandIconWrapper, {
@@ -42,7 +42,7 @@ import { nodeToReact } from '../../react/nodes';
42
42
  export const NORMAL_SEVERITY_THRESHOLD = 2000;
43
43
  export const DEGRADED_SEVERITY_THRESHOLD = 3000;
44
44
  const packageName = "@atlaskit/renderer";
45
- const packageVersion = "109.43.0";
45
+ const packageVersion = "109.44.1";
46
46
  export const defaultNodeComponents = nodeToReact;
47
47
  export class Renderer extends PureComponent {
48
48
  constructor(props) {
@@ -132,7 +132,9 @@ var HeadingAnchor = /*#__PURE__*/function (_React$PureComponent) {
132
132
  // We set the key to the message to ensure it remounts when the message
133
133
  // changes, so that it correctly repositions.
134
134
  // @see https://ecosystem.atlassian.net/projects/AK/queues/issue/AK-6548
135
- return jsx(Tooltip, {
135
+ return jsx(Tooltip
136
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
137
+ , {
136
138
  tag: CopyAnchorWrapperWithRef,
137
139
  content: tooltipMessage,
138
140
  position: "top",
@@ -162,7 +162,9 @@ function Expand(_ref) {
162
162
  label: label
163
163
  })) : jsx(Tooltip, {
164
164
  content: label,
165
- position: "top",
165
+ position: "top"
166
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
167
+ ,
166
168
  tag: ExpandLayoutWrapperWithRef,
167
169
  testId: 'tooltip'
168
170
  }, jsx(ExpandIconWrapper, {
@@ -52,7 +52,7 @@ import { nodeToReact } from '../../react/nodes';
52
52
  export var NORMAL_SEVERITY_THRESHOLD = 2000;
53
53
  export var DEGRADED_SEVERITY_THRESHOLD = 3000;
54
54
  var packageName = "@atlaskit/renderer";
55
- var packageVersion = "109.43.0";
55
+ var packageVersion = "109.44.1";
56
56
  export var defaultNodeComponents = nodeToReact;
57
57
  export var Renderer = /*#__PURE__*/function (_PureComponent) {
58
58
  _inherits(Renderer, _PureComponent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "109.43.0",
3
+ "version": "109.44.1",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -25,21 +25,21 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@atlaskit/adf-schema": "^40.3.0",
28
- "@atlaskit/adf-utils": "^19.5.0",
28
+ "@atlaskit/adf-utils": "^19.6.0",
29
29
  "@atlaskit/analytics-listeners": "^8.10.0",
30
30
  "@atlaskit/analytics-namespaced-context": "^6.10.0",
31
31
  "@atlaskit/analytics-next": "^9.3.0",
32
32
  "@atlaskit/button": "^19.1.0",
33
33
  "@atlaskit/code": "^15.4.0",
34
- "@atlaskit/editor-common": "^86.7.0",
35
- "@atlaskit/editor-json-transformer": "^8.16.0",
34
+ "@atlaskit/editor-common": "^87.0.0",
35
+ "@atlaskit/editor-json-transformer": "^8.17.0",
36
36
  "@atlaskit/editor-palette": "1.6.0",
37
- "@atlaskit/editor-prosemirror": "4.0.1",
37
+ "@atlaskit/editor-prosemirror": "5.0.1",
38
38
  "@atlaskit/editor-shared-styles": "^2.13.0",
39
39
  "@atlaskit/emoji": "^67.6.0",
40
40
  "@atlaskit/feature-gate-js-client": "^4.18.0",
41
41
  "@atlaskit/icon": "^22.7.0",
42
- "@atlaskit/link-datasource": "^2.6.0",
42
+ "@atlaskit/link-datasource": "^2.9.0",
43
43
  "@atlaskit/media-card": "^78.0.0",
44
44
  "@atlaskit/media-client": "^27.3.0",
45
45
  "@atlaskit/media-client-react": "^2.0.0",
@@ -48,7 +48,7 @@
48
48
  "@atlaskit/media-ui": "^25.10.0",
49
49
  "@atlaskit/media-viewer": "^48.6.0",
50
50
  "@atlaskit/platform-feature-flags": "^0.3.0",
51
- "@atlaskit/smart-card": "^27.10.0",
51
+ "@atlaskit/smart-card": "^27.11.0",
52
52
  "@atlaskit/status": "^1.4.0",
53
53
  "@atlaskit/task-decision": "^17.10.0",
54
54
  "@atlaskit/theme": "^12.11.0",
@@ -73,7 +73,7 @@
73
73
  "@af/visual-regression": "*",
74
74
  "@atlaskit/analytics-gas-types": "^5.1.0",
75
75
  "@atlaskit/css-reset": "^6.9.0",
76
- "@atlaskit/editor-test-helpers": "^18.27.0",
76
+ "@atlaskit/editor-test-helpers": "^18.29.0",
77
77
  "@atlaskit/link-provider": "^1.13.0",
78
78
  "@atlaskit/link-test-helpers": "^7.0.0",
79
79
  "@atlaskit/linking-common": "^5.7.0",