@atlaskit/emoji 68.0.0 → 68.0.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 +18 -0
- package/admin/package.json +3 -1
- package/dist/cjs/util/analytics/analytics.js +1 -1
- package/dist/es2019/util/analytics/analytics.js +1 -1
- package/dist/esm/util/analytics/analytics.js +1 -1
- package/element/package.json +3 -1
- package/package.json +10 -8
- package/picker/package.json +3 -1
- package/resource/package.json +3 -1
- package/typeahead/package.json +3 -1
- package/types/package.json +3 -1
- package/utils/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/emoji
|
|
2
2
|
|
|
3
|
+
## 68.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 68.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#120533](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120533)
|
|
14
|
+
[`f1bec731e278f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1bec731e278f) -
|
|
15
|
+
Adds a `sideEffects` field to ensure this package does not have Compiled styles tree-shaken in the
|
|
16
|
+
future to avoid an accidental regression.
|
|
17
|
+
|
|
18
|
+
This is related to
|
|
19
|
+
https://community.developer.atlassian.com/t/rfc-73-migrating-our-components-to-compiled-css-in-js/85953
|
|
20
|
+
|
|
3
21
|
## 68.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
package/admin/package.json
CHANGED
|
@@ -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: "68.0.
|
|
23
|
+
packageVersion: "68.0.2"
|
|
24
24
|
}, attributes)
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -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: "68.0.
|
|
16
|
+
packageVersion: "68.0.2"
|
|
17
17
|
}, attributes)
|
|
18
18
|
};
|
|
19
19
|
};
|
package/element/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/element.js",
|
|
4
4
|
"module": "../dist/esm/element.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/element.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/element.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/emoji",
|
|
3
|
-
"version": "68.0.
|
|
3
|
+
"version": "68.0.2",
|
|
4
4
|
"description": "Fabric emoji React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
]
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
|
-
"sideEffects":
|
|
23
|
+
"sideEffects": [
|
|
24
|
+
"*.compiled.css"
|
|
25
|
+
],
|
|
24
26
|
"atlaskit:src": "src/index.ts",
|
|
25
27
|
"atlassian": {
|
|
26
28
|
"team": "Editor: Collaboration",
|
|
@@ -34,21 +36,21 @@
|
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|
|
36
38
|
"@atlaskit/analytics-next": "^11.0.0",
|
|
37
|
-
"@atlaskit/button": "^21.
|
|
38
|
-
"@atlaskit/heading": "^5.
|
|
39
|
-
"@atlaskit/icon": "^24.
|
|
39
|
+
"@atlaskit/button": "^21.1.0",
|
|
40
|
+
"@atlaskit/heading": "^5.1.0",
|
|
41
|
+
"@atlaskit/icon": "^24.1.0",
|
|
40
42
|
"@atlaskit/media-client": "^32.0.0",
|
|
41
43
|
"@atlaskit/media-client-react": "^4.0.0",
|
|
42
44
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
43
|
-
"@atlaskit/primitives": "^14.
|
|
45
|
+
"@atlaskit/primitives": "^14.1.0",
|
|
44
46
|
"@atlaskit/spinner": "^18.0.0",
|
|
45
47
|
"@atlaskit/textfield": "^8.0.0",
|
|
46
48
|
"@atlaskit/theme": "^17.0.0",
|
|
47
|
-
"@atlaskit/tokens": "^4.
|
|
49
|
+
"@atlaskit/tokens": "^4.3.0",
|
|
48
50
|
"@atlaskit/tooltip": "^20.0.0",
|
|
49
51
|
"@atlaskit/ufo": "^0.4.0",
|
|
50
52
|
"@atlaskit/util-service-support": "^6.2.0",
|
|
51
|
-
"@atlaskit/visually-hidden": "^
|
|
53
|
+
"@atlaskit/visually-hidden": "^3.0.0",
|
|
52
54
|
"@babel/runtime": "^7.0.0",
|
|
53
55
|
"@emotion/react": "^11.7.1",
|
|
54
56
|
"@tanstack/react-virtual": "3.0.0-beta.60",
|
package/picker/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/picker.js",
|
|
4
4
|
"module": "../dist/esm/picker.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/picker.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/picker.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/resource/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/resource.js",
|
|
4
4
|
"module": "../dist/esm/resource.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/resource.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/resource.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/typeahead/package.json
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
"main": "../dist/cjs/typeahead.js",
|
|
4
4
|
"module": "../dist/esm/typeahead.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/typeahead.js",
|
|
6
|
-
"sideEffects":
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
7
9
|
"types": "../dist/types/typeahead.d.ts",
|
|
8
10
|
"typesVersions": {
|
|
9
11
|
">=4.5 <5.4": {
|
package/types/package.json
CHANGED
package/utils/package.json
CHANGED