@atlaskit/feedback-collector 10.6.1 → 10.6.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/cjs/version.json +1 -1
  3. package/dist/es2019/version.json +1 -1
  4. package/dist/esm/version.json +1 -1
  5. package/dist/types-ts4.0/components/FeedbackButton.d.ts +8 -0
  6. package/dist/types-ts4.0/components/FeedbackCollector.d.ts +145 -0
  7. package/dist/types-ts4.0/components/FeedbackFlag.d.ts +11 -0
  8. package/dist/types-ts4.0/components/FeedbackForm.d.ts +36 -0
  9. package/dist/types-ts4.0/components/IntlProviderWithResolvedMessages.d.ts +4 -0
  10. package/dist/types-ts4.0/i18n/cs.d.ts +29 -0
  11. package/dist/types-ts4.0/i18n/da.d.ts +29 -0
  12. package/dist/types-ts4.0/i18n/de.d.ts +29 -0
  13. package/dist/types-ts4.0/i18n/en.d.ts +29 -0
  14. package/dist/types-ts4.0/i18n/en_GB.d.ts +29 -0
  15. package/dist/types-ts4.0/i18n/en_ZZ.d.ts +29 -0
  16. package/dist/types-ts4.0/i18n/es.d.ts +29 -0
  17. package/dist/types-ts4.0/i18n/fi.d.ts +29 -0
  18. package/dist/types-ts4.0/i18n/fr.d.ts +29 -0
  19. package/dist/types-ts4.0/i18n/hu.d.ts +29 -0
  20. package/dist/types-ts4.0/i18n/index.d.ts +1 -0
  21. package/dist/types-ts4.0/i18n/it.d.ts +29 -0
  22. package/dist/types-ts4.0/i18n/ja.d.ts +29 -0
  23. package/dist/types-ts4.0/i18n/ko.d.ts +29 -0
  24. package/dist/types-ts4.0/i18n/nb.d.ts +29 -0
  25. package/dist/types-ts4.0/i18n/nl.d.ts +29 -0
  26. package/dist/types-ts4.0/i18n/pl.d.ts +29 -0
  27. package/dist/types-ts4.0/i18n/pt_BR.d.ts +29 -0
  28. package/dist/types-ts4.0/i18n/ru.d.ts +29 -0
  29. package/dist/types-ts4.0/i18n/sv.d.ts +29 -0
  30. package/dist/types-ts4.0/i18n/th.d.ts +29 -0
  31. package/dist/types-ts4.0/i18n/tr.d.ts +29 -0
  32. package/dist/types-ts4.0/i18n/uk.d.ts +29 -0
  33. package/dist/types-ts4.0/i18n/vi.d.ts +29 -0
  34. package/dist/types-ts4.0/i18n/zh.d.ts +29 -0
  35. package/dist/types-ts4.0/i18n/zh_TW.d.ts +29 -0
  36. package/dist/types-ts4.0/index.d.ts +7 -0
  37. package/dist/types-ts4.0/messages.d.ts +102 -0
  38. package/dist/types-ts4.0/types.d.ts +11 -0
  39. package/dist/types-ts4.0/utils/Truncate.d.ts +1 -0
  40. package/dist/types-ts4.0/utils/i18n-get-messages-for-locale.d.ts +11 -0
  41. package/messages/package.json +8 -1
  42. package/package.json +16 -9
  43. package/report.api.md +101 -115
  44. package/types/package.json +8 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/feedback-collector
2
2
 
3
+ ## 10.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
8
+
3
9
  ## 10.6.1
4
10
 
5
11
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/feedback-collector",
3
- "version": "10.6.1",
3
+ "version": "10.6.2",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/feedback-collector",
3
- "version": "10.6.1",
3
+ "version": "10.6.2",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/feedback-collector",
3
- "version": "10.6.1",
3
+ "version": "10.6.2",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface Props {
3
+ embeddableKey: string;
4
+ requestTypeId: string;
5
+ email?: string;
6
+ }
7
+ declare const FeedbackButtonWithIntl: React.FunctionComponent<Props>;
8
+ export default FeedbackButtonWithIntl;
@@ -0,0 +1,145 @@
1
+ import React, { Component } from 'react';
2
+ import { FormFields, SelectOptionDetails, SelectValue } from '../types';
3
+ declare type FieldValueType = string | Object | Object[];
4
+ export declare type FieldType = {
5
+ id: string;
6
+ value: FieldValueType;
7
+ };
8
+ declare type FeedbackType = {
9
+ fields: FieldType[];
10
+ };
11
+ export interface Props {
12
+ /** Override the URL for HTTPS calls, only needed if service is not behind stargate (like the Atlaskit frontend itself) */
13
+ url: string;
14
+ /** The customer email */
15
+ email?: string;
16
+ /** The customer name */
17
+ name?: string;
18
+ /** The request id to access the widget service */
19
+ requestTypeId: string;
20
+ /** The embeddable key to access the widget service. Accessible from the corresponding Jira project */
21
+ embeddableKey: string;
22
+ /** Additional fields to send to the widget service **/
23
+ additionalFields: FieldType[];
24
+ /** Override the default id for the "can be contacted" custom field in your widget service **/
25
+ canBeContactedFieldId: string;
26
+ /** Override the default value for the "can be contacted" custom field in your widget service */
27
+ canBeContactedDefaultValue: FieldValueType;
28
+ /** Override the default id for the "customer name" custom field in your widget service */
29
+ customerNameFieldId: string;
30
+ /** Override the default value for the "customer name" custom field in your widget service */
31
+ customerNameDefaultValue: FieldValueType;
32
+ /** Override the default id for the "description" custom field in your widget service */
33
+ descriptionFieldId: string;
34
+ /** Override the default value for the "description" custom field in your widget service */
35
+ descriptionDefaultValue: FieldValueType;
36
+ /** Override the default id for the "enroll in research" custom field in your widget service */
37
+ enrollInResearchFieldId: string;
38
+ /** Override the default value for the "enroll in research" custom field in your widget service */
39
+ enrollInResearchDefaultValue: FieldValueType;
40
+ /** Override the default id for the "email" custom field in your widget service */
41
+ emailFieldId: string;
42
+ /** Override the default value for the "email" custom field in your widget service */
43
+ emailDefaultValue: FieldValueType;
44
+ /** Override the default id for the "summary" custom field in your widget service */
45
+ summaryFieldId: string;
46
+ /** Override the default value for the "summary" custom field in your widget service */
47
+ summaryDefaultValue: FieldValueType;
48
+ /** Number of characters that the "summary" field accepts, the rest will be truncated */
49
+ summaryTruncateLength: number;
50
+ /** After this delay the onSubmit callback will be triggered optimistically */
51
+ timeoutOnSubmit: number;
52
+ /** Override the default id for the "type" custom field in your widget service */
53
+ typeFieldId: string;
54
+ /** Override the default value for the "Bug" type of response in your widget service */
55
+ typeBugDefaultValue: FieldValueType;
56
+ /** Override the default value for the "Comment" type of response in your widget service */
57
+ typeCommentDefaultValue: FieldValueType;
58
+ /** Override the default value for the "Suggestion" type of response in your widget service */
59
+ typeSuggestionDefaultValue: FieldValueType;
60
+ /** Override the default value for the "Question" type of response in your widget service */
61
+ typeQuestionDefaultValue: FieldValueType;
62
+ /** Override the default value for the "Empty" type of response in your widget service */
63
+ typeEmptyDefaultValue: FieldValueType;
64
+ /** Override to hide the feedback type select drop down for the feedback */
65
+ showTypeField: boolean;
66
+ /** Message which will be shown as the title of the feedback dialog */
67
+ feedbackTitle?: React.ReactText;
68
+ /** Message which will be shown below the title of the feedback dialog */
69
+ feedbackTitleDetails?: React.ReactChild;
70
+ /** Message which will be shown next to the enrol in research checkbox */
71
+ enrolInResearchLabel?: React.ReactChild;
72
+ /** Message which will be shown next to the can be contacted checkbox */
73
+ canBeContactedLabel?: React.ReactChild;
74
+ /** Message which will be shown inside the summary text field */
75
+ summaryPlaceholder?: string;
76
+ /** Message for submit button label */
77
+ submitButtonLabel?: string;
78
+ /** Message for cancel button label */
79
+ cancelButtonLabel?: string;
80
+ /** Message for select option labels and field labels */
81
+ feedbackGroupLabels?: Record<SelectValue, SelectOptionDetails>;
82
+ /** Function that will be called to initiate the exit transition. */
83
+ onClose: () => void;
84
+ /** Function that will be called optimistically after a delay when the feedback is submitted. */
85
+ onSubmit: (formFields: FormFields) => void;
86
+ /** Optional locale for i18n */
87
+ locale?: string;
88
+ }
89
+ export default class FeedbackCollector extends Component<Props> {
90
+ static defaultProps: {
91
+ url: string;
92
+ canBeContactedFieldId: string;
93
+ canBeContactedDefaultValue: {
94
+ id: string;
95
+ }[];
96
+ additionalFields: never[];
97
+ customerNameFieldId: string;
98
+ customerNameDefaultValue: string;
99
+ descriptionFieldId: string;
100
+ descriptionDefaultValue: string;
101
+ enrollInResearchFieldId: string;
102
+ enrollInResearchDefaultValue: {
103
+ id: string;
104
+ }[];
105
+ emailFieldId: string;
106
+ emailDefaultValue: string;
107
+ summaryFieldId: string;
108
+ summaryDefaultValue: string;
109
+ summaryTruncateLength: number;
110
+ timeoutOnSubmit: number;
111
+ typeFieldId: string;
112
+ typeBugDefaultValue: {
113
+ id: string;
114
+ };
115
+ typeCommentDefaultValue: {
116
+ id: string;
117
+ };
118
+ typeSuggestionDefaultValue: {
119
+ id: string;
120
+ };
121
+ typeQuestionDefaultValue: {
122
+ id: string;
123
+ };
124
+ typeEmptyDefaultValue: {
125
+ id: string;
126
+ };
127
+ showTypeField: boolean;
128
+ onClose: () => void;
129
+ onSubmit: () => void;
130
+ };
131
+ getEntitlementInformation(): Promise<FieldType[] | [
132
+ ]>;
133
+ getTypeFieldValue(dtype: SelectValue): FieldValueType;
134
+ getEmailAndAtlassianID(formValues: FormFields): Promise<{
135
+ email: any;
136
+ aaidOrHash: any;
137
+ }>;
138
+ getDescription(formValues: FormFields): FieldValueType;
139
+ getSummary(formValues: FormFields): FieldValueType;
140
+ getCustomerName(): FieldValueType;
141
+ mapFormToJSD(formValues: FormFields): Promise<FeedbackType>;
142
+ postFeedback: (formValues: FormFields) => Promise<void>;
143
+ render(): JSX.Element;
144
+ }
145
+ export {};
@@ -0,0 +1,11 @@
1
+ import React, { FunctionComponent } from 'react';
2
+ interface AkProps {
3
+ isDismissAllowed?: boolean;
4
+ description?: React.ReactText;
5
+ title?: React.ReactText;
6
+ onDismissed?: (...args: Array<any>) => void;
7
+ }
8
+ declare const FeedbackFlagWithIntl: FunctionComponent<AkProps & {
9
+ locale?: string;
10
+ }>;
11
+ export default FeedbackFlagWithIntl;
@@ -0,0 +1,36 @@
1
+ import React, { FunctionComponent } from 'react';
2
+ import { FormFields, SelectOptionDetails, SelectValue } from '../types';
3
+ interface Props {
4
+ /** Message which will be shown as the title of the feedback dialog **/
5
+ feedbackTitle?: React.ReactText;
6
+ /** Override to hide the feedback type select drop down for the feedback **/
7
+ showTypeField?: boolean;
8
+ /** Message which will be shown below the title of the feedback dialog **/
9
+ feedbackTitleDetails?: React.ReactChild;
10
+ /** Message which will be shown next to the enrol in research checkbox **/
11
+ enrolInResearchLabel?: React.ReactChild;
12
+ /** Message which will be shown next to the can be contacted checkbox **/
13
+ canBeContactedLabel?: React.ReactChild;
14
+ /** Message which will be shown inside the summary text field **/
15
+ summaryPlaceholder?: string;
16
+ /** Message for submit button label **/
17
+ submitButtonLabel?: string;
18
+ /** Message for cancel button label **/
19
+ cancelButtonLabel?: string;
20
+ /** Message for select option labels and field labels **/
21
+ feedbackGroupLabels?: Record<SelectValue, SelectOptionDetails>;
22
+ /** Function that will be called to initiate the exit transition. */
23
+ onClose: () => void;
24
+ /** Function that will be called immediately after the submit action */
25
+ onSubmit: (formValues: FormFields) => void;
26
+ /** Optional locale for i18n **/
27
+ locale?: string;
28
+ }
29
+ export interface OptionType {
30
+ label: React.ReactText;
31
+ value: SelectValue;
32
+ }
33
+ declare const FeedbackFormWithIntl: FunctionComponent<Props & {
34
+ locale?: string;
35
+ }>;
36
+ export default FeedbackFormWithIntl;
@@ -0,0 +1,4 @@
1
+ import { FunctionComponent } from 'react';
2
+ export declare const IntlProviderWithResolvedMessages: FunctionComponent<{
3
+ locale?: string;
4
+ }>;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as fr } from './fr';
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;
@@ -0,0 +1,29 @@
1
+ declare const _default: {
2
+ 'feedback-collector.can-be-contacted.label': string;
3
+ 'feedback-collector.cancel-button.label': string;
4
+ 'feedback-collector.enrol-in-research.label': string;
5
+ 'feedback-collector.feedback-title': string;
6
+ 'feedback-collector.form.bug.label': string;
7
+ 'feedback-collector.form.comment.label': string;
8
+ 'feedback-collector.form.empty.label': string;
9
+ 'feedback-collector.form.question.label': string;
10
+ 'feedback-collector.form.suggestion.label': string;
11
+ 'feedback-collector.option.bug.label': string;
12
+ 'feedback-collector.option.comment.label': string;
13
+ 'feedback-collector.option.default.label': string;
14
+ 'feedback-collector.option.question.label': string;
15
+ 'feedback-collector.option.suggestion.label': string;
16
+ 'feedback-collector.submit-button.label': string;
17
+ 'feedback-collector.success-flag.description': string;
18
+ 'feedback-collector.success-flag.title': string;
19
+ 'feedback-collector.summary-placeholder': string;
20
+ 'proforma-form-builder.feedback-icon-label': string;
21
+ 'proforma-form-builder.give-feedback': string;
22
+ };
23
+ /**
24
+ * NOTE:
25
+ *
26
+ * This file is automatically generated by Traduki 2.0.
27
+ * DO NOT CHANGE IT BY HAND or your changes will be lost.
28
+ */
29
+ export default _default;