@shijiu/jsview-vue 2.1.448-test.0 → 2.1.476-test.0
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/bin/browser/BrowserApic.vue.mjs +4 -4
- package/bin/browser/BrowserApic2.vue.mjs +4 -4
- package/bin/browser/BrowserApicLib.mjs +24 -24
- package/bin/browser/BrowserAudio.vue.mjs +8 -8
- package/bin/browser/BrowserJsvLatex.vue.mjs +27 -15
- package/bin/browser/BrowserPreload.vue.mjs +4 -4
- package/bin/browser/BrowserQrcode.vue.mjs +4 -4
- package/bin/browser/BrowserSpray.vue.mjs +4 -4
- package/bin/browser/BrowserTextureAnim.vue.mjs +4 -4
- package/bin/export-sfc.mjs +3 -3
- package/bin/jsview-vue-common.mjs +3 -3
- package/bin/jsview-vue.mjs +12053 -13883
- package/bin/types/browser/BrowserApic.vue.d.mts +33 -0
- package/bin/types/browser/BrowserApic2.vue.d.mts +16 -0
- package/bin/types/browser/BrowserApicLib.d.mts +56 -0
- package/bin/types/browser/BrowserAudio.vue.d.mts +2 -0
- package/bin/types/browser/BrowserJsvLatex.vue.d.mts +55 -0
- package/bin/types/browser/BrowserPreload.vue.d.mts +14 -0
- package/bin/types/browser/BrowserQrcode.vue.d.mts +29 -0
- package/bin/types/browser/BrowserSpray.vue.d.mts +2 -0
- package/bin/types/browser/BrowserTextureAnim.vue.d.mts +2 -0
- package/bin/types/export-sfc.d.mts +2 -0
- package/bin/types/jsview-vue-common.d.mts +23 -0
- package/bin/types/jsview-vue.d.mts +2511 -0
- package/index.d.ts +3 -4
- package/package.json +1 -1
- package/tools/config/tsconfig.json +7 -10
- package/tools/jsview-vue-build.mjs +25 -4
- package/utils/JsViewEngineWidget/MetroWidget/SlotComponent.vue +0 -1
- package/utils/JsViewPlugin/JsvAudio/AudioProxy.js +11 -3
- package/utils/JsViewPlugin/JsvAudio/JsvAudio.vue +6 -3
- package/utils/JsViewPlugin/JsvAudio/JsvAudioProxy.vue +20 -0
- package/utils/JsViewPlugin/JsvAudio/PluginLoader.js +13 -3
- package/utils/JsViewPlugin/JsvAudio/index.js +11 -16
- package/utils/JsViewPlugin/JsvLatex/BrowserJsvLatex.vue +22 -5
- package/utils/JsViewPlugin/JsvLatex/JsvLatex.vue +3 -1
- package/utils/JsViewPlugin/JsvLatex/JsvLatexProxy.vue +20 -0
- package/utils/JsViewPlugin/JsvLatex/PluginLoader.js +13 -3
- package/utils/JsViewPlugin/JsvLatex/index.js +11 -16
- package/utils/JsViewPlugin/index.js +1 -1
- package/utils/JsViewVueTools/ForgeHandles.ts +14 -0
- package/utils/JsViewVueTools/{JsvDynamicKeyFrames.js → JsvDynamicKeyFrames.ts} +2 -2
- package/utils/JsViewVueTools/JsvFederationTools.ts +35 -0
- package/utils/JsViewVueTools/JsvPreDownloader.ts +36 -37
- package/utils/JsViewVueTools/JsvTextureStore/CanvasTexture/CanvasTexture.ts +1 -1
- package/utils/JsViewVueTools/index.js +2 -1
- package/utils/JsViewVueWidget/JsvFreeMoveActor/JsvEnvBlocker.vue +4 -0
- package/utils/JsViewVueWidget/JsvMindMap/JsvMindMap.vue +1 -1
- package/utils/JsViewVueWidget/JsvQrcode/JsvQrcode.vue +2 -1
- package/utils/JsViewVueWidget/JsvSpriteAnim/FrameBuidler.ts +11 -7
- package/utils/JsViewVueWidget/JsvSpriteAnim/JsvSpriteAnim.vue +135 -61
- package/utils/JsViewVueWidget/JsvSpriteAnim/JsvSpriteTools.ts +26 -0
- package/utils/JsViewVueWidget/JsvSpriteAnim/index.js +8 -1
- package/utils/JsViewVueWidget/JsvSwiper/JsvSwiper.vue +6 -0
- package/utils/JsViewVueWidget/JsvSwiper3D/JsvSwiper.vue +1 -1
- package/bin/browser/BrowserJsvPlayer.vue.mjs +0 -573
- package/utils/JsViewEngineWidget/index.d.ts +0 -28
- package/utils/JsViewPlugin/JsvLatex/mathjax-tex-svg.txt +0 -1
- package/utils/JsViewPlugin/index.d.ts +0 -1
- package/utils/JsViewVueTools/ForgeHandles.js +0 -13
- package/utils/JsViewVueTools/index.d.ts +0 -13
- /package/utils/JsViewVueWidget/JsvSpriteAnim/{sAnimationToken.js → sAnimationToken.ts} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { reactive, watchEffect, onBeforeUnmount, openBlock, createElementBlock, createCommentVNode } from 'vue';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
//
|
|
4
|
+
// utils/JsViewVueWidget/JsvPreload/BrowserPreload.vue;
|
|
5
|
+
//
|
|
6
|
+
/*
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
*/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ref, onMounted, openBlock, createElementBlock, createElementVNode, normalizeStyle, unref } from 'vue';
|
|
2
2
|
import QRCode from 'qr.js';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
//
|
|
5
|
+
// utils/JsViewVueWidget/JsvQrcode/BrowserQrcode.vue;
|
|
6
|
+
//
|
|
7
|
+
/*
|
|
8
8
|
|
|
9
9
|
*/
|
|
10
10
|
const _sfc_main = {
|
|
@@ -2,10 +2,10 @@ import { Forge } from '@shijiu/jsview/dom/jsv-forge-define';
|
|
|
2
2
|
import { openBlock, createElementBlock, normalizeStyle } from 'vue';
|
|
3
3
|
import { _ as _export_sfc } from '../export-sfc.mjs';
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
//
|
|
6
|
+
// utils/JsViewVueWidget/JsvSpray/BrowserSpray.vue;
|
|
7
|
+
//
|
|
8
|
+
/* <!--
|
|
9
9
|
* @Author: ChenChanghua
|
|
10
10
|
* @Date: 2021-10-13 11:02:42
|
|
11
11
|
* @LastEditors: ChenChanghua
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { openBlock, createElementBlock } from 'vue';
|
|
2
2
|
import { _ as _export_sfc } from '../export-sfc.mjs';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
//
|
|
5
|
+
// utils/JsViewVueWidget/JsvTextureAnim/BrowserTextureAnim.vue;
|
|
6
|
+
//
|
|
7
|
+
/* <!--
|
|
8
8
|
* @Author: ChenChanghua
|
|
9
9
|
* @Date: 2022-02-08 09:29:17
|
|
10
10
|
* @LastEditTime: 2023-02-21 10:51:22
|
package/bin/export-sfc.mjs
CHANGED