@atlaskit/feedback-collector 13.14.0 → 13.14.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/feedback-collector
|
|
2
2
|
|
|
3
|
+
## 13.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#156593](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/156593)
|
|
8
|
+
[`99eefc50549ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/99eefc50549ec) -
|
|
9
|
+
ff cleanup for accound id adding on feedback tickets
|
|
10
|
+
|
|
3
11
|
## 13.14.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -166,7 +166,7 @@ var FeedbackCollector = exports.default = /*#__PURE__*/function (_Component) {
|
|
|
166
166
|
}, {
|
|
167
167
|
key: "getPackageVersion",
|
|
168
168
|
value: function getPackageVersion() {
|
|
169
|
-
return "13.14.
|
|
169
|
+
return "13.14.1" || 'Unknown, at least 11.0.0';
|
|
170
170
|
}
|
|
171
171
|
}, {
|
|
172
172
|
key: "getEntitlementInformation",
|
|
@@ -427,9 +427,7 @@ var FeedbackCollector = exports.default = /*#__PURE__*/function (_Component) {
|
|
|
427
427
|
return this.getAtlassianID();
|
|
428
428
|
case 8:
|
|
429
429
|
atlassianID = _context5.sent;
|
|
430
|
-
|
|
431
|
-
this.addAccountIdToContext(atlassianID);
|
|
432
|
-
}
|
|
430
|
+
this.addAccountIdToContext(atlassianID);
|
|
433
431
|
return _context5.abrupt("return", {
|
|
434
432
|
fields: [].concat((0, _toConsumableArray2.default)(entitlementInformation !== null && entitlementInformation || []), [this.props.showTypeField ? {
|
|
435
433
|
id: this.props.typeFieldId,
|
|
@@ -91,7 +91,7 @@ export default class FeedbackCollector extends Component {
|
|
|
91
91
|
return FeedbackCollector.defaultProps.url;
|
|
92
92
|
}
|
|
93
93
|
getPackageVersion() {
|
|
94
|
-
return "13.14.
|
|
94
|
+
return "13.14.1" || 'Unknown, at least 11.0.0';
|
|
95
95
|
}
|
|
96
96
|
async getEntitlementInformation() {
|
|
97
97
|
var _entitlementDetails, _entitlementDetails2, _productName, _entitlement, _productEntitlement;
|
|
@@ -273,9 +273,7 @@ export default class FeedbackCollector extends Component {
|
|
|
273
273
|
this.addEmailToContext();
|
|
274
274
|
}
|
|
275
275
|
const atlassianID = await this.getAtlassianID();
|
|
276
|
-
|
|
277
|
-
this.addAccountIdToContext(atlassianID);
|
|
278
|
-
}
|
|
276
|
+
this.addAccountIdToContext(atlassianID);
|
|
279
277
|
return {
|
|
280
278
|
fields: [...(entitlementInformation !== null && entitlementInformation || []), this.props.showTypeField ? {
|
|
281
279
|
id: this.props.typeFieldId,
|
|
@@ -156,7 +156,7 @@ var FeedbackCollector = /*#__PURE__*/function (_Component) {
|
|
|
156
156
|
}, {
|
|
157
157
|
key: "getPackageVersion",
|
|
158
158
|
value: function getPackageVersion() {
|
|
159
|
-
return "13.14.
|
|
159
|
+
return "13.14.1" || 'Unknown, at least 11.0.0';
|
|
160
160
|
}
|
|
161
161
|
}, {
|
|
162
162
|
key: "getEntitlementInformation",
|
|
@@ -417,9 +417,7 @@ var FeedbackCollector = /*#__PURE__*/function (_Component) {
|
|
|
417
417
|
return this.getAtlassianID();
|
|
418
418
|
case 8:
|
|
419
419
|
atlassianID = _context5.sent;
|
|
420
|
-
|
|
421
|
-
this.addAccountIdToContext(atlassianID);
|
|
422
|
-
}
|
|
420
|
+
this.addAccountIdToContext(atlassianID);
|
|
423
421
|
return _context5.abrupt("return", {
|
|
424
422
|
fields: [].concat(_toConsumableArray(entitlementInformation !== null && entitlementInformation || []), [this.props.showTypeField ? {
|
|
425
423
|
id: this.props.typeFieldId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/feedback-collector",
|
|
3
|
-
"version": "13.14.
|
|
3
|
+
"version": "13.14.1",
|
|
4
4
|
"description": "A component that collects feedback across Atlassian products.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@atlaskit/button": "^20.
|
|
42
|
-
"@atlaskit/checkbox": "^15.
|
|
41
|
+
"@atlaskit/button": "^20.3.0",
|
|
42
|
+
"@atlaskit/checkbox": "^15.1.0",
|
|
43
43
|
"@atlaskit/flag": "^15.8.0",
|
|
44
44
|
"@atlaskit/form": "^10.5.0",
|
|
45
|
-
"@atlaskit/icon": "^22.
|
|
45
|
+
"@atlaskit/icon": "^22.24.0",
|
|
46
46
|
"@atlaskit/link": "^1.2.1",
|
|
47
47
|
"@atlaskit/modal-dialog": "^12.17.0",
|
|
48
48
|
"@atlaskit/platform-feature-flags": "^0.3.0",
|
|
49
49
|
"@atlaskit/section-message": "^6.6.0",
|
|
50
|
-
"@atlaskit/select": "^18.
|
|
50
|
+
"@atlaskit/select": "^18.3.0",
|
|
51
51
|
"@atlaskit/textarea": "^5.6.0",
|
|
52
52
|
"@atlaskit/theme": "^14.0.0",
|
|
53
53
|
"@atlaskit/tokens": "^2.0.0",
|
|
@@ -92,9 +92,6 @@
|
|
|
92
92
|
},
|
|
93
93
|
"underlined_iph_links": {
|
|
94
94
|
"type": "boolean"
|
|
95
|
-
},
|
|
96
|
-
"jsw_feedback_account_id": {
|
|
97
|
-
"type": "boolean"
|
|
98
95
|
}
|
|
99
96
|
}
|
|
100
97
|
}
|