@atlaskit/link-datasource 2.7.0 → 2.8.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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @atlaskit/link-datasource
2
2
 
3
+ ## 2.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#124209](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124209)
8
+ [`8aa1792f12ed3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8aa1792f12ed3) -
9
+ bump @atlaskit/editor-prosemirror to 5.0.0, bump @atlaskit/adf-schema to 40.1.0
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 2.7.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#123925](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/123925)
20
+ [`d6234c59408c8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d6234c59408c8) -
21
+ Internal change to typography component APIs resulting in very minor letter spacing changes.
22
+
3
23
  ## 2.7.0
4
24
 
5
25
  ### Minor Changes
@@ -32,7 +32,7 @@ var CustomSelectMessage = function CustomSelectMessage(_ref) {
32
32
  alignItems: "center",
33
33
  justifyContent: "center"
34
34
  }, icon), /*#__PURE__*/_react.default.createElement(_heading.default, {
35
- level: "h400"
35
+ size: "xsmall"
36
36
  }, /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, message)));
37
37
  };
38
38
  var _default = exports.default = CustomSelectMessage;
@@ -101,7 +101,9 @@ var DateRangePicker = exports.DateRangePicker = function DateRangePicker(_ref) {
101
101
  }, [analyticsPayload, fireEvent, isPickerOpen]);
102
102
  return /*#__PURE__*/_react.default.createElement(_popup.default, {
103
103
  isOpen: !!isPickerOpen,
104
- onClose: handlePickerToggle,
104
+ onClose: handlePickerToggle
105
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
106
+ ,
105
107
  popupComponent: _PopupComponent.PopupComponent,
106
108
  zIndex: _constants.layers.modal(),
107
109
  content: function content() {
@@ -515,7 +515,9 @@ var IssueLikeDataTableView = exports.IssueLikeDataTableView = function IssueLike
515
515
  }).filter(function (value) {
516
516
  return value !== '';
517
517
  }).join(', ');
518
- var contentComponent = stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(key)) ? (0, _react2.jsx)(_tooltip.default, {
518
+ var contentComponent = stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(key)) ? (0, _react2.jsx)(_tooltip.default
519
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
520
+ , {
519
521
  tag: TruncateTextTag,
520
522
  content: stringifiedContent,
521
523
  testId: "issues-table-cell-tooltip"
@@ -26,7 +26,7 @@ const CustomSelectMessage = ({
26
26
  alignItems: "center",
27
27
  justifyContent: "center"
28
28
  }, icon), /*#__PURE__*/React.createElement(Heading, {
29
- level: "h400"
29
+ size: "xsmall"
30
30
  }, /*#__PURE__*/React.createElement(FormattedMessage, message)));
31
31
  };
32
32
  export default CustomSelectMessage;
@@ -76,7 +76,9 @@ export const DateRangePicker = ({
76
76
  }, [analyticsPayload, fireEvent, isPickerOpen]);
77
77
  return /*#__PURE__*/React.createElement(Popup, {
78
78
  isOpen: !!isPickerOpen,
79
- onClose: handlePickerToggle,
79
+ onClose: handlePickerToggle
80
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
81
+ ,
80
82
  popupComponent: PopupComponent,
81
83
  zIndex: layers.modal(),
82
84
  content: () => {
@@ -517,7 +517,9 @@ export const IssueLikeDataTableView = ({
517
517
  type,
518
518
  value
519
519
  }, intl.formatMessage, intl.formatDate)).filter(value => value !== '').join(', ');
520
- const contentComponent = stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(key)) ? jsx(Tooltip, {
520
+ const contentComponent = stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(key)) ? jsx(Tooltip
521
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
522
+ , {
521
523
  tag: TruncateTextTag,
522
524
  content: stringifiedContent,
523
525
  testId: "issues-table-cell-tooltip"
@@ -25,7 +25,7 @@ var CustomSelectMessage = function CustomSelectMessage(_ref) {
25
25
  alignItems: "center",
26
26
  justifyContent: "center"
27
27
  }, icon), /*#__PURE__*/React.createElement(Heading, {
28
- level: "h400"
28
+ size: "xsmall"
29
29
  }, /*#__PURE__*/React.createElement(FormattedMessage, message)));
30
30
  };
31
31
  export default CustomSelectMessage;
@@ -91,7 +91,9 @@ export var DateRangePicker = function DateRangePicker(_ref) {
91
91
  }, [analyticsPayload, fireEvent, isPickerOpen]);
92
92
  return /*#__PURE__*/React.createElement(Popup, {
93
93
  isOpen: !!isPickerOpen,
94
- onClose: handlePickerToggle,
94
+ onClose: handlePickerToggle
95
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
96
+ ,
95
97
  popupComponent: PopupComponent,
96
98
  zIndex: layers.modal(),
97
99
  content: function content() {
@@ -509,7 +509,9 @@ export var IssueLikeDataTableView = function IssueLikeDataTableView(_ref5) {
509
509
  }).filter(function (value) {
510
510
  return value !== '';
511
511
  }).join(', ');
512
- var contentComponent = stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(key)) ? jsx(Tooltip, {
512
+ var contentComponent = stringifiedContent && !(wrappedColumnKeys !== null && wrappedColumnKeys !== void 0 && wrappedColumnKeys.includes(key)) ? jsx(Tooltip
513
+ // @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
514
+ , {
513
515
  tag: TruncateTextTag,
514
516
  content: stringifiedContent,
515
517
  testId: "issues-table-cell-tooltip"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-datasource",
3
- "version": "2.7.0",
3
+ "version": "2.8.0",
4
4
  "description": "UI Components to support linking platform dataset feature",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -43,7 +43,7 @@
43
43
  "@atlaskit/button": "^19.1.0",
44
44
  "@atlaskit/datetime-picker": "^13.7.0",
45
45
  "@atlaskit/dropdown-menu": "^12.14.0",
46
- "@atlaskit/editor-prosemirror": "4.0.1",
46
+ "@atlaskit/editor-prosemirror": "5.0.1",
47
47
  "@atlaskit/empty-state": "^7.9.0",
48
48
  "@atlaskit/form": "^10.4.0",
49
49
  "@atlaskit/heading": "^2.4.0",
@@ -52,7 +52,7 @@
52
52
  "@atlaskit/image": "^1.3.0",
53
53
  "@atlaskit/intl-messages-provider": "^1.0.0",
54
54
  "@atlaskit/jql-ast": "^3.3.0",
55
- "@atlaskit/jql-editor": "^4.3.0",
55
+ "@atlaskit/jql-editor": "^4.4.0",
56
56
  "@atlaskit/jql-editor-autocomplete-rest": "^2.0.0",
57
57
  "@atlaskit/link-client-extension": "^1.10.0",
58
58
  "@atlaskit/linking-common": "^5.7.0",
@@ -67,7 +67,7 @@
67
67
  "@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.0",
68
68
  "@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^1.2.0",
69
69
  "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.1.0",
70
- "@atlaskit/primitives": "^11.0.0",
70
+ "@atlaskit/primitives": "^11.1.0",
71
71
  "@atlaskit/select": "^17.11.0",
72
72
  "@atlaskit/smart-card": "^27.11.0",
73
73
  "@atlaskit/smart-user-picker": "6.10.0",