@shijiu/jsview-vue 2.2.426-test.0 → 2.3.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.
Files changed (86) hide show
  1. package/bin/jsview-vue-common.mjs +1 -1
  2. package/bin/jsview-vue.mjs +7506 -6980
  3. package/bin/types/utils/JsViewEngineWidget/JsvFocus/JsvFocusManager.d.ts +11 -2
  4. package/bin/types/utils/JsViewEngineWidget/MetroWidget/DebugFrame.vue.d.ts +8 -0
  5. package/bin/types/utils/JsViewEngineWidget/MetroWidget/DebugTools.d.ts +5 -0
  6. package/bin/types/utils/JsViewEngineWidget/MetroWidget/ListWidget.vue.d.ts +24 -6
  7. package/bin/types/utils/JsViewEngineWidget/MetroWidget/MetroWidget.vue.d.ts +24 -6
  8. package/bin/types/utils/JsViewEngineWidget/MetroWidget/MetroWidgetSetup.d.ts +9 -2
  9. package/bin/types/utils/JsViewEngineWidget/MetroWidget/RenderItem.d.ts +3 -0
  10. package/bin/types/utils/JsViewPlugin/JsvAudio/version.d.mts +1 -0
  11. package/bin/types/utils/JsViewPlugin/JsvAudio/version.d.ts +1 -0
  12. package/bin/types/utils/JsViewPlugin/JsvLatex/BrowserJsvLatex.vue.d.ts +1 -1
  13. package/bin/types/utils/JsViewPlugin/JsvLatex/JsvLatex.vue.d.ts +1 -1
  14. package/bin/types/utils/JsViewPlugin/JsvPlayer/AckEventDefine.d.ts +10 -0
  15. package/bin/types/utils/JsViewPlugin/JsvPlayer/BrowserJsvPlayer.vue.d.ts +1 -2
  16. package/bin/types/utils/JsViewPlugin/JsvPlayer/JsvMedia.d.ts +2 -2
  17. package/bin/types/utils/JsViewVueTools/JsvRuntimeBridge.d.ts +6 -0
  18. package/bin/types/utils/JsViewVueTools/JsvTextureStore/CanvasTexture/Path.d.ts +21 -0
  19. package/bin/types/utils/JsViewVueTools/JsvTextureStore/JsvTextureStore.d.ts +1 -1
  20. package/bin/types/utils/JsViewVueTools/index.d.ts +0 -1
  21. package/bin/types/utils/JsViewVueWidget/Jsv3dDiv.vue.d.ts +120 -0
  22. package/bin/types/utils/JsViewVueWidget/Jsv3dStage.vue.d.ts +144 -0
  23. package/bin/types/utils/JsViewVueWidget/JsvApic/JsvApic/index.d.ts +50 -2
  24. package/bin/types/utils/JsViewVueWidget/JsvApic/JsvApic2/index.d.ts +23 -2
  25. package/bin/types/utils/JsViewVueWidget/JsvDriftScope/JsvDriftScope.vue.d.ts +4 -4
  26. package/bin/types/utils/JsViewVueWidget/JsvFilterView.vue.d.ts +3 -3
  27. package/bin/types/utils/JsViewVueWidget/JsvFlexCell/JsvFullScrAdjust.vue.d.ts +78 -0
  28. package/bin/types/utils/JsViewVueWidget/JsvFlexCell/index.d.ts +1 -0
  29. package/bin/types/utils/JsViewVueWidget/JsvFreeMoveActor/FreeMoveActor.vue.d.ts +3 -3
  30. package/bin/types/utils/JsViewVueWidget/JsvFreeMoveActor/JsvEnvBlocker.vue.d.ts +3 -3
  31. package/bin/types/utils/JsViewVueWidget/JsvFreeMoveActor/SetState.d.ts +1 -0
  32. package/bin/types/utils/JsViewVueWidget/JsvInput/Cursor.vue.d.ts +1 -1
  33. package/bin/types/utils/JsViewVueWidget/JsvMindMap/JsvMindMap.vue.d.ts +3 -3
  34. package/bin/types/utils/JsViewVueWidget/JsvNinePatch.vue.d.ts +4 -4
  35. package/bin/types/utils/JsViewVueWidget/JsvPosterDiv.vue.d.ts +3 -0
  36. package/bin/types/utils/JsViewVueWidget/JsvPosterImage.vue.d.ts +3 -0
  37. package/bin/types/utils/JsViewVueWidget/JsvRipple/JsvRipple.vue.d.ts +3 -3
  38. package/bin/types/utils/JsViewVueWidget/JsvSpray/JsvSpray.vue.d.ts +10 -37
  39. package/bin/types/utils/JsViewVueWidget/JsvSpriteAnim/JsvSpriteAnim.vue.d.ts +1 -1
  40. package/bin/types/utils/JsViewVueWidget/JsvSwiper/JsvSwiper.vue.d.ts +1 -1
  41. package/bin/types/utils/JsViewVueWidget/JsvSwiper3D/JsvSwiper.vue.d.ts +3 -3
  42. package/bin/types/utils/JsViewVueWidget/JsvTextureAnim/JsvTextureAnim.vue.d.ts +3 -2
  43. package/bin/types/utils/JsViewVueWidget/JsvVisibleSensor/JsvVisibleSensor.vue.d.ts +3 -3
  44. package/bin/types/utils/JsViewVueWidget/JsvVisibleSensor/index.d.ts +3 -3
  45. package/bin/types/utils/JsViewVueWidget/index.d.ts +2 -0
  46. package/package.json +1 -1
  47. package/utils/JsViewEngineWidget/CheckType.js +3 -3
  48. package/utils/JsViewEngineWidget/JsvFocus/JsvFocusBlock.vue +25 -6
  49. package/utils/JsViewEngineWidget/JsvFocus/JsvFocusManager.ts +22 -3
  50. package/utils/JsViewEngineWidget/MetroWidget/DebugFrame.vue +22 -0
  51. package/utils/JsViewEngineWidget/MetroWidget/DebugTools.ts +37 -0
  52. package/utils/JsViewEngineWidget/MetroWidget/ListWidget.vue +42 -7
  53. package/utils/JsViewEngineWidget/MetroWidget/MetroWidget.vue +62 -10
  54. package/utils/JsViewEngineWidget/MetroWidget/MetroWidgetSetup.js +205 -91
  55. package/utils/JsViewEngineWidget/MetroWidget/RenderItem.ts +30 -0
  56. package/utils/JsViewPlugin/JsvAudio/version.js +1 -1
  57. package/utils/JsViewPlugin/JsvAudio/version.mjs +1 -1
  58. package/utils/JsViewPlugin/JsvPlayer/AckEventDefine.ts +82 -0
  59. package/utils/JsViewPlugin/JsvPlayer/BrowserJsvPlayer.vue +49 -31
  60. package/utils/JsViewVueTools/JsvRuntimeBridge.js +12 -3
  61. package/utils/JsViewVueTools/JsvTextureStore/CanvasTexture/Path.ts +38 -2
  62. package/utils/JsViewVueTools/JsvTextureStore/JsvTextureStore.ts +1 -1
  63. package/utils/JsViewVueTools/index.js +0 -1
  64. package/utils/JsViewVueWidget/Jsv3dDiv.vue +85 -0
  65. package/utils/JsViewVueWidget/Jsv3dStage.vue +50 -0
  66. package/utils/JsViewVueWidget/JsvApic/JsvApic/index.js +1 -8
  67. package/utils/JsViewVueWidget/JsvApic/JsvApic2/index.js +1 -8
  68. package/utils/JsViewVueWidget/JsvFlexCell/JsvFlexDiv.vue +1 -1
  69. package/utils/JsViewVueWidget/JsvFlexCell/JsvFullScrAdjust.vue +151 -0
  70. package/utils/JsViewVueWidget/JsvFlexCell/JsvScreenFlex.vue +2 -2
  71. package/utils/JsViewVueWidget/JsvFlexCell/index.js +1 -0
  72. package/utils/JsViewVueWidget/JsvFreeMoveActor/SetState.ts +8 -0
  73. package/utils/JsViewVueWidget/JsvInput/EditViewOperator.ts +1 -1
  74. package/utils/JsViewVueWidget/JsvMaskClipDiv.vue +0 -9
  75. package/utils/JsViewVueWidget/JsvNativeSharedDiv.vue +57 -71
  76. package/utils/JsViewVueWidget/JsvPosterDiv.vue +15 -8
  77. package/utils/JsViewVueWidget/JsvPosterImage.vue +11 -1
  78. package/utils/JsViewVueWidget/JsvQrcode/JsvQrcode.vue +1 -1
  79. package/utils/JsViewVueWidget/JsvSpray/JsvSpray.vue +99 -61
  80. package/utils/JsViewVueWidget/JsvTextureAnim/JsvTextureAnim.vue +48 -48
  81. package/utils/JsViewVueWidget/index.js +2 -0
  82. package/bin/browser/BrowserApic.vue.mjs +0 -114
  83. package/bin/browser/BrowserApic2.vue.mjs +0 -108
  84. package/bin/browser/BrowserApicLib.mjs +0 -431
  85. package/bin/types/utils/JsViewVueTools/JsvDemoTester.d.ts +0 -2
  86. package/utils/JsViewVueTools/JsvDemoTester.js +0 -81
@@ -1,2 +1,50 @@
1
- export default _JsvApic;
2
- declare let _JsvApic: any;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ src: StringConstructor;
3
+ style: ObjectConstructor;
4
+ autoPlay: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ loopType: {
9
+ type: NumberConstructor;
10
+ default: number;
11
+ };
12
+ loopInfo: {
13
+ type: ArrayConstructor;
14
+ default: () => number[][];
15
+ };
16
+ onStart: FunctionConstructor;
17
+ onEnd: FunctionConstructor;
18
+ onLoad: FunctionConstructor;
19
+ }, {
20
+ element: {};
21
+ }, {
22
+ onStartId: number;
23
+ onEndId: number;
24
+ }, {}, {
25
+ play(): void;
26
+ stop(frameCount?: number): void;
27
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
28
+ src: StringConstructor;
29
+ style: ObjectConstructor;
30
+ autoPlay: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ loopType: {
35
+ type: NumberConstructor;
36
+ default: number;
37
+ };
38
+ loopInfo: {
39
+ type: ArrayConstructor;
40
+ default: () => number[][];
41
+ };
42
+ onStart: FunctionConstructor;
43
+ onEnd: FunctionConstructor;
44
+ onLoad: FunctionConstructor;
45
+ }>>, {
46
+ autoPlay: boolean;
47
+ loopType: number;
48
+ loopInfo: unknown[];
49
+ }>;
50
+ export default _default;
@@ -1,2 +1,23 @@
1
- export default _JsvApic2;
2
- declare let _JsvApic2: any;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ src: StringConstructor;
3
+ style: ObjectConstructor;
4
+ onStart: FunctionConstructor;
5
+ onEnd: FunctionConstructor;
6
+ onLoad: FunctionConstructor;
7
+ }, {
8
+ element: {};
9
+ }, {
10
+ onStartId: number;
11
+ onEndId: number;
12
+ }, {}, {
13
+ show(frameIndex?: number): void;
14
+ play(loopType: any, loopInfo: any, endState: any): void;
15
+ stop(frameCount?: number): void;
16
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
+ src: StringConstructor;
18
+ style: ObjectConstructor;
19
+ onStart: FunctionConstructor;
20
+ onEnd: FunctionConstructor;
21
+ onLoad: FunctionConstructor;
22
+ }>>, {}>;
23
+ export default _default;
@@ -3,8 +3,8 @@ declare const _default: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
- left: number;
7
6
  top: number;
7
+ left: number;
8
8
  }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
9
  top?: number | undefined;
10
10
  left?: number | undefined;
@@ -13,7 +13,7 @@ declare const _default: {
13
13
  }>, {
14
14
  top: number;
15
15
  left: number;
16
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "left" | "top">;
16
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "top" | "left">;
17
17
  $attrs: {
18
18
  [x: string]: unknown;
19
19
  };
@@ -36,8 +36,8 @@ declare const _default: {
36
36
  top: number;
37
37
  left: number;
38
38
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
39
- left: number;
40
39
  top: number;
40
+ left: number;
41
41
  }, {}, string> & {
42
42
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
43
43
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -79,8 +79,8 @@ declare const _default: {
79
79
  top: number;
80
80
  left: number;
81
81
  }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
82
- left: number;
83
82
  top: number;
83
+ left: number;
84
84
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
85
85
  $slots: {
86
86
  Scene: (_: {}) => any;
@@ -18,8 +18,8 @@ declare const _default: {
18
18
  $el: any;
19
19
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
20
  $props: {
21
- readonly left?: number | undefined;
22
21
  readonly top?: number | undefined;
22
+ readonly left?: number | undefined;
23
23
  readonly filterType?: string | undefined;
24
24
  readonly width?: number | undefined;
25
25
  readonly height?: number | undefined;
@@ -46,8 +46,8 @@ declare const _default: {
46
46
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
47
47
  } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
48
48
  $props: {
49
- readonly left?: number | undefined;
50
49
  readonly top?: number | undefined;
50
+ readonly left?: number | undefined;
51
51
  readonly filterType?: string | undefined;
52
52
  readonly width?: number | undefined;
53
53
  readonly height?: number | undefined;
@@ -58,8 +58,8 @@ declare const _default: {
58
58
  __isSuspense?: undefined;
59
59
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
60
60
  $props: {
61
- readonly left?: number | undefined;
62
61
  readonly top?: number | undefined;
62
+ readonly left?: number | undefined;
63
63
  readonly filterType?: string | undefined;
64
64
  readonly width?: number | undefined;
65
65
  readonly height?: number | undefined;
@@ -0,0 +1,78 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot | undefined;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
+ getWidth: () => any;
21
+ getHeight: () => any;
22
+ $props: {
23
+ readonly background?: string | undefined;
24
+ readonly askSize?: boolean | undefined;
25
+ readonly onSized?: Function | undefined;
26
+ readonly childWidth?: number | undefined;
27
+ readonly childHeight?: number | undefined;
28
+ };
29
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
30
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
31
+ created?: ((() => void) | (() => void)[]) | undefined;
32
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
33
+ mounted?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
35
+ updated?: ((() => void) | (() => void)[]) | undefined;
36
+ activated?: ((() => void) | (() => void)[]) | undefined;
37
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
38
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
39
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
40
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
41
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
42
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
43
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
44
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
45
+ };
46
+ $forceUpdate: () => void;
47
+ $nextTick: typeof import("vue").nextTick;
48
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
49
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
50
+ getWidth: () => any;
51
+ getHeight: () => any;
52
+ $props: {
53
+ readonly background?: string | undefined;
54
+ readonly askSize?: boolean | undefined;
55
+ readonly onSized?: Function | undefined;
56
+ readonly childWidth?: number | undefined;
57
+ readonly childHeight?: number | undefined;
58
+ };
59
+ }> & {} & import("vue").ComponentCustomProperties & {};
60
+ __isFragment?: undefined;
61
+ __isTeleport?: undefined;
62
+ __isSuspense?: undefined;
63
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
64
+ getWidth: () => any;
65
+ getHeight: () => any;
66
+ $props: {
67
+ readonly background?: string | undefined;
68
+ readonly askSize?: boolean | undefined;
69
+ readonly onSized?: Function | undefined;
70
+ readonly childWidth?: number | undefined;
71
+ readonly childHeight?: number | undefined;
72
+ };
73
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
74
+ $slots: {
75
+ default: (_: {}) => any;
76
+ };
77
+ });
78
+ export default _default;
@@ -1,2 +1,3 @@
1
1
  export { default as JsvFlexDiv } from "./JsvFlexDiv.vue";
2
2
  export { default as JsvScreenFlex } from "./JsvScreenFlex.vue";
3
+ export { default as JsvFullScrAdjust } from "./JsvFullScrAdjust.vue";
@@ -20,8 +20,8 @@ declare const _default: {
20
20
  control: any;
21
21
  $props: {
22
22
  readonly style?: Record<string, any> | undefined;
23
- readonly left?: number | undefined;
24
23
  readonly top?: number | undefined;
24
+ readonly left?: number | undefined;
25
25
  readonly width?: number | undefined;
26
26
  readonly height?: number | undefined;
27
27
  readonly sizeMode?: boolean | undefined;
@@ -50,8 +50,8 @@ declare const _default: {
50
50
  control: any;
51
51
  $props: {
52
52
  readonly style?: Record<string, any> | undefined;
53
- readonly left?: number | undefined;
54
53
  readonly top?: number | undefined;
54
+ readonly left?: number | undefined;
55
55
  readonly width?: number | undefined;
56
56
  readonly height?: number | undefined;
57
57
  readonly sizeMode?: boolean | undefined;
@@ -64,8 +64,8 @@ declare const _default: {
64
64
  control: any;
65
65
  $props: {
66
66
  readonly style?: Record<string, any> | undefined;
67
- readonly left?: number | undefined;
68
67
  readonly top?: number | undefined;
68
+ readonly left?: number | undefined;
69
69
  readonly width?: number | undefined;
70
70
  readonly height?: number | undefined;
71
71
  readonly sizeMode?: boolean | undefined;
@@ -18,8 +18,8 @@ declare const _default: {
18
18
  $el: any;
19
19
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
20
  $props: {
21
- readonly left?: number | undefined;
22
21
  readonly top?: number | undefined;
22
+ readonly left?: number | undefined;
23
23
  readonly enable?: boolean | undefined;
24
24
  readonly width?: number | undefined;
25
25
  readonly height?: number | undefined;
@@ -50,8 +50,8 @@ declare const _default: {
50
50
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
51
51
  } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
52
52
  $props: {
53
- readonly left?: number | undefined;
54
53
  readonly top?: number | undefined;
54
+ readonly left?: number | undefined;
55
55
  readonly enable?: boolean | undefined;
56
56
  readonly width?: number | undefined;
57
57
  readonly height?: number | undefined;
@@ -66,8 +66,8 @@ declare const _default: {
66
66
  __isSuspense?: undefined;
67
67
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
68
68
  $props: {
69
- readonly left?: number | undefined;
70
69
  readonly top?: number | undefined;
70
+ readonly left?: number | undefined;
71
71
  readonly enable?: boolean | undefined;
72
72
  readonly width?: number | undefined;
73
73
  readonly height?: number | undefined;
@@ -4,6 +4,7 @@ declare class StatePackBuilder {
4
4
  constructor();
5
5
  clearAllConditions(): Object;
6
6
  removeConditionByGroup(group: number): Object;
7
+ removeConditionByName(specName: String): any;
7
8
  /**
8
9
  * activeCondition
9
10
  * 重新激活对应gid或者specName的condition
@@ -2,8 +2,8 @@ declare const _default: import("vue").DefineComponent<{}, {
2
2
  startBlink: () => void;
3
3
  stopBlink: (show: any) => void;
4
4
  $props: {
5
- readonly left?: number | undefined;
6
5
  readonly top?: number | undefined;
6
+ readonly left?: number | undefined;
7
7
  readonly width?: number | undefined;
8
8
  readonly height?: number | undefined;
9
9
  readonly color?: string | undefined;
@@ -32,8 +32,8 @@ declare const _default: {
32
32
  setSensor: (callback: any, sensitivity?: number) => void;
33
33
  $props: {
34
34
  readonly name?: string | undefined;
35
- readonly left?: number | undefined;
36
35
  readonly top?: number | undefined;
36
+ readonly left?: number | undefined;
37
37
  readonly width?: number | undefined;
38
38
  readonly height?: number | undefined;
39
39
  readonly provideData?: Function | undefined;
@@ -80,8 +80,8 @@ declare const _default: {
80
80
  setSensor: (callback: any, sensitivity?: number) => void;
81
81
  $props: {
82
82
  readonly name?: string | undefined;
83
- readonly left?: number | undefined;
84
83
  readonly top?: number | undefined;
84
+ readonly left?: number | undefined;
85
85
  readonly width?: number | undefined;
86
86
  readonly height?: number | undefined;
87
87
  readonly provideData?: Function | undefined;
@@ -112,8 +112,8 @@ declare const _default: {
112
112
  setSensor: (callback: any, sensitivity?: number) => void;
113
113
  $props: {
114
114
  readonly name?: string | undefined;
115
- readonly left?: number | undefined;
116
115
  readonly top?: number | undefined;
116
+ readonly left?: number | undefined;
117
117
  readonly width?: number | undefined;
118
118
  readonly height?: number | undefined;
119
119
  readonly provideData?: Function | undefined;
@@ -1,10 +1,10 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  $props: {
3
3
  readonly style?: Record<string, any> | undefined;
4
- readonly left?: number | undefined;
5
4
  readonly top?: number | undefined;
6
- readonly imageUrl?: string | undefined;
5
+ readonly left?: number | undefined;
7
6
  readonly waitForInit?: boolean | undefined;
7
+ readonly imageUrl?: string | undefined;
8
8
  readonly imageWidth?: number | undefined;
9
9
  readonly imageDspWidth?: number | undefined;
10
10
  readonly contentWidth?: number | undefined;
@@ -13,9 +13,9 @@ declare const _default: import("vue").DefineComponent<{}, {
13
13
  readonly animTime?: number | undefined;
14
14
  readonly imageBlendType?: string | undefined;
15
15
  readonly onDivRef?: Function | undefined;
16
- readonly animation?: string | undefined;
17
- readonly onAnimationEnd?: Function | undefined;
18
16
  readonly onTransitionEnd?: Function | undefined;
17
+ readonly onAnimationEnd?: Function | undefined;
18
+ readonly animation?: string | undefined;
19
19
  };
20
20
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
21
21
  export default _default;
@@ -18,6 +18,7 @@ declare const _default: {
18
18
  $el: any;
19
19
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
20
  $props: {
21
+ readonly enableAA?: boolean | undefined;
21
22
  readonly style?: Record<string, any> | undefined;
22
23
  };
23
24
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
@@ -42,6 +43,7 @@ declare const _default: {
42
43
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
43
44
  } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
44
45
  $props: {
46
+ readonly enableAA?: boolean | undefined;
45
47
  readonly style?: Record<string, any> | undefined;
46
48
  };
47
49
  }> & {} & import("vue").ComponentCustomProperties & {};
@@ -50,6 +52,7 @@ declare const _default: {
50
52
  __isSuspense?: undefined;
51
53
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
52
54
  $props: {
55
+ readonly enableAA?: boolean | undefined;
53
56
  readonly style?: Record<string, any> | undefined;
54
57
  };
55
58
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -19,6 +19,7 @@ declare const _default: {
19
19
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
20
  $props: {
21
21
  readonly src?: string | undefined;
22
+ readonly enableAA?: boolean | undefined;
22
23
  readonly colorSpace?: string | undefined;
23
24
  readonly imageCompress?: boolean | undefined;
24
25
  readonly isPosterImage?: boolean | undefined;
@@ -48,6 +49,7 @@ declare const _default: {
48
49
  } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
49
50
  $props: {
50
51
  readonly src?: string | undefined;
52
+ readonly enableAA?: boolean | undefined;
51
53
  readonly colorSpace?: string | undefined;
52
54
  readonly imageCompress?: boolean | undefined;
53
55
  readonly isPosterImage?: boolean | undefined;
@@ -61,6 +63,7 @@ declare const _default: {
61
63
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
62
64
  $props: {
63
65
  readonly src?: string | undefined;
66
+ readonly enableAA?: boolean | undefined;
64
67
  readonly colorSpace?: string | undefined;
65
68
  readonly imageCompress?: boolean | undefined;
66
69
  readonly isPosterImage?: boolean | undefined;
@@ -22,8 +22,8 @@ declare const _default: {
22
22
  }, mediumParams?: {}) => any;
23
23
  removeSource: (id: any) => void;
24
24
  $props: {
25
- readonly left?: number | undefined;
26
25
  readonly top?: number | undefined;
26
+ readonly left?: number | undefined;
27
27
  readonly enable?: boolean | undefined;
28
28
  readonly width?: number | undefined;
29
29
  readonly height?: number | undefined;
@@ -54,8 +54,8 @@ declare const _default: {
54
54
  }, mediumParams?: {}) => any;
55
55
  removeSource: (id: any) => void;
56
56
  $props: {
57
- readonly left?: number | undefined;
58
57
  readonly top?: number | undefined;
58
+ readonly left?: number | undefined;
59
59
  readonly enable?: boolean | undefined;
60
60
  readonly width?: number | undefined;
61
61
  readonly height?: number | undefined;
@@ -70,8 +70,8 @@ declare const _default: {
70
70
  }, mediumParams?: {}) => any;
71
71
  removeSource: (id: any) => void;
72
72
  $props: {
73
- readonly left?: number | undefined;
74
73
  readonly top?: number | undefined;
74
+ readonly left?: number | undefined;
75
75
  readonly enable?: boolean | undefined;
76
76
  readonly width?: number | undefined;
77
77
  readonly height?: number | undefined;
@@ -1,38 +1,11 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- pointRes: {
3
- type: StringConstructor;
4
- required: true;
5
- };
6
- sprayStyle: {
7
- type: ObjectConstructor;
8
- required: true;
9
- };
10
- ignoreClip: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- }, any, {
15
- size: {
16
- width: number;
17
- height: number;
18
- };
19
- viewId: number;
20
- }, {}, {
21
- unloadView(): void;
22
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
- pointRes: {
24
- type: StringConstructor;
25
- required: true;
26
- };
27
- sprayStyle: {
28
- type: ObjectConstructor;
29
- required: true;
30
- };
31
- ignoreClip: {
32
- type: BooleanConstructor;
33
- default: boolean;
34
- };
35
- }>>, {
36
- ignoreClip: boolean;
37
- }>;
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ start: () => void;
3
+ stop: (immediate: any) => void;
4
+ $props: {
5
+ readonly pointRes?: string | undefined;
6
+ readonly sprayStyle?: Record<string, any> | undefined;
7
+ readonly ignoreClip?: boolean | undefined;
8
+ readonly onStop?: Function | undefined;
9
+ };
10
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
38
11
  export default _default;
@@ -6,10 +6,10 @@ declare const _default: import("vue").DefineComponent<{}, {
6
6
  readonly duration?: number | undefined;
7
7
  readonly loop?: string | number | undefined;
8
8
  readonly autostart?: string | boolean | undefined;
9
+ readonly imageUrl?: string | undefined;
9
10
  readonly spriteInfo?: Record<string, any> | undefined;
10
11
  readonly viewSize?: Record<string, any> | undefined;
11
12
  readonly spriteFrameSize?: Record<string, any> | undefined;
12
- readonly imageUrl?: string | undefined;
13
13
  readonly onAnimEnd?: Function | undefined;
14
14
  readonly controller?: Record<string, any> | undefined;
15
15
  readonly spriteName?: string | undefined;
@@ -192,8 +192,8 @@ declare const _default: import("vue").DefineComponent<{
192
192
  default: boolean;
193
193
  };
194
194
  }>>, {
195
- vertical: boolean;
196
195
  animation: Record<string, any>;
196
+ vertical: boolean;
197
197
  showIndicator: boolean;
198
198
  dotSize: number;
199
199
  dotGap: number;
@@ -21,9 +21,9 @@ declare const _default: {
21
21
  readonly name?: string | undefined;
22
22
  readonly onFocus?: Function | undefined;
23
23
  readonly onBlur?: Function | undefined;
24
- readonly duration?: number | undefined;
25
24
  readonly onChange?: Function | undefined;
26
25
  readonly onClick?: Function | undefined;
26
+ readonly duration?: number | undefined;
27
27
  readonly layoutInfo?: Record<string, any> | undefined;
28
28
  readonly dispNumber?: number | undefined;
29
29
  readonly initIndex?: number | undefined;
@@ -56,9 +56,9 @@ declare const _default: {
56
56
  readonly name?: string | undefined;
57
57
  readonly onFocus?: Function | undefined;
58
58
  readonly onBlur?: Function | undefined;
59
- readonly duration?: number | undefined;
60
59
  readonly onChange?: Function | undefined;
61
60
  readonly onClick?: Function | undefined;
61
+ readonly duration?: number | undefined;
62
62
  readonly layoutInfo?: Record<string, any> | undefined;
63
63
  readonly dispNumber?: number | undefined;
64
64
  readonly initIndex?: number | undefined;
@@ -75,9 +75,9 @@ declare const _default: {
75
75
  readonly name?: string | undefined;
76
76
  readonly onFocus?: Function | undefined;
77
77
  readonly onBlur?: Function | undefined;
78
- readonly duration?: number | undefined;
79
78
  readonly onChange?: Function | undefined;
80
79
  readonly onClick?: Function | undefined;
80
+ readonly duration?: number | undefined;
81
81
  readonly layoutInfo?: Record<string, any> | undefined;
82
82
  readonly dispNumber?: number | undefined;
83
83
  readonly initIndex?: number | undefined;
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
31
31
  type: ObjectConstructor;
32
32
  };
33
33
  }, {
34
- forgeAnimation: null;
34
+ runningState: number;
35
35
  innerViewId: number;
36
36
  }, any, {}, {
37
37
  _createForgeView(view_texture: any, decorate_setting: any): any;
@@ -51,8 +51,9 @@ declare const _default: import("vue").DefineComponent<{
51
51
  _createLayoutViewWithDecorate(view_texture: any, decorate_setting: any): any;
52
52
  _createNinePatchAlphaMixView(view_texture: any, decorate_setting: any): any;
53
53
  _createBorderRadius(view_texture: any, decorate_setting: any): any;
54
- _onAnimationEnd(): void;
54
+ _onAnimationEnd(normal_end: any): void;
55
55
  _updateTexCoord(): void;
56
+ _buildAnimation(): any;
56
57
  start(): void;
57
58
  getTransition(): string;
58
59
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -18,8 +18,8 @@ declare const _default: {
18
18
  $el: any;
19
19
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
20
  $props: {
21
- readonly left?: number | undefined;
22
21
  readonly top?: number | undefined;
22
+ readonly left?: number | undefined;
23
23
  readonly enable?: boolean | undefined;
24
24
  readonly width?: number | undefined;
25
25
  readonly height?: number | undefined;
@@ -50,8 +50,8 @@ declare const _default: {
50
50
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
51
51
  } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
52
52
  $props: {
53
- readonly left?: number | undefined;
54
53
  readonly top?: number | undefined;
54
+ readonly left?: number | undefined;
55
55
  readonly enable?: boolean | undefined;
56
56
  readonly width?: number | undefined;
57
57
  readonly height?: number | undefined;
@@ -66,8 +66,8 @@ declare const _default: {
66
66
  __isSuspense?: undefined;
67
67
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
68
68
  $props: {
69
- readonly left?: number | undefined;
70
69
  readonly top?: number | undefined;
70
+ readonly left?: number | undefined;
71
71
  readonly enable?: boolean | undefined;
72
72
  readonly width?: number | undefined;
73
73
  readonly height?: number | undefined;
@@ -18,8 +18,8 @@ declare const _default: {
18
18
  $el: any;
19
19
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
20
20
  $props: {
21
- readonly left?: number | undefined;
22
21
  readonly top?: number | undefined;
22
+ readonly left?: number | undefined;
23
23
  readonly enable?: boolean | undefined;
24
24
  readonly width?: number | undefined;
25
25
  readonly height?: number | undefined;
@@ -50,8 +50,8 @@ declare const _default: {
50
50
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
51
51
  } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
52
52
  $props: {
53
- readonly left?: number | undefined;
54
53
  readonly top?: number | undefined;
54
+ readonly left?: number | undefined;
55
55
  readonly enable?: boolean | undefined;
56
56
  readonly width?: number | undefined;
57
57
  readonly height?: number | undefined;
@@ -66,8 +66,8 @@ declare const _default: {
66
66
  __isSuspense?: undefined;
67
67
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
68
68
  $props: {
69
- readonly left?: number | undefined;
70
69
  readonly top?: number | undefined;
70
+ readonly left?: number | undefined;
71
71
  readonly enable?: boolean | undefined;
72
72
  readonly width?: number | undefined;
73
73
  readonly height?: number | undefined;
@@ -32,6 +32,8 @@ export { JsvMindMap } from "./JsvMindMap";
32
32
  export { default as JsvFragShaderView } from "./JsvFragShaderView";
33
33
  export { default as JsvTouchModeSwitcher } from "./JsvTouchModeSwitcher.vue";
34
34
  export { default as JsvDragBox } from "./JsvDragBox/JsvDragBox.vue";
35
+ export { default as Jsv3dDiv } from "./Jsv3dDiv.vue";
36
+ export { default as Jsv3dStage } from "./Jsv3dStage.vue";
35
37
  import JsvNativeSharedDiv from "./JsvNativeSharedDiv.vue";
36
38
  export { JsvNativeSharedDiv as JsvTransparentDiv, JsvNativeSharedDiv };
37
39
  export { default as JsvActorMove, JsvActorMoveControl } from "./JsvActorMove";