@shijiu/jsview-vue 1.9.825 → 1.9.837
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/BrowserDebugWidget/BrowserSpray.vue +1 -1
- package/utils/JsViewVueWidget/JsvActorMove/ActorControlBase.js +1 -1
- package/utils/JsViewVueWidget/JsvActorMove/JsvActorMoveControl.js +1 -1
- package/utils/JsViewVueWidget/JsvApic/JsvApic.vue +1 -1
- package/utils/JsViewVueWidget/JsvFilterView.vue +1 -1
- package/utils/JsViewVueWidget/JsvInput/JsvInput.vue +1 -1
- package/utils/JsViewVueWidget/JsvMarquee.vue +1 -1
- package/utils/JsViewVueWidget/JsvMaskClipDiv.vue +1 -1
- package/utils/JsViewVueWidget/JsvNativeSharedDiv.vue +1 -1
- package/utils/JsViewVueWidget/JsvPreload/JsvPreload.vue +1 -1
- package/utils/JsViewVueWidget/JsvQrcode/JsvQrcode.vue +1 -1
- package/utils/JsViewVueWidget/JsvSpray/JsvSpray.vue +1 -1
- package/utils/JsViewVueWidget/JsvSwiper/JsvSwiper.vue +1 -1
- package/utils/JsViewVueWidget/JsvTextureAnim/JsvTextureAnim.vue +1 -1
- package/utils/JsViewVueWidget/JsvTouchContainer.vue +1 -1
- package/utils/JsViewVueWidget/JsvTransparentDiv.vue +1 -1
- package/utils/JsViewVueWidget/JsvVisibleSensor/JsvVisibleSensor.vue +1 -1
- package/utils/JsViewEngineWidget/ForgeDefine.js +0 -7
package/package.json
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
|
|
183
183
|
<script setup>
|
|
184
184
|
/* eslint-disable */
|
|
185
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
185
186
|
import {
|
|
186
187
|
ref,
|
|
187
188
|
reactive,
|
|
@@ -192,7 +193,6 @@ import {
|
|
|
192
193
|
toRaw,
|
|
193
194
|
nextTick,
|
|
194
195
|
} from "vue";
|
|
195
|
-
import Forge from "../ForgeDefine";
|
|
196
196
|
import { TemplateParser, TemplateItemAdder } from "../TemplateParser";
|
|
197
197
|
import { PageUpdater } from "./PageUpdater";
|
|
198
198
|
import { SingleRangeModel } from "../RangeModel";
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
* 经测试,react中对style属性的解析性能较低,属性大量的时候非常影响性能
|
|
33
33
|
*/
|
|
34
34
|
|
|
35
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
35
36
|
import { getCssStyleGroup } from "./JsvDynamicCssStyle";
|
|
36
|
-
import { Forge } from "../../../jsview/dom/jsv-forge-define";
|
|
37
37
|
|
|
38
38
|
let sIdGenerator = 100;
|
|
39
39
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @Description: file content
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import { Forge } from "
|
|
9
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
10
10
|
import ActorControlBase from "./ActorControlBase";
|
|
11
11
|
|
|
12
12
|
const CONST_MOVE_TYPE_ACC = 1; // 抛物变速运动
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* "gray-down": 黑白滤镜(公祭日滤镜)
|
|
12
12
|
-->
|
|
13
13
|
<script setup>
|
|
14
|
-
import { Forge, ForgeExtension } from "
|
|
14
|
+
import { Forge, ForgeExtension } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
15
15
|
import { onBeforeUnmount, watchEffect } from "vue";
|
|
16
16
|
|
|
17
17
|
const props = defineProps({
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @Description: file content
|
|
7
7
|
-->
|
|
8
8
|
<script>
|
|
9
|
+
import { Forge, ForgeExtension } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
9
10
|
import { EdgeDirection } from "../../JsViewEngineWidget";
|
|
10
|
-
import { Forge, ForgeExtension } from "../../../../jsview/dom/jsv-forge-define";
|
|
11
11
|
import CursorVue from "./Cursor.vue";
|
|
12
12
|
|
|
13
13
|
const InputType = {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
* net_setting {object}: (未实现)网络加载参数,cookie, refer等,默认值 null
|
|
35
35
|
-->
|
|
36
36
|
<script>
|
|
37
|
-
import { Forge, ForgeExtension } from "
|
|
37
|
+
import { Forge, ForgeExtension } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
38
38
|
|
|
39
39
|
const CONST_FORMAT_TOKEN = "_JsvP_";
|
|
40
40
|
const buildPreloadInfo = (
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
* enableShrink {boolean} 粒子缩小开关, 默认为false
|
|
34
34
|
-->
|
|
35
35
|
<script>
|
|
36
|
-
import { Forge, ForgeExtension } from "
|
|
36
|
+
import { Forge, ForgeExtension } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
37
37
|
|
|
38
38
|
let buildForgeView = (pointRes, sprayStyle, sizeRef, ignoreClip) => {
|
|
39
39
|
if (!pointRes) {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @Description: file content
|
|
7
7
|
-->
|
|
8
8
|
<script>
|
|
9
|
-
import { Forge } from "
|
|
9
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
10
10
|
|
|
11
11
|
const DIRECTION_HORIZONTAL = Forge.DragSetting.DIRECTION_HORIZONTAL;
|
|
12
12
|
const DIRECTION_VERTICAL = Forge.DragSetting.DIRECTION_VERTICAL;
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
</template>
|
|
30
30
|
|
|
31
31
|
<script setup>
|
|
32
|
+
import { Forge } from "@shijiu/jsview/dom/jsv-forge-define";
|
|
32
33
|
import { reactive, ref, shallowRef, toRaw, watchEffect, onMounted } from 'vue'
|
|
33
|
-
import { Forge } from "../../../../jsview/dom/jsv-forge-define";
|
|
34
34
|
|
|
35
35
|
const props = defineProps({
|
|
36
36
|
// (支持reactive)可视区域设定
|