@omniumretail/component-library 1.3.67 → 1.3.69
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/component-library.es.js +82 -37
- package/dist/component-library.umd.js +4 -4
- package/dist/components/Header/components/SupportModal/index.d.ts +2 -0
- package/dist/locales/en.json.d.ts +2 -1
- package/dist/locales/es.json.d.ts +2 -1
- package/dist/locales/pt.json.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { UploadFile } from 'antd/es/upload/interface';
|
|
1
2
|
interface SupportModalProps {
|
|
2
3
|
visible: boolean;
|
|
3
4
|
onClose: () => void;
|
|
@@ -8,6 +9,7 @@ export interface SupportData {
|
|
|
8
9
|
type: 'suggestion' | 'problem';
|
|
9
10
|
application: string;
|
|
10
11
|
description: string;
|
|
12
|
+
attachments: UploadFile[];
|
|
11
13
|
}
|
|
12
14
|
export interface ApplicationOption {
|
|
13
15
|
value: string;
|
|
@@ -154,7 +154,8 @@ declare const _default: {
|
|
|
154
154
|
"problem": "Problem",
|
|
155
155
|
"applicationPlaceholder": "Application",
|
|
156
156
|
"descriptionPlaceholder": "Please provide as much detail as possible for your suggestion or problem.",
|
|
157
|
-
"submitButton": "Submit Notification"
|
|
157
|
+
"submitButton": "Submit Notification",
|
|
158
|
+
"attachFiles": "Attach files"
|
|
158
159
|
}
|
|
159
160
|
}
|
|
160
161
|
};
|
|
@@ -154,7 +154,8 @@ declare const _default: {
|
|
|
154
154
|
"problem": "Problema",
|
|
155
155
|
"applicationPlaceholder": "Aplicación",
|
|
156
156
|
"descriptionPlaceholder": "Indique, con el mayor detalle posible, su sugerencia o problema.",
|
|
157
|
-
"submitButton": "Enviar Notificación"
|
|
157
|
+
"submitButton": "Enviar Notificación",
|
|
158
|
+
"attachFiles": "Adjuntar archivos"
|
|
158
159
|
}
|
|
159
160
|
}
|
|
160
161
|
};
|
|
@@ -154,7 +154,8 @@ declare const _default: {
|
|
|
154
154
|
"problem": "Problema",
|
|
155
155
|
"applicationPlaceholder": "Aplicação",
|
|
156
156
|
"descriptionPlaceholder": "Indique, com o maior detalhe possível, a sua sugestão ou problema",
|
|
157
|
-
"submitButton": "Enviar Notificação"
|
|
157
|
+
"submitButton": "Enviar Notificação",
|
|
158
|
+
"attachFiles": "Anexar arquivos"
|
|
158
159
|
}
|
|
159
160
|
}
|
|
160
161
|
};
|