@shijiu/jsview-vue 1.9.863 → 1.9.868
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/package.json +1 -1
- package/utils/JsViewEngineWidget/MetroWidget/MetroWidget.vue +1 -1
- package/utils/JsViewVueTools/JsvImpactTracer.js +1 -1
- package/utils/JsViewVueTools/JsvStyleClass.js +1 -1
- package/utils/JsViewVueWidget/JsvSwiper/JsvSwiper.vue +1 -1
- package/utils/JsViewVueWidget/JsvTextureAnim/JsvTextureAnim.vue +1 -1
- package/utils/JsViewVueWidget/JsvVisibleSensor/JsvVisibleSensor.vue +1 -1
- package/utils/JsViewVueWidget/index.js +5 -0
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
* 经测试,react中对style属性的解析性能较低,属性大量的时候非常影响性能
|
|
33
33
|
*/
|
|
34
34
|
|
|
35
|
-
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define"
|
|
35
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define"
|
|
36
36
|
import { getCssStyleGroup } from "./JsvDynamicCssStyle";
|
|
37
37
|
|
|
38
38
|
let sIdGenerator = 100;
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
</template>
|
|
30
30
|
|
|
31
31
|
<script setup>
|
|
32
|
-
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define"
|
|
32
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define"
|
|
33
33
|
import { reactive, ref, shallowRef, toRaw, watchEffect, onMounted } from 'vue'
|
|
34
34
|
|
|
35
35
|
const props = defineProps({
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
* @LastEditTime: 2022-11-23 14:06:24
|
|
6
6
|
* @Description: file content
|
|
7
7
|
*/
|
|
8
|
+
|
|
9
|
+
// 动态import可以拆解JsvDynamicKeyFrames为单独的chunk?
|
|
10
|
+
// 解决ModuleFederation中BrowserDebugWidget依赖导致的循环import的问题。
|
|
11
|
+
import("./BrowserDebugWidget/WidgetWrapper.js");
|
|
12
|
+
|
|
8
13
|
export { default as JsvActorMove, JsvActorMoveControl } from "./JsvActorMove";
|
|
9
14
|
export { default as JsvApic, LoopType } from "./JsvApic";
|
|
10
15
|
export { default as JsvInput, InputType } from "./JsvInput";
|