cloud-web-corejs 1.0.54-dev.626 → 1.0.54-dev.627
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/xform/form-designer/designer.js +1993 -9
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-widget.vue +104 -62
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +102 -36
- package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +68 -24
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +2 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +213 -179
- package/src/components/xform/utils/util.js +7 -1
|
@@ -694,6 +694,8 @@ export const columnFormatMap = {
|
|
|
694
694
|
text: "text",
|
|
695
695
|
checkbox: "checkbox",
|
|
696
696
|
radio: "radio",
|
|
697
|
+
dropdown: "dropdown",
|
|
698
|
+
textarea: "textarea",
|
|
697
699
|
};
|
|
698
700
|
|
|
699
701
|
export function getFieldWidgetById(widgetList, fieldId, staticWidgetsIncluded) {
|
|
@@ -876,7 +878,11 @@ export function buildDefaultFormJson() {
|
|
|
876
878
|
export function cloneFormConfigWithoutEventHandler(e) {
|
|
877
879
|
var t = deepClone(e);
|
|
878
880
|
return (
|
|
879
|
-
(t.onFormCreated = ""),
|
|
881
|
+
(t.onFormCreated = ""),
|
|
882
|
+
(t.onFormBeforeMounted = ""),
|
|
883
|
+
(t.onFormMounted = ""),
|
|
884
|
+
(t.onFormDataChange = ""),
|
|
885
|
+
t
|
|
880
886
|
);
|
|
881
887
|
}
|
|
882
888
|
|