@atlaskit/jql-editor 5.10.0 → 5.10.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 +8 -0
- package/dist/cjs/plugins/autocomplete/components/autocomplete-option/index.js +2 -2
- package/dist/cjs/ui/jql-editor-controls-content/base-search/index.js +3 -3
- package/dist/es2019/plugins/autocomplete/components/autocomplete-option/index.js +1 -1
- package/dist/es2019/ui/jql-editor-controls-content/base-search/index.js +1 -1
- package/dist/esm/plugins/autocomplete/components/autocomplete-option/index.js +1 -1
- package/dist/esm/ui/jql-editor-controls-content/base-search/index.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/jql-editor
|
|
2
2
|
|
|
3
|
+
## 5.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6a82d7964a37b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a82d7964a37b) -
|
|
8
|
+
Icon entrypoint migration
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 5.10.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -17,8 +17,8 @@ var _calendar = _interopRequireDefault(require("@atlaskit/icon/core/calendar"));
|
|
|
17
17
|
var _clock = _interopRequireDefault(require("@atlaskit/icon/core/clock"));
|
|
18
18
|
var _dataNumber = _interopRequireDefault(require("@atlaskit/icon/core/data-number"));
|
|
19
19
|
var _fieldDropdown = _interopRequireDefault(require("@atlaskit/icon/core/field-dropdown"));
|
|
20
|
-
var _statusInformationEditorPanel = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-information--editor-panel"));
|
|
21
20
|
var _personAvatar = _interopRequireDefault(require("@atlaskit/icon/core/person-avatar"));
|
|
21
|
+
var _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
|
|
22
22
|
var _tag = _interopRequireDefault(require("@atlaskit/icon/core/tag"));
|
|
23
23
|
var _task = _interopRequireDefault(require("@atlaskit/icon/core/task"));
|
|
24
24
|
var _text = _interopRequireDefault(require("@atlaskit/icon/core/text"));
|
|
@@ -163,7 +163,7 @@ var AutocompleteOption = /*#__PURE__*/(0, _react.forwardRef)(function (props, re
|
|
|
163
163
|
}), isDeprecated ? /*#__PURE__*/_react.default.createElement(_styled.DeprecatedOptionContainer, null, optionName, /*#__PURE__*/_react.default.createElement(_tooltip.default, {
|
|
164
164
|
content: deprecatedTooltipContent,
|
|
165
165
|
position: 'right'
|
|
166
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
166
|
+
}, /*#__PURE__*/_react.default.createElement(_statusInformation.default, {
|
|
167
167
|
spacing: "spacious",
|
|
168
168
|
testId: "jql-editor-deprecated-icon",
|
|
169
169
|
label: "",
|
|
@@ -10,7 +10,7 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
var _button = require("@atlaskit/button");
|
|
12
12
|
var _new = require("@atlaskit/button/new");
|
|
13
|
-
var
|
|
13
|
+
var _search = _interopRequireDefault(require("@atlaskit/icon/core/search"));
|
|
14
14
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
15
|
var _primitives = require("@atlaskit/primitives");
|
|
16
16
|
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); }
|
|
@@ -52,7 +52,7 @@ var BaseSearch = exports.BaseSearch = function BaseSearch(_ref) {
|
|
|
52
52
|
onClick: onSearch,
|
|
53
53
|
onKeyDown: preventRepeatClick,
|
|
54
54
|
isLoading: isSearching,
|
|
55
|
-
icon:
|
|
55
|
+
icon: _search.default
|
|
56
56
|
}, (0, _platformFeatureFlags.fg)('add_nin_press_interactions') && {
|
|
57
57
|
interactionName: 'jql-editor-base-search-button'
|
|
58
58
|
})))) : /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_button.LoadingButton, (0, _extends2.default)({
|
|
@@ -69,7 +69,7 @@ var BaseSearch = exports.BaseSearch = function BaseSearch(_ref) {
|
|
|
69
69
|
isLoading: isSearching,
|
|
70
70
|
iconBefore: /*#__PURE__*/_react.default.createElement(_primitives.Box, {
|
|
71
71
|
xcss: iconStyle
|
|
72
|
-
}, /*#__PURE__*/_react.default.createElement(
|
|
72
|
+
}, /*#__PURE__*/_react.default.createElement(_search.default, {
|
|
73
73
|
color: "currentColor",
|
|
74
74
|
label: '',
|
|
75
75
|
LEGACY_size: 'medium',
|
|
@@ -7,8 +7,8 @@ import CalendarIcon from '@atlaskit/icon/core/calendar';
|
|
|
7
7
|
import ClockIcon from '@atlaskit/icon/core/clock';
|
|
8
8
|
import DataNumberIcon from '@atlaskit/icon/core/data-number';
|
|
9
9
|
import FieldDropdownIcon from '@atlaskit/icon/core/field-dropdown';
|
|
10
|
-
import InfoIcon from '@atlaskit/icon/core/migration/status-information--editor-panel';
|
|
11
10
|
import PersonAvatarIcon from '@atlaskit/icon/core/person-avatar';
|
|
11
|
+
import InfoIcon from '@atlaskit/icon/core/status-information';
|
|
12
12
|
import TagIcon from '@atlaskit/icon/core/tag';
|
|
13
13
|
import CheckboxIcon from '@atlaskit/icon/core/task';
|
|
14
14
|
import TextIcon from '@atlaskit/icon/core/text';
|
|
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React, { useCallback } from 'react';
|
|
3
3
|
import { LoadingButton } from '@atlaskit/button';
|
|
4
4
|
import { IconButton } from '@atlaskit/button/new';
|
|
5
|
-
import SearchIcon from '@atlaskit/icon/core/
|
|
5
|
+
import SearchIcon from '@atlaskit/icon/core/search';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
7
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
8
8
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
@@ -9,8 +9,8 @@ import CalendarIcon from '@atlaskit/icon/core/calendar';
|
|
|
9
9
|
import ClockIcon from '@atlaskit/icon/core/clock';
|
|
10
10
|
import DataNumberIcon from '@atlaskit/icon/core/data-number';
|
|
11
11
|
import FieldDropdownIcon from '@atlaskit/icon/core/field-dropdown';
|
|
12
|
-
import InfoIcon from '@atlaskit/icon/core/migration/status-information--editor-panel';
|
|
13
12
|
import PersonAvatarIcon from '@atlaskit/icon/core/person-avatar';
|
|
13
|
+
import InfoIcon from '@atlaskit/icon/core/status-information';
|
|
14
14
|
import TagIcon from '@atlaskit/icon/core/tag';
|
|
15
15
|
import CheckboxIcon from '@atlaskit/icon/core/task';
|
|
16
16
|
import TextIcon from '@atlaskit/icon/core/text';
|
|
@@ -2,7 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import React, { useCallback } from 'react';
|
|
3
3
|
import { LoadingButton } from '@atlaskit/button';
|
|
4
4
|
import { IconButton } from '@atlaskit/button/new';
|
|
5
|
-
import SearchIcon from '@atlaskit/icon/core/
|
|
5
|
+
import SearchIcon from '@atlaskit/icon/core/search';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
7
|
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
8
8
|
import { Box, xcss } from '@atlaskit/primitives';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/jql-editor",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.1",
|
|
4
4
|
"description": "This package allows consumers to render an advanced JQL editor component to enable autocomplete-assisted authoring and validation of JQL queries.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
37
37
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
38
38
|
"@atlaskit/avatar": "^25.6.0",
|
|
39
|
-
"@atlaskit/button": "^23.
|
|
39
|
+
"@atlaskit/button": "^23.9.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "^7.2.0",
|
|
41
|
-
"@atlaskit/form": "^15.
|
|
42
|
-
"@atlaskit/icon": "^29.
|
|
41
|
+
"@atlaskit/form": "^15.1.0",
|
|
42
|
+
"@atlaskit/icon": "^29.3.0",
|
|
43
43
|
"@atlaskit/jql-ast": "^3.3.0",
|
|
44
44
|
"@atlaskit/jql-autocomplete": "^2.0.0",
|
|
45
45
|
"@atlaskit/jql-editor-common": "^3.0.0",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"@atlaskit/link": "^3.2.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
49
49
|
"@atlaskit/popper": "^7.1.0",
|
|
50
|
-
"@atlaskit/primitives": "^
|
|
50
|
+
"@atlaskit/primitives": "^17.0.0",
|
|
51
51
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
52
52
|
"@atlaskit/spinner": "^19.0.0",
|
|
53
53
|
"@atlaskit/teams-avatar": "^2.4.0",
|
|
54
54
|
"@atlaskit/theme": "^21.0.0",
|
|
55
|
-
"@atlaskit/tokens": "^
|
|
55
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
56
56
|
"@atlaskit/tooltip": "^20.11.0",
|
|
57
57
|
"@babel/runtime": "^7.0.0",
|
|
58
58
|
"@emotion/react": "^11.7.1",
|