clickgo 3.11.8 → 3.11.9
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/README.md +1 -1
- package/dist/app/demo/form/control/group/group.xml +1 -0
- package/dist/clickgo.js +1 -1
- package/dist/clickgo.ts +1 -1
- package/dist/control/common.cgc +0 -0
- package/dist/control/monaco.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/index.ts +1 -1
- package/dist/lib/core.js +1 -1
- package/dist/lib/core.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Load the module loader first, and then load it using the module loader.
|
|
|
28
28
|
**index.html**
|
|
29
29
|
|
|
30
30
|
```html
|
|
31
|
-
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.1/dist/loader.min.js?path=index&npm={'clickgo':'3.11.
|
|
31
|
+
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.1/dist/loader.min.js?path=index&npm={'clickgo':'3.11.9'}"></script>
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
**index.js**
|
package/dist/clickgo.js
CHANGED
|
@@ -24,7 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.zip = exports.tool = exports.theme = exports.task = exports.storage = exports.native = exports.fs = exports.form = exports.dom = exports.core = exports.control = exports.vue = exports.hasFrame = exports.isImmersion = exports.getPlatform = exports.isNative = exports.getVersion = void 0;
|
|
27
|
-
const version = '3.11.
|
|
27
|
+
const version = '3.11.9';
|
|
28
28
|
function getVersion() {
|
|
29
29
|
return version;
|
|
30
30
|
}
|
package/dist/clickgo.ts
CHANGED
package/dist/control/common.cgc
CHANGED
|
Binary file
|
package/dist/control/monaco.cgc
CHANGED
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -101,7 +101,7 @@ function launcher(boot) {
|
|
|
101
101
|
var _a;
|
|
102
102
|
return __awaiter(this, void 0, void 0, function* () {
|
|
103
103
|
const paths = [
|
|
104
|
-
loader.cdn + '/npm/vue@3.4.
|
|
104
|
+
loader.cdn + '/npm/vue@3.4.20/dist/vue.global.prod.min.js'
|
|
105
105
|
];
|
|
106
106
|
let ro = true;
|
|
107
107
|
if (!(window.ResizeObserver)) {
|
package/dist/index.ts
CHANGED
|
@@ -176,7 +176,7 @@ export function launcher(boot: AbstractBoot): void {
|
|
|
176
176
|
(async function() {
|
|
177
177
|
// --- 通过标签加载库 ---
|
|
178
178
|
const paths: string[] = [
|
|
179
|
-
loader.cdn + '/npm/vue@3.4.
|
|
179
|
+
loader.cdn + '/npm/vue@3.4.20/dist/vue.global.prod.min.js'
|
|
180
180
|
];
|
|
181
181
|
// --- 判断 ResizeObserver 是否存在 ---
|
|
182
182
|
let ro = true;
|
package/dist/lib/core.js
CHANGED
|
@@ -194,7 +194,7 @@ const modules = {
|
|
|
194
194
|
func: function () {
|
|
195
195
|
return __awaiter(this, void 0, void 0, function* () {
|
|
196
196
|
return new Promise(function (resolve, reject) {
|
|
197
|
-
fetch(loader.cdn + '/npm/monaco-editor@0.
|
|
197
|
+
fetch(loader.cdn + '/npm/monaco-editor@0.46.0/min/vs/loader.js').then(function (r) {
|
|
198
198
|
return r.blob();
|
|
199
199
|
}).then(function (b) {
|
|
200
200
|
return tool.blob2DataUrl(b);
|
package/dist/lib/core.ts
CHANGED
|
@@ -268,7 +268,7 @@ const modules: Record<string, {
|
|
|
268
268
|
'monaco': {
|
|
269
269
|
func: async function() {
|
|
270
270
|
return new Promise(function(resolve, reject) {
|
|
271
|
-
fetch(loader.cdn + '/npm/monaco-editor@0.
|
|
271
|
+
fetch(loader.cdn + '/npm/monaco-editor@0.46.0/min/vs/loader.js').then(function(r) {
|
|
272
272
|
return r.blob();
|
|
273
273
|
}).then(function(b) {
|
|
274
274
|
return tool.blob2DataUrl(b);
|