@delightui/components 0.1.58 → 0.1.60
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/cjs/components/organisms/Dropzone/Dropzone.types.d.ts +1 -0
- package/dist/cjs/components/organisms/DropzoneContent/DropzoneContent.d.ts +2 -1
- package/dist/cjs/library.css +885 -1056
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/organisms/Dropzone/Dropzone.types.d.ts +1 -0
- package/dist/esm/components/organisms/DropzoneContent/DropzoneContent.d.ts +2 -1
- package/dist/esm/library.css +885 -1056
- package/dist/esm/library.js +1 -1
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2109,6 +2109,7 @@ declare const _default: React__default.NamedExoticComponent<ChipInputProps>;
|
|
|
2109
2109
|
* @param onFilesReset () => void - callback when files are reset
|
|
2110
2110
|
*/
|
|
2111
2111
|
type DropzoneProps = {
|
|
2112
|
+
className?: string;
|
|
2112
2113
|
/**
|
|
2113
2114
|
* The initial state of the dropzone.
|
|
2114
2115
|
*/
|
|
@@ -2215,7 +2216,7 @@ type DropzoneContentProps = {
|
|
|
2215
2216
|
type: DropzoneContentTypeEnum;
|
|
2216
2217
|
};
|
|
2217
2218
|
|
|
2218
|
-
declare const DropzoneContent: (props: DropzoneContentProps) =>
|
|
2219
|
+
declare const DropzoneContent: (props: DropzoneContentProps) => React__default.JSX.Element;
|
|
2219
2220
|
|
|
2220
2221
|
declare const Form: <T extends FormState>(props: FormProviderProps<T> & FormProps) => React__default.JSX.Element;
|
|
2221
2222
|
|