@atlaskit/emoji 69.3.0 → 69.3.2
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/afm-cc/tsconfig.json +1 -1
- package/dist/cjs/components/common/DeleteButton.js +3 -2
- package/dist/cjs/util/analytics/analytics.js +1 -1
- package/dist/es2019/components/common/DeleteButton.js +3 -2
- package/dist/es2019/util/analytics/analytics.js +1 -1
- package/dist/esm/components/common/DeleteButton.js +3 -2
- package/dist/esm/util/analytics/analytics.js +1 -1
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
package/afm-cc/tsconfig.json
CHANGED
|
@@ -11,7 +11,7 @@ require("./DeleteButton.compiled.css");
|
|
|
11
11
|
var React = _interopRequireWildcard(require("react"));
|
|
12
12
|
var _runtime = require("@compiled/react/runtime");
|
|
13
13
|
var _standardButton = _interopRequireDefault(require("@atlaskit/button/standard-button"));
|
|
14
|
-
var _crossCircle = _interopRequireDefault(require("@atlaskit/icon/
|
|
14
|
+
var _crossCircle = _interopRequireDefault(require("@atlaskit/icon/core/migration/cross-circle"));
|
|
15
15
|
var _colors = require("@atlaskit/theme/colors");
|
|
16
16
|
var _constants = require("../../util/constants");
|
|
17
17
|
var _styles = require("./styles");
|
|
@@ -37,7 +37,8 @@ var DeleteButton = function DeleteButton(props) {
|
|
|
37
37
|
}, /*#__PURE__*/React.createElement(_crossCircle.default, {
|
|
38
38
|
label: _constants.deleteEmojiLabel,
|
|
39
39
|
color: "var(--ds-text-subtle, ".concat(_colors.N500, ")"),
|
|
40
|
-
LEGACY_size: "small"
|
|
40
|
+
LEGACY_size: "small",
|
|
41
|
+
size: "small"
|
|
41
42
|
})),
|
|
42
43
|
onClick: props.onClick
|
|
43
44
|
// TODO: (from codemod) "link" and "subtle-link" appearances are only available in LinkButton, please either provide a href prop then migrate to LinkButton, or remove the appearance from the default button.
|
|
@@ -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.1"
|
|
24
24
|
}, attributes)
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -3,7 +3,7 @@ import "./DeleteButton.compiled.css";
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import Button from '@atlaskit/button/standard-button';
|
|
6
|
-
import CrossCircleIcon from '@atlaskit/icon/
|
|
6
|
+
import CrossCircleIcon from '@atlaskit/icon/core/migration/cross-circle';
|
|
7
7
|
import { N500 } from '@atlaskit/theme/colors';
|
|
8
8
|
import { deleteEmojiLabel } from '../../util/constants';
|
|
9
9
|
import { emojiDeleteButton } from './styles';
|
|
@@ -27,7 +27,8 @@ const DeleteButton = props => /*#__PURE__*/React.createElement("span", {
|
|
|
27
27
|
}, /*#__PURE__*/React.createElement(CrossCircleIcon, {
|
|
28
28
|
label: deleteEmojiLabel,
|
|
29
29
|
color: `var(--ds-text-subtle, ${N500})`,
|
|
30
|
-
LEGACY_size: "small"
|
|
30
|
+
LEGACY_size: "small",
|
|
31
|
+
size: "small"
|
|
31
32
|
})),
|
|
32
33
|
onClick: props.onClick
|
|
33
34
|
// TODO: (from codemod) "link" and "subtle-link" appearances are only available in LinkButton, please either provide a href prop then migrate to LinkButton, or remove the appearance from the default button.
|
|
@@ -3,7 +3,7 @@ import "./DeleteButton.compiled.css";
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import Button from '@atlaskit/button/standard-button';
|
|
6
|
-
import CrossCircleIcon from '@atlaskit/icon/
|
|
6
|
+
import CrossCircleIcon from '@atlaskit/icon/core/migration/cross-circle';
|
|
7
7
|
import { N500 } from '@atlaskit/theme/colors';
|
|
8
8
|
import { deleteEmojiLabel } from '../../util/constants';
|
|
9
9
|
import { emojiDeleteButton } from './styles';
|
|
@@ -28,7 +28,8 @@ var DeleteButton = function DeleteButton(props) {
|
|
|
28
28
|
}, /*#__PURE__*/React.createElement(CrossCircleIcon, {
|
|
29
29
|
label: deleteEmojiLabel,
|
|
30
30
|
color: "var(--ds-text-subtle, ".concat(N500, ")"),
|
|
31
|
-
LEGACY_size: "small"
|
|
31
|
+
LEGACY_size: "small",
|
|
32
|
+
size: "small"
|
|
32
33
|
})),
|
|
33
34
|
onClick: props.onClick
|
|
34
35
|
// TODO: (from codemod) "link" and "subtle-link" appearances are only available in LinkButton, please either provide a href prop then migrate to LinkButton, or remove the appearance from the default button.
|
|
@@ -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.1"
|
|
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.2",
|
|
4
4
|
"description": "Fabric emoji React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@atlaskit/button": "^23.2.0",
|
|
40
40
|
"@atlaskit/css": "^0.10.0",
|
|
41
41
|
"@atlaskit/heading": "^5.2.0",
|
|
42
|
-
"@atlaskit/icon": "^
|
|
43
|
-
"@atlaskit/media-client": "^
|
|
42
|
+
"@atlaskit/icon": "^27.0.0",
|
|
43
|
+
"@atlaskit/media-client": "^34.0.0",
|
|
44
44
|
"@atlaskit/media-client-react": "^4.1.0",
|
|
45
45
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@atlaskit/spinner": "^18.0.0",
|
|
50
50
|
"@atlaskit/textfield": "^8.0.0",
|
|
51
51
|
"@atlaskit/theme": "^18.0.0",
|
|
52
|
-
"@atlaskit/tokens": "^5.
|
|
52
|
+
"@atlaskit/tokens": "^5.2.0",
|
|
53
53
|
"@atlaskit/tooltip": "^20.3.0",
|
|
54
54
|
"@atlaskit/ufo": "^0.4.0",
|
|
55
55
|
"@atlaskit/util-service-support": "^6.3.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@af/integration-testing": "workspace:^",
|
|
75
75
|
"@af/visual-regression": "workspace:^",
|
|
76
76
|
"@atlaskit/elements-test-helpers": "workspace:^",
|
|
77
|
-
"@atlaskit/media-core": "^
|
|
77
|
+
"@atlaskit/media-core": "^37.0.0",
|
|
78
78
|
"@atlaskit/ssr": "workspace:^",
|
|
79
79
|
"@atlaskit/visual-regression": "workspace:^",
|
|
80
80
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
@@ -139,6 +139,9 @@
|
|
|
139
139
|
"cc_complexit_fe_remove_emoji_animation": {
|
|
140
140
|
"type": "boolean"
|
|
141
141
|
},
|
|
142
|
+
"should-render-to-parent-should-be-true-editor-coll": {
|
|
143
|
+
"type": "boolean"
|
|
144
|
+
},
|
|
142
145
|
"platform_reactions_placeholder_custom_background": {
|
|
143
146
|
"type": "boolean"
|
|
144
147
|
}
|