@atlaskit/jql-editor 5.13.6 → 5.14.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 +12 -0
- package/dist/cjs/analytics/util.js +1 -1
- package/dist/cjs/async.js +1 -1
- package/dist/cjs/plugins/autocomplete/components/autocomplete-dropdown/styled.js +7 -8
- package/dist/cjs/plugins/autocomplete/components/autocomplete-option/index.js +1 -2
- package/dist/cjs/plugins/autocomplete/components/autocomplete-option/styled.js +5 -6
- package/dist/cjs/plugins/rich-inline-nodes/nodes/team/styled.js +13 -14
- package/dist/cjs/plugins/rich-inline-nodes/nodes/user/styled.js +13 -14
- package/dist/cjs/state/hydration/index.js +9 -2
- package/dist/cjs/state/hydration/util.js +10 -1
- package/dist/cjs/state/index.js +31 -20
- package/dist/cjs/ui/jql-editor-controls-content/base-expand-toggle/index.js +2 -3
- package/dist/cjs/ui/jql-editor-controls-content/base-expand-toggle/styled.js +2 -3
- package/dist/cjs/ui/jql-editor-controls-content/base-syntax-help/index.js +1 -2
- package/dist/cjs/ui/jql-editor-controls-content/base-syntax-help/styled.js +5 -6
- package/dist/cjs/ui/jql-editor-footer-content/jql-messages/infos/index.js +1 -4
- package/dist/cjs/ui/jql-editor-footer-content/jql-messages/warnings/index.js +1 -2
- package/dist/cjs/ui/jql-editor-layout/styled.js +15 -16
- package/dist/es2019/analytics/util.js +1 -1
- package/dist/es2019/async.js +2 -0
- package/dist/es2019/plugins/autocomplete/components/autocomplete-dropdown/styled.js +7 -8
- package/dist/es2019/plugins/autocomplete/components/autocomplete-option/index.js +1 -2
- package/dist/es2019/plugins/autocomplete/components/autocomplete-option/styled.js +5 -6
- package/dist/es2019/plugins/rich-inline-nodes/nodes/team/styled.js +13 -14
- package/dist/es2019/plugins/rich-inline-nodes/nodes/user/styled.js +13 -14
- package/dist/es2019/state/hydration/index.js +12 -4
- package/dist/es2019/state/hydration/util.js +8 -1
- package/dist/es2019/state/index.js +21 -10
- package/dist/es2019/ui/jql-editor-controls-content/base-expand-toggle/index.js +2 -3
- package/dist/es2019/ui/jql-editor-controls-content/base-expand-toggle/styled.js +2 -3
- package/dist/es2019/ui/jql-editor-controls-content/base-syntax-help/index.js +1 -2
- package/dist/es2019/ui/jql-editor-controls-content/base-syntax-help/styled.js +5 -6
- package/dist/es2019/ui/jql-editor-footer-content/jql-messages/infos/index.js +1 -2
- package/dist/es2019/ui/jql-editor-footer-content/jql-messages/warnings/index.js +1 -2
- package/dist/es2019/ui/jql-editor-layout/styled.js +20 -21
- package/dist/esm/analytics/util.js +1 -1
- package/dist/esm/async.js +2 -0
- package/dist/esm/plugins/autocomplete/components/autocomplete-dropdown/styled.js +7 -8
- package/dist/esm/plugins/autocomplete/components/autocomplete-option/index.js +1 -2
- package/dist/esm/plugins/autocomplete/components/autocomplete-option/styled.js +5 -6
- package/dist/esm/plugins/rich-inline-nodes/nodes/team/styled.js +13 -14
- package/dist/esm/plugins/rich-inline-nodes/nodes/user/styled.js +13 -14
- package/dist/esm/state/hydration/index.js +10 -3
- package/dist/esm/state/hydration/util.js +10 -1
- package/dist/esm/state/index.js +21 -10
- package/dist/esm/ui/jql-editor-controls-content/base-expand-toggle/index.js +2 -3
- package/dist/esm/ui/jql-editor-controls-content/base-expand-toggle/styled.js +2 -3
- package/dist/esm/ui/jql-editor-controls-content/base-syntax-help/index.js +1 -2
- package/dist/esm/ui/jql-editor-controls-content/base-syntax-help/styled.js +5 -6
- package/dist/esm/ui/jql-editor-footer-content/jql-messages/infos/index.js +1 -2
- package/dist/esm/ui/jql-editor-footer-content/jql-messages/warnings/index.js +1 -2
- package/dist/esm/ui/jql-editor-layout/styled.js +15 -16
- package/dist/types/state/hydration/util.d.ts +6 -0
- package/dist/types-ts4.5/state/hydration/util.d.ts +6 -0
- package/package.json +8 -8
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
2
2
|
import styled from '@emotion/styled';
|
|
3
|
-
import { N40, N50 } from '@atlaskit/theme/colors';
|
|
4
3
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
5
4
|
export var ExpandToggleContainer = styled.div({
|
|
6
5
|
/* Override background styles for our button to match designs */
|
|
@@ -10,11 +9,11 @@ export var ExpandToggleContainer = styled.div({
|
|
|
10
9
|
/* Fill the remaining vertical space for a single line in our editor and space between buttons */
|
|
11
10
|
margin: "var(--ds-space-050, 4px)".concat(" 0"),
|
|
12
11
|
'&:hover': {
|
|
13
|
-
background: "var(--ds-background-neutral-subtle-hovered,
|
|
12
|
+
background: "var(--ds-background-neutral-subtle-hovered, #0515240F)"
|
|
14
13
|
},
|
|
15
14
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
16
15
|
"&:active, &[data-firefox-is-active='true']": {
|
|
17
|
-
background: "var(--ds-background-neutral-subtle-pressed,
|
|
16
|
+
background: "var(--ds-background-neutral-subtle-pressed, #0B120E24)"
|
|
18
17
|
}
|
|
19
18
|
}
|
|
20
19
|
});
|
|
@@ -6,7 +6,6 @@ import QuestionCircleIcon from '@atlaskit/icon/core/question-circle';
|
|
|
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
|
-
import { N0 } from '@atlaskit/theme/colors';
|
|
10
9
|
import { SyntaxHelpContainer } from './styled';
|
|
11
10
|
|
|
12
11
|
// Fixes icon margin issus after new icon migration
|
|
@@ -45,7 +44,7 @@ export var BaseSyntaxHelp = function BaseSyntaxHelp(_ref) {
|
|
|
45
44
|
xcss: iconStyle
|
|
46
45
|
}, /*#__PURE__*/React.createElement(QuestionCircleIcon, {
|
|
47
46
|
label: '',
|
|
48
|
-
color: isDisabled ? "var(--ds-icon-disabled,
|
|
47
|
+
color: isDisabled ? "var(--ds-icon-disabled, #080F214A)" : "var(--ds-icon-inverse, #FFFFFF)"
|
|
49
48
|
})),
|
|
50
49
|
onClick: onClick
|
|
51
50
|
}));
|
|
@@ -1,26 +1,25 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
2
2
|
import styled from '@emotion/styled';
|
|
3
|
-
import { N50, N500, N600, N70 } from '@atlaskit/theme/colors';
|
|
4
3
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
5
4
|
export var SyntaxHelpContainer = styled.div({
|
|
6
5
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
7
6
|
'> a': {
|
|
8
|
-
background: "var(--ds-background-neutral-bold,
|
|
7
|
+
background: "var(--ds-background-neutral-bold, #292A2E)",
|
|
9
8
|
borderRadius: "var(--ds-radius-full, 9999px)",
|
|
10
9
|
margin: "var(--ds-space-050, 4px)",
|
|
11
10
|
'&:hover': {
|
|
12
|
-
background: "var(--ds-background-neutral-bold-hovered,
|
|
11
|
+
background: "var(--ds-background-neutral-bold-hovered, #3B3D42)"
|
|
13
12
|
},
|
|
14
13
|
'&:focus': {
|
|
15
|
-
background: "var(--ds-background-neutral-bold,
|
|
14
|
+
background: "var(--ds-background-neutral-bold, #292A2E)"
|
|
16
15
|
},
|
|
17
16
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
18
17
|
"&:active, &[data-firefox-is-active='true']": {
|
|
19
|
-
background: "var(--ds-background-neutral-bold-pressed,
|
|
18
|
+
background: "var(--ds-background-neutral-bold-pressed, #505258)"
|
|
20
19
|
},
|
|
21
20
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
22
21
|
'&[disabled]': {
|
|
23
|
-
background: "var(--ds-background-disabled,
|
|
22
|
+
background: "var(--ds-background-disabled, #17171708)"
|
|
24
23
|
}
|
|
25
24
|
}
|
|
26
25
|
});
|
|
@@ -4,7 +4,6 @@ import { di } from 'react-magnetic-di';
|
|
|
4
4
|
import { HelperMessage } from '@atlaskit/form';
|
|
5
5
|
import StatusInformationIcon from '@atlaskit/icon/core/status-information';
|
|
6
6
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
7
|
-
import * as colors from '@atlaskit/theme/colors';
|
|
8
7
|
import { useEditorViewHasInfos } from '../../../../hooks/use-editor-view-has-infos';
|
|
9
8
|
import { useExternalMessages } from '../../../../state';
|
|
10
9
|
import { FormatMessages, MessageContainer } from '../format';
|
|
@@ -29,7 +28,7 @@ export var InfoMessages = function InfoMessages() {
|
|
|
29
28
|
paddingInlineEnd: "space.050"
|
|
30
29
|
}, /*#__PURE__*/React.createElement(StatusInformationIcon, {
|
|
31
30
|
label: "",
|
|
32
|
-
color: "var(--ds-icon-information,
|
|
31
|
+
color: "var(--ds-icon-information, #357DE8)",
|
|
33
32
|
size: "small"
|
|
34
33
|
})), infoMessage)) : null;
|
|
35
34
|
};
|
|
@@ -7,7 +7,6 @@ import StatusWarningIcon from '@atlaskit/icon/core/status-warning';
|
|
|
7
7
|
import Link from '@atlaskit/link';
|
|
8
8
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
9
9
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
10
|
-
import * as colors from '@atlaskit/theme/colors';
|
|
11
10
|
import { useEditorViewHasWarnings } from '../../../../hooks/use-editor-view-has-warnings';
|
|
12
11
|
import { useExternalMessages, useHydratedDeprecations, useIntl } from '../../../../state';
|
|
13
12
|
import { FormatMessages, MessageContainer } from '../format';
|
|
@@ -120,7 +119,7 @@ export var WarningMessages = function WarningMessages() {
|
|
|
120
119
|
paddingInlineEnd: "space.050"
|
|
121
120
|
}, /*#__PURE__*/React.createElement(StatusWarningIcon, {
|
|
122
121
|
label: "",
|
|
123
|
-
color: "var(--ds-icon-warning,
|
|
122
|
+
color: "var(--ds-icon-warning, #E06C00)",
|
|
124
123
|
size: "small"
|
|
125
124
|
})), warningMessage)) : null;
|
|
126
125
|
};
|
|
@@ -5,7 +5,6 @@ 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
7
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
8
|
-
import { B200, B300, G500, N0, N10, N100, N30, N700, N800, N900, P400, R400 } from '@atlaskit/theme/colors';
|
|
9
8
|
import { layers } from '@atlaskit/theme/constants';
|
|
10
9
|
import { TOOLTIP_CLASSNAME, TOOLTIP_ENTER_CLASSNAME, TOOLTIP_EXIT_CLASSNAME } from '../../plugins/validation-tooltip/constants';
|
|
11
10
|
var fadeIn = keyframes({
|
|
@@ -27,7 +26,7 @@ var fadeOut = keyframes({
|
|
|
27
26
|
});
|
|
28
27
|
|
|
29
28
|
// eslint-disable-next-line @atlaskit/design-system/no-styled-tagged-template-expression, @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
30
|
-
export var EditorMain = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n\t/* CSS reset */\n\tfont-family: ", ";\n\tfont-size: 14px;\n\tflex-grow: 1;\n\n\t/* These styles and animations are derived from @atlaskit/tooltip */\n\n\t.", " {\n\t\tbackground-color: ", ";\n\t\tcolor: ", ";\n\t\tborder-radius: ", ";\n\t\tbox-sizing: border-box;\n\t\tfont: ", ";\n\t\tline-height: 1.3;\n\t\tmax-width: 240px;\n\t\tpadding: ", " ", ";\n\t\tword-wrap: break-word;\n\t\toverflow-wrap: break-word;\n\t\tz-index: ", ";\n\t\tpointer-events: none;\n\t\tposition: absolute;\n\t\tvisibility: hidden;\n\n\t\t/* Horizontally center and vertically position above the target element */\n\t\ttransform: translate(-50%, calc(-100% - ", "));\n\n\t\t&.", " {\n\t\t\tanimation: ", " 350ms cubic-bezier(0.15, 1, 0.3, 1);\n\t\t\tvisibility: visible;\n\t\t}\n\n\t\t&.", " {\n\t\t\tanimation: ", " 350ms cubic-bezier(0.15, 1, 0.3, 1);\n\t\t}\n\t}\n"])), "var(--ds-font-family-body, \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)", TOOLTIP_CLASSNAME, "var(--ds-background-neutral-bold,
|
|
29
|
+
export var EditorMain = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n\t/* CSS reset */\n\tfont-family: ", ";\n\tfont-size: 14px;\n\tflex-grow: 1;\n\n\t/* These styles and animations are derived from @atlaskit/tooltip */\n\n\t.", " {\n\t\tbackground-color: ", ";\n\t\tcolor: ", ";\n\t\tborder-radius: ", ";\n\t\tbox-sizing: border-box;\n\t\tfont: ", ";\n\t\tline-height: 1.3;\n\t\tmax-width: 240px;\n\t\tpadding: ", " ", ";\n\t\tword-wrap: break-word;\n\t\toverflow-wrap: break-word;\n\t\tz-index: ", ";\n\t\tpointer-events: none;\n\t\tposition: absolute;\n\t\tvisibility: hidden;\n\n\t\t/* Horizontally center and vertically position above the target element */\n\t\ttransform: translate(-50%, calc(-100% - ", "));\n\n\t\t&.", " {\n\t\t\tanimation: ", " 350ms cubic-bezier(0.15, 1, 0.3, 1);\n\t\t\tvisibility: visible;\n\t\t}\n\n\t\t&.", " {\n\t\t\tanimation: ", " 350ms cubic-bezier(0.15, 1, 0.3, 1);\n\t\t}\n\t}\n"])), "var(--ds-font-family-body, \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)", TOOLTIP_CLASSNAME, "var(--ds-background-neutral-bold, #292A2E)", "var(--ds-text-inverse, #FFFFFF)", "var(--ds-radius-small, 3px)", "var(--ds-font-body-small, normal 400 12px/16px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)", "var(--ds-space-025, 2px)", "var(--ds-space-075, 6px)", layers.tooltip(), "var(--ds-space-200, 16px)", TOOLTIP_ENTER_CLASSNAME, fadeIn, TOOLTIP_EXIT_CLASSNAME, fadeOut);
|
|
31
30
|
|
|
32
31
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
33
32
|
export var EditorFooter = styled.div({
|
|
@@ -45,14 +44,14 @@ var getEditorInputVerticalPadding = function getEditorInputVerticalPadding(isCom
|
|
|
45
44
|
var editorInputHorizontalPadding = 6;
|
|
46
45
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
47
46
|
export var EditorViewContainer = styled.div({
|
|
48
|
-
backgroundColor: "var(--ds-background-input,
|
|
47
|
+
backgroundColor: "var(--ds-background-input, #FFFFFF)",
|
|
49
48
|
borderStyle: 'solid',
|
|
50
49
|
borderWidth: "var(--ds-border-width, 1px)",
|
|
51
|
-
borderColor: "var(--ds-border-input,
|
|
50
|
+
borderColor: "var(--ds-border-input, #8C8F97)",
|
|
52
51
|
borderRadius: "var(--ds-radius-medium, 3px)",
|
|
53
52
|
padding: "var(--ds-border-width, 1px)",
|
|
54
53
|
boxSizing: 'border-box',
|
|
55
|
-
color: "var(--ds-text,
|
|
54
|
+
color: "var(--ds-text, #292A2E)",
|
|
56
55
|
display: 'flex',
|
|
57
56
|
overflow: 'auto',
|
|
58
57
|
transition: 'background-color 0.2s ease-in-out, border-color 0.2s ease-in-out'
|
|
@@ -62,8 +61,8 @@ function (props) {
|
|
|
62
61
|
return props.editorViewIsInvalid &&
|
|
63
62
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
64
63
|
css({
|
|
65
|
-
borderColor: "var(--ds-border-danger,
|
|
66
|
-
boxShadow: "inset 0 0 0 ".concat("var(--ds-border-width, 1px)", " ", "var(--ds-border-danger,
|
|
64
|
+
borderColor: "var(--ds-border-danger, #E2483D)",
|
|
65
|
+
boxShadow: "inset 0 0 0 ".concat("var(--ds-border-width, 1px)", " ", "var(--ds-border-danger, #E2483D)")
|
|
67
66
|
});
|
|
68
67
|
},
|
|
69
68
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-dynamic-styles -- Ignored via go/DSP-18766
|
|
@@ -71,28 +70,28 @@ function (props) {
|
|
|
71
70
|
return props.editorViewHasFocus ?
|
|
72
71
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
73
72
|
css({
|
|
74
|
-
backgroundColor: "var(--ds-surface,
|
|
75
|
-
borderColor: "var(--ds-border-focused,
|
|
76
|
-
boxShadow: "inset 0 0 0 ".concat("var(--ds-border-width, 1px)", " ", "var(--ds-border-focused,
|
|
73
|
+
backgroundColor: "var(--ds-surface, #FFFFFF)",
|
|
74
|
+
borderColor: "var(--ds-border-focused, #4688EC)",
|
|
75
|
+
boxShadow: "inset 0 0 0 ".concat("var(--ds-border-width, 1px)", " ", "var(--ds-border-focused, #4688EC)")
|
|
77
76
|
}) :
|
|
78
77
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
79
78
|
css({
|
|
80
79
|
'&:hover': {
|
|
81
|
-
backgroundColor: "var(--ds-background-input-hovered,
|
|
80
|
+
backgroundColor: "var(--ds-background-input-hovered, #F8F8F8)"
|
|
82
81
|
}
|
|
83
82
|
});
|
|
84
83
|
});
|
|
85
84
|
|
|
86
85
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
87
86
|
export var ReadOnlyEditorViewContainer = styled(EditorViewContainer)({
|
|
88
|
-
backgroundColor: "var(--ds-background-disabled,
|
|
89
|
-
color: "var(--ds-text-disabled,
|
|
87
|
+
backgroundColor: "var(--ds-background-disabled, #17171708)",
|
|
88
|
+
color: "var(--ds-text-disabled, #080F214A)",
|
|
90
89
|
pointerEvents: 'none'
|
|
91
90
|
});
|
|
92
91
|
|
|
93
92
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
94
93
|
export var LineNumberToolbar = styled.div({
|
|
95
|
-
backgroundColor: "var(--ds-background-neutral,
|
|
94
|
+
backgroundColor: "var(--ds-background-neutral, #0515240F)",
|
|
96
95
|
flexShrink: 0,
|
|
97
96
|
width: '30px',
|
|
98
97
|
position: 'sticky',
|
|
@@ -121,9 +120,9 @@ export var EditorView = styled.div(_templateObject2 || (_templateObject2 = _tagg
|
|
|
121
120
|
return rowHeight * props.expandedRows + getEditorInputVerticalPadding(props.isCompact) * 2;
|
|
122
121
|
}, function (props) {
|
|
123
122
|
return rowHeight * props.expandedRows + getEditorInputVerticalPadding(props.isCompact) * 2;
|
|
124
|
-
}, "var(--ds-text,
|
|
123
|
+
}, "var(--ds-text, #292A2E)", function (props) {
|
|
125
124
|
return getEditorInputVerticalPadding(props.isCompact);
|
|
126
|
-
}, editorInputHorizontalPadding, "var(--ds-text-accent-purple,
|
|
125
|
+
}, editorInputHorizontalPadding, "var(--ds-text-accent-purple, #803FA5)", "var(--ds-text-accent-blue, #1558BC)", "var(--ds-text-accent-green, #216E4E)", "var(--ds-text-danger, #AE2E24)", "var(--ds-text-subtlest, #6B6E76)", rowHeight / 10, "var(--ds-space-100, 8px)", "var(--ds-space-025, 2px)", "var(--ds-space-100, 8px)", function (props) {
|
|
127
126
|
return !props.lineNumbersVisible && // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression
|
|
128
127
|
css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n\t\t\t\t\tdisplay: none;\n\t\t\t\t"])));
|
|
129
128
|
});
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { AbstractJastVisitor, type CompoundClause, type FunctionOperand, type ListOperand, type NotClause, type Query, type TerminalClause, type ValueOperand } from '@atlaskit/jql-ast';
|
|
2
|
+
/**
|
|
3
|
+
* Normalise a JQL string for use as a hydration map key.
|
|
4
|
+
* Strips quotes/escaping and lowercases to ensure case-insensitive matching
|
|
5
|
+
* between field names from different sources (e.g. AST vs hydration API).
|
|
6
|
+
*/
|
|
7
|
+
export declare const normaliseHydrationKey: (key: string) => string;
|
|
2
8
|
/**
|
|
3
9
|
* Given an AST with parse errors, this visitor returns a valid query that is equivalent for hydration purposes
|
|
4
10
|
* (i.e. just fields, operators and values). Resulting query is generated on a best-effort basis and depends on
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { AbstractJastVisitor, type CompoundClause, type FunctionOperand, type ListOperand, type NotClause, type Query, type TerminalClause, type ValueOperand } from '@atlaskit/jql-ast';
|
|
2
|
+
/**
|
|
3
|
+
* Normalise a JQL string for use as a hydration map key.
|
|
4
|
+
* Strips quotes/escaping and lowercases to ensure case-insensitive matching
|
|
5
|
+
* between field names from different sources (e.g. AST vs hydration API).
|
|
6
|
+
*/
|
|
7
|
+
export declare const normaliseHydrationKey: (key: string) => string;
|
|
2
8
|
/**
|
|
3
9
|
* Given an AST with parse errors, this visitor returns a valid query that is equivalent for hydration purposes
|
|
4
10
|
* (i.e. just fields, operators and values). Resulting query is generated on a best-effort basis and depends on
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/jql-editor",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.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",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/afm-i18n-platform-jql-jql-editor": "2.10.0",
|
|
36
36
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
37
|
-
"@atlaskit/analytics-next": "^11.
|
|
38
|
-
"@atlaskit/avatar": "^25.
|
|
37
|
+
"@atlaskit/analytics-next": "^11.2.0",
|
|
38
|
+
"@atlaskit/avatar": "^25.11.0",
|
|
39
39
|
"@atlaskit/button": "^23.10.0",
|
|
40
40
|
"@atlaskit/css": "^0.19.0",
|
|
41
41
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
42
42
|
"@atlaskit/emoji": "^69.10.0",
|
|
43
|
-
"@atlaskit/form": "^15.
|
|
44
|
-
"@atlaskit/icon": "^33.
|
|
45
|
-
"@atlaskit/icon-lab": "^6.
|
|
43
|
+
"@atlaskit/form": "^15.5.0",
|
|
44
|
+
"@atlaskit/icon": "^33.1.0",
|
|
45
|
+
"@atlaskit/icon-lab": "^6.2.0",
|
|
46
46
|
"@atlaskit/jql-ast": "^3.4.0",
|
|
47
47
|
"@atlaskit/jql-autocomplete": "^2.0.0",
|
|
48
48
|
"@atlaskit/jql-editor-common": "^3.1.0",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"@atlaskit/link": "^3.3.0",
|
|
51
51
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
52
52
|
"@atlaskit/popper": "^7.1.0",
|
|
53
|
-
"@atlaskit/primitives": "^18.
|
|
53
|
+
"@atlaskit/primitives": "^18.1.0",
|
|
54
54
|
"@atlaskit/prosemirror-history": "^0.2.0",
|
|
55
55
|
"@atlaskit/spinner": "^19.0.0",
|
|
56
56
|
"@atlaskit/teams-avatar": "^2.4.0",
|
|
57
57
|
"@atlaskit/theme": "^22.0.0",
|
|
58
|
-
"@atlaskit/tokens": "^11.
|
|
58
|
+
"@atlaskit/tokens": "^11.4.0",
|
|
59
59
|
"@atlaskit/tooltip": "^21.0.0",
|
|
60
60
|
"@atlaskit/townsquare-emoji-provider": "^1.0.0",
|
|
61
61
|
"@babel/runtime": "^7.0.0",
|