@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.
- package/bin/browser/BrowserTextureAnim.vue.mjs +8 -1
- package/bin/jsview-vue.mjs +274 -119
- package/bin/types/JsViewEngineWidget/CheckType.d.ts +3 -0
- package/bin/types/JsViewEngineWidget/JsvFocus/JsvFocusBlock.vue.d.ts +102 -0
- package/bin/types/JsViewEngineWidget/JsvFocus/JsvFocusHub.d.ts +88 -0
- package/bin/types/JsViewEngineWidget/JsvFocus/JsvFocusManager.d.ts +10 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/Const.d.ts +16 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/Dispatcher.d.ts +14 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/ListWidget.vue.d.ts +158 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/MetroWidget.vue.d.ts +158 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/MetroWidgetSetup.d.ts +46 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/PageUpdater.d.ts +21 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/RenderItem.d.ts +46 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/SlotComponent.vue.d.ts +48 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/VisibleInfo.d.ts +16 -0
- package/bin/types/JsViewEngineWidget/MetroWidget/WidgetRectInfo.d.ts +17 -0
- package/bin/types/JsViewEngineWidget/RangeModel.d.ts +162 -0
- package/bin/types/JsViewEngineWidget/TemplateParser/CommonMetroTemplate.d.ts +37 -0
- package/bin/types/JsViewEngineWidget/TemplateParser/Fence.d.ts +58 -0
- package/bin/types/JsViewEngineWidget/TemplateParser/ListMetroTemplate.d.ts +15 -0
- package/bin/types/JsViewEngineWidget/TemplateParser/MetroTemplate.d.ts +97 -0
- package/bin/types/JsViewEngineWidget/TemplateParser/TemplateItemAdder.d.ts +22 -0
- package/bin/types/JsViewEngineWidget/TemplateParser/index.d.ts +4 -0
- package/bin/types/JsViewEngineWidget/WidgetCommon.d.ts +137 -0
- package/bin/types/JsViewEngineWidget/index.d.ts +6 -0
- package/bin/types/JsViewPlugin/JsvAccount/JsvAccount.d.ts +42 -0
- package/bin/types/JsViewPlugin/JsvAudio/AudioProxy.d.ts +2 -0
- package/bin/types/JsViewPlugin/JsvAudio/BrowserAudio/BrowserAudio.vue.d.ts +18 -0
- package/bin/types/JsViewPlugin/JsvAudio/BrowserAudio/JsvSystemAudio.vue.d.ts +208 -0
- package/bin/types/JsViewPlugin/JsvAudio/CheckType.d.ts +2 -0
- package/bin/types/JsViewPlugin/JsvAudio/Events.d.ts +13 -0
- package/bin/types/JsViewPlugin/JsvAudio/JsvAudio.vue.d.ts +18 -0
- package/bin/types/JsViewPlugin/JsvAudio/JsvAudioBridgeProxy.d.ts +8 -0
- package/bin/types/JsViewPlugin/JsvAudio/JsvAudioProxy.vue.d.ts +2 -0
- package/bin/types/JsViewPlugin/JsvAudio/PluginLoader.d.ts +1 -0
- package/bin/types/JsViewPlugin/JsvAudio/ScreenLockManager.d.ts +5 -0
- package/bin/types/JsViewPlugin/JsvAudio/index.d.ts +3 -0
- package/bin/types/JsViewPlugin/JsvAudio/version.d.ts +10 -0
- package/bin/types/JsViewPlugin/JsvLatex/BrowserDomBuilder.d.ts +1 -0
- package/bin/types/JsViewPlugin/JsvLatex/BrowserJsvLatex.vue.d.ts +13 -0
- package/bin/types/JsViewPlugin/JsvLatex/Color.d.ts +1 -0
- package/bin/types/JsViewPlugin/JsvLatex/JsvLatex.vue.d.ts +17 -0
- package/bin/types/JsViewPlugin/JsvLatex/JsvLatexBridgeProxy.d.ts +3 -0
- package/bin/types/JsViewPlugin/JsvLatex/JsvLatexProxy.vue.d.ts +2 -0
- package/bin/types/JsViewPlugin/JsvLatex/PluginLoader.d.ts +1 -0
- package/bin/types/JsViewPlugin/JsvLatex/index.d.ts +3 -0
- package/bin/types/JsViewPlugin/JsvLatex/version.d.ts +10 -0
- package/bin/types/JsViewPlugin/index.d.ts +3 -0
- package/bin/types/JsViewVueTools/DebugContentShellJBridge.d.ts +6 -0
- package/bin/types/JsViewVueTools/DebugTool.d.ts +8 -0
- package/bin/types/JsViewVueTools/DefaultKeyMap.d.ts +10 -0
- package/bin/types/JsViewVueTools/ForgeHandles.d.ts +6 -0
- package/bin/types/JsViewVueTools/JsvDemoTester.d.ts +2 -0
- package/bin/types/JsViewVueTools/JsvDynamicCssStyle.d.ts +14 -0
- package/bin/types/JsViewVueTools/JsvDynamicKeyFrames.d.ts +21 -0
- package/bin/types/JsViewVueTools/JsvHashHistory.d.ts +16 -0
- package/bin/types/JsViewVueTools/JsvImpactTracer.d.ts +40 -0
- package/bin/types/JsViewVueTools/JsvRefTaker.d.ts +27 -0
- package/bin/types/JsViewVueTools/JsvRuntimeBridge.d.ts +223 -0
- package/bin/types/JsViewVueTools/JsvStyleClass.d.ts +31 -0
- package/bin/types/JsViewVueTools/JsvStyleSheetsDeclarer.d.ts +15 -0
- package/bin/types/JsViewVueTools/JsvTextTools.d.ts +37 -0
- package/bin/types/JsViewVueTools/JsvTextureDefines.d.ts +6 -0
- package/bin/types/JsViewVueTools/JsvTextureStore/CanvasTexture/CanvasTexture.d.ts +95 -0
- package/bin/types/JsViewVueTools/JsvTextureStore/CanvasTexture/CommandList.d.ts +15 -0
- package/bin/types/JsViewVueTools/JsvTextureStore/CanvasTexture/Path.d.ts +75 -0
- package/bin/types/JsViewVueTools/JsvTextureStore/JsvTextureStore.d.ts +24 -0
- package/bin/types/JsViewVueTools/JsvTextureStore/Store.d.ts +10 -0
- package/bin/types/JsViewVueTools/JsvTextureStore/Texture.d.ts +15 -0
- package/bin/types/JsViewVueTools/NinePatchHelper.d.ts +21 -0
- package/bin/types/JsViewVueTools/TypeCheckAndSet.d.ts +2 -0
- package/bin/types/JsViewVueTools/index.d.ts +14 -0
- package/bin/types/JsViewVueWidget/JsvActorMove/ActorControlBase.d.ts +31 -0
- package/bin/types/JsViewVueWidget/JsvActorMove/JsvActorMove.vue.d.ts +64 -0
- package/bin/types/JsViewVueWidget/JsvActorMove/JsvActorMoveControl.d.ts +33 -0
- package/bin/types/JsViewVueWidget/JsvActorMove/index.d.ts +4 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvApic/BrowserApic.vue.d.ts +15 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvApic/JsvApic.vue.d.ts +50 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvApic/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvApic2/BrowserApic2.vue.d.ts +13 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvApic2/JsvApic2.vue.d.ts +23 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvApic2/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/ApicDataBase.d.ts +13 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/BrowserApicLib.d.ts +3 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/GifData.d.ts +5 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/NormalLoopTool.d.ts +7 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/PartLoopTool.d.ts +12 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/SingleLoopTool.d.ts +5 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/Viewer.d.ts +19 -0
- package/bin/types/JsViewVueWidget/JsvApic/JsvBrowserApicLib/WebpData.d.ts +5 -0
- package/bin/types/{jsview-vue-common.d.mts → JsViewVueWidget/JsvApic/JsvCommonLoopToolBase.d.ts} +12 -13
- package/bin/types/JsViewVueWidget/JsvConnectLine/ArcLineManager.d.ts +1 -0
- package/bin/types/JsViewVueWidget/JsvConnectLine/JsvConnectLine.vue.d.ts +13 -0
- package/bin/types/JsViewVueWidget/JsvConnectLine/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvEnableRenderBreak.vue.d.ts +51 -0
- package/bin/types/JsViewVueWidget/JsvFilterView.vue.d.ts +72 -0
- package/bin/types/JsViewVueWidget/JsvFlexCell/JsvFlexDiv.vue.d.ts +72 -0
- package/bin/types/JsViewVueWidget/JsvFlexCell/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvFreeMoveActor/FreeMoveActor.vue.d.ts +72 -0
- package/bin/types/JsViewVueWidget/JsvFreeMoveActor/JsvEnvBlocker.vue.d.ts +84 -0
- package/bin/types/JsViewVueWidget/JsvFreeMoveActor/NexusNode.d.ts +6 -0
- package/bin/types/JsViewVueWidget/JsvFreeMoveActor/index.d.ts +11 -0
- package/bin/types/JsViewVueWidget/JsvGrid.vue.d.ts +168 -0
- package/bin/types/JsViewVueWidget/JsvHole.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvInput/Cursor.vue.d.ts +36 -0
- package/bin/types/JsViewVueWidget/JsvInput/JsvInput.vue.d.ts +210 -0
- package/bin/types/JsViewVueWidget/JsvInput/index.d.ts +4 -0
- package/bin/types/JsViewVueWidget/JsvLine/JsvLine.vue.d.ts +12 -0
- package/bin/types/JsViewVueWidget/JsvLine/LineManager.d.ts +1 -0
- package/bin/types/JsViewVueWidget/JsvLine/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvMarquee.vue.d.ts +12 -0
- package/bin/types/JsViewVueWidget/JsvMaskClipDiv.vue.d.ts +83 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/CommonType.d.ts +1 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/Constant.d.ts +9 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/DataTree.d.ts +69 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/Geometry.d.ts +68 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/JsvMindMap.vue.d.ts +145 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/index.d.ts +1 -0
- package/bin/types/JsViewVueWidget/JsvMindMap/rtree.d.ts +40 -0
- package/bin/types/JsViewVueWidget/JsvNativeSharedDiv.vue.d.ts +31 -0
- package/bin/types/JsViewVueWidget/JsvNinePatch.vue.d.ts +18 -0
- package/bin/types/JsViewVueWidget/JsvPieChart.vue.d.ts +9 -0
- package/bin/types/JsViewVueWidget/JsvPosterDiv.vue.d.ts +60 -0
- package/bin/types/JsViewVueWidget/JsvPosterImage.vue.d.ts +75 -0
- package/bin/types/JsViewVueWidget/JsvPreload/BrowserPreload.vue.d.ts +10 -0
- package/bin/types/JsViewVueWidget/JsvPreload/JsvPreload.vue.d.ts +25 -0
- package/bin/types/JsViewVueWidget/JsvPreload/index.d.ts +17 -0
- package/bin/types/JsViewVueWidget/JsvProgressBar.vue.d.ts +12 -0
- package/bin/types/JsViewVueWidget/JsvQrcode/BrowserQrcode.vue.d.ts +11 -0
- package/bin/types/JsViewVueWidget/JsvQrcode/JsvQrcode.vue.d.ts +60 -0
- package/bin/types/JsViewVueWidget/JsvQrcode/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvRadarChart.vue.d.ts +13 -0
- package/bin/types/JsViewVueWidget/JsvRipple/Constant.d.ts +4 -0
- package/bin/types/JsViewVueWidget/JsvRipple/JsvRipple.vue.d.ts +84 -0
- package/bin/types/JsViewVueWidget/JsvRipple/index.d.ts +3 -0
- package/bin/types/JsViewVueWidget/JsvScaleTextBox.vue.d.ts +10 -0
- package/bin/types/JsViewVueWidget/JsvSector.vue.d.ts +10 -0
- package/bin/types/JsViewVueWidget/JsvSoundPool.d.ts +84 -0
- package/bin/types/JsViewVueWidget/JsvSpray/BrowserSpray.vue.d.ts +25 -0
- package/bin/types/JsViewVueWidget/JsvSpray/JsvSpray.vue.d.ts +38 -0
- package/bin/types/JsViewVueWidget/JsvSpray/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/FrameBuidler.d.ts +14 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/JsvSpriteAnim.vue.d.ts +18 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/JsvSpriteLoader.vue.d.ts +69 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/JsvSpriteTools.d.ts +11 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/SpriteController.d.ts +17 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/index.d.ts +5 -0
- package/bin/types/JsViewVueWidget/JsvSpriteAnim/sAnimationToken.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvSwiper/JsvSwiper.vue.d.ts +209 -0
- package/bin/types/JsViewVueWidget/JsvSwiper/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvSwiper3D/JsvSwiper.vue.d.ts +97 -0
- package/bin/types/JsViewVueWidget/JsvSwiper3D/index.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvTextBox.vue.d.ts +75 -0
- package/bin/types/JsViewVueWidget/JsvTextureAnim/BrowserTextureAnim.vue.d.ts +151 -0
- package/bin/types/JsViewVueWidget/JsvTextureAnim/CommonType.d.ts +2 -0
- package/bin/types/JsViewVueWidget/JsvTextureAnim/JsvTextureAnim.vue.d.ts +107 -0
- package/bin/types/JsViewVueWidget/JsvTextureAnim/index.d.ts +14 -0
- package/bin/types/JsViewVueWidget/JsvVisibleSensor/JsvVisibleSensor.vue.d.ts +84 -0
- package/bin/types/JsViewVueWidget/JsvVisibleSensor/index.d.ts +84 -0
- package/bin/types/JsViewVueWidget/index.d.ts +37 -0
- package/bin/types/index.d.ts +4 -0
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/tools/config/tsconfig.json +6 -6
- package/tools/jsview-vue-build.mjs +13 -4
- package/utils/JsViewEngineWidget/MetroWidget/ListWidget.vue +7 -4
- package/utils/JsViewEngineWidget/MetroWidget/MetroWidget.vue +18 -5
- package/utils/JsViewEngineWidget/MetroWidget/MetroWidgetSetup.js +255 -145
- package/utils/JsViewEngineWidget/MetroWidget/RenderItem.ts +2 -2
- package/utils/JsViewEngineWidget/MetroWidget/VisibleInfo.ts +1 -1
- package/utils/JsViewEngineWidget/TemplateParser/CommonMetroTemplate.ts +21 -21
- package/utils/JsViewEngineWidget/TemplateParser/ListMetroTemplate.ts +4 -4
- package/utils/JsViewEngineWidget/TemplateParser/MetroTemplate.ts +10 -10
- package/utils/JsViewEngineWidget/TemplateParser/TemplateItemAdder.ts +6 -6
- package/utils/JsViewEngineWidget/WidgetCommon.ts +18 -2
- package/utils/JsViewVueTools/JsvRuntimeBridge.js +2 -6
- package/utils/JsViewVueWidget/JsvFreeMoveActor/SetCondition.ts +8 -0
- package/utils/JsViewVueWidget/JsvMindMap/JsvMindMap.vue +1 -1
- package/utils/JsViewVueWidget/JsvMindMap/rtree.js +1 -1
- package/utils/JsViewVueWidget/JsvTextBox.vue +14 -2
- package/utils/JsViewVueWidget/JsvTextureAnim/BrowserTextureAnim.vue +18 -3
- package/bin/types/browser/BrowserApic.vue.d.mts +0 -33
- package/bin/types/browser/BrowserApic2.vue.d.mts +0 -16
- package/bin/types/browser/BrowserApicLib.d.mts +0 -56
- package/bin/types/browser/BrowserAudio.vue.d.mts +0 -2
- package/bin/types/browser/BrowserJsvLatex.vue.d.mts +0 -55
- package/bin/types/browser/BrowserPreload.vue.d.mts +0 -14
- package/bin/types/browser/BrowserQrcode.vue.d.mts +0 -29
- package/bin/types/browser/BrowserSpray.vue.d.mts +0 -2
- package/bin/types/browser/BrowserTextureAnim.vue.d.mts +0 -2
- package/bin/types/export-sfc.d.mts +0 -2
- package/bin/types/jsview-vue.d.mts +0 -2511
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
showIndicator: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
dotSize: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
dotGap: {
|
|
11
|
+
type: NumberConstructor;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
indicatorPos: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
indicatorAlign: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
validator(value: unknown): boolean;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
totalFrame: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
require: boolean;
|
|
26
|
+
};
|
|
27
|
+
firstFrame: {
|
|
28
|
+
type: NumberConstructor;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
layoutInfo: {
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
require: boolean;
|
|
34
|
+
};
|
|
35
|
+
onClick: {
|
|
36
|
+
type: FunctionConstructor;
|
|
37
|
+
};
|
|
38
|
+
onChange: {
|
|
39
|
+
type: FunctionConstructor;
|
|
40
|
+
};
|
|
41
|
+
onEdge: {
|
|
42
|
+
type: FunctionConstructor;
|
|
43
|
+
};
|
|
44
|
+
autoplayInterval: {
|
|
45
|
+
type: NumberConstructor;
|
|
46
|
+
default: number;
|
|
47
|
+
};
|
|
48
|
+
animation: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default(): {
|
|
51
|
+
duration: number;
|
|
52
|
+
easing: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
vertical: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
name: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
};
|
|
62
|
+
onFocus: {
|
|
63
|
+
type: FunctionConstructor;
|
|
64
|
+
};
|
|
65
|
+
onBlur: {
|
|
66
|
+
type: FunctionConstructor;
|
|
67
|
+
};
|
|
68
|
+
swipeType: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
smoothTranslate: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
reverseSwipe: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
disableLoopWhenFocus: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
}, {
|
|
85
|
+
preOffset: number;
|
|
86
|
+
offset: import("vue").Ref<number>;
|
|
87
|
+
focused: import("vue").Ref<boolean>;
|
|
88
|
+
timeoutHandler: number;
|
|
89
|
+
controllerList: any[];
|
|
90
|
+
autoplay: boolean;
|
|
91
|
+
focusBlock: import("vue").Ref<any>;
|
|
92
|
+
}, any, {
|
|
93
|
+
indexList(): any;
|
|
94
|
+
indicatorLayout(): any;
|
|
95
|
+
indicatorDotSize(): any;
|
|
96
|
+
currentDataIndex(): any;
|
|
97
|
+
currentViewIndex(): any;
|
|
98
|
+
viewInfoList(): any;
|
|
99
|
+
}, {
|
|
100
|
+
getFocusBlockRef(): any;
|
|
101
|
+
stopAutoplay(): void;
|
|
102
|
+
startAutoplay(): void;
|
|
103
|
+
slideTo(id: any, direction?: number): void;
|
|
104
|
+
_onKeyDown(ev: any): boolean;
|
|
105
|
+
_onAnimationEnd(): void;
|
|
106
|
+
_onFocus(): void;
|
|
107
|
+
_onBlur(): void;
|
|
108
|
+
_startAnimation(direction: any, smooth?: boolean): void;
|
|
109
|
+
_trigger(direction: any): void;
|
|
110
|
+
onBeVisible(old_h: any, new_h: any, old_v: any, new_v: any): void;
|
|
111
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
112
|
+
showIndicator: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
default: boolean;
|
|
115
|
+
};
|
|
116
|
+
dotSize: {
|
|
117
|
+
type: NumberConstructor;
|
|
118
|
+
default: number;
|
|
119
|
+
};
|
|
120
|
+
dotGap: {
|
|
121
|
+
type: NumberConstructor;
|
|
122
|
+
default: number;
|
|
123
|
+
};
|
|
124
|
+
indicatorPos: {
|
|
125
|
+
type: NumberConstructor;
|
|
126
|
+
default: number;
|
|
127
|
+
};
|
|
128
|
+
indicatorAlign: {
|
|
129
|
+
type: StringConstructor;
|
|
130
|
+
validator(value: unknown): boolean;
|
|
131
|
+
default: string;
|
|
132
|
+
};
|
|
133
|
+
totalFrame: {
|
|
134
|
+
type: NumberConstructor;
|
|
135
|
+
require: boolean;
|
|
136
|
+
};
|
|
137
|
+
firstFrame: {
|
|
138
|
+
type: NumberConstructor;
|
|
139
|
+
default: number;
|
|
140
|
+
};
|
|
141
|
+
layoutInfo: {
|
|
142
|
+
type: ObjectConstructor;
|
|
143
|
+
require: boolean;
|
|
144
|
+
};
|
|
145
|
+
onClick: {
|
|
146
|
+
type: FunctionConstructor;
|
|
147
|
+
};
|
|
148
|
+
onChange: {
|
|
149
|
+
type: FunctionConstructor;
|
|
150
|
+
};
|
|
151
|
+
onEdge: {
|
|
152
|
+
type: FunctionConstructor;
|
|
153
|
+
};
|
|
154
|
+
autoplayInterval: {
|
|
155
|
+
type: NumberConstructor;
|
|
156
|
+
default: number;
|
|
157
|
+
};
|
|
158
|
+
animation: {
|
|
159
|
+
type: ObjectConstructor;
|
|
160
|
+
default(): {
|
|
161
|
+
duration: number;
|
|
162
|
+
easing: string;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
vertical: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
169
|
+
name: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
};
|
|
172
|
+
onFocus: {
|
|
173
|
+
type: FunctionConstructor;
|
|
174
|
+
};
|
|
175
|
+
onBlur: {
|
|
176
|
+
type: FunctionConstructor;
|
|
177
|
+
};
|
|
178
|
+
swipeType: {
|
|
179
|
+
type: StringConstructor;
|
|
180
|
+
default: string;
|
|
181
|
+
};
|
|
182
|
+
smoothTranslate: {
|
|
183
|
+
type: BooleanConstructor;
|
|
184
|
+
default: boolean;
|
|
185
|
+
};
|
|
186
|
+
reverseSwipe: {
|
|
187
|
+
type: BooleanConstructor;
|
|
188
|
+
default: boolean;
|
|
189
|
+
};
|
|
190
|
+
disableLoopWhenFocus: {
|
|
191
|
+
type: BooleanConstructor;
|
|
192
|
+
default: boolean;
|
|
193
|
+
};
|
|
194
|
+
}>>, {
|
|
195
|
+
animation: Record<string, any>;
|
|
196
|
+
vertical: boolean;
|
|
197
|
+
showIndicator: boolean;
|
|
198
|
+
dotSize: number;
|
|
199
|
+
dotGap: number;
|
|
200
|
+
indicatorPos: number;
|
|
201
|
+
indicatorAlign: string;
|
|
202
|
+
firstFrame: number;
|
|
203
|
+
autoplayInterval: number;
|
|
204
|
+
swipeType: string;
|
|
205
|
+
smoothTranslate: boolean;
|
|
206
|
+
reverseSwipe: boolean;
|
|
207
|
+
disableLoopWhenFocus: boolean;
|
|
208
|
+
}>;
|
|
209
|
+
export default _default;
|
|
@@ -0,0 +1,97 @@
|
|
|
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 name?: string | undefined;
|
|
22
|
+
readonly duration?: number | undefined;
|
|
23
|
+
readonly onFocus?: Function | undefined;
|
|
24
|
+
readonly onBlur?: Function | undefined;
|
|
25
|
+
readonly onChange?: Function | undefined;
|
|
26
|
+
readonly onClick?: Function | undefined;
|
|
27
|
+
readonly layoutInfo?: Record<string, any> | undefined;
|
|
28
|
+
readonly dispNumber?: number | undefined;
|
|
29
|
+
readonly initIndex?: number | undefined;
|
|
30
|
+
readonly sideScale?: number | undefined;
|
|
31
|
+
readonly ItemArray?: unknown[] | undefined;
|
|
32
|
+
readonly initItemStyle?: Record<string, any> | undefined;
|
|
33
|
+
};
|
|
34
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
35
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
36
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
37
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
38
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
39
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
40
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
48
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
49
|
+
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;
|
|
50
|
+
};
|
|
51
|
+
$forceUpdate: () => void;
|
|
52
|
+
$nextTick: typeof import("vue").nextTick;
|
|
53
|
+
$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;
|
|
54
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
|
|
55
|
+
$props: {
|
|
56
|
+
readonly name?: string | undefined;
|
|
57
|
+
readonly duration?: number | undefined;
|
|
58
|
+
readonly onFocus?: Function | undefined;
|
|
59
|
+
readonly onBlur?: Function | undefined;
|
|
60
|
+
readonly onChange?: Function | undefined;
|
|
61
|
+
readonly onClick?: Function | undefined;
|
|
62
|
+
readonly layoutInfo?: Record<string, any> | undefined;
|
|
63
|
+
readonly dispNumber?: number | undefined;
|
|
64
|
+
readonly initIndex?: number | undefined;
|
|
65
|
+
readonly sideScale?: number | undefined;
|
|
66
|
+
readonly ItemArray?: unknown[] | undefined;
|
|
67
|
+
readonly initItemStyle?: Record<string, any> | undefined;
|
|
68
|
+
};
|
|
69
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
70
|
+
__isFragment?: undefined;
|
|
71
|
+
__isTeleport?: undefined;
|
|
72
|
+
__isSuspense?: undefined;
|
|
73
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
74
|
+
$props: {
|
|
75
|
+
readonly name?: string | undefined;
|
|
76
|
+
readonly duration?: number | undefined;
|
|
77
|
+
readonly onFocus?: Function | undefined;
|
|
78
|
+
readonly onBlur?: Function | undefined;
|
|
79
|
+
readonly onChange?: Function | undefined;
|
|
80
|
+
readonly onClick?: Function | undefined;
|
|
81
|
+
readonly layoutInfo?: Record<string, any> | undefined;
|
|
82
|
+
readonly dispNumber?: number | undefined;
|
|
83
|
+
readonly initIndex?: number | undefined;
|
|
84
|
+
readonly sideScale?: number | undefined;
|
|
85
|
+
readonly ItemArray?: unknown[] | undefined;
|
|
86
|
+
readonly initItemStyle?: Record<string, any> | undefined;
|
|
87
|
+
};
|
|
88
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
89
|
+
$slots: {
|
|
90
|
+
itemView: (_: {
|
|
91
|
+
dataIndex: any;
|
|
92
|
+
propsItem: any;
|
|
93
|
+
defineSize: any;
|
|
94
|
+
}) => any;
|
|
95
|
+
};
|
|
96
|
+
});
|
|
97
|
+
export default _default;
|
|
@@ -0,0 +1,75 @@
|
|
|
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 verticalAlign?: string | undefined;
|
|
22
|
+
readonly lineAlign?: string | undefined;
|
|
23
|
+
readonly enableLatex?: boolean | undefined;
|
|
24
|
+
readonly textDirection?: string | undefined;
|
|
25
|
+
readonly style?: Record<string, any> | undefined;
|
|
26
|
+
readonly className?: string | undefined;
|
|
27
|
+
};
|
|
28
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
29
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
33
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
34
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
36
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
37
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
38
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
39
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
40
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
42
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
43
|
+
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;
|
|
44
|
+
};
|
|
45
|
+
$forceUpdate: () => void;
|
|
46
|
+
$nextTick: typeof import("vue").nextTick;
|
|
47
|
+
$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;
|
|
48
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{
|
|
49
|
+
$props: {
|
|
50
|
+
readonly verticalAlign?: string | undefined;
|
|
51
|
+
readonly lineAlign?: string | undefined;
|
|
52
|
+
readonly enableLatex?: boolean | undefined;
|
|
53
|
+
readonly textDirection?: string | undefined;
|
|
54
|
+
readonly style?: Record<string, any> | undefined;
|
|
55
|
+
readonly className?: string | undefined;
|
|
56
|
+
};
|
|
57
|
+
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
58
|
+
__isFragment?: undefined;
|
|
59
|
+
__isTeleport?: undefined;
|
|
60
|
+
__isSuspense?: undefined;
|
|
61
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
62
|
+
$props: {
|
|
63
|
+
readonly verticalAlign?: string | undefined;
|
|
64
|
+
readonly lineAlign?: string | undefined;
|
|
65
|
+
readonly enableLatex?: boolean | undefined;
|
|
66
|
+
readonly textDirection?: string | undefined;
|
|
67
|
+
readonly style?: Record<string, any> | undefined;
|
|
68
|
+
readonly className?: string | undefined;
|
|
69
|
+
};
|
|
70
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
71
|
+
$slots: {
|
|
72
|
+
default: (_: {}) => any;
|
|
73
|
+
};
|
|
74
|
+
});
|
|
75
|
+
export default _default;
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
src: StringConstructor;
|
|
3
|
+
top: NumberConstructor;
|
|
4
|
+
left: NumberConstructor;
|
|
5
|
+
width: NumberConstructor;
|
|
6
|
+
height: NumberConstructor;
|
|
7
|
+
borderRadius: (StringConstructor | NumberConstructor)[];
|
|
8
|
+
decorate: ObjectConstructor;
|
|
9
|
+
animation: StringConstructor;
|
|
10
|
+
duration: NumberConstructor;
|
|
11
|
+
transform: StringConstructor;
|
|
12
|
+
transformOrigin: StringConstructor;
|
|
13
|
+
repeat: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
default: number;
|
|
16
|
+
};
|
|
17
|
+
delay: {
|
|
18
|
+
type: NumberConstructor;
|
|
19
|
+
default: number;
|
|
20
|
+
};
|
|
21
|
+
easing: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
onAnimationEnd: FunctionConstructor;
|
|
26
|
+
autoStart: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
texCoord: {
|
|
31
|
+
type: ObjectConstructor;
|
|
32
|
+
};
|
|
33
|
+
}, {
|
|
34
|
+
animName: string;
|
|
35
|
+
animDiv: null;
|
|
36
|
+
clipDiv: null;
|
|
37
|
+
imgDiv: null;
|
|
38
|
+
watcherHandlerList: never[];
|
|
39
|
+
}, any, {
|
|
40
|
+
animSet(): string;
|
|
41
|
+
textureLayout(): {
|
|
42
|
+
position: string;
|
|
43
|
+
left: string;
|
|
44
|
+
top: string;
|
|
45
|
+
transition: string;
|
|
46
|
+
width: string;
|
|
47
|
+
height: string;
|
|
48
|
+
} | {
|
|
49
|
+
position: string;
|
|
50
|
+
left: string;
|
|
51
|
+
top: string;
|
|
52
|
+
width: string;
|
|
53
|
+
height: string;
|
|
54
|
+
transition?: undefined;
|
|
55
|
+
};
|
|
56
|
+
maskStyle(): {
|
|
57
|
+
left: string;
|
|
58
|
+
top: string;
|
|
59
|
+
borderRadius: string;
|
|
60
|
+
width: string;
|
|
61
|
+
height: string;
|
|
62
|
+
overflow: string;
|
|
63
|
+
transition?: undefined;
|
|
64
|
+
webkitMaskBoxImageSource?: undefined;
|
|
65
|
+
webkitMaskBoxImageSlice?: undefined;
|
|
66
|
+
webkitMaskBoxImageWidth?: undefined;
|
|
67
|
+
webkitMaskBoxImageOutset?: undefined;
|
|
68
|
+
position?: undefined;
|
|
69
|
+
} | {
|
|
70
|
+
left: string;
|
|
71
|
+
top: string;
|
|
72
|
+
width: string;
|
|
73
|
+
height: string;
|
|
74
|
+
transition: string;
|
|
75
|
+
webkitMaskBoxImageSource: any;
|
|
76
|
+
webkitMaskBoxImageSlice: number;
|
|
77
|
+
webkitMaskBoxImageWidth: string;
|
|
78
|
+
webkitMaskBoxImageOutset: string;
|
|
79
|
+
position: string;
|
|
80
|
+
borderRadius?: undefined;
|
|
81
|
+
overflow?: undefined;
|
|
82
|
+
} | {
|
|
83
|
+
left: string;
|
|
84
|
+
top: string;
|
|
85
|
+
width: string;
|
|
86
|
+
height: string;
|
|
87
|
+
overflow: string;
|
|
88
|
+
borderRadius?: undefined;
|
|
89
|
+
transition?: undefined;
|
|
90
|
+
webkitMaskBoxImageSource?: undefined;
|
|
91
|
+
webkitMaskBoxImageSlice?: undefined;
|
|
92
|
+
webkitMaskBoxImageWidth?: undefined;
|
|
93
|
+
webkitMaskBoxImageOutset?: undefined;
|
|
94
|
+
position?: undefined;
|
|
95
|
+
} | undefined;
|
|
96
|
+
}, {
|
|
97
|
+
_readRadius(setting: any): {
|
|
98
|
+
type: string;
|
|
99
|
+
topLeft: number;
|
|
100
|
+
topRight: number;
|
|
101
|
+
bottomRight: number;
|
|
102
|
+
bottomLeft: number;
|
|
103
|
+
} | {
|
|
104
|
+
type: string;
|
|
105
|
+
topLeft: string;
|
|
106
|
+
topRight: string;
|
|
107
|
+
bottomRight: string;
|
|
108
|
+
bottomLeft: string;
|
|
109
|
+
} | null;
|
|
110
|
+
start(): void;
|
|
111
|
+
insertKeyframe(animDefine: any): void;
|
|
112
|
+
removeKeyframe(animName: any): void;
|
|
113
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
+
src: StringConstructor;
|
|
115
|
+
top: NumberConstructor;
|
|
116
|
+
left: NumberConstructor;
|
|
117
|
+
width: NumberConstructor;
|
|
118
|
+
height: NumberConstructor;
|
|
119
|
+
borderRadius: (StringConstructor | NumberConstructor)[];
|
|
120
|
+
decorate: ObjectConstructor;
|
|
121
|
+
animation: StringConstructor;
|
|
122
|
+
duration: NumberConstructor;
|
|
123
|
+
transform: StringConstructor;
|
|
124
|
+
transformOrigin: StringConstructor;
|
|
125
|
+
repeat: {
|
|
126
|
+
type: NumberConstructor;
|
|
127
|
+
default: number;
|
|
128
|
+
};
|
|
129
|
+
delay: {
|
|
130
|
+
type: NumberConstructor;
|
|
131
|
+
default: number;
|
|
132
|
+
};
|
|
133
|
+
easing: {
|
|
134
|
+
type: StringConstructor;
|
|
135
|
+
default: string;
|
|
136
|
+
};
|
|
137
|
+
onAnimationEnd: FunctionConstructor;
|
|
138
|
+
autoStart: {
|
|
139
|
+
type: BooleanConstructor;
|
|
140
|
+
default: boolean;
|
|
141
|
+
};
|
|
142
|
+
texCoord: {
|
|
143
|
+
type: ObjectConstructor;
|
|
144
|
+
};
|
|
145
|
+
}>>, {
|
|
146
|
+
repeat: number;
|
|
147
|
+
easing: string;
|
|
148
|
+
delay: number;
|
|
149
|
+
autoStart: boolean;
|
|
150
|
+
}>;
|
|
151
|
+
export default _default;
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
src: StringConstructor;
|
|
3
|
+
top: NumberConstructor;
|
|
4
|
+
left: NumberConstructor;
|
|
5
|
+
width: NumberConstructor;
|
|
6
|
+
height: NumberConstructor;
|
|
7
|
+
borderRadius: (StringConstructor | NumberConstructor)[];
|
|
8
|
+
decorate: ObjectConstructor;
|
|
9
|
+
animation: StringConstructor;
|
|
10
|
+
duration: NumberConstructor;
|
|
11
|
+
transform: StringConstructor;
|
|
12
|
+
transformOrigin: StringConstructor;
|
|
13
|
+
onAnimationEnd: FunctionConstructor;
|
|
14
|
+
repeat: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
delay: {
|
|
19
|
+
type: NumberConstructor;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
easing: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
autoStart: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
texCoord: {
|
|
31
|
+
type: ObjectConstructor;
|
|
32
|
+
};
|
|
33
|
+
}, {
|
|
34
|
+
forgeAnimation: null;
|
|
35
|
+
innerViewId: number;
|
|
36
|
+
}, any, {}, {
|
|
37
|
+
_createForgeView(view_texture: any, decorate_setting: any): any;
|
|
38
|
+
_readRadius(setting: any): {
|
|
39
|
+
type: string;
|
|
40
|
+
topLeft: number;
|
|
41
|
+
topRight: number;
|
|
42
|
+
bottomRight: number;
|
|
43
|
+
bottomLeft: number;
|
|
44
|
+
} | {
|
|
45
|
+
type: string;
|
|
46
|
+
topLeft: string;
|
|
47
|
+
topRight: string;
|
|
48
|
+
bottomRight: string;
|
|
49
|
+
bottomLeft: string;
|
|
50
|
+
} | null;
|
|
51
|
+
_createLayoutViewWithDecorate(view_texture: any, decorate_setting: any): any;
|
|
52
|
+
_createNinePatchAlphaMixView(view_texture: any, decorate_setting: any): any;
|
|
53
|
+
_createBorderRadius(view_texture: any, decorate_setting: any): any;
|
|
54
|
+
_onAnimationEnd(): void;
|
|
55
|
+
_updateTexCoord(): void;
|
|
56
|
+
start(): void;
|
|
57
|
+
getTransition(): string;
|
|
58
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
src: StringConstructor;
|
|
60
|
+
top: NumberConstructor;
|
|
61
|
+
left: NumberConstructor;
|
|
62
|
+
width: NumberConstructor;
|
|
63
|
+
height: NumberConstructor;
|
|
64
|
+
borderRadius: (StringConstructor | NumberConstructor)[];
|
|
65
|
+
decorate: ObjectConstructor;
|
|
66
|
+
animation: StringConstructor;
|
|
67
|
+
duration: NumberConstructor;
|
|
68
|
+
transform: StringConstructor;
|
|
69
|
+
transformOrigin: StringConstructor;
|
|
70
|
+
onAnimationEnd: FunctionConstructor;
|
|
71
|
+
repeat: {
|
|
72
|
+
type: NumberConstructor;
|
|
73
|
+
default: number;
|
|
74
|
+
};
|
|
75
|
+
delay: {
|
|
76
|
+
type: NumberConstructor;
|
|
77
|
+
default: number;
|
|
78
|
+
};
|
|
79
|
+
easing: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
autoStart: {
|
|
84
|
+
type: BooleanConstructor;
|
|
85
|
+
default: boolean;
|
|
86
|
+
};
|
|
87
|
+
texCoord: {
|
|
88
|
+
type: ObjectConstructor;
|
|
89
|
+
};
|
|
90
|
+
}>>, {
|
|
91
|
+
repeat: number;
|
|
92
|
+
easing: string;
|
|
93
|
+
delay: number;
|
|
94
|
+
autoStart: boolean;
|
|
95
|
+
}>;
|
|
96
|
+
export default _default;
|
|
97
|
+
export namespace TexAlignAnchor {
|
|
98
|
+
const LEFT_TOP: number;
|
|
99
|
+
const CENTER_TOP: number;
|
|
100
|
+
const RIGHT_TOP: number;
|
|
101
|
+
const LEFT_MIDDLE: number;
|
|
102
|
+
const CENTER: number;
|
|
103
|
+
const RIGHT_MIDDLE: number;
|
|
104
|
+
const LEFT_BOTTOM: number;
|
|
105
|
+
const CENTER_BOTTOM: number;
|
|
106
|
+
const RIGHT_BOTTOM: number;
|
|
107
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from "./CommonType";
|
|
2
|
+
export default _JsvTextureAnim;
|
|
3
|
+
declare let _JsvTextureAnim: any;
|
|
4
|
+
export const TexAlignAnchor: {
|
|
5
|
+
LEFT_TOP: number;
|
|
6
|
+
CENTER_TOP: number;
|
|
7
|
+
RIGHT_TOP: number;
|
|
8
|
+
LEFT_MIDDLE: number;
|
|
9
|
+
CENTER: number;
|
|
10
|
+
RIGHT_MIDDLE: number;
|
|
11
|
+
LEFT_BOTTOM: number;
|
|
12
|
+
CENTER_BOTTOM: number;
|
|
13
|
+
RIGHT_BOTTOM: number;
|
|
14
|
+
};
|