@semcore/feedback-form 6.42.0 → 6.42.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 +6 -0
- package/lib/cjs/FeedbackForm.js +10 -8
- package/lib/cjs/FeedbackForm.js.map +1 -1
- package/lib/cjs/component/checkbox-button/CheckboxButton.js +6 -4
- package/lib/cjs/component/checkbox-button/CheckboxButton.js.map +1 -1
- package/lib/cjs/component/feedback-rating/FeedbackRating.js +5 -3
- package/lib/cjs/component/feedback-rating/FeedbackRating.js.map +1 -1
- package/lib/cjs/component/slider-rating/SliderRating.js +10 -8
- package/lib/cjs/component/slider-rating/SliderRating.js.map +1 -1
- package/lib/es6/FeedbackForm.js +10 -8
- package/lib/es6/FeedbackForm.js.map +1 -1
- package/lib/es6/component/checkbox-button/CheckboxButton.js +6 -4
- package/lib/es6/component/checkbox-button/CheckboxButton.js.map +1 -1
- package/lib/es6/component/feedback-rating/FeedbackRating.js +5 -3
- package/lib/es6/component/feedback-rating/FeedbackRating.js.map +1 -1
- package/lib/es6/component/slider-rating/SliderRating.js +10 -8
- package/lib/es6/component/slider-rating/SliderRating.js.map +1 -1
- package/lib/esm/FeedbackForm.mjs +129 -108
- package/lib/esm/component/checkbox-button/CheckboxButton.mjs +52 -42
- package/lib/esm/component/feedback-item/FeedbackItem.mjs +44 -33
- package/lib/esm/component/feedback-rating/FeedbackRating.mjs +297 -247
- package/lib/esm/component/slider-rating/SliderRating.mjs +178 -138
- package/lib/esm/component/submit-button/SubmitButton.mjs +14 -12
- package/lib/esm/index.mjs +4 -4
- package/lib/esm/style/checkbox-button.shadow.css +21 -0
- package/lib/esm/style/feedback-form.shadow.css +36 -0
- package/lib/esm/style/feedback-rating.shadow.css +9 -0
- package/lib/esm/style/slider-rating.shadow.css +33 -0
- package/lib/esm/translations/__intergalactic-dynamic-locales.mjs +30 -30
- package/lib/esm/translations/de.json.mjs +20 -14
- package/lib/esm/translations/en.json.mjs +20 -14
- package/lib/esm/translations/es.json.mjs +20 -14
- package/lib/esm/translations/fr.json.mjs +20 -14
- package/lib/esm/translations/it.json.mjs +20 -14
- package/lib/esm/translations/ja.json.mjs +20 -14
- package/lib/esm/translations/ko.json.mjs +20 -14
- package/lib/esm/translations/nl.json.mjs +20 -14
- package/lib/esm/translations/pl.json.mjs +20 -14
- package/lib/esm/translations/pt.json.mjs +20 -14
- package/lib/esm/translations/sv.json.mjs +20 -14
- package/lib/esm/translations/tr.json.mjs +20 -14
- package/lib/esm/translations/vi.json.mjs +20 -14
- package/lib/esm/translations/zh.json.mjs +20 -14
- package/package.json +16 -16
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Leave feedback";
|
|
2
|
+
const learnMore = "Learn more";
|
|
3
|
+
const formTitle = "Feedback form";
|
|
4
|
+
const submitButton = "Send feedback";
|
|
5
|
+
const successMessage = "Thank you for your feedback!";
|
|
6
|
+
const errorMessage = "Something went wrong. Please try again or contact us at {email}.";
|
|
7
|
+
const en = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Press Enter to select the rating",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Your rating: {selectedRating} out of {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Not set",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} out of {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
en as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Dejar comentarios";
|
|
2
|
+
const learnMore = "Leer más";
|
|
3
|
+
const formTitle = "Formulario de comentarios";
|
|
4
|
+
const submitButton = "Enviar comentarios";
|
|
5
|
+
const successMessage = "¡Gracias por tu opinión!";
|
|
6
|
+
const errorMessage = "Ha habido un error. Vuelve a intentarlo o contacta con nosotros en {email}.";
|
|
7
|
+
const es = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Pulsa Intro para seleccionar la puntuación",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Tu puntuación: {selectedRating} de {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Sin definir",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} de {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
es as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Envoyer des commentaires";
|
|
2
|
+
const learnMore = "En savoir plus";
|
|
3
|
+
const formTitle = "Formulaire de commentaires";
|
|
4
|
+
const submitButton = "Envoyer des commentaires";
|
|
5
|
+
const successMessage = "Merci pour vos commentaires !";
|
|
6
|
+
const errorMessage = "Une erreur est survenue. Veuillez réessayer ou nous contacter à l’adresse {email}.";
|
|
7
|
+
const fr = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Appuyez sur Entrée pour sélectionner la note",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Votre \uFEFFnote : {selectedRating} sur {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Non défini",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} sur {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
fr as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Lascia un feedback";
|
|
2
|
+
const learnMore = "Scopri di più";
|
|
3
|
+
const formTitle = "Modulo di feedback";
|
|
4
|
+
const submitButton = "Invia feedback";
|
|
5
|
+
const successMessage = "Grazie per il tuo feedback!";
|
|
6
|
+
const errorMessage = "Si è verificato un errore. Prova di nuovo o contattaci all'indirizzo {email}.";
|
|
7
|
+
const it = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Premi Invio per selezionare la valutazione",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "La tua valutazione: {selectedRating} su {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Non impostato",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} su {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
it as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "フィードバックを送る";
|
|
2
|
+
const learnMore = "詳細情報";
|
|
3
|
+
const formTitle = "フィードバックのフォーム";
|
|
4
|
+
const submitButton = "フィードバックを送信";
|
|
5
|
+
const successMessage = "フィードバックをお送りいただき、ありがとうございます!";
|
|
6
|
+
const errorMessage = "エラーが発生しました。もう一度お試しいただくか、{email}までお問い合わせください。";
|
|
7
|
+
const ja = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "レーティングを選択するにはEnterキーを押します",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "あなたのレーティング:{selectedRating}/{max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "未設定",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating}/{max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
ja as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "피드백 남기기";
|
|
2
|
+
const learnMore = "더 알아보기";
|
|
3
|
+
const formTitle = "피드백 양식";
|
|
4
|
+
const submitButton = "피드백 보내기";
|
|
5
|
+
const successMessage = "피드백을 주셔서 감사합니다!";
|
|
6
|
+
const errorMessage = "오류가 발생했습니다. 다시 시도하거나 {email}으로 문의해 주세요.";
|
|
7
|
+
const ko = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Enter 키로 별점을 선택하세요",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "내 평점: {selectedRating}/{max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "평가하지 않음",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating}/{max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
ko as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Feedback geven";
|
|
2
|
+
const learnMore = "Lees meer";
|
|
3
|
+
const formTitle = "Feedback formulier";
|
|
4
|
+
const submitButton = "Feedback sturen";
|
|
5
|
+
const successMessage = "Bedankt voor je feedback!";
|
|
6
|
+
const errorMessage = "Er is iets fout gegaan. Probeer het opnieuw of neem contact met ons op via {email}.";
|
|
7
|
+
const nl = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Druk op Enter om de beoordeling te selecteren",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Jouw beoordeling: {selectedRating} uit {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Niet ingesteld",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} uit {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
nl as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Wyślij opinię";
|
|
2
|
+
const learnMore = "Dowiedz się więcej";
|
|
3
|
+
const formTitle = "Formularz opinii";
|
|
4
|
+
const submitButton = "Wyślij opinię";
|
|
5
|
+
const successMessage = "Dziękujemy za opinię!";
|
|
6
|
+
const errorMessage = "Coś poszło nie tak. Spróbuj ponownie lub skontaktuj się z nami pod adresem {email}.";
|
|
7
|
+
const pl = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Naciśnij Enter, aby wybrać ocenę",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Twoja ocena: {selectedRating} z {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Nie ustawiono",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} z {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
pl as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Deixar feedback";
|
|
2
|
+
const learnMore = "Saiba mais";
|
|
3
|
+
const formTitle = "Formulário de comentários";
|
|
4
|
+
const submitButton = "Enviar comentário";
|
|
5
|
+
const successMessage = "Agradecemos pelos comentários!";
|
|
6
|
+
const errorMessage = "Algo deu errado. Tente novamente ou entre em contato conosco pelo e-mail {email}.";
|
|
7
|
+
const pt = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Pressione Enter para selecionar a classificação",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Sua classificação: {selectedRating} de {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Não definida",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} de {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
pt as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Ge feedback";
|
|
2
|
+
const learnMore = "Läs mer";
|
|
3
|
+
const formTitle = "Feedbackformulär";
|
|
4
|
+
const submitButton = "Skicka feedback";
|
|
5
|
+
const successMessage = "Tack för din feedback!";
|
|
6
|
+
const errorMessage = "Något gick fel. Försök igen eller kontakta oss via {email}.";
|
|
7
|
+
const sv = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Tryck på Enter för att välja betyg",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Ditt betyg: {selectedRating} av {max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Inget valt",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} av {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
sv as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Geri bildirim ver";
|
|
2
|
+
const learnMore = "Daha fazla öğren";
|
|
3
|
+
const formTitle = "Geri bildirim formu";
|
|
4
|
+
const submitButton = "Geri bildirim gönder";
|
|
5
|
+
const successMessage = "Geri bildiriminiz için teşekkür ederiz!";
|
|
6
|
+
const errorMessage = "Bir şeyler yanlış gitti. Lütfen tekrar deneyin veya {email} adresinden bizimle iletişime geçin.";
|
|
7
|
+
const tr = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Derecelendirmeyi seçmek için Enter tuşuna basın",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Puanınız: {max} üzerinden {selectedRating}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Ayarlanmadı",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{max} üzerinden {selectedRating}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
tr as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "Gửi góp ý";
|
|
2
|
+
const learnMore = "Tìm hiểu thêm";
|
|
3
|
+
const formTitle = "Biểu mẫu Phản hồi";
|
|
4
|
+
const submitButton = "Gửi góp ý";
|
|
5
|
+
const successMessage = "Cảm ơn góp ý của bạn!";
|
|
6
|
+
const errorMessage = "Đã xảy ra sự cố. Hãy thử lại hoặc liên hệ với chúng tôi qua {email}.";
|
|
7
|
+
const vi = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "Nhấn Enter để chọn đánh giá",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "Đánh giá của bạn: {selectedRating}/{max}",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "Chưa chọn",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating}/{max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
vi as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
const leaveFeedback = "留言反馈";
|
|
2
|
+
const learnMore = "了解更多";
|
|
3
|
+
const formTitle = "反馈表格";
|
|
4
|
+
const submitButton = "发送反馈";
|
|
5
|
+
const successMessage = "感谢您的反馈!";
|
|
6
|
+
const errorMessage = "出错了。请重试或通过 {email} 联系我们。";
|
|
7
|
+
const zh = {
|
|
8
|
+
leaveFeedback,
|
|
9
|
+
learnMore,
|
|
10
|
+
formTitle,
|
|
11
|
+
submitButton,
|
|
12
|
+
successMessage,
|
|
13
|
+
errorMessage,
|
|
8
14
|
"FeedbackRating.SliderRating.ScreenReaderOnly.sliderDescriber": "按 Enter 选择评级",
|
|
9
15
|
"FeedbackRating.SliderRating.aria-valuetext.readonly": "您的评级:{selectedRating} / {max",
|
|
10
16
|
"FeedbackRating.SliderRating.aria-valuetext.empty": "未设置",
|
|
11
17
|
"FeedbackRating.SliderRating.aria-valuetext": "{selectedRating} / {max}"
|
|
12
18
|
};
|
|
13
19
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
zh as default,
|
|
21
|
+
errorMessage,
|
|
22
|
+
formTitle,
|
|
23
|
+
learnMore,
|
|
24
|
+
leaveFeedback,
|
|
25
|
+
submitButton,
|
|
26
|
+
successMessage
|
|
21
27
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/feedback-form",
|
|
3
3
|
"description": "Semrush Feedback Form Component",
|
|
4
|
-
"version": "6.42.
|
|
4
|
+
"version": "6.42.1",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -14,22 +14,22 @@
|
|
|
14
14
|
"types": "./lib/types/index.d.ts"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@semcore/checkbox": "7.44.
|
|
18
|
-
"@semcore/notice-bubble": "5.54.
|
|
19
|
-
"@semcore/typography": "5.53.
|
|
20
|
-
"@semcore/link": "5.44.
|
|
21
|
-
"@semcore/modal": "4.56.
|
|
22
|
-
"@semcore/illustration": "2.44.
|
|
23
|
-
"@semcore/icon": "4.
|
|
24
|
-
"@semcore/textarea": "5.40.
|
|
25
|
-
"@semcore/input": "4.42.
|
|
17
|
+
"@semcore/checkbox": "7.44.3",
|
|
18
|
+
"@semcore/notice-bubble": "5.54.1",
|
|
19
|
+
"@semcore/typography": "5.53.1",
|
|
20
|
+
"@semcore/link": "5.44.3",
|
|
21
|
+
"@semcore/modal": "4.56.1",
|
|
22
|
+
"@semcore/illustration": "2.44.1",
|
|
23
|
+
"@semcore/icon": "4.62.0",
|
|
24
|
+
"@semcore/textarea": "5.40.3",
|
|
25
|
+
"@semcore/input": "4.42.3",
|
|
26
26
|
"final-form": "4.20.7",
|
|
27
|
-
"@semcore/button": "5.43.
|
|
28
|
-
"@semcore/flex-box": "5.41.
|
|
29
|
-
"@semcore/notice": "5.47.
|
|
30
|
-
"@semcore/spin-container": "7.41.
|
|
31
|
-
"@semcore/tooltip": "6.49.
|
|
32
|
-
"@semcore/utils": "4.48.
|
|
27
|
+
"@semcore/button": "5.43.2",
|
|
28
|
+
"@semcore/flex-box": "5.41.3",
|
|
29
|
+
"@semcore/notice": "5.47.1",
|
|
30
|
+
"@semcore/spin-container": "7.41.3",
|
|
31
|
+
"@semcore/tooltip": "6.49.3",
|
|
32
|
+
"@semcore/utils": "4.48.4",
|
|
33
33
|
"final-form-focus": "1.1.2",
|
|
34
34
|
"react-final-form": "6.5.9"
|
|
35
35
|
},
|