@dev-tcloud/tcloud-ui 7.0.2 → 7.0.4
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/docs/tcloud-ui-upload-area.md +2 -2
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +22 -12
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/js/tcloud-ui-app.js +3 -3
- package/package.json +1 -1
- package/scss/tcloud-revitalizacao/components/_tc-rev-button.scss +2 -2
- package/types/dev-tcloud-tcloud-ui.d.ts +2 -0
package/package.json
CHANGED
|
@@ -218,8 +218,8 @@ $btn-by-colors-by-link:
|
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.tc-rev-btn-square{
|
|
221
|
-
background-color:
|
|
222
|
-
border: 1.5px solid
|
|
221
|
+
background-color: var(--c-neutral-50);
|
|
222
|
+
border: 1.5px solid var(--c-primary-500);
|
|
223
223
|
border-radius: 5px;
|
|
224
224
|
color: var(--c-primary-500);
|
|
225
225
|
cursor: pointer;
|
|
@@ -2180,6 +2180,8 @@ declare class TCloudUiUploadAreaComponent {
|
|
|
2180
2180
|
onFilesSelected(event: Event): void;
|
|
2181
2181
|
toFilesSelected(files: File[]): void;
|
|
2182
2182
|
generateNameFile(fileName: string): string;
|
|
2183
|
+
private static readonly COMPOUND_EXTENSIONS;
|
|
2184
|
+
private getFullExtension;
|
|
2183
2185
|
previews: string[];
|
|
2184
2186
|
onImagesSelected(files: File[]): void;
|
|
2185
2187
|
private updateProgress;
|