@tmagic/editor 1.5.22 → 1.5.24
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/style.css +2 -9
- package/dist/tmagic-editor.js +3661 -1727
- package/dist/tmagic-editor.umd.cjs +3654 -1720
- package/package.json +10 -10
- package/src/Editor.vue +5 -0
- package/src/fields/DataSourceFields.vue +1 -1
- package/src/fields/DataSourceMethods.vue +1 -1
- package/src/hooks/use-filter.ts +6 -4
- package/src/hooks/use-stage.ts +1 -0
- package/src/initService.ts +65 -11
- package/src/layouts/page-bar/PageBarScrollContainer.vue +2 -1
- package/src/layouts/props-panel/FormPanel.vue +6 -1
- package/src/layouts/props-panel/PropsPanel.vue +6 -0
- package/src/layouts/workspace/viewer/Stage.vue +4 -29
- package/src/layouts/workspace/viewer/StageOverlay.vue +25 -6
- package/src/services/BaseService.ts +17 -8
- package/src/services/keybinding.ts +12 -0
- package/src/services/stageOverlay.ts +1 -1
- package/src/theme/stage.scss +6 -11
- package/src/type.ts +1 -0
- package/src/utils/props.ts +15 -1
- package/types/index.d.ts +62 -142
package/dist/style.css
CHANGED
|
@@ -1121,22 +1121,15 @@ fieldset.m-fieldset .m-form-tip {
|
|
|
1121
1121
|
width: 100%;
|
|
1122
1122
|
height: 100%;
|
|
1123
1123
|
background-color: #fff;
|
|
1124
|
-
display: flex;
|
|
1125
1124
|
z-index: 20;
|
|
1126
|
-
overflow: auto;
|
|
1127
|
-
}
|
|
1128
|
-
|
|
1129
|
-
.m-editor-stage-overlay-container {
|
|
1130
|
-
position: relative;
|
|
1131
|
-
flex-shrink: 0;
|
|
1132
|
-
margin: auto;
|
|
1133
|
-
box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
|
|
1134
1125
|
}
|
|
1135
1126
|
|
|
1136
1127
|
.m-editor-stage-overlay-close.tmagic-design-icon {
|
|
1137
1128
|
position: fixed;
|
|
1138
1129
|
right: 20px;
|
|
1139
1130
|
top: 10px;
|
|
1131
|
+
cursor: pointer;
|
|
1132
|
+
z-index: 1;
|
|
1140
1133
|
}
|
|
1141
1134
|
|
|
1142
1135
|
.m-editor-stage-float-button {
|