@atlaskit/jql-editor 6.3.1 → 6.4.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.
Files changed (94) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/analytics/package.json +17 -0
  3. package/async/package.json +17 -0
  4. package/components/types/package.json +17 -0
  5. package/dist/cjs/analytics/util.js +1 -1
  6. package/dist/cjs/async.js +3 -6
  7. package/dist/cjs/entry-points/analytics.js +24 -0
  8. package/dist/cjs/entry-points/async.js +18 -0
  9. package/dist/cjs/entry-points/components-types.js +1 -0
  10. package/dist/cjs/entry-points/jql-editor-analytics-listener.js +13 -0
  11. package/dist/cjs/entry-points/jql-editor-layout.js +12 -0
  12. package/dist/cjs/entry-points/src-types.js +1 -0
  13. package/dist/cjs/entry-points/state-types.js +1 -0
  14. package/dist/cjs/entry-points/types.js +1 -0
  15. package/dist/cjs/entry-points/ui-types.js +1 -0
  16. package/dist/cjs/entry-points/ui.js +13 -0
  17. package/dist/cjs/hooks/use-editor-theme/index.js +4 -9
  18. package/dist/cjs/plugins/autocomplete/view.js +2 -3
  19. package/dist/cjs/plugins/rich-inline-nodes/nodes/goal/goal-icon.js +16 -0
  20. package/dist/cjs/plugins/rich-inline-nodes/nodes/goal/goal-node.js +1 -1
  21. package/dist/cjs/plugins/rich-inline-nodes/util/replace-nodes-transaction.js +1 -1
  22. package/dist/cjs/state/hydration/index.js +2 -2
  23. package/dist/cjs/state/index.js +5 -5
  24. package/dist/cjs/ui/jql-editor-layout/index.js +3 -5
  25. package/dist/cjs/ui/jql-editor-layout/styled.js +2 -3
  26. package/dist/es2019/analytics/util.js +1 -1
  27. package/dist/es2019/async.js +3 -6
  28. package/dist/es2019/entry-points/analytics.js +1 -0
  29. package/dist/es2019/entry-points/async.js +1 -0
  30. package/dist/es2019/entry-points/components-types.js +0 -0
  31. package/dist/es2019/entry-points/jql-editor-analytics-listener.js +1 -0
  32. package/dist/es2019/entry-points/jql-editor-layout.js +1 -0
  33. package/dist/es2019/entry-points/src-types.js +0 -0
  34. package/dist/es2019/entry-points/state-types.js +0 -0
  35. package/dist/es2019/entry-points/types.js +0 -0
  36. package/dist/es2019/entry-points/ui-types.js +0 -0
  37. package/dist/es2019/entry-points/ui.js +1 -0
  38. package/dist/es2019/hooks/use-editor-theme/index.js +2 -5
  39. package/dist/es2019/plugins/autocomplete/view.js +2 -3
  40. package/dist/es2019/plugins/rich-inline-nodes/nodes/goal/goal-icon.js +16 -0
  41. package/dist/es2019/plugins/rich-inline-nodes/nodes/goal/goal-node.js +1 -1
  42. package/dist/es2019/plugins/rich-inline-nodes/util/replace-nodes-transaction.js +1 -1
  43. package/dist/es2019/state/hydration/index.js +2 -2
  44. package/dist/es2019/state/index.js +5 -5
  45. package/dist/es2019/ui/jql-editor-layout/index.js +4 -6
  46. package/dist/es2019/ui/jql-editor-layout/styled.js +2 -3
  47. package/dist/esm/analytics/util.js +1 -1
  48. package/dist/esm/async.js +3 -6
  49. package/dist/esm/entry-points/analytics.js +1 -0
  50. package/dist/esm/entry-points/async.js +1 -0
  51. package/dist/esm/entry-points/components-types.js +0 -0
  52. package/dist/esm/entry-points/jql-editor-analytics-listener.js +1 -0
  53. package/dist/esm/entry-points/jql-editor-layout.js +1 -0
  54. package/dist/esm/entry-points/src-types.js +0 -0
  55. package/dist/esm/entry-points/state-types.js +0 -0
  56. package/dist/esm/entry-points/types.js +0 -0
  57. package/dist/esm/entry-points/ui-types.js +0 -0
  58. package/dist/esm/entry-points/ui.js +1 -0
  59. package/dist/esm/hooks/use-editor-theme/index.js +4 -9
  60. package/dist/esm/plugins/autocomplete/view.js +2 -3
  61. package/dist/esm/plugins/rich-inline-nodes/nodes/goal/goal-icon.js +16 -0
  62. package/dist/esm/plugins/rich-inline-nodes/nodes/goal/goal-node.js +1 -1
  63. package/dist/esm/plugins/rich-inline-nodes/util/replace-nodes-transaction.js +1 -1
  64. package/dist/esm/state/hydration/index.js +2 -2
  65. package/dist/esm/state/index.js +5 -5
  66. package/dist/esm/ui/jql-editor-layout/index.js +3 -5
  67. package/dist/esm/ui/jql-editor-layout/styled.js +2 -3
  68. package/dist/types/entry-points/analytics.d.ts +2 -0
  69. package/dist/types/entry-points/async.d.ts +1 -0
  70. package/dist/types/entry-points/components-types.d.ts +1 -0
  71. package/dist/types/entry-points/jql-editor-analytics-listener.d.ts +2 -0
  72. package/dist/types/entry-points/jql-editor-layout.d.ts +1 -0
  73. package/dist/types/entry-points/src-types.d.ts +1 -0
  74. package/dist/types/entry-points/state-types.d.ts +1 -0
  75. package/dist/types/entry-points/types.d.ts +1 -0
  76. package/dist/types/entry-points/ui-types.d.ts +1 -0
  77. package/dist/types/entry-points/ui.d.ts +1 -0
  78. package/dist/types-ts4.5/entry-points/analytics.d.ts +2 -0
  79. package/dist/types-ts4.5/entry-points/async.d.ts +1 -0
  80. package/dist/types-ts4.5/entry-points/components-types.d.ts +1 -0
  81. package/dist/types-ts4.5/entry-points/jql-editor-analytics-listener.d.ts +2 -0
  82. package/dist/types-ts4.5/entry-points/jql-editor-layout.d.ts +1 -0
  83. package/dist/types-ts4.5/entry-points/src-types.d.ts +1 -0
  84. package/dist/types-ts4.5/entry-points/state-types.d.ts +1 -0
  85. package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
  86. package/dist/types-ts4.5/entry-points/ui-types.d.ts +1 -0
  87. package/dist/types-ts4.5/entry-points/ui.d.ts +1 -0
  88. package/jql-editor-analytics-listener/package.json +17 -0
  89. package/jql-editor-layout/package.json +17 -0
  90. package/package.json +11 -17
  91. package/state/types/package.json +17 -0
  92. package/types/package.json +17 -0
  93. package/ui/package.json +17 -0
  94. package/ui/types/package.json +17 -0
@@ -13,7 +13,7 @@ export const replaceRichInlineNodes = (editorState, hydratedValues) => {
13
13
  transaction.setMeta('addToHistory', false);
14
14
  Object.entries(hydratedValues).forEach(([fieldName, values]) => {
15
15
  values.forEach(value => {
16
- if (value.type === 'user' || value.type === 'team' || value.type === 'goal' && FeatureGates.getExperimentValue('anip-1095-goals-in-harmonised-filter', 'isEnabled', false) || value.type === 'project' && fg('projects_in_jira_eap_drop2')) {
16
+ if (value.type === 'user' || value.type === 'team' || value.type === 'goal' && FeatureGates.getExperimentValue('anip-1095-goals-in-harmonised-filter', 'isEnabled', false) || value.type === 'project' && FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1) {
17
17
  // First try to find as direct value operand (e.g., Team[Team] = uuid)
18
18
  let astNodes = getValueNodes(ast, fieldName, value.id);
19
19
 
@@ -1,4 +1,4 @@
1
- import { fg } from '@atlaskit/platform-feature-flags';
1
+ import FeatureGates from '@atlaskit/feature-gate-js-client';
2
2
  import { getJastFromState } from '../../plugins/jql-ast';
3
3
  import { replaceRichInlineNodes } from '../../plugins/rich-inline-nodes/util/replace-nodes-transaction';
4
4
  import { actions } from '../index';
@@ -40,7 +40,7 @@ export const hydrateQuery = () => async ({
40
40
  // (e.g. '"project[atlassianproject]"'). normaliseHydrationKey ensures both storage and lookup use
41
41
  // the same key format. See normaliseHydrationKey in ./util.ts.
42
42
  const hydratedValuesMap = Object.entries(newHydratedValues).reduce((map, [fieldName, values]) => {
43
- const fieldNameToUse = fg('projects_in_jira_eap_drop2') ? normaliseHydrationKey(fieldName) : fieldName;
43
+ const fieldNameToUse = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? normaliseHydrationKey(fieldName) : fieldName;
44
44
  const valueMap = new Map(oldHydratedValues[fieldNameToUse]);
45
45
  values.forEach(value => {
46
46
  valueMap.set(value.id, value);
@@ -7,9 +7,9 @@ import { tap } from 'rxjs/operators/tap';
7
7
  // eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
8
8
  import { v4 as uuidv4 } from 'uuid';
9
9
  import { EditorView } from '@atlaskit/editor-prosemirror/view';
10
+ import FeatureGates from '@atlaskit/feature-gate-js-client';
10
11
  import { computeJqlInsights, isListOperator, normaliseJqlString } from '@atlaskit/jql-ast';
11
12
  import { JQLAutocomplete } from '@atlaskit/jql-autocomplete';
12
- import { fg } from '@atlaskit/platform-feature-flags';
13
13
  import { ActionSubject, ActionSubjectId, Action as AnalyticsAction, EventType } from '../analytics';
14
14
  import { selectErrorCommand } from '../commands/select-error-command';
15
15
  import { JQL_EDITOR_MAIN_ID } from '../common/constants';
@@ -880,7 +880,7 @@ export const useHydratedValue = createHook(Store, {
880
880
  fieldName
881
881
  }) => {
882
882
  var _state$hydratedValues2;
883
- if (fg('projects_in_jira_eap_drop2')) {
883
+ if (FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1) {
884
884
  var _state$hydratedValues;
885
885
  return (_state$hydratedValues = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues === void 0 ? void 0 : _state$hydratedValues.get(normaliseJqlString(id));
886
886
  }
@@ -893,7 +893,7 @@ export const useHydratedUser = createHook(Store, {
893
893
  fieldName
894
894
  }) => {
895
895
  var _state$hydratedValues3, _state$hydratedValues4;
896
- const user = fg('projects_in_jira_eap_drop2') ? (_state$hydratedValues3 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues3 === void 0 ? void 0 : _state$hydratedValues3.get(normaliseJqlString(id)) : (_state$hydratedValues4 = state.hydratedValues[fieldName]) === null || _state$hydratedValues4 === void 0 ? void 0 : _state$hydratedValues4.get(id);
896
+ const user = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? (_state$hydratedValues3 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues3 === void 0 ? void 0 : _state$hydratedValues3.get(normaliseJqlString(id)) : (_state$hydratedValues4 = state.hydratedValues[fieldName]) === null || _state$hydratedValues4 === void 0 ? void 0 : _state$hydratedValues4.get(id);
897
897
  return user && user.type === 'user' ? user : undefined;
898
898
  }
899
899
  });
@@ -903,7 +903,7 @@ export const useHydratedTeam = createHook(Store, {
903
903
  fieldName
904
904
  }) => {
905
905
  var _state$hydratedValues5, _state$hydratedValues6;
906
- const team = fg('projects_in_jira_eap_drop2') ? (_state$hydratedValues5 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues5 === void 0 ? void 0 : _state$hydratedValues5.get(normaliseJqlString(id)) : (_state$hydratedValues6 = state.hydratedValues[fieldName]) === null || _state$hydratedValues6 === void 0 ? void 0 : _state$hydratedValues6.get(id);
906
+ const team = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? (_state$hydratedValues5 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues5 === void 0 ? void 0 : _state$hydratedValues5.get(normaliseJqlString(id)) : (_state$hydratedValues6 = state.hydratedValues[fieldName]) === null || _state$hydratedValues6 === void 0 ? void 0 : _state$hydratedValues6.get(id);
907
907
  return team && team.type === 'team' ? team : undefined;
908
908
  }
909
909
  });
@@ -913,7 +913,7 @@ export const useHydratedProject = createHook(Store, {
913
913
  fieldName
914
914
  }) => {
915
915
  var _state$hydratedValues7, _state$hydratedValues8;
916
- const project = fg('projects_in_jira_eap_drop2') ? (_state$hydratedValues7 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues7 === void 0 ? void 0 : _state$hydratedValues7.get(normaliseJqlString(id)) : (_state$hydratedValues8 = state.hydratedValues[normaliseJqlString(fieldName)]) === null || _state$hydratedValues8 === void 0 ? void 0 : _state$hydratedValues8.get(normaliseJqlString(id));
916
+ const project = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? (_state$hydratedValues7 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues7 === void 0 ? void 0 : _state$hydratedValues7.get(normaliseJqlString(id)) : (_state$hydratedValues8 = state.hydratedValues[normaliseJqlString(fieldName)]) === null || _state$hydratedValues8 === void 0 ? void 0 : _state$hydratedValues8.get(normaliseJqlString(id));
917
917
  return project && project.type === 'project' ? project : undefined;
918
918
  }
919
919
  });
@@ -1,4 +1,3 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
1
  import React from 'react';
3
2
  import { useIntl } from 'react-intl';
4
3
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -44,7 +43,7 @@ const JQLEditorLayout = props => {
44
43
  onScroll: onEditorViewContainerScroll
45
44
  }, /*#__PURE__*/React.createElement(LineNumberToolbar, {
46
45
  lineNumbersVisible: lineNumbersVisible
47
- }), /*#__PURE__*/React.createElement(EditorView, _extends({
46
+ }), /*#__PURE__*/React.createElement(EditorView, {
48
47
  defaultMaxRows: defaultMaxRows,
49
48
  expandedRows: expandedRows,
50
49
  isCompact: isCompact,
@@ -52,10 +51,9 @@ const JQLEditorLayout = props => {
52
51
  ref: onEditorViewRef,
53
52
  onBlur: onEditorViewBlur,
54
53
  onFocus: onEditorViewFocus,
55
- onTransitionEnd: onEditorViewTransitionEnd
56
- }, fg('list_lovability_improving_filters') ? {
57
- defaultRows
58
- } : {})), /*#__PURE__*/React.createElement(EditorControls, {
54
+ onTransitionEnd: onEditorViewTransitionEnd,
55
+ defaultRows: defaultRows
56
+ }), /*#__PURE__*/React.createElement(EditorControls, {
59
57
  isSearch: isSearch,
60
58
  isCompact: isCompact,
61
59
  isVisualRefresh: fg('platform-component-visual-refresh')
@@ -4,7 +4,6 @@
4
4
  import { css, keyframes } from '@emotion/react';
5
5
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
6
6
  import styled from '@emotion/styled';
7
- import { fg } from '@atlaskit/platform-feature-flags';
8
7
  import { layers } from '@atlaskit/theme/constants';
9
8
  import { TOOLTIP_CLASSNAME, TOOLTIP_ENTER_CLASSNAME, TOOLTIP_EXIT_CLASSNAME } from '../../plugins/validation-tooltip/constants';
10
9
  const fadeIn = keyframes({
@@ -159,8 +158,8 @@ styled.div`
159
158
  max-height 250ms cubic-bezier(0.15, 1, 0.3, 1);
160
159
  max-height: ${props => rowHeight * props.defaultMaxRows + getEditorInputVerticalPadding(props.isCompact) * 2}px;
161
160
  line-height: ${rowHeight / 14};
162
- ${props => props.defaultRows && fg('list_lovability_improving_filters') ? 'height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : ''}
163
- ${props => props.defaultRows && fg('list_lovability_improving_filters') ? 'min-height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : ''}
161
+ ${props => props.defaultRows ? 'height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : ''}
162
+ ${props => props.defaultRows ? 'min-height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : ''}
164
163
  font-family: ${"var(--ds-font-family-code, \"Atlassian Mono\", ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace)"};
165
164
  word-break: break-word;
166
165
  overflow-wrap: anywhere;
@@ -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", "6.3.1", ANALYTICS_CHANNEL);
3
+ return useJqlPackageAnalytics(analyticsSource, "@atlaskit/jql-editor", "0.0.0-development", ANALYTICS_CHANNEL);
4
4
  };
package/dist/esm/async.js CHANGED
@@ -1,9 +1,7 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
1
  import React from 'react';
3
2
 
4
3
  // oxlint-disable-next-line @atlassian/no-restricted-imports
5
4
  import { lazyForPaint, LazySuspense } from 'react-loosely-lazy';
6
- import { fg } from '@atlaskit/platform-feature-flags';
7
5
  import { withErrorBoundary } from './ui/error-boundary';
8
6
  import { withIntlProvider } from './ui/intl-provider';
9
7
  import { JQLEditorReadOnly } from './ui/jql-editor-layout';
@@ -25,12 +23,11 @@ export var preloadJQLEditor = function preloadJQLEditor() {
25
23
  };
26
24
  export var JQLEditorAsync = withIntlProvider(withErrorBoundary(function (props) {
27
25
  return /*#__PURE__*/React.createElement(LazySuspense, {
28
- fallback: /*#__PURE__*/React.createElement(JQLEditorReadOnly, _extends({
26
+ fallback: /*#__PURE__*/React.createElement(JQLEditorReadOnly, {
29
27
  query: props.query,
30
28
  isSearch: !!props.onSearch,
31
- isCompact: props.isCompact
32
- }, fg('list_lovability_improving_filters') ? {
29
+ isCompact: props.isCompact,
33
30
  defaultRows: props.defaultRows
34
- } : {}))
31
+ })
35
32
  }, /*#__PURE__*/React.createElement(JQLEditor, props));
36
33
  }));
@@ -0,0 +1 @@
1
+ export { ANALYTICS_CHANNEL, useJqlPackageAnalytics, EventType } from '../analytics/index';
@@ -0,0 +1 @@
1
+ export { JQLEditorAsync, preloadJQLEditor } from '../async';
File without changes
@@ -0,0 +1 @@
1
+ export { default as JQLEditorAnalyticsListener } from '../analytics/listener/jql-editor-analytics-listener';
@@ -0,0 +1 @@
1
+ export { JQLEditorReadOnly } from '../ui/jql-editor-layout/index';
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1 @@
1
+ export { default as JQLEditor } from '../ui/index';
@@ -1,10 +1,6 @@
1
- import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
1
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
4
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
5
2
  import { createContext, useCallback, useContext, useMemo, useState } from 'react';
6
3
  import noop from 'lodash/noop';
7
- import { fg } from '@atlaskit/platform-feature-flags';
8
4
  var defaultMaxRows = 3;
9
5
  var expandedRows = 15;
10
6
  var defaultEditorTheme = {
@@ -36,16 +32,15 @@ export var useEditorTheme = function useEditorTheme(_ref) {
36
32
  });
37
33
  }, []);
38
34
  return useMemo(function () {
39
- return _objectSpread({
40
- defaultMaxRows: defaultRows !== undefined && defaultRows > defaultMaxRows && fg('list_lovability_improving_filters') ? defaultRows : defaultMaxRows,
35
+ return {
36
+ defaultMaxRows: defaultRows !== undefined && defaultRows > defaultMaxRows ? defaultRows : defaultMaxRows,
41
37
  expanded: expanded,
42
38
  expandedRows: expandedRows,
43
39
  toggleExpanded: toggleExpanded,
44
40
  isSearch: isSearch,
45
- isCompact: isCompact
46
- }, fg('list_lovability_improving_filters') ? {
41
+ isCompact: isCompact,
47
42
  defaultRows: defaultRows
48
- } : {});
43
+ };
49
44
  }, [expanded, toggleExpanded, isSearch, isCompact, defaultRows]);
50
45
  };
51
46
  export var useEditorThemeContext = function useEditorThemeContext() {
@@ -11,7 +11,6 @@ import { Fragment, Slice } from '@atlaskit/editor-prosemirror/model';
11
11
  import { TextSelection } from '@atlaskit/editor-prosemirror/state';
12
12
  import FeatureGates from '@atlaskit/feature-gate-js-client';
13
13
  import { isListOperator } from '@atlaskit/jql-ast';
14
- import { fg } from '@atlaskit/platform-feature-flags';
15
14
  import getDocumentPosition from '../common/get-document-position';
16
15
  import ReactPluginView from '../common/react-plugin-view';
17
16
  import Autocomplete from './components/autocomplete';
@@ -57,7 +56,7 @@ var AutocompletePluginView = /*#__PURE__*/function (_ReactPluginView) {
57
56
  if (_this.enableRichInlineNodes && option.type === 'value' && option.valueType === 'user') {
58
57
  transaction.setMeta('hydrate', true);
59
58
  }
60
- if (_this.enableRichInlineNodes && option.type === 'value' && (option.valueType === 'team' || option.valueType === 'goal' && FeatureGates.getExperimentValue('anip-1095-goals-in-harmonised-filter', 'isEnabled', false) || option.valueType === 'project' && fg('projects_in_jira_eap_drop2'))) {
59
+ if (_this.enableRichInlineNodes && option.type === 'value' && (option.valueType === 'team' || option.valueType === 'goal' && FeatureGates.getExperimentValue('anip-1095-goals-in-harmonised-filter', 'isEnabled', false) || option.valueType === 'project' && FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1)) {
61
60
  transaction.setMeta('hydrate', true);
62
61
  }
63
62
  var documentFrom = getDocumentPosition(transaction.doc, from);
@@ -110,7 +109,7 @@ var AutocompletePluginView = /*#__PURE__*/function (_ReactPluginView) {
110
109
  }
111
110
  case 'project':
112
111
  {
113
- if (fg('projects_in_jira_eap_drop2')) {
112
+ if (FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1) {
114
113
  var _attributes2 = {
115
114
  type: 'project',
116
115
  id: value,
@@ -17,6 +17,13 @@ var appearanceToColorMap = {
17
17
  AT_RISK: 'yellow',
18
18
  ON_TRACK: 'green'
19
19
  };
20
+ var appearanceToNewColorMap = {
21
+ MENU: "var(--ds-icon, #292A2E)",
22
+ DEFAULT: "var(--ds-icon-accent-gray, #7D818A)",
23
+ OFF_TRACK: "var(--ds-icon-danger, #C9372C)",
24
+ AT_RISK: "var(--ds-icon-warning, #E06C00)",
25
+ ON_TRACK: "var(--ds-icon-success, #6A9A23)"
26
+ };
20
27
  var keyToIconMap = {
21
28
  GOAL: ObjectiveIcon,
22
29
  OBJECTIVE: ObjectiveIcon,
@@ -30,6 +37,15 @@ export var GoalIcon = function GoalIcon(_ref) {
30
37
  iconKey = _ref$iconKey === void 0 ? 'GOAL' : _ref$iconKey;
31
38
  var Icon = (_keyToIconMap = keyToIconMap[iconKey]) !== null && _keyToIconMap !== void 0 ? _keyToIconMap : keyToIconMap.GOAL;
32
39
  var appearance = isGoalAppearance(status) ? status : 'DEFAULT';
40
+
41
+ // Icon tile no longer supports a 16px size
42
+ if (size === 'xsmall') {
43
+ return /*#__PURE__*/React.createElement(Icon, {
44
+ label: "",
45
+ size: "medium",
46
+ color: appearanceToNewColorMap[appearance]
47
+ });
48
+ }
33
49
  return /*#__PURE__*/React.createElement(IconTile, {
34
50
  size: size,
35
51
  icon: Icon,
@@ -39,7 +39,7 @@ export var GoalNode = function GoalNode(props) {
39
39
  iconBefore: /*#__PURE__*/React.createElement(Box, {
40
40
  xcss: styles.iconWrapper
41
41
  }, /*#__PURE__*/React.createElement(GoalIcon, {
42
- size: "16",
42
+ size: "xsmall",
43
43
  status: (_goal$status = goal === null || goal === void 0 ? void 0 : goal.status) !== null && _goal$status !== void 0 ? _goal$status : 'DEFAULT',
44
44
  iconKey: toGoalIconKey(goal === null || goal === void 0 ? void 0 : goal.iconKey)
45
45
  })),
@@ -27,7 +27,7 @@ export var replaceRichInlineNodes = function replaceRichInlineNodes(editorState,
27
27
  fieldName = _ref2[0],
28
28
  values = _ref2[1];
29
29
  values.forEach(function (value) {
30
- if (value.type === 'user' || value.type === 'team' || value.type === 'goal' && FeatureGates.getExperimentValue('anip-1095-goals-in-harmonised-filter', 'isEnabled', false) || value.type === 'project' && fg('projects_in_jira_eap_drop2')) {
30
+ if (value.type === 'user' || value.type === 'team' || value.type === 'goal' && FeatureGates.getExperimentValue('anip-1095-goals-in-harmonised-filter', 'isEnabled', false) || value.type === 'project' && FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1) {
31
31
  // First try to find as direct value operand (e.g., Team[Team] = uuid)
32
32
  var astNodes = getValueNodes(ast, fieldName, value.id);
33
33
 
@@ -4,7 +4,7 @@ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
4
4
  import _regeneratorRuntime from "@babel/runtime/regenerator";
5
5
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
6
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
- import { fg } from '@atlaskit/platform-feature-flags';
7
+ import FeatureGates from '@atlaskit/feature-gate-js-client';
8
8
  import { getJastFromState } from '../../plugins/jql-ast';
9
9
  import { replaceRichInlineNodes } from '../../plugins/rich-inline-nodes/util/replace-nodes-transaction';
10
10
  import { actions } from '../index';
@@ -52,7 +52,7 @@ export var hydrateQuery = function hydrateQuery() {
52
52
  var _ref5 = _slicedToArray(_ref4, 2),
53
53
  fieldName = _ref5[0],
54
54
  values = _ref5[1];
55
- var fieldNameToUse = fg('projects_in_jira_eap_drop2') ? normaliseHydrationKey(fieldName) : fieldName;
55
+ var fieldNameToUse = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? normaliseHydrationKey(fieldName) : fieldName;
56
56
  var valueMap = new Map(oldHydratedValues[fieldNameToUse]);
57
57
  values.forEach(function (value) {
58
58
  valueMap.set(value.id, value);
@@ -12,9 +12,9 @@ import { tap } from 'rxjs/operators/tap';
12
12
  // eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
13
13
  import { v4 as uuidv4 } from 'uuid';
14
14
  import { EditorView } from '@atlaskit/editor-prosemirror/view';
15
+ import FeatureGates from '@atlaskit/feature-gate-js-client';
15
16
  import { computeJqlInsights, isListOperator, normaliseJqlString } from '@atlaskit/jql-ast';
16
17
  import { JQLAutocomplete } from '@atlaskit/jql-autocomplete';
17
- import { fg } from '@atlaskit/platform-feature-flags';
18
18
  import { ActionSubject, ActionSubjectId, Action as AnalyticsAction, EventType } from '../analytics';
19
19
  import { selectErrorCommand } from '../commands/select-error-command';
20
20
  import { JQL_EDITOR_MAIN_ID } from '../common/constants';
@@ -901,7 +901,7 @@ export var useHydratedValue = createHook(Store, {
901
901
  var _state$hydratedValues2;
902
902
  var id = _ref38.id,
903
903
  fieldName = _ref38.fieldName;
904
- if (fg('projects_in_jira_eap_drop2')) {
904
+ if (FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1) {
905
905
  var _state$hydratedValues;
906
906
  return (_state$hydratedValues = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues === void 0 ? void 0 : _state$hydratedValues.get(normaliseJqlString(id));
907
907
  }
@@ -913,7 +913,7 @@ export var useHydratedUser = createHook(Store, {
913
913
  var _state$hydratedValues3, _state$hydratedValues4;
914
914
  var id = _ref39.id,
915
915
  fieldName = _ref39.fieldName;
916
- var user = fg('projects_in_jira_eap_drop2') ? (_state$hydratedValues3 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues3 === void 0 ? void 0 : _state$hydratedValues3.get(normaliseJqlString(id)) : (_state$hydratedValues4 = state.hydratedValues[fieldName]) === null || _state$hydratedValues4 === void 0 ? void 0 : _state$hydratedValues4.get(id);
916
+ var user = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? (_state$hydratedValues3 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues3 === void 0 ? void 0 : _state$hydratedValues3.get(normaliseJqlString(id)) : (_state$hydratedValues4 = state.hydratedValues[fieldName]) === null || _state$hydratedValues4 === void 0 ? void 0 : _state$hydratedValues4.get(id);
917
917
  return user && user.type === 'user' ? user : undefined;
918
918
  }
919
919
  });
@@ -922,7 +922,7 @@ export var useHydratedTeam = createHook(Store, {
922
922
  var _state$hydratedValues5, _state$hydratedValues6;
923
923
  var id = _ref40.id,
924
924
  fieldName = _ref40.fieldName;
925
- var team = fg('projects_in_jira_eap_drop2') ? (_state$hydratedValues5 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues5 === void 0 ? void 0 : _state$hydratedValues5.get(normaliseJqlString(id)) : (_state$hydratedValues6 = state.hydratedValues[fieldName]) === null || _state$hydratedValues6 === void 0 ? void 0 : _state$hydratedValues6.get(id);
925
+ var team = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? (_state$hydratedValues5 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues5 === void 0 ? void 0 : _state$hydratedValues5.get(normaliseJqlString(id)) : (_state$hydratedValues6 = state.hydratedValues[fieldName]) === null || _state$hydratedValues6 === void 0 ? void 0 : _state$hydratedValues6.get(id);
926
926
  return team && team.type === 'team' ? team : undefined;
927
927
  }
928
928
  });
@@ -931,7 +931,7 @@ export var useHydratedProject = createHook(Store, {
931
931
  var _state$hydratedValues7, _state$hydratedValues8;
932
932
  var id = _ref41.id,
933
933
  fieldName = _ref41.fieldName;
934
- var project = fg('projects_in_jira_eap_drop2') ? (_state$hydratedValues7 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues7 === void 0 ? void 0 : _state$hydratedValues7.get(normaliseJqlString(id)) : (_state$hydratedValues8 = state.hydratedValues[normaliseJqlString(fieldName)]) === null || _state$hydratedValues8 === void 0 ? void 0 : _state$hydratedValues8.get(normaliseJqlString(id));
934
+ var project = FeatureGates.getExperimentValue('atlassian_projects_-_native_integration', 'releaseVersion', -1) >= 1 ? (_state$hydratedValues7 = state.hydratedValues[normaliseHydrationKey(fieldName)]) === null || _state$hydratedValues7 === void 0 ? void 0 : _state$hydratedValues7.get(normaliseJqlString(id)) : (_state$hydratedValues8 = state.hydratedValues[normaliseJqlString(fieldName)]) === null || _state$hydratedValues8 === void 0 ? void 0 : _state$hydratedValues8.get(normaliseJqlString(id));
935
935
  return project && project.type === 'project' ? project : undefined;
936
936
  }
937
937
  });
@@ -1,5 +1,4 @@
1
1
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
2
- import _extends from "@babel/runtime/helpers/extends";
3
2
  var _excluded = ["isSearch", "isCompact", "defaultRows"];
4
3
  import React from 'react';
5
4
  import { useIntl } from 'react-intl';
@@ -43,7 +42,7 @@ var JQLEditorLayout = function JQLEditorLayout(props) {
43
42
  onScroll: onEditorViewContainerScroll
44
43
  }, /*#__PURE__*/React.createElement(LineNumberToolbar, {
45
44
  lineNumbersVisible: lineNumbersVisible
46
- }), /*#__PURE__*/React.createElement(EditorView, _extends({
45
+ }), /*#__PURE__*/React.createElement(EditorView, {
47
46
  defaultMaxRows: defaultMaxRows,
48
47
  expandedRows: expandedRows,
49
48
  isCompact: isCompact,
@@ -51,10 +50,9 @@ var JQLEditorLayout = function JQLEditorLayout(props) {
51
50
  ref: onEditorViewRef,
52
51
  onBlur: onEditorViewBlur,
53
52
  onFocus: onEditorViewFocus,
54
- onTransitionEnd: onEditorViewTransitionEnd
55
- }, fg('list_lovability_improving_filters') ? {
53
+ onTransitionEnd: onEditorViewTransitionEnd,
56
54
  defaultRows: defaultRows
57
- } : {})), /*#__PURE__*/React.createElement(EditorControls, {
55
+ }), /*#__PURE__*/React.createElement(EditorControls, {
58
56
  isSearch: isSearch,
59
57
  isCompact: isCompact,
60
58
  isVisualRefresh: fg('platform-component-visual-refresh')
@@ -6,7 +6,6 @@ var _templateObject, _templateObject2, _templateObject3;
6
6
  import { css, keyframes } from '@emotion/react';
7
7
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
8
8
  import styled from '@emotion/styled';
9
- import { fg } from '@atlaskit/platform-feature-flags';
10
9
  import { layers } from '@atlaskit/theme/constants';
11
10
  import { TOOLTIP_CLASSNAME, TOOLTIP_ENTER_CLASSNAME, TOOLTIP_EXIT_CLASSNAME } from '../../plugins/validation-tooltip/constants';
12
11
  var fadeIn = keyframes({
@@ -125,9 +124,9 @@ export var EditorView = // eslint-disable-next-line @atlaskit/design-system/no-s
125
124
  styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n\t\tcounter-reset: lineNumber;\n\t\tflex-grow: 1;\n\n\t\ttransition:\n\t\t\theight 250ms cubic-bezier(0.15, 1, 0.3, 1),\n\t\t\tmax-height 250ms cubic-bezier(0.15, 1, 0.3, 1);\n\t\tmax-height: ", "px;\n\t\tline-height: ", ";\n\t\t", "\n\t\t", "\n\tfont-family: ", ";\n\t\tword-break: break-word;\n\t\toverflow-wrap: anywhere;\n\t\twhite-space: pre-wrap;\n\n\t\t&[data-expanded] {\n\t\t\theight: ", "px;\n\t\t\tmax-height: ", "px;\n\t\t}\n\n\t\t.ProseMirror {\n\t\t\tcolor: ", ";\n\t\t\tpadding: ", "px\n\t\t\t\t", "px;\n\n\t\t\t&:focus {\n\t\t\t\toutline: none;\n\t\t\t}\n\n\t\t\t.mark-token-keyword {\n\t\t\t\tcolor: ", ";\n\t\t\t}\n\n\t\t\t.mark-token-field {\n\t\t\t\tcolor: ", ";\n\t\t\t}\n\n\t\t\t.mark-token-operator {\n\t\t\t\tcolor: ", ";\n\t\t\t}\n\n\t\t\t.mark-token-error {\n\t\t\t\tcolor: ", ";\n\t\t\t\ttext-decoration: wavy underline;\n\t\t\t\ttext-decoration-thickness: 1px;\n\t\t\t\ttext-decoration-skip-ink: none;\n\t\t\t}\n\t\t}\n\n\t\tp {\n\t\t\tmargin: 0;\n\t\t\tcounter-increment: lineNumber;\n\t\t\tposition: relative;\n\n\t\t\t/* Show the current line number before each paragraph block. */\n\n\t\t\t&::before {\n\t\t\t\tcontent: counter(lineNumber);\n\t\t\t\tcolor: ", ";\n\t\t\t\tfont-size: 10px;\n\t\t\t\tline-height: ", ";\n\t\t\t\tpadding: 0 ", " 0 ", ";\n\t\t\t\tposition: absolute;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t/* Shift the line number tag 100% (plus 8px padding) to the left to position it inside the LineNumberToolbar */\n\t\t\t\ttransform: translateX(calc(-100% - ", "));\n\n\t\t\t\t/* We can fit 3 digits before ellipses. This is not very responsive but saves us having to add expensive width\n recalculation logic to the LineNumberToolbar for a scenario that *should* never happen. */\n\t\t\t\tmax-width: 30px;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\n\t\t\t\t", "\n\t\t\t}\n\t\t}\n\t"])), function (props) {
126
125
  return rowHeight * props.defaultMaxRows + getEditorInputVerticalPadding(props.isCompact) * 2;
127
126
  }, rowHeight / 14, function (props) {
128
- return props.defaultRows && fg('list_lovability_improving_filters') ? 'height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : '';
127
+ return props.defaultRows ? 'height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : '';
129
128
  }, function (props) {
130
- return props.defaultRows && fg('list_lovability_improving_filters') ? 'min-height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : '';
129
+ return props.defaultRows ? 'min-height: ' + (rowHeight * props.defaultRows + getEditorInputVerticalPadding(props.isCompact) * 2) + 'px;' : '';
131
130
  }, "var(--ds-font-family-code, \"Atlassian Mono\", ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace)", function (props) {
132
131
  return rowHeight * props.expandedRows + getEditorInputVerticalPadding(props.isCompact) * 2;
133
132
  }, function (props) {
@@ -0,0 +1,2 @@
1
+ export { ANALYTICS_CHANNEL, useJqlPackageAnalytics, EventType } from '../analytics/index';
2
+ export type { JqlAnalyticsEvent } from '../analytics/index';
@@ -0,0 +1 @@
1
+ export { JQLEditorAsync, preloadJQLEditor } from '../async';
@@ -0,0 +1 @@
1
+ export type { AutocompleteOption, AutocompleteValueType, AutocompleteOptions, AutocompleteProvider, } from '../plugins/autocomplete/components/types';
@@ -0,0 +1,2 @@
1
+ export { default as JQLEditorAnalyticsListener } from '../analytics/listener/jql-editor-analytics-listener';
2
+ export type { ListenerProps } from '../analytics/listener/jql-editor-analytics-listener';
@@ -0,0 +1 @@
1
+ export { JQLEditorReadOnly } from '../ui/jql-editor-layout/index';
@@ -0,0 +1 @@
1
+ export type { JQLClause } from '../types';
@@ -0,0 +1 @@
1
+ export type { ExternalMessage, ExternalError, ExternalWarning, ExternalInfo, CustomComponents, } from '../state/types';
@@ -0,0 +1 @@
1
+ export type { JQLEditorUIProps, HydratedValue, HydratedValues, HydratedUser, HydratedTeam, HydratedProject, HydratedGoal, } from '../ui/jql-editor/types';
@@ -0,0 +1 @@
1
+ export type { JQLEditorProps } from '../ui/types';
@@ -0,0 +1 @@
1
+ export { default as JQLEditor } from '../ui/index';
@@ -0,0 +1,2 @@
1
+ export { ANALYTICS_CHANNEL, useJqlPackageAnalytics, EventType } from '../analytics/index';
2
+ export type { JqlAnalyticsEvent } from '../analytics/index';
@@ -0,0 +1 @@
1
+ export { JQLEditorAsync, preloadJQLEditor } from '../async';
@@ -0,0 +1 @@
1
+ export type { AutocompleteOption, AutocompleteValueType, AutocompleteOptions, AutocompleteProvider, } from '../plugins/autocomplete/components/types';
@@ -0,0 +1,2 @@
1
+ export { default as JQLEditorAnalyticsListener } from '../analytics/listener/jql-editor-analytics-listener';
2
+ export type { ListenerProps } from '../analytics/listener/jql-editor-analytics-listener';
@@ -0,0 +1 @@
1
+ export { JQLEditorReadOnly } from '../ui/jql-editor-layout/index';
@@ -0,0 +1 @@
1
+ export type { JQLClause } from '../types';
@@ -0,0 +1 @@
1
+ export type { ExternalMessage, ExternalError, ExternalWarning, ExternalInfo, CustomComponents, } from '../state/types';
@@ -0,0 +1 @@
1
+ export type { JQLEditorUIProps, HydratedValue, HydratedValues, HydratedUser, HydratedTeam, HydratedProject, HydratedGoal, } from '../ui/jql-editor/types';
@@ -0,0 +1 @@
1
+ export type { JQLEditorProps } from '../ui/types';
@@ -0,0 +1 @@
1
+ export { default as JQLEditor } from '../ui/index';
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/jql-editor/jql-editor-analytics-listener",
3
+ "main": "../dist/cjs/entry-points/jql-editor-analytics-listener.js",
4
+ "module": "../dist/esm/entry-points/jql-editor-analytics-listener.js",
5
+ "module:es2019": "../dist/es2019/entry-points/jql-editor-analytics-listener.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/jql-editor-analytics-listener.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/jql-editor-analytics-listener.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/jql-editor/jql-editor-layout",
3
+ "main": "../dist/cjs/entry-points/jql-editor-layout.js",
4
+ "module": "../dist/esm/entry-points/jql-editor-layout.js",
5
+ "module:es2019": "../dist/es2019/entry-points/jql-editor-layout.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/jql-editor-layout.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/jql-editor-layout.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/jql-editor",
3
- "version": "6.3.1",
3
+ "version": "6.4.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",
@@ -46,25 +46,25 @@
46
46
  "@atlaskit/button": "^23.11.0",
47
47
  "@atlaskit/css": "^0.19.0",
48
48
  "@atlaskit/editor-prosemirror": "^7.3.0",
49
- "@atlaskit/emoji": "^70.4.0",
49
+ "@atlaskit/emoji": "^70.7.0",
50
50
  "@atlaskit/feature-gate-js-client": "^5.5.0",
51
51
  "@atlaskit/form": "^15.5.0",
52
- "@atlaskit/icon": "^34.4.0",
53
- "@atlaskit/icon-lab": "^6.7.0",
52
+ "@atlaskit/icon": "^34.5.0",
53
+ "@atlaskit/icon-lab": "^6.9.0",
54
54
  "@atlaskit/jql-ast": "^3.4.0",
55
- "@atlaskit/jql-autocomplete": "^2.0.0",
56
- "@atlaskit/jql-editor-common": "^3.2.0",
57
- "@atlaskit/jql-parser": "^2.0.0",
55
+ "@atlaskit/jql-autocomplete": "^2.1.0",
56
+ "@atlaskit/jql-editor-common": "^3.3.0",
57
+ "@atlaskit/jql-parser": "^2.1.0",
58
58
  "@atlaskit/link": "^3.4.0",
59
59
  "@atlaskit/platform-feature-flags": "^1.1.0",
60
60
  "@atlaskit/popper": "^7.2.0",
61
61
  "@atlaskit/primitives": "^19.0.0",
62
62
  "@atlaskit/prosemirror-history": "^0.2.0",
63
63
  "@atlaskit/spinner": "^19.1.0",
64
- "@atlaskit/teams-avatar": "^2.6.0",
64
+ "@atlaskit/teams-avatar": "^2.7.0",
65
65
  "@atlaskit/theme": "^23.2.0",
66
66
  "@atlaskit/tokens": "^13.0.0",
67
- "@atlaskit/tooltip": "^22.0.0",
67
+ "@atlaskit/tooltip": "^22.2.0",
68
68
  "@atlaskit/townsquare-emoji-provider": "^1.0.0",
69
69
  "@babel/runtime": "^7.0.0",
70
70
  "@emotion/react": "^11.7.1",
@@ -89,8 +89,8 @@
89
89
  "@af/integration-testing": "workspace:^",
90
90
  "@af/visual-regression": "workspace:^",
91
91
  "@atlaskit/docs": "^11.8.0",
92
- "@atlaskit/jql-editor-autocomplete-rest": "^3.2.0",
93
- "@atlassian/feature-flags-storybook-utils": "^0.3.0",
92
+ "@atlaskit/jql-editor-autocomplete-rest": "^3.3.0",
93
+ "@atlassian/feature-flags-storybook-utils": "^0.4.0",
94
94
  "@atlassian/feature-flags-test-utils": "^1.1.0",
95
95
  "@atlassian/react-compiler-gating": "workspace:^",
96
96
  "@storybook/addon-actions": "^8.6.14",
@@ -151,15 +151,9 @@
151
151
  "jira-membersof-team-support": {
152
152
  "type": "boolean"
153
153
  },
154
- "list_lovability_improving_filters": {
155
- "type": "boolean"
156
- },
157
154
  "jira_ai_agent_avatar_with_apptype_for_jql": {
158
155
  "type": "boolean"
159
156
  },
160
- "projects_in_jira_eap_drop2": {
161
- "type": "boolean"
162
- },
163
157
  "empanda_jql-editor_fix_tab_select_in_popup": {
164
158
  "type": "boolean"
165
159
  }