@tmagic/editor 1.8.0-beta.7 → 1.8.0-manmanyu.8
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 +13 -3
- package/dist/es/components/CompareForm.vue_vue_type_script_setup_true_lang.js +6 -5
- package/dist/es/components/ContentMenu.vue_vue_type_script_setup_true_lang.js +11 -4
- package/dist/es/components/FloatingBox.vue_vue_type_script_setup_true_lang.js +9 -4
- package/dist/es/fields/Code.vue_vue_type_script_setup_true_lang.js +4 -1
- 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 +68 -43
- 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 +101 -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 +11 -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 +82 -46
- 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 +5 -3
- package/dist/es/layouts/Framework.vue_vue_type_script_setup_true_lang.js +14 -10
- package/dist/es/layouts/history-list/GroupRow.vue_vue_type_script_setup_true_lang.js +38 -26
- package/dist/es/layouts/history-list/HistoryDiffDialog.vue_vue_type_script_setup_true_lang.js +5 -1
- package/dist/es/layouts/history-list/HistoryListPanel.vue_vue_type_script_setup_true_lang.js +135 -288
- package/dist/es/layouts/history-list/composables.js +23 -55
- package/dist/es/layouts/history-list/useHistoryList.js +56 -0
- package/dist/es/layouts/history-list/useHistoryRevert.js +304 -0
- package/dist/es/services/history.js +18 -1
- package/dist/es/style.css +306 -37
- package/dist/es/utils/const.js +1 -1
- package/dist/es/utils/props.js +137 -31
- package/dist/style.css +306 -37
- package/dist/themes/magic-admin.css +2316 -0
- package/dist/tmagic-editor.umd.cjs +4427 -2871
- package/package.json +7 -7
- package/src/Editor.vue +13 -1
- package/src/components/CompareForm.vue +14 -6
- package/src/components/ContentMenu.vue +10 -2
- package/src/components/FloatingBox.vue +13 -2
- package/src/editorProps.ts +9 -0
- package/src/fields/CodeSelect.vue +51 -40
- 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 +58 -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 copy.ts +5 -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 +11 -5
- package/src/fields/StyleSetter/pro/Font.vue +3 -3
- package/src/fields/StyleSetter/pro/Layout.vue +105 -28
- package/src/fields/UISelect.vue +1 -1
- package/src/icons/DatasourceIcon.vue +7 -0
- package/src/index.ts +2 -0
- package/src/layouts/Framework.vue +7 -1
- package/src/layouts/NavMenu.vue +2 -2
- package/src/layouts/history-list/GroupRow.vue +10 -0
- package/src/layouts/history-list/HistoryDiffDialog.vue +6 -1
- package/src/layouts/history-list/HistoryListPanel.vue +53 -250
- package/src/layouts/history-list/PageTab.vue +4 -4
- package/src/layouts/history-list/composables.ts +52 -90
- package/src/layouts/history-list/useHistoryList.ts +60 -0
- package/src/layouts/history-list/useHistoryRevert.ts +400 -0
- package/src/services/codeBlock.ts +30 -29
- package/src/services/dataSource.ts +37 -37
- package/src/services/editor.ts +32 -29
- package/src/services/history.ts +340 -430
- 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 +55 -1
- package/src/theme/history-list-panel.scss +23 -9
- 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 +125 -0
- package/src/type.ts +174 -92
- package/src/utils/const.ts +2 -1
- package/src/utils/history.ts +52 -67
- package/src/utils/props.ts +138 -9
- package/types/index.d.ts +156 -13
|
@@ -4,15 +4,18 @@ import { MContainer, MPanel, MTable, defineFormItem } from "@tmagic/form";
|
|
|
4
4
|
import { TMagicButton } from "@tmagic/design";
|
|
5
5
|
import { DATA_SOURCE_FIELDS_CHANGE_EVENT_PREFIX, traverseNode } from "@tmagic/utils";
|
|
6
6
|
import { ActionType } from "@tmagic/core";
|
|
7
|
-
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createTextVNode, createVNode, defineComponent, openBlock, renderList, unref, withCtx } from "vue";
|
|
7
|
+
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createElementVNode, createTextVNode, createVNode, defineComponent, openBlock, renderList, toDisplayString, unref, withCtx } from "vue";
|
|
8
8
|
import { has } from "lodash-es";
|
|
9
|
-
import { Delete } from "@element-plus/icons-vue";
|
|
9
|
+
import { Delete, Plus } from "@element-plus/icons-vue";
|
|
10
10
|
//#region packages/editor/src/fields/EventSelect.vue?vue&type=script&setup=true&lang.ts
|
|
11
11
|
var _hoisted_1 = { class: "m-fields-event-select" };
|
|
12
12
|
var _hoisted_2 = {
|
|
13
13
|
key: 1,
|
|
14
|
-
class: "fullWidth"
|
|
14
|
+
class: "fullWidth event-select-container"
|
|
15
15
|
};
|
|
16
|
+
var _hoisted_3 = { class: "event-select-header" };
|
|
17
|
+
var _hoisted_4 = { class: "event-item-header" };
|
|
18
|
+
var _hoisted_5 = { class: "event-item-title" };
|
|
16
19
|
var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
17
20
|
name: "MFieldsEventSelect",
|
|
18
21
|
__name: "EventSelect",
|
|
@@ -26,7 +29,10 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
26
29
|
disabled: { type: Boolean },
|
|
27
30
|
size: {},
|
|
28
31
|
lastValues: {},
|
|
29
|
-
isCompare: { type: Boolean }
|
|
32
|
+
isCompare: { type: Boolean },
|
|
33
|
+
text: {},
|
|
34
|
+
labelWidth: {},
|
|
35
|
+
labelPosition: {}
|
|
30
36
|
},
|
|
31
37
|
emits: ["change"],
|
|
32
38
|
setup(__props, { emit: __emit }) {
|
|
@@ -36,12 +42,12 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
36
42
|
const eventNameConfig = computed(() => {
|
|
37
43
|
return {
|
|
38
44
|
name: "name",
|
|
39
|
-
text: "
|
|
45
|
+
text: "事件类型",
|
|
40
46
|
type: (mForm, { formValue }) => {
|
|
41
47
|
if (props.config.src !== "component" || formValue.type === "page-fragment-container" && formValue.pageFragmentId) return "cascader";
|
|
42
48
|
return "select";
|
|
43
49
|
},
|
|
44
|
-
labelWidth: "
|
|
50
|
+
labelWidth: "70px",
|
|
45
51
|
checkStrictly: () => props.config.src !== "component",
|
|
46
52
|
valueSeparator: ".",
|
|
47
53
|
options: (mForm, { formValue }) => {
|
|
@@ -93,6 +99,7 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
93
99
|
name: "actionType",
|
|
94
100
|
text: "联动类型",
|
|
95
101
|
type: "select",
|
|
102
|
+
labelPosition: "left",
|
|
96
103
|
defaultValue: ActionType.COMP,
|
|
97
104
|
options: () => {
|
|
98
105
|
const o = [{
|
|
@@ -121,6 +128,7 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
121
128
|
name: "to",
|
|
122
129
|
text: "联动组件",
|
|
123
130
|
type: "ui-select",
|
|
131
|
+
labelPosition: "left",
|
|
124
132
|
display: (_mForm, { model }) => model.actionType === ActionType.COMP,
|
|
125
133
|
onChange: (_MForm, _v, { setModel }) => {
|
|
126
134
|
setModel("method", "");
|
|
@@ -132,6 +140,7 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
132
140
|
return {
|
|
133
141
|
name: "method",
|
|
134
142
|
text: "动作",
|
|
143
|
+
labelPosition: "left",
|
|
135
144
|
type: (mForm, { model }) => {
|
|
136
145
|
const to = editorService.getNodeById(model.to);
|
|
137
146
|
if (to && to.type === "page-fragment-container" && to.pageFragmentId) return "cascader";
|
|
@@ -224,12 +233,16 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
224
233
|
}));
|
|
225
234
|
const actionsConfig = computed(() => defineFormItem({
|
|
226
235
|
type: "panel",
|
|
236
|
+
labelPosition: "left",
|
|
237
|
+
flat: true,
|
|
227
238
|
items: [{
|
|
228
239
|
type: "group-list",
|
|
229
240
|
name: "actions",
|
|
230
241
|
expandAll: true,
|
|
231
242
|
enableToggleMode: false,
|
|
232
243
|
titlePrefix: "动作",
|
|
244
|
+
labelPosition: "left",
|
|
245
|
+
flat: true,
|
|
233
246
|
items: [
|
|
234
247
|
actionTypeConfig.value,
|
|
235
248
|
targetCompConfig.value,
|
|
@@ -311,73 +324,97 @@ var EventSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ de
|
|
|
311
324
|
"last-values",
|
|
312
325
|
"is-compare",
|
|
313
326
|
"config"
|
|
314
|
-
])) : (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
}, {
|
|
322
|
-
default: withCtx(() => [..._cache[1] || (_cache[1] = [createTextVNode("添加事件", -1)])]),
|
|
323
|
-
_: 1
|
|
324
|
-
}, 8, ["size", "disabled"])) : createCommentVNode("v-if", true), (openBlock(true), createElementBlock(Fragment, null, renderList(displayList.value, (entry) => {
|
|
325
|
-
return openBlock(), createBlock(unref(MPanel), {
|
|
326
|
-
key: entry.index,
|
|
327
|
-
disabled: __props.disabled,
|
|
327
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
328
|
+
createElementVNode("div", _hoisted_3, [_cache[3] || (_cache[3] = createElementVNode("div", { class: "event-select-title" }, "事件配置", -1)), !isCompareMode.value && displayList.value.length > 0 ? (openBlock(), createBlock(unref(TMagicButton), {
|
|
329
|
+
key: 0,
|
|
330
|
+
class: "create-button",
|
|
331
|
+
text: "",
|
|
332
|
+
type: "primary",
|
|
333
|
+
icon: unref(Plus),
|
|
328
334
|
size: __props.size,
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
model: entry.cardItem,
|
|
332
|
-
"last-values": entry.lastCardItem,
|
|
333
|
-
"is-compare": isCompareMode.value,
|
|
334
|
-
"label-width": __props.config.labelWidth || "100px",
|
|
335
|
-
onChange: onChangeHandler
|
|
335
|
+
disabled: __props.disabled,
|
|
336
|
+
onClick: _cache[0] || (_cache[0] = ($event) => addEvent())
|
|
336
337
|
}, {
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
338
|
+
default: withCtx(() => [..._cache[2] || (_cache[2] = [createTextVNode("添加事件", -1)])]),
|
|
339
|
+
_: 1
|
|
340
|
+
}, 8, [
|
|
341
|
+
"icon",
|
|
342
|
+
"size",
|
|
343
|
+
"disabled"
|
|
344
|
+
])) : createCommentVNode("v-if", true)]),
|
|
345
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(displayList.value, (entry) => {
|
|
346
|
+
return openBlock(), createBlock(unref(MPanel), {
|
|
347
|
+
key: entry.index,
|
|
343
348
|
disabled: __props.disabled,
|
|
344
349
|
size: __props.size,
|
|
345
350
|
prop: `${__props.prop}.${entry.index}`,
|
|
346
|
-
|
|
347
|
-
|
|
351
|
+
config: actionsConfig.value,
|
|
352
|
+
model: entry.cardItem,
|
|
353
|
+
"last-values": entry.lastCardItem,
|
|
354
|
+
"is-compare": isCompareMode.value,
|
|
355
|
+
"hide-expand": true,
|
|
356
|
+
"label-width": __props.config.labelWidth || "100px",
|
|
357
|
+
onChange: onChangeHandler
|
|
358
|
+
}, {
|
|
359
|
+
header: withCtx(() => [createElementVNode("div", _hoisted_4, [
|
|
360
|
+
createElementVNode("div", _hoisted_5, "事件" + toDisplayString(Number(entry.index) + 1), 1),
|
|
361
|
+
createVNode(unref(MContainer), {
|
|
362
|
+
class: "fullWidth",
|
|
363
|
+
config: eventNameConfig.value,
|
|
364
|
+
model: entry.cardItem,
|
|
365
|
+
"last-values": entry.lastCardItem,
|
|
366
|
+
"is-compare": isCompareMode.value,
|
|
367
|
+
disabled: __props.disabled,
|
|
368
|
+
size: __props.size,
|
|
369
|
+
prop: `${__props.prop}.${entry.index}`,
|
|
370
|
+
onChange: eventNameChangeHandler
|
|
371
|
+
}, null, 8, [
|
|
372
|
+
"config",
|
|
373
|
+
"model",
|
|
374
|
+
"last-values",
|
|
375
|
+
"is-compare",
|
|
376
|
+
"disabled",
|
|
377
|
+
"size",
|
|
378
|
+
"prop"
|
|
379
|
+
]),
|
|
380
|
+
!isCompareMode.value ? (openBlock(), createBlock(unref(TMagicButton), {
|
|
381
|
+
key: 0,
|
|
382
|
+
class: "event-item-delete-button",
|
|
383
|
+
link: "",
|
|
384
|
+
icon: unref(Delete),
|
|
385
|
+
disabled: __props.disabled,
|
|
386
|
+
size: __props.size,
|
|
387
|
+
onClick: ($event) => removeEvent(Number(entry.index))
|
|
388
|
+
}, null, 8, [
|
|
389
|
+
"icon",
|
|
390
|
+
"disabled",
|
|
391
|
+
"size",
|
|
392
|
+
"onClick"
|
|
393
|
+
])) : createCommentVNode("v-if", true)
|
|
394
|
+
])]),
|
|
395
|
+
_: 2
|
|
396
|
+
}, 1032, [
|
|
397
|
+
"disabled",
|
|
398
|
+
"size",
|
|
399
|
+
"prop",
|
|
348
400
|
"config",
|
|
349
401
|
"model",
|
|
350
402
|
"last-values",
|
|
351
403
|
"is-compare",
|
|
352
|
-
"
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
"size",
|
|
367
|
-
"onClick"
|
|
368
|
-
])) : createCommentVNode("v-if", true)]),
|
|
369
|
-
_: 2
|
|
370
|
-
}, 1032, [
|
|
371
|
-
"disabled",
|
|
372
|
-
"size",
|
|
373
|
-
"prop",
|
|
374
|
-
"config",
|
|
375
|
-
"model",
|
|
376
|
-
"last-values",
|
|
377
|
-
"is-compare",
|
|
378
|
-
"label-width"
|
|
379
|
-
]);
|
|
380
|
-
}), 128))]))]);
|
|
404
|
+
"label-width"
|
|
405
|
+
]);
|
|
406
|
+
}), 128)),
|
|
407
|
+
!isCompareMode.value ? (openBlock(), createBlock(unref(TMagicButton), {
|
|
408
|
+
key: 0,
|
|
409
|
+
class: "create-button fullWidth",
|
|
410
|
+
icon: unref(Plus),
|
|
411
|
+
disabled: __props.disabled,
|
|
412
|
+
onClick: _cache[1] || (_cache[1] = ($event) => addEvent())
|
|
413
|
+
}, {
|
|
414
|
+
default: withCtx(() => [..._cache[4] || (_cache[4] = [createTextVNode("添加事件", -1)])]),
|
|
415
|
+
_: 1
|
|
416
|
+
}, 8, ["icon", "disabled"])) : createCommentVNode("v-if", true)
|
|
417
|
+
]))]);
|
|
381
418
|
};
|
|
382
419
|
}
|
|
383
420
|
});
|
|
@@ -22,7 +22,10 @@ var KeyValue_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defin
|
|
|
22
22
|
},
|
|
23
23
|
size: {},
|
|
24
24
|
lastValues: {},
|
|
25
|
-
isCompare: { type: Boolean }
|
|
25
|
+
isCompare: { type: Boolean },
|
|
26
|
+
text: {},
|
|
27
|
+
labelWidth: {},
|
|
28
|
+
labelPosition: {}
|
|
26
29
|
},
|
|
27
30
|
emits: ["change"],
|
|
28
31
|
setup(__props, { emit: __emit }) {
|
|
@@ -23,7 +23,10 @@ var PageFragmentSelect_vue_vue_type_script_setup_true_lang_default = /* @__PURE_
|
|
|
23
23
|
},
|
|
24
24
|
size: {},
|
|
25
25
|
lastValues: {},
|
|
26
|
-
isCompare: { type: Boolean }
|
|
26
|
+
isCompare: { type: Boolean },
|
|
27
|
+
text: {},
|
|
28
|
+
labelWidth: {},
|
|
29
|
+
labelPosition: {}
|
|
27
30
|
},
|
|
28
31
|
emits: ["change"],
|
|
29
32
|
setup(__props, { emit: __emit }) {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import Icon_default from "../../components/Icon.js";
|
|
2
1
|
import Background_default from "./pro/Background.js";
|
|
3
2
|
import Font_default from "./pro/Font.js";
|
|
4
3
|
import Layout_default from "./pro/Layout.js";
|
|
@@ -7,7 +6,6 @@ import Border_default from "./pro/Border.js";
|
|
|
7
6
|
import Transform_default from "./pro/Transform.js";
|
|
8
7
|
import { TMagicCollapse, TMagicCollapseItem } from "@tmagic/design";
|
|
9
8
|
import { Fragment, createBlock, createCommentVNode, createElementBlock, createTextVNode, createVNode, defineComponent, openBlock, renderList, resolveDynamicComponent, shallowRef, toDisplayString, unref, withCtx } from "vue";
|
|
10
|
-
import { Grid } from "@element-plus/icons-vue";
|
|
11
9
|
//#region packages/editor/src/fields/StyleSetter/Index.vue?vue&type=script&setup=true&lang.ts
|
|
12
10
|
var Index_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
13
11
|
name: "MFieldsStyleSetter",
|
|
@@ -22,7 +20,10 @@ var Index_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineCo
|
|
|
22
20
|
disabled: { type: Boolean },
|
|
23
21
|
size: {},
|
|
24
22
|
lastValues: {},
|
|
25
|
-
isCompare: { type: Boolean }
|
|
23
|
+
isCompare: { type: Boolean },
|
|
24
|
+
text: {},
|
|
25
|
+
labelWidth: {},
|
|
26
|
+
labelPosition: {}
|
|
26
27
|
},
|
|
27
28
|
emits: ["change", "addDiffCount"],
|
|
28
29
|
setup(__props, { emit: __emit }) {
|
|
@@ -75,7 +76,7 @@ var Index_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineCo
|
|
|
75
76
|
key: index,
|
|
76
77
|
name: `${index}`
|
|
77
78
|
}, {
|
|
78
|
-
title: withCtx(() => [
|
|
79
|
+
title: withCtx(() => [createTextVNode(toDisplayString(item.title), 1)]),
|
|
79
80
|
default: withCtx(() => [item.component ? (openBlock(), createBlock(resolveDynamicComponent(item.component), {
|
|
80
81
|
key: 0,
|
|
81
82
|
values: __props.model[__props.name],
|
|
@@ -16,7 +16,10 @@ var BackgroundPosition_vue_vue_type_script_setup_true_lang_default = /* @__PURE_
|
|
|
16
16
|
disabled: { type: Boolean },
|
|
17
17
|
size: {},
|
|
18
18
|
lastValues: {},
|
|
19
|
-
isCompare: { type: Boolean }
|
|
19
|
+
isCompare: { type: Boolean },
|
|
20
|
+
text: {},
|
|
21
|
+
labelWidth: {},
|
|
22
|
+
labelPosition: {}
|
|
20
23
|
},
|
|
21
24
|
emits: ["change"],
|
|
22
25
|
setup(__props, { emit: __emit }) {
|
|
@@ -85,7 +85,7 @@ var Border_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineC
|
|
|
85
85
|
onClick: _cache[1] || (_cache[1] = ($event) => selectDirection("Left"))
|
|
86
86
|
}, null, 2),
|
|
87
87
|
createElementVNode("div", {
|
|
88
|
-
class: normalizeClass(["border-icon", {
|
|
88
|
+
class: normalizeClass(["border-icon center", {
|
|
89
89
|
active: direction.value === "",
|
|
90
90
|
configured: isConfigured("")
|
|
91
91
|
}]),
|
|
@@ -0,0 +1,31 @@
|
|
|
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/fields/StyleSetter/icons/align-items/Center.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: "M12 4C12.5523 4 13 4.44772 13 5V11C13 11.5523 12.5523 12 12 12H4C3.44772 12 3 11.5523 3 11V5C3 4.44772 3.44772 4 4 4H12ZM4.5 5C4.22386 5 4 5.22386 4 5.5V10.5C4 10.7761 4.22386 11 4.5 11H11.5C11.7761 11 12 10.7761 12 10.5V5.5C12 5.22386 11.7761 5 11.5 5H4.5Z" }, null, -1), createElementVNode("rect", {
|
|
14
|
+
x: "13.75",
|
|
15
|
+
y: "7.75",
|
|
16
|
+
width: "0.5",
|
|
17
|
+
height: "11.5",
|
|
18
|
+
rx: "0.25",
|
|
19
|
+
transform: "rotate(90 13.75 7.75)",
|
|
20
|
+
stroke: "black",
|
|
21
|
+
"stroke-opacity": "0.3",
|
|
22
|
+
style: {
|
|
23
|
+
"stroke": "black",
|
|
24
|
+
"stroke-opacity": "0.3"
|
|
25
|
+
},
|
|
26
|
+
"stroke-width": "0.5"
|
|
27
|
+
}, null, -1)])]);
|
|
28
|
+
}
|
|
29
|
+
var Center_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
30
|
+
//#endregion
|
|
31
|
+
export { Center_default as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
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/fields/StyleSetter/icons/align-items/FlexEnd.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: "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("rect", {
|
|
14
|
+
x: "13.75",
|
|
15
|
+
y: "12.25",
|
|
16
|
+
width: "0.5",
|
|
17
|
+
height: "11.5",
|
|
18
|
+
rx: "0.25",
|
|
19
|
+
transform: "rotate(90 13.75 12.25)",
|
|
20
|
+
stroke: "black",
|
|
21
|
+
"stroke-opacity": "0.3",
|
|
22
|
+
style: {
|
|
23
|
+
"stroke": "black",
|
|
24
|
+
"stroke-opacity": "0.3"
|
|
25
|
+
},
|
|
26
|
+
"stroke-width": "0.5"
|
|
27
|
+
}, null, -1)])]);
|
|
28
|
+
}
|
|
29
|
+
var FlexEnd_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
30
|
+
//#endregion
|
|
31
|
+
export { FlexEnd_default as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
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/fields/StyleSetter/icons/align-items/FlexStart.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: "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("rect", {
|
|
14
|
+
x: "13.75",
|
|
15
|
+
y: "3.25",
|
|
16
|
+
width: "0.5",
|
|
17
|
+
height: "11.5",
|
|
18
|
+
rx: "0.25",
|
|
19
|
+
transform: "rotate(90 13.75 3.25)",
|
|
20
|
+
stroke: "white",
|
|
21
|
+
"stroke-opacity": "0.3",
|
|
22
|
+
style: {
|
|
23
|
+
"stroke": "white",
|
|
24
|
+
"stroke-opacity": "0.3"
|
|
25
|
+
},
|
|
26
|
+
"stroke-width": "0.5"
|
|
27
|
+
}, null, -1)])]);
|
|
28
|
+
}
|
|
29
|
+
var FlexStart_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
30
|
+
//#endregion
|
|
31
|
+
export { FlexStart_default as default };
|
|
@@ -0,0 +1,50 @@
|
|
|
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/fields/StyleSetter/icons/align-items/SpaceAround.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] = [
|
|
14
|
+
createElementVNode("path", { d: "M12 8C12.5523 8 13 8.44772 13 9V12C13 12.5523 12.5523 13 12 13H4C3.44772 13 3 12.5523 3 12V9C3 8.44772 3.44772 8 4 8H12ZM4.5 9C4.22386 9 4 9.22386 4 9.5V11.5C4 11.7761 4.22386 12 4.5 12H11.5C11.7761 12 12 11.7761 12 11.5V9.5C12 9.22386 11.7761 9 11.5 9H4.5Z" }, null, -1),
|
|
15
|
+
createElementVNode("path", { d: "M12 2C12.5523 2 13 2.44772 13 3V6C13 6.55228 12.5523 7 12 7H4C3.44772 7 3 6.55228 3 6V3C3 2.44772 3.44772 2 4 2H12ZM4.5 3C4.22386 3 4 3.22386 4 3.5V5.5C4 5.77614 4.22386 6 4.5 6H11.5C11.7761 6 12 5.77614 12 5.5V3.5C12 3.22386 11.7761 3 11.5 3H4.5Z" }, null, -1),
|
|
16
|
+
createElementVNode("rect", {
|
|
17
|
+
x: "13.75",
|
|
18
|
+
y: "10.25",
|
|
19
|
+
width: "0.5",
|
|
20
|
+
height: "11.5",
|
|
21
|
+
rx: "0.25",
|
|
22
|
+
transform: "rotate(90 13.75 10.25)",
|
|
23
|
+
stroke: "black",
|
|
24
|
+
"stroke-opacity": "0.3",
|
|
25
|
+
style: {
|
|
26
|
+
"stroke": "black",
|
|
27
|
+
"stroke-opacity": "0.3"
|
|
28
|
+
},
|
|
29
|
+
"stroke-width": "0.5"
|
|
30
|
+
}, null, -1),
|
|
31
|
+
createElementVNode("rect", {
|
|
32
|
+
x: "13.75",
|
|
33
|
+
y: "4.25",
|
|
34
|
+
width: "0.5",
|
|
35
|
+
height: "11.5",
|
|
36
|
+
rx: "0.25",
|
|
37
|
+
transform: "rotate(90 13.75 4.25)",
|
|
38
|
+
stroke: "black",
|
|
39
|
+
"stroke-opacity": "0.3",
|
|
40
|
+
style: {
|
|
41
|
+
"stroke": "black",
|
|
42
|
+
"stroke-opacity": "0.3"
|
|
43
|
+
},
|
|
44
|
+
"stroke-width": "0.5"
|
|
45
|
+
}, null, -1)
|
|
46
|
+
])]);
|
|
47
|
+
}
|
|
48
|
+
var SpaceAround_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
49
|
+
//#endregion
|
|
50
|
+
export { SpaceAround_default as default };
|
|
@@ -0,0 +1,50 @@
|
|
|
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/fields/StyleSetter/icons/align-items/SpaceBetween.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] = [
|
|
14
|
+
createElementVNode("path", { d: "M12 9C12.5523 9 13 9.44772 13 10V12C13 12.5523 12.5523 13 12 13H4C3.44772 13 3 12.5523 3 12V10C3 9.44772 3.44772 9 4 9H12ZM4.5 10C4.22386 10 4 10.2239 4 10.5V11.5C4 11.7761 4.22386 12 4.5 12H11.5C11.7761 12 12 11.7761 12 11.5V10.5C12 10.2239 11.7761 10 11.5 10H4.5Z" }, null, -1),
|
|
15
|
+
createElementVNode("path", { d: "M12 3C12.5523 3 13 3.44772 13 4V6C13 6.55228 12.5523 7 12 7H4C3.44772 7 3 6.55228 3 6V4C3 3.44772 3.44772 3 4 3H12ZM4.5 4C4.22386 4 4 4.22386 4 4.5V5.5C4 5.77614 4.22386 6 4.5 6H11.5C11.7761 6 12 5.77614 12 5.5V4.5C12 4.22386 11.7761 4 11.5 4H4.5Z" }, null, -1),
|
|
16
|
+
createElementVNode("rect", {
|
|
17
|
+
x: "13.75",
|
|
18
|
+
y: "14.25",
|
|
19
|
+
width: "0.5",
|
|
20
|
+
height: "11.5",
|
|
21
|
+
rx: "0.25",
|
|
22
|
+
transform: "rotate(90 13.75 14.25)",
|
|
23
|
+
stroke: "black",
|
|
24
|
+
"stroke-opacity": "0.3",
|
|
25
|
+
style: {
|
|
26
|
+
"stroke": "black",
|
|
27
|
+
"stroke-opacity": "0.3"
|
|
28
|
+
},
|
|
29
|
+
"stroke-width": "0.5"
|
|
30
|
+
}, null, -1),
|
|
31
|
+
createElementVNode("rect", {
|
|
32
|
+
x: "13.75",
|
|
33
|
+
y: "1.25",
|
|
34
|
+
width: "0.5",
|
|
35
|
+
height: "11.5",
|
|
36
|
+
rx: "0.25",
|
|
37
|
+
transform: "rotate(90 13.75 1.25)",
|
|
38
|
+
stroke: "black",
|
|
39
|
+
"stroke-opacity": "0.3",
|
|
40
|
+
style: {
|
|
41
|
+
"stroke": "black",
|
|
42
|
+
"stroke-opacity": "0.3"
|
|
43
|
+
},
|
|
44
|
+
"stroke-width": "0.5"
|
|
45
|
+
}, null, -1)
|
|
46
|
+
])]);
|
|
47
|
+
}
|
|
48
|
+
var SpaceBetween_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
49
|
+
//#endregion
|
|
50
|
+
export { SpaceBetween_default as default };
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import _plugin_vue_export_helper_default from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
2
|
-
import { createElementBlock,
|
|
2
|
+
import { createElementBlock, createStaticVNode, openBlock } from "vue";
|
|
3
3
|
//#region packages/editor/src/fields/StyleSetter/icons/background-repeat/NoRepeat.vue
|
|
4
4
|
var _sfc_main = {};
|
|
5
5
|
var _hoisted_1 = {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
7
|
+
width: "10",
|
|
8
|
+
height: "10",
|
|
9
|
+
viewBox: "0 0 10 10",
|
|
10
|
+
fill: "currentColor"
|
|
8
11
|
};
|
|
9
12
|
function _sfc_render(_ctx, _cache) {
|
|
10
|
-
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [
|
|
11
|
-
d: "M912.526651 867.741144 555.540144 510.712681l356.986507-357.000833c11.171434-11.18576 11.171434-29.257348 0-40.443108-11.20111-11.18576-29.272697-11.18576-40.444131 0L515.096013 470.267527 158.096203 113.267716c-11.187807-11.159154-29.258371-11.159154-40.444131 0-11.186783 11.186783-11.186783 29.286 0 40.47176L474.623229 510.712681 117.623419 867.741144c-11.159154 11.172457-11.159154 29.216415 0 40.443108 11.18576 11.17348 29.284977 11.17348 40.47176 0l357.000833-357.027439 356.985484 357.027439c11.171434 11.17348 29.243021 11.17348 40.444131 0C923.698085 896.957559 923.725714 878.913601 912.526651 867.741144z",
|
|
12
|
-
fill: "#5D5D5D"
|
|
13
|
-
}, null, -1)])]);
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createStaticVNode("<path d=\"M0 0.625C0 0.279822 0.248731 0 0.555556 0H9.44444C9.75127 0 10 0.279822 10 0.625C10 0.970178 9.75127 1.25 9.44444 1.25H0.555556C0.248731 1.25 0 0.970178 0 0.625Z\" fill-opacity=\"0.3\"></path><path d=\"M0 9.375C0 9.02982 0.248731 8.75 0.555556 8.75H9.44444C9.75127 8.75 10 9.02982 10 9.375C10 9.72018 9.75127 10 9.44444 10H0.555556C0.248731 10 0 9.72018 0 9.375Z\" fill-opacity=\"0.3\"></path><path d=\"M0.555556 4.375C0.248731 4.375 0 4.65482 0 5C0 5.34518 0.248731 5.625 0.555556 5.625H2.87307L3.42868 4.99994L2.87318 4.375H0.555556Z\" fill-opacity=\"0.3\"></path><path d=\"M9.44444 5.625H7.12699L6.57138 4.99994L7.12688 4.375H9.44444C9.75127 4.375 10 4.65482 10 5C10 5.34518 9.75127 5.625 9.44444 5.625Z\" fill-opacity=\"0.3\"></path><path transform=\"translate(0 2.6072)\" d=\"M3.30542 0.183058C3.52237 -0.0610194 3.87413 -0.0610194 4.09109 0.183058C4.30805 0.427136 4.30805 0.822864 4.09109 1.06694L2.91256 2.39279L4.0911 3.71865C4.30806 3.96273 4.30806 4.35846 4.0911 4.60253C3.87414 4.84661 3.52239 4.84661 3.30543 4.60253L2.12688 3.27667L0.948393 4.60248C0.731435 4.84655 0.379676 4.84655 0.162719 4.60248C-0.0542395 4.3584 -0.0542395 3.96267 0.162719 3.71859L1.34121 2.39279L0.162731 1.067C-0.0542269 0.822922 -0.0542268 0.427194 0.162731 0.183116C0.379689 -0.0609612 0.731447 -0.0609612 0.948405 0.183116L2.12688 1.50891L3.30542 0.183058Z\"></path>", 5)])]);
|
|
14
14
|
}
|
|
15
15
|
var NoRepeat_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
16
16
|
//#endregion
|
|
@@ -4,10 +4,13 @@ import { createElementBlock, createStaticVNode, 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] = [createStaticVNode("<
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, [..._cache[0] || (_cache[0] = [createStaticVNode("<rect x=\"13\" y=\"3\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 13 3)\" fill-opacity=\"0.3\"></rect><rect x=\"13\" y=\"7\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 13 7)\" fill-opacity=\"0.3\"></rect><rect x=\"13\" y=\"11\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 13 11)\" fill-opacity=\"0.3\"></rect><rect x=\"9\" y=\"3\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 9 3)\"></rect><rect x=\"9\" y=\"7\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 9 7)\"></rect><rect x=\"9\" y=\"11\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 9 11)\" fill-opacity=\"0.3\"></rect><rect x=\"5\" y=\"3\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 5 3)\"></rect><rect x=\"5\" y=\"7\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 5 7)\"></rect><rect x=\"5\" y=\"11\" width=\"2\" height=\"2\" rx=\"0.5\" transform=\"rotate(90 5 11)\" fill-opacity=\"0.3\"></rect>", 9)])]);
|
|
11
14
|
}
|
|
12
15
|
var Repeat_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
13
16
|
//#endregion
|
|
@@ -4,13 +4,36 @@ 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: "3",
|
|
16
|
+
y: "3",
|
|
17
|
+
width: "2",
|
|
18
|
+
height: "10",
|
|
19
|
+
rx: "1"
|
|
20
|
+
}, null, -1),
|
|
21
|
+
createElementVNode("rect", {
|
|
22
|
+
x: "7",
|
|
23
|
+
y: "3",
|
|
24
|
+
width: "2",
|
|
25
|
+
height: "10",
|
|
26
|
+
rx: "1"
|
|
27
|
+
}, null, -1),
|
|
28
|
+
createElementVNode("rect", {
|
|
29
|
+
x: "11",
|
|
30
|
+
y: "3",
|
|
31
|
+
width: "2",
|
|
32
|
+
height: "10",
|
|
33
|
+
rx: "1",
|
|
34
|
+
"fill-opacity": "0.3"
|
|
35
|
+
}, null, -1)
|
|
36
|
+
])]);
|
|
14
37
|
}
|
|
15
38
|
var RepeatX_default = /* @__PURE__ */ _plugin_vue_export_helper_default(_sfc_main, [["render", _sfc_render]]);
|
|
16
39
|
//#endregion
|