@atlaskit/link-datasource 3.15.1 → 3.15.3

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,20 @@
1
1
  # @atlaskit/link-datasource
2
2
 
3
+ ## 3.15.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#177875](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/177875)
8
+ [`d0c3d27216b7c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d0c3d27216b7c) -
9
+ Clean up props for select new improvement on theme and customized components
10
+ - Updated dependencies
11
+
12
+ ## 3.15.2
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 3.15.1
4
19
 
5
20
  ### Patch Changes
@@ -7,11 +7,11 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.mapFetchErrors = exports.getStatusCodeGroup = exports.PermissionError = exports.FetchError = void 0;
8
8
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
9
9
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
10
- var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
11
10
  var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
12
11
  var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
12
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
13
13
  var _wrapNativeSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/wrapNativeSuper"));
14
- function _createSuper(t) { var r = _isNativeReflectConstruct(); return function () { var e, o = (0, _getPrototypeOf2.default)(t); if (r) { var s = (0, _getPrototypeOf2.default)(this).constructor; e = Reflect.construct(o, arguments, s); } else e = o.apply(this, arguments); return (0, _possibleConstructorReturn2.default)(this, e); }; }
14
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
15
15
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
16
16
  var mapFetchErrors = exports.mapFetchErrors = function mapFetchErrors(error) {
17
17
  if (error instanceof Response && !error.ok) {
@@ -38,27 +38,25 @@ var getStatusCodeGroup = exports.getStatusCodeGroup = function getStatusCodeGrou
38
38
  return 'unknown';
39
39
  };
40
40
  var PermissionError = exports.PermissionError = /*#__PURE__*/function (_Error) {
41
- (0, _inherits2.default)(PermissionError, _Error);
42
- var _super = _createSuper(PermissionError);
43
41
  function PermissionError(message) {
44
42
  var _this;
45
43
  (0, _classCallCheck2.default)(this, PermissionError);
46
- _this = _super.call(this, message);
44
+ _this = _callSuper(this, PermissionError, [message]);
47
45
  _this.name = 'PermissionError';
48
46
  return _this;
49
47
  }
48
+ (0, _inherits2.default)(PermissionError, _Error);
50
49
  return (0, _createClass2.default)(PermissionError);
51
50
  }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
52
51
  var FetchError = exports.FetchError = /*#__PURE__*/function (_Error2) {
53
- (0, _inherits2.default)(FetchError, _Error2);
54
- var _super2 = _createSuper(FetchError);
55
52
  function FetchError(statusCode, message) {
56
53
  var _this2;
57
54
  (0, _classCallCheck2.default)(this, FetchError);
58
- _this2 = _super2.call(this, message || "Fetch call failed with status code: ".concat(statusCode));
55
+ _this2 = _callSuper(this, FetchError, [message || "Fetch call failed with status code: ".concat(statusCode)]);
59
56
  _this2.name = 'FetchError';
60
57
  _this2.statusCode = statusCode;
61
58
  return _this2;
62
59
  }
60
+ (0, _inherits2.default)(FetchError, _Error2);
63
61
  return (0, _createClass2.default)(FetchError);
64
62
  }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
@@ -193,9 +193,7 @@ var FilterPopupSelect = exports.FilterPopupSelect = function FilterPopupSelect(_
193
193
  Control: _control.default,
194
194
  MenuList: _menuList.default,
195
195
  DropdownIndicator: _dropdownIndicator.default,
196
- LoadingIndicator: undefined,
197
- // disables the three ... indicator in the searchbox when picker is loading
198
- IndicatorSeparator: undefined // disables the | separator between search input and icon
196
+ LoadingIndicator: undefined // disables the three ... indicator in the searchbox when picker is loading
199
197
  },
200
198
  options: sortedOptions,
201
199
  value: selectedOptions,
@@ -8,7 +8,8 @@ exports.withTablePluginPrefix = exports.withTablePluginHeaderPrefix = exports.wi
8
8
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
9
  var _styled = _interopRequireDefault(require("@emotion/styled"));
10
10
  var _colors = require("@atlaskit/theme/colors");
11
- var _styled$th, _styled$td, _styled$td2; // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
11
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
12
+
12
13
  var ScrollableContainerHeight = exports.ScrollableContainerHeight = 590;
13
14
 
14
15
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
@@ -32,7 +33,7 @@ var withTablePluginHeaderPrefix = exports.withTablePluginHeaderPrefix = withTabl
32
33
  var withTablePluginBodyPrefix = exports.withTablePluginBodyPrefix = withTablePluginPrefix.bind(null, 'tbody');
33
34
 
34
35
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
35
- var TableHeading = exports.TableHeading = _styled.default.th((_styled$th = {}, (0, _defineProperty2.default)(_styled$th, "".concat(withTablePluginHeaderPrefix()), {
36
+ var TableHeading = exports.TableHeading = _styled.default.th((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, "".concat(withTablePluginHeaderPrefix()), {
36
37
  border: 0,
37
38
  position: 'relative',
38
39
  /* This makes resizing work with out jumping due to padding + changes overall width for same default values. */
@@ -51,13 +52,13 @@ var TableHeading = exports.TableHeading = _styled.default.th((_styled$th = {}, (
51
52
  height: "calc(".concat(lineHeight, " * 2 + ").concat(verticalPadding, " * 4 + 2px)"),
52
53
  verticalAlign: 'bottom',
53
54
  backgroundColor: "var(--ds-elevation-surface-current, #FFF)"
54
- }), (0, _defineProperty2.default)(_styled$th, "".concat(withTablePluginPrefix('', 'thead.has-column-picker &:nth-last-of-type(2)')), {
55
+ }), "".concat(withTablePluginPrefix('', 'thead.has-column-picker &:nth-last-of-type(2)')), {
55
56
  borderRight: 0
56
- }), (0, _defineProperty2.default)(_styled$th, "".concat(withTablePluginHeaderPrefix('&:first-child')), {
57
+ }), "".concat(withTablePluginHeaderPrefix('&:first-child')), {
57
58
  paddingLeft: "var(--ds-space-050, 4px)"
58
- }), (0, _defineProperty2.default)(_styled$th, "".concat(withTablePluginHeaderPrefix('&:last-child')), {
59
+ }), "".concat(withTablePluginHeaderPrefix('&:last-child')), {
59
60
  borderRight: 0
60
- }), (0, _defineProperty2.default)(_styled$th, "& [data-testid='datasource-header-content--container']", {
61
+ }), "& [data-testid='datasource-header-content--container']", {
61
62
  width: '100%',
62
63
  /* With Button now being a parent for this component it adds its lineHeight value and spoils
63
64
  `height` calculation above. */
@@ -69,10 +70,10 @@ var TableHeading = exports.TableHeading = _styled.default.th((_styled$th = {}, (
69
70
  whiteSpace: 'normal',
70
71
  overflow: 'hidden',
71
72
  wordWrap: 'break-word'
72
- }), _styled$th));
73
+ }));
73
74
 
74
75
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/ui-styling-standard/no-styled -- To migrate as part of go/ui-styling-standard
75
- var TableCell = exports.TableCell = _styled.default.td((_styled$td = {}, (0, _defineProperty2.default)(_styled$td, "".concat(withTablePluginBodyPrefix()), {
76
+ var TableCell = exports.TableCell = _styled.default.td((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, "".concat(withTablePluginBodyPrefix()), {
76
77
  /* First section here is to override things editor table plugin css defines */
77
78
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
78
79
  padding: "var(--ds-space-050, 4px)".concat(" ", "var(--ds-space-100, 8px)"),
@@ -85,17 +86,17 @@ var TableCell = exports.TableCell = _styled.default.td((_styled$td = {}, (0, _de
85
86
  borderRight: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(_colors.N40, ")")),
86
87
  borderBottom: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(_colors.N40, ")")),
87
88
  overflow: 'hidden'
88
- }), (0, _defineProperty2.default)(_styled$td, "".concat(withTablePluginBodyPrefix('&:first-child')), {
89
+ }), "".concat(withTablePluginBodyPrefix('&:first-child')), {
89
90
  paddingLeft: "var(--ds-space-100, 8px)"
90
- }), (0, _defineProperty2.default)(_styled$td, "".concat(withTablePluginBodyPrefix('&:last-child')), {
91
+ }), "".concat(withTablePluginBodyPrefix('&:last-child')), {
91
92
  borderRight: 0,
92
93
  paddingRight: "var(--ds-space-100, 8px)"
93
- }), (0, _defineProperty2.default)(_styled$td, "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
94
+ }), "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
94
95
  whiteSpace: 'unset'
95
- }), _styled$td));
96
+ }));
96
97
 
97
98
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- To migrate as part of go/ui-styling-standard
98
- var InlineEditableTableCell = exports.InlineEditableTableCell = _styled.default.td((_styled$td2 = {}, (0, _defineProperty2.default)(_styled$td2, "".concat(withTablePluginBodyPrefix()), {
99
+ var InlineEditableTableCell = exports.InlineEditableTableCell = _styled.default.td((0, _defineProperty2.default)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, "".concat(withTablePluginBodyPrefix()), {
99
100
  /* First section here is to override things editor table plugin css defines */
100
101
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
101
102
  padding: "var(--ds-space-0, 0)".concat(" ", "var(--ds-space-0, 0)"),
@@ -106,8 +107,8 @@ var InlineEditableTableCell = exports.InlineEditableTableCell = _styled.default.
106
107
  boxSizing: 'content-box',
107
108
  borderRight: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(_colors.N40, ")")),
108
109
  borderBottom: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(_colors.N40, ")"))
109
- }), (0, _defineProperty2.default)(_styled$td2, "".concat(withTablePluginBodyPrefix('&:last-child')), {
110
+ }), "".concat(withTablePluginBodyPrefix('&:last-child')), {
110
111
  borderRight: 0
111
- }), (0, _defineProperty2.default)(_styled$td2, "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
112
+ }), "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
112
113
  whiteSpace: 'unset'
113
- }), _styled$td2));
114
+ }));
@@ -7,15 +7,14 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.extractValuesFromNonComplexJQL = void 0;
8
8
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
9
9
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
10
- var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
11
- var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
12
10
  var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
13
11
  var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
12
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
14
13
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
15
14
  var _mergeWith = _interopRequireDefault(require("lodash/mergeWith"));
16
15
  var _jqlAst = require("@atlaskit/jql-ast");
17
16
  var _isQueryTooComplex = require("./isQueryTooComplex");
18
- function _createSuper(t) { var r = _isNativeReflectConstruct(); return function () { var e, o = (0, _getPrototypeOf2.default)(t); if (r) { var s = (0, _getPrototypeOf2.default)(this).constructor; e = Reflect.construct(o, arguments, s); } else e = o.apply(this, arguments); return (0, _possibleConstructorReturn2.default)(this, e); }; }
17
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
19
18
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
20
19
  // Map of field keys to their respective clauses in the Jast
21
20
 
@@ -49,13 +48,11 @@ var getFieldValues = function getFieldValues(operand) {
49
48
  * class and implement visitField to walk through each field and value.
50
49
  * */
51
50
  var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
52
- (0, _inherits2.default)(JqlClauseCollectingVisitor, _AbstractJastVisitor);
53
- var _super = _createSuper(JqlClauseCollectingVisitor);
54
51
  function JqlClauseCollectingVisitor() {
55
52
  var _this;
56
53
  (0, _classCallCheck2.default)(this, JqlClauseCollectingVisitor);
57
- _this = _super.call(this);
58
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "visitField", function (field) {
54
+ _this = _callSuper(this, JqlClauseCollectingVisitor);
55
+ (0, _defineProperty2.default)(_this, "visitField", function (field) {
59
56
  var _field$value;
60
57
  var fieldName = (_field$value = field.value) === null || _field$value === void 0 ? void 0 : _field$value.toLowerCase();
61
58
  var fieldParent = field.parent;
@@ -74,7 +71,8 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
74
71
  });
75
72
  return _this;
76
73
  }
77
- (0, _createClass2.default)(JqlClauseCollectingVisitor, [{
74
+ (0, _inherits2.default)(JqlClauseCollectingVisitor, _AbstractJastVisitor);
75
+ return (0, _createClass2.default)(JqlClauseCollectingVisitor, [{
78
76
  key: "aggregateResult",
79
77
  value: function aggregateResult(aggregate, nextResult) {
80
78
  return (0, _mergeWith.default)(aggregate, nextResult, function (destValue, srcValue) {
@@ -87,7 +85,6 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
87
85
  return {};
88
86
  }
89
87
  }]);
90
- return JqlClauseCollectingVisitor;
91
88
  }(_jqlAst.AbstractJastVisitor);
92
89
  var extractValuesFromNonComplexJQL = exports.extractValuesFromNonComplexJQL = function extractValuesFromNonComplexJQL(jql) {
93
90
  if ((0, _isQueryTooComplex.isQueryTooComplex)(jql)) {
@@ -6,20 +6,19 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.isQueryTooComplex = void 0;
8
8
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
9
- var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
10
9
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
10
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
12
11
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
13
- var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
14
12
  var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
15
13
  var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
14
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
16
15
  var _wrapNativeSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/wrapNativeSuper"));
17
16
  var _mergeWith = _interopRequireDefault(require("lodash/mergeWith"));
18
17
  var _jqlAst = require("@atlaskit/jql-ast");
19
18
  var _jiraSearchContainer = require("../../jira-search-container");
20
19
  var _isClauseTooComplex = require("./isClauseTooComplex");
21
20
  var _index = require("./index");
22
- function _createSuper(t) { var r = _isNativeReflectConstruct(); return function () { var e, o = (0, _getPrototypeOf2.default)(t); if (r) { var s = (0, _getPrototypeOf2.default)(this).constructor; e = Reflect.construct(o, arguments, s); } else e = o.apply(this, arguments); return (0, _possibleConstructorReturn2.default)(this, e); }; }
21
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
23
22
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
24
23
  // Map of field keys to their respective clauses in the Jast
25
24
 
@@ -39,12 +38,11 @@ var fieldSpecificOperators = {
39
38
  assignee: [_jqlAst.OPERATOR_IN, _jqlAst.OPERATOR_EQUALS]
40
39
  };
41
40
  var JqlClauseCollectingVisitorError = /*#__PURE__*/function (_Error) {
42
- (0, _inherits2.default)(JqlClauseCollectingVisitorError, _Error);
43
- var _super = _createSuper(JqlClauseCollectingVisitorError);
44
41
  function JqlClauseCollectingVisitorError() {
45
42
  (0, _classCallCheck2.default)(this, JqlClauseCollectingVisitorError);
46
- return _super.apply(this, arguments);
43
+ return _callSuper(this, JqlClauseCollectingVisitorError, arguments);
47
44
  }
45
+ (0, _inherits2.default)(JqlClauseCollectingVisitorError, _Error);
48
46
  return (0, _createClass2.default)(JqlClauseCollectingVisitorError);
49
47
  }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
50
48
  /**
@@ -54,16 +52,14 @@ var JqlClauseCollectingVisitorError = /*#__PURE__*/function (_Error) {
54
52
  * more info - https://atlaskit.atlassian.com/packages/jql/jql-ast/docs/traversing-the-ast
55
53
  * */
56
54
  var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
57
- (0, _inherits2.default)(JqlClauseCollectingVisitor, _AbstractJastVisitor);
58
- var _super2 = _createSuper(JqlClauseCollectingVisitor);
59
55
  function JqlClauseCollectingVisitor() {
60
56
  var _this;
61
57
  (0, _classCallCheck2.default)(this, JqlClauseCollectingVisitor);
62
- _this = _super2.call(this);
63
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "visitNotClause", function () {
58
+ _this = _callSuper(this, JqlClauseCollectingVisitor);
59
+ (0, _defineProperty2.default)(_this, "visitNotClause", function () {
64
60
  throw new JqlClauseCollectingVisitorError('Visited an unsupported node while traversing the AST');
65
61
  });
66
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "visitOrderByField", function (orderByField) {
62
+ (0, _defineProperty2.default)(_this, "visitOrderByField", function (orderByField) {
67
63
  var _orderByField$field$v;
68
64
  var fieldValue = (_orderByField$field$v = orderByField.field.value) === null || _orderByField$field$v === void 0 ? void 0 : _orderByField$field$v.toLowerCase();
69
65
  if (fieldValue && !_jiraSearchContainer.ALLOWED_ORDER_BY_KEYS.includes(fieldValue)) {
@@ -71,12 +67,12 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
71
67
  }
72
68
  return {};
73
69
  });
74
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "visitCompoundClause", function (compoundClause) {
70
+ (0, _defineProperty2.default)(_this, "visitCompoundClause", function (compoundClause) {
75
71
  var clauseMap = {};
76
72
  var operator = compoundClause.operator.value;
77
73
  if (operator === _jqlAst.COMPOUND_OPERATOR_AND) {
78
74
  return compoundClause.clauses.reduce(function (result, clause) {
79
- return _this.aggregateResult(clause.accept((0, _assertThisInitialized2.default)(_this)), result);
75
+ return _this.aggregateResult(clause.accept(_this), result);
80
76
  }, clauseMap);
81
77
  }
82
78
  if (operator === _jqlAst.COMPOUND_OPERATOR_OR) {
@@ -87,7 +83,7 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
87
83
  }
88
84
  throw new JqlClauseCollectingVisitorError("Compound clauses using the operator '".concat(operator, "' is not supported"));
89
85
  });
90
- (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "visitTerminalClause", function (terminalClause) {
86
+ (0, _defineProperty2.default)(_this, "visitTerminalClause", function (terminalClause) {
91
87
  var _terminalClause$opera;
92
88
  var fieldName = terminalClause.field.value.toLowerCase();
93
89
  if (!allowedFields.includes(fieldName)) {
@@ -102,7 +98,8 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
102
98
  });
103
99
  return _this;
104
100
  }
105
- (0, _createClass2.default)(JqlClauseCollectingVisitor, [{
101
+ (0, _inherits2.default)(JqlClauseCollectingVisitor, _AbstractJastVisitor);
102
+ return (0, _createClass2.default)(JqlClauseCollectingVisitor, [{
106
103
  key: "aggregateResult",
107
104
  value: function aggregateResult(aggregate, nextResult) {
108
105
  return (0, _mergeWith.default)(aggregate, nextResult, function (destValue, srcValue) {
@@ -115,7 +112,6 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
115
112
  return {};
116
113
  }
117
114
  }]);
118
- return JqlClauseCollectingVisitor;
119
115
  }(_jqlAst.AbstractJastVisitor);
120
116
  var isQueryTooComplex = exports.isQueryTooComplex = function isQueryTooComplex(jql) {
121
117
  if (!jql) {
@@ -146,9 +146,7 @@ export const FilterPopupSelect = ({
146
146
  Control: CustomControl,
147
147
  MenuList: CustomMenuList,
148
148
  DropdownIndicator: CustomDropdownIndicator,
149
- LoadingIndicator: undefined,
150
- // disables the three ... indicator in the searchbox when picker is loading
151
- IndicatorSeparator: undefined // disables the | separator between search input and icon
149
+ LoadingIndicator: undefined // disables the three ... indicator in the searchbox when picker is loading
152
150
  },
153
151
  options: sortedOptions,
154
152
  value: selectedOptions,
@@ -1,10 +1,10 @@
1
1
  import _createClass from "@babel/runtime/helpers/createClass";
2
2
  import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
3
- import _inherits from "@babel/runtime/helpers/inherits";
4
3
  import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
5
4
  import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
5
+ import _inherits from "@babel/runtime/helpers/inherits";
6
6
  import _wrapNativeSuper from "@babel/runtime/helpers/wrapNativeSuper";
7
- function _createSuper(t) { var r = _isNativeReflectConstruct(); return function () { var e, o = _getPrototypeOf(t); if (r) { var s = _getPrototypeOf(this).constructor; e = Reflect.construct(o, arguments, s); } else e = o.apply(this, arguments); return _possibleConstructorReturn(this, e); }; }
7
+ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
8
8
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
9
9
  export var mapFetchErrors = function mapFetchErrors(error) {
10
10
  if (error instanceof Response && !error.ok) {
@@ -31,27 +31,25 @@ export var getStatusCodeGroup = function getStatusCodeGroup(error) {
31
31
  return 'unknown';
32
32
  };
33
33
  export var PermissionError = /*#__PURE__*/function (_Error) {
34
- _inherits(PermissionError, _Error);
35
- var _super = _createSuper(PermissionError);
36
34
  function PermissionError(message) {
37
35
  var _this;
38
36
  _classCallCheck(this, PermissionError);
39
- _this = _super.call(this, message);
37
+ _this = _callSuper(this, PermissionError, [message]);
40
38
  _this.name = 'PermissionError';
41
39
  return _this;
42
40
  }
41
+ _inherits(PermissionError, _Error);
43
42
  return _createClass(PermissionError);
44
43
  }( /*#__PURE__*/_wrapNativeSuper(Error));
45
44
  export var FetchError = /*#__PURE__*/function (_Error2) {
46
- _inherits(FetchError, _Error2);
47
- var _super2 = _createSuper(FetchError);
48
45
  function FetchError(statusCode, message) {
49
46
  var _this2;
50
47
  _classCallCheck(this, FetchError);
51
- _this2 = _super2.call(this, message || "Fetch call failed with status code: ".concat(statusCode));
48
+ _this2 = _callSuper(this, FetchError, [message || "Fetch call failed with status code: ".concat(statusCode)]);
52
49
  _this2.name = 'FetchError';
53
50
  _this2.statusCode = statusCode;
54
51
  return _this2;
55
52
  }
53
+ _inherits(FetchError, _Error2);
56
54
  return _createClass(FetchError);
57
55
  }( /*#__PURE__*/_wrapNativeSuper(Error));
@@ -183,9 +183,7 @@ export var FilterPopupSelect = function FilterPopupSelect(_ref) {
183
183
  Control: CustomControl,
184
184
  MenuList: CustomMenuList,
185
185
  DropdownIndicator: CustomDropdownIndicator,
186
- LoadingIndicator: undefined,
187
- // disables the three ... indicator in the searchbox when picker is loading
188
- IndicatorSeparator: undefined // disables the | separator between search input and icon
186
+ LoadingIndicator: undefined // disables the three ... indicator in the searchbox when picker is loading
189
187
  },
190
188
  options: sortedOptions,
191
189
  value: selectedOptions,
@@ -1,5 +1,4 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- var _styled$th, _styled$td, _styled$td2;
3
2
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
4
3
  import styled from '@emotion/styled';
5
4
  import { N40 } from '@atlaskit/theme/colors';
@@ -26,7 +25,7 @@ export var withTablePluginHeaderPrefix = withTablePluginPrefix.bind(null, 'thead
26
25
  export var withTablePluginBodyPrefix = withTablePluginPrefix.bind(null, 'tbody');
27
26
 
28
27
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
29
- export var TableHeading = styled.th((_styled$th = {}, _defineProperty(_styled$th, "".concat(withTablePluginHeaderPrefix()), {
28
+ export var TableHeading = styled.th(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, "".concat(withTablePluginHeaderPrefix()), {
30
29
  border: 0,
31
30
  position: 'relative',
32
31
  /* This makes resizing work with out jumping due to padding + changes overall width for same default values. */
@@ -45,13 +44,13 @@ export var TableHeading = styled.th((_styled$th = {}, _defineProperty(_styled$th
45
44
  height: "calc(".concat(lineHeight, " * 2 + ").concat(verticalPadding, " * 4 + 2px)"),
46
45
  verticalAlign: 'bottom',
47
46
  backgroundColor: "var(--ds-elevation-surface-current, #FFF)"
48
- }), _defineProperty(_styled$th, "".concat(withTablePluginPrefix('', 'thead.has-column-picker &:nth-last-of-type(2)')), {
47
+ }), "".concat(withTablePluginPrefix('', 'thead.has-column-picker &:nth-last-of-type(2)')), {
49
48
  borderRight: 0
50
- }), _defineProperty(_styled$th, "".concat(withTablePluginHeaderPrefix('&:first-child')), {
49
+ }), "".concat(withTablePluginHeaderPrefix('&:first-child')), {
51
50
  paddingLeft: "var(--ds-space-050, 4px)"
52
- }), _defineProperty(_styled$th, "".concat(withTablePluginHeaderPrefix('&:last-child')), {
51
+ }), "".concat(withTablePluginHeaderPrefix('&:last-child')), {
53
52
  borderRight: 0
54
- }), _defineProperty(_styled$th, "& [data-testid='datasource-header-content--container']", {
53
+ }), "& [data-testid='datasource-header-content--container']", {
55
54
  width: '100%',
56
55
  /* With Button now being a parent for this component it adds its lineHeight value and spoils
57
56
  `height` calculation above. */
@@ -63,10 +62,10 @@ export var TableHeading = styled.th((_styled$th = {}, _defineProperty(_styled$th
63
62
  whiteSpace: 'normal',
64
63
  overflow: 'hidden',
65
64
  wordWrap: 'break-word'
66
- }), _styled$th));
65
+ }));
67
66
 
68
67
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/ui-styling-standard/no-styled -- To migrate as part of go/ui-styling-standard
69
- export var TableCell = styled.td((_styled$td = {}, _defineProperty(_styled$td, "".concat(withTablePluginBodyPrefix()), {
68
+ export var TableCell = styled.td(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, "".concat(withTablePluginBodyPrefix()), {
70
69
  /* First section here is to override things editor table plugin css defines */
71
70
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
72
71
  padding: "var(--ds-space-050, 4px)".concat(" ", "var(--ds-space-100, 8px)"),
@@ -79,17 +78,17 @@ export var TableCell = styled.td((_styled$td = {}, _defineProperty(_styled$td, "
79
78
  borderRight: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(N40, ")")),
80
79
  borderBottom: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(N40, ")")),
81
80
  overflow: 'hidden'
82
- }), _defineProperty(_styled$td, "".concat(withTablePluginBodyPrefix('&:first-child')), {
81
+ }), "".concat(withTablePluginBodyPrefix('&:first-child')), {
83
82
  paddingLeft: "var(--ds-space-100, 8px)"
84
- }), _defineProperty(_styled$td, "".concat(withTablePluginBodyPrefix('&:last-child')), {
83
+ }), "".concat(withTablePluginBodyPrefix('&:last-child')), {
85
84
  borderRight: 0,
86
85
  paddingRight: "var(--ds-space-100, 8px)"
87
- }), _defineProperty(_styled$td, "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
86
+ }), "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
88
87
  whiteSpace: 'unset'
89
- }), _styled$td));
88
+ }));
90
89
 
91
90
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- To migrate as part of go/ui-styling-standard
92
- export var InlineEditableTableCell = styled.td((_styled$td2 = {}, _defineProperty(_styled$td2, "".concat(withTablePluginBodyPrefix()), {
91
+ export var InlineEditableTableCell = styled.td(_defineProperty(_defineProperty(_defineProperty({}, "".concat(withTablePluginBodyPrefix()), {
93
92
  /* First section here is to override things editor table plugin css defines */
94
93
  font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
95
94
  padding: "var(--ds-space-0, 0)".concat(" ", "var(--ds-space-0, 0)"),
@@ -100,8 +99,8 @@ export var InlineEditableTableCell = styled.td((_styled$td2 = {}, _definePropert
100
99
  boxSizing: 'content-box',
101
100
  borderRight: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(N40, ")")),
102
101
  borderBottom: "var(--ds-border-width, 1px)".concat(" solid ", "var(--ds-border, ".concat(N40, ")"))
103
- }), _defineProperty(_styled$td2, "".concat(withTablePluginBodyPrefix('&:last-child')), {
102
+ }), "".concat(withTablePluginBodyPrefix('&:last-child')), {
104
103
  borderRight: 0
105
- }), _defineProperty(_styled$td2, "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
104
+ }), "& [data-testid='inline-card-icon-and-title'], " + "& [data-testid='button-connect-account'] > span", {
106
105
  whiteSpace: 'unset'
107
- }), _styled$td2));
106
+ }));
@@ -1,11 +1,10 @@
1
1
  import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
2
2
  import _createClass from "@babel/runtime/helpers/createClass";
3
- import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
4
- import _inherits from "@babel/runtime/helpers/inherits";
5
3
  import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
6
4
  import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
5
+ import _inherits from "@babel/runtime/helpers/inherits";
7
6
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
8
- function _createSuper(t) { var r = _isNativeReflectConstruct(); return function () { var e, o = _getPrototypeOf(t); if (r) { var s = _getPrototypeOf(this).constructor; e = Reflect.construct(o, arguments, s); } else e = o.apply(this, arguments); return _possibleConstructorReturn(this, e); }; }
7
+ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
9
8
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
10
9
  import mergeWith from 'lodash/mergeWith';
11
10
  import { AbstractJastVisitor, JastBuilder, NODE_TYPE_ORDER_BY, OPERAND_EMPTY, OPERAND_TYPE_KEYWORD, OPERAND_TYPE_LIST, OPERAND_TYPE_VALUE } from '@atlaskit/jql-ast';
@@ -43,13 +42,11 @@ var getFieldValues = function getFieldValues(operand) {
43
42
  * class and implement visitField to walk through each field and value.
44
43
  * */
45
44
  var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
46
- _inherits(JqlClauseCollectingVisitor, _AbstractJastVisitor);
47
- var _super = _createSuper(JqlClauseCollectingVisitor);
48
45
  function JqlClauseCollectingVisitor() {
49
46
  var _this;
50
47
  _classCallCheck(this, JqlClauseCollectingVisitor);
51
- _this = _super.call(this);
52
- _defineProperty(_assertThisInitialized(_this), "visitField", function (field) {
48
+ _this = _callSuper(this, JqlClauseCollectingVisitor);
49
+ _defineProperty(_this, "visitField", function (field) {
53
50
  var _field$value;
54
51
  var fieldName = (_field$value = field.value) === null || _field$value === void 0 ? void 0 : _field$value.toLowerCase();
55
52
  var fieldParent = field.parent;
@@ -68,7 +65,8 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
68
65
  });
69
66
  return _this;
70
67
  }
71
- _createClass(JqlClauseCollectingVisitor, [{
68
+ _inherits(JqlClauseCollectingVisitor, _AbstractJastVisitor);
69
+ return _createClass(JqlClauseCollectingVisitor, [{
72
70
  key: "aggregateResult",
73
71
  value: function aggregateResult(aggregate, nextResult) {
74
72
  return mergeWith(aggregate, nextResult, function (destValue, srcValue) {
@@ -81,7 +79,6 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
81
79
  return {};
82
80
  }
83
81
  }]);
84
- return JqlClauseCollectingVisitor;
85
82
  }(AbstractJastVisitor);
86
83
  export var extractValuesFromNonComplexJQL = function extractValuesFromNonComplexJQL(jql) {
87
84
  if (isQueryTooComplex(jql)) {
@@ -1,13 +1,12 @@
1
1
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
2
- import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
3
2
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
4
3
  import _createClass from "@babel/runtime/helpers/createClass";
5
4
  import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
6
- import _inherits from "@babel/runtime/helpers/inherits";
7
5
  import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
8
6
  import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
7
+ import _inherits from "@babel/runtime/helpers/inherits";
9
8
  import _wrapNativeSuper from "@babel/runtime/helpers/wrapNativeSuper";
10
- function _createSuper(t) { var r = _isNativeReflectConstruct(); return function () { var e, o = _getPrototypeOf(t); if (r) { var s = _getPrototypeOf(this).constructor; e = Reflect.construct(o, arguments, s); } else e = o.apply(this, arguments); return _possibleConstructorReturn(this, e); }; }
9
+ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
11
10
  function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
12
11
  import mergeWith from 'lodash/mergeWith';
13
12
  import { AbstractJastVisitor, COMPOUND_OPERATOR_AND, COMPOUND_OPERATOR_OR, JastBuilder, OPERATOR_EQUALS, OPERATOR_IN, OPERATOR_LIKE } from '@atlaskit/jql-ast';
@@ -33,12 +32,11 @@ var fieldSpecificOperators = {
33
32
  assignee: [OPERATOR_IN, OPERATOR_EQUALS]
34
33
  };
35
34
  var JqlClauseCollectingVisitorError = /*#__PURE__*/function (_Error) {
36
- _inherits(JqlClauseCollectingVisitorError, _Error);
37
- var _super = _createSuper(JqlClauseCollectingVisitorError);
38
35
  function JqlClauseCollectingVisitorError() {
39
36
  _classCallCheck(this, JqlClauseCollectingVisitorError);
40
- return _super.apply(this, arguments);
37
+ return _callSuper(this, JqlClauseCollectingVisitorError, arguments);
41
38
  }
39
+ _inherits(JqlClauseCollectingVisitorError, _Error);
42
40
  return _createClass(JqlClauseCollectingVisitorError);
43
41
  }( /*#__PURE__*/_wrapNativeSuper(Error));
44
42
  /**
@@ -48,16 +46,14 @@ var JqlClauseCollectingVisitorError = /*#__PURE__*/function (_Error) {
48
46
  * more info - https://atlaskit.atlassian.com/packages/jql/jql-ast/docs/traversing-the-ast
49
47
  * */
50
48
  var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
51
- _inherits(JqlClauseCollectingVisitor, _AbstractJastVisitor);
52
- var _super2 = _createSuper(JqlClauseCollectingVisitor);
53
49
  function JqlClauseCollectingVisitor() {
54
50
  var _this;
55
51
  _classCallCheck(this, JqlClauseCollectingVisitor);
56
- _this = _super2.call(this);
57
- _defineProperty(_assertThisInitialized(_this), "visitNotClause", function () {
52
+ _this = _callSuper(this, JqlClauseCollectingVisitor);
53
+ _defineProperty(_this, "visitNotClause", function () {
58
54
  throw new JqlClauseCollectingVisitorError('Visited an unsupported node while traversing the AST');
59
55
  });
60
- _defineProperty(_assertThisInitialized(_this), "visitOrderByField", function (orderByField) {
56
+ _defineProperty(_this, "visitOrderByField", function (orderByField) {
61
57
  var _orderByField$field$v;
62
58
  var fieldValue = (_orderByField$field$v = orderByField.field.value) === null || _orderByField$field$v === void 0 ? void 0 : _orderByField$field$v.toLowerCase();
63
59
  if (fieldValue && !ALLOWED_ORDER_BY_KEYS.includes(fieldValue)) {
@@ -65,12 +61,12 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
65
61
  }
66
62
  return {};
67
63
  });
68
- _defineProperty(_assertThisInitialized(_this), "visitCompoundClause", function (compoundClause) {
64
+ _defineProperty(_this, "visitCompoundClause", function (compoundClause) {
69
65
  var clauseMap = {};
70
66
  var operator = compoundClause.operator.value;
71
67
  if (operator === COMPOUND_OPERATOR_AND) {
72
68
  return compoundClause.clauses.reduce(function (result, clause) {
73
- return _this.aggregateResult(clause.accept(_assertThisInitialized(_this)), result);
69
+ return _this.aggregateResult(clause.accept(_this), result);
74
70
  }, clauseMap);
75
71
  }
76
72
  if (operator === COMPOUND_OPERATOR_OR) {
@@ -81,7 +77,7 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
81
77
  }
82
78
  throw new JqlClauseCollectingVisitorError("Compound clauses using the operator '".concat(operator, "' is not supported"));
83
79
  });
84
- _defineProperty(_assertThisInitialized(_this), "visitTerminalClause", function (terminalClause) {
80
+ _defineProperty(_this, "visitTerminalClause", function (terminalClause) {
85
81
  var _terminalClause$opera;
86
82
  var fieldName = terminalClause.field.value.toLowerCase();
87
83
  if (!allowedFields.includes(fieldName)) {
@@ -96,7 +92,8 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
96
92
  });
97
93
  return _this;
98
94
  }
99
- _createClass(JqlClauseCollectingVisitor, [{
95
+ _inherits(JqlClauseCollectingVisitor, _AbstractJastVisitor);
96
+ return _createClass(JqlClauseCollectingVisitor, [{
100
97
  key: "aggregateResult",
101
98
  value: function aggregateResult(aggregate, nextResult) {
102
99
  return mergeWith(aggregate, nextResult, function (destValue, srcValue) {
@@ -109,7 +106,6 @@ var JqlClauseCollectingVisitor = /*#__PURE__*/function (_AbstractJastVisitor) {
109
106
  return {};
110
107
  }
111
108
  }]);
112
- return JqlClauseCollectingVisitor;
113
109
  }(AbstractJastVisitor);
114
110
  export var isQueryTooComplex = function isQueryTooComplex(jql) {
115
111
  if (!jql) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/link-datasource",
3
- "version": "3.15.1",
3
+ "version": "3.15.3",
4
4
  "description": "UI Components to support linking platform dataset feature",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -51,7 +51,7 @@
51
51
  "@atlaskit/icon": "^23.1.0",
52
52
  "@atlaskit/icon-object": "^6.9.0",
53
53
  "@atlaskit/image": "^1.3.0",
54
- "@atlaskit/inline-edit": "^13.7.0",
54
+ "@atlaskit/inline-edit": "^14.0.0",
55
55
  "@atlaskit/intl-messages-provider": "^1.0.0",
56
56
  "@atlaskit/jql-ast": "^3.3.0",
57
57
  "@atlaskit/jql-editor": "^4.12.0",
@@ -71,8 +71,8 @@
71
71
  "@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": "^1.2.0",
72
72
  "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.1.0",
73
73
  "@atlaskit/primitives": "^13.3.0",
74
- "@atlaskit/react-select": "^1.5.0",
75
- "@atlaskit/select": "^18.8.0",
74
+ "@atlaskit/react-select": "^1.6.0",
75
+ "@atlaskit/select": "^18.9.0",
76
76
  "@atlaskit/smart-card": "^32.7.0",
77
77
  "@atlaskit/smart-user-picker": "6.11.2",
78
78
  "@atlaskit/spinner": "^16.3.0",