super-page-designer 2.0.17 → 2.0.20
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/es/components/design/utils/assemblys-config.js +19 -0
- package/dist/es/components/design/views/assemblys/button/button/button-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/common/common-select-page.vue.js +9 -7
- package/dist/es/components/design/views/assemblys/data/bar-code/barcode-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/attr-style.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-style.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/tree/tree-attr-base.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/data/tree/tree-attr-style.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/form/common/dimension-input.vue.js +75 -1
- package/dist/es/components/design/views/assemblys/form/common/dimension-input.vue2.js +1 -75
- package/dist/es/components/design/views/assemblys/form/common/dimension-input.vue3.js +2 -2
- package/dist/es/components/design/views/assemblys/form/custom/custom-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-advanced.vue.js +40 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-advanced.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-base.vue.js +137 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-base.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-style.vue.js +50 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr-style.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr.vue.js +4 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-attr.vue2.js +93 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-design.vue.js +4 -0
- package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-design.vue2.js +56 -0
- package/dist/es/components/design/views/assemblys/workflow/picture-flow/pictureflow-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/workflow/text-history/texthistory-attr-base.vue.js +1 -1
- package/dist/es/style.css +647 -95
- package/package.json +6 -4
package/dist/es/components/design/views/assemblys/form/separatelabel/separatelabel-design.vue2.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, normalizeStyle, normalizeClass, createElementVNode, createBlock, createCommentVNode, createTextVNode, toDisplayString } from "vue";
|
|
2
|
+
import "vue-draggable-plus";
|
|
3
|
+
import "uuid";
|
|
4
|
+
import { caculateComponentStyle } from "../../../../utils/container-design-util.js";
|
|
5
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
+
__name: "separatelabel-design",
|
|
7
|
+
props: {
|
|
8
|
+
pageDesign: {},
|
|
9
|
+
configure: {},
|
|
10
|
+
indexObj: {},
|
|
11
|
+
selectWidget: {}
|
|
12
|
+
},
|
|
13
|
+
setup(__props) {
|
|
14
|
+
const props = __props;
|
|
15
|
+
const designStyle = ref({});
|
|
16
|
+
const designClass = ref("");
|
|
17
|
+
const designHeaderStyle = ref({});
|
|
18
|
+
caculateThisStyle();
|
|
19
|
+
watch(props.configure.style, () => {
|
|
20
|
+
caculateThisStyle();
|
|
21
|
+
});
|
|
22
|
+
function caculateThisStyle() {
|
|
23
|
+
caculateComponentStyle(props.configure, designStyle, designClass, designHeaderStyle);
|
|
24
|
+
if (!props.configure.runtime) {
|
|
25
|
+
props.configure.runtime = {};
|
|
26
|
+
}
|
|
27
|
+
props.configure.runtime.style = designStyle.value;
|
|
28
|
+
props.configure.runtime.class = designClass.value;
|
|
29
|
+
props.configure.runtime.headerStyle = designHeaderStyle.value;
|
|
30
|
+
}
|
|
31
|
+
return (_ctx, _cache) => {
|
|
32
|
+
const _component_SuperIcon = resolveComponent("SuperIcon");
|
|
33
|
+
return openBlock(), createElementBlock("div", {
|
|
34
|
+
style: normalizeStyle(designStyle.value),
|
|
35
|
+
class: normalizeClass([designClass.value, "amb-widget-separatelabel"]),
|
|
36
|
+
ref: "thisRef"
|
|
37
|
+
}, [
|
|
38
|
+
createElementVNode("div", {
|
|
39
|
+
class: "label",
|
|
40
|
+
style: normalizeStyle(designHeaderStyle.value)
|
|
41
|
+
}, [
|
|
42
|
+
_ctx.configure.props.iconType && _ctx.configure.props.iconValue ? (openBlock(), createBlock(_component_SuperIcon, {
|
|
43
|
+
key: 0,
|
|
44
|
+
iconType: _ctx.configure.props.iconType,
|
|
45
|
+
iconValue: _ctx.configure.props.iconValue,
|
|
46
|
+
style: { "margin-right": "2px" }
|
|
47
|
+
}, null, 8, ["iconType", "iconValue"])) : createCommentVNode("", true),
|
|
48
|
+
createTextVNode(" " + toDisplayString(_ctx.configure.props.base.title), 1)
|
|
49
|
+
], 4)
|
|
50
|
+
], 6);
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
export {
|
|
55
|
+
_sfc_main as default
|
|
56
|
+
};
|
package/dist/es/components/design/views/assemblys/workflow/picture-flow/pictureflow-attr-base.vue.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createElementBlock, Fragment, renderList, unref } from "vue";
|
|
2
2
|
import { getFormComponentOptions } from "../../../../utils/assemblys-config.js";
|
|
3
3
|
import _sfc_main$1 from "../../common/common-attr-size.vue.js";
|
|
4
|
-
import "../../form/common/dimension-input.
|
|
4
|
+
import "../../form/common/dimension-input.vue2.js";
|
|
5
5
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7
7
|
__name: "pictureflow-attr-base",
|
package/dist/es/components/design/views/assemblys/workflow/text-history/texthistory-attr-base.vue.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createElementBlock, Fragment, renderList, unref, createTextVNode } from "vue";
|
|
2
2
|
import { getFormComponentOptions } from "../../../../utils/assemblys-config.js";
|
|
3
3
|
import _sfc_main$1 from "../../common/common-attr-size.vue.js";
|
|
4
|
-
import "../../form/common/dimension-input.
|
|
4
|
+
import "../../form/common/dimension-input.vue2.js";
|
|
5
5
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
6
6
|
const _hoisted_2 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
7
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|