ts-glitter 18.3.3 → 18.3.4
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 +1 -2
- package/lowcode/Entry.ts +1 -2
- package/lowcode/cms-plugin/shopping-information.js +454 -422
- package/lowcode/cms-plugin/shopping-information.ts +468 -429
- package/lowcode/glitter-base/global/language.js +17 -0
- package/lowcode/glitter-base/global/language.ts +17 -0
- package/lowcode/glitterBundle/plugins/html-render.js +19 -1
- package/lowcode/glitterBundle/plugins/html-render.ts +40 -19
- package/lowcode/jspage/function-page/setting_editor.js +1 -1
- package/lowcode/jspage/function-page/setting_editor.ts +1 -1
- package/package.json +1 -1
package/lowcode/Entry.js
CHANGED
|
@@ -132,7 +132,7 @@ export class Entry {
|
|
|
132
132
|
}
|
|
133
133
|
window.renderClock = (_b = window.renderClock) !== null && _b !== void 0 ? _b : clockF();
|
|
134
134
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
135
|
-
glitter.share.editerVersion = 'V_18.3.
|
|
135
|
+
glitter.share.editerVersion = 'V_18.3.4';
|
|
136
136
|
glitter.share.start = new Date();
|
|
137
137
|
const vm = {
|
|
138
138
|
appConfig: [],
|
|
@@ -285,7 +285,6 @@ export class Entry {
|
|
|
285
285
|
}
|
|
286
286
|
}
|
|
287
287
|
else {
|
|
288
|
-
console.log(`normal-page=>`, window.appName);
|
|
289
288
|
Entry.toNormalRender(glitter, vm, () => {
|
|
290
289
|
Entry.checkIframe(glitter);
|
|
291
290
|
});
|
package/lowcode/Entry.ts
CHANGED
|
@@ -135,7 +135,7 @@ export class Entry {
|
|
|
135
135
|
}
|
|
136
136
|
(window as any).renderClock = (window as any).renderClock ?? clockF();
|
|
137
137
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
138
|
-
glitter.share.editerVersion = 'V_18.3.
|
|
138
|
+
glitter.share.editerVersion = 'V_18.3.4';
|
|
139
139
|
glitter.share.start = new Date();
|
|
140
140
|
const vm: {
|
|
141
141
|
appConfig: any;
|
|
@@ -293,7 +293,6 @@ export class Entry {
|
|
|
293
293
|
}
|
|
294
294
|
}
|
|
295
295
|
} else {
|
|
296
|
-
console.log(`normal-page=>`,(window as any).appName)
|
|
297
296
|
// 一般頁面
|
|
298
297
|
Entry.toNormalRender(glitter, vm, () => {
|
|
299
298
|
Entry.checkIframe(glitter);
|