@shijiu/jsview-vue 2.1.482-test.0 → 2.2.35

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 (192) hide show
  1. package/bin/browser/BrowserTextureAnim.vue.mjs +8 -1
  2. package/bin/jsview-vue.mjs +274 -119
  3. package/bin/types/JsViewEngineWidget/CheckType.d.ts +3 -0
  4. package/bin/types/JsViewEngineWidget/JsvFocus/JsvFocusBlock.vue.d.ts +102 -0
  5. package/bin/types/JsViewEngineWidget/JsvFocus/JsvFocusHub.d.ts +88 -0
  6. package/bin/types/JsViewEngineWidget/JsvFocus/JsvFocusManager.d.ts +10 -0
  7. package/bin/types/JsViewEngineWidget/MetroWidget/Const.d.ts +16 -0
  8. package/bin/types/JsViewEngineWidget/MetroWidget/Dispatcher.d.ts +14 -0
  9. package/bin/types/JsViewEngineWidget/MetroWidget/ListWidget.vue.d.ts +158 -0
  10. package/bin/types/JsViewEngineWidget/MetroWidget/MetroWidget.vue.d.ts +158 -0
  11. package/bin/types/JsViewEngineWidget/MetroWidget/MetroWidgetSetup.d.ts +46 -0
  12. package/bin/types/JsViewEngineWidget/MetroWidget/PageUpdater.d.ts +21 -0
  13. package/bin/types/JsViewEngineWidget/MetroWidget/RenderItem.d.ts +46 -0
  14. package/bin/types/JsViewEngineWidget/MetroWidget/SlotComponent.vue.d.ts +48 -0
  15. package/bin/types/JsViewEngineWidget/MetroWidget/VisibleInfo.d.ts +16 -0
  16. package/bin/types/JsViewEngineWidget/MetroWidget/WidgetRectInfo.d.ts +17 -0
  17. package/bin/types/JsViewEngineWidget/RangeModel.d.ts +162 -0
  18. package/bin/types/JsViewEngineWidget/TemplateParser/CommonMetroTemplate.d.ts +37 -0
  19. package/bin/types/JsViewEngineWidget/TemplateParser/Fence.d.ts +58 -0
  20. package/bin/types/JsViewEngineWidget/TemplateParser/ListMetroTemplate.d.ts +15 -0
  21. package/bin/types/JsViewEngineWidget/TemplateParser/MetroTemplate.d.ts +97 -0
  22. package/bin/types/JsViewEngineWidget/TemplateParser/TemplateItemAdder.d.ts +22 -0
  23. package/bin/types/JsViewEngineWidget/TemplateParser/index.d.ts +4 -0
  24. package/bin/types/JsViewEngineWidget/WidgetCommon.d.ts +137 -0
  25. package/bin/types/JsViewEngineWidget/index.d.ts +6 -0
  26. package/bin/types/JsViewPlugin/JsvAccount/JsvAccount.d.ts +42 -0
  27. package/bin/types/JsViewPlugin/JsvAudio/AudioProxy.d.ts +2 -0
  28. package/bin/types/JsViewPlugin/JsvAudio/BrowserAudio/BrowserAudio.vue.d.ts +18 -0
  29. package/bin/types/JsViewPlugin/JsvAudio/BrowserAudio/JsvSystemAudio.vue.d.ts +208 -0
  30. package/bin/types/JsViewPlugin/JsvAudio/CheckType.d.ts +2 -0
  31. package/bin/types/JsViewPlugin/JsvAudio/Events.d.ts +13 -0
  32. package/bin/types/JsViewPlugin/JsvAudio/JsvAudio.vue.d.ts +18 -0
  33. package/bin/types/JsViewPlugin/JsvAudio/JsvAudioBridgeProxy.d.ts +8 -0
  34. package/bin/types/JsViewPlugin/JsvAudio/JsvAudioProxy.vue.d.ts +2 -0
  35. package/bin/types/JsViewPlugin/JsvAudio/PluginLoader.d.ts +1 -0
  36. package/bin/types/JsViewPlugin/JsvAudio/ScreenLockManager.d.ts +5 -0
  37. package/bin/types/JsViewPlugin/JsvAudio/index.d.ts +3 -0
  38. package/bin/types/JsViewPlugin/JsvAudio/version.d.ts +10 -0
  39. package/bin/types/JsViewPlugin/JsvLatex/BrowserDomBuilder.d.ts +1 -0
  40. package/bin/types/JsViewPlugin/JsvLatex/BrowserJsvLatex.vue.d.ts +13 -0
  41. package/bin/types/JsViewPlugin/JsvLatex/Color.d.ts +1 -0
  42. package/bin/types/JsViewPlugin/JsvLatex/JsvLatex.vue.d.ts +17 -0
  43. package/bin/types/JsViewPlugin/JsvLatex/JsvLatexBridgeProxy.d.ts +3 -0
  44. package/bin/types/JsViewPlugin/JsvLatex/JsvLatexProxy.vue.d.ts +2 -0
  45. package/bin/types/JsViewPlugin/JsvLatex/PluginLoader.d.ts +1 -0
  46. package/bin/types/JsViewPlugin/JsvLatex/index.d.ts +3 -0
  47. package/bin/types/JsViewPlugin/JsvLatex/version.d.ts +10 -0
  48. package/bin/types/JsViewPlugin/index.d.ts +3 -0
  49. package/bin/types/JsViewVueTools/DebugContentShellJBridge.d.ts +6 -0
  50. package/bin/types/JsViewVueTools/DebugTool.d.ts +8 -0
  51. package/bin/types/JsViewVueTools/DefaultKeyMap.d.ts +10 -0
  52. package/bin/types/JsViewVueTools/ForgeHandles.d.ts +6 -0
  53. package/bin/types/JsViewVueTools/JsvDemoTester.d.ts +2 -0
  54. package/bin/types/JsViewVueTools/JsvDynamicCssStyle.d.ts +14 -0
  55. package/bin/types/JsViewVueTools/JsvDynamicKeyFrames.d.ts +21 -0
  56. package/bin/types/JsViewVueTools/JsvHashHistory.d.ts +16 -0
  57. package/bin/types/JsViewVueTools/JsvImpactTracer.d.ts +40 -0
  58. package/bin/types/JsViewVueTools/JsvRefTaker.d.ts +27 -0
  59. package/bin/types/JsViewVueTools/JsvRuntimeBridge.d.ts +223 -0
  60. package/bin/types/JsViewVueTools/JsvStyleClass.d.ts +31 -0
  61. package/bin/types/JsViewVueTools/JsvStyleSheetsDeclarer.d.ts +15 -0
  62. package/bin/types/JsViewVueTools/JsvTextTools.d.ts +37 -0
  63. package/bin/types/JsViewVueTools/JsvTextureDefines.d.ts +6 -0
  64. package/bin/types/JsViewVueTools/JsvTextureStore/CanvasTexture/CanvasTexture.d.ts +95 -0
  65. package/bin/types/JsViewVueTools/JsvTextureStore/CanvasTexture/CommandList.d.ts +15 -0
  66. package/bin/types/JsViewVueTools/JsvTextureStore/CanvasTexture/Path.d.ts +75 -0
  67. package/bin/types/JsViewVueTools/JsvTextureStore/JsvTextureStore.d.ts +24 -0
  68. package/bin/types/JsViewVueTools/JsvTextureStore/Store.d.ts +10 -0
  69. package/bin/types/JsViewVueTools/JsvTextureStore/Texture.d.ts +15 -0
  70. package/bin/types/JsViewVueTools/NinePatchHelper.d.ts +21 -0
  71. package/bin/types/JsViewVueTools/TypeCheckAndSet.d.ts +2 -0
  72. package/bin/types/JsViewVueTools/index.d.ts +14 -0
  73. package/bin/types/JsViewVueWidget/JsvActorMove/ActorControlBase.d.ts +31 -0
  74. package/bin/types/JsViewVueWidget/JsvActorMove/JsvActorMove.vue.d.ts +64 -0
  75. package/bin/types/JsViewVueWidget/JsvActorMove/JsvActorMoveControl.d.ts +33 -0
  76. package/bin/types/JsViewVueWidget/JsvActorMove/index.d.ts +4 -0
  77. package/bin/types/JsViewVueWidget/JsvApic/JsvApic/BrowserApic.vue.d.ts +15 -0
  78. package/bin/types/JsViewVueWidget/JsvApic/JsvApic/JsvApic.vue.d.ts +50 -0
  79. package/bin/types/JsViewVueWidget/JsvApic/JsvApic/index.d.ts +2 -0
  80. package/bin/types/JsViewVueWidget/JsvApic/JsvApic2/BrowserApic2.vue.d.ts +13 -0
  81. package/bin/types/JsViewVueWidget/JsvApic/JsvApic2/JsvApic2.vue.d.ts +23 -0
  82. package/bin/types/JsViewVueWidget/JsvApic/JsvApic2/index.d.ts +2 -0
  83. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/ApicDataBase.d.ts +13 -0
  84. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/BrowserApicLib.d.ts +3 -0
  85. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/GifData.d.ts +5 -0
  86. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/NormalLoopTool.d.ts +7 -0
  87. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/PartLoopTool.d.ts +12 -0
  88. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/SingleLoopTool.d.ts +5 -0
  89. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/Viewer.d.ts +19 -0
  90. package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/WebpData.d.ts +5 -0
  91. package/bin/types/{jsview-vue-common.d.mts → JsViewVueWidget/JsvApic/JsvCommonLoopToolBase.d.ts} +12 -13
  92. package/bin/types/JsViewVueWidget/JsvConnectLine/ArcLineManager.d.ts +1 -0
  93. package/bin/types/JsViewVueWidget/JsvConnectLine/JsvConnectLine.vue.d.ts +13 -0
  94. package/bin/types/JsViewVueWidget/JsvConnectLine/index.d.ts +2 -0
  95. package/bin/types/JsViewVueWidget/JsvEnableRenderBreak.vue.d.ts +51 -0
  96. package/bin/types/JsViewVueWidget/JsvFilterView.vue.d.ts +72 -0
  97. package/bin/types/JsViewVueWidget/JsvFlexCell/JsvFlexDiv.vue.d.ts +72 -0
  98. package/bin/types/JsViewVueWidget/JsvFlexCell/index.d.ts +2 -0
  99. package/bin/types/JsViewVueWidget/JsvFreeMoveActor/FreeMoveActor.vue.d.ts +72 -0
  100. package/bin/types/JsViewVueWidget/JsvFreeMoveActor/JsvEnvBlocker.vue.d.ts +84 -0
  101. package/bin/types/JsViewVueWidget/JsvFreeMoveActor/NexusNode.d.ts +6 -0
  102. package/bin/types/JsViewVueWidget/JsvFreeMoveActor/index.d.ts +11 -0
  103. package/bin/types/JsViewVueWidget/JsvGrid.vue.d.ts +168 -0
  104. package/bin/types/JsViewVueWidget/JsvHole.d.ts +2 -0
  105. package/bin/types/JsViewVueWidget/JsvInput/Cursor.vue.d.ts +36 -0
  106. package/bin/types/JsViewVueWidget/JsvInput/JsvInput.vue.d.ts +210 -0
  107. package/bin/types/JsViewVueWidget/JsvInput/index.d.ts +4 -0
  108. package/bin/types/JsViewVueWidget/JsvLine/JsvLine.vue.d.ts +12 -0
  109. package/bin/types/JsViewVueWidget/JsvLine/LineManager.d.ts +1 -0
  110. package/bin/types/JsViewVueWidget/JsvLine/index.d.ts +2 -0
  111. package/bin/types/JsViewVueWidget/JsvMarquee.vue.d.ts +12 -0
  112. package/bin/types/JsViewVueWidget/JsvMaskClipDiv.vue.d.ts +83 -0
  113. package/bin/types/JsViewVueWidget/JsvMindMap/CommonType.d.ts +1 -0
  114. package/bin/types/JsViewVueWidget/JsvMindMap/Constant.d.ts +9 -0
  115. package/bin/types/JsViewVueWidget/JsvMindMap/DataTree.d.ts +69 -0
  116. package/bin/types/JsViewVueWidget/JsvMindMap/Geometry.d.ts +68 -0
  117. package/bin/types/JsViewVueWidget/JsvMindMap/JsvMindMap.vue.d.ts +145 -0
  118. package/bin/types/JsViewVueWidget/JsvMindMap/index.d.ts +1 -0
  119. package/bin/types/JsViewVueWidget/JsvMindMap/rtree.d.ts +40 -0
  120. package/bin/types/JsViewVueWidget/JsvNativeSharedDiv.vue.d.ts +31 -0
  121. package/bin/types/JsViewVueWidget/JsvNinePatch.vue.d.ts +18 -0
  122. package/bin/types/JsViewVueWidget/JsvPieChart.vue.d.ts +9 -0
  123. package/bin/types/JsViewVueWidget/JsvPosterDiv.vue.d.ts +60 -0
  124. package/bin/types/JsViewVueWidget/JsvPosterImage.vue.d.ts +75 -0
  125. package/bin/types/JsViewVueWidget/JsvPreload/BrowserPreload.vue.d.ts +10 -0
  126. package/bin/types/JsViewVueWidget/JsvPreload/JsvPreload.vue.d.ts +25 -0
  127. package/bin/types/JsViewVueWidget/JsvPreload/index.d.ts +17 -0
  128. package/bin/types/JsViewVueWidget/JsvProgressBar.vue.d.ts +12 -0
  129. package/bin/types/JsViewVueWidget/JsvQrcode/BrowserQrcode.vue.d.ts +11 -0
  130. package/bin/types/JsViewVueWidget/JsvQrcode/JsvQrcode.vue.d.ts +60 -0
  131. package/bin/types/JsViewVueWidget/JsvQrcode/index.d.ts +2 -0
  132. package/bin/types/JsViewVueWidget/JsvRadarChart.vue.d.ts +13 -0
  133. package/bin/types/JsViewVueWidget/JsvRipple/Constant.d.ts +4 -0
  134. package/bin/types/JsViewVueWidget/JsvRipple/JsvRipple.vue.d.ts +84 -0
  135. package/bin/types/JsViewVueWidget/JsvRipple/index.d.ts +3 -0
  136. package/bin/types/JsViewVueWidget/JsvScaleTextBox.vue.d.ts +10 -0
  137. package/bin/types/JsViewVueWidget/JsvSector.vue.d.ts +10 -0
  138. package/bin/types/JsViewVueWidget/JsvSoundPool.d.ts +84 -0
  139. package/bin/types/JsViewVueWidget/JsvSpray/BrowserSpray.vue.d.ts +25 -0
  140. package/bin/types/JsViewVueWidget/JsvSpray/JsvSpray.vue.d.ts +38 -0
  141. package/bin/types/JsViewVueWidget/JsvSpray/index.d.ts +2 -0
  142. package/bin/types/JsViewVueWidget/JsvSpriteAnim/FrameBuidler.d.ts +14 -0
  143. package/bin/types/JsViewVueWidget/JsvSpriteAnim/JsvSpriteAnim.vue.d.ts +18 -0
  144. package/bin/types/JsViewVueWidget/JsvSpriteAnim/JsvSpriteLoader.vue.d.ts +69 -0
  145. package/bin/types/JsViewVueWidget/JsvSpriteAnim/JsvSpriteTools.d.ts +11 -0
  146. package/bin/types/JsViewVueWidget/JsvSpriteAnim/SpriteController.d.ts +17 -0
  147. package/bin/types/JsViewVueWidget/JsvSpriteAnim/index.d.ts +5 -0
  148. package/bin/types/JsViewVueWidget/JsvSpriteAnim/sAnimationToken.d.ts +2 -0
  149. package/bin/types/JsViewVueWidget/JsvSwiper/JsvSwiper.vue.d.ts +209 -0
  150. package/bin/types/JsViewVueWidget/JsvSwiper/index.d.ts +2 -0
  151. package/bin/types/JsViewVueWidget/JsvSwiper3D/JsvSwiper.vue.d.ts +97 -0
  152. package/bin/types/JsViewVueWidget/JsvSwiper3D/index.d.ts +2 -0
  153. package/bin/types/JsViewVueWidget/JsvTextBox.vue.d.ts +75 -0
  154. package/bin/types/JsViewVueWidget/JsvTextureAnim/BrowserTextureAnim.vue.d.ts +151 -0
  155. package/bin/types/JsViewVueWidget/JsvTextureAnim/CommonType.d.ts +2 -0
  156. package/bin/types/JsViewVueWidget/JsvTextureAnim/JsvTextureAnim.vue.d.ts +107 -0
  157. package/bin/types/JsViewVueWidget/JsvTextureAnim/index.d.ts +14 -0
  158. package/bin/types/JsViewVueWidget/JsvVisibleSensor/JsvVisibleSensor.vue.d.ts +84 -0
  159. package/bin/types/JsViewVueWidget/JsvVisibleSensor/index.d.ts +84 -0
  160. package/bin/types/JsViewVueWidget/index.d.ts +37 -0
  161. package/bin/types/index.d.ts +4 -0
  162. package/index.d.ts +1 -1
  163. package/package.json +1 -1
  164. package/tools/config/tsconfig.json +6 -6
  165. package/tools/jsview-vue-build.mjs +13 -4
  166. package/utils/JsViewEngineWidget/MetroWidget/ListWidget.vue +7 -4
  167. package/utils/JsViewEngineWidget/MetroWidget/MetroWidget.vue +18 -5
  168. package/utils/JsViewEngineWidget/MetroWidget/MetroWidgetSetup.js +255 -145
  169. package/utils/JsViewEngineWidget/MetroWidget/RenderItem.ts +2 -2
  170. package/utils/JsViewEngineWidget/MetroWidget/VisibleInfo.ts +1 -1
  171. package/utils/JsViewEngineWidget/TemplateParser/CommonMetroTemplate.ts +21 -21
  172. package/utils/JsViewEngineWidget/TemplateParser/ListMetroTemplate.ts +4 -4
  173. package/utils/JsViewEngineWidget/TemplateParser/MetroTemplate.ts +10 -10
  174. package/utils/JsViewEngineWidget/TemplateParser/TemplateItemAdder.ts +6 -6
  175. package/utils/JsViewEngineWidget/WidgetCommon.ts +18 -2
  176. package/utils/JsViewVueTools/JsvRuntimeBridge.js +2 -6
  177. package/utils/JsViewVueWidget/JsvFreeMoveActor/SetCondition.ts +8 -0
  178. package/utils/JsViewVueWidget/JsvMindMap/JsvMindMap.vue +1 -1
  179. package/utils/JsViewVueWidget/JsvMindMap/rtree.js +1 -1
  180. package/utils/JsViewVueWidget/JsvTextBox.vue +14 -2
  181. package/utils/JsViewVueWidget/JsvTextureAnim/BrowserTextureAnim.vue +18 -3
  182. package/bin/types/browser/BrowserApic.vue.d.mts +0 -33
  183. package/bin/types/browser/BrowserApic2.vue.d.mts +0 -16
  184. package/bin/types/browser/BrowserApicLib.d.mts +0 -56
  185. package/bin/types/browser/BrowserAudio.vue.d.mts +0 -2
  186. package/bin/types/browser/BrowserJsvLatex.vue.d.mts +0 -55
  187. package/bin/types/browser/BrowserPreload.vue.d.mts +0 -14
  188. package/bin/types/browser/BrowserQrcode.vue.d.mts +0 -29
  189. package/bin/types/browser/BrowserSpray.vue.d.mts +0 -2
  190. package/bin/types/browser/BrowserTextureAnim.vue.d.mts +0 -2
  191. package/bin/types/export-sfc.d.mts +0 -2
  192. package/bin/types/jsview-vue.d.mts +0 -2511
@@ -0,0 +1,84 @@
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
+ $props: {
21
+ readonly left?: number | undefined;
22
+ readonly top?: number | undefined;
23
+ readonly enable?: boolean | undefined;
24
+ readonly height?: number | undefined;
25
+ readonly width?: number | undefined;
26
+ readonly topGID?: number | undefined;
27
+ readonly bottomGID?: number | undefined;
28
+ readonly leftGID?: number | undefined;
29
+ readonly rightGID?: number | undefined;
30
+ };
31
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
32
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
33
+ created?: ((() => void) | (() => void)[]) | undefined;
34
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
35
+ mounted?: ((() => void) | (() => void)[]) | undefined;
36
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
37
+ updated?: ((() => void) | (() => void)[]) | undefined;
38
+ activated?: ((() => void) | (() => void)[]) | undefined;
39
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
40
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
41
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
42
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
43
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
44
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
45
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
46
+ 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;
47
+ };
48
+ $forceUpdate: () => void;
49
+ $nextTick: typeof import("vue").nextTick;
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
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
52
+ $props: {
53
+ readonly left?: number | undefined;
54
+ readonly top?: number | undefined;
55
+ readonly enable?: boolean | undefined;
56
+ readonly height?: number | undefined;
57
+ readonly width?: number | undefined;
58
+ readonly topGID?: number | undefined;
59
+ readonly bottomGID?: number | undefined;
60
+ readonly leftGID?: number | undefined;
61
+ readonly rightGID?: number | undefined;
62
+ };
63
+ }> & {} & import("vue").ComponentCustomProperties & {};
64
+ __isFragment?: undefined;
65
+ __isTeleport?: undefined;
66
+ __isSuspense?: undefined;
67
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
68
+ $props: {
69
+ readonly left?: number | undefined;
70
+ readonly top?: number | undefined;
71
+ readonly enable?: boolean | undefined;
72
+ readonly height?: number | undefined;
73
+ readonly width?: number | undefined;
74
+ readonly topGID?: number | undefined;
75
+ readonly bottomGID?: number | undefined;
76
+ readonly leftGID?: number | undefined;
77
+ readonly rightGID?: number | undefined;
78
+ };
79
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
80
+ $slots: {
81
+ default: (_: {}) => any;
82
+ };
83
+ });
84
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare class NexusNode {
2
+ token: number;
3
+ constructor();
4
+ }
5
+ declare function newNexus(): NexusNode;
6
+ export { NexusNode, newNexus };
@@ -0,0 +1,11 @@
1
+ import JsvFreeMoveActor from "./FreeMoveActor.vue";
2
+ import JsvEnvBlocker from "./JsvEnvBlocker.vue";
3
+ export namespace FreeMoveDef {
4
+ export { ActEventDefine };
5
+ export { KeepFlags };
6
+ }
7
+ export namespace FreeMoveFunc {
8
+ export { newNexus };
9
+ }
10
+ import { newNexus } from "./NexusNode";
11
+ export { JsvFreeMoveActor, JsvEnvBlocker };
@@ -0,0 +1,168 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ left: {
3
+ type: NumberConstructor;
4
+ };
5
+ top: {
6
+ type: NumberConstructor;
7
+ };
8
+ name: {
9
+ type: StringConstructor;
10
+ };
11
+ provideData: {
12
+ type: FunctionConstructor;
13
+ require: boolean;
14
+ };
15
+ row: {
16
+ type: NumberConstructor;
17
+ require: boolean;
18
+ };
19
+ column: {
20
+ type: NumberConstructor;
21
+ require: boolean;
22
+ };
23
+ itemSize: {
24
+ type: ObjectConstructor;
25
+ require: boolean;
26
+ };
27
+ updateType: {
28
+ type: typeof UpdateType;
29
+ default(): PageType;
30
+ };
31
+ initFocusId: {
32
+ type: NumberConstructor;
33
+ default: number;
34
+ };
35
+ gapInfo: {
36
+ type: ObjectConstructor;
37
+ default(): {
38
+ row: number;
39
+ column: number;
40
+ };
41
+ };
42
+ verticalUpdate: {
43
+ type: BooleanConstructor;
44
+ };
45
+ columnFirst: {
46
+ type: BooleanConstructor;
47
+ };
48
+ onEdge: {
49
+ type: FunctionConstructor;
50
+ };
51
+ loopUpdate: {
52
+ type: BooleanConstructor;
53
+ default: boolean;
54
+ };
55
+ focusMoveType: {
56
+ type: NumberConstructor;
57
+ default: number;
58
+ };
59
+ }, {
60
+ originDataList: never[];
61
+ divInfoList: never[];
62
+ startIndex: number;
63
+ dataList: never[];
64
+ dataInfo: {
65
+ endIndex: number;
66
+ };
67
+ focusDataIndex: number;
68
+ preFocusDataIndex: number;
69
+ focused: boolean;
70
+ }, any, {}, {
71
+ _getCurrentFocusId(): any;
72
+ _getDivIndex(dataIndex: any): number;
73
+ _initDivInfoList(): void;
74
+ _cleanOldData(): void;
75
+ _indexConvert(i: any): any;
76
+ _formatData(): void;
77
+ _updateData(startIndex: any): void;
78
+ _getStartIndex(targetIndex: any, direction: any): any;
79
+ _sendOnEdge(edgeDirection: any, divIndex: any): void;
80
+ _moveTo(hOffset: any, vOffset: any): void;
81
+ _onFocus(): void;
82
+ _onBlur(): void;
83
+ _onKeyDown(ev: any): boolean;
84
+ getFocusBlockRef(): any;
85
+ setFocusId(id: any): void;
86
+ refreshData(): void;
87
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
88
+ left: {
89
+ type: NumberConstructor;
90
+ };
91
+ top: {
92
+ type: NumberConstructor;
93
+ };
94
+ name: {
95
+ type: StringConstructor;
96
+ };
97
+ provideData: {
98
+ type: FunctionConstructor;
99
+ require: boolean;
100
+ };
101
+ row: {
102
+ type: NumberConstructor;
103
+ require: boolean;
104
+ };
105
+ column: {
106
+ type: NumberConstructor;
107
+ require: boolean;
108
+ };
109
+ itemSize: {
110
+ type: ObjectConstructor;
111
+ require: boolean;
112
+ };
113
+ updateType: {
114
+ type: typeof UpdateType;
115
+ default(): PageType;
116
+ };
117
+ initFocusId: {
118
+ type: NumberConstructor;
119
+ default: number;
120
+ };
121
+ gapInfo: {
122
+ type: ObjectConstructor;
123
+ default(): {
124
+ row: number;
125
+ column: number;
126
+ };
127
+ };
128
+ verticalUpdate: {
129
+ type: BooleanConstructor;
130
+ };
131
+ columnFirst: {
132
+ type: BooleanConstructor;
133
+ };
134
+ onEdge: {
135
+ type: FunctionConstructor;
136
+ };
137
+ loopUpdate: {
138
+ type: BooleanConstructor;
139
+ default: boolean;
140
+ };
141
+ focusMoveType: {
142
+ type: NumberConstructor;
143
+ default: number;
144
+ };
145
+ }>>, {
146
+ initFocusId: number;
147
+ focusMoveType: number;
148
+ updateType: UpdateType;
149
+ gapInfo: Record<string, any>;
150
+ verticalUpdate: boolean;
151
+ columnFirst: boolean;
152
+ loopUpdate: boolean;
153
+ }>;
154
+ export default _default;
155
+ export class PageType extends UpdateType {
156
+ constructor();
157
+ }
158
+ export class LineType extends UpdateType {
159
+ constructor(start: any, end: any);
160
+ start: any;
161
+ end: any;
162
+ }
163
+ import { FocusMoveType } from "../JsViewEngineWidget/WidgetCommon";
164
+ declare class UpdateType {
165
+ constructor(type: any);
166
+ type: any;
167
+ }
168
+ export { FocusMoveType };
@@ -0,0 +1,2 @@
1
+ export default JsvTransparentDiv;
2
+ import JsvTransparentDiv from "./JsvNativeSharedDiv.vue";
@@ -0,0 +1,36 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ left: {
3
+ type: NumberConstructor;
4
+ default: number;
5
+ };
6
+ top: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ width: NumberConstructor;
11
+ height: NumberConstructor;
12
+ color: StringConstructor;
13
+ }, {
14
+ intervalToken: number;
15
+ visible: import("vue").Ref<boolean>;
16
+ }, any, {}, {
17
+ _cleanInterval(): void;
18
+ startBlink(): void;
19
+ stopBlink(show: any): void;
20
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
+ left: {
22
+ type: NumberConstructor;
23
+ default: number;
24
+ };
25
+ top: {
26
+ type: NumberConstructor;
27
+ default: number;
28
+ };
29
+ width: NumberConstructor;
30
+ height: NumberConstructor;
31
+ color: StringConstructor;
32
+ }>>, {
33
+ left: number;
34
+ top: number;
35
+ }>;
36
+ export default _default;
@@ -0,0 +1,210 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ name: {
3
+ type: StringConstructor;
4
+ };
5
+ left: {
6
+ type: NumberConstructor;
7
+ default: number;
8
+ };
9
+ top: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ width: {
14
+ type: NumberConstructor;
15
+ default: number;
16
+ };
17
+ height: {
18
+ type: NumberConstructor;
19
+ default: number;
20
+ };
21
+ type: {
22
+ type: NumberConstructor;
23
+ default: any;
24
+ };
25
+ placeholder: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ placeholderColor: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ maxLength: {
34
+ type: NumberConstructor;
35
+ default: number;
36
+ };
37
+ readonly: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ value: {
42
+ type: StringConstructor;
43
+ default: string;
44
+ };
45
+ fontStyle: {
46
+ type: (ObjectConstructor | ArrayConstructor)[];
47
+ default(): {
48
+ textAlign: string;
49
+ fontSize: number;
50
+ color: string;
51
+ };
52
+ };
53
+ cursorShow: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ cursorWidth: {
58
+ type: NumberConstructor;
59
+ default: number;
60
+ };
61
+ cursorColor: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ onTextOverflow: {
66
+ type: FunctionConstructor;
67
+ };
68
+ onTextChange: {
69
+ type: FunctionConstructor;
70
+ };
71
+ onEdge: {
72
+ type: FunctionConstructor;
73
+ };
74
+ }, {
75
+ editControlView: null;
76
+ editControlViewId: number;
77
+ isFocus: boolean;
78
+ visibleAreaCurStart: number;
79
+ visibleAreaCurPos: number;
80
+ visibleAreaCurEnd: number;
81
+ cursorPauseTimeoutToken: number;
82
+ }, {
83
+ fullString: string;
84
+ curOffset: number;
85
+ textWidth: number;
86
+ textLeft: number;
87
+ }, {
88
+ realText(): string;
89
+ placeholderVisible(): boolean;
90
+ cursorLeft(): any;
91
+ cursorColorInner(): any;
92
+ }, {
93
+ _updateTextWidth(text: any): void;
94
+ _onTextChanged(text: any, cursor_pos: any, moved: any): void;
95
+ _onStatusChanged(status: any): void;
96
+ _getStringWithFont(str: any): any;
97
+ _getFullStringLength(str: any): any;
98
+ add(string: any): void;
99
+ delete(): void;
100
+ clear(): void;
101
+ replace(string: any): void;
102
+ _calculateCursorPosition(full_str: any, cursor_offset: any): any;
103
+ _getLeftWithDelChar(current_cursor_position: any, target_str: any): number;
104
+ _getLeftWithMoveRight(): number;
105
+ _getLeftWithMoveLeft(): number;
106
+ _updateVisibleAreaCursor(offset: any): void;
107
+ _getLeftWithAddChar(current_cursor_position: any, end_add: any): number;
108
+ _calculateSlide(pre_str: any, target_str: any, cur_index: any, moved: any): number;
109
+ onFocus(): void;
110
+ onBlur(): void;
111
+ clearCursorPauseTimer(): void;
112
+ pauseCursorBlink(): void;
113
+ onKeyDown(keyEvent: any): boolean;
114
+ _GetRealText(src_str: any): any;
115
+ _GetShowText(): any;
116
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
117
+ name: {
118
+ type: StringConstructor;
119
+ };
120
+ left: {
121
+ type: NumberConstructor;
122
+ default: number;
123
+ };
124
+ top: {
125
+ type: NumberConstructor;
126
+ default: number;
127
+ };
128
+ width: {
129
+ type: NumberConstructor;
130
+ default: number;
131
+ };
132
+ height: {
133
+ type: NumberConstructor;
134
+ default: number;
135
+ };
136
+ type: {
137
+ type: NumberConstructor;
138
+ default: any;
139
+ };
140
+ placeholder: {
141
+ type: StringConstructor;
142
+ default: string;
143
+ };
144
+ placeholderColor: {
145
+ type: StringConstructor;
146
+ default: string;
147
+ };
148
+ maxLength: {
149
+ type: NumberConstructor;
150
+ default: number;
151
+ };
152
+ readonly: {
153
+ type: BooleanConstructor;
154
+ default: boolean;
155
+ };
156
+ value: {
157
+ type: StringConstructor;
158
+ default: string;
159
+ };
160
+ fontStyle: {
161
+ type: (ObjectConstructor | ArrayConstructor)[];
162
+ default(): {
163
+ textAlign: string;
164
+ fontSize: number;
165
+ color: string;
166
+ };
167
+ };
168
+ cursorShow: {
169
+ type: BooleanConstructor;
170
+ default: boolean;
171
+ };
172
+ cursorWidth: {
173
+ type: NumberConstructor;
174
+ default: number;
175
+ };
176
+ cursorColor: {
177
+ type: StringConstructor;
178
+ default: string;
179
+ };
180
+ onTextOverflow: {
181
+ type: FunctionConstructor;
182
+ };
183
+ onTextChange: {
184
+ type: FunctionConstructor;
185
+ };
186
+ onEdge: {
187
+ type: FunctionConstructor;
188
+ };
189
+ }>>, {
190
+ type: number;
191
+ height: number;
192
+ width: number;
193
+ left: number;
194
+ top: number;
195
+ fontStyle: unknown[] | Record<string, any>;
196
+ value: string;
197
+ readonly: boolean;
198
+ placeholder: string;
199
+ placeholderColor: string;
200
+ maxLength: number;
201
+ cursorShow: boolean;
202
+ cursorWidth: number;
203
+ cursorColor: string;
204
+ }>;
205
+ export default _default;
206
+ export namespace InputType {
207
+ const TEXT: any;
208
+ const NUMBER: any;
209
+ const PASSWORD: any;
210
+ }
@@ -0,0 +1,4 @@
1
+ export default JsvInput;
2
+ export { InputType };
3
+ import JsvInput from "./JsvInput.vue";
4
+ import { InputType } from "./JsvInput.vue";
@@ -0,0 +1,12 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly backgroundColor?: string | undefined;
4
+ readonly backgroundImage?: string | undefined;
5
+ readonly borderRadius?: number | undefined;
6
+ readonly appear?: string | undefined;
7
+ readonly startPos?: Record<string, any> | undefined;
8
+ readonly endPos?: Record<string, any> | undefined;
9
+ readonly lineWidth?: number | undefined;
10
+ };
11
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
12
+ export default _default;
@@ -0,0 +1 @@
1
+ export function createTexture(lineWidth: any, color: any): any;
@@ -0,0 +1,2 @@
1
+ export default JsvLine;
2
+ import JsvLine from "./JsvLine.vue";
@@ -0,0 +1,12 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ $props: {
3
+ readonly style?: Record<string, any> | undefined;
4
+ readonly text?: string | undefined;
5
+ readonly slideSpeed?: number | undefined;
6
+ readonly slideDirection?: string | undefined;
7
+ readonly forceSlide?: boolean | undefined;
8
+ readonly timeGap?: number | undefined;
9
+ readonly textGap?: number | undefined;
10
+ };
11
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
12
+ export default _default;
@@ -0,0 +1,83 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ class: {
3
+ type: StringConstructor;
4
+ };
5
+ style: {
6
+ type: (ObjectConstructor | ArrayConstructor)[];
7
+ };
8
+ maskSrc: {
9
+ type: StringConstructor;
10
+ };
11
+ viewSrc: {
12
+ type: StringConstructor;
13
+ };
14
+ maskTop: {
15
+ type: NumberConstructor;
16
+ };
17
+ maskBottom: {
18
+ type: NumberConstructor;
19
+ };
20
+ maskLeft: {
21
+ type: NumberConstructor;
22
+ };
23
+ maskRight: {
24
+ type: NumberConstructor;
25
+ };
26
+ maskWidth: {
27
+ type: NumberConstructor;
28
+ };
29
+ maskHeight: {
30
+ type: NumberConstructor;
31
+ };
32
+ }, {
33
+ innerView: null;
34
+ innerViewId: number;
35
+ styleDetail: null;
36
+ html: boolean;
37
+ cache: {
38
+ viewSrc: null;
39
+ maskSrc: null;
40
+ maskTop: number;
41
+ maskLeft: number;
42
+ maskWidth: number;
43
+ maskHeight: number;
44
+ styleList: null;
45
+ };
46
+ }, any, {}, {
47
+ _drawClip(canvas: any, clip_image: any, clip_ready: any, bg_image: any, bg_ready: any): void;
48
+ updateMainTexturePosition(): void;
49
+ _initForHtml(): void;
50
+ _updateInnerView(): void;
51
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
52
+ class: {
53
+ type: StringConstructor;
54
+ };
55
+ style: {
56
+ type: (ObjectConstructor | ArrayConstructor)[];
57
+ };
58
+ maskSrc: {
59
+ type: StringConstructor;
60
+ };
61
+ viewSrc: {
62
+ type: StringConstructor;
63
+ };
64
+ maskTop: {
65
+ type: NumberConstructor;
66
+ };
67
+ maskBottom: {
68
+ type: NumberConstructor;
69
+ };
70
+ maskLeft: {
71
+ type: NumberConstructor;
72
+ };
73
+ maskRight: {
74
+ type: NumberConstructor;
75
+ };
76
+ maskWidth: {
77
+ type: NumberConstructor;
78
+ };
79
+ maskHeight: {
80
+ type: NumberConstructor;
81
+ };
82
+ }>>, {}>;
83
+ export default _default;
@@ -0,0 +1 @@
1
+ export type Direction = "left" | "top" | "right" | "bottom";
@@ -0,0 +1,9 @@
1
+ export declare const LEFT = "left";
2
+ export declare const TOP = "top";
3
+ export declare const RIGHT = "right";
4
+ export declare const BOTTOM = "bottom";
5
+ export declare const LEFT_BIT = 1;
6
+ export declare const TOP_BIT = 2;
7
+ export declare const RIGHT_BIT = 4;
8
+ export declare const BOTTOM_BIT = 8;
9
+ export declare function dirStrToBit(dir: string): number;