I need to migrate from Classic UI's html5smartfile xtype to Touch UI's fileupload resource type (/libs/granite/ui/components/coral/foundation/form/fileupload). But there are only a button after conversion ("Drop an asset" area is missing).
What should I do for granite component looked as it was before in Classic UI?
Classic UI:
<file
jcr:primaryType="cq:Widget"
allowUpload="{Boolean}false"
autoUploadDelay="1"
ddAccept="application/pdf"
ddGroups="[media]"
fieldLabel="File"
fileNameParameter="./fileName"
fileReferenceParameter="./fileReference"
mimeTypes="application/pdf"
name="./file"
sizeLimit="25"
xtype="html5smartfile"/>
Touch UI:
<file
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/fileupload"
fieldLabel="File"
fileNameParameter="./fileName"
fileReferenceParameter="./fileReference"
mimeTypes="[application/pdf]"
multiple="{Boolean}false"
name="./file"
sizeLimit="{Long}25"/>