ts-glitter 13.8.735 → 13.8.736
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.736';
|
|
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.736';
|
|
72
72
|
glitter.share.start = new Date();
|
|
73
73
|
const vm: {
|
|
74
74
|
appConfig: any;
|
|
@@ -156,7 +156,7 @@ transform: scale(0.4) translateX(-75%) translateY(-75%);
|
|
|
156
156
|
gvc: gvc,
|
|
157
157
|
type: 'idea'
|
|
158
158
|
}),
|
|
159
|
-
width: document.body.clientWidth <
|
|
159
|
+
width: document.body.clientWidth < 992 ? document.body.clientWidth : 800,
|
|
160
160
|
});
|
|
161
161
|
}
|
|
162
162
|
static findTemplate(gvc, def, callback) {
|
|
@@ -169,7 +169,7 @@ transform: scale(0.4) translateX(-75%) translateY(-75%);
|
|
|
169
169
|
def: def,
|
|
170
170
|
selectCallback: callback
|
|
171
171
|
}),
|
|
172
|
-
width: document.body.clientWidth <
|
|
172
|
+
width: document.body.clientWidth < 992 ? document.body.clientWidth : 800,
|
|
173
173
|
});
|
|
174
174
|
}
|
|
175
175
|
}
|
|
@@ -167,7 +167,7 @@ transform: scale(0.4) translateX(-75%) translateY(-75%);
|
|
|
167
167
|
gvc: gvc,
|
|
168
168
|
type:'idea'
|
|
169
169
|
}),
|
|
170
|
-
width: document.body.clientWidth <
|
|
170
|
+
width: document.body.clientWidth < 992 ? document.body.clientWidth : 800,
|
|
171
171
|
});
|
|
172
172
|
}
|
|
173
173
|
|
|
@@ -181,7 +181,7 @@ transform: scale(0.4) translateX(-75%) translateY(-75%);
|
|
|
181
181
|
def:def,
|
|
182
182
|
selectCallback:callback
|
|
183
183
|
}),
|
|
184
|
-
width: document.body.clientWidth <
|
|
184
|
+
width: document.body.clientWidth < 992 ? document.body.clientWidth : 800,
|
|
185
185
|
});
|
|
186
186
|
}
|
|
187
187
|
}
|
|
@@ -69,7 +69,7 @@ export class Setting_editor {
|
|
|
69
69
|
Storage.select_bg_btn = 'custom';
|
|
70
70
|
return html `
|
|
71
71
|
<div
|
|
72
|
-
class="d-flex p-3 bg-white border-bottom align-items-end d-
|
|
72
|
+
class="d-flex p-3 bg-white border-bottom align-items-end d-lg-none"
|
|
73
73
|
style="${parseInt(glitter.share.top_inset, 10) ? `padding-top:${glitter.share.top_inset}px !important;` : ``}"
|
|
74
74
|
>
|
|
75
75
|
<img src="https://d3jnmi1tfjgtti.cloudfront.net/file/252530754/1718986163099-logo.svg" />
|
|
@@ -701,7 +701,7 @@ export class Setting_editor {
|
|
|
701
701
|
Storage.select_bg_btn = 'custom';
|
|
702
702
|
return html`
|
|
703
703
|
<div
|
|
704
|
-
class="d-flex p-3 bg-white border-bottom align-items-end d-
|
|
704
|
+
class="d-flex p-3 bg-white border-bottom align-items-end d-lg-none"
|
|
705
705
|
style="${parseInt(glitter.share.top_inset, 10) ? `padding-top:${glitter.share.top_inset}px !important;` : ``}"
|
|
706
706
|
>
|
|
707
707
|
<img src="https://d3jnmi1tfjgtti.cloudfront.net/file/252530754/1718986163099-logo.svg" />
|