@@ -61,8 +61,9 @@ import ActionsDialog from './widgets/dialog/ActionsDialog';
6161import BasicEmailInput from './widgets/email-input/Basic' ;
6262import BasicFileUploadInput from './widgets/file-upload-input/Basic' ;
6363import DisabledFileUploadInput from './widgets/file-upload-input/Disabled' ;
64- import LabelledFileUploadInput from './widgets/file-upload-input/Labels ' ;
64+ import LabelledFileUploadInput from './widgets/file-upload-input/Labelled ' ;
6565import MultipleFileUploadInput from './widgets/file-upload-input/Multiple' ;
66+ import NoDropFileUploadInput from './widgets/file-upload-input/NoDrop' ;
6667import BasicFileUploader from './widgets/file-uploader/Basic' ;
6768import DisabledFileUploader from './widgets/file-uploader/Disabled' ;
6869import MultipleFileUploader from './widgets/file-uploader/Multiple' ;
@@ -723,12 +724,19 @@ export const config = {
723724 {
724725 title : 'Multiple FileUploadInput' ,
725726 filename : 'Multiple' ,
726- module : MultipleFileUploadInput
727+ module : MultipleFileUploadInput ,
728+ description :
729+ 'Demonstrates using child `content` property to render information about the uploaded files that is available to the `onValue` callback.'
727730 } ,
728731 {
729- title : 'FileUploadInput with custom labels ' ,
730- filename : 'Labels ' ,
732+ title : 'FileUploadInput with label ' ,
733+ filename : 'Labelled ' ,
731734 module : LabelledFileUploadInput
735+ } ,
736+ {
737+ title : 'FileUploadInput with no DnD' ,
738+ filename : 'NoDrop' ,
739+ module : NoDropFileUploadInput
732740 }
733741 ]
734742 } ,
0 commit comments