@atlaskit/jql-editor 6.2.3 → 6.3.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 +11 -0
- package/dist/cjs/analytics/util.js +1 -1
- package/dist/cjs/plugins/rich-inline-nodes/nodes/goal/goal-node.js +1 -1
- package/dist/es2019/analytics/util.js +1 -1
- package/dist/es2019/plugins/rich-inline-nodes/nodes/goal/goal-node.js +1 -1
- package/dist/esm/analytics/util.js +1 -1
- package/dist/esm/plugins/rich-inline-nodes/nodes/goal/goal-node.js +1 -1
- package/dist/types/ui/jql-editor/types.d.ts +1 -0
- package/dist/types-ts4.5/ui/jql-editor/types.d.ts +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/jql-editor
|
|
2
2
|
|
|
3
|
+
## 6.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`9b70306018878`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9b70306018878) -
|
|
8
|
+
[ux] Include icon key in Goal node
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 6.2.3
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -6,5 +6,5 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.useJqlEditorAnalytics = void 0;
|
|
7
7
|
var _jqlEditorCommon = require("@atlaskit/jql-editor-common");
|
|
8
8
|
var useJqlEditorAnalytics = exports.useJqlEditorAnalytics = function useJqlEditorAnalytics(analyticsSource) {
|
|
9
|
-
return (0, _jqlEditorCommon.useJqlPackageAnalytics)(analyticsSource, "@atlaskit/jql-editor", "
|
|
9
|
+
return (0, _jqlEditorCommon.useJqlPackageAnalytics)(analyticsSource, "@atlaskit/jql-editor", "6.2.3", _jqlEditorCommon.ANALYTICS_CHANNEL);
|
|
10
10
|
};
|
|
@@ -48,7 +48,7 @@ var GoalNode = exports.GoalNode = function GoalNode(props) {
|
|
|
48
48
|
}, /*#__PURE__*/_react.default.createElement(_goalIcon.GoalIcon, {
|
|
49
49
|
size: "16",
|
|
50
50
|
status: (_goal$status = goal === null || goal === void 0 ? void 0 : goal.status) !== null && _goal$status !== void 0 ? _goal$status : 'DEFAULT',
|
|
51
|
-
iconKey: toGoalIconKey(
|
|
51
|
+
iconKey: toGoalIconKey(goal === null || goal === void 0 ? void 0 : goal.iconKey)
|
|
52
52
|
})),
|
|
53
53
|
text: name,
|
|
54
54
|
isRichNodeDisplay: true
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ANALYTICS_CHANNEL, useJqlPackageAnalytics } from '@atlaskit/jql-editor-common';
|
|
2
2
|
export const useJqlEditorAnalytics = analyticsSource => {
|
|
3
|
-
return useJqlPackageAnalytics(analyticsSource, "@atlaskit/jql-editor", "
|
|
3
|
+
return useJqlPackageAnalytics(analyticsSource, "@atlaskit/jql-editor", "6.2.3", ANALYTICS_CHANNEL);
|
|
4
4
|
};
|
|
@@ -38,7 +38,7 @@ export const GoalNode = props => {
|
|
|
38
38
|
}, /*#__PURE__*/React.createElement(GoalIcon, {
|
|
39
39
|
size: "16",
|
|
40
40
|
status: (_goal$status = goal === null || goal === void 0 ? void 0 : goal.status) !== null && _goal$status !== void 0 ? _goal$status : 'DEFAULT',
|
|
41
|
-
iconKey: toGoalIconKey(
|
|
41
|
+
iconKey: toGoalIconKey(goal === null || goal === void 0 ? void 0 : goal.iconKey)
|
|
42
42
|
})),
|
|
43
43
|
text: name,
|
|
44
44
|
isRichNodeDisplay: true
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ANALYTICS_CHANNEL, useJqlPackageAnalytics } from '@atlaskit/jql-editor-common';
|
|
2
2
|
export var useJqlEditorAnalytics = function useJqlEditorAnalytics(analyticsSource) {
|
|
3
|
-
return useJqlPackageAnalytics(analyticsSource, "@atlaskit/jql-editor", "
|
|
3
|
+
return useJqlPackageAnalytics(analyticsSource, "@atlaskit/jql-editor", "6.2.3", ANALYTICS_CHANNEL);
|
|
4
4
|
};
|
|
@@ -41,7 +41,7 @@ export var GoalNode = function GoalNode(props) {
|
|
|
41
41
|
}, /*#__PURE__*/React.createElement(GoalIcon, {
|
|
42
42
|
size: "16",
|
|
43
43
|
status: (_goal$status = goal === null || goal === void 0 ? void 0 : goal.status) !== null && _goal$status !== void 0 ? _goal$status : 'DEFAULT',
|
|
44
|
-
iconKey: toGoalIconKey(
|
|
44
|
+
iconKey: toGoalIconKey(goal === null || goal === void 0 ? void 0 : goal.iconKey)
|
|
45
45
|
})),
|
|
46
46
|
text: name,
|
|
47
47
|
isRichNodeDisplay: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/jql-editor",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
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",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@atlaskit/emoji": "^70.3.0",
|
|
50
50
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
51
51
|
"@atlaskit/form": "^15.5.0",
|
|
52
|
-
"@atlaskit/icon": "^34.
|
|
53
|
-
"@atlaskit/icon-lab": "^6.
|
|
52
|
+
"@atlaskit/icon": "^34.4.0",
|
|
53
|
+
"@atlaskit/icon-lab": "^6.7.0",
|
|
54
54
|
"@atlaskit/jql-ast": "^3.4.0",
|
|
55
55
|
"@atlaskit/jql-autocomplete": "^2.0.0",
|
|
56
56
|
"@atlaskit/jql-editor-common": "^3.2.0",
|