@processmaker/modeler 1.43.14 → 1.43.16
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/modeler.common.js +84 -41
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +84 -41
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +3 -3
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/aiMessages/AiGenerateButton.vue +5 -0
- package/src/components/inspectors/PreviewPanel.vue +0 -1
- package/src/components/modeler/Modeler.vue +3 -1
package/package.json
CHANGED
|
@@ -716,7 +716,9 @@ export default {
|
|
|
716
716
|
}
|
|
717
717
|
|
|
718
718
|
if (this.isOpenPreview && !this.isOpenInspector) {
|
|
719
|
-
|
|
719
|
+
// the scaling is optimized for 1920px width. Other resolutions will be adjusted accordingly
|
|
720
|
+
const delta = screen.width / 1920;
|
|
721
|
+
this.inspectorButtonRight = 65 * delta + this.previewPanelWidth;
|
|
720
722
|
}
|
|
721
723
|
|
|
722
724
|
if (!this.isOpenPreview && !this.isOpenInspector) {
|