@atlaskit/emoji 69.3.8 → 69.3.10
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 +15 -0
- package/afm-rovo-extension/tsconfig.json +78 -0
- package/afm-townsquare/tsconfig.json +78 -0
- package/dist/cjs/components/common/EmojiErrorMessage.js +3 -3
- package/dist/cjs/components/common/EmojiPreviewComponent.compiled.css +1 -1
- package/dist/cjs/components/common/EmojiPreviewComponent.js +2 -2
- package/dist/cjs/components/common/EmojiUploadPicker.js +2 -2
- package/dist/cjs/util/analytics/analytics.js +1 -1
- package/dist/es2019/components/common/EmojiErrorMessage.js +1 -1
- package/dist/es2019/components/common/EmojiPreviewComponent.compiled.css +1 -1
- package/dist/es2019/components/common/EmojiPreviewComponent.js +2 -2
- package/dist/es2019/components/common/EmojiUploadPicker.js +1 -1
- package/dist/es2019/util/analytics/analytics.js +1 -1
- package/dist/esm/components/common/EmojiErrorMessage.js +1 -1
- package/dist/esm/components/common/EmojiPreviewComponent.compiled.css +1 -1
- package/dist/esm/components/common/EmojiPreviewComponent.js +3 -3
- package/dist/esm/components/common/EmojiUploadPicker.js +1 -1
- package/dist/esm/util/analytics/analytics.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/emoji
|
|
2
2
|
|
|
3
|
+
## 69.3.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#188952](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188952)
|
|
8
|
+
[`1a88e6e2601ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a88e6e2601ae) -
|
|
9
|
+
Migrated usage of renamed/deprecated icons
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 69.3.9
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 69.3.8
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.rovo-extension.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../rovo-extension/tsDist/@atlaskit__emoji/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../analytics/analytics-next/afm-rovo-extension/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../../design-system/button/afm-rovo-extension/tsconfig.json"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../design-system/css/afm-rovo-extension/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/heading/afm-rovo-extension/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/icon/afm-rovo-extension/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../media/media-client/afm-rovo-extension/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../media/media-client-react/afm-rovo-extension/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../platform/feature-flags/afm-rovo-extension/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../platform/feature-flags-react/afm-rovo-extension/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/primitives/afm-rovo-extension/tsconfig.json"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "../../../react-ufo/atlaskit/afm-rovo-extension/tsconfig.json"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"path": "../../../design-system/spinner/afm-rovo-extension/tsconfig.json"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "../../../design-system/textfield/afm-rovo-extension/tsconfig.json"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"path": "../../../design-system/theme/afm-rovo-extension/tsconfig.json"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"path": "../../../design-system/tokens/afm-rovo-extension/tsconfig.json"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"path": "../../../design-system/tooltip/afm-rovo-extension/tsconfig.json"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"path": "../../../data/ufo-external/afm-rovo-extension/tsconfig.json"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"path": "../../util-service-support/afm-rovo-extension/tsconfig.json"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"path": "../../../design-system/visually-hidden/afm-rovo-extension/tsconfig.json"
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.townsquare.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../townsquare/tsDist/@atlaskit__emoji/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../analytics/analytics-next/afm-townsquare/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../../design-system/button/afm-townsquare/tsconfig.json"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../design-system/css/afm-townsquare/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/heading/afm-townsquare/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../media/media-client/afm-townsquare/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../media/media-client-react/afm-townsquare/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../platform/feature-flags/afm-townsquare/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../platform/feature-flags-react/afm-townsquare/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/primitives/afm-townsquare/tsconfig.json"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "../../../react-ufo/atlaskit/afm-townsquare/tsconfig.json"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"path": "../../../design-system/spinner/afm-townsquare/tsconfig.json"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "../../../design-system/textfield/afm-townsquare/tsconfig.json"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"path": "../../../design-system/theme/afm-townsquare/tsconfig.json"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"path": "../../../design-system/tooltip/afm-townsquare/tsconfig.json"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"path": "../../../data/ufo-external/afm-townsquare/tsconfig.json"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"path": "../../util-service-support/afm-townsquare/tsconfig.json"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"path": "../../../design-system/visually-hidden/afm-townsquare/tsconfig.json"
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
@@ -12,7 +12,7 @@ var React = _interopRequireWildcard(require("react"));
|
|
|
12
12
|
var _runtime = require("@compiled/react/runtime");
|
|
13
13
|
var _colors = require("@atlaskit/theme/colors");
|
|
14
14
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
15
|
-
var
|
|
15
|
+
var _statusErrorError = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-error--error"));
|
|
16
16
|
var _reactIntlNext = require("react-intl-next");
|
|
17
17
|
var _i18n = require("../i18n");
|
|
18
18
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
@@ -38,7 +38,7 @@ var EmojiErrorMessage = function EmojiErrorMessage(props) {
|
|
|
38
38
|
content: message,
|
|
39
39
|
position: "top",
|
|
40
40
|
testId: emojiErrorMessageTooltipTestId
|
|
41
|
-
}, /*#__PURE__*/React.createElement(
|
|
41
|
+
}, /*#__PURE__*/React.createElement(_statusErrorError.default, {
|
|
42
42
|
color: "currentColor",
|
|
43
43
|
label: formatMessage(_i18n.messages.error),
|
|
44
44
|
LEGACY_size: "medium",
|
|
@@ -47,7 +47,7 @@ var EmojiErrorMessage = function EmojiErrorMessage(props) {
|
|
|
47
47
|
}))) : /*#__PURE__*/React.createElement("div", {
|
|
48
48
|
"data-testid": emojiErrorMessageTestId,
|
|
49
49
|
className: (0, _runtime.ax)([errorMessageStyles[errorStyle]])
|
|
50
|
-
}, /*#__PURE__*/React.createElement(
|
|
50
|
+
}, /*#__PURE__*/React.createElement(_statusErrorError.default, {
|
|
51
51
|
color: "currentColor",
|
|
52
52
|
label: formatMessage(_i18n.messages.error),
|
|
53
53
|
LEGACY_size: "small"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
._p12f3sup{max-width:285px}
|
|
45
45
|
._pdfdidpf .emoji-common-emoji-sprite, ._mwo3idpf span[role=img]{padding-left:0}
|
|
46
46
|
._pnmbovqm:first-of-type{color:var(--_5xk3r4)}
|
|
47
|
-
.
|
|
47
|
+
._syaz121t{color:var(--_1pseksa)}
|
|
48
48
|
._syazovqm{color:var(--_5xk3r4)}
|
|
49
49
|
._u5f319bv{padding-right:10px}
|
|
50
50
|
._vwz4kb7n{line-height:1}
|
|
@@ -35,9 +35,9 @@ var EmojiPreviewComponent = exports.EmojiPreviewComponent = function EmojiPrevie
|
|
|
35
35
|
"--_5xk3r4": (0, _runtime.ix)("var(--ds-text, ".concat(_colors.N900, ")"))
|
|
36
36
|
}
|
|
37
37
|
}, emoji.name), /*#__PURE__*/React.createElement("div", {
|
|
38
|
-
className: (0, _runtime.ax)(["_11c8dcr7 _1reo15vq _18m915vq _1e0c1ule
|
|
38
|
+
className: (0, _runtime.ax)(["_11c8dcr7 _1reo15vq _18m915vq _1e0c1ule _syaz121t _vwz4kb7n _otyr1i6y _n3tdv77o _1bto1l2s _o5721q9c _10hw2smr _pnmbovqm"]),
|
|
39
39
|
style: {
|
|
40
|
-
"--
|
|
40
|
+
"--_1pseksa": (0, _runtime.ix)("var(--ds-text-subtle, ".concat(_colors.N400, ")")),
|
|
41
41
|
"--_5xk3r4": (0, _runtime.ix)("var(--ds-text, ".concat(_colors.N900, ")"))
|
|
42
42
|
}
|
|
43
43
|
}, emoji.shortName)));
|
|
@@ -17,7 +17,7 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
17
17
|
var _colors = require("@atlaskit/theme/colors");
|
|
18
18
|
var _reactIntlNext = require("react-intl-next");
|
|
19
19
|
var _textfield = _interopRequireDefault(require("@atlaskit/textfield"));
|
|
20
|
-
var
|
|
20
|
+
var _cross = _interopRequireDefault(require("@atlaskit/icon/core/migration/cross"));
|
|
21
21
|
var _standardButton = _interopRequireDefault(require("@atlaskit/button/standard-button"));
|
|
22
22
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
23
23
|
var _reactFocusLock = _interopRequireDefault(require("react-focus-lock"));
|
|
@@ -100,7 +100,7 @@ var ChooseEmojiFile = /*#__PURE__*/(0, _react.memo)(function (props) {
|
|
|
100
100
|
spacing: "none",
|
|
101
101
|
shouldFitContainer: true,
|
|
102
102
|
testId: cancelEmojiUploadPickerTestId
|
|
103
|
-
}, /*#__PURE__*/React.createElement(
|
|
103
|
+
}, /*#__PURE__*/React.createElement(_cross.default, {
|
|
104
104
|
color: "currentColor",
|
|
105
105
|
LEGACY_size: "small",
|
|
106
106
|
label: cancelLabel
|
|
@@ -20,7 +20,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
20
20
|
actionSubjectId: actionSubjectId,
|
|
21
21
|
attributes: _objectSpread({
|
|
22
22
|
packageName: "@atlaskit/emoji",
|
|
23
|
-
packageVersion: "69.3.
|
|
23
|
+
packageVersion: "69.3.9"
|
|
24
24
|
}, attributes)
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import { R300, R400 } from '@atlaskit/theme/colors';
|
|
6
6
|
import Tooltip from '@atlaskit/tooltip';
|
|
7
|
-
import ErrorIcon from '@atlaskit/icon/core/migration/error';
|
|
7
|
+
import ErrorIcon from '@atlaskit/icon/core/migration/status-error--error';
|
|
8
8
|
import { useIntl } from 'react-intl-next';
|
|
9
9
|
import { messages } from '../i18n';
|
|
10
10
|
const errorMessageStyles = {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
._p12f3sup{max-width:285px}
|
|
45
45
|
._pdfdidpf .emoji-common-emoji-sprite, ._mwo3idpf span[role=img]{padding-left:0}
|
|
46
46
|
._pnmbj3m3:first-of-type{color:var(--ds-text,#091e42)}
|
|
47
|
-
.
|
|
47
|
+
._syaz1a45{color:var(--ds-text-subtle,#505f79)}
|
|
48
48
|
._syazj3m3{color:var(--ds-text,#091e42)}
|
|
49
49
|
._u5f319bv{padding-right:10px}
|
|
50
50
|
._vwz4kb7n{line-height:1}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import "./EmojiPreviewComponent.compiled.css";
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
|
-
import {
|
|
5
|
+
import { N400, N900 } from '@atlaskit/theme/colors';
|
|
6
6
|
import CachingEmoji from './CachingEmoji';
|
|
7
7
|
const emojiName = null;
|
|
8
8
|
const emojiShortName = null;
|
|
@@ -24,6 +24,6 @@ export const EmojiPreviewComponent = ({
|
|
|
24
24
|
}, emoji.name && /*#__PURE__*/React.createElement("div", {
|
|
25
25
|
className: ax(["_1reo15vq _18m915vq _1e0c1ule _syazj3m3 _1bto1l2s _o5721q9c _299mangw"])
|
|
26
26
|
}, emoji.name), /*#__PURE__*/React.createElement("div", {
|
|
27
|
-
className: ax(["_11c8dcr7 _1reo15vq _18m915vq _1e0c1ule
|
|
27
|
+
className: ax(["_11c8dcr7 _1reo15vq _18m915vq _1e0c1ule _syaz1a45 _vwz4kb7n _otyr1i6y _n3tdv77o _1bto1l2s _o5721q9c _10hw2smr _pnmbj3m3"])
|
|
28
28
|
}, emoji.shortName)));
|
|
29
29
|
};
|
|
@@ -6,7 +6,7 @@ import { useEffect, useLayoutEffect, useState, useRef, memo, useCallback } from
|
|
|
6
6
|
import { N300 } from '@atlaskit/theme/colors';
|
|
7
7
|
import { FormattedMessage, injectIntl } from 'react-intl-next';
|
|
8
8
|
import TextField from '@atlaskit/textfield';
|
|
9
|
-
import CrossIcon from '@atlaskit/icon/core/migration/
|
|
9
|
+
import CrossIcon from '@atlaskit/icon/core/migration/cross';
|
|
10
10
|
import AkButton from '@atlaskit/button/standard-button';
|
|
11
11
|
import { Text } from '@atlaskit/primitives/compiled';
|
|
12
12
|
import FocusLock from 'react-focus-lock';
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import { R300, R400 } from '@atlaskit/theme/colors';
|
|
6
6
|
import Tooltip from '@atlaskit/tooltip';
|
|
7
|
-
import ErrorIcon from '@atlaskit/icon/core/migration/error';
|
|
7
|
+
import ErrorIcon from '@atlaskit/icon/core/migration/status-error--error';
|
|
8
8
|
import { useIntl } from 'react-intl-next';
|
|
9
9
|
import { messages } from '../i18n';
|
|
10
10
|
var errorMessageStyles = {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
._p12f3sup{max-width:285px}
|
|
45
45
|
._pdfdidpf .emoji-common-emoji-sprite, ._mwo3idpf span[role=img]{padding-left:0}
|
|
46
46
|
._pnmbovqm:first-of-type{color:var(--_5xk3r4)}
|
|
47
|
-
.
|
|
47
|
+
._syaz121t{color:var(--_1pseksa)}
|
|
48
48
|
._syazovqm{color:var(--_5xk3r4)}
|
|
49
49
|
._u5f319bv{padding-right:10px}
|
|
50
50
|
._vwz4kb7n{line-height:1}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import "./EmojiPreviewComponent.compiled.css";
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
|
-
import {
|
|
5
|
+
import { N400, N900 } from '@atlaskit/theme/colors';
|
|
6
6
|
import CachingEmoji from './CachingEmoji';
|
|
7
7
|
var emojiName = null;
|
|
8
8
|
var emojiShortName = null;
|
|
@@ -26,9 +26,9 @@ export var EmojiPreviewComponent = function EmojiPreviewComponent(_ref) {
|
|
|
26
26
|
"--_5xk3r4": ix("var(--ds-text, ".concat(N900, ")"))
|
|
27
27
|
}
|
|
28
28
|
}, emoji.name), /*#__PURE__*/React.createElement("div", {
|
|
29
|
-
className: ax(["_11c8dcr7 _1reo15vq _18m915vq _1e0c1ule
|
|
29
|
+
className: ax(["_11c8dcr7 _1reo15vq _18m915vq _1e0c1ule _syaz121t _vwz4kb7n _otyr1i6y _n3tdv77o _1bto1l2s _o5721q9c _10hw2smr _pnmbovqm"]),
|
|
30
30
|
style: {
|
|
31
|
-
"--
|
|
31
|
+
"--_1pseksa": ix("var(--ds-text-subtle, ".concat(N400, ")")),
|
|
32
32
|
"--_5xk3r4": ix("var(--ds-text, ".concat(N900, ")"))
|
|
33
33
|
}
|
|
34
34
|
}, emoji.shortName)));
|
|
@@ -9,7 +9,7 @@ import { useEffect, useLayoutEffect, useState, useRef, memo, useCallback } from
|
|
|
9
9
|
import { N300 } from '@atlaskit/theme/colors';
|
|
10
10
|
import { FormattedMessage, injectIntl } from 'react-intl-next';
|
|
11
11
|
import TextField from '@atlaskit/textfield';
|
|
12
|
-
import CrossIcon from '@atlaskit/icon/core/migration/
|
|
12
|
+
import CrossIcon from '@atlaskit/icon/core/migration/cross';
|
|
13
13
|
import AkButton from '@atlaskit/button/standard-button';
|
|
14
14
|
import { Text } from '@atlaskit/primitives/compiled';
|
|
15
15
|
import FocusLock from 'react-focus-lock';
|
|
@@ -13,7 +13,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
13
13
|
actionSubjectId: actionSubjectId,
|
|
14
14
|
attributes: _objectSpread({
|
|
15
15
|
packageName: "@atlaskit/emoji",
|
|
16
|
-
packageVersion: "69.3.
|
|
16
|
+
packageVersion: "69.3.9"
|
|
17
17
|
}, attributes)
|
|
18
18
|
};
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/emoji",
|
|
3
|
-
"version": "69.3.
|
|
3
|
+
"version": "69.3.10",
|
|
4
4
|
"description": "Fabric emoji React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
"@atlaskit/button": "^23.2.0",
|
|
39
39
|
"@atlaskit/css": "^0.12.0",
|
|
40
40
|
"@atlaskit/heading": "^5.2.0",
|
|
41
|
-
"@atlaskit/icon": "^27.
|
|
42
|
-
"@atlaskit/media-client": "^35.
|
|
41
|
+
"@atlaskit/icon": "^27.5.0",
|
|
42
|
+
"@atlaskit/media-client": "^35.1.0",
|
|
43
43
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
44
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
45
45
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
46
46
|
"@atlaskit/primitives": "^14.10.0",
|
|
47
|
-
"@atlaskit/react-ufo": "^
|
|
47
|
+
"@atlaskit/react-ufo": "^4.1.0",
|
|
48
48
|
"@atlaskit/spinner": "^18.0.0",
|
|
49
49
|
"@atlaskit/textfield": "^8.0.0",
|
|
50
50
|
"@atlaskit/theme": "^19.0.0",
|
|
51
|
-
"@atlaskit/tokens": "^5.
|
|
51
|
+
"@atlaskit/tokens": "^5.6.0",
|
|
52
52
|
"@atlaskit/tooltip": "^20.3.0",
|
|
53
53
|
"@atlaskit/ufo": "^0.4.0",
|
|
54
54
|
"@atlaskit/util-service-support": "^6.3.0",
|