merge newui branch
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { input } from "./input";
|
||||
import { onrecordsave } from "./onrecordsave";
|
||||
import { settings } from "./settings";
|
||||
import { view } from "./view";
|
||||
|
||||
window.app = window.app || {};
|
||||
window.app.fieldTypes = window.app.fieldTypes || {};
|
||||
window.app.fieldTypes.json = {
|
||||
icon: "ri-braces-line",
|
||||
label: "JSON",
|
||||
settings,
|
||||
input,
|
||||
view,
|
||||
onrecordsave,
|
||||
dummyData: (f, forSubmit = false) => {
|
||||
return { "example": 123 };
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user