matrix_components 2.0.366 → 2.0.367
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/dist/ComponentDemo/DialogDemo.vue +210 -0
- package/dist/ComponentDemo/ExampleFormConfig.js +270 -0
- package/dist/ComponentDemo/ExcelDemo.vue +263 -0
- package/dist/ComponentDemo/FormDemo copy 2.vue +557 -0
- package/dist/ComponentDemo/FormDemo copy.vue +454 -0
- package/dist/ComponentDemo/FormDemo.vue +560 -0
- package/dist/ComponentDemo/ImageDemo.vue +27 -0
- package/dist/ComponentDemo/MDDemo.vue +20 -0
- package/dist/ComponentDemo/OfficeDemo.vue +189 -0
- package/dist/ComponentDemo/PdfDemo.vue +207 -0
- package/dist/ComponentDemo/SaturationLineDemo.vue +158 -0
- package/dist/ComponentDemo/SimpleFormConfig.json +97 -0
- package/dist/ComponentDemo/Test.vue +437 -0
- package/dist/ComponentDemo/TestFormConfig.js +129 -0
- package/dist/ComponentDemo/VideoDemo.vue +301 -0
- package/dist/ComponentDemo/WordDemo.vue +191 -0
- package/dist/matrix_components.css +1 -1
- package/dist/matrix_components.js +10 -10
- package/dist/matrix_components.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -54753,13 +54753,13 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
54753
54753
|
},
|
|
54754
54754
|
setup(__props, { expose: __expose }) {
|
|
54755
54755
|
useCssVars((_ctx) => ({
|
|
54756
|
-
"
|
|
54757
|
-
"
|
|
54758
|
-
"
|
|
54759
|
-
"
|
|
54760
|
-
"
|
|
54761
|
-
"
|
|
54762
|
-
"
|
|
54756
|
+
"f45a1efa": customBackgroundColor.value,
|
|
54757
|
+
"v21180901": gapV.value,
|
|
54758
|
+
"v915c54a8": superLabelWidth.value,
|
|
54759
|
+
"v6be4641e": subLabelWidth.value,
|
|
54760
|
+
"v3d2421a8": height.value,
|
|
54761
|
+
"v29f65f33": labelWidth.value,
|
|
54762
|
+
"v1cad0510": _ctx.$props.labelColor
|
|
54763
54763
|
}));
|
|
54764
54764
|
const props = __props;
|
|
54765
54765
|
const initialValues = ref$1(/* @__PURE__ */ new Map());
|
|
@@ -55082,7 +55082,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
55082
55082
|
if ((item == null ? void 0 : item.value) && (item == null ? void 0 : item.delValue) && Array.isArray(item.value) && Array.isArray(item.delValue) && item.value.length && item.delValue.length) {
|
|
55083
55083
|
result[item.key] = [...item.value, ...item.delValue];
|
|
55084
55084
|
} else {
|
|
55085
|
-
result[item.key] = item.value
|
|
55085
|
+
result[item.key] = item.value ?? "";
|
|
55086
55086
|
}
|
|
55087
55087
|
}
|
|
55088
55088
|
if (item.children && Array.isArray(item.children)) {
|
|
@@ -55092,7 +55092,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
55092
55092
|
if ((child == null ? void 0 : child.value) && (child == null ? void 0 : child.delValue) && Array.isArray(child.value) && Array.isArray(child.delValue) && child.value.length && child.delValue.length) {
|
|
55093
55093
|
result[child.key] = [...child.value, ...child.delValue];
|
|
55094
55094
|
} else {
|
|
55095
|
-
result[child.key] = child.value
|
|
55095
|
+
result[child.key] = child.value ?? "";
|
|
55096
55096
|
}
|
|
55097
55097
|
}
|
|
55098
55098
|
}
|
|
@@ -55441,7 +55441,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
55441
55441
|
};
|
|
55442
55442
|
}
|
|
55443
55443
|
});
|
|
55444
|
-
const NsForm = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-
|
|
55444
|
+
const NsForm = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-e98e238a"]]);
|
|
55445
55445
|
const _hoisted_1$1 = { class: "title-image-view" };
|
|
55446
55446
|
const _hoisted_2 = { class: "content-model-title" };
|
|
55447
55447
|
const _hoisted_3 = { class: "title-text" };
|