@atlaskit/renderer 111.2.4 → 111.2.6

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,19 @@
1
1
  # @atlaskit/renderer
2
2
 
3
+ ## 111.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#154110](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/154110)
8
+ [`3545ee83ab026`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3545ee83ab026) -
9
+ removed cleaned up FF from package.jsons
10
+
11
+ ## 111.2.5
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 111.2.4
4
18
 
5
19
  ### Patch Changes
@@ -7,5 +7,7 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.default = Em;
8
8
  var _react = _interopRequireDefault(require("react"));
9
9
  function Em(props) {
10
+ // ignore the eslint warning Text primitive does not support dataAttributes
11
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
10
12
  return /*#__PURE__*/_react.default.createElement("em", props.dataAttributes, props.children);
11
13
  }
@@ -7,5 +7,7 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.default = Strong;
8
8
  var _react = _interopRequireDefault(require("react"));
9
9
  function Strong(props) {
10
+ // ignore the eslint warning Text primitive does not support dataAttributes
11
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
10
12
  return /*#__PURE__*/_react.default.createElement("strong", props.dataAttributes, props.children);
11
13
  }
@@ -10,5 +10,10 @@ var _inline = _interopRequireDefault(require("./inline"));
10
10
  function Paragraph(_ref) {
11
11
  var children = _ref.children,
12
12
  dataAttributes = _ref.dataAttributes;
13
- return /*#__PURE__*/_react.default.createElement("p", dataAttributes, /*#__PURE__*/_react.default.createElement(_inline.default, null, children));
13
+ return (
14
+ /*#__PURE__*/
15
+ // ignore the eslint warning Text primitive does not support dataAttributes
16
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
17
+ _react.default.createElement("p", dataAttributes, /*#__PURE__*/_react.default.createElement(_inline.default, null, children))
18
+ );
14
19
  }
@@ -65,7 +65,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
65
65
  var NORMAL_SEVERITY_THRESHOLD = exports.NORMAL_SEVERITY_THRESHOLD = 2000;
66
66
  var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
67
67
  var packageName = "@atlaskit/renderer";
68
- var packageVersion = "111.2.4";
68
+ var packageVersion = "111.2.6";
69
69
  var setAsQueryContainerStyles = (0, _react2.css)({
70
70
  containerName: 'ak-renderer-wrapper',
71
71
  containerType: 'inline-size',
@@ -1,4 +1,6 @@
1
1
  import React from 'react';
2
2
  export default function Em(props) {
3
+ // ignore the eslint warning Text primitive does not support dataAttributes
4
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
3
5
  return /*#__PURE__*/React.createElement("em", props.dataAttributes, props.children);
4
6
  }
@@ -1,4 +1,6 @@
1
1
  import React from 'react';
2
2
  export default function Strong(props) {
3
+ // ignore the eslint warning Text primitive does not support dataAttributes
4
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
3
5
  return /*#__PURE__*/React.createElement("strong", props.dataAttributes, props.children);
4
6
  }
@@ -4,5 +4,10 @@ export default function Paragraph({
4
4
  children,
5
5
  dataAttributes
6
6
  }) {
7
- return /*#__PURE__*/React.createElement("p", dataAttributes, /*#__PURE__*/React.createElement(Inline, null, children));
7
+ return (
8
+ /*#__PURE__*/
9
+ // ignore the eslint warning Text primitive does not support dataAttributes
10
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
11
+ React.createElement("p", dataAttributes, /*#__PURE__*/React.createElement(Inline, null, children))
12
+ );
8
13
  }
@@ -45,7 +45,7 @@ import { countNodes } from './count-nodes';
45
45
  export const NORMAL_SEVERITY_THRESHOLD = 2000;
46
46
  export const DEGRADED_SEVERITY_THRESHOLD = 3000;
47
47
  const packageName = "@atlaskit/renderer";
48
- const packageVersion = "111.2.4";
48
+ const packageVersion = "111.2.6";
49
49
  const setAsQueryContainerStyles = css({
50
50
  containerName: 'ak-renderer-wrapper',
51
51
  containerType: 'inline-size',
@@ -1,4 +1,6 @@
1
1
  import React from 'react';
2
2
  export default function Em(props) {
3
+ // ignore the eslint warning Text primitive does not support dataAttributes
4
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
3
5
  return /*#__PURE__*/React.createElement("em", props.dataAttributes, props.children);
4
6
  }
@@ -1,4 +1,6 @@
1
1
  import React from 'react';
2
2
  export default function Strong(props) {
3
+ // ignore the eslint warning Text primitive does not support dataAttributes
4
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
3
5
  return /*#__PURE__*/React.createElement("strong", props.dataAttributes, props.children);
4
6
  }
@@ -3,5 +3,10 @@ import Inline from './inline';
3
3
  export default function Paragraph(_ref) {
4
4
  var children = _ref.children,
5
5
  dataAttributes = _ref.dataAttributes;
6
- return /*#__PURE__*/React.createElement("p", dataAttributes, /*#__PURE__*/React.createElement(Inline, null, children));
6
+ return (
7
+ /*#__PURE__*/
8
+ // ignore the eslint warning Text primitive does not support dataAttributes
9
+ // eslint-disable-next-line @atlaskit/design-system/use-primitives-text
10
+ React.createElement("p", dataAttributes, /*#__PURE__*/React.createElement(Inline, null, children))
11
+ );
7
12
  }
@@ -55,7 +55,7 @@ import { countNodes } from './count-nodes';
55
55
  export var NORMAL_SEVERITY_THRESHOLD = 2000;
56
56
  export var DEGRADED_SEVERITY_THRESHOLD = 3000;
57
57
  var packageName = "@atlaskit/renderer";
58
- var packageVersion = "111.2.4";
58
+ var packageVersion = "111.2.6";
59
59
  var setAsQueryContainerStyles = css({
60
60
  containerName: 'ak-renderer-wrapper',
61
61
  containerType: 'inline-size',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/renderer",
3
- "version": "111.2.4",
3
+ "version": "111.2.6",
4
4
  "description": "Renderer component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -29,7 +29,7 @@
29
29
  "@atlaskit/analytics-next": "^10.1.0",
30
30
  "@atlaskit/button": "^20.2.0",
31
31
  "@atlaskit/code": "^15.6.0",
32
- "@atlaskit/editor-common": "^93.5.0",
32
+ "@atlaskit/editor-common": "^93.6.0",
33
33
  "@atlaskit/editor-json-transformer": "^8.20.0",
34
34
  "@atlaskit/editor-palette": "1.6.1",
35
35
  "@atlaskit/editor-prosemirror": "6.0.0",
@@ -49,7 +49,7 @@
49
49
  "@atlaskit/smart-card": "^30.1.0",
50
50
  "@atlaskit/status": "^1.5.0",
51
51
  "@atlaskit/task-decision": "^17.11.0",
52
- "@atlaskit/theme": "^13.1.0",
52
+ "@atlaskit/theme": "^14.0.0",
53
53
  "@atlaskit/tmp-editor-statsig": "*",
54
54
  "@atlaskit/tokens": "^2.0.0",
55
55
  "@atlaskit/tooltip": "^18.8.0",
@@ -80,7 +80,7 @@
80
80
  "@atlaskit/media-test-helpers": "^34.5.0",
81
81
  "@atlaskit/mention": "^23.3.0",
82
82
  "@atlaskit/navigation-next": "^9.0.0",
83
- "@atlaskit/util-data-test": "^17.9.0",
83
+ "@atlaskit/util-data-test": "^17.11.0",
84
84
  "@atlaskit/visual-regression": "*",
85
85
  "@atlassian/feature-flags-test-utils": "*",
86
86
  "@testing-library/react": "^12.1.5",
@@ -119,9 +119,6 @@
119
119
  "annotations_defensive_node_name_calculations": {
120
120
  "type": "boolean"
121
121
  },
122
- "platform.editor.inline_extension.extended_lcqdn": {
123
- "type": "boolean"
124
- },
125
122
  "editor_inline_comments_on_inline_nodes": {
126
123
  "type": "boolean"
127
124
  },