diff --git a/apps/jingrow/frontend/src/core/features/form_builder/globals.js b/apps/jingrow/frontend/src/core/features/form_builder/globals.js index 61a70e7..483c47f 100644 --- a/apps/jingrow/frontend/src/core/features/form_builder/globals.js +++ b/apps/jingrow/frontend/src/core/features/form_builder/globals.js @@ -2,9 +2,11 @@ import AttachControl from "./components/controls/AttachControl.vue"; import ButtonControl from "./components/controls/ButtonControl.vue"; import CheckControl from "./components/controls/CheckControl.vue"; import CodeControl from "./components/controls/CodeControl.vue"; +import CronEditorControl from "@/core/pagetype/form/controls/CronEditor.vue"; import DataControl from "./components/controls/DataControl.vue"; import GeolocationControl from "./components/controls/GeolocationControl.vue"; import ImageControl from "./components/controls/ImageControl.vue"; +import JeditorControl from "@/core/pagetype/form/controls/Jeditor.vue"; import LinkControl from "./components/controls/LinkControl.vue"; import RatingControl from "./components/controls/RatingControl.vue"; import SelectControl from "./components/controls/SelectControl.vue"; @@ -30,6 +32,7 @@ export function registerGlobalComponents(app) { safeRegister("CheckControl", CheckControl); safeRegister("CodeControl", CodeControl); safeRegister("ColorControl", DataControl); + safeRegister("CronEditorControl", CronEditorControl); safeRegister("CurrencyControl", DataControl); safeRegister("DataControl", DataControl); safeRegister("DateControl", DataControl); @@ -44,6 +47,7 @@ export function registerGlobalComponents(app) { safeRegister("IconControl", DataControl); safeRegister("ImageControl", ImageControl); safeRegister("IntControl", DataControl); + safeRegister("JeditorControl", JeditorControl); safeRegister("JSONControl", CodeControl); safeRegister("LinkControl", LinkControl); safeRegister("LongTextControl", TextControl); @@ -68,9 +72,11 @@ export const controls = { ButtonControl, CheckControl, CodeControl, + CronEditorControl, DataControl, GeolocationControl, ImageControl, + JeditorControl, LinkControl, RatingControl, SelectControl, diff --git a/apps/jingrow/frontend/src/core/features/form_builder/store.js b/apps/jingrow/frontend/src/core/features/form_builder/store.js index c43a7d2..d717ad2 100644 --- a/apps/jingrow/frontend/src/core/features/form_builder/store.js +++ b/apps/jingrow/frontend/src/core/features/form_builder/store.js @@ -18,6 +18,7 @@ export const ALL_FIELDTYPES = [ "Check", "Code", "Color", + "Cron Editor", "Currency", "Data", "Date", @@ -32,6 +33,7 @@ export const ALL_FIELDTYPES = [ "Icon", "Image", "Int", + "Jeditor", "JSON", "Link", "Long Text",