Skip to content

Commit 078a585

Browse files
committed
[BUILD]: new build process
1 parent bf6474a commit 078a585

File tree

14 files changed

+61
-24
lines changed

14 files changed

+61
-24
lines changed

build/components/dropzone/components/Dropzone/DropzoneProps.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export interface DropzoneProps extends OverridableProps {
143143
/**
144144
* language to be used
145145
* for now
146-
* only English and Spanish is supported
146+
* only English, French and Spanish are supported
147147
*/
148148
localization?: Localization;
149149
}

build/components/dropzone/components/DropzoneUI/DropzoneUI.d.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

build/components/dropzone/components/DropzoneUI/DropzoneUIProps.d.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export { default as DropzoneUI } from "./components/Dropzone/Dropzone";
1+
export { default as Dropzone } from "./components/Dropzone/Dropzone";
22
export * from "./components/Dropzone/Dropzone";

build/components/file-item/components/FileItemMainLayer/FileItemMainLayer.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface FileItemMainLayerProps {
1616
* for now
1717
* only English and Spanish is supported
1818
*/
19-
localization: Localization;
19+
localization?: Localization;
2020
}
2121
declare const FileItemMainLayer: FC<FileItemMainLayerProps>;
2222
export default FileItemMainLayer;

build/index.es.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.es.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { ComponentLocalizer, LocalLabels, Localization } from "./localization";
2+
/**
3+
* English translation for FileItem component
4+
*/
5+
export declare const FileItemEnglish: LocalLabels;
6+
/**
7+
* French translation for FileItem component
8+
*/
9+
export declare const FileItemFrench: LocalLabels;
10+
/**
11+
* Spanish translation for FileItem component
12+
*/
13+
export declare const FileItemSpanish: LocalLabels;
14+
export declare const FileItemLocalizer: ComponentLocalizer;
15+
/**
16+
* Secure translation through a selector
17+
* @param local the Localization
18+
* @returns a ComponentLocalizer object that contains the translation
19+
*/
20+
export declare const FileItemLocalizerSelector: (local: Localization) => LocalLabels;

0 commit comments

Comments
 (0)