merge newui branch

This commit is contained in:
Gani Georgiev
2026-04-18 16:50:39 +03:00
parent 58f605e90c
commit 4c44044c0c
804 changed files with 58660 additions and 56663 deletions
+16
View File
@@ -0,0 +1,16 @@
import { input } from "./input";
import { settings } from "./settings";
import { view } from "./view";
window.app = window.app || {};
window.app.fieldTypes = window.app.fieldTypes || {};
window.app.fieldTypes.date = {
icon: "ri-calendar-line",
label: "Datetime",
settings,
input,
view,
dummyData: (f, forSubmit = false) => {
return new Date().toISOString().replaceAll("T", " ");
},
};