@atlaskit/mention 23.4.6 → 23.4.7
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 +9 -0
- package/dist/cjs/components/MentionListError/index.js +21 -3
- package/dist/cjs/components/MentionListError/styles.js +2 -29
- package/dist/cjs/util/analytics.js +1 -1
- package/dist/es2019/components/MentionListError/index.js +21 -3
- package/dist/es2019/components/MentionListError/styles.js +0 -31
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/esm/components/MentionListError/index.js +21 -3
- package/dist/esm/components/MentionListError/styles.js +0 -30
- package/dist/esm/util/analytics.js +1 -1
- package/dist/types/components/MentionListError/styles.d.ts +0 -12
- package/dist/types-ts4.5/components/MentionListError/styles.d.ts +0 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/mention
|
|
2
2
|
|
|
3
|
+
## 23.4.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#178297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/178297)
|
|
8
|
+
[`7abc8162b32ab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7abc8162b32ab) -
|
|
9
|
+
Internal changes to typography styles. There may be some minor visual changes to align with
|
|
10
|
+
modernized typography styles.
|
|
11
|
+
|
|
3
12
|
## 23.4.6
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -11,9 +11,10 @@ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime
|
|
|
11
11
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
12
12
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
13
13
|
var _react = _interopRequireDefault(require("react"));
|
|
14
|
+
var _heading = _interopRequireDefault(require("@atlaskit/heading"));
|
|
15
|
+
var _primitives = require("@atlaskit/primitives");
|
|
14
16
|
var _i18n = require("../../util/i18n");
|
|
15
17
|
var _GenericErrorIllustration = require("./GenericErrorIllustration");
|
|
16
|
-
var _styles = require("./styles");
|
|
17
18
|
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
|
|
18
19
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
19
20
|
var advisedActionMessages = {
|
|
@@ -32,7 +33,20 @@ var MentionListError = exports.default = /*#__PURE__*/function (_React$PureCompo
|
|
|
32
33
|
value: function render() {
|
|
33
34
|
var error = this.props.error;
|
|
34
35
|
var ErrorMessage = MentionListError.getAdvisedActionMessage(error);
|
|
35
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
36
|
+
return /*#__PURE__*/_react.default.createElement(_primitives.Stack, {
|
|
37
|
+
space: "space.400",
|
|
38
|
+
alignBlock: "center",
|
|
39
|
+
alignInline: "center",
|
|
40
|
+
xcss: mentionListErrorStyles
|
|
41
|
+
}, /*#__PURE__*/_react.default.createElement(_GenericErrorIllustration.GenericErrorIllustration, null), /*#__PURE__*/_react.default.createElement(_primitives.Stack, {
|
|
42
|
+
space: "space.100"
|
|
43
|
+
}, /*#__PURE__*/_react.default.createElement(_heading.default, {
|
|
44
|
+
size: "xsmall",
|
|
45
|
+
as: "div"
|
|
46
|
+
}, /*#__PURE__*/_react.default.createElement(_i18n.DefaultHeadline, null)), /*#__PURE__*/_react.default.createElement(_primitives.Text, {
|
|
47
|
+
as: "p",
|
|
48
|
+
color: "color.text.subtle"
|
|
49
|
+
}, /*#__PURE__*/_react.default.createElement(ErrorMessage, null))));
|
|
36
50
|
}
|
|
37
51
|
}], [{
|
|
38
52
|
key: "getAdvisedActionMessage",
|
|
@@ -50,4 +64,8 @@ var MentionListError = exports.default = /*#__PURE__*/function (_React$PureCompo
|
|
|
50
64
|
return advisedActionMessages.default;
|
|
51
65
|
}
|
|
52
66
|
}]);
|
|
53
|
-
}(_react.default.PureComponent);
|
|
67
|
+
}(_react.default.PureComponent);
|
|
68
|
+
var mentionListErrorStyles = (0, _primitives.xcss)({
|
|
69
|
+
paddingBlock: 'space.500',
|
|
70
|
+
textAlign: 'center'
|
|
71
|
+
});
|
|
@@ -4,38 +4,11 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.
|
|
8
|
-
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
7
|
+
exports.GenericErrorVisualStyle = void 0;
|
|
9
8
|
var _styled = _interopRequireDefault(require("@emotion/styled"));
|
|
10
|
-
|
|
11
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
12
|
-
var _typography = require("@atlaskit/theme/typography");
|
|
13
|
-
var _templateObject; // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
14
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
15
|
-
var MentionListErrorStyle = exports.MentionListErrorStyle = _styled.default.div({
|
|
16
|
-
alignItems: 'center',
|
|
17
|
-
display: 'flex',
|
|
18
|
-
justifyContent: 'center',
|
|
19
|
-
flexDirection: 'column',
|
|
20
|
-
backgroundColor: "var(--ds-surface-overlay, white)",
|
|
21
|
-
color: "var(--ds-text-subtle, ".concat(_colors.N500, ")"),
|
|
22
|
-
border: "1px solid ".concat("var(--ds-surface-overlay, #fff)"),
|
|
23
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
24
|
-
borderRadius: "".concat((0, _constants.borderRadius)(), "px")
|
|
25
|
-
});
|
|
9
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
26
10
|
|
|
27
11
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
28
12
|
var GenericErrorVisualStyle = exports.GenericErrorVisualStyle = _styled.default.div({
|
|
29
|
-
marginBottom: "var(--ds-space-100, 8px)",
|
|
30
|
-
marginTop: "var(--ds-space-400, 32px)",
|
|
31
13
|
width: "var(--ds-space-1000, 80px)"
|
|
32
|
-
});
|
|
33
|
-
|
|
34
|
-
// TODO: Figure out why the themed css function is causing type errors when passed prop children
|
|
35
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/design-system/no-styled-tagged-template-expression -- Ignored via go/DSP-18766
|
|
36
|
-
var MentionListErrorHeadlineStyle = exports.MentionListErrorHeadlineStyle = _styled.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n\t", ";\n\tmargin-bottom: ", ";\n"])), (0, _typography.h400)(), "var(--ds-space-100, 8px)");
|
|
37
|
-
|
|
38
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
39
|
-
var MentionListAdviceStyle = exports.MentionListAdviceStyle = _styled.default.div({
|
|
40
|
-
marginBottom: "var(--ds-space-600, 48px)"
|
|
41
14
|
});
|
|
@@ -12,7 +12,7 @@ var _types = require("../types");
|
|
|
12
12
|
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; }
|
|
13
13
|
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) { (0, _defineProperty2.default)(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; }
|
|
14
14
|
var packageName = "@atlaskit/mention";
|
|
15
|
-
var packageVersion = "23.4.
|
|
15
|
+
var packageVersion = "23.4.7";
|
|
16
16
|
var SLI_EVENT_TYPE = exports.SLI_EVENT_TYPE = 'sli';
|
|
17
17
|
var SMART_EVENT_TYPE = exports.SMART_EVENT_TYPE = 'smart';
|
|
18
18
|
var fireAnalyticsMentionTypeaheadEvent = exports.fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import Heading from '@atlaskit/heading';
|
|
3
|
+
import { Stack, Text, xcss } from '@atlaskit/primitives';
|
|
2
4
|
import { DefaultAdvisedAction, DefaultHeadline, DifferentText, LoginAgain } from '../../util/i18n';
|
|
3
5
|
import { GenericErrorIllustration } from './GenericErrorIllustration';
|
|
4
|
-
import { MentionListAdviceStyle, MentionListErrorHeadlineStyle, MentionListErrorStyle } from './styles';
|
|
5
6
|
const advisedActionMessages = {
|
|
6
7
|
'401': LoginAgain,
|
|
7
8
|
'403': DifferentText,
|
|
@@ -25,6 +26,23 @@ export default class MentionListError extends React.PureComponent {
|
|
|
25
26
|
error
|
|
26
27
|
} = this.props;
|
|
27
28
|
const ErrorMessage = MentionListError.getAdvisedActionMessage(error);
|
|
28
|
-
return /*#__PURE__*/React.createElement(
|
|
29
|
+
return /*#__PURE__*/React.createElement(Stack, {
|
|
30
|
+
space: "space.400",
|
|
31
|
+
alignBlock: "center",
|
|
32
|
+
alignInline: "center",
|
|
33
|
+
xcss: mentionListErrorStyles
|
|
34
|
+
}, /*#__PURE__*/React.createElement(GenericErrorIllustration, null), /*#__PURE__*/React.createElement(Stack, {
|
|
35
|
+
space: "space.100"
|
|
36
|
+
}, /*#__PURE__*/React.createElement(Heading, {
|
|
37
|
+
size: "xsmall",
|
|
38
|
+
as: "div"
|
|
39
|
+
}, /*#__PURE__*/React.createElement(DefaultHeadline, null)), /*#__PURE__*/React.createElement(Text, {
|
|
40
|
+
as: "p",
|
|
41
|
+
color: "color.text.subtle"
|
|
42
|
+
}, /*#__PURE__*/React.createElement(ErrorMessage, null))));
|
|
29
43
|
}
|
|
30
|
-
}
|
|
44
|
+
}
|
|
45
|
+
const mentionListErrorStyles = xcss({
|
|
46
|
+
paddingBlock: 'space.500',
|
|
47
|
+
textAlign: 'center'
|
|
48
|
+
});
|
|
@@ -1,37 +1,6 @@
|
|
|
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 { borderRadius } from '@atlaskit/theme/constants';
|
|
4
|
-
import { N500 } from '@atlaskit/theme/colors';
|
|
5
|
-
import { h400 } from '@atlaskit/theme/typography';
|
|
6
|
-
|
|
7
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
8
|
-
export const MentionListErrorStyle = styled.div({
|
|
9
|
-
alignItems: 'center',
|
|
10
|
-
display: 'flex',
|
|
11
|
-
justifyContent: 'center',
|
|
12
|
-
flexDirection: 'column',
|
|
13
|
-
backgroundColor: "var(--ds-surface-overlay, white)",
|
|
14
|
-
color: `var(--ds-text-subtle, ${N500})`,
|
|
15
|
-
border: `1px solid ${"var(--ds-surface-overlay, #fff)"}`,
|
|
16
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
17
|
-
borderRadius: `${borderRadius()}px`
|
|
18
|
-
});
|
|
19
|
-
|
|
20
3
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
21
4
|
export const GenericErrorVisualStyle = styled.div({
|
|
22
|
-
marginBottom: "var(--ds-space-100, 8px)",
|
|
23
|
-
marginTop: "var(--ds-space-400, 32px)",
|
|
24
5
|
width: "var(--ds-space-1000, 80px)"
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
// TODO: Figure out why the themed css function is causing type errors when passed prop children
|
|
28
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/design-system/no-styled-tagged-template-expression -- Ignored via go/DSP-18766
|
|
29
|
-
export const MentionListErrorHeadlineStyle = styled.div`
|
|
30
|
-
${h400()};
|
|
31
|
-
margin-bottom: ${"var(--ds-space-100, 8px)"};
|
|
32
|
-
`;
|
|
33
|
-
|
|
34
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
35
|
-
export const MentionListAdviceStyle = styled.div({
|
|
36
|
-
marginBottom: "var(--ds-space-600, 48px)"
|
|
37
6
|
});
|
|
@@ -2,7 +2,7 @@ import { OPERATIONAL_EVENT_TYPE, UI_EVENT_TYPE } from '@atlaskit/analytics-gas-t
|
|
|
2
2
|
import { ELEMENTS_CHANNEL } from '../_constants';
|
|
3
3
|
import { ComponentNames, isSpecialMentionText } from '../types';
|
|
4
4
|
const packageName = "@atlaskit/mention";
|
|
5
|
-
const packageVersion = "23.4.
|
|
5
|
+
const packageVersion = "23.4.7";
|
|
6
6
|
export const SLI_EVENT_TYPE = 'sli';
|
|
7
7
|
export const SMART_EVENT_TYPE = 'smart';
|
|
8
8
|
export const fireAnalyticsMentionTypeaheadEvent = props => (action, duration, userIds = [], query) => {
|
|
@@ -6,9 +6,10 @@ import _inherits from "@babel/runtime/helpers/inherits";
|
|
|
6
6
|
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
7
7
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
8
8
|
import React from 'react';
|
|
9
|
+
import Heading from '@atlaskit/heading';
|
|
10
|
+
import { Stack, Text, xcss } from '@atlaskit/primitives';
|
|
9
11
|
import { DefaultAdvisedAction, DefaultHeadline, DifferentText, LoginAgain } from '../../util/i18n';
|
|
10
12
|
import { GenericErrorIllustration } from './GenericErrorIllustration';
|
|
11
|
-
import { MentionListAdviceStyle, MentionListErrorHeadlineStyle, MentionListErrorStyle } from './styles';
|
|
12
13
|
var advisedActionMessages = {
|
|
13
14
|
'401': LoginAgain,
|
|
14
15
|
'403': DifferentText,
|
|
@@ -25,7 +26,20 @@ var MentionListError = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
25
26
|
value: function render() {
|
|
26
27
|
var error = this.props.error;
|
|
27
28
|
var ErrorMessage = MentionListError.getAdvisedActionMessage(error);
|
|
28
|
-
return /*#__PURE__*/React.createElement(
|
|
29
|
+
return /*#__PURE__*/React.createElement(Stack, {
|
|
30
|
+
space: "space.400",
|
|
31
|
+
alignBlock: "center",
|
|
32
|
+
alignInline: "center",
|
|
33
|
+
xcss: mentionListErrorStyles
|
|
34
|
+
}, /*#__PURE__*/React.createElement(GenericErrorIllustration, null), /*#__PURE__*/React.createElement(Stack, {
|
|
35
|
+
space: "space.100"
|
|
36
|
+
}, /*#__PURE__*/React.createElement(Heading, {
|
|
37
|
+
size: "xsmall",
|
|
38
|
+
as: "div"
|
|
39
|
+
}, /*#__PURE__*/React.createElement(DefaultHeadline, null)), /*#__PURE__*/React.createElement(Text, {
|
|
40
|
+
as: "p",
|
|
41
|
+
color: "color.text.subtle"
|
|
42
|
+
}, /*#__PURE__*/React.createElement(ErrorMessage, null))));
|
|
29
43
|
}
|
|
30
44
|
}], [{
|
|
31
45
|
key: "getAdvisedActionMessage",
|
|
@@ -44,4 +58,8 @@ var MentionListError = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
44
58
|
}
|
|
45
59
|
}]);
|
|
46
60
|
}(React.PureComponent);
|
|
47
|
-
export { MentionListError as default };
|
|
61
|
+
export { MentionListError as default };
|
|
62
|
+
var mentionListErrorStyles = xcss({
|
|
63
|
+
paddingBlock: 'space.500',
|
|
64
|
+
textAlign: 'center'
|
|
65
|
+
});
|
|
@@ -1,36 +1,6 @@
|
|
|
1
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
|
-
var _templateObject;
|
|
3
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
4
2
|
import styled from '@emotion/styled';
|
|
5
|
-
import { borderRadius } from '@atlaskit/theme/constants';
|
|
6
|
-
import { N500 } from '@atlaskit/theme/colors';
|
|
7
|
-
import { h400 } from '@atlaskit/theme/typography';
|
|
8
|
-
|
|
9
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
10
|
-
export var MentionListErrorStyle = styled.div({
|
|
11
|
-
alignItems: 'center',
|
|
12
|
-
display: 'flex',
|
|
13
|
-
justifyContent: 'center',
|
|
14
|
-
flexDirection: 'column',
|
|
15
|
-
backgroundColor: "var(--ds-surface-overlay, white)",
|
|
16
|
-
color: "var(--ds-text-subtle, ".concat(N500, ")"),
|
|
17
|
-
border: "1px solid ".concat("var(--ds-surface-overlay, #fff)"),
|
|
18
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
19
|
-
borderRadius: "".concat(borderRadius(), "px")
|
|
20
|
-
});
|
|
21
|
-
|
|
22
3
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
23
4
|
export var GenericErrorVisualStyle = styled.div({
|
|
24
|
-
marginBottom: "var(--ds-space-100, 8px)",
|
|
25
|
-
marginTop: "var(--ds-space-400, 32px)",
|
|
26
5
|
width: "var(--ds-space-1000, 80px)"
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
// TODO: Figure out why the themed css function is causing type errors when passed prop children
|
|
30
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/design-system/no-styled-tagged-template-expression -- Ignored via go/DSP-18766
|
|
31
|
-
export var MentionListErrorHeadlineStyle = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n\t", ";\n\tmargin-bottom: ", ";\n"])), h400(), "var(--ds-space-100, 8px)");
|
|
32
|
-
|
|
33
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
34
|
-
export var MentionListAdviceStyle = styled.div({
|
|
35
|
-
marginBottom: "var(--ds-space-600, 48px)"
|
|
36
6
|
});
|
|
@@ -5,7 +5,7 @@ import { OPERATIONAL_EVENT_TYPE, UI_EVENT_TYPE } from '@atlaskit/analytics-gas-t
|
|
|
5
5
|
import { ELEMENTS_CHANNEL } from '../_constants';
|
|
6
6
|
import { ComponentNames, isSpecialMentionText } from '../types';
|
|
7
7
|
var packageName = "@atlaskit/mention";
|
|
8
|
-
var packageVersion = "23.4.
|
|
8
|
+
var packageVersion = "23.4.7";
|
|
9
9
|
export var SLI_EVENT_TYPE = 'sli';
|
|
10
10
|
export var SMART_EVENT_TYPE = 'smart';
|
|
11
11
|
export var fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const MentionListErrorStyle: import("@emotion/styled").StyledComponent<{
|
|
3
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
5
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
2
|
export declare const GenericErrorVisualStyle: import("@emotion/styled").StyledComponent<{
|
|
7
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
4
|
as?: import("react").ElementType<any> | undefined;
|
|
9
5
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
10
|
-
export declare const MentionListErrorHeadlineStyle: import("@emotion/styled").StyledComponent<{
|
|
11
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
12
|
-
as?: import("react").ElementType<any> | undefined;
|
|
13
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
14
|
-
export declare const MentionListAdviceStyle: import("@emotion/styled").StyledComponent<{
|
|
15
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
16
|
-
as?: import("react").ElementType<any> | undefined;
|
|
17
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const MentionListErrorStyle: import("@emotion/styled").StyledComponent<{
|
|
3
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
5
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
2
|
export declare const GenericErrorVisualStyle: import("@emotion/styled").StyledComponent<{
|
|
7
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
4
|
as?: import("react").ElementType<any> | undefined;
|
|
9
5
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
10
|
-
export declare const MentionListErrorHeadlineStyle: import("@emotion/styled").StyledComponent<{
|
|
11
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
12
|
-
as?: import("react").ElementType<any> | undefined;
|
|
13
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
14
|
-
export declare const MentionListAdviceStyle: import("@emotion/styled").StyledComponent<{
|
|
15
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
16
|
-
as?: import("react").ElementType<any> | undefined;
|
|
17
|
-
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
package/package.json
CHANGED