UNPKG

2.71 kBJavaScriptView Raw
1/*!
2 * VERSION: 2.1.3
3 * DATE: 2019-05-17
4 * UPDATES AND DOCS AT: http://greensock.com
5 *
6 * @license Copyright (c) 2008-2019, GreenSock. All rights reserved.
7 * This work is subject to the terms at http://greensock.com/standard-license or for
8 * Club GreenSock members, the software agreement that was issued with your membership.
9 *
10 * @author: Jack Doyle, jack@greensock.com
11 **/
12import TweenLite, {Ease, Power0, Power1, Power2, Power3, Power4, Linear, _gsScope} from "./TweenLite.js";
13
14import TweenMax from "./TweenMaxBase.js";
15import TimelineLite from "./TimelineLite.js";
16import TimelineMax from "./TimelineMax.js";
17
18// plugins
19import AttrPlugin from "./AttrPlugin.js";
20import BezierPlugin from "./BezierPlugin.js";
21import ColorPropsPlugin from "./ColorPropsPlugin.js";
22import CSSPlugin from "./CSSPlugin.js";
23import CSSRulePlugin from "./CSSRulePlugin.js";
24import DirectionalRotationPlugin from "./DirectionalRotationPlugin.js";
25import EaselPlugin from "./EaselPlugin.js";
26import EndArrayPlugin from "./EndArrayPlugin.js";
27import ModifiersPlugin from "./ModifiersPlugin.js";
28import PixiPlugin from "./PixiPlugin.js";
29import RoundPropsPlugin from "./RoundPropsPlugin.js";
30import ScrollToPlugin from "./ScrollToPlugin.js";
31import TextPlugin from "./TextPlugin.js";
32
33
34// utils
35import Draggable from "./Draggable.js";
36
37// easing
38import {
39 Back,
40 Elastic,
41 Bounce,
42 RoughEase,
43 SlowMo,
44 SteppedEase,
45 Circ,
46 Expo,
47 Sine,
48 ExpoScaleEase
49} from "./EasePack.js";
50
51// bonus tools
52/*
53import DrawSVGPlugin from "./DrawSVGPlugin.js";
54import MorphSVGPlugin from "./MorphSVGPlugin.js";
55import Physics2DPlugin from "./Physics2DPlugin.js";
56import PhysicsPropsPlugin from "./PhysicsPropsPlugin.js";
57import ScrambleTextPlugin from "./ScrambleTextPlugin.js";
58import ThrowPropsPlugin from "./ThrowPropsPlugin.js";
59import GSDevTools from "./GSDevTools.js";
60import SplitText from "./SplitText.js";
61import CustomBounce from "./CustomBounce.js";
62import CustomEase from "./CustomEase.js";
63import CustomWiggle from "./CustomWiggle.js";
64
65export {
66 DrawSVGPlugin,
67 MorphSVGPlugin,
68 Physics2DPlugin,
69 PhysicsPropsPlugin,
70 ScrambleTextPlugin,
71 ThrowPropsPlugin,
72 GSDevTools,
73 SplitText,
74 CustomBounce,
75 CustomEase,
76 CustomWiggle
77}
78*/
79
80
81
82export {
83 TweenLite,
84 TweenMax,
85 TimelineLite,
86 TimelineMax,
87 _gsScope,
88
89 // plugins
90 AttrPlugin,
91 BezierPlugin,
92 ColorPropsPlugin,
93 CSSPlugin,
94 CSSRulePlugin,
95 DirectionalRotationPlugin,
96 EaselPlugin,
97 EndArrayPlugin,
98 ModifiersPlugin,
99 PixiPlugin,
100 RoundPropsPlugin,
101 ScrollToPlugin,
102 TextPlugin,
103
104 // utils
105 Draggable,
106
107 // easing
108 Ease,
109 Power0,
110 Power1,
111 Power2,
112 Power3,
113 Power4,
114 Linear,
115 Back,
116 Elastic,
117 Bounce,
118 RoughEase,
119 SlowMo,
120 SteppedEase,
121 Circ,
122 Expo,
123 Sine,
124 ExpoScaleEase
125
126};
\No newline at end of file