@atlaskit/emoji 71.7.0 → 71.7.1
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/compass.yml +3 -0
- package/dist/cjs/api/EmojiResource.js +1 -1
- package/dist/cjs/util/analytics/analytics.js +1 -1
- package/dist/es2019/api/EmojiResource.js +1 -1
- package/dist/es2019/util/analytics/analytics.js +1 -1
- package/dist/esm/api/EmojiResource.js +1 -1
- package/dist/esm/util/analytics/analytics.js +1 -1
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/emoji
|
|
2
2
|
|
|
3
|
+
## 71.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b50b33c7445ff`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b50b33c7445ff) -
|
|
8
|
+
Cleanup feature gate `increase-emoji-client-upload-timeout`. The emoji client upload timeout is
|
|
9
|
+
now permanently set to 30 seconds.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 71.7.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/compass.yml
CHANGED
|
@@ -24,6 +24,9 @@ customFields:
|
|
|
24
24
|
- name: Department
|
|
25
25
|
type: text
|
|
26
26
|
value: Eng - Editor Collaboration Platform
|
|
27
|
+
- name: Trusted Reviewer Teams
|
|
28
|
+
type: text
|
|
29
|
+
value: ari:cloud:identity::team/cf6a670b-5252-4c68-a769-9207de366beb
|
|
27
30
|
- name: Technical Owner
|
|
28
31
|
type: user
|
|
29
32
|
value: ari:cloud:identity::user/712020:d2fbbbd7-fd7c-4d3a-9f0a-7a97b6b26e40 # Michael Kimpton
|
|
@@ -786,7 +786,7 @@ var UploadingEmojiResource = exports.default = /*#__PURE__*/function (_EmojiReso
|
|
|
786
786
|
value: function uploadCustomEmoji(upload) {
|
|
787
787
|
var _this12 = this;
|
|
788
788
|
var retry = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
789
|
-
var timeout = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] :
|
|
789
|
+
var timeout = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 30000;
|
|
790
790
|
return this.isUploadSupported().then(function (supported) {
|
|
791
791
|
if (!supported || !_this12.isRepositoryAvailable(_this12.siteEmojiResource)) {
|
|
792
792
|
return Promise.reject('No media api support is configured');
|
|
@@ -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: "71.
|
|
23
|
+
packageVersion: "71.7.0"
|
|
24
24
|
}, attributes)
|
|
25
25
|
};
|
|
26
26
|
};
|
|
@@ -528,7 +528,7 @@ export default class UploadingEmojiResource extends EmojiResource {
|
|
|
528
528
|
}
|
|
529
529
|
return this.retryIfLoading(() => this.isUploadSupported(), false);
|
|
530
530
|
}
|
|
531
|
-
uploadCustomEmoji(upload, retry = false, timeout =
|
|
531
|
+
uploadCustomEmoji(upload, retry = false, timeout = 30_000) {
|
|
532
532
|
return this.isUploadSupported().then(supported => {
|
|
533
533
|
if (!supported || !this.isRepositoryAvailable(this.siteEmojiResource)) {
|
|
534
534
|
return Promise.reject('No media api support is configured');
|
|
@@ -780,7 +780,7 @@ var UploadingEmojiResource = /*#__PURE__*/function (_EmojiResource2) {
|
|
|
780
780
|
value: function uploadCustomEmoji(upload) {
|
|
781
781
|
var _this12 = this;
|
|
782
782
|
var retry = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
783
|
-
var timeout = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] :
|
|
783
|
+
var timeout = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 30000;
|
|
784
784
|
return this.isUploadSupported().then(function (supported) {
|
|
785
785
|
if (!supported || !_this12.isRepositoryAvailable(_this12.siteEmojiResource)) {
|
|
786
786
|
return Promise.reject('No media api support is configured');
|
|
@@ -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: "71.
|
|
17
|
+
packageVersion: "71.7.0"
|
|
18
18
|
}, attributes)
|
|
19
19
|
};
|
|
20
20
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/emoji",
|
|
3
|
-
"version": "71.7.
|
|
3
|
+
"version": "71.7.1",
|
|
4
4
|
"description": "Fabric emoji React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@atlaskit/spinner": "^20.1.0",
|
|
51
51
|
"@atlaskit/textfield": "^9.1.0",
|
|
52
52
|
"@atlaskit/theme": "^26.1.0",
|
|
53
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
53
|
+
"@atlaskit/tmp-editor-statsig": "^120.0.0",
|
|
54
54
|
"@atlaskit/tokens": "^15.3.0",
|
|
55
55
|
"@atlaskit/tooltip": "^23.1.0",
|
|
56
56
|
"@atlaskit/ufo": "^1.0.0",
|
|
@@ -131,9 +131,6 @@
|
|
|
131
131
|
"platform_change_emoji_button_label": {
|
|
132
132
|
"type": "boolean"
|
|
133
133
|
},
|
|
134
|
-
"increase-emoji-client-upload-timeout": {
|
|
135
|
-
"type": "boolean"
|
|
136
|
-
},
|
|
137
134
|
"platform_emoji_keep_picker_open_on_upload": {
|
|
138
135
|
"type": "boolean"
|
|
139
136
|
},
|