code7-leia 0.1.105 → 0.1.106

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.
@@ -47,6 +47,11 @@ export const Container = styled.div`
47
47
  color: white;
48
48
  }
49
49
 
50
+ .delete {
51
+ background: #871821;
52
+ color: white;
53
+ }
54
+
50
55
  .presset {
51
56
  padding-top: 10px;
52
57
  display: flex;
@@ -56,6 +56,7 @@ export const Result = styled.div`
56
56
  .text{
57
57
  margin-left: 5px;
58
58
  font-size: 14px;
59
+ line-height: 1.5;
59
60
  }
60
61
 
61
62
  .icon {
@@ -13,6 +13,7 @@ type FileArea = {
13
13
  descriptionUpload: string;
14
14
  chooseFile: string;
15
15
  uploadFile: string;
16
+ deleteFileTitle: string;
16
17
  deleteFile: string;
17
18
  };
18
19
  };
@@ -19,6 +19,7 @@ const defaultLanguage: Language = {
19
19
  descriptionUpload: 'Drag and drop files here or',
20
20
  chooseFile: 'Choose a file',
21
21
  uploadFile: 'Upload a file',
22
+ deleteFileTitle: 'Delete a file',
22
23
  deleteFile: 'Important! By deleting this file, you will lose all its information and will not be able to recover it.'
23
24
  },
24
25
  },
@@ -62,6 +63,7 @@ export const getLanguage = (language: keyof Record<'en' | 'pt-br' | 'es', Langua
62
63
  descriptionUpload: 'Arraste e solte os arquivos aqui ou',
63
64
  chooseFile: 'Escolha um arquivo',
64
65
  uploadFile: 'Enviar um arquivo',
66
+ deleteFileTitle: 'Deletar um arquivo',
65
67
  deleteFile: 'Importante! Ao deletar esse arquivo você perderá todas as informações dele e não terá como recuperá-las.'
66
68
  },
67
69
  },
@@ -104,6 +106,7 @@ export const getLanguage = (language: keyof Record<'en' | 'pt-br' | 'es', Langua
104
106
  ...defaultLanguage.fileArea.modal,
105
107
  descriptionUpload: 'Arrastre y suelte los archivos aquí o',
106
108
  chooseFile: 'Elegir un archivo',
109
+ deleteFileTitle: 'Eliminar un archivo',
107
110
  deleteFile: '¡Importante! Al borrar este archivo perderás toda la información contenida en él y no podrás recuperarla.'
108
111
  },
109
112
  },