@omniumretail/component-library 1.0.57 → 1.0.59
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 +110 -66
- package/dist/main.css +13 -0
- package/dist/types/components/Menu/index.d.ts +0 -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/Table/index.d.ts +6 -0
- package/package.json +1 -1
- package/src/components/AnalyticsBar/index.tsx +3 -3
- package/src/components/Category/Category.stories.tsx +3 -3
- package/src/components/Category/CategoryContent/index.tsx +30 -20
- package/src/components/Category/CategorySidebar/index.tsx +3 -2
- package/src/components/CategoryResponse/index.tsx +1 -6
- package/src/components/Questions/SingleQuestion/index.tsx +5 -8
- package/src/components/Questions/index.tsx +3 -0
- package/src/components/Table/index.tsx +55 -3
- package/src/components/Table/styles.module.scss +18 -4
- package/src/components/Tag/index.tsx +2 -1
- package/src/locales/en.json +64 -23
- package/src/locales/es.json +51 -10
- package/src/locales/pt.json +24 -1
package/src/locales/es.json
CHANGED
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"tableHeadings": {
|
|
3
|
-
"key": "
|
|
4
|
-
"name": "
|
|
5
|
-
"mecanographicNumber": "
|
|
6
|
-
"store": "
|
|
7
|
-
"role": "
|
|
8
|
-
"type": "
|
|
9
|
-
"id": "
|
|
3
|
+
"key": "Chave",
|
|
4
|
+
"name": "Nome",
|
|
5
|
+
"mecanographicNumber": "Número Mecanográfico",
|
|
6
|
+
"store": "Loja",
|
|
7
|
+
"role": "Posição",
|
|
8
|
+
"type": "Tipo",
|
|
9
|
+
"id": "Id",
|
|
10
|
+
"action": "Ação"
|
|
11
|
+
},
|
|
12
|
+
"userInfoColumn": {
|
|
13
|
+
"Date": "Data",
|
|
14
|
+
"Store": "Loja",
|
|
15
|
+
"Team": "Equipa em Gestão",
|
|
16
|
+
"Supervisor": "Supervisor",
|
|
17
|
+
"TypeOfContract": "Tipo de contrato",
|
|
18
|
+
"Nationality": "Nacionalidade",
|
|
19
|
+
"CivilStatus": "Estado Civil",
|
|
20
|
+
"IdentificationDocument": "Doc.Identificação",
|
|
21
|
+
"NTaxpayer": "Nº Contribuinte",
|
|
22
|
+
"NIB": "NIB",
|
|
23
|
+
"SocialSecurity": "Nr Segurança Social",
|
|
24
|
+
"NChildren": "Nº Filhos",
|
|
25
|
+
"Workload": "Carga horária",
|
|
26
|
+
"Description": "Descrição",
|
|
27
|
+
"Comments": "Comentários"
|
|
10
28
|
},
|
|
11
29
|
"navigation": {
|
|
12
30
|
"back": "Go Back ES",
|
|
@@ -27,13 +45,36 @@
|
|
|
27
45
|
"placeholderGrade": "Grade ES",
|
|
28
46
|
"errorGrade": "Missing Grade ES"
|
|
29
47
|
},
|
|
48
|
+
"categorySidBar": {
|
|
49
|
+
"addCategory": "Adicionar Categoria",
|
|
50
|
+
"removeCategory": "Remover Categoria"
|
|
51
|
+
},
|
|
52
|
+
"categoryContent": {
|
|
53
|
+
"message": "Por favor selecione uma categoria na barra lateral",
|
|
54
|
+
"categoryName": "Nome Categoria",
|
|
55
|
+
"weighting": "Ponderação",
|
|
56
|
+
"openAnswer": "Resposta Aberta",
|
|
57
|
+
"answerOption": "Opção De Resposta",
|
|
58
|
+
"answers": "Questões"
|
|
59
|
+
},
|
|
30
60
|
"categoryResponse": {
|
|
31
|
-
"notApplicable": "
|
|
32
|
-
"answer": "
|
|
61
|
+
"notApplicable": "Não Aplicável",
|
|
62
|
+
"answer": "Resposta"
|
|
33
63
|
},
|
|
34
64
|
"categoryReadOnly": {
|
|
35
65
|
"categories": "Categories ES",
|
|
36
|
-
"categoryAverage": "
|
|
66
|
+
"categoryAverage": "Categoy Score ES"
|
|
67
|
+
},
|
|
68
|
+
"analyticsBar": {
|
|
69
|
+
"desc": "Decrescente",
|
|
70
|
+
"asc": "Crescente"
|
|
71
|
+
},
|
|
72
|
+
"tag": {
|
|
73
|
+
"search": "Procurar"
|
|
74
|
+
},
|
|
75
|
+
"table": {
|
|
76
|
+
"selectAll": "Select All ES",
|
|
77
|
+
"deselectAll": "Deselect All ES"
|
|
37
78
|
}
|
|
38
79
|
}
|
|
39
80
|
}
|
package/src/locales/pt.json
CHANGED
|
@@ -45,13 +45,36 @@
|
|
|
45
45
|
"placeholderGrade": "Grade PT",
|
|
46
46
|
"errorGrade": "Missing Grade PT"
|
|
47
47
|
},
|
|
48
|
+
"categorySidBar": {
|
|
49
|
+
"addCategory": "Adicionar Categoria",
|
|
50
|
+
"removeCategory": "Remover Categoria"
|
|
51
|
+
},
|
|
52
|
+
"categoryContent": {
|
|
53
|
+
"message": "Por favor selecione uma categoria na barra lateral",
|
|
54
|
+
"categoryName": "Nome Categoria",
|
|
55
|
+
"weighting": "Ponderação",
|
|
56
|
+
"openAnswer": "Resposta Aberta",
|
|
57
|
+
"answerOption": "Opção De Resposta",
|
|
58
|
+
"answers": "Questões"
|
|
59
|
+
},
|
|
48
60
|
"categoryResponse": {
|
|
49
61
|
"notApplicable": "Não Aplicável",
|
|
50
62
|
"answer": "Resposta"
|
|
51
63
|
},
|
|
52
64
|
"categoryReadOnly": {
|
|
53
65
|
"categories": "Categories PT",
|
|
54
|
-
"categoryAverage": "
|
|
66
|
+
"categoryAverage": "Categoy Score PT"
|
|
67
|
+
},
|
|
68
|
+
"analyticsBar": {
|
|
69
|
+
"desc": "Decrescente",
|
|
70
|
+
"asc": "Crescente"
|
|
71
|
+
},
|
|
72
|
+
"tag": {
|
|
73
|
+
"search": "Procurar"
|
|
74
|
+
},
|
|
75
|
+
"table": {
|
|
76
|
+
"selectAll": "Select All PT",
|
|
77
|
+
"deselectAll": "Deselect All PT"
|
|
55
78
|
}
|
|
56
79
|
}
|
|
57
80
|
}
|