@omniumretail/component-library 1.1.60 → 1.1.61
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/dist/bundle.js +1 -1
- package/dist/bundle.js.LICENSE.txt +10 -0
- package/dist/main.css +2 -1
- package/dist/types/components/Questions/SingleQuestion/index.d.ts +1 -1
- package/dist/types/components/Questions/index.d.ts +1 -0
- package/dist/types/components/ResponseType/Category.stories.d.ts +4 -0
- package/dist/types/components/ResponseType/index.d.ts +7 -0
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +2 -2
- package/src/components/DatePickerTag/index.tsx +1 -1
- package/src/components/Questions/SingleQuestion/index.tsx +92 -26
- package/src/components/Questions/SingleQuestion/styles.module.scss +11 -3
- package/src/components/Questions/index.tsx +43 -26
- package/src/components/ResponseType/Category.stories.tsx +29 -0
- package/src/components/ResponseType/index.tsx +99 -0
- package/src/components/ResponseType/styles.module.scss +31 -0
- package/src/components/index.tsx +1 -0
- package/src/locales/en.json +8 -1
- package/src/locales/es.json +8 -1
- package/src/locales/pt.json +8 -1
package/src/locales/pt.json
CHANGED
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"placeholderInfo": "Informação da questão",
|
|
42
42
|
"errorInfo": "Informação da questão em falta",
|
|
43
43
|
"placeholderQuestion": "Questão",
|
|
44
|
+
"placeholderResponse": "Resposta",
|
|
44
45
|
"errorQuestion": "Questão em falta",
|
|
45
46
|
"placeholderGrade": "Ponderação",
|
|
46
47
|
"errorGrade": "Ponderação em falta",
|
|
@@ -49,7 +50,13 @@
|
|
|
49
50
|
"emphasisAnswer": "Destaque",
|
|
50
51
|
"responseType": "Tipo de resposta",
|
|
51
52
|
"errorResponseType": "Tipo de resposta em falta",
|
|
52
|
-
"
|
|
53
|
+
"answerNameIsMissing": "Nome em falta",
|
|
54
|
+
"header": "Cabeçalho",
|
|
55
|
+
"color": "Cor atribuída",
|
|
56
|
+
"flagged": "Sinalizado",
|
|
57
|
+
"placeholderScore": "Pontuação",
|
|
58
|
+
"typeResponseNameIsMissing": "Nome do tipo de resposta em falta",
|
|
59
|
+
"responseTypeName": "Nome do tipo de resposta"
|
|
53
60
|
},
|
|
54
61
|
"categorySidBar": {
|
|
55
62
|
"addCategory": "Adicionar categoria",
|