@atlaskit/jql-editor 5.4.6 → 5.5.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 (50) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/cjs/analytics/util.js +1 -1
  3. package/dist/cjs/plugins/autocomplete/components/autocomplete-dropdown/index.js +118 -42
  4. package/dist/cjs/plugins/autocomplete/components/autocomplete-dropdown/styled.js +12 -8
  5. package/dist/es2019/analytics/util.js +1 -1
  6. package/dist/es2019/plugins/autocomplete/components/autocomplete-dropdown/index.js +87 -20
  7. package/dist/es2019/plugins/autocomplete/components/autocomplete-dropdown/styled.js +9 -5
  8. package/dist/esm/analytics/util.js +1 -1
  9. package/dist/esm/plugins/autocomplete/components/autocomplete-dropdown/index.js +119 -43
  10. package/dist/esm/plugins/autocomplete/components/autocomplete-dropdown/styled.js +12 -7
  11. package/dist/types/accessibility/styled.d.ts +2 -3
  12. package/dist/types/common/styled.d.ts +2 -3
  13. package/dist/types/hooks/use-editor-theme/index.d.ts +2 -3
  14. package/dist/types/plugins/autocomplete/components/autocomplete-dropdown/index.d.ts +1 -1
  15. package/dist/types/plugins/autocomplete/components/autocomplete-dropdown/styled.d.ts +9 -9
  16. package/dist/types/plugins/autocomplete/components/autocomplete-option/styled.d.ts +14 -15
  17. package/dist/types/plugins/rich-inline-nodes/nodes/user/styled.d.ts +6 -7
  18. package/dist/types/state/util.d.ts +3 -3
  19. package/dist/types/ui/index.d.ts +0 -1
  20. package/dist/types/ui/intl-provider/index.d.ts +1 -1
  21. package/dist/types/ui/jql-editor-controls-content/base-expand-toggle/styled.d.ts +2 -3
  22. package/dist/types/ui/jql-editor-controls-content/base-syntax-help/styled.d.ts +2 -3
  23. package/dist/types/ui/jql-editor-footer-content/jql-editor-help/styled.d.ts +2 -3
  24. package/dist/types/ui/jql-editor-footer-content/jql-messages/format/styled.d.ts +4 -5
  25. package/dist/types/ui/jql-editor-layout/index.d.ts +2 -2
  26. package/dist/types/ui/jql-editor-layout/styled.d.ts +19 -20
  27. package/dist/types/ui/jql-editor-portal-provider/context.d.ts +0 -1
  28. package/dist/types/ui/jql-editor-view/index.d.ts +1 -1
  29. package/dist/types/ui/tooltip-tag/styled.d.ts +2 -3
  30. package/dist/types-ts4.5/accessibility/styled.d.ts +2 -3
  31. package/dist/types-ts4.5/common/styled.d.ts +2 -3
  32. package/dist/types-ts4.5/hooks/use-editor-theme/index.d.ts +2 -3
  33. package/dist/types-ts4.5/plugins/autocomplete/components/autocomplete-dropdown/index.d.ts +1 -1
  34. package/dist/types-ts4.5/plugins/autocomplete/components/autocomplete-dropdown/styled.d.ts +9 -9
  35. package/dist/types-ts4.5/plugins/autocomplete/components/autocomplete-option/styled.d.ts +14 -15
  36. package/dist/types-ts4.5/plugins/rich-inline-nodes/nodes/user/styled.d.ts +6 -7
  37. package/dist/types-ts4.5/state/util.d.ts +3 -3
  38. package/dist/types-ts4.5/ui/index.d.ts +0 -1
  39. package/dist/types-ts4.5/ui/intl-provider/index.d.ts +1 -1
  40. package/dist/types-ts4.5/ui/jql-editor-controls-content/base-expand-toggle/styled.d.ts +2 -3
  41. package/dist/types-ts4.5/ui/jql-editor-controls-content/base-syntax-help/styled.d.ts +2 -3
  42. package/dist/types-ts4.5/ui/jql-editor-footer-content/jql-editor-help/styled.d.ts +2 -3
  43. package/dist/types-ts4.5/ui/jql-editor-footer-content/jql-messages/format/styled.d.ts +4 -5
  44. package/dist/types-ts4.5/ui/jql-editor-layout/index.d.ts +2 -2
  45. package/dist/types-ts4.5/ui/jql-editor-layout/styled.d.ts +19 -20
  46. package/dist/types-ts4.5/ui/jql-editor-portal-provider/context.d.ts +0 -1
  47. package/dist/types-ts4.5/ui/jql-editor-view/index.d.ts +1 -1
  48. package/dist/types-ts4.5/ui/tooltip-tag/styled.d.ts +2 -3
  49. package/i18n/package.json +1 -1
  50. package/package.json +9 -6
@@ -7,5 +7,5 @@ type Props = {
7
7
  keymap: PluginKeymap;
8
8
  onClick: (option: SelectableAutocompleteOption, analyticsAttributes: AutocompleteAnalyticsAttributes) => void;
9
9
  };
10
- declare const AutocompleteDropdown: ({ options, loading, keymap, onClick }: Props) => React.JSX.Element;
10
+ declare const AutocompleteDropdown: ({ options, loading, keymap, onClick }: Props) => React.JSX.Element | null;
11
11
  export default AutocompleteDropdown;
@@ -1,21 +1,21 @@
1
- /// <reference types="react" />
2
1
  export declare const AutocompleteContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & {
6
5
  isOpen: boolean;
6
+ usePopper?: boolean;
7
7
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
8
8
  export declare const AutocompleteOptionsContainer: import("@emotion/styled").StyledComponent<{
9
- theme?: import("@emotion/react").Theme | undefined;
10
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
9
+ theme?: import("@emotion/react").Theme;
10
+ as?: React.ElementType;
11
11
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
12
12
  export declare const OptionList: import("@emotion/styled").StyledComponent<{
13
- theme?: import("@emotion/react").Theme | undefined;
14
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
13
+ theme?: import("@emotion/react").Theme;
14
+ as?: React.ElementType;
15
15
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, {}>;
16
16
  export declare const AutocompleteLoadingFooter: import("@emotion/styled").StyledComponent<{
17
- theme?: import("@emotion/react").Theme | undefined;
18
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
17
+ theme?: import("@emotion/react").Theme;
18
+ as?: React.ElementType;
19
19
  } & {
20
20
  hasOptions: boolean;
21
21
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,32 +1,31 @@
1
- /// <reference types="react" />
2
1
  export declare const TooltipContent: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const OptionListItem: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & {
10
9
  isSelected: boolean;
11
10
  isDeprecated: boolean;
12
11
  }, import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, {}>;
13
12
  export declare const OptionName: import("@emotion/styled").StyledComponent<{
14
- theme?: import("@emotion/react").Theme | undefined;
15
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
13
+ theme?: import("@emotion/react").Theme;
14
+ as?: React.ElementType;
16
15
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
17
16
  export declare const DeprecatedOptionContainer: import("@emotion/styled").StyledComponent<{
18
- theme?: import("@emotion/react").Theme | undefined;
19
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
17
+ theme?: import("@emotion/react").Theme;
18
+ as?: React.ElementType;
20
19
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
21
20
  export declare const OptionHighlight: import("@emotion/styled").StyledComponent<{
22
- theme?: import("@emotion/react").Theme | undefined;
23
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
21
+ theme?: import("@emotion/react").Theme;
22
+ as?: React.ElementType;
24
23
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
25
24
  export declare const FieldType: import("@emotion/styled").StyledComponent<{
26
- theme?: import("@emotion/react").Theme | undefined;
27
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
25
+ theme?: import("@emotion/react").Theme;
26
+ as?: React.ElementType;
28
27
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
29
28
  export declare const FieldTypeIcon: import("@emotion/styled").StyledComponent<{
30
- theme?: import("@emotion/react").Theme | undefined;
31
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
29
+ theme?: import("@emotion/react").Theme;
30
+ as?: React.ElementType;
32
31
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
@@ -1,16 +1,15 @@
1
- /// <reference types="react" />
2
1
  export declare const UserContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & {
6
5
  selected: boolean;
7
6
  error: boolean;
8
7
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
9
8
  export declare const NameContainer: import("@emotion/styled").StyledComponent<{
10
- theme?: import("@emotion/react").Theme | undefined;
11
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
9
+ theme?: import("@emotion/react").Theme;
10
+ as?: React.ElementType;
12
11
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
13
12
  export declare const AvatarWrapper: import("@emotion/styled").StyledComponent<{
14
- theme?: import("@emotion/react").Theme | undefined;
15
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
13
+ theme?: import("@emotion/react").Theme;
14
+ as?: React.ElementType;
16
15
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -8,9 +8,9 @@ export declare const getAutocompleteOptionId: (value: string) => any;
8
8
  export declare const tokensToAutocompleteOptions: (tokens: ContextAwareTokenSuggestions) => SelectableAutocompleteOptions;
9
9
  export declare const getReplacePositionStart: ({ rules, tokens }: JQLSuggestions) => number;
10
10
  export declare const getAutocompletePosition: (editorView: EditorView, replacePositionStart: number) => AutocompletePosition;
11
- export declare const sendDebugMessage: (message: string, editorView: EditorView, editorState: EditorState, onDebugUnsafeMessage?: ((message: string, event: {
11
+ export declare const sendDebugMessage: (message: string, editorView: EditorView, editorState: EditorState, onDebugUnsafeMessage?: (message: string, event: {
12
12
  [key: string]: DebugMessageEventAttribute;
13
- }) => void) | undefined, eventAttributes?: {
13
+ }) => void, eventAttributes?: {
14
14
  [key: string]: DebugMessageEventAttribute;
15
- } | undefined) => void;
15
+ }) => void;
16
16
  export declare const getFieldNodes: (ast: Jast) => Set<string>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type JQLEditorProps } from './types';
3
2
  declare const _default: (props: JQLEditorProps) => import("react").JSX.Element;
4
3
  export default _default;
@@ -6,5 +6,5 @@ type WithIntlProviderProps = {
6
6
  */
7
7
  locale?: string;
8
8
  };
9
- export declare const withIntlProvider: <Props extends WithIntlProviderProps>(WrappedComponent: FunctionComponent<Omit<Props, 'locale'>> | ComponentClass<Omit<Props, 'locale'>>) => (props: Props) => React.JSX.Element;
9
+ export declare const withIntlProvider: <Props extends WithIntlProviderProps>(WrappedComponent: FunctionComponent<Omit<Props, "locale">> | ComponentClass<Omit<Props, "locale">>) => (props: Props) => React.JSX.Element;
10
10
  export {};
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const ExpandToggleContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const SyntaxHelpContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  type HelpContainerProps = {
3
2
  isVisible: boolean;
4
3
  };
5
4
  export declare const HelpContainer: import("@emotion/styled").StyledComponent<{
6
- theme?: import("@emotion/react").Theme | undefined;
7
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
5
+ theme?: import("@emotion/react").Theme;
6
+ as?: React.ElementType;
8
7
  } & HelpContainerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
9
8
  export {};
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  export declare const MessageContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & {
6
5
  isSearch: boolean;
7
6
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
8
7
  export declare const MessageList: import("@emotion/styled").StyledComponent<{
9
- theme?: import("@emotion/react").Theme | undefined;
10
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
8
+ theme?: import("@emotion/react").Theme;
9
+ as?: React.ElementType;
11
10
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, {}>;
@@ -58,7 +58,7 @@ type ReadOnlyProps = {
58
58
  query: string;
59
59
  };
60
60
  export declare const JQLEditorReadOnly: ({ isSearch, isCompact, ...props }: ReadOnlyProps & {
61
- isSearch?: boolean | undefined;
62
- isCompact?: boolean | undefined;
61
+ isSearch?: boolean;
62
+ isCompact?: boolean;
63
63
  }) => React.JSX.Element;
64
64
  export default JQLEditorLayout;
@@ -1,29 +1,28 @@
1
- /// <reference types="react" />
2
1
  export declare const EditorMain: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const EditorFooter: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
10
9
  type EditorViewContainerProps = {
11
10
  editorViewHasFocus?: boolean;
12
11
  editorViewIsInvalid?: boolean;
13
12
  };
14
13
  export declare const EditorViewContainer: import("@emotion/styled").StyledComponent<{
15
- theme?: import("@emotion/react").Theme | undefined;
16
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
14
+ theme?: import("@emotion/react").Theme;
15
+ as?: React.ElementType;
17
16
  } & EditorViewContainerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
18
17
  export declare const ReadOnlyEditorViewContainer: import("@emotion/styled").StyledComponent<{
19
- theme?: import("@emotion/react").Theme | undefined;
20
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
18
+ theme?: import("@emotion/react").Theme;
19
+ as?: React.ElementType;
21
20
  } & EditorViewContainerProps & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
22
- theme?: import("@emotion/react").Theme | undefined;
21
+ theme?: import("@emotion/react").Theme;
23
22
  }, {}, {}>;
24
23
  export declare const LineNumberToolbar: import("@emotion/styled").StyledComponent<{
25
- theme?: import("@emotion/react").Theme | undefined;
26
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
24
+ theme?: import("@emotion/react").Theme;
25
+ as?: React.ElementType;
27
26
  } & {
28
27
  lineNumbersVisible: boolean;
29
28
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -31,8 +30,8 @@ export declare const LineNumberToolbar: import("@emotion/styled").StyledComponen
31
30
  * The main div which the Prosemirror editor will be rendered into.
32
31
  */
33
32
  export declare const EditorView: import("@emotion/styled").StyledComponent<{
34
- theme?: import("@emotion/react").Theme | undefined;
35
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
33
+ theme?: import("@emotion/react").Theme;
34
+ as?: React.ElementType;
36
35
  } & {
37
36
  defaultMaxRows: number;
38
37
  expandedRows: number;
@@ -40,22 +39,22 @@ export declare const EditorView: import("@emotion/styled").StyledComponent<{
40
39
  isCompact: boolean;
41
40
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
42
41
  export declare const ReadOnlyEditorView: import("@emotion/styled").StyledComponent<{
43
- theme?: import("@emotion/react").Theme | undefined;
44
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
42
+ theme?: import("@emotion/react").Theme;
43
+ as?: React.ElementType;
45
44
  } & {
46
45
  defaultMaxRows: number;
47
46
  expandedRows: number;
48
47
  lineNumbersVisible: boolean;
49
48
  isCompact: boolean;
50
49
  } & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
51
- theme?: import("@emotion/react").Theme | undefined;
50
+ theme?: import("@emotion/react").Theme;
52
51
  }, {}, {}>;
53
52
  export declare const EditorControls: import("@emotion/styled").StyledComponent<{
54
- theme?: import("@emotion/react").Theme | undefined;
55
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
53
+ theme?: import("@emotion/react").Theme;
54
+ as?: React.ElementType;
56
55
  } & {
57
56
  isSearch: boolean;
58
57
  isCompact: boolean;
59
- isVisualRefresh?: boolean | undefined;
58
+ isVisualRefresh?: boolean;
60
59
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
61
60
  export {};
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type PortalActions } from './types';
3
2
  export declare const PortalActionsContext: import("react").Context<PortalActions>;
4
3
  export declare const usePortalActionsContext: () => PortalActions;
@@ -5,6 +5,6 @@ import React from 'react';
5
5
  declare const JQLEditorView: ({ inputRef }: {
6
6
  inputRef?: React.Ref<{
7
7
  focus: () => void;
8
- }> | undefined;
8
+ }>;
9
9
  }) => React.JSX.Element;
10
10
  export default JQLEditorView;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledTooltipTag: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
package/i18n/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "types": "../dist/types/i18n/index.d.ts",
10
10
  "typesVersions": {
11
- ">=4.5 <5.4": {
11
+ ">=4.5 <5.9": {
12
12
  "*": [
13
13
  "../dist/types-ts4.5/i18n/index.d.ts"
14
14
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/jql-editor",
3
- "version": "5.4.6",
3
+ "version": "5.5.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",
@@ -39,10 +39,10 @@
39
39
  "@atlaskit/analytics-gas-types": "^5.1.0",
40
40
  "@atlaskit/analytics-next": "^11.1.0",
41
41
  "@atlaskit/avatar": "^25.1.0",
42
- "@atlaskit/button": "^23.3.0",
42
+ "@atlaskit/button": "^23.4.0",
43
43
  "@atlaskit/editor-prosemirror": "7.0.0",
44
- "@atlaskit/form": "^12.0.0",
45
- "@atlaskit/icon": "^27.9.0",
44
+ "@atlaskit/form": "^12.1.0",
45
+ "@atlaskit/icon": "^28.0.0",
46
46
  "@atlaskit/jql-ast": "^3.3.0",
47
47
  "@atlaskit/jql-autocomplete": "^2.0.0",
48
48
  "@atlaskit/jql-editor-common": "^3.0.0",
@@ -50,6 +50,7 @@
50
50
  "@atlaskit/legacy-custom-icons": "^0.22.0",
51
51
  "@atlaskit/link": "^3.2.0",
52
52
  "@atlaskit/platform-feature-flags": "^1.1.0",
53
+ "@atlaskit/popper": "^7.1.0",
53
54
  "@atlaskit/primitives": "^14.11.0",
54
55
  "@atlaskit/spinner": "^19.0.0",
55
56
  "@atlaskit/theme": "^19.0.0",
@@ -80,12 +81,11 @@
80
81
  "@atlaskit/jql-editor-autocomplete-rest": "^3.0.0",
81
82
  "@atlaskit/visual-regression": "workspace:^",
82
83
  "@atlassian/feature-flags-test-utils": "^0.3.0",
83
- "@storybook/addon-actions": "^6.4.0",
84
+ "@storybook/addon-actions": "^8.6.14",
84
85
  "@storybook/addon-knobs": "^6.4.0",
85
86
  "@testing-library/jest-dom": "^6.4.5",
86
87
  "@testing-library/react": "^13.4.0",
87
88
  "@testing-library/react-hooks": "^8.0.1",
88
- "typescript": "~5.4.2",
89
89
  "wait-for-expect": "^1.2.0"
90
90
  },
91
91
  "techstack": {
@@ -139,6 +139,9 @@
139
139
  },
140
140
  "should-render-to-parent-should-be-true-jira-platfo": {
141
141
  "type": "boolean"
142
+ },
143
+ "jql_editor_autocomplete_use_popper": {
144
+ "type": "boolean"
142
145
  }
143
146
  }
144
147
  }