matrix_components 2.0.365 → 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/FormDemo copy 2.vue +557 -0
- package/dist/ComponentDemo/FormDemo copy.vue +454 -0
- package/dist/ComponentDemo/FormDemo.vue +515 -378
- package/dist/matrix_components.css +1 -1
- package/dist/matrix_components.js +12 -12
- package/dist/matrix_components.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -7207,7 +7207,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
7207
7207
|
withDirectives((openBlock(), createElementBlock("span", {
|
|
7208
7208
|
class: normalizeClass(["tree-node-title", { "tree-node-playing": checkTreeNodeIsPlayHandler(data) }])
|
|
7209
7209
|
}, [
|
|
7210
|
-
createTextVNode(toDisplayString(
|
|
7210
|
+
createTextVNode(toDisplayString(data[__props.treeOptions.label]), 1)
|
|
7211
7211
|
], 2)), [
|
|
7212
7212
|
[_directive_sline]
|
|
7213
7213
|
])
|
|
@@ -7254,7 +7254,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
7254
7254
|
};
|
|
7255
7255
|
}
|
|
7256
7256
|
});
|
|
7257
|
-
const NsVideo = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-
|
|
7257
|
+
const NsVideo = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-fea618e6"]]);
|
|
7258
7258
|
function registerDirective(app2) {
|
|
7259
7259
|
app2.directive("sline", {
|
|
7260
7260
|
mounted(el2) {
|
|
@@ -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" };
|