clickgo 3.14.0 → 3.14.1
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/clickgo.js +1 -1
- package/dist/clickgo.ts +1 -1
- package/dist/control/common.cgc +0 -0
- package/dist/lib/form.js +1 -1
- package/dist/lib/form.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Load the module loader first, and then load it using the module loader.
|
|
|
25
25
|
**index.html**
|
|
26
26
|
|
|
27
27
|
```html
|
|
28
|
-
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.7/dist/loader.min.js?path=index&npm={'clickgo':'3.14.
|
|
28
|
+
<script src="https://cdn.jsdelivr.net/npm/@litert/loader@3.5.7/dist/loader.min.js?path=index&npm={'clickgo':'3.14.1'}"></script>
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
**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.14.
|
|
27
|
+
const version = '3.14.1';
|
|
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/lib/form.js
CHANGED
|
@@ -1868,7 +1868,7 @@ function doFocusAndPopEvent(e) {
|
|
|
1868
1868
|
if (!item.tagName) {
|
|
1869
1869
|
continue;
|
|
1870
1870
|
}
|
|
1871
|
-
if (item.dataset.
|
|
1871
|
+
if (item.dataset.cgLevel !== undefined && item.dataset.cgPop === undefined) {
|
|
1872
1872
|
isCgPopOpen = item;
|
|
1873
1873
|
continue;
|
|
1874
1874
|
}
|
package/dist/lib/form.ts
CHANGED
|
@@ -2285,7 +2285,7 @@ export function showPop(el: HTMLElement | types.IVue, pop: HTMLElement | types.I
|
|
|
2285
2285
|
el.dataset.cgLevel = (popInfo.elList.length - 1).toString();
|
|
2286
2286
|
return;
|
|
2287
2287
|
}
|
|
2288
|
-
// --- 准备显示 pop
|
|
2288
|
+
// --- 准备显示 pop ---
|
|
2289
2289
|
pop.removeAttribute('data-cg-pop-none');
|
|
2290
2290
|
popInfo.list.push(pop);
|
|
2291
2291
|
popInfo.elList.push(el);
|
|
@@ -2439,7 +2439,7 @@ export function doFocusAndPopEvent(e: MouseEvent | TouchEvent): void {
|
|
|
2439
2439
|
if (!item.tagName) {
|
|
2440
2440
|
continue;
|
|
2441
2441
|
}
|
|
2442
|
-
if (item.dataset.
|
|
2442
|
+
if (item.dataset.cgLevel !== undefined && item.dataset.cgPop === undefined) {
|
|
2443
2443
|
isCgPopOpen = item;
|
|
2444
2444
|
continue;
|
|
2445
2445
|
}
|