@omniumretail/component-library 1.1.60 → 1.1.62
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 +3 -2
- 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/Button/styles.module.scss +20 -5
- 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/en.json
CHANGED
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"placeholderInfo": "Marker Information",
|
|
42
42
|
"errorInfo": "Information Error",
|
|
43
43
|
"placeholderQuestion": "Question",
|
|
44
|
+
"placeholderResponse": "Answer",
|
|
44
45
|
"errorQuestion": "Error/Missing Question",
|
|
45
46
|
"placeholderGrade": "Grade",
|
|
46
47
|
"errorGrade": "Error/Missing Grade",
|
|
@@ -49,7 +50,13 @@
|
|
|
49
50
|
"emphasisAnswer": "Highlight",
|
|
50
51
|
"responseType": "Response Type",
|
|
51
52
|
"errorResponseType": "Response type missing",
|
|
52
|
-
"header": "Header"
|
|
53
|
+
"header": "Header",
|
|
54
|
+
"color": "Assigned colour",
|
|
55
|
+
"flagged": "Flagged",
|
|
56
|
+
"placeholderScore": "Score",
|
|
57
|
+
"answerNameIsMissing": "Missing name",
|
|
58
|
+
"typeResponseNameIsMissing": "Name of the missing answer type",
|
|
59
|
+
"responseTypeName": "Name of response type"
|
|
53
60
|
},
|
|
54
61
|
"categorySidBar": {
|
|
55
62
|
"addCategory": "Add Category",
|
package/src/locales/es.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"errorInfo": "Error de Información",
|
|
43
43
|
"placeholderQuestion": "Pregunta",
|
|
44
44
|
"errorQuestion": "Error/Pregunta Faltante",
|
|
45
|
+
"placeholderResponse": "Respuesta",
|
|
45
46
|
"placeholderGrade": "Calificación",
|
|
46
47
|
"errorGrade": "Error/Calificación Faltante",
|
|
47
48
|
"newCategory": "Nueva Categoría",
|
|
@@ -49,7 +50,13 @@
|
|
|
49
50
|
"emphasisAnswer": "Resaltar",
|
|
50
51
|
"responseType": "Tipo de respuesta",
|
|
51
52
|
"errorResponseType": "Tipo de respuesta faltante",
|
|
52
|
-
"header": "Cabecera"
|
|
53
|
+
"header": "Cabecera",
|
|
54
|
+
"color": "Color asignado",
|
|
55
|
+
"flagged": "Marcado",
|
|
56
|
+
"placeholderScore": "Puntuación",
|
|
57
|
+
"answerNameIsMissing": "Falta el nombre",
|
|
58
|
+
"typeResponseNameIsMissing": "Nombre del tipo de respuesta que falta",
|
|
59
|
+
"responseTypeName": "Nombre del tipo de respuesta"
|
|
53
60
|
},
|
|
54
61
|
"categorySidBar": {
|
|
55
62
|
"addCategory": "Agregar Categoría",
|
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",
|