@tmagic/editor 1.8.0-beta.13 → 1.8.0-beta.15
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/Editor.vue_vue_type_script_setup_true_lang.js +15 -3
- package/dist/es/components/ContentMenu.vue_vue_type_script_setup_true_lang.js +31 -8
- package/dist/es/components/FloatingBox.vue_vue_type_script_setup_true_lang.js +7 -2
- package/dist/es/fields/Code.vue_vue_type_script_setup_true_lang.js +15 -4
- package/dist/es/fields/CodeLink.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/CodeSelect.vue_vue_type_script_setup_true_lang.js +80 -55
- package/dist/es/fields/CodeSelectCol.vue_vue_type_script_setup_true_lang.js +5 -1
- package/dist/es/fields/CondOpSelect.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/DataSourceFieldSelect/Index.vue_vue_type_script_setup_true_lang.js +10 -7
- package/dist/es/fields/DataSourceFields.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/DataSourceInput.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/DataSourceMethodSelect.vue_vue_type_script_setup_true_name_true_lang.js +4 -1
- package/dist/es/fields/DataSourceMethods.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/DataSourceMocks.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/DataSourceSelect.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/DisplayConds.vue_vue_type_script_setup_true_lang.js +8 -2
- package/dist/es/fields/EventSelect.vue_vue_type_script_setup_true_lang.js +99 -64
- package/dist/es/fields/KeyValue.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/PageFragmentSelect.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/StyleSetter/Index.vue_vue_type_script_setup_true_lang.js +5 -4
- package/dist/es/fields/StyleSetter/components/BackgroundPosition.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/fields/StyleSetter/components/Border.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/es/fields/StyleSetter/icons/align-items/Center.js +31 -0
- package/dist/es/fields/StyleSetter/icons/align-items/FlexEnd.js +31 -0
- package/dist/es/fields/StyleSetter/icons/align-items/FlexStart.js +31 -0
- package/dist/es/fields/StyleSetter/icons/align-items/SpaceAround.js +50 -0
- package/dist/es/fields/StyleSetter/icons/align-items/SpaceBetween.js +50 -0
- package/dist/es/fields/StyleSetter/icons/background-repeat/NoRepeat.js +6 -6
- package/dist/es/fields/StyleSetter/icons/background-repeat/Repeat.js +5 -2
- package/dist/es/fields/StyleSetter/icons/background-repeat/RepeatX.js +28 -5
- package/dist/es/fields/StyleSetter/icons/background-repeat/RepeatY.js +31 -5
- package/dist/es/fields/StyleSetter/icons/flex-direction/Column.js +10 -2
- package/dist/es/fields/StyleSetter/icons/flex-direction/ColumnReverse.js +10 -2
- package/dist/es/fields/StyleSetter/icons/flex-direction/Row.js +10 -2
- package/dist/es/fields/StyleSetter/icons/flex-direction/RowReverse.js +10 -2
- package/dist/es/fields/StyleSetter/icons/justify-content/Center.js +16 -2
- package/dist/es/fields/StyleSetter/icons/justify-content/FlexEnd.js +18 -2
- package/dist/es/fields/StyleSetter/icons/justify-content/FlexStart.js +18 -2
- package/dist/es/fields/StyleSetter/icons/justify-content/SpaceAround.js +36 -2
- package/dist/es/fields/StyleSetter/icons/justify-content/SpaceBetween.js +32 -2
- package/dist/es/fields/StyleSetter/pro/Background.vue_vue_type_script_setup_true_lang.js +7 -6
- package/dist/es/fields/StyleSetter/pro/Font.vue_vue_type_script_setup_true_lang.js +6 -3
- package/dist/es/fields/StyleSetter/pro/Layout.vue_vue_type_script_setup_true_lang.js +47 -25
- package/dist/es/fields/UISelect.vue_vue_type_script_setup_true_lang.js +4 -1
- package/dist/es/icons/DatasourceIcon.js +17 -0
- package/dist/es/index.js +2 -2
- package/dist/es/layouts/Framework.vue_vue_type_script_setup_true_lang.js +14 -10
- package/dist/es/layouts/props-panel/PropsPanel.vue_vue_type_script_setup_true_lang.js +13 -4
- package/dist/es/layouts/sidebar/Sidebar.vue_vue_type_script_setup_true_lang.js +3 -3
- package/dist/es/plugin.js +2 -1
- package/dist/es/services/editor.js +86 -24
- package/dist/es/services/history.js +16 -0
- package/dist/es/services/ui.js +5 -3
- package/dist/es/style.css +307 -40
- package/dist/es/utils/config.js +4 -1
- package/dist/es/utils/const.js +2 -2
- package/dist/es/utils/data-source/index.js +4 -2
- package/dist/es/utils/props.js +43 -29
- package/dist/es/utils/type-match-rules.js +12 -5
- package/dist/style.css +307 -40
- package/dist/themes/magic-admin.css +3004 -0
- package/dist/tmagic-editor.umd.cjs +1161 -476
- package/package.json +7 -7
- package/src/Editor.vue +22 -1
- package/src/components/ContentMenu.vue +44 -8
- package/src/components/FloatingBox.vue +8 -2
- package/src/editorProps.ts +4 -0
- package/src/fields/Code.vue +10 -2
- package/src/fields/CodeSelect.vue +54 -43
- package/src/fields/CodeSelectCol.vue +1 -0
- package/src/fields/DataSourceFieldSelect/Index.vue +14 -5
- package/src/fields/DisplayConds.vue +4 -1
- package/src/fields/EventSelect.vue +56 -32
- package/src/fields/StyleSetter/Index.vue +1 -4
- package/src/fields/StyleSetter/components/Border.vue +1 -1
- package/src/fields/StyleSetter/icons/align-items/Center.vue +19 -0
- package/src/fields/StyleSetter/icons/align-items/FlexEnd.vue +19 -0
- package/src/fields/StyleSetter/icons/align-items/FlexStart.vue +19 -0
- package/src/fields/StyleSetter/icons/align-items/SpaceAround.vue +34 -0
- package/src/fields/StyleSetter/icons/align-items/SpaceBetween.vue +34 -0
- package/src/fields/StyleSetter/icons/align-items/index.ts +5 -0
- package/src/fields/StyleSetter/icons/background-repeat/NoRepeat.vue +20 -4
- package/src/fields/StyleSetter/icons/background-repeat/Repeat.vue +10 -28
- package/src/fields/StyleSetter/icons/background-repeat/RepeatX.vue +4 -5
- package/src/fields/StyleSetter/icons/background-repeat/RepeatY.vue +4 -5
- package/src/fields/StyleSetter/icons/flex-direction/Column.vue +4 -3
- package/src/fields/StyleSetter/icons/flex-direction/ColumnReverse.vue +4 -3
- package/src/fields/StyleSetter/icons/flex-direction/Row.vue +4 -3
- package/src/fields/StyleSetter/icons/flex-direction/RowReverse.vue +4 -3
- package/src/fields/StyleSetter/icons/justify-content/Center.vue +5 -2
- package/src/fields/StyleSetter/icons/justify-content/FlexEnd.vue +15 -2
- package/src/fields/StyleSetter/icons/justify-content/FlexStart.vue +15 -2
- package/src/fields/StyleSetter/icons/justify-content/SpaceAround.vue +28 -3
- package/src/fields/StyleSetter/icons/justify-content/SpaceBetween.vue +28 -2
- package/src/fields/StyleSetter/pro/Background.vue +7 -2
- package/src/fields/StyleSetter/pro/Font.vue +3 -3
- package/src/fields/StyleSetter/pro/Layout.vue +98 -28
- package/src/icons/DatasourceIcon.vue +7 -0
- package/src/index.ts +3 -0
- package/src/layouts/Framework.vue +7 -1
- package/src/layouts/props-panel/PropsPanel.vue +38 -12
- package/src/layouts/sidebar/Sidebar.vue +3 -3
- package/src/plugin.ts +3 -2
- package/src/services/editor.ts +76 -11
- package/src/services/history.ts +22 -1
- package/src/services/ui.ts +20 -5
- package/src/theme/code-block.scss +37 -0
- package/src/theme/common/var.scss +1 -1
- package/src/theme/component-list-panel.scss +2 -2
- package/src/theme/data-source-field.scss +4 -0
- package/src/theme/display-conds.scss +11 -0
- package/src/theme/event.scss +58 -4
- package/src/theme/framework.scss +4 -1
- package/src/theme/history-list-panel.scss +9 -9
- package/src/theme/nav-menu.scss +5 -1
- package/src/theme/props-panel.scss +2 -1
- package/src/theme/style-setter/border.scss +14 -5
- package/src/theme/theme.scss +1 -0
- package/src/theme/themes/magic-admin/index.scss +214 -0
- package/src/theme/ui-select.scss +1 -1
- package/src/type.ts +33 -6
- package/src/utils/config.ts +9 -1
- package/src/utils/const.ts +3 -2
- package/src/utils/data-source/index.ts +3 -3
- package/src/utils/props.ts +22 -9
- package/src/utils/type-match-rules.ts +11 -5
- package/types/index.d.ts +114 -35
|
@@ -4,13 +4,39 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
14
|
+
createElementVNode("rect", {
|
|
15
|
+
x: "13",
|
|
16
|
+
y: "3",
|
|
17
|
+
width: "2",
|
|
18
|
+
height: "10",
|
|
19
|
+
rx: "1",
|
|
20
|
+
transform: "rotate(90 13 3)"
|
|
21
|
+
}, null, -1),
|
|
22
|
+
createElementVNode("rect", {
|
|
23
|
+
x: "13",
|
|
24
|
+
y: "7",
|
|
25
|
+
width: "2",
|
|
26
|
+
height: "10",
|
|
27
|
+
rx: "1",
|
|
28
|
+
transform: "rotate(90 13 7)"
|
|
29
|
+
}, null, -1),
|
|
30
|
+
createElementVNode("rect", {
|
|
31
|
+
x: "13",
|
|
32
|
+
y: "11",
|
|
33
|
+
width: "2",
|
|
34
|
+
height: "10",
|
|
35
|
+
rx: "1",
|
|
36
|
+
transform: "rotate(90 13 11)",
|
|
37
|
+
"fill-opacity": "0.3"
|
|
38
|
+
}, null, -1)
|
|
39
|
+
])]);
|
|
14
40
|
}
|
|
15
41
|
var RepeatY_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
16
42
|
//#endregion
|
|
@@ -4,10 +4,18 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M12 3C12.5523 3 13 3.44772 13 4V10C13 10.5523 12.5523 11 12 11H4C3.44772 11 3 10.5523 3 10V4C3 3.44772 3.44772 3 4 3H12ZM4.5 4C4.22386 4 4 4.22386 4 4.5V9.5C4 9.77614 4.22386 10 4.5 10H11.5C11.7761 10 12 9.77614 12 9.5V4.5C12 4.22386 11.7761 4 11.5 4H4.5Z" }, null, -1), createElementVNode("path", {
|
|
14
|
+
"fill-rule": "evenodd",
|
|
15
|
+
"clip-rule": "evenodd",
|
|
16
|
+
d: "M11 12L8 15L5 12L11 12Z",
|
|
17
|
+
"fill-opacity": "0.3"
|
|
18
|
+
}, null, -1)])]);
|
|
11
19
|
}
|
|
12
20
|
var Column_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
21
|
//#endregion
|
|
@@ -4,10 +4,18 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M12 5C12.5523 5 13 5.44772 13 6V12C13 12.5523 12.5523 13 12 13H4C3.44772 13 3 12.5523 3 12V6C3 5.44772 3.44772 5 4 5H12ZM4.5 6C4.22386 6 4 6.22386 4 6.5V11.5C4 11.7761 4.22386 12 4.5 12H11.5C11.7761 12 12 11.7761 12 11.5V6.5C12 6.22386 11.7761 6 11.5 6H4.5Z" }, null, -1), createElementVNode("path", {
|
|
14
|
+
"fill-rule": "evenodd",
|
|
15
|
+
"clip-rule": "evenodd",
|
|
16
|
+
d: "M5 4L8 1L11 4L5 4Z",
|
|
17
|
+
"fill-opacity": "0.3"
|
|
18
|
+
}, null, -1)])]);
|
|
11
19
|
}
|
|
12
20
|
var ColumnReverse_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
21
|
//#endregion
|
|
@@ -4,10 +4,18 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M10 4C10.5523 4 11 4.44772 11 5V11C11 11.5523 10.5523 12 10 12H2C1.44772 12 1 11.5523 1 11V5C1 4.44772 1.44772 4 2 4H10ZM2.5 5C2.22386 5 2 5.22386 2 5.5V10.5C2 10.7761 2.22386 11 2.5 11H9.5C9.77614 11 10 10.7761 10 10.5V5.5C10 5.22386 9.77614 5 9.5 5H2.5Z" }, null, -1), createElementVNode("path", {
|
|
14
|
+
"fill-rule": "evenodd",
|
|
15
|
+
"clip-rule": "evenodd",
|
|
16
|
+
d: "M12 5L15 8L12 11L12 5Z",
|
|
17
|
+
"fill-opacity": "0.3"
|
|
18
|
+
}, null, -1)])]);
|
|
11
19
|
}
|
|
12
20
|
var Row_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
21
|
//#endregion
|
|
@@ -4,10 +4,18 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M14 4C14.5523 4 15 4.44772 15 5V11C15 11.5523 14.5523 12 14 12H6C5.44772 12 5 11.5523 5 11V5C5 4.44772 5.44772 4 6 4H14ZM6.5 5C6.22386 5 6 5.22386 6 5.5V10.5C6 10.7761 6.22386 11 6.5 11H13.5C13.7761 11 14 10.7761 14 10.5V5.5C14 5.22386 13.7761 5 13.5 5H6.5Z" }, null, -1), createElementVNode("path", {
|
|
14
|
+
"fill-rule": "evenodd",
|
|
15
|
+
"clip-rule": "evenodd",
|
|
16
|
+
d: "M4 11L1 8L4 5L4 11Z",
|
|
17
|
+
"fill-opacity": "0.3"
|
|
18
|
+
}, null, -1)])]);
|
|
11
19
|
}
|
|
12
20
|
var RowReverse_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
21
|
//#endregion
|
|
@@ -4,10 +4,24 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M13 4C13.5523 4 14 4.44772 14 5V11C14 11.5523 13.5523 12 13 12H3C2.44772 12 2 11.5523 2 11V5C2 4.44772 2.44772 4 3 4H13ZM3.59082 5C3.31472 5.00005 3.09082 5.22389 3.09082 5.5V10.5C3.09082 10.7761 3.31472 11 3.59082 11H12.4092C12.6853 11 12.9092 10.7761 12.9092 10.5V5.5C12.9092 5.22389 12.6853 5.00005 12.4092 5H3.59082Z" }, null, -1), createElementVNode("rect", {
|
|
14
|
+
x: "7.5",
|
|
15
|
+
y: "2",
|
|
16
|
+
width: "1",
|
|
17
|
+
height: "12",
|
|
18
|
+
rx: "0.5",
|
|
19
|
+
"fill-opacity": "0.3",
|
|
20
|
+
style: {
|
|
21
|
+
"fill": "black",
|
|
22
|
+
"fill-opacity": "0.3"
|
|
23
|
+
}
|
|
24
|
+
}, null, -1)])]);
|
|
11
25
|
}
|
|
12
26
|
var Center_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
27
|
//#endregion
|
|
@@ -4,10 +4,26 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M11 4C11.5523 4 12 4.44772 12 5V11C12 11.5523 11.5523 12 11 12H2C1.44772 12 1 11.5523 1 11V5C1 4.44772 1.44772 4 2 4H11ZM2.5 5C2.22386 5 2 5.22386 2 5.5V10.5C2 10.7761 2.22386 11 2.5 11H10.5C10.7761 11 11 10.7761 11 10.5V5.5C11 5.22386 10.7761 5 10.5 5H2.5Z" }, null, -1), createElementVNode("rect", {
|
|
14
|
+
x: "14.25",
|
|
15
|
+
y: "2.25",
|
|
16
|
+
width: "0.5",
|
|
17
|
+
height: "11.5",
|
|
18
|
+
rx: "0.25",
|
|
19
|
+
stroke: "black",
|
|
20
|
+
"stroke-opacity": "0.3",
|
|
21
|
+
style: {
|
|
22
|
+
"stroke": "black",
|
|
23
|
+
"stroke-opacity": "0.3"
|
|
24
|
+
},
|
|
25
|
+
"stroke-width": "0.5"
|
|
26
|
+
}, null, -1)])]);
|
|
11
27
|
}
|
|
12
28
|
var FlexEnd_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
29
|
//#endregion
|
|
@@ -4,10 +4,26 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M14 4C14.5523 4 15 4.44772 15 5V11C15 11.5523 14.5523 12 14 12H5C4.44772 12 4 11.5523 4 11V5C4 4.44772 4.44772 4 5 4H14ZM5.5 5C5.22386 5 5 5.22386 5 5.5V10.5C5 10.7761 5.22386 11 5.5 11H13.5C13.7761 11 14 10.7761 14 10.5V5.5C14 5.22386 13.7761 5 13.5 5H5.5Z" }, null, -1), createElementVNode("rect", {
|
|
14
|
+
x: "1.25",
|
|
15
|
+
y: "2.25",
|
|
16
|
+
width: "0.5",
|
|
17
|
+
height: "11.5",
|
|
18
|
+
rx: "0.25",
|
|
19
|
+
stroke: "white",
|
|
20
|
+
"stroke-opacity": "0.3",
|
|
21
|
+
style: {
|
|
22
|
+
"stroke": "white",
|
|
23
|
+
"stroke-opacity": "0.3"
|
|
24
|
+
},
|
|
25
|
+
"stroke-width": "0.5"
|
|
26
|
+
}, null, -1)])]);
|
|
11
27
|
}
|
|
12
28
|
var FlexStart_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
29
|
//#endregion
|
|
@@ -4,10 +4,44 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
14
|
+
createElementVNode("path", { d: "M6 4C6.55228 4 7 4.44772 7 5V11C7 11.5523 6.55228 12 6 12H3C2.44772 12 2 11.5523 2 11V5C2 4.44772 2.44772 4 3 4H6ZM3.5 5C3.22386 5 3 5.22386 3 5.5V10.5C3 10.7761 3.22386 11 3.5 11H5.5C5.77614 11 6 10.7761 6 10.5V5.5C6 5.22386 5.77614 5 5.5 5H3.5Z" }, null, -1),
|
|
15
|
+
createElementVNode("path", { d: "M13 4C13.5523 4 14 4.44772 14 5V11C14 11.5523 13.5523 12 13 12H10C9.44772 12 9 11.5523 9 11V5C9 4.44772 9.44772 4 10 4H13ZM10.5 5C10.2239 5 10 5.22386 10 5.5V10.5C10 10.7761 10.2239 11 10.5 11H12.5C12.7761 11 13 10.7761 13 10.5V5.5C13 5.22386 12.7761 5 12.5 5H10.5Z" }, null, -1),
|
|
16
|
+
createElementVNode("rect", {
|
|
17
|
+
x: "11.25",
|
|
18
|
+
y: "2.25",
|
|
19
|
+
width: "0.5",
|
|
20
|
+
height: "11.5",
|
|
21
|
+
rx: "0.25",
|
|
22
|
+
stroke: "black",
|
|
23
|
+
"stroke-opacity": "0.3",
|
|
24
|
+
style: {
|
|
25
|
+
"stroke": "black",
|
|
26
|
+
"stroke-opacity": "0.3"
|
|
27
|
+
},
|
|
28
|
+
"stroke-width": "0.5"
|
|
29
|
+
}, null, -1),
|
|
30
|
+
createElementVNode("rect", {
|
|
31
|
+
x: "4.25",
|
|
32
|
+
y: "2.25",
|
|
33
|
+
width: "0.5",
|
|
34
|
+
height: "11.5",
|
|
35
|
+
rx: "0.25",
|
|
36
|
+
stroke: "black",
|
|
37
|
+
"stroke-opacity": "0.3",
|
|
38
|
+
style: {
|
|
39
|
+
"stroke": "black",
|
|
40
|
+
"stroke-opacity": "0.3"
|
|
41
|
+
},
|
|
42
|
+
"stroke-width": "0.5"
|
|
43
|
+
}, null, -1)
|
|
44
|
+
])]);
|
|
11
45
|
}
|
|
12
46
|
var SpaceAround_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
47
|
//#endregion
|
|
@@ -4,10 +4,40 @@ import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
14
|
+
createElementVNode("path", { d: "M6 4C6.55228 4 7 4.44772 7 5V11C7 11.5523 6.55228 12 6 12H4C3.44772 12 3 11.5523 3 11V5C3 4.44772 3.44772 4 4 4H6ZM4.5 5C4.22386 5 4 5.22386 4 5.5V10.5C4 10.7761 4.22386 11 4.5 11H5.5C5.77614 11 6 10.7761 6 10.5V5.5C6 5.22386 5.77614 5 5.5 5H4.5Z" }, null, -1),
|
|
15
|
+
createElementVNode("path", { d: "M12 4C12.5523 4 13 4.44772 13 5V11C13 11.5523 12.5523 12 12 12H10C9.44772 12 9 11.5523 9 11V5C9 4.44772 9.44772 4 10 4H12ZM10.5 5C10.2239 5 10 5.22386 10 5.5V10.5C10 10.7761 10.2239 11 10.5 11H11.5C11.7761 11 12 10.7761 12 10.5V5.5C12 5.22386 11.7761 5 11.5 5H10.5Z" }, null, -1),
|
|
16
|
+
createElementVNode("rect", {
|
|
17
|
+
x: "14.25",
|
|
18
|
+
y: "2.25",
|
|
19
|
+
width: "0.5",
|
|
20
|
+
height: "11.5",
|
|
21
|
+
rx: "0.25",
|
|
22
|
+
stroke: "black",
|
|
23
|
+
"stroke-opacity": "0.3",
|
|
24
|
+
"stroke-width": "0.5"
|
|
25
|
+
}, null, -1),
|
|
26
|
+
createElementVNode("rect", {
|
|
27
|
+
x: "1.25",
|
|
28
|
+
y: "2.25",
|
|
29
|
+
width: "0.5",
|
|
30
|
+
height: "11.5",
|
|
31
|
+
rx: "0.25",
|
|
32
|
+
stroke: "black",
|
|
33
|
+
"stroke-opacity": "0.3",
|
|
34
|
+
style: {
|
|
35
|
+
"stroke": "black",
|
|
36
|
+
"stroke-opacity": "0.3"
|
|
37
|
+
},
|
|
38
|
+
"stroke-width": "0.5"
|
|
39
|
+
}, null, -1)
|
|
40
|
+
])]);
|
|
11
41
|
}
|
|
12
42
|
var SpaceBetween_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
43
|
//#endregion
|
|
@@ -14,6 +14,7 @@ var Background_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defin
|
|
|
14
14
|
isCompare: { type: Boolean },
|
|
15
15
|
disabled: { type: Boolean },
|
|
16
16
|
size: {},
|
|
17
|
+
theme: {},
|
|
17
18
|
prop: {}
|
|
18
19
|
},
|
|
19
20
|
emits: ["change", "addDiffCount"],
|
|
@@ -85,9 +86,9 @@ var Background_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defin
|
|
|
85
86
|
labelWidth: "68px",
|
|
86
87
|
options: [
|
|
87
88
|
{
|
|
88
|
-
value: "repeat",
|
|
89
|
-
icon: markRaw(
|
|
90
|
-
tooltip: "
|
|
89
|
+
value: "no-repeat",
|
|
90
|
+
icon: markRaw(NoRepeat_default),
|
|
91
|
+
tooltip: "不重复 no-repeat"
|
|
91
92
|
},
|
|
92
93
|
{
|
|
93
94
|
value: "repeat-x",
|
|
@@ -100,9 +101,9 @@ var Background_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defin
|
|
|
100
101
|
tooltip: "垂直方向重复 repeat-y"
|
|
101
102
|
},
|
|
102
103
|
{
|
|
103
|
-
value: "
|
|
104
|
-
icon: markRaw(
|
|
105
|
-
tooltip: "
|
|
104
|
+
value: "repeat",
|
|
105
|
+
icon: markRaw(Repeat_default),
|
|
106
|
+
tooltip: "垂直和水平方向重复 repeat"
|
|
106
107
|
}
|
|
107
108
|
]
|
|
108
109
|
},
|
|
@@ -64,17 +64,20 @@ var Font_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCompo
|
|
|
64
64
|
{
|
|
65
65
|
value: "left",
|
|
66
66
|
icon: markRaw(Left_default),
|
|
67
|
-
tooltip: "左对齐 row"
|
|
67
|
+
tooltip: "左对齐 row",
|
|
68
|
+
text: "左对齐"
|
|
68
69
|
},
|
|
69
70
|
{
|
|
70
71
|
value: "center",
|
|
71
72
|
icon: markRaw(Center_default),
|
|
72
|
-
tooltip: "居中对齐 center"
|
|
73
|
+
tooltip: "居中对齐 center",
|
|
74
|
+
text: "居中对齐"
|
|
73
75
|
},
|
|
74
76
|
{
|
|
75
77
|
value: "right",
|
|
76
78
|
icon: markRaw(Right_default),
|
|
77
|
-
tooltip: "右对齐 right"
|
|
79
|
+
tooltip: "右对齐 right",
|
|
80
|
+
text: "右对齐"
|
|
78
81
|
}
|
|
79
82
|
]
|
|
80
83
|
}
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import Box_default from "../components/Box.js";
|
|
2
|
+
import Center_default from "../icons/align-items/Center.js";
|
|
3
|
+
import FlexEnd_default from "../icons/align-items/FlexEnd.js";
|
|
4
|
+
import FlexStart_default from "../icons/align-items/FlexStart.js";
|
|
5
|
+
import SpaceAround_default from "../icons/align-items/SpaceAround.js";
|
|
6
|
+
import SpaceBetween_default from "../icons/align-items/SpaceBetween.js";
|
|
2
7
|
import Block_default from "../icons/display/Block.js";
|
|
3
8
|
import Flex_default from "../icons/display/Flex.js";
|
|
4
9
|
import Inline_default from "../icons/display/Inline.js";
|
|
@@ -8,12 +13,13 @@ import Column_default from "../icons/flex-direction/Column.js";
|
|
|
8
13
|
import ColumnReverse_default from "../icons/flex-direction/ColumnReverse.js";
|
|
9
14
|
import Row_default from "../icons/flex-direction/Row.js";
|
|
10
15
|
import RowReverse_default from "../icons/flex-direction/RowReverse.js";
|
|
11
|
-
import Center_default from "../icons/justify-content/Center.js";
|
|
12
|
-
import FlexEnd_default from "../icons/justify-content/FlexEnd.js";
|
|
13
|
-
import FlexStart_default from "../icons/justify-content/FlexStart.js";
|
|
14
|
-
import SpaceAround_default from "../icons/justify-content/SpaceAround.js";
|
|
15
|
-
import SpaceBetween_default from "../icons/justify-content/SpaceBetween.js";
|
|
16
|
+
import Center_default$1 from "../icons/justify-content/Center.js";
|
|
17
|
+
import FlexEnd_default$1 from "../icons/justify-content/FlexEnd.js";
|
|
18
|
+
import FlexStart_default$1 from "../icons/justify-content/FlexStart.js";
|
|
19
|
+
import SpaceAround_default$1 from "../icons/justify-content/SpaceAround.js";
|
|
20
|
+
import SpaceBetween_default$1 from "../icons/justify-content/SpaceBetween.js";
|
|
16
21
|
import { MContainer, defineFormConfig } from "@tmagic/form";
|
|
22
|
+
import { useTheme } from "@tmagic/design";
|
|
17
23
|
import { Fragment, createBlock, createElementBlock, createVNode, defineComponent, markRaw, openBlock, renderList, unref, vShow, withDirectives } from "vue";
|
|
18
24
|
//#region packages/editor/src/fields/StyleSetter/pro/Layout.vue?vue&type=script&setup=true&lang.ts
|
|
19
25
|
var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComponent({
|
|
@@ -24,18 +30,22 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
24
30
|
isCompare: { type: Boolean },
|
|
25
31
|
disabled: { type: Boolean },
|
|
26
32
|
size: {},
|
|
33
|
+
theme: {},
|
|
27
34
|
prop: {}
|
|
28
35
|
},
|
|
29
36
|
emits: ["change", "addDiffCount"],
|
|
30
37
|
setup(__props, { emit: __emit }) {
|
|
38
|
+
const props = __props;
|
|
31
39
|
const emit = __emit;
|
|
40
|
+
const displayTheme = useTheme(props);
|
|
32
41
|
const formConfig = defineFormConfig([
|
|
33
42
|
{
|
|
34
43
|
name: "display",
|
|
35
44
|
text: "模式",
|
|
36
45
|
type: "radioGroup",
|
|
37
46
|
childType: "button",
|
|
38
|
-
labelWidth: "
|
|
47
|
+
labelWidth: "90px",
|
|
48
|
+
iconSize: "24px",
|
|
39
49
|
options: [
|
|
40
50
|
{
|
|
41
51
|
value: "inline",
|
|
@@ -69,7 +79,8 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
69
79
|
text: "主轴方向",
|
|
70
80
|
type: "radioGroup",
|
|
71
81
|
childType: "button",
|
|
72
|
-
labelWidth: "
|
|
82
|
+
labelWidth: "90px",
|
|
83
|
+
iconSize: "24px",
|
|
73
84
|
options: [
|
|
74
85
|
{
|
|
75
86
|
value: "row",
|
|
@@ -99,31 +110,32 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
99
110
|
text: "主轴对齐",
|
|
100
111
|
type: "radioGroup",
|
|
101
112
|
childType: "button",
|
|
102
|
-
labelWidth: "
|
|
113
|
+
labelWidth: "90px",
|
|
114
|
+
iconSize: "24px",
|
|
103
115
|
options: [
|
|
104
116
|
{
|
|
105
117
|
value: "flex-start",
|
|
106
|
-
icon: markRaw(FlexStart_default),
|
|
118
|
+
icon: markRaw(FlexStart_default$1),
|
|
107
119
|
tooltip: "左对齐 flex-start"
|
|
108
120
|
},
|
|
109
121
|
{
|
|
110
122
|
value: "flex-end",
|
|
111
|
-
icon: markRaw(FlexEnd_default),
|
|
123
|
+
icon: markRaw(FlexEnd_default$1),
|
|
112
124
|
tooltip: "右对齐 flex-end"
|
|
113
125
|
},
|
|
114
126
|
{
|
|
115
127
|
value: "center",
|
|
116
|
-
icon: markRaw(Center_default),
|
|
128
|
+
icon: markRaw(Center_default$1),
|
|
117
129
|
tooltip: "居中 center"
|
|
118
130
|
},
|
|
119
131
|
{
|
|
120
132
|
value: "space-between",
|
|
121
|
-
icon: markRaw(SpaceBetween_default),
|
|
133
|
+
icon: markRaw(SpaceBetween_default$1),
|
|
122
134
|
tooltip: "两端对齐 space-between"
|
|
123
135
|
},
|
|
124
136
|
{
|
|
125
137
|
value: "space-around",
|
|
126
|
-
icon: markRaw(SpaceAround_default),
|
|
138
|
+
icon: markRaw(SpaceAround_default$1),
|
|
127
139
|
tooltip: "横向平分 space-around"
|
|
128
140
|
}
|
|
129
141
|
],
|
|
@@ -134,7 +146,8 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
134
146
|
text: "辅轴对齐",
|
|
135
147
|
type: "radioGroup",
|
|
136
148
|
childType: "button",
|
|
137
|
-
labelWidth: "
|
|
149
|
+
labelWidth: "90px",
|
|
150
|
+
iconSize: "24px",
|
|
138
151
|
options: [
|
|
139
152
|
{
|
|
140
153
|
value: "flex-start",
|
|
@@ -168,8 +181,9 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
168
181
|
name: "flexWrap",
|
|
169
182
|
text: "换行",
|
|
170
183
|
type: "radioGroup",
|
|
171
|
-
childType: "button",
|
|
172
|
-
labelWidth: "
|
|
184
|
+
childType: displayTheme.value !== "magic-admin" ? "button" : "default",
|
|
185
|
+
labelWidth: "90px",
|
|
186
|
+
iconSize: "24px",
|
|
173
187
|
options: [
|
|
174
188
|
{
|
|
175
189
|
value: "nowrap",
|
|
@@ -193,14 +207,18 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
193
207
|
type: "row",
|
|
194
208
|
items: [{
|
|
195
209
|
name: "width",
|
|
196
|
-
text: "
|
|
197
|
-
labelWidth: "
|
|
210
|
+
text: "宽度(px)",
|
|
211
|
+
labelWidth: "90px",
|
|
198
212
|
type: "data-source-field-select",
|
|
199
213
|
fieldConfig: { type: "text" }
|
|
200
|
-
}
|
|
214
|
+
}]
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
type: "row",
|
|
218
|
+
items: [{
|
|
201
219
|
name: "height",
|
|
202
|
-
text: "
|
|
203
|
-
labelWidth: "
|
|
220
|
+
text: "高度(px)",
|
|
221
|
+
labelWidth: "90px",
|
|
204
222
|
type: "data-source-field-select",
|
|
205
223
|
fieldConfig: { type: "text" }
|
|
206
224
|
}]
|
|
@@ -211,7 +229,7 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
211
229
|
type: "data-source-field-select",
|
|
212
230
|
text: "overflow",
|
|
213
231
|
name: "overflow",
|
|
214
|
-
labelWidth: "
|
|
232
|
+
labelWidth: "90px",
|
|
215
233
|
checkStrictly: false,
|
|
216
234
|
dataSourceFieldType: ["string"],
|
|
217
235
|
fieldConfig: {
|
|
@@ -249,11 +267,15 @@ var Layout_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineCom
|
|
|
249
267
|
}
|
|
250
268
|
]
|
|
251
269
|
}
|
|
252
|
-
}
|
|
270
|
+
}]
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
type: "row",
|
|
274
|
+
items: [{
|
|
253
275
|
type: "data-source-field-select",
|
|
254
|
-
text: "
|
|
276
|
+
text: "透明度(%)",
|
|
255
277
|
name: "opacity",
|
|
256
|
-
labelWidth: "
|
|
278
|
+
labelWidth: "90px",
|
|
257
279
|
dataSourceFieldType: ["string", "number"],
|
|
258
280
|
fieldConfig: { type: "text" }
|
|
259
281
|
}]
|
|
@@ -24,7 +24,10 @@ var UISelect_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineC
|
|
|
24
24
|
disabled: { type: Boolean },
|
|
25
25
|
size: {},
|
|
26
26
|
lastValues: {},
|
|
27
|
-
isCompare: { type: Boolean }
|
|
27
|
+
isCompare: { type: Boolean },
|
|
28
|
+
text: {},
|
|
29
|
+
labelWidth: {},
|
|
30
|
+
labelPosition: {}
|
|
28
31
|
},
|
|
29
32
|
emits: ["change"],
|
|
30
33
|
setup(__props, { emit: __emit }) {
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import _plugin_vue_export_helper_default from "../_virtual/_plugin-vue_export-helper.js";
|
|
2
|
+
import { createElementBlock, createElementVNode, openBlock } from "vue";
|
|
3
|
+
//#region packages/editor/src/icons/DatasourceIcon.vue
|
|
4
|
+
var _sfc_main = {};
|
|
5
|
+
var _hoisted_1 = {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "16",
|
|
8
|
+
height: "16",
|
|
9
|
+
viewBox: "0 0 16 16",
|
|
10
|
+
fill: "currentColor"
|
|
11
|
+
};
|
|
12
|
+
function _sfc_render(_ctx, _cache) {
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createElementVNode("path", { d: "M6.25 9.723C4.392 9.6095 2.804 9.137 1.875 8.4775V9.7495C1.875 10.6165 3.7665 11.3365 6.25 11.4745V12.348C4.392 12.2345 2.804 11.763 1.875 11.102V12.3745H1V4.0625C1 2.371 3.742 1 7.125 1C10.507 1 13.249 2.371 13.249 4.0625V6.8255H12.374V5.6405C11.3025 6.5295 9.352 7.1245 7.1245 7.1245C4.897 7.1245 2.947 6.5295 1.8745 5.6405V7.1245C1.8745 7.9915 3.7665 8.712 6.2495 8.85L6.25 9.723ZM7.125 14.999C3.742 14.999 1 13.8245 1 12.3745H1.875C1.875 13.3415 4.225 14.124 7.125 14.124V14.999ZM7.125 6.2495C10.024 6.2495 12.3745 5.2695 12.3745 4.0625C12.3745 2.855 10.0245 1.875 7.1245 1.875C4.225 1.875 1.8745 2.855 1.8745 4.0625C1.8745 5.2695 4.2255 6.2495 7.125 6.2495ZM14.7385 11.9895L14.1295 11.6345C14.1635 11.4485 14.1855 11.2585 14.1855 11.062C14.1843 10.8697 14.1655 10.6779 14.1295 10.489L14.7385 10.134C14.988 9.987 15.073 9.667 14.929 9.416L14.409 8.507C14.3752 8.44726 14.3299 8.39483 14.2757 8.35275C14.2215 8.31066 14.1595 8.27977 14.0933 8.26186C14.027 8.24395 13.9579 8.23938 13.8898 8.24842C13.8218 8.25745 13.7563 8.27992 13.697 8.3145L13.081 8.6735C12.7931 8.42269 12.4616 8.22694 12.103 8.096V7.6495C12.103 7.36 11.8705 7.1245 11.5825 7.1245H10.5415C10.4728 7.12476 10.4049 7.13855 10.3415 7.16507C10.2782 7.1916 10.2206 7.23034 10.1723 7.2791C10.1239 7.32785 10.0856 7.38565 10.0595 7.4492C10.0335 7.51276 10.0202 7.58082 10.0205 7.6495V8.096C9.66186 8.22694 9.33035 8.42269 9.0425 8.6735L8.4265 8.3145C8.36725 8.27999 8.30174 8.2576 8.23377 8.2486C8.1658 8.23961 8.09672 8.24419 8.03053 8.2621C7.96435 8.28001 7.90238 8.31088 7.84821 8.35292C7.79405 8.39495 7.74877 8.44733 7.715 8.507L7.195 9.417C7.12576 9.53751 7.10688 9.68047 7.14246 9.81482C7.17804 9.94917 7.2652 10.0641 7.385 10.1345L7.9945 10.489C7.9585 10.6775 7.9395 10.8695 7.9385 11.062C7.9385 11.2585 7.96 11.4485 7.9945 11.635L7.3855 11.99C7.1355 12.1365 7.0505 12.4565 7.1945 12.7075L7.715 13.6165C7.74877 13.6762 7.79405 13.7285 7.84821 13.7706C7.90238 13.8126 7.96435 13.8435 8.03053 13.8614C8.09672 13.8793 8.1658 13.8839 8.23377 13.8749C8.30174 13.8659 8.36725 13.8435 8.4265 13.809L9.0425 13.4505C9.33023 13.7015 9.66178 13.8972 10.0205 14.028V14.474C10.0205 14.764 10.2535 14.999 10.5415 14.999H11.5825C11.7211 14.9983 11.8538 14.9427 11.9514 14.8442C12.049 14.7458 12.1035 14.6126 12.103 14.474V14.028C12.4616 13.8971 12.7931 13.7013 13.081 13.4505L13.697 13.809C13.7563 13.8434 13.8218 13.8657 13.8897 13.8746C13.9577 13.8835 14.0267 13.8789 14.0929 13.861C14.159 13.8431 14.221 13.8123 14.2751 13.7703C14.3293 13.7283 14.3746 13.6761 14.4085 13.6165L14.929 12.7065C14.998 12.586 15.0168 12.4431 14.9811 12.3089C14.9454 12.1746 14.8583 12.0599 14.7385 11.9895ZM14.092 12.5065L13.852 12.915C13.8193 12.9693 13.7667 13.0086 13.7054 13.0246C13.6441 13.0406 13.579 13.0319 13.524 13.0005L12.8575 12.623C12.5109 13.0069 12.0497 13.2688 11.5425 13.37V13.889C11.5425 14.0185 11.4345 14.124 11.3015 14.124H10.822C10.7907 14.1243 10.7597 14.1184 10.7308 14.1067C10.7018 14.0949 10.6754 14.0776 10.6531 14.0557C10.6308 14.0338 10.6131 14.0077 10.6009 13.9789C10.5887 13.9502 10.5823 13.9193 10.582 13.888V13.37C10.0746 13.2689 9.61328 13.007 9.2665 12.623L8.6 13C8.54495 13.0316 8.47971 13.0403 8.4183 13.0243C8.35688 13.0083 8.30418 12.9689 8.2715 12.9145L8.0315 12.506C8.01582 12.4792 8.00564 12.4496 8.00158 12.4189C7.99752 12.3881 7.99965 12.3569 8.00785 12.327C8.01605 12.297 8.03016 12.2691 8.04933 12.2447C8.0685 12.2203 8.09236 12.2 8.1195 12.185L8.789 11.805C8.70604 11.5658 8.66313 11.3146 8.662 11.0615C8.662 10.8005 8.709 10.552 8.7895 10.3175L8.1195 9.9375C8.09247 9.92244 8.06872 9.90213 8.04964 9.87777C8.03056 9.85341 8.01654 9.82549 8.00839 9.79564C8.00024 9.76579 7.99813 9.73461 8.00218 9.70394C8.00624 9.67326 8.01637 9.64371 8.032 9.617L8.272 9.208C8.30467 9.15373 8.35729 9.1144 8.41858 9.09843C8.47988 9.08245 8.54499 9.09109 8.6 9.1225L9.2665 9.5005C9.61315 9.11663 10.0743 8.85468 10.5815 8.7535V8.235C10.5815 8.105 10.689 8 10.822 8H11.302C11.4345 8 11.542 8.105 11.542 8.236V8.754C12.0492 8.85518 12.5104 9.11713 12.857 9.501L13.524 9.123C13.579 9.09159 13.6441 9.08295 13.7054 9.09893C13.7667 9.1149 13.8193 9.15423 13.852 9.2085L14.092 9.6175C14.1077 9.64423 14.1179 9.67383 14.122 9.70455C14.1261 9.73528 14.124 9.76652 14.1159 9.79643C14.1077 9.82634 14.0937 9.85431 14.0745 9.87871C14.0554 9.90311 14.0316 9.92344 14.0045 9.9385L13.335 10.3185C13.4135 10.5525 13.462 10.801 13.462 11.062C13.462 11.3225 13.4145 11.571 13.335 11.8055L14.0045 12.1855C14.0316 12.2006 14.0554 12.2209 14.0745 12.2453C14.0937 12.2697 14.1077 12.2977 14.1159 12.3276C14.124 12.3575 14.1261 12.3887 14.122 12.4194C14.1179 12.4502 14.1077 12.4798 14.092 12.5065ZM11.062 9.7495C10.7139 9.7495 10.3801 9.88778 10.1339 10.1339C9.88778 10.3801 9.7495 10.7139 9.7495 11.062C9.7495 11.4101 9.88778 11.7439 10.1339 11.9901C10.3801 12.2362 10.7139 12.3745 11.062 12.3745C11.4101 12.3745 11.7439 12.2362 11.9901 11.9901C12.2362 11.7439 12.3745 11.4101 12.3745 11.062C12.3745 10.7139 12.2362 10.3801 11.9901 10.1339C11.7439 9.88778 11.4101 9.7495 11.062 9.7495ZM11.062 11.4995C10.946 11.4995 10.8347 11.4534 10.7526 11.3714C10.6706 11.2893 10.6245 11.178 10.6245 11.062C10.6245 10.946 10.6706 10.8347 10.7526 10.7526C10.8347 10.6706 10.946 10.6245 11.062 10.6245C11.178 10.6245 11.2893 10.6706 11.3714 10.7526C11.4534 10.8347 11.4995 10.946 11.4995 11.062C11.4995 11.178 11.4534 11.2893 11.3714 11.3714C11.2893 11.4534 11.178 11.4995 11.062 11.4995Z" }, null, -1)])]);
|
|
14
|
+
}
|
|
15
|
+
var DatasourceIcon_default = /*#__PURE__*/ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
16
|
+
//#endregion
|
|
17
|
+
export { DatasourceIcon_default as default };
|
package/dist/es/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CODE_DRAFT_STORAGE_KEY, CodeDeleteErrorType, ColumnLayout, DragType, KeyBindingCommand, Keys, LayerOffset, Layout, SideItemKey, canUsePluginMethods } from "./type.js";
|
|
2
2
|
import { useCodeBlockEdit } from "./hooks/use-code-block-edit.js";
|
|
3
|
-
import { getEditorConfig, setEditorConfig } from "./utils/config.js";
|
|
3
|
+
import { getEditorConfig, isGlobalFlat, setEditorConfig } from "./utils/config.js";
|
|
4
4
|
import { getCodeBlockFormConfig } from "./utils/code-block.js";
|
|
5
5
|
import { advancedTabConfig, arrayOptions, booleanOptions, displayTabConfig, eqOptions, eventTabConfig, fillConfig, getCondOpOptionsByFieldType, numberOptions, removeStyleDisplayConfig, styleTabConfig, validatePropsForm } from "./utils/props.js";
|
|
6
6
|
import { useCompareForm } from "./hooks/use-compare-form.js";
|
|
@@ -92,4 +92,4 @@ export * from "@tmagic/table";
|
|
|
92
92
|
export * from "@tmagic/stage";
|
|
93
93
|
export * from "@tmagic/design";
|
|
94
94
|
export * from "@tmagic/utils";
|
|
95
|
-
export { ALL_COND_OPS, CODE_DRAFT_STORAGE_KEY, COPY_CODE_STORAGE_KEY, COPY_DS_STORAGE_KEY, COPY_STORAGE_KEY, CodeBlockEditor_default as CodeBlockEditor, CodeBlockList_default as CodeBlockList, CodeBlockListPanel_default as CodeBlockListPanel, CodeDeleteErrorType, CodeSelect_default as CodeSelect, CodeSelectCol_default as CodeSelectCol, ColumnLayout, CompareForm_default as CompareForm, ComponentListPanel_default as ComponentListPanel, CondOpSelect_default as CondOpSelect, ContentMenu_default as ContentMenu, DEFAULT_LEFT_COLUMN_WIDTH, DEFAULT_RIGHT_COLUMN_WIDTH, DataSourceAddButton_default as DataSourceAddButton, DataSourceConfigPanel_default as DataSourceConfigPanel, Index_default as DataSourceFieldSelect, DataSourceFields_default as DataSourceFields, DataSourceInput_default as DataSourceInput, DataSourceMethodSelect_default as DataSourceMethodSelect, DataSourceMethods_default as DataSourceMethods, DataSourceMocks_default as DataSourceMocks, DataSourceSelect_default as DataSourceSelect, DepTargetType, DisplayConds_default as DisplayConds, DragType, EVENT_NAME_VALUE_SEPARATOR, EventSelect_default as EventSelect, Fixed2Other, FloatingBox_default as FloatingBox, H_GUIDE_LINE_STORAGE_KEY, HistoryDiffDialog_default as HistoryDiffDialog, Bucket_default as HistoryListBucket, BucketTab_default as HistoryListBucketTab, Icon_default as Icon, IdleTask, KeyBindingCommand, KeyValue_default as KeyValue, Keys, LEFT_COLUMN_WIDTH_STORAGE_KEY, LayerNodeContent_default as LayerNodeContent, LayerOffset, LayerPanel_default as LayerPanel, Layout, SplitView_default as LayoutContainer, MIN_CENTER_COLUMN_WIDTH, MIN_LEFT_COLUMN_WIDTH, MIN_RIGHT_COLUMN_WIDTH, PROPS_PANEL_WIDTH_STORAGE_KEY, PageFragmentSelect_default as PageFragmentSelect, FormPanel_default as PropsFormPanel, PropsPanel_default as PropsPanel, RIGHT_COLUMN_WIDTH_STORAGE_KEY, Resizer_default as Resizer, ScrollViewer, SideItemKey, SplitView_default as SplitView, StageCore, Index_default$1 as StyleSetter, CodeEditor_default as TMagicCodeEditor, Editor_default as TMagicEditor, ToolButton_default as ToolButton, Tree_default as Tree, TreeNode_default as TreeNode, UI_SELECT_MODE_EVENT_NAME, UndoRedo, V_GUIDE_LINE_STORAGE_KEY, ViewForm_default as ViewForm, advancedTabConfig, arrayOptions, beforePaste, booleanOptions, buildChangeRecords, calcAlignCenterStyle, calcLayerTargetIndex, calcMoveStyle, canUsePluginMethods, change2Fixed, classifyDragSources, codeBlock_default as codeBlockService, collectEventNameOptionValues, collectRelatedNodes, componentList_default as componentListService, confirmHistoryAction, createStackStep, dataSource_default as dataSourceService, debug, plugin_default as default, defaultIsExpandable, dep_default as depService, describeRevertStep, describeStepForRevert, deserializeStacks, designPlugin, detectStackOpType, detectTargetId, detectTargetName, displayTabConfig, editorNodeMergeCustomizer, editor_default as editorService, editorTypeMatchRules, eqOptions, error, eventTabConfig, events_default as eventsService, fillConfig, fixNodeLeft, fixNodePosition, formPlugin, generatePageName, generatePageNameByApp, getAddParent, getCascaderOptionsFromFields, getCodeBlockFormConfig, getCompActionAllowedValues, getCompActionOptions, getCondOpOptionsByFieldType, getDefaultConfig, getDisplayField, getEditorConfig, getEventNameAllowedValues, getEventNameOptions, getFieldType, getFormConfig, getFormValue, getGuideLineFromCache, getInitPositionStyle, getLastPushedHistoryIds, getNodeIndex, getOrCreateStack, getPageFragmentList, getPageList, getPageNameList, getPositionInContainer, getRelativeStyle, history_default as historyService, idbDelete, idbGet, idbSet, info, isEventNameCheckStrictly, isIncludeDataSource, isIndexedDBSupported, keybinding_default as keybindingService, monaco_editor_default as loadMonaco, log, markStackSaved, mergeSteps, moveItemsInContainer, normalizeCompActionValue, numberOptions, openIndexedDB, props_default as propsService, removeStyleDisplayConfig, resolveFieldByPath, resolveSelectedNode, serializeConfig, serializeStacks, setChildrenLayout, setEditorConfig, setLayout, stageOverlay_default as stageOverlayService, storage_default as storageService, styleTabConfig, tablePlugin, toggleFixedPosition, ui_default as uiService, undoFloor, updateStatus, useCodeBlockEdit, useCompareForm, useEditorContentHeight, useFilter, useFloatBox, useGetSo, useHistoryRevert, useNextFloatBoxPosition, useNodeStatus, useServices, useStage, useWindowRect, validatePropsForm, warn };
|
|
95
|
+
export { ALL_COND_OPS, CODE_DRAFT_STORAGE_KEY, COPY_CODE_STORAGE_KEY, COPY_DS_STORAGE_KEY, COPY_STORAGE_KEY, CodeBlockEditor_default as CodeBlockEditor, CodeBlockList_default as CodeBlockList, CodeBlockListPanel_default as CodeBlockListPanel, CodeDeleteErrorType, CodeSelect_default as CodeSelect, CodeSelectCol_default as CodeSelectCol, ColumnLayout, CompareForm_default as CompareForm, ComponentListPanel_default as ComponentListPanel, CondOpSelect_default as CondOpSelect, ContentMenu_default as ContentMenu, DEFAULT_LEFT_COLUMN_WIDTH, DEFAULT_RIGHT_COLUMN_WIDTH, DataSourceAddButton_default as DataSourceAddButton, DataSourceConfigPanel_default as DataSourceConfigPanel, Index_default as DataSourceFieldSelect, DataSourceFields_default as DataSourceFields, DataSourceInput_default as DataSourceInput, DataSourceMethodSelect_default as DataSourceMethodSelect, DataSourceMethods_default as DataSourceMethods, DataSourceMocks_default as DataSourceMocks, DataSourceSelect_default as DataSourceSelect, DepTargetType, DisplayConds_default as DisplayConds, DragType, EVENT_NAME_VALUE_SEPARATOR, EventSelect_default as EventSelect, Fixed2Other, FloatingBox_default as FloatingBox, H_GUIDE_LINE_STORAGE_KEY, HistoryDiffDialog_default as HistoryDiffDialog, Bucket_default as HistoryListBucket, BucketTab_default as HistoryListBucketTab, Icon_default as Icon, IdleTask, KeyBindingCommand, KeyValue_default as KeyValue, Keys, LEFT_COLUMN_WIDTH_STORAGE_KEY, LayerNodeContent_default as LayerNodeContent, LayerOffset, LayerPanel_default as LayerPanel, Layout, SplitView_default as LayoutContainer, MIN_CENTER_COLUMN_WIDTH, MIN_LEFT_COLUMN_WIDTH, MIN_RIGHT_COLUMN_WIDTH, PROPS_PANEL_WIDTH_STORAGE_KEY, PageFragmentSelect_default as PageFragmentSelect, FormPanel_default as PropsFormPanel, PropsPanel_default as PropsPanel, RIGHT_COLUMN_WIDTH_STORAGE_KEY, Resizer_default as Resizer, ScrollViewer, SideItemKey, SplitView_default as SplitView, StageCore, Index_default$1 as StyleSetter, CodeEditor_default as TMagicCodeEditor, Editor_default as TMagicEditor, ToolButton_default as ToolButton, Tree_default as Tree, TreeNode_default as TreeNode, UI_SELECT_MODE_EVENT_NAME, UndoRedo, V_GUIDE_LINE_STORAGE_KEY, ViewForm_default as ViewForm, advancedTabConfig, arrayOptions, beforePaste, booleanOptions, buildChangeRecords, calcAlignCenterStyle, calcLayerTargetIndex, calcMoveStyle, canUsePluginMethods, change2Fixed, classifyDragSources, codeBlock_default as codeBlockService, collectEventNameOptionValues, collectRelatedNodes, componentList_default as componentListService, confirmHistoryAction, createStackStep, dataSource_default as dataSourceService, debug, plugin_default as default, defaultIsExpandable, dep_default as depService, describeRevertStep, describeStepForRevert, deserializeStacks, designPlugin, detectStackOpType, detectTargetId, detectTargetName, displayTabConfig, editorNodeMergeCustomizer, editor_default as editorService, editorTypeMatchRules, eqOptions, error, eventTabConfig, events_default as eventsService, fillConfig, fixNodeLeft, fixNodePosition, formPlugin, generatePageName, generatePageNameByApp, getAddParent, getCascaderOptionsFromFields, getCodeBlockFormConfig, getCompActionAllowedValues, getCompActionOptions, getCondOpOptionsByFieldType, getDefaultConfig, getDisplayField, getEditorConfig, getEventNameAllowedValues, getEventNameOptions, getFieldType, getFormConfig, getFormValue, getGuideLineFromCache, getInitPositionStyle, getLastPushedHistoryIds, getNodeIndex, getOrCreateStack, getPageFragmentList, getPageList, getPageNameList, getPositionInContainer, getRelativeStyle, history_default as historyService, idbDelete, idbGet, idbSet, info, isEventNameCheckStrictly, isGlobalFlat, isIncludeDataSource, isIndexedDBSupported, keybinding_default as keybindingService, monaco_editor_default as loadMonaco, log, markStackSaved, mergeSteps, moveItemsInContainer, normalizeCompActionValue, numberOptions, openIndexedDB, props_default as propsService, removeStyleDisplayConfig, resolveFieldByPath, resolveSelectedNode, serializeConfig, serializeStacks, setChildrenLayout, setEditorConfig, setLayout, stageOverlay_default as stageOverlayService, storage_default as storageService, styleTabConfig, tablePlugin, toggleFixedPosition, ui_default as uiService, undoFloor, updateStatus, useCodeBlockEdit, useCompareForm, useEditorContentHeight, useFilter, useFloatBox, useGetSo, useHistoryRevert, useNextFloatBoxPosition, useNodeStatus, useServices, useStage, useWindowRect, validatePropsForm, warn };
|