@atlaskit/feedback-collector 13.0.7 → 13.0.9
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/dist/cjs/components/FeedbackButton.js +1 -2
- package/dist/cjs/components/FeedbackCollector.js +2 -3
- package/dist/cjs/components/FeedbackFlag.js +3 -7
- package/dist/cjs/components/FeedbackForm.js +1 -2
- package/dist/cjs/components/IntlProviderWithResolvedMessages.js +2 -3
- package/dist/cjs/i18n/cs.js +2 -3
- package/dist/cjs/i18n/da.js +2 -3
- package/dist/cjs/i18n/de.js +2 -3
- package/dist/cjs/i18n/en.js +2 -3
- package/dist/cjs/i18n/en_GB.js +2 -3
- package/dist/cjs/i18n/en_ZZ.js +2 -3
- package/dist/cjs/i18n/es.js +2 -3
- package/dist/cjs/i18n/fi.js +2 -3
- package/dist/cjs/i18n/fr.js +2 -3
- package/dist/cjs/i18n/hu.js +2 -3
- package/dist/cjs/i18n/it.js +2 -3
- package/dist/cjs/i18n/ja.js +2 -3
- package/dist/cjs/i18n/ko.js +2 -3
- package/dist/cjs/i18n/nb.js +2 -3
- package/dist/cjs/i18n/nl.js +2 -3
- package/dist/cjs/i18n/pl.js +2 -3
- package/dist/cjs/i18n/pt_BR.js +2 -3
- package/dist/cjs/i18n/ru.js +2 -3
- package/dist/cjs/i18n/sv.js +2 -3
- package/dist/cjs/i18n/th.js +2 -3
- package/dist/cjs/i18n/tr.js +2 -3
- package/dist/cjs/i18n/uk.js +2 -3
- package/dist/cjs/i18n/vi.js +2 -3
- package/dist/cjs/i18n/zh.js +2 -3
- package/dist/cjs/i18n/zh_TW.js +2 -3
- package/dist/cjs/index.js +1 -2
- package/dist/cjs/messages.js +2 -3
- package/dist/cjs/utils/i18n-get-messages-for-locale.js +2 -3
- package/dist/cjs/utils/is-api-gateway-url.js +2 -3
- package/dist/es2019/components/FeedbackCollector.js +1 -1
- package/dist/es2019/components/FeedbackFlag.js +2 -6
- package/dist/esm/components/FeedbackCollector.js +1 -1
- package/dist/esm/components/FeedbackFlag.js +2 -5
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/feedback-collector
|
|
2
2
|
|
|
3
|
+
## 13.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#41615](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41615) [`3ebd474ee6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3ebd474ee6e) - bumping form dependency
|
|
8
|
+
|
|
9
|
+
## 13.0.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#40820](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40820) [`92525eab97e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92525eab97e) - Removed spread operator in react intl formatMessage() so babel-plugin-formatjs can extract corresponding messages
|
|
14
|
+
|
|
3
15
|
## 13.0.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -64,5 +64,4 @@ var FeedbackButtonWithIntl = function FeedbackButtonWithIntl(props) {
|
|
|
64
64
|
locale: locale
|
|
65
65
|
}, /*#__PURE__*/_react.default.createElement(FeedbackButton, props));
|
|
66
66
|
};
|
|
67
|
-
var _default = FeedbackButtonWithIntl;
|
|
68
|
-
exports.default = _default;
|
|
67
|
+
var _default = exports.default = FeedbackButtonWithIntl;
|
|
@@ -33,7 +33,7 @@ var singleLineTruncatedText = function singleLineTruncatedText(text) {
|
|
|
33
33
|
var singleLineText = text.replace(/\n/g, ' ');
|
|
34
34
|
return (0, _Truncate.default)(singleLineText, length);
|
|
35
35
|
};
|
|
36
|
-
var FeedbackCollector = /*#__PURE__*/function (_Component) {
|
|
36
|
+
var FeedbackCollector = exports.default = /*#__PURE__*/function (_Component) {
|
|
37
37
|
(0, _inherits2.default)(FeedbackCollector, _Component);
|
|
38
38
|
var _super = _createSuper(FeedbackCollector);
|
|
39
39
|
function FeedbackCollector() {
|
|
@@ -136,7 +136,7 @@ var FeedbackCollector = /*#__PURE__*/function (_Component) {
|
|
|
136
136
|
}, {
|
|
137
137
|
key: "getPackageVersion",
|
|
138
138
|
value: function getPackageVersion() {
|
|
139
|
-
return "13.0.
|
|
139
|
+
return "13.0.9" || 'Unknown, at least 11.0.0';
|
|
140
140
|
}
|
|
141
141
|
}, {
|
|
142
142
|
key: "getEntitlementInformation",
|
|
@@ -433,7 +433,6 @@ var FeedbackCollector = /*#__PURE__*/function (_Component) {
|
|
|
433
433
|
}]);
|
|
434
434
|
return FeedbackCollector;
|
|
435
435
|
}(_react.Component);
|
|
436
|
-
exports.default = FeedbackCollector;
|
|
437
436
|
(0, _defineProperty2.default)(FeedbackCollector, "defaultProps", {
|
|
438
437
|
url: '/gateway/api',
|
|
439
438
|
shouldGetEntitlementDetails: true,
|
|
@@ -5,7 +5,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.default = void 0;
|
|
8
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
8
|
var _react = _interopRequireDefault(require("react"));
|
|
10
9
|
var _reactIntlNext = require("react-intl-next");
|
|
11
10
|
var _flag = require("@atlaskit/flag");
|
|
@@ -13,8 +12,6 @@ var _checkCircle = _interopRequireDefault(require("@atlaskit/icon/glyph/check-ci
|
|
|
13
12
|
var _colors = require("@atlaskit/theme/colors");
|
|
14
13
|
var _messages = require("../messages");
|
|
15
14
|
var _IntlProviderWithResolvedMessages = require("./IntlProviderWithResolvedMessages");
|
|
16
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
17
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
18
15
|
var FeedbackFlag = function FeedbackFlag(_ref) {
|
|
19
16
|
var description = _ref.description,
|
|
20
17
|
title = _ref.title;
|
|
@@ -26,8 +23,8 @@ var FeedbackFlag = function FeedbackFlag(_ref) {
|
|
|
26
23
|
label: "Success"
|
|
27
24
|
}),
|
|
28
25
|
id: "feedbackSent",
|
|
29
|
-
description: description || formatMessage(
|
|
30
|
-
title: title || formatMessage(
|
|
26
|
+
description: description || formatMessage(_messages.messages.feedbackSuccessFlagDescription),
|
|
27
|
+
title: title || formatMessage(_messages.messages.feedbackSuccessFlagTitle)
|
|
31
28
|
});
|
|
32
29
|
};
|
|
33
30
|
var FeedbackFlagWithIntl = function FeedbackFlagWithIntl(props) {
|
|
@@ -35,5 +32,4 @@ var FeedbackFlagWithIntl = function FeedbackFlagWithIntl(props) {
|
|
|
35
32
|
locale: props.locale
|
|
36
33
|
}, /*#__PURE__*/_react.default.createElement(FeedbackFlag, props));
|
|
37
34
|
};
|
|
38
|
-
var _default = FeedbackFlagWithIntl;
|
|
39
|
-
exports.default = _default;
|
|
35
|
+
var _default = exports.default = FeedbackFlagWithIntl;
|
|
@@ -238,5 +238,4 @@ var FeedbackFormWithIntl = function FeedbackFormWithIntl(_ref8) {
|
|
|
238
238
|
locale: locale
|
|
239
239
|
}, /*#__PURE__*/_react.default.createElement(FeedbackForm, props));
|
|
240
240
|
};
|
|
241
|
-
var _default = FeedbackFormWithIntl;
|
|
242
|
-
exports.default = _default;
|
|
241
|
+
var _default = exports.default = FeedbackFormWithIntl;
|
|
@@ -14,7 +14,7 @@ var _reactIntlNext = require("react-intl-next");
|
|
|
14
14
|
var _i18nGetMessagesForLocale = require("../utils/i18n-get-messages-for-locale");
|
|
15
15
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
16
16
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
-
var IntlProviderWithResolvedMessages = function IntlProviderWithResolvedMessages(_ref) {
|
|
17
|
+
var IntlProviderWithResolvedMessages = exports.IntlProviderWithResolvedMessages = function IntlProviderWithResolvedMessages(_ref) {
|
|
18
18
|
var children = _ref.children,
|
|
19
19
|
locale = _ref.locale;
|
|
20
20
|
var _useState = (0, _react.useState)(),
|
|
@@ -54,5 +54,4 @@ var IntlProviderWithResolvedMessages = function IntlProviderWithResolvedMessages
|
|
|
54
54
|
defaultLocale: "en",
|
|
55
55
|
messages: resolvedMessagesForLocale
|
|
56
56
|
}, children);
|
|
57
|
-
};
|
|
58
|
-
exports.IntlProviderWithResolvedMessages = IntlProviderWithResolvedMessages;
|
|
57
|
+
};
|
package/dist/cjs/i18n/cs.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Czech
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Tato zpětná vazba je odesílána anonymně. Společnost Atlassian vás ohledně této zpětné vazby nebude moci přímo kontaktovat.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonymní zpětná vazba',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Ano, týmy Atlassian mě mohou kontaktovat ohledně mých zkušeností a pomoci s vylepšováním produktů a služeb společnosti Atlassian. Potvrzuji, že znám <a>Zásady ochrany osobních údajů společnosti Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Dejte nám vědět, co si myslíte',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Zpětná vazba',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Poskytnout zpětnou vazbu'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/da.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Danish (Denmark)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Denne feedback indsendes anonymt. Atlassian vil ikke kunne kontakte dig direkte angående denne feedback',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonym feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Ja, Atlassian-teams kan kontakte mig for at lære om mine oplevelser med at forbedre Atlassian-produkter og -tjenester. Jeg accepterer <a>Atlassians politik om beskyttelse af personlige oplysninger</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Fortæl os, hvad du har på hjerte',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Giv feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/de.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//German (Germany)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Dieses Feedback wird anonym übermittelt. Atlassian wird Sie bezüglich dieses Feedbacks nicht direkt kontaktieren können.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonymes Feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Ja, Atlassian-Teams dürfen mich kontaktieren, um weitere Informationen zu meinen Erfahrungen zu erhalten, damit Produkte und Services von Atlassian verbessert werden können. Ich erkläre mich mit der <a>Datenschutzrichtlinie von Atlassian</a> einverstanden.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Teilen Sie uns Ihre Meinung mit.',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Feedback geben'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/en.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'This feedback is being submitted anonymously. Atlassian will not be able to contact you directly regarding this feedback',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonymous feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Yes, Atlassian teams can contact me to learn about my experiences to improve Atlassian products and services. I acknowledge the <a>Atlassian Privacy Policy</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': "Let us know what's on your mind",
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Give feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/en_GB.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//English (United Kingdom)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'This feedback is being submitted anonymously. Atlassian will not be able to contact you directly regarding this feedback',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonymous feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Yes, Atlassian teams can contact me to learn about my experiences to improve Atlassian products and services. I acknowledge the <a>Atlassian Privacy Policy</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': "Let us know what's on your mind",
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Give feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/en_ZZ.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'This feedback is being submitted anonymously. Atlassian will not be able to contact you directly regarding this feedback',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonymous feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Yes, Atlassian teams can contact me to learn about my experiences to improve Atlassian products and services. I acknowledge the <a>Atlassian Privacy Policy</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': "Let us know what's on your mind",
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Give feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/es.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Spanish (International)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Este comentario se envía de forma anónima. Atlassian no podrá ponerse en contacto contigo directamente en relación con estos comentarios',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Comentario anónimo',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Sí, los equipos de Atlassian pueden ponerse en contacto conmigo para obtener información sobre mis experiencias y mejorar los productos y servicios de Atlassian. Acepto la <a>Política de privacidad de Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Cuéntanos qué piensas',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Comentarios',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Enviar comentarios'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/fi.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Finnish
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Palaute lähetetään anonyymisti. Atlassian ei voi ottaa yhteyttä suoraan sinuun tämän palautteen perusteella.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonyymi palaute',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Kyllä, Atlassian-tiimit voivat ottaa minuun yhteyttä ja pyytää lisätietoja kokemuksistani Atlassian-tuotteiden ja ‑palveluiden parantamista varten. Hyväksyn <a>Atlassianin tietosuojakäytännön</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Kerro meille, mitä sinulla on mielessä',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Palaute',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Anna palautetta'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/fr.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//French (France)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Ce commentaire est soumis de manière anonyme. Atlassian ne pourra pas vous contacter directement concernant ce commentaire.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Commentaire anonyme',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': "Oui, les équipes Atlassian peuvent me contacter pour en savoir plus sur mon expérience afin d'améliorer les produits et services Atlassian. J'accepte la <a>Politique de confidentialité Atlassian</a>.",
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Dites-nous tout',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Commentaire',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Envoyer un commentaire'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/hu.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Hungarian
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Ez a visszajelzés névtelenül lesz elküldve. Az Atlassian nem tudja közvetlenül felvenni veled a kapcsolatot ennek ügyében.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonim visszajelzés',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Igen, az Atlassian csapatai felvehetik velem a kapcsolatot, hogy kikérjék a véleményemet az Atlassian termékeinek és szolgáltatásainak fejlesztéséről. Elfogadom az <a>Atlassian adatvédelmi nyilatkozatát</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Mondd el, mi jár a fejedben!',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Visszajelzés',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Visszajelzés küldése'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/it.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Italian (Italy)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Questo feedback sarà inviato in forma anonima. Atlassian non potrà contattarti direttamente in merito a questo feedback',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Feedback anonimo',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': "Sì, i team Atlassian possono contattarmi per conoscere le mie esperienze volte a migliorare i prodotti e i servizi Atlassian. Prendo atto dell'<a>Informativa sulla privacy di Atlassian</a>.",
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Facci sapere cosa ne pensi',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Lascia un feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/ja.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Japanese
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'このフィードバックは匿名で提出されます。このフィードバックについて、アトラシアンがお客様に直接連絡を取ることはできません。',
|
|
17
17
|
'feedback-collector.anonymous.title': '匿名のフィードバック',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'はい、アトラシアンの製品とサービスの向上のために、アトラシアンのチームから利用体験に関する問い合わせを受け取ることを了承します。<a>アトラシアンのプライバシー ポリシー</a>に同意します。',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': '具体的な内容をご入力ください。',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'フィードバック',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'フィードバックを送信'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/ko.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Korean
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': '이 피드백은 익명으로 제출됩니다. Atlassian은 이 피드백과 관련하여 귀하에게 직접 연락할 수 없습니다',
|
|
17
17
|
'feedback-collector.anonymous.title': '익명 피드백',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': '예, Atlassian 팀에서 Atlassian 제품 및 서비스 개선을 위해 연락하여 제 경험에 대해 물어봐도 괜찮습니다. 본인은 <a>Atlassian 개인정보 보호정책</a>을 인정합니다.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': '의견을 알려주세요',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': '피드백',
|
|
37
37
|
'proforma-form-builder.give-feedback': '피드백 보내기'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/nb.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Norwegian (Bokmål)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Denne tilbakemeldingen blir sendt inn anonymt. Atlassian vil ikke kunne kontakte deg direkte om denne tilbakemeldingen',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonym tilbakemelding',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Ja, Atlassian-team kan kontakte meg om mine erfaringer med å forbedre Atlassian-produkter og tjenester. Jeg godtar <a>Atlassians personvernerklæring</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Fortell oss hva du tenker på',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Tilbakemelding',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Gi en tilbakemelding'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/nl.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Dutch (Netherlands)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Deze feedback wordt anoniem verzonden. Atlassian kan niet rechtstreeks contact met je opnemen over de feedback.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonieme feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Ja, Atlassian-teams mogen contact met me opnemen om te vragen naar mijn ervaringen, zodat Atlassian-producten en -diensten kunnen worden verbeterd. Ik stem in met het <a>Privacybeleid van Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Laat ons weten wat je vindt',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Feedback geven'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/pl.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Polish (Poland)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Ta opinia jest przekazywana anonimowo. Firma Atlassian nie będzie mogła kontaktować się z Tobą bezpośrednio w sprawie tej opinii',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Opinia anonimowa',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Tak, zespoły Atlassian mogą się ze mną kontaktować, aby poznać moją opinię i na jej podstawie ulepszać produkty oraz usługi Atlassian. Potwierdzam, że znam <a>Politykę prywatności Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Poinformuj nas, w czym problem',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Opinia',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Przekaż opinię'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/pt_BR.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Portuguese (Brazil)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Esse feedback está sendo enviado de modo anônimo. A Atlassian não vai poder entrar em contato com você sobre ele',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Feedback anônimo',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Sim, as equipes da Atlassian podem entrar em contato comigo para saber mais sobre minhas experiências para melhorar os produtos e serviços da Atlassian. Eu reconheço a <a>Política de Privacidade da Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Deixe a gente saber sua opinião',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Enviar feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/ru.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Russian
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Этот отзыв будет отправлен анонимно. Сотрудники Atlassian не смогут связаться с вами напрямую по поводу этого отзыва',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Анонимный отзыв',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Да, команды Atlassian могут связаться со мной, чтобы узнать о моих впечатлениях и использовать эту информацию для улучшения продуктов и услуг Atlassian. Я соглашаюсь с <a>Политикой конфиденциальности Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Поделитесь своими мыслями',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Отзыв',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Оставить отзыв'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/sv.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Swedish
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Denna feedback skickas anonymt. Atlassian kommer inte att kunna kontakta dig direkt angående denna feedback',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonym feedback',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Ja, Atlassian-team får kontakta mig för att lära sig om mina erfarenheter i syfte att förbättra Atlassians produkter och tjänster. Jag bekräftar <a>Atlassians sekretesspolicy</a>',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Berätta vad du tycker',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Feedback',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Ge feedback'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/th.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Thai (Thailand)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'ข้อคิดเห็นนี้กำลังถูกส่งโดยไม่ระบุชื่อ Atlassian จะไม่สามารถติดต่อคุณได้โดยตรงเกี่ยวกับข้อคิดเห็นนี้',
|
|
17
17
|
'feedback-collector.anonymous.title': 'ข้อคิดเห็นจากผู้ที่ไม่ระบุตัวตน',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'ใช่ ทีม Atlassian สามารถติดต่อฉันเพื่อเรียนรู้เกี่ยวกับประสบการณ์ของฉันเพื่อปรับปรุงผลิตภัณฑ์และบริการของ Atlassian ได้ ฉันรับทราบ <a>นโยบายความเป็นส่วนตัวของ Atlassian</a> แล้ว',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'แจ้งให้เราทราบถึงสิ่งที่คุณคิด',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'ข้อคิดเห็น',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'ให้ข้อคิดเห็น'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/tr.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Turkish (Turkey)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Bu geri bildirim anonim olarak gönderilir. Atlassian, bu geri bildirimle ilgili olarak sizinle doğrudan iletişime geçemez',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Anonim geri bildirim',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Evet, Atlassian takımları Atlassian ürünlerini ve hizmetlerini iyileştirmek üzere deneyimlerimi öğrenmek için benimle iletişime geçebilir. <a>Atlassian Gizlilik Politikası</a> hükümlerini onaylıyorum.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Fikirlerinizi bizimle paylaşın',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Geri bildirim',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Geri bildirim verin'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/uk.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Ukrainian (Ukraine)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Цей відгук надсилається анонімно. Atlassian не зможе зв’язатися з вами безпосередньо щодо нього.',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Анонімний відгук',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Так, команди Atlassian можуть зв’язуватися зі мною щодо моєї роботи з продуктами й службами Atlassian із метою вдосконалення їх. Я погоджуюся з <a>Політикою конфіденційності Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Поділіться враженнями',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Залишити відгук',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Залишити відгук'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/vi.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Vietnamese (Vietnam)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': 'Phản hồi này đang được gửi ẩn danh. Atlassian sẽ không thể liên hệ trực tiếp với bạn về phản hồi này',
|
|
17
17
|
'feedback-collector.anonymous.title': 'Phản hồi ẩn danh',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': 'Có, đội ngũ Atlassian có thể liên hệ với tôi để tìm hiểu thêm về trải nghiệm của tôi nhằm cải thiện các sản phẩm và dịch vụ của Atlassian. Tôi công nhận <a>Chính sách Quyền riêng tư của Atlassian</a>.',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': 'Hãy cho chúng tôi biết suy nghĩ của bạn',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': 'Phản hồi',
|
|
37
37
|
'proforma-form-builder.give-feedback': 'Đưa ra phản hồi'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/zh.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Chinese (Simplified)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': '此反馈将匿名提交。Atlassian 将无法就此反馈直接与您联系',
|
|
17
17
|
'feedback-collector.anonymous.title': '匿名反馈',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': '是的,Atlassian 团队可以联系我,以便了解我的体验,进而改进 Atlassian 产品和服务。我确认 <a>Atlassian 隐私政策</a>。',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': '告诉我们您的想法',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': '反馈',
|
|
37
37
|
'proforma-form-builder.give-feedback': '提供反馈'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/i18n/zh_TW.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.default = void 0;
|
|
|
12
12
|
* DO NOT CHANGE IT BY HAND or your changes will be lost.
|
|
13
13
|
*/
|
|
14
14
|
//Chinese (Traditional)
|
|
15
|
-
var _default = {
|
|
15
|
+
var _default = exports.default = {
|
|
16
16
|
'feedback-collector.anonymous': '此意見反應會以匿名方式提交。Atlassian 將無法就此意見反應直接與您聯繫',
|
|
17
17
|
'feedback-collector.anonymous.title': '匿名意見反應',
|
|
18
18
|
'feedback-collector.can-be-contacted.label': '是的,Atlassian 團隊可以與我聯繫,詢問我的使用體驗,以便改善 Atlassian 產品和服務。我同意 <a>Atlassian 隱私政策</a>。',
|
|
@@ -35,5 +35,4 @@ var _default = {
|
|
|
35
35
|
'feedback-collector.summary-placeholder': '讓我們知道您的想法',
|
|
36
36
|
'proforma-form-builder.feedback-icon-label': '意見反應',
|
|
37
37
|
'proforma-form-builder.give-feedback': '提供意見反應'
|
|
38
|
-
};
|
|
39
|
-
exports.default = _default;
|
|
38
|
+
};
|
package/dist/cjs/index.js
CHANGED
|
@@ -27,5 +27,4 @@ var _FeedbackButton = _interopRequireDefault(require("./components/FeedbackButto
|
|
|
27
27
|
var _FeedbackCollector = _interopRequireDefault(require("./components/FeedbackCollector"));
|
|
28
28
|
var _FeedbackFlag = _interopRequireDefault(require("./components/FeedbackFlag"));
|
|
29
29
|
var _FeedbackForm = _interopRequireDefault(require("./components/FeedbackForm"));
|
|
30
|
-
var _default = _FeedbackCollector.default;
|
|
31
|
-
exports.default = _default;
|
|
30
|
+
var _default = exports.default = _FeedbackCollector.default;
|
package/dist/cjs/messages.js
CHANGED
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.messages = void 0;
|
|
7
7
|
var _reactIntlNext = require("react-intl-next");
|
|
8
|
-
var messages = (0, _reactIntlNext.defineMessages)({
|
|
8
|
+
var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
9
9
|
feedbackTitle: {
|
|
10
10
|
id: 'feedback-collector.feedback-title',
|
|
11
11
|
defaultMessage: 'Share your thoughts',
|
|
@@ -121,5 +121,4 @@ var messages = (0, _reactIntlNext.defineMessages)({
|
|
|
121
121
|
defaultMessage: 'This feedback is being submitted anonymously. Atlassian will not be able to contact you directly regarding this feedback',
|
|
122
122
|
description: 'Notice that feedback is anonymous'
|
|
123
123
|
}
|
|
124
|
-
});
|
|
125
|
-
exports.messages = messages;
|
|
124
|
+
});
|
|
@@ -21,7 +21,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
21
21
|
* @param locale string specifying the locale like 'en_GB', or 'fr'.
|
|
22
22
|
*/
|
|
23
23
|
|
|
24
|
-
var getMessagesForLocale = /*#__PURE__*/function () {
|
|
24
|
+
var getMessagesForLocale = exports.getMessagesForLocale = /*#__PURE__*/function () {
|
|
25
25
|
var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(locale) {
|
|
26
26
|
var messages, parentLocale, _messages;
|
|
27
27
|
return _regenerator.default.wrap(function _callee$(_context) {
|
|
@@ -69,5 +69,4 @@ var getMessagesForLocale = /*#__PURE__*/function () {
|
|
|
69
69
|
return function getMessagesForLocale(_x) {
|
|
70
70
|
return _ref.apply(this, arguments);
|
|
71
71
|
};
|
|
72
|
-
}();
|
|
73
|
-
exports.getMessagesForLocale = getMessagesForLocale;
|
|
72
|
+
}();
|
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.isApiGatewayUrl = void 0;
|
|
7
|
-
var isApiGatewayUrl = function isApiGatewayUrl(url) {
|
|
7
|
+
var isApiGatewayUrl = exports.isApiGatewayUrl = function isApiGatewayUrl(url) {
|
|
8
8
|
return ['/gateway/api', 'https://api-gateway.trellis.coffee/gateway/api', 'https://api-gateway.trello.com/gateway/api'].includes(url);
|
|
9
|
-
};
|
|
10
|
-
exports.isApiGatewayUrl = isApiGatewayUrl;
|
|
9
|
+
};
|
|
@@ -81,7 +81,7 @@ export default class FeedbackCollector extends Component {
|
|
|
81
81
|
return FeedbackCollector.defaultProps.url;
|
|
82
82
|
}
|
|
83
83
|
getPackageVersion() {
|
|
84
|
-
return "13.0.
|
|
84
|
+
return "13.0.9" || 'Unknown, at least 11.0.0';
|
|
85
85
|
}
|
|
86
86
|
async getEntitlementInformation() {
|
|
87
87
|
var _entitlementDetails, _entitlementDetails2, _productName, _entitlement, _productEntitlement;
|
|
@@ -18,12 +18,8 @@ const FeedbackFlag = ({
|
|
|
18
18
|
label: "Success"
|
|
19
19
|
}),
|
|
20
20
|
id: "feedbackSent",
|
|
21
|
-
description: description || formatMessage(
|
|
22
|
-
|
|
23
|
-
}),
|
|
24
|
-
title: title || formatMessage({
|
|
25
|
-
...messages.feedbackSuccessFlagTitle
|
|
26
|
-
})
|
|
21
|
+
description: description || formatMessage(messages.feedbackSuccessFlagDescription),
|
|
22
|
+
title: title || formatMessage(messages.feedbackSuccessFlagTitle)
|
|
27
23
|
});
|
|
28
24
|
};
|
|
29
25
|
const FeedbackFlagWithIntl = props => /*#__PURE__*/React.createElement(IntlProviderWithResolvedMessages, {
|
|
@@ -126,7 +126,7 @@ var FeedbackCollector = /*#__PURE__*/function (_Component) {
|
|
|
126
126
|
}, {
|
|
127
127
|
key: "getPackageVersion",
|
|
128
128
|
value: function getPackageVersion() {
|
|
129
|
-
return "13.0.
|
|
129
|
+
return "13.0.9" || 'Unknown, at least 11.0.0';
|
|
130
130
|
}
|
|
131
131
|
}, {
|
|
132
132
|
key: "getEntitlementInformation",
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
-
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
1
|
import React from 'react';
|
|
5
2
|
import { useIntl } from 'react-intl-next';
|
|
6
3
|
import { AutoDismissFlag } from '@atlaskit/flag';
|
|
@@ -19,8 +16,8 @@ var FeedbackFlag = function FeedbackFlag(_ref) {
|
|
|
19
16
|
label: "Success"
|
|
20
17
|
}),
|
|
21
18
|
id: "feedbackSent",
|
|
22
|
-
description: description || formatMessage(
|
|
23
|
-
title: title || formatMessage(
|
|
19
|
+
description: description || formatMessage(messages.feedbackSuccessFlagDescription),
|
|
20
|
+
title: title || formatMessage(messages.feedbackSuccessFlagTitle)
|
|
24
21
|
});
|
|
25
22
|
};
|
|
26
23
|
var FeedbackFlagWithIntl = function FeedbackFlagWithIntl(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/feedback-collector",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.9",
|
|
4
4
|
"description": "A component that collects feedback across Atlassian products.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"@atlaskit/button": "^16.10.0",
|
|
38
38
|
"@atlaskit/checkbox": "^12.6.0",
|
|
39
39
|
"@atlaskit/flag": "^15.2.0",
|
|
40
|
-
"@atlaskit/form": "^8.11.
|
|
40
|
+
"@atlaskit/form": "^8.11.13",
|
|
41
41
|
"@atlaskit/icon": "^21.12.0",
|
|
42
|
-
"@atlaskit/modal-dialog": "^12.
|
|
42
|
+
"@atlaskit/modal-dialog": "^12.8.0",
|
|
43
43
|
"@atlaskit/section-message": "^6.4.0",
|
|
44
44
|
"@atlaskit/select": "^16.7.0",
|
|
45
45
|
"@atlaskit/textarea": "^4.7.0",
|
|
46
46
|
"@atlaskit/theme": "^12.6.0",
|
|
47
|
-
"@atlaskit/tokens": "^1.
|
|
47
|
+
"@atlaskit/tokens": "^1.26.0",
|
|
48
48
|
"@babel/runtime": "^7.0.0",
|
|
49
49
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
50
50
|
},
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"react": "^16.8.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@atlaskit/section-message": "^6.4.0",
|
|
56
55
|
"@atlaskit/ssr": "*",
|
|
57
56
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
58
57
|
"@testing-library/react": "^12.1.5",
|