@atlaskit/emoji 70.7.0 → 70.7.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 +14 -0
- package/dist/cjs/util/analytics/analytics.js +1 -1
- package/dist/cjs/util/constants.js +3 -0
- package/dist/es2019/util/analytics/analytics.js +1 -1
- package/dist/es2019/util/constants.js +3 -0
- package/dist/esm/util/analytics/analytics.js +1 -1
- package/dist/esm/util/constants.js +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/emoji
|
|
2
2
|
|
|
3
|
+
## 70.7.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 70.7.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`bb3fe71598a5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb3fe71598a5f) -
|
|
14
|
+
migrate emoji styles from emotion to compiled
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 70.7.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -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: "70.
|
|
23
|
+
packageVersion: "70.7.1"
|
|
24
24
|
}, attributes)
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -19,6 +19,9 @@ var deleteEmojiLabel = exports.deleteEmojiLabel = 'delete-emoji';
|
|
|
19
19
|
* This is used instead of Number.MAX_VALUE since subtraction of MAX_VALUE from itself occassionaly doesn't equal zero exactly :-(
|
|
20
20
|
*/
|
|
21
21
|
var MAX_ORDINAL = exports.MAX_ORDINAL = 100000;
|
|
22
|
+
|
|
23
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
24
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
22
25
|
var scaledEmojiHeightH1 = exports.scaledEmojiHeightH1 = 28;
|
|
23
26
|
var scaledEmojiHeightH2 = exports.scaledEmojiHeightH2 = 26;
|
|
24
27
|
var scaledEmojiHeightH3 = exports.scaledEmojiHeightH3 = 24;
|
|
@@ -13,6 +13,9 @@ export const deleteEmojiLabel = 'delete-emoji';
|
|
|
13
13
|
* This is used instead of Number.MAX_VALUE since subtraction of MAX_VALUE from itself occassionaly doesn't equal zero exactly :-(
|
|
14
14
|
*/
|
|
15
15
|
export const MAX_ORDINAL = 100000;
|
|
16
|
+
|
|
17
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
18
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
16
19
|
export const scaledEmojiHeightH1 = 28;
|
|
17
20
|
export const scaledEmojiHeightH2 = 26;
|
|
18
21
|
export const scaledEmojiHeightH3 = 24;
|
|
@@ -14,7 +14,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
|
|
|
14
14
|
actionSubjectId: actionSubjectId,
|
|
15
15
|
attributes: _objectSpread({
|
|
16
16
|
packageName: "@atlaskit/emoji",
|
|
17
|
-
packageVersion: "70.
|
|
17
|
+
packageVersion: "70.7.1"
|
|
18
18
|
}, attributes)
|
|
19
19
|
};
|
|
20
20
|
};
|
|
@@ -13,6 +13,9 @@ export var deleteEmojiLabel = 'delete-emoji';
|
|
|
13
13
|
* This is used instead of Number.MAX_VALUE since subtraction of MAX_VALUE from itself occassionaly doesn't equal zero exactly :-(
|
|
14
14
|
*/
|
|
15
15
|
export var MAX_ORDINAL = 100000;
|
|
16
|
+
|
|
17
|
+
// Constant variables here has been inlined in css from EditorContentContainer, if you need to make
|
|
18
|
+
// update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
16
19
|
export var scaledEmojiHeightH1 = 28;
|
|
17
20
|
export var scaledEmojiHeightH2 = 26;
|
|
18
21
|
export var scaledEmojiHeightH3 = 24;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/emoji",
|
|
3
|
-
"version": "70.7.
|
|
3
|
+
"version": "70.7.2",
|
|
4
4
|
"description": "Fabric emoji React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@atlaskit/primitives": "^19.0.0",
|
|
53
53
|
"@atlaskit/spinner": "^19.1.0",
|
|
54
54
|
"@atlaskit/textfield": "^8.3.0",
|
|
55
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
55
|
+
"@atlaskit/tmp-editor-statsig": "^81.0.0",
|
|
56
56
|
"@atlaskit/tokens": "^13.0.0",
|
|
57
57
|
"@atlaskit/tooltip": "^22.2.0",
|
|
58
58
|
"@atlaskit/ufo": "^0.5.0",
|