ts-glitter 13.8.744 → 13.8.745
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/lowcode/Entry.js
CHANGED
|
@@ -68,7 +68,7 @@ export class Entry {
|
|
|
68
68
|
}
|
|
69
69
|
window.renderClock = (_a = window.renderClock) !== null && _a !== void 0 ? _a : clockF();
|
|
70
70
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
71
|
-
glitter.share.editerVersion = 'V_13.8.
|
|
71
|
+
glitter.share.editerVersion = 'V_13.8.745';
|
|
72
72
|
glitter.share.start = new Date();
|
|
73
73
|
const vm = {
|
|
74
74
|
appConfig: [],
|
package/lowcode/Entry.ts
CHANGED
|
@@ -68,7 +68,7 @@ export class Entry {
|
|
|
68
68
|
}
|
|
69
69
|
(window as any).renderClock = (window as any).renderClock ?? clockF();
|
|
70
70
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
71
|
-
glitter.share.editerVersion = 'V_13.8.
|
|
71
|
+
glitter.share.editerVersion = 'V_13.8.745';
|
|
72
72
|
glitter.share.start = new Date();
|
|
73
73
|
const vm: {
|
|
74
74
|
appConfig: any;
|
|
@@ -1661,7 +1661,7 @@ ${obj.gvc.bindView({
|
|
|
1661
1661
|
${widget.visible === false ? ` hide-elem` : ``}`,
|
|
1662
1662
|
option: option.concat((() => {
|
|
1663
1663
|
if (root && isEditMode()) {
|
|
1664
|
-
if (window.parent.document.body.clientWidth <
|
|
1664
|
+
if (window.parent.document.body.clientWidth < 992) {
|
|
1665
1665
|
return [
|
|
1666
1666
|
{
|
|
1667
1667
|
key: 'onclick',
|
|
@@ -1958,7 +1958,7 @@ background: white;
|
|
|
1958
1958
|
}
|
|
1959
1959
|
else {
|
|
1960
1960
|
function getPlusAndPasteView(dir) {
|
|
1961
|
-
if (window.parent.document.body.clientWidth <
|
|
1961
|
+
if (window.parent.document.body.clientWidth < 992) {
|
|
1962
1962
|
return ``;
|
|
1963
1963
|
}
|
|
1964
1964
|
const detID = cf.gvc.glitter.getUUID();
|
|
@@ -2079,7 +2079,7 @@ transform: translateY(5px);
|
|
|
2079
2079
|
</div>`;
|
|
2080
2080
|
}
|
|
2081
2081
|
return html `
|
|
2082
|
-
${cf.gvc.glitter.document.body.clientWidth >
|
|
2082
|
+
${cf.gvc.glitter.document.body.clientWidth > 992
|
|
2083
2083
|
? `<div
|
|
2084
2084
|
class="position-absolute align-items-center justify-content-center px-3 fw-500 fs-6 badge_it"
|
|
2085
2085
|
style="height:22px;left:-2px;top:-22px;background: linear-gradient(143deg, #FFB400 -22.7%, #FF6C02 114.57%);color:white;white-space: nowrap;"
|
|
@@ -2122,7 +2122,7 @@ ${e.line}
|
|
|
2122
2122
|
option: option.concat(
|
|
2123
2123
|
(() => {
|
|
2124
2124
|
if (root && isEditMode()) {
|
|
2125
|
-
if ((window.parent as any).document.body.clientWidth <
|
|
2125
|
+
if ((window.parent as any).document.body.clientWidth < 992) {
|
|
2126
2126
|
return [
|
|
2127
2127
|
{
|
|
2128
2128
|
key: 'onclick',
|
|
@@ -2442,7 +2442,7 @@ background: white;
|
|
|
2442
2442
|
`;
|
|
2443
2443
|
} else {
|
|
2444
2444
|
function getPlusAndPasteView(dir: number) {
|
|
2445
|
-
if ((window.parent as any).document.body.clientWidth <
|
|
2445
|
+
if ((window.parent as any).document.body.clientWidth < 992) {
|
|
2446
2446
|
return ``;
|
|
2447
2447
|
}
|
|
2448
2448
|
const detID = cf.gvc.glitter.getUUID();
|
|
@@ -2566,7 +2566,7 @@ transform: translateY(5px);
|
|
|
2566
2566
|
}
|
|
2567
2567
|
|
|
2568
2568
|
return html`
|
|
2569
|
-
${cf.gvc.glitter.document.body.clientWidth >
|
|
2569
|
+
${cf.gvc.glitter.document.body.clientWidth > 992
|
|
2570
2570
|
? `<div
|
|
2571
2571
|
class="position-absolute align-items-center justify-content-center px-3 fw-500 fs-6 badge_it"
|
|
2572
2572
|
style="height:22px;left:-2px;top:-22px;background: linear-gradient(143deg, #FFB400 -22.7%, #FF6C02 114.57%);color:white;white-space: nowrap;"
|