Rik
                                            Rik
                                        
                                    Okay, glad to hear that. I'll investigate further when I have some more time. Hoped there was a way to disable strict mode for a part of the subtree but...
Should be fixed in `7.1.2`
Sounds like you have to implement the FilePond server.load end point
I think something like this should work. ```js // where id is your S3 file URL FilePond.create({ server: { load: (id, load) => { fetch(id).then(res => res.blob()).then(load) } } })...
then your file probably does not have type local https://pqina.nl/filepond/docs/api/instance/properties/#files _edit: updated link_
Itβs right in the docs that I linked to
Happy to accept a PR. This does require a couple changes. 1. to enable the control we'd need to [check for two attributes here](https://github.com/rikschennink/short-and-sweet/blob/master/src/short-and-sweet.js#L82), either `maxlength` or something like `data-softmaxlength`,...
Happy to accept a PR π
@mtpultz The methods are copied dynamically from the FilePond instance to the FilePondComponent instance (https://github.com/pqina/ngx-filepond/blob/master/src/app/modules/filepond/filepond.component.ts#L140). So maybe an interface needs to be added to the component (I'm not a TypeScript...
@mtpultz I think the definitions are derived from the component, the FilePond types are in the types folder of the core repo. (maybe I misunderstand the question).