mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-04-12 15:47:32 +02:00
* various improvements.. needs cleanup * more progress - supports deeply nested + pages * Getting close now! * more progress! * some cleanup * use data[_json] to store page-based upload * Smarter logic to get nested form fields * some refactoring/cleanup * Fixed issue with removing multiple files in pages * Refactor and support `destination: page@:/images` and `destination: self@` syntax for file fields * Prettifying the upload field * Handling Files API to better represent the selected files in the input field * Better plurarl string * Fixed harcoded height for input field * revamped CSS!!! * `fancy: false` turns off fancy styling * Create folder if not exists * Add support for @theme/theme@ destination * Fixed create directory functionality to take into account resolved paths * Don't allow @self on page to be uploaded to if not created * added field languages * css tweaks * language integration
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
import SelectizeField, { Instance as SelectizeFieldInstance } from './selectize';
|
|
import ArrayField, { Instance as ArrayFieldInstance } from './array';
|
|
import CollectionsField, { Instance as CollectionsFieldInstance } from './collections';
|
|
import DateTimeField, { Instance as DateTimeFieldInstance } from './datetime';
|
|
import EditorField, { Instance as EditorFieldInstance } from './editor';
|
|
import ColorpickerField, { Instance as ColorpickerFieldInstance } from './colorpicker';
|
|
import './files';
|
|
|
|
export default {
|
|
SelectizeField: {
|
|
SelectizeField,
|
|
Instance: SelectizeFieldInstance
|
|
},
|
|
ArrayField: {
|
|
ArrayField,
|
|
Instance: ArrayFieldInstance
|
|
},
|
|
CollectionsField: {
|
|
CollectionsField,
|
|
Instance: CollectionsFieldInstance
|
|
},
|
|
DateTimeField: {
|
|
DateTimeField,
|
|
Instance: DateTimeFieldInstance
|
|
},
|
|
EditorField: {
|
|
EditorField,
|
|
Instance: EditorFieldInstance
|
|
},
|
|
ColorpickerField: {
|
|
ColorpickerField,
|
|
Instance: ColorpickerFieldInstance
|
|
}
|
|
};
|