Store a stringified representation of the current entry tree in a specified input element.

import { defineFilePond } from 'filepond';
import { locale } from 'filepond/locales/en-gb.js';
import { TextInputStore } from 'filepond/extensions/text-input-store.js';

defineFilePond({
    locale,
    extensions: [
        // Add the TextInputStore extension
        TextInputStore
    ]
})

Configuration

The TextInputStore extension accepts an option object of type TextInputStoreOptions which defines the properties below.

element

An HTMLInputElement or a QueryString selector

element?: string | HTMLInputElement