@atlaskit/link-datasource 4.30.6 → 4.30.8
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
|
+
## 4.30.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e3779b75fdeca`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e3779b75fdeca) -
|
|
8
|
+
EDITOR-1643 Promote syncBlock and bodiedSyncBlock to full schema
|
|
9
|
+
|
|
10
|
+
## 4.30.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`7ae944d7f3cd6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ae944d7f3cd6) -
|
|
15
|
+
NAVX-2825 Fixing no-literal-string-in-jsx violations in linking platform
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 4.30.6
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -6,8 +6,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.JiraJQLEditor = void 0;
|
|
8
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _reactIntlNext = require("react-intl-next");
|
|
9
10
|
var _jqlEditor = require("@atlaskit/jql-editor");
|
|
10
11
|
var _jqlEditorAutocompleteRest = require("@atlaskit/jql-editor-autocomplete-rest");
|
|
12
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
11
13
|
var _makeGetJqlAutocompleteData = require("../../../services/makeGetJqlAutocompleteData");
|
|
12
14
|
var _makeGetJqlSuggestionsData = require("../../../services/makeGetJqlSuggestionsData");
|
|
13
15
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
@@ -41,9 +43,9 @@ var JiraJQLEditor = exports.JiraJQLEditor = function JiraJQLEditor(_ref) {
|
|
|
41
43
|
onUpdate: onChange,
|
|
42
44
|
isSearching: isSearching,
|
|
43
45
|
inputRef: inputRef,
|
|
44
|
-
query: query
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
query: query,
|
|
47
|
+
"aria-label": (0, _platformFeatureFlags.fg)('navx-2825-eslint-translation-fix-linking-platform') ? /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, {
|
|
48
|
+
defaultMessage: "JQL Query Editor"
|
|
49
|
+
}) : 'JQL Query Editor'
|
|
48
50
|
});
|
|
49
51
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import React, { useEffect, useRef } from 'react';
|
|
2
|
+
import { FormattedMessage } from 'react-intl-next';
|
|
2
3
|
import { JQLEditor } from '@atlaskit/jql-editor';
|
|
3
4
|
import { useAutocompleteProvider } from '@atlaskit/jql-editor-autocomplete-rest';
|
|
5
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
4
6
|
import { makeGetJqlAutocompleteData } from '../../../services/makeGetJqlAutocompleteData';
|
|
5
7
|
import { makeGetJqlSuggestionsData } from '../../../services/makeGetJqlSuggestionsData';
|
|
6
8
|
export const JiraJQLEditor = ({
|
|
@@ -34,9 +36,9 @@ export const JiraJQLEditor = ({
|
|
|
34
36
|
onUpdate: onChange,
|
|
35
37
|
isSearching: isSearching,
|
|
36
38
|
inputRef: inputRef,
|
|
37
|
-
query: query
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
query: query,
|
|
40
|
+
"aria-label": fg('navx-2825-eslint-translation-fix-linking-platform') ? /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
41
|
+
defaultMessage: "JQL Query Editor"
|
|
42
|
+
}) : 'JQL Query Editor'
|
|
41
43
|
});
|
|
42
44
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import React, { useEffect, useRef } from 'react';
|
|
2
|
+
import { FormattedMessage } from 'react-intl-next';
|
|
2
3
|
import { JQLEditor } from '@atlaskit/jql-editor';
|
|
3
4
|
import { useAutocompleteProvider } from '@atlaskit/jql-editor-autocomplete-rest';
|
|
5
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
4
6
|
import { makeGetJqlAutocompleteData } from '../../../services/makeGetJqlAutocompleteData';
|
|
5
7
|
import { makeGetJqlSuggestionsData } from '../../../services/makeGetJqlSuggestionsData';
|
|
6
8
|
export var JiraJQLEditor = function JiraJQLEditor(_ref) {
|
|
@@ -33,9 +35,9 @@ export var JiraJQLEditor = function JiraJQLEditor(_ref) {
|
|
|
33
35
|
onUpdate: onChange,
|
|
34
36
|
isSearching: isSearching,
|
|
35
37
|
inputRef: inputRef,
|
|
36
|
-
query: query
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
query: query,
|
|
39
|
+
"aria-label": fg('navx-2825-eslint-translation-fix-linking-platform') ? /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
40
|
+
defaultMessage: "JQL Query Editor"
|
|
41
|
+
}) : 'JQL Query Editor'
|
|
40
42
|
});
|
|
41
43
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-datasource",
|
|
3
|
-
"version": "4.30.
|
|
3
|
+
"version": "4.30.8",
|
|
4
4
|
"description": "UI Components to support linking platform dataset feature",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"ak-postbuild": "ls -d dist/* | xargs -n 1 copyfiles -u 1 -V src/**/*.{svg,png}"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@atlaskit/adf-schema": "^51.
|
|
39
|
+
"@atlaskit/adf-schema": "^51.5.1",
|
|
40
40
|
"@atlaskit/afm-i18n-platform-linking-platform-link-datasource": "2.7.0",
|
|
41
41
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
42
42
|
"@atlaskit/atlassian-context": "^0.6.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@atlaskit/primitives": "^16.4.0",
|
|
80
80
|
"@atlaskit/react-select": "^3.9.0",
|
|
81
81
|
"@atlaskit/select": "^21.4.0",
|
|
82
|
-
"@atlaskit/smart-card": "^43.
|
|
82
|
+
"@atlaskit/smart-card": "^43.12.0",
|
|
83
83
|
"@atlaskit/smart-user-picker": "^8.4.0",
|
|
84
84
|
"@atlaskit/spinner": "^19.0.0",
|
|
85
85
|
"@atlaskit/tag": "^14.1.0",
|
|
@@ -187,6 +187,9 @@
|
|
|
187
187
|
},
|
|
188
188
|
"jpd_confluence_date_fields_improvements": {
|
|
189
189
|
"type": "boolean"
|
|
190
|
+
},
|
|
191
|
+
"navx-2825-eslint-translation-fix-linking-platform": {
|
|
192
|
+
"type": "boolean"
|
|
190
193
|
}
|
|
191
194
|
},
|
|
192
195
|
"compassUnitTestMetricSourceId": "ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:metric-source/c5751cc6-3513-4070-9deb-af31e86aed34/9c893299-a527-4457-9b46-f3bc4c828766"
|