tsparticles 1.34.1 → 1.35.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.
- package/167.js +1775 -0
- package/Core/Canvas.d.ts +0 -1
- package/Core/Canvas.js +37 -56
- package/Core/Container.js +66 -81
- package/Core/Interfaces/IParticle.d.ts +11 -15
- package/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/Core/Interfaces/IParticleRetinaProps.js +2 -0
- package/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/Core/Interfaces/IParticleRoll.js +2 -0
- package/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/Core/Interfaces/IParticleWobble.js +2 -0
- package/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/Core/Interfaces/IParticlesFrequencies.js +2 -0
- package/Core/Interfaces/index.d.ts +3 -2
- package/Core/Interfaces/index.js +3 -2
- package/Core/Loader.js +66 -83
- package/Core/Particle/Mover.js +14 -13
- package/Core/Particle/Vector.js +2 -2
- package/Core/Particle.d.ts +16 -28
- package/Core/Particle.js +76 -280
- package/Core/Particles.d.ts +2 -3
- package/Core/Particles.js +16 -14
- package/Core/Retina.js +12 -14
- package/Enums/Modes/RollMode.d.ts +5 -0
- package/Enums/Modes/RollMode.js +9 -0
- package/Enums/Modes/index.d.ts +1 -0
- package/Enums/Modes/index.js +1 -0
- package/Interactions/External/Attract/Attractor.js +5 -5
- package/Interactions/External/Bounce/Bouncer.js +7 -7
- package/Interactions/External/Bubble/Bubbler.js +21 -20
- package/Interactions/External/Connect/Connector.js +1 -1
- package/Interactions/External/Grab/Grabber.js +4 -4
- package/Interactions/External/Repulse/Repulser.js +8 -8
- package/Interactions/External/Trail/TrailMaker.js +2 -2
- package/Interactions/Particles/Attract/Attractor.js +2 -2
- package/Interactions/Particles/Collisions/Collider.js +4 -4
- package/Interactions/Particles/Links/LinkInstance.js +11 -11
- package/Interactions/Particles/Links/Linker.js +6 -6
- package/Interactions/Particles/Links/index.js +1 -1
- package/Options/Classes/AnimatableColor.d.ts +2 -2
- package/Options/Classes/AnimatableColor.js +8 -2
- package/Options/Classes/AnimatableGradient.js +1 -1
- package/Options/Classes/ColorAnimation.js +1 -1
- package/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/Options/Classes/Interactivity/Modes/Trail.js +1 -1
- package/Options/Classes/ManualParticle.js +1 -1
- package/Options/Classes/Options.d.ts +4 -1
- package/Options/Classes/Options.js +25 -12
- package/Options/Classes/OptionsColor.d.ts +1 -1
- package/Options/Classes/OptionsColor.js +2 -1
- package/Options/Classes/Particles/Destroy/Split.js +1 -1
- package/Options/Classes/Particles/Move/Move.js +3 -3
- package/Options/Classes/Particles/Move/Path/Path.js +1 -1
- package/Options/Classes/Particles/Move/Spin.js +2 -2
- package/Options/Classes/Particles/Opacity/Opacity.js +1 -1
- package/Options/Classes/Particles/ParticlesOptions.js +2 -2
- package/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/Options/Classes/Particles/Roll/Roll.js +6 -1
- package/Options/Classes/Particles/Shape/Shape.js +5 -5
- package/Options/Classes/Particles/Size/Size.js +1 -1
- package/Options/Classes/Particles/Wobble/Wobble.js +2 -2
- package/Options/Classes/Responsive.js +1 -1
- package/Options/Classes/Theme/Theme.js +1 -1
- package/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/Options/Classes/Theme/ThemeDefault.js +7 -3
- package/Options/Classes/ValueWithRandom.js +1 -1
- package/Options/Interfaces/IOptions.d.ts +3 -3
- package/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/Plugins/Absorbers/AbsorberInstance.js +9 -8
- package/Plugins/Absorbers/Absorbers.js +2 -2
- package/Plugins/Absorbers/plugin.js +1 -1
- package/Plugins/Emitters/EmitterInstance.js +10 -10
- package/Plugins/Emitters/Emitters.js +3 -3
- package/Plugins/Emitters/Options/Classes/Emitter.js +1 -1
- package/Plugins/Emitters/Options/Classes/EmitterRate.js +2 -2
- package/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/Plugins/Emitters/plugin.js +1 -1
- package/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/Plugins/PolygonMask/Options/Classes/DrawStroke.js +1 -1
- package/Plugins/PolygonMask/Options/Classes/PolygonMask.js +1 -1
- package/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/Plugins/PolygonMask/PolygonMaskInstance.js +53 -178
- package/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/Plugins/PolygonMask/pathseg.js +1532 -0
- package/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/Plugins/PolygonMask/plugin.js +23 -1
- package/Plugins/PolygonMask/types.d.ts +8 -0
- package/Plugins/PolygonMask/types.js +2 -0
- package/Plugins/PolygonMask/utils.d.ts +11 -0
- package/Plugins/PolygonMask/utils.js +121 -0
- package/README.md +0 -6
- package/Shapes/Image/ImageDrawer.js +68 -83
- package/Shapes/Image/Utils.js +19 -30
- package/Shapes/Text/TextDrawer.js +15 -26
- package/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/Updaters/Angle/AngleUpdater.js +46 -10
- package/Updaters/Angle/index.js +1 -1
- package/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/Updaters/Color/ColorUpdater.js +10 -1
- package/Updaters/Color/index.js +1 -1
- package/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/Updaters/Life/LifeUpdater.js +7 -5
- package/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/Updaters/Opacity/OpacityUpdater.js +46 -1
- package/Updaters/Opacity/index.js +1 -1
- package/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/Updaters/OutModes/OutOfCanvasUpdater.js +9 -7
- package/Updaters/OutModes/Utils.js +2 -2
- package/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/Updaters/Roll/RollUpdater.js +42 -6
- package/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/Updaters/Size/SizeUpdater.js +3 -1
- package/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/Updaters/StrokeColor/index.js +1 -1
- package/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/Updaters/Tilt/TiltUpdater.js +37 -0
- package/Updaters/Tilt/index.js +1 -1
- package/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/Updaters/Wobble/index.js +1 -1
- package/Utils/CanvasUtils.d.ts +2 -0
- package/Utils/CanvasUtils.js +36 -24
- package/Utils/Circle.js +1 -1
- package/Utils/ColorUtils.js +7 -7
- package/Utils/EventListeners.d.ts +2 -0
- package/Utils/EventListeners.js +16 -1
- package/Utils/NumberUtils.js +4 -4
- package/Utils/QuadTree.js +1 -1
- package/Utils/Utils.d.ts +1 -27
- package/Utils/Utils.js +11 -22
- package/browser/Core/Canvas.d.ts +0 -1
- package/browser/Core/Canvas.js +17 -36
- package/browser/Core/Container.js +64 -79
- package/browser/Core/Interfaces/IParticle.d.ts +11 -15
- package/browser/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/browser/Core/Interfaces/IParticleRetinaProps.js +1 -0
- package/browser/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/browser/Core/Interfaces/IParticleRoll.js +1 -0
- package/browser/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/browser/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/browser/Core/Interfaces/IParticleWobble.js +1 -0
- package/browser/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/browser/Core/Interfaces/IParticlesFrequencies.js +1 -0
- package/browser/Core/Interfaces/index.d.ts +3 -2
- package/browser/Core/Interfaces/index.js +3 -2
- package/browser/Core/Loader.js +66 -83
- package/browser/Core/Particle/Mover.js +8 -7
- package/browser/Core/Particle/Vector.js +2 -2
- package/browser/Core/Particle.d.ts +16 -28
- package/browser/Core/Particle.js +60 -264
- package/browser/Core/Particles.d.ts +2 -3
- package/browser/Core/Particles.js +11 -9
- package/browser/Core/Retina.js +10 -12
- package/browser/Enums/Modes/RollMode.d.ts +5 -0
- package/browser/Enums/Modes/RollMode.js +6 -0
- package/browser/Enums/Modes/index.d.ts +1 -0
- package/browser/Enums/Modes/index.js +1 -0
- package/browser/Interactions/External/Bounce/Bouncer.js +1 -1
- package/browser/Interactions/External/Bubble/Bubbler.js +4 -3
- package/browser/Interactions/External/Repulse/Repulser.js +1 -1
- package/browser/Interactions/Particles/Attract/Attractor.js +1 -1
- package/browser/Interactions/Particles/Links/LinkInstance.js +2 -2
- package/browser/Interactions/Particles/Links/Linker.js +1 -1
- package/browser/Options/Classes/AnimatableColor.d.ts +2 -2
- package/browser/Options/Classes/AnimatableColor.js +8 -2
- package/browser/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/browser/Options/Classes/Options.d.ts +4 -1
- package/browser/Options/Classes/Options.js +25 -12
- package/browser/Options/Classes/OptionsColor.d.ts +1 -1
- package/browser/Options/Classes/OptionsColor.js +2 -1
- package/browser/Options/Classes/Particles/ParticlesOptions.js +1 -1
- package/browser/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/browser/Options/Classes/Particles/Roll/Roll.js +5 -0
- package/browser/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/browser/Options/Classes/Theme/ThemeDefault.js +6 -2
- package/browser/Options/Interfaces/IOptions.d.ts +3 -3
- package/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/browser/Plugins/Absorbers/AbsorberInstance.js +2 -1
- package/browser/Plugins/Emitters/EmitterInstance.js +1 -1
- package/browser/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/browser/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
- package/browser/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/browser/Plugins/PolygonMask/pathseg.js +1532 -0
- package/browser/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/browser/Plugins/PolygonMask/plugin.js +4 -1
- package/browser/Plugins/PolygonMask/types.d.ts +8 -0
- package/browser/Plugins/PolygonMask/types.js +1 -0
- package/browser/Plugins/PolygonMask/utils.d.ts +11 -0
- package/browser/Plugins/PolygonMask/utils.js +113 -0
- package/browser/Shapes/Image/ImageDrawer.js +67 -82
- package/browser/Shapes/Image/Utils.js +17 -28
- package/browser/Shapes/Text/TextDrawer.js +14 -25
- package/browser/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/browser/Updaters/Angle/AngleUpdater.js +47 -11
- package/browser/Updaters/Angle/index.js +1 -1
- package/browser/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/browser/Updaters/Color/ColorUpdater.js +10 -1
- package/browser/Updaters/Color/index.js +1 -1
- package/browser/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/browser/Updaters/Life/LifeUpdater.js +2 -0
- package/browser/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/browser/Updaters/Opacity/OpacityUpdater.js +47 -2
- package/browser/Updaters/Opacity/index.js +1 -1
- package/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/browser/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
- package/browser/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/browser/Updaters/Roll/RollUpdater.js +42 -6
- package/browser/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/browser/Updaters/Size/SizeUpdater.js +2 -0
- package/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/browser/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/browser/Updaters/StrokeColor/index.js +1 -1
- package/browser/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/browser/Updaters/Tilt/TiltUpdater.js +38 -1
- package/browser/Updaters/Tilt/index.js +1 -1
- package/browser/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/browser/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/browser/Updaters/Wobble/index.js +1 -1
- package/browser/Utils/CanvasUtils.d.ts +2 -0
- package/browser/Utils/CanvasUtils.js +19 -8
- package/browser/Utils/EventListeners.d.ts +2 -0
- package/browser/Utils/EventListeners.js +15 -0
- package/browser/Utils/NumberUtils.js +4 -4
- package/browser/Utils/Utils.d.ts +1 -27
- package/browser/Utils/Utils.js +6 -17
- package/browser/index.d.ts +5 -5
- package/browser/index.js +5 -5
- package/browser/index.slim.d.ts +5 -5
- package/browser/index.slim.js +5 -5
- package/browser/main.js +8 -25
- package/esm/Core/Canvas.d.ts +0 -1
- package/esm/Core/Canvas.js +17 -36
- package/esm/Core/Container.js +64 -79
- package/esm/Core/Interfaces/IParticle.d.ts +11 -15
- package/esm/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/esm/Core/Interfaces/IParticleRetinaProps.js +1 -0
- package/esm/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/esm/Core/Interfaces/IParticleRoll.js +1 -0
- package/esm/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/esm/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/esm/Core/Interfaces/IParticleWobble.js +1 -0
- package/esm/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/esm/Core/Interfaces/IParticlesFrequencies.js +1 -0
- package/esm/Core/Interfaces/index.d.ts +3 -2
- package/esm/Core/Interfaces/index.js +3 -2
- package/esm/Core/Loader.js +66 -83
- package/esm/Core/Particle/Mover.js +8 -7
- package/esm/Core/Particle/Vector.js +2 -2
- package/esm/Core/Particle.d.ts +16 -28
- package/esm/Core/Particle.js +60 -264
- package/esm/Core/Particles.d.ts +2 -3
- package/esm/Core/Particles.js +11 -9
- package/esm/Core/Retina.js +10 -12
- package/esm/Enums/Modes/RollMode.d.ts +5 -0
- package/esm/Enums/Modes/RollMode.js +6 -0
- package/esm/Enums/Modes/index.d.ts +1 -0
- package/esm/Enums/Modes/index.js +1 -0
- package/esm/Interactions/External/Bounce/Bouncer.js +1 -1
- package/esm/Interactions/External/Bubble/Bubbler.js +4 -3
- package/esm/Interactions/External/Repulse/Repulser.js +1 -1
- package/esm/Interactions/Particles/Attract/Attractor.js +1 -1
- package/esm/Interactions/Particles/Links/LinkInstance.js +2 -2
- package/esm/Interactions/Particles/Links/Linker.js +1 -1
- package/esm/Options/Classes/AnimatableColor.d.ts +2 -2
- package/esm/Options/Classes/AnimatableColor.js +8 -2
- package/esm/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/esm/Options/Classes/Options.d.ts +4 -1
- package/esm/Options/Classes/Options.js +25 -12
- package/esm/Options/Classes/OptionsColor.d.ts +1 -1
- package/esm/Options/Classes/OptionsColor.js +2 -1
- package/esm/Options/Classes/Particles/ParticlesOptions.js +1 -1
- package/esm/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/esm/Options/Classes/Particles/Roll/Roll.js +5 -0
- package/esm/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/esm/Options/Classes/Theme/ThemeDefault.js +6 -2
- package/esm/Options/Interfaces/IOptions.d.ts +3 -3
- package/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/esm/Plugins/Absorbers/AbsorberInstance.js +2 -1
- package/esm/Plugins/Emitters/EmitterInstance.js +1 -1
- package/esm/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/esm/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
- package/esm/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/esm/Plugins/PolygonMask/pathseg.js +1532 -0
- package/esm/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/esm/Plugins/PolygonMask/plugin.js +4 -1
- package/esm/Plugins/PolygonMask/types.d.ts +8 -0
- package/esm/Plugins/PolygonMask/types.js +1 -0
- package/esm/Plugins/PolygonMask/utils.d.ts +11 -0
- package/esm/Plugins/PolygonMask/utils.js +113 -0
- package/esm/Shapes/Image/ImageDrawer.js +67 -82
- package/esm/Shapes/Image/Utils.js +17 -28
- package/esm/Shapes/Text/TextDrawer.js +14 -25
- package/esm/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/esm/Updaters/Angle/AngleUpdater.js +47 -11
- package/esm/Updaters/Angle/index.js +1 -1
- package/esm/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/esm/Updaters/Color/ColorUpdater.js +10 -1
- package/esm/Updaters/Color/index.js +1 -1
- package/esm/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/esm/Updaters/Life/LifeUpdater.js +2 -0
- package/esm/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/esm/Updaters/Opacity/OpacityUpdater.js +47 -2
- package/esm/Updaters/Opacity/index.js +1 -1
- package/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/esm/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
- package/esm/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/esm/Updaters/Roll/RollUpdater.js +42 -6
- package/esm/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/esm/Updaters/Size/SizeUpdater.js +2 -0
- package/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/esm/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/esm/Updaters/StrokeColor/index.js +1 -1
- package/esm/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/esm/Updaters/Tilt/TiltUpdater.js +38 -1
- package/esm/Updaters/Tilt/index.js +1 -1
- package/esm/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/esm/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/esm/Updaters/Wobble/index.js +1 -1
- package/esm/Utils/CanvasUtils.d.ts +2 -0
- package/esm/Utils/CanvasUtils.js +19 -8
- package/esm/Utils/EventListeners.d.ts +2 -0
- package/esm/Utils/EventListeners.js +15 -0
- package/esm/Utils/NumberUtils.js +4 -4
- package/esm/Utils/Utils.d.ts +1 -27
- package/esm/Utils/Utils.js +6 -17
- package/esm/index.d.ts +5 -5
- package/esm/index.js +5 -5
- package/esm/index.slim.d.ts +5 -5
- package/esm/index.slim.js +5 -5
- package/esm/main.js +8 -25
- package/full.js +4 -4
- package/index.d.ts +5 -5
- package/index.js +7 -23
- package/index.slim.d.ts +5 -5
- package/index.slim.js +7 -23
- package/main.js +8 -25
- package/package.json +1 -4
- package/report.html +2 -2
- package/report.slim.html +2 -2
- package/slim.js +27 -27
- package/tsparticles.js +1139 -1132
- package/tsparticles.min.js +2 -2
- package/tsparticles.slim.js +830 -1035
- package/tsparticles.slim.min.js +2 -2
- package/ts3.4/Core/Canvas.d.ts +0 -36
- package/ts3.4/Core/Container.d.ts +0 -64
- package/ts3.4/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/Core/FrameManager.d.ts +0 -6
- package/ts3.4/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/Core/Loader.d.ts +0 -14
- package/ts3.4/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/Core/Particle.d.ts +0 -84
- package/ts3.4/Core/Particles.d.ts +0 -45
- package/ts3.4/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/Core/Retina.d.ts +0 -26
- package/ts3.4/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/Enums/Types/index.d.ts +0 -9
- package/ts3.4/Enums/index.d.ts +0 -5
- package/ts3.4/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/Types/PathOptions.d.ts +0 -3
- package/ts3.4/Types/RangeValue.d.ts +0 -2
- package/ts3.4/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/Types/ShapeData.d.ts +0 -5
- package/ts3.4/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/Types/index.d.ts +0 -6
- package/ts3.4/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/Utils/Circle.d.ts +0 -8
- package/ts3.4/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/Utils/Constants.d.ts +0 -18
- package/ts3.4/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/Utils/Plugins.d.ts +0 -22
- package/ts3.4/Utils/Point.d.ts +0 -7
- package/ts3.4/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/Utils/Range.d.ts +0 -7
- package/ts3.4/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/Utils/Utils.d.ts +0 -65
- package/ts3.4/Utils/index.d.ts +0 -13
- package/ts3.4/browser/Core/Canvas.d.ts +0 -36
- package/ts3.4/browser/Core/Container.d.ts +0 -64
- package/ts3.4/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/browser/Core/FrameManager.d.ts +0 -6
- package/ts3.4/browser/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/browser/Core/Loader.d.ts +0 -14
- package/ts3.4/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/browser/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/browser/Core/Particle.d.ts +0 -84
- package/ts3.4/browser/Core/Particles.d.ts +0 -45
- package/ts3.4/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/browser/Core/Retina.d.ts +0 -26
- package/ts3.4/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/index.d.ts +0 -9
- package/ts3.4/browser/Enums/index.d.ts +0 -5
- package/ts3.4/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/browser/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/browser/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/browser/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/browser/Types/PathOptions.d.ts +0 -3
- package/ts3.4/browser/Types/RangeValue.d.ts +0 -2
- package/ts3.4/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/browser/Types/ShapeData.d.ts +0 -5
- package/ts3.4/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/browser/Types/index.d.ts +0 -6
- package/ts3.4/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/browser/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/browser/Utils/Circle.d.ts +0 -8
- package/ts3.4/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/browser/Utils/Constants.d.ts +0 -18
- package/ts3.4/browser/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/browser/Utils/Plugins.d.ts +0 -22
- package/ts3.4/browser/Utils/Point.d.ts +0 -7
- package/ts3.4/browser/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/browser/Utils/Range.d.ts +0 -7
- package/ts3.4/browser/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/browser/Utils/Utils.d.ts +0 -65
- package/ts3.4/browser/Utils/index.d.ts +0 -13
- package/ts3.4/browser/full.d.ts +0 -2
- package/ts3.4/browser/index.d.ts +0 -31
- package/ts3.4/browser/index.slim.d.ts +0 -25
- package/ts3.4/browser/main.d.ts +0 -24
- package/ts3.4/browser/pjs.d.ts +0 -14
- package/ts3.4/browser/slim.d.ts +0 -2
- package/ts3.4/esm/Core/Canvas.d.ts +0 -36
- package/ts3.4/esm/Core/Container.d.ts +0 -64
- package/ts3.4/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/esm/Core/FrameManager.d.ts +0 -6
- package/ts3.4/esm/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/esm/Core/Loader.d.ts +0 -14
- package/ts3.4/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/esm/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/esm/Core/Particle.d.ts +0 -84
- package/ts3.4/esm/Core/Particles.d.ts +0 -45
- package/ts3.4/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/esm/Core/Retina.d.ts +0 -26
- package/ts3.4/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/index.d.ts +0 -9
- package/ts3.4/esm/Enums/index.d.ts +0 -5
- package/ts3.4/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/esm/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/esm/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/esm/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/esm/Types/PathOptions.d.ts +0 -3
- package/ts3.4/esm/Types/RangeValue.d.ts +0 -2
- package/ts3.4/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/esm/Types/ShapeData.d.ts +0 -5
- package/ts3.4/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/esm/Types/index.d.ts +0 -6
- package/ts3.4/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/esm/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/esm/Utils/Circle.d.ts +0 -8
- package/ts3.4/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/esm/Utils/Constants.d.ts +0 -18
- package/ts3.4/esm/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/esm/Utils/Plugins.d.ts +0 -22
- package/ts3.4/esm/Utils/Point.d.ts +0 -7
- package/ts3.4/esm/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/esm/Utils/Range.d.ts +0 -7
- package/ts3.4/esm/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/esm/Utils/Utils.d.ts +0 -65
- package/ts3.4/esm/Utils/index.d.ts +0 -13
- package/ts3.4/esm/full.d.ts +0 -2
- package/ts3.4/esm/index.d.ts +0 -31
- package/ts3.4/esm/index.slim.d.ts +0 -25
- package/ts3.4/esm/main.d.ts +0 -24
- package/ts3.4/esm/pjs.d.ts +0 -14
- package/ts3.4/esm/slim.d.ts +0 -2
- package/ts3.4/full.d.ts +0 -2
- package/ts3.4/index.d.ts +0 -31
- package/ts3.4/index.slim.d.ts +0 -25
- package/ts3.4/main.d.ts +0 -24
- package/ts3.4/pjs.d.ts +0 -14
- package/ts3.4/slim.d.ts +0 -2
- package/ts3.8/Core/Canvas.d.ts +0 -36
- package/ts3.8/Core/Container.d.ts +0 -64
- package/ts3.8/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/Core/FrameManager.d.ts +0 -6
- package/ts3.8/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/Core/Loader.d.ts +0 -14
- package/ts3.8/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/Core/Particle.d.ts +0 -84
- package/ts3.8/Core/Particles.d.ts +0 -45
- package/ts3.8/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/Core/Retina.d.ts +0 -26
- package/ts3.8/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/Enums/Types/index.d.ts +0 -9
- package/ts3.8/Enums/index.d.ts +0 -5
- package/ts3.8/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/Types/PathOptions.d.ts +0 -3
- package/ts3.8/Types/RangeValue.d.ts +0 -2
- package/ts3.8/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/Types/ShapeData.d.ts +0 -5
- package/ts3.8/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/Types/index.d.ts +0 -6
- package/ts3.8/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/Utils/Circle.d.ts +0 -8
- package/ts3.8/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/Utils/Constants.d.ts +0 -18
- package/ts3.8/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/Utils/Plugins.d.ts +0 -22
- package/ts3.8/Utils/Point.d.ts +0 -7
- package/ts3.8/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/Utils/Range.d.ts +0 -7
- package/ts3.8/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/Utils/Utils.d.ts +0 -65
- package/ts3.8/Utils/index.d.ts +0 -13
- package/ts3.8/browser/Core/Canvas.d.ts +0 -36
- package/ts3.8/browser/Core/Container.d.ts +0 -64
- package/ts3.8/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/browser/Core/FrameManager.d.ts +0 -6
- package/ts3.8/browser/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/browser/Core/Loader.d.ts +0 -14
- package/ts3.8/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/browser/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/browser/Core/Particle.d.ts +0 -84
- package/ts3.8/browser/Core/Particles.d.ts +0 -45
- package/ts3.8/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/browser/Core/Retina.d.ts +0 -26
- package/ts3.8/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/index.d.ts +0 -9
- package/ts3.8/browser/Enums/index.d.ts +0 -5
- package/ts3.8/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/browser/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/browser/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/browser/Types/PathOptions.d.ts +0 -3
- package/ts3.8/browser/Types/RangeValue.d.ts +0 -2
- package/ts3.8/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/browser/Types/ShapeData.d.ts +0 -5
- package/ts3.8/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/browser/Types/index.d.ts +0 -6
- package/ts3.8/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/browser/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/browser/Utils/Circle.d.ts +0 -8
- package/ts3.8/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/browser/Utils/Constants.d.ts +0 -18
- package/ts3.8/browser/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/browser/Utils/Plugins.d.ts +0 -22
- package/ts3.8/browser/Utils/Point.d.ts +0 -7
- package/ts3.8/browser/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/browser/Utils/Range.d.ts +0 -7
- package/ts3.8/browser/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/browser/Utils/Utils.d.ts +0 -65
- package/ts3.8/browser/Utils/index.d.ts +0 -13
- package/ts3.8/browser/full.d.ts +0 -2
- package/ts3.8/browser/index.d.ts +0 -31
- package/ts3.8/browser/index.slim.d.ts +0 -25
- package/ts3.8/browser/main.d.ts +0 -24
- package/ts3.8/browser/pjs.d.ts +0 -14
- package/ts3.8/browser/slim.d.ts +0 -2
- package/ts3.8/esm/Core/Canvas.d.ts +0 -36
- package/ts3.8/esm/Core/Container.d.ts +0 -64
- package/ts3.8/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/esm/Core/FrameManager.d.ts +0 -6
- package/ts3.8/esm/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/esm/Core/Loader.d.ts +0 -14
- package/ts3.8/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/esm/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/esm/Core/Particle.d.ts +0 -84
- package/ts3.8/esm/Core/Particles.d.ts +0 -45
- package/ts3.8/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/esm/Core/Retina.d.ts +0 -26
- package/ts3.8/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/index.d.ts +0 -9
- package/ts3.8/esm/Enums/index.d.ts +0 -5
- package/ts3.8/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/esm/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/esm/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/esm/Types/PathOptions.d.ts +0 -3
- package/ts3.8/esm/Types/RangeValue.d.ts +0 -2
- package/ts3.8/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/esm/Types/ShapeData.d.ts +0 -5
- package/ts3.8/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/esm/Types/index.d.ts +0 -6
- package/ts3.8/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/esm/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/esm/Utils/Circle.d.ts +0 -8
- package/ts3.8/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/esm/Utils/Constants.d.ts +0 -18
- package/ts3.8/esm/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/esm/Utils/Plugins.d.ts +0 -22
- package/ts3.8/esm/Utils/Point.d.ts +0 -7
- package/ts3.8/esm/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/esm/Utils/Range.d.ts +0 -7
- package/ts3.8/esm/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/esm/Utils/Utils.d.ts +0 -65
- package/ts3.8/esm/Utils/index.d.ts +0 -13
- package/ts3.8/esm/full.d.ts +0 -2
- package/ts3.8/esm/index.d.ts +0 -31
- package/ts3.8/esm/index.slim.d.ts +0 -25
- package/ts3.8/esm/main.d.ts +0 -24
- package/ts3.8/esm/pjs.d.ts +0 -14
- package/ts3.8/esm/slim.d.ts +0 -2
- package/ts3.8/full.d.ts +0 -2
- package/ts3.8/index.d.ts +0 -31
- package/ts3.8/index.slim.d.ts +0 -25
- package/ts3.8/main.d.ts +0 -24
- package/ts3.8/pjs.d.ts +0 -14
- package/ts3.8/slim.d.ts +0 -2
- package/ts4.0/Core/Canvas.d.ts +0 -36
- package/ts4.0/Core/Container.d.ts +0 -64
- package/ts4.0/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/Core/FrameManager.d.ts +0 -6
- package/ts4.0/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/Core/Loader.d.ts +0 -14
- package/ts4.0/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/Core/Particle.d.ts +0 -84
- package/ts4.0/Core/Particles.d.ts +0 -45
- package/ts4.0/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/Core/Retina.d.ts +0 -26
- package/ts4.0/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/Enums/Types/index.d.ts +0 -9
- package/ts4.0/Enums/index.d.ts +0 -5
- package/ts4.0/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/Types/PathOptions.d.ts +0 -3
- package/ts4.0/Types/RangeValue.d.ts +0 -2
- package/ts4.0/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/Types/ShapeData.d.ts +0 -5
- package/ts4.0/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/Types/index.d.ts +0 -6
- package/ts4.0/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/Utils/Circle.d.ts +0 -8
- package/ts4.0/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/Utils/Constants.d.ts +0 -18
- package/ts4.0/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/Utils/Plugins.d.ts +0 -22
- package/ts4.0/Utils/Point.d.ts +0 -7
- package/ts4.0/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/Utils/Range.d.ts +0 -7
- package/ts4.0/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/Utils/Utils.d.ts +0 -65
- package/ts4.0/Utils/index.d.ts +0 -13
- package/ts4.0/browser/Core/Canvas.d.ts +0 -36
- package/ts4.0/browser/Core/Container.d.ts +0 -64
- package/ts4.0/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/browser/Core/FrameManager.d.ts +0 -6
- package/ts4.0/browser/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/browser/Core/Loader.d.ts +0 -14
- package/ts4.0/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/browser/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/browser/Core/Particle.d.ts +0 -84
- package/ts4.0/browser/Core/Particles.d.ts +0 -45
- package/ts4.0/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/browser/Core/Retina.d.ts +0 -26
- package/ts4.0/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/index.d.ts +0 -9
- package/ts4.0/browser/Enums/index.d.ts +0 -5
- package/ts4.0/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/browser/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/browser/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/browser/Types/PathOptions.d.ts +0 -3
- package/ts4.0/browser/Types/RangeValue.d.ts +0 -2
- package/ts4.0/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/browser/Types/ShapeData.d.ts +0 -5
- package/ts4.0/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/browser/Types/index.d.ts +0 -6
- package/ts4.0/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/browser/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/browser/Utils/Circle.d.ts +0 -8
- package/ts4.0/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/browser/Utils/Constants.d.ts +0 -18
- package/ts4.0/browser/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/browser/Utils/Plugins.d.ts +0 -22
- package/ts4.0/browser/Utils/Point.d.ts +0 -7
- package/ts4.0/browser/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/browser/Utils/Range.d.ts +0 -7
- package/ts4.0/browser/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/browser/Utils/Utils.d.ts +0 -65
- package/ts4.0/browser/Utils/index.d.ts +0 -13
- package/ts4.0/browser/full.d.ts +0 -2
- package/ts4.0/browser/index.d.ts +0 -31
- package/ts4.0/browser/index.slim.d.ts +0 -25
- package/ts4.0/browser/main.d.ts +0 -24
- package/ts4.0/browser/pjs.d.ts +0 -14
- package/ts4.0/browser/slim.d.ts +0 -2
- package/ts4.0/esm/Core/Canvas.d.ts +0 -36
- package/ts4.0/esm/Core/Container.d.ts +0 -64
- package/ts4.0/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/esm/Core/FrameManager.d.ts +0 -6
- package/ts4.0/esm/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/esm/Core/Loader.d.ts +0 -14
- package/ts4.0/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/esm/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/esm/Core/Particle.d.ts +0 -84
- package/ts4.0/esm/Core/Particles.d.ts +0 -45
- package/ts4.0/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/esm/Core/Retina.d.ts +0 -26
- package/ts4.0/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/index.d.ts +0 -9
- package/ts4.0/esm/Enums/index.d.ts +0 -5
- package/ts4.0/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/esm/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/esm/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/esm/Types/PathOptions.d.ts +0 -3
- package/ts4.0/esm/Types/RangeValue.d.ts +0 -2
- package/ts4.0/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/esm/Types/ShapeData.d.ts +0 -5
- package/ts4.0/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/esm/Types/index.d.ts +0 -6
- package/ts4.0/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/esm/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/esm/Utils/Circle.d.ts +0 -8
- package/ts4.0/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/esm/Utils/Constants.d.ts +0 -18
- package/ts4.0/esm/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/esm/Utils/Plugins.d.ts +0 -22
- package/ts4.0/esm/Utils/Point.d.ts +0 -7
- package/ts4.0/esm/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/esm/Utils/Range.d.ts +0 -7
- package/ts4.0/esm/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/esm/Utils/Utils.d.ts +0 -65
- package/ts4.0/esm/Utils/index.d.ts +0 -13
- package/ts4.0/esm/full.d.ts +0 -2
- package/ts4.0/esm/index.d.ts +0 -31
- package/ts4.0/esm/index.slim.d.ts +0 -25
- package/ts4.0/esm/main.d.ts +0 -24
- package/ts4.0/esm/pjs.d.ts +0 -14
- package/ts4.0/esm/slim.d.ts +0 -2
- package/ts4.0/full.d.ts +0 -2
- package/ts4.0/index.d.ts +0 -31
- package/ts4.0/index.slim.d.ts +0 -25
- package/ts4.0/main.d.ts +0 -24
- package/ts4.0/pjs.d.ts +0 -14
- package/ts4.0/slim.d.ts +0 -2
package/Core/Canvas.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export declare class Canvas {
|
|
|
22
22
|
drawConnectLine(p1: IParticle, p2: IParticle): void;
|
|
23
23
|
drawGrabLine(particle: IParticle, lineColor: IRgb, opacity: number, mousePos: ICoordinates): void;
|
|
24
24
|
drawParticle(particle: Particle, delta: IDelta): void;
|
|
25
|
-
drawOrbit(particle: IParticle, type: string): void;
|
|
26
25
|
drawPlugin(plugin: IContainerPlugin, delta: IDelta): void;
|
|
27
26
|
drawParticlePlugin(plugin: IContainerPlugin, particle: Particle, delta: IDelta): void;
|
|
28
27
|
initBackground(): void;
|
package/Core/Canvas.js
CHANGED
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Canvas = void 0;
|
|
4
4
|
const Utils_1 = require("../Utils");
|
|
5
5
|
const Utils_2 = require("../Utils");
|
|
6
|
-
const Enums_1 = require("../Enums");
|
|
7
6
|
class Canvas {
|
|
8
7
|
constructor(container) {
|
|
9
8
|
this.container = container;
|
|
@@ -32,7 +31,7 @@ class Canvas {
|
|
|
32
31
|
}
|
|
33
32
|
this.generatedCanvas = generatedCanvas !== null && generatedCanvas !== void 0 ? generatedCanvas : this.generatedCanvas;
|
|
34
33
|
this.element = canvas;
|
|
35
|
-
this.originalStyle = Utils_1.deepExtend({}, this.element.style);
|
|
34
|
+
this.originalStyle = (0, Utils_1.deepExtend)({}, this.element.style);
|
|
36
35
|
this.size.height = canvas.offsetHeight;
|
|
37
36
|
this.size.width = canvas.offsetWidth;
|
|
38
37
|
this.context = this.element.getContext("2d");
|
|
@@ -45,15 +44,15 @@ class Canvas {
|
|
|
45
44
|
(_a = this.element) === null || _a === void 0 ? void 0 : _a.remove();
|
|
46
45
|
}
|
|
47
46
|
this.draw((ctx) => {
|
|
48
|
-
Utils_2.clear(ctx, this.size);
|
|
47
|
+
(0, Utils_2.clear)(ctx, this.size);
|
|
49
48
|
});
|
|
50
49
|
}
|
|
51
50
|
paint() {
|
|
52
51
|
const options = this.container.actualOptions;
|
|
53
52
|
this.draw((ctx) => {
|
|
54
53
|
if (options.backgroundMask.enable && options.backgroundMask.cover && this.coverColor) {
|
|
55
|
-
Utils_2.clear(ctx, this.size);
|
|
56
|
-
this.paintBase(Utils_1.getStyleFromRgb(this.coverColor, this.coverColor.a));
|
|
54
|
+
(0, Utils_2.clear)(ctx, this.size);
|
|
55
|
+
this.paintBase((0, Utils_1.getStyleFromRgb)(this.coverColor, this.coverColor.a));
|
|
57
56
|
}
|
|
58
57
|
else {
|
|
59
58
|
this.paintBase();
|
|
@@ -67,11 +66,11 @@ class Canvas {
|
|
|
67
66
|
this.paint();
|
|
68
67
|
}
|
|
69
68
|
else if (trail.enable && trail.length > 0 && this.trailFillColor) {
|
|
70
|
-
this.paintBase(Utils_1.getStyleFromRgb(this.trailFillColor, 1 / trail.length));
|
|
69
|
+
this.paintBase((0, Utils_1.getStyleFromRgb)(this.trailFillColor, 1 / trail.length));
|
|
71
70
|
}
|
|
72
71
|
else {
|
|
73
72
|
this.draw((ctx) => {
|
|
74
|
-
Utils_2.clear(ctx, this.size);
|
|
73
|
+
(0, Utils_2.clear)(ctx, this.size);
|
|
75
74
|
});
|
|
76
75
|
}
|
|
77
76
|
}
|
|
@@ -125,7 +124,7 @@ class Canvas {
|
|
|
125
124
|
}
|
|
126
125
|
const pos1 = p1.getPosition();
|
|
127
126
|
const pos2 = p2.getPosition();
|
|
128
|
-
Utils_1.drawConnectLine(ctx, (_a = p1.linksWidth) !== null && _a !== void 0 ? _a : this.container.retina.linksWidth, lineStyle, pos1, pos2);
|
|
127
|
+
(0, Utils_1.drawConnectLine)(ctx, (_a = p1.retina.linksWidth) !== null && _a !== void 0 ? _a : this.container.retina.linksWidth, lineStyle, pos1, pos2);
|
|
129
128
|
});
|
|
130
129
|
}
|
|
131
130
|
drawGrabLine(particle, lineColor, opacity, mousePos) {
|
|
@@ -133,11 +132,11 @@ class Canvas {
|
|
|
133
132
|
this.draw((ctx) => {
|
|
134
133
|
var _a;
|
|
135
134
|
const beginPos = particle.getPosition();
|
|
136
|
-
Utils_1.drawGrabLine(ctx, (_a = particle.linksWidth) !== null && _a !== void 0 ? _a : container.retina.linksWidth, beginPos, mousePos, lineColor, opacity);
|
|
135
|
+
(0, Utils_1.drawGrabLine)(ctx, (_a = particle.retina.linksWidth) !== null && _a !== void 0 ? _a : container.retina.linksWidth, beginPos, mousePos, lineColor, opacity);
|
|
137
136
|
});
|
|
138
137
|
}
|
|
139
138
|
drawParticle(particle, delta) {
|
|
140
|
-
var _a, _b, _c;
|
|
139
|
+
var _a, _b, _c, _d, _e, _f;
|
|
141
140
|
if (particle.spawning || particle.destroyed) {
|
|
142
141
|
return;
|
|
143
142
|
}
|
|
@@ -151,7 +150,7 @@ class Canvas {
|
|
|
151
150
|
const twinkle = pOptions.twinkle.particles;
|
|
152
151
|
const twinkling = twinkle.enable && Math.random() < twinkle.frequency;
|
|
153
152
|
if (!fColor || !sColor) {
|
|
154
|
-
const twinkleRgb = Utils_1.colorToHsl(twinkle.color);
|
|
153
|
+
const twinkleRgb = (0, Utils_1.colorToHsl)(twinkle.color);
|
|
155
154
|
if (!fColor) {
|
|
156
155
|
fColor = twinkling && twinkleRgb !== undefined ? twinkleRgb : pfColor ? pfColor : undefined;
|
|
157
156
|
}
|
|
@@ -161,62 +160,44 @@ class Canvas {
|
|
|
161
160
|
}
|
|
162
161
|
const options = this.container.actualOptions;
|
|
163
162
|
const zIndexOptions = particle.options.zIndex;
|
|
164
|
-
const zOpacityFactor =
|
|
163
|
+
const zOpacityFactor = (1 - particle.zIndexFactor) ** zIndexOptions.opacityRate;
|
|
165
164
|
const radius = particle.getRadius();
|
|
166
|
-
const opacity = twinkling ? twinkle.opacity : (_b = particle.bubble.opacity) !== null && _b !== void 0 ? _b : particle.opacity.value;
|
|
167
|
-
const strokeOpacity = (
|
|
165
|
+
const opacity = twinkling ? twinkle.opacity : (_d = (_b = particle.bubble.opacity) !== null && _b !== void 0 ? _b : (_c = particle.opacity) === null || _c === void 0 ? void 0 : _c.value) !== null && _d !== void 0 ? _d : 1;
|
|
166
|
+
const strokeOpacity = (_f = (_e = particle.stroke) === null || _e === void 0 ? void 0 : _e.opacity) !== null && _f !== void 0 ? _f : opacity;
|
|
168
167
|
const zOpacity = opacity * zOpacityFactor;
|
|
169
|
-
const fillColorValue = fColor ? Utils_1.getStyleFromHsl(fColor, zOpacity) : undefined;
|
|
168
|
+
const fillColorValue = fColor ? (0, Utils_1.getStyleFromHsl)(fColor, zOpacity) : undefined;
|
|
170
169
|
if (!fillColorValue && !sColor) {
|
|
171
170
|
return;
|
|
172
171
|
}
|
|
173
|
-
const orbitOptions = particle.options.orbit;
|
|
174
172
|
this.draw((ctx) => {
|
|
175
|
-
const zSizeFactor =
|
|
173
|
+
const zSizeFactor = (1 - particle.zIndexFactor) ** zIndexOptions.sizeRate;
|
|
176
174
|
const zStrokeOpacity = strokeOpacity * zOpacityFactor;
|
|
177
|
-
const strokeColorValue = sColor ? Utils_1.getStyleFromHsl(sColor, zStrokeOpacity) : fillColorValue;
|
|
175
|
+
const strokeColorValue = sColor ? (0, Utils_1.getStyleFromHsl)(sColor, zStrokeOpacity) : fillColorValue;
|
|
178
176
|
if (radius <= 0) {
|
|
179
177
|
return;
|
|
180
178
|
}
|
|
181
|
-
|
|
182
|
-
|
|
179
|
+
const container = this.container;
|
|
180
|
+
for (const updater of container.particles.updaters) {
|
|
181
|
+
if (updater.beforeDraw) {
|
|
182
|
+
updater.beforeDraw(particle);
|
|
183
|
+
}
|
|
183
184
|
}
|
|
184
|
-
Utils_1.drawParticle(this.container, ctx, particle, delta, fillColorValue, strokeColorValue, options.backgroundMask.enable, options.backgroundMask.composite, radius * zSizeFactor, zOpacity, particle.options.shadow, particle.gradient);
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
(0, Utils_1.drawParticle)(this.container, ctx, particle, delta, fillColorValue, strokeColorValue, options.backgroundMask.enable, options.backgroundMask.composite, radius * zSizeFactor, zOpacity, particle.options.shadow, particle.gradient);
|
|
186
|
+
for (const updater of container.particles.updaters) {
|
|
187
|
+
if (updater.afterDraw) {
|
|
188
|
+
updater.afterDraw(particle);
|
|
189
|
+
}
|
|
187
190
|
}
|
|
188
191
|
});
|
|
189
192
|
}
|
|
190
|
-
drawOrbit(particle, type) {
|
|
191
|
-
const container = this.container;
|
|
192
|
-
const orbitOptions = particle.options.orbit;
|
|
193
|
-
let start;
|
|
194
|
-
let end;
|
|
195
|
-
if (type === Enums_1.OrbitType.back) {
|
|
196
|
-
start = Math.PI / 2;
|
|
197
|
-
end = (Math.PI * 3) / 2;
|
|
198
|
-
}
|
|
199
|
-
else if (type === Enums_1.OrbitType.front) {
|
|
200
|
-
start = (Math.PI * 3) / 2;
|
|
201
|
-
end = Math.PI / 2;
|
|
202
|
-
}
|
|
203
|
-
else {
|
|
204
|
-
start = 0;
|
|
205
|
-
end = 2 * Math.PI;
|
|
206
|
-
}
|
|
207
|
-
this.draw((ctx) => {
|
|
208
|
-
var _a, _b, _c, _d;
|
|
209
|
-
Utils_1.drawEllipse(ctx, particle, (_a = particle.orbitColor) !== null && _a !== void 0 ? _a : particle.getFillColor(), (_c = (_b = particle.orbitRadius) !== null && _b !== void 0 ? _b : container.retina.orbitRadius) !== null && _c !== void 0 ? _c : particle.getRadius(), orbitOptions.opacity, orbitOptions.width, ((_d = particle.orbitRotation) !== null && _d !== void 0 ? _d : 0) * container.retina.pixelRatio, start, end);
|
|
210
|
-
});
|
|
211
|
-
}
|
|
212
193
|
drawPlugin(plugin, delta) {
|
|
213
194
|
this.draw((ctx) => {
|
|
214
|
-
Utils_1.drawPlugin(ctx, plugin, delta);
|
|
195
|
+
(0, Utils_1.drawPlugin)(ctx, plugin, delta);
|
|
215
196
|
});
|
|
216
197
|
}
|
|
217
198
|
drawParticlePlugin(plugin, particle, delta) {
|
|
218
199
|
this.draw((ctx) => {
|
|
219
|
-
Utils_1.drawParticlePlugin(ctx, plugin, particle, delta);
|
|
200
|
+
(0, Utils_1.drawParticlePlugin)(ctx, plugin, particle, delta);
|
|
220
201
|
});
|
|
221
202
|
}
|
|
222
203
|
initBackground() {
|
|
@@ -228,8 +209,8 @@ class Canvas {
|
|
|
228
209
|
return;
|
|
229
210
|
}
|
|
230
211
|
if (background.color) {
|
|
231
|
-
const color = Utils_1.colorToRgb(background.color);
|
|
232
|
-
elementStyle.backgroundColor = color ? Utils_1.getStyleFromRgb(color, background.opacity) : "";
|
|
212
|
+
const color = (0, Utils_1.colorToRgb)(background.color);
|
|
213
|
+
elementStyle.backgroundColor = color ? (0, Utils_1.getStyleFromRgb)(color, background.opacity) : "";
|
|
233
214
|
}
|
|
234
215
|
else {
|
|
235
216
|
elementStyle.backgroundColor = "";
|
|
@@ -249,7 +230,7 @@ class Canvas {
|
|
|
249
230
|
const options = this.container.actualOptions;
|
|
250
231
|
const cover = options.backgroundMask.cover;
|
|
251
232
|
const color = cover.color;
|
|
252
|
-
const coverRgb = Utils_1.colorToRgb(color);
|
|
233
|
+
const coverRgb = (0, Utils_1.colorToRgb)(color);
|
|
253
234
|
if (coverRgb) {
|
|
254
235
|
this.coverColor = {
|
|
255
236
|
r: coverRgb.r,
|
|
@@ -262,7 +243,7 @@ class Canvas {
|
|
|
262
243
|
initTrail() {
|
|
263
244
|
const options = this.container.actualOptions;
|
|
264
245
|
const trail = options.particles.move.trail;
|
|
265
|
-
const fillColor = Utils_1.colorToRgb(trail.fillColor);
|
|
246
|
+
const fillColor = (0, Utils_1.colorToRgb)(trail.fillColor);
|
|
266
247
|
if (fillColor) {
|
|
267
248
|
const trail = options.particles.move.trail;
|
|
268
249
|
this.trailFillColor = {
|
|
@@ -278,10 +259,10 @@ class Canvas {
|
|
|
278
259
|
let sColor;
|
|
279
260
|
for (const [, plugin] of this.container.plugins) {
|
|
280
261
|
if (!fColor && plugin.particleFillColor) {
|
|
281
|
-
fColor = Utils_1.colorToHsl(plugin.particleFillColor(particle));
|
|
262
|
+
fColor = (0, Utils_1.colorToHsl)(plugin.particleFillColor(particle));
|
|
282
263
|
}
|
|
283
264
|
if (!sColor && plugin.particleStrokeColor) {
|
|
284
|
-
sColor = Utils_1.colorToHsl(plugin.particleStrokeColor(particle));
|
|
265
|
+
sColor = (0, Utils_1.colorToHsl)(plugin.particleStrokeColor(particle));
|
|
285
266
|
}
|
|
286
267
|
if (fColor && sColor) {
|
|
287
268
|
break;
|
|
@@ -296,7 +277,7 @@ class Canvas {
|
|
|
296
277
|
}
|
|
297
278
|
const originalStyle = this.originalStyle;
|
|
298
279
|
if (options.fullScreen.enable) {
|
|
299
|
-
this.originalStyle = Utils_1.deepExtend({}, element.style);
|
|
280
|
+
this.originalStyle = (0, Utils_1.deepExtend)({}, element.style);
|
|
300
281
|
element.style.position = "fixed";
|
|
301
282
|
element.style.zIndex = options.fullScreen.zIndex.toString(10);
|
|
302
283
|
element.style.top = "0";
|
|
@@ -315,14 +296,14 @@ class Canvas {
|
|
|
315
296
|
}
|
|
316
297
|
paintBase(baseColor) {
|
|
317
298
|
this.draw((ctx) => {
|
|
318
|
-
Utils_1.paintBase(ctx, this.size, baseColor);
|
|
299
|
+
(0, Utils_1.paintBase)(ctx, this.size, baseColor);
|
|
319
300
|
});
|
|
320
301
|
}
|
|
321
302
|
lineStyle(p1, p2) {
|
|
322
303
|
return this.draw((ctx) => {
|
|
323
304
|
const options = this.container.actualOptions;
|
|
324
305
|
const connectOptions = options.interactivity.modes.connect;
|
|
325
|
-
return Utils_1.gradient(ctx, p1, p2, connectOptions.links.opacity);
|
|
306
|
+
return (0, Utils_1.gradient)(ctx, p1, p2, connectOptions.links.opacity);
|
|
326
307
|
});
|
|
327
308
|
}
|
|
328
309
|
}
|
package/Core/Container.js
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
3
|
exports.Container = void 0;
|
|
13
4
|
const Canvas_1 = require("./Canvas");
|
|
@@ -103,7 +94,7 @@ class Container {
|
|
|
103
94
|
}
|
|
104
95
|
pause() {
|
|
105
96
|
if (this.drawAnimationFrame !== undefined) {
|
|
106
|
-
Utils_1.cancelAnimation()(this.drawAnimationFrame);
|
|
97
|
+
(0, Utils_1.cancelAnimation)()(this.drawAnimationFrame);
|
|
107
98
|
delete this.drawAnimationFrame;
|
|
108
99
|
}
|
|
109
100
|
if (this.paused) {
|
|
@@ -120,7 +111,7 @@ class Container {
|
|
|
120
111
|
}
|
|
121
112
|
draw(force) {
|
|
122
113
|
let refreshTime = force;
|
|
123
|
-
this.drawAnimationFrame = Utils_1.animate()((timestamp) => {
|
|
114
|
+
this.drawAnimationFrame = (0, Utils_1.animate)()((timestamp) => {
|
|
124
115
|
if (refreshTime) {
|
|
125
116
|
this.lastFrameTime = undefined;
|
|
126
117
|
refreshTime = false;
|
|
@@ -215,33 +206,29 @@ class Container {
|
|
|
215
206
|
delete this.particles.grabLineColor;
|
|
216
207
|
delete this.particles.linksColor;
|
|
217
208
|
}
|
|
218
|
-
loadTheme(name) {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
yield this.refresh();
|
|
222
|
-
});
|
|
209
|
+
async loadTheme(name) {
|
|
210
|
+
this.currentTheme = name;
|
|
211
|
+
await this.refresh();
|
|
223
212
|
}
|
|
224
|
-
start() {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
213
|
+
async start() {
|
|
214
|
+
if (this.started) {
|
|
215
|
+
return;
|
|
216
|
+
}
|
|
217
|
+
await this.init();
|
|
218
|
+
this.started = true;
|
|
219
|
+
this.eventListeners.addListeners();
|
|
220
|
+
if (this.interactivity.element instanceof HTMLElement && this.intersectionObserver) {
|
|
221
|
+
this.intersectionObserver.observe(this.interactivity.element);
|
|
222
|
+
}
|
|
223
|
+
for (const [, plugin] of this.plugins) {
|
|
224
|
+
if (plugin.startAsync !== undefined) {
|
|
225
|
+
await plugin.startAsync();
|
|
228
226
|
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
this.eventListeners.addListeners();
|
|
232
|
-
if (this.interactivity.element instanceof HTMLElement && this.intersectionObserver) {
|
|
233
|
-
this.intersectionObserver.observe(this.interactivity.element);
|
|
227
|
+
else if (plugin.start !== undefined) {
|
|
228
|
+
plugin.start();
|
|
234
229
|
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
yield plugin.startAsync();
|
|
238
|
-
}
|
|
239
|
-
else if (plugin.start !== undefined) {
|
|
240
|
-
plugin.start();
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
this.play();
|
|
244
|
-
});
|
|
230
|
+
}
|
|
231
|
+
this.play();
|
|
245
232
|
}
|
|
246
233
|
addClickHandler(callback) {
|
|
247
234
|
const el = this.interactivity.element;
|
|
@@ -325,59 +312,57 @@ class Container {
|
|
|
325
312
|
this.actualOptions.setResponsive(this.canvas.size.width, this.retina.pixelRatio, this._options);
|
|
326
313
|
this.actualOptions.setTheme(this.currentTheme);
|
|
327
314
|
}
|
|
328
|
-
init() {
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
315
|
+
async init() {
|
|
316
|
+
this.actualOptions = new Options_1.Options();
|
|
317
|
+
this.actualOptions.load(this._options);
|
|
318
|
+
this.retina.init();
|
|
319
|
+
this.canvas.init();
|
|
320
|
+
this.updateActualOptions();
|
|
321
|
+
this.canvas.initBackground();
|
|
322
|
+
this.canvas.resize();
|
|
323
|
+
this.zLayers = this.actualOptions.zLayers;
|
|
324
|
+
this.duration = (0, Utils_1.getRangeValue)(this.actualOptions.duration);
|
|
325
|
+
this.lifeTime = 0;
|
|
326
|
+
this.fpsLimit = this.actualOptions.fpsLimit > 0 ? this.actualOptions.fpsLimit : 60;
|
|
327
|
+
const availablePlugins = Utils_1.Plugins.getAvailablePlugins(this);
|
|
328
|
+
for (const [id, plugin] of availablePlugins) {
|
|
329
|
+
this.plugins.set(id, plugin);
|
|
330
|
+
}
|
|
331
|
+
for (const [, drawer] of this.drawers) {
|
|
332
|
+
if (drawer.init) {
|
|
333
|
+
await drawer.init(this);
|
|
344
334
|
}
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
335
|
+
}
|
|
336
|
+
for (const [, plugin] of this.plugins) {
|
|
337
|
+
if (plugin.init) {
|
|
338
|
+
plugin.init(this.actualOptions);
|
|
349
339
|
}
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
340
|
+
else if (plugin.initAsync !== undefined) {
|
|
341
|
+
await plugin.initAsync(this.actualOptions);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
const pathOptions = this.actualOptions.particles.move.path;
|
|
345
|
+
if (pathOptions.generator) {
|
|
346
|
+
const customGenerator = Utils_1.Plugins.getPathGenerator(pathOptions.generator);
|
|
347
|
+
if (customGenerator) {
|
|
348
|
+
if (customGenerator.init) {
|
|
349
|
+
this.pathGenerator.init = customGenerator.init;
|
|
353
350
|
}
|
|
354
|
-
|
|
355
|
-
|
|
351
|
+
if (customGenerator.generate) {
|
|
352
|
+
this.pathGenerator.generate = customGenerator.generate;
|
|
356
353
|
}
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
if (pathOptions.generator) {
|
|
360
|
-
const customGenerator = Utils_1.Plugins.getPathGenerator(pathOptions.generator);
|
|
361
|
-
if (customGenerator) {
|
|
362
|
-
if (customGenerator.init) {
|
|
363
|
-
this.pathGenerator.init = customGenerator.init;
|
|
364
|
-
}
|
|
365
|
-
if (customGenerator.generate) {
|
|
366
|
-
this.pathGenerator.generate = customGenerator.generate;
|
|
367
|
-
}
|
|
368
|
-
if (customGenerator.update) {
|
|
369
|
-
this.pathGenerator.update = customGenerator.update;
|
|
370
|
-
}
|
|
354
|
+
if (customGenerator.update) {
|
|
355
|
+
this.pathGenerator.update = customGenerator.update;
|
|
371
356
|
}
|
|
372
357
|
}
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
358
|
+
}
|
|
359
|
+
this.particles.init();
|
|
360
|
+
this.particles.setDensity();
|
|
361
|
+
for (const [, plugin] of this.plugins) {
|
|
362
|
+
if (plugin.particlesSetup !== undefined) {
|
|
363
|
+
plugin.particlesSetup();
|
|
379
364
|
}
|
|
380
|
-
}
|
|
365
|
+
}
|
|
381
366
|
}
|
|
382
367
|
intersectionManager(entries) {
|
|
383
368
|
if (!this.actualOptions.pauseOnOutsideViewport) {
|
|
@@ -9,14 +9,14 @@ import type { IHsl, IRgb } from "./Colors";
|
|
|
9
9
|
import type { IParticleHslAnimation } from "./IParticleHslAnimation";
|
|
10
10
|
import type { Vector } from "../Particle/Vector";
|
|
11
11
|
import type { IParticleGradientAnimation } from "./IParticleGradientAnimation";
|
|
12
|
+
import type { IParticleRetinaProps } from "./IParticleRetinaProps";
|
|
13
|
+
import type { IParticleRoll } from "./IParticleRoll";
|
|
14
|
+
import type { IParticleWobble } from "./IParticleWobble";
|
|
12
15
|
export interface IParticle {
|
|
13
16
|
misplaced: boolean;
|
|
14
17
|
randomIndexData?: number;
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly wobbleAngle: number;
|
|
18
|
-
readonly wobbleSpeed: number;
|
|
19
|
-
readonly attractDistance?: number;
|
|
18
|
+
readonly roll?: IParticleRoll;
|
|
19
|
+
readonly wobble?: IParticleWobble;
|
|
20
20
|
readonly bubble: IBubbleParticleData;
|
|
21
21
|
readonly close: boolean;
|
|
22
22
|
readonly destroyed: boolean;
|
|
@@ -28,10 +28,10 @@ export interface IParticle {
|
|
|
28
28
|
readonly color?: IParticleHslAnimation;
|
|
29
29
|
readonly gradient?: IParticleGradientAnimation;
|
|
30
30
|
readonly backColor?: IHsl;
|
|
31
|
-
readonly opacity
|
|
32
|
-
readonly rotate
|
|
31
|
+
readonly opacity?: IParticleValueAnimation<number>;
|
|
32
|
+
readonly rotate?: IParticleValueAnimation<number>;
|
|
33
33
|
readonly size: IParticleValueAnimation<number>;
|
|
34
|
-
readonly tilt
|
|
34
|
+
readonly tilt?: IParticleTiltValueAnimation;
|
|
35
35
|
readonly strokeColor?: IParticleHslAnimation;
|
|
36
36
|
readonly options: IParticles;
|
|
37
37
|
readonly position: Vector;
|
|
@@ -39,16 +39,12 @@ export interface IParticle {
|
|
|
39
39
|
readonly shape?: ShapeType | string;
|
|
40
40
|
readonly shapeData?: IShapeValues;
|
|
41
41
|
readonly sides: number;
|
|
42
|
-
readonly stroke
|
|
43
|
-
readonly strokeWidth
|
|
42
|
+
readonly stroke?: IStroke;
|
|
43
|
+
readonly strokeWidth?: number;
|
|
44
44
|
readonly velocity: Vector;
|
|
45
|
-
readonly linksDistance?: number;
|
|
46
|
-
readonly linksWidth?: number;
|
|
47
|
-
readonly moveSpeed?: number;
|
|
48
|
-
readonly sizeAnimationSpeed?: number;
|
|
49
|
-
readonly orbitRadius?: number;
|
|
50
45
|
readonly orbitRotation?: number;
|
|
51
46
|
readonly orbitColor?: IHsl;
|
|
47
|
+
readonly retina: IParticleRetinaProps;
|
|
52
48
|
getPosition(): ICoordinates3d;
|
|
53
49
|
getRadius(): number;
|
|
54
50
|
getMass(): number;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { IDistance } from "./IDistance";
|
|
2
|
+
export interface IParticleRetinaProps {
|
|
3
|
+
attractDistance?: number;
|
|
4
|
+
linksDistance?: number;
|
|
5
|
+
linksWidth?: number;
|
|
6
|
+
maxDistance: Partial<IDistance>;
|
|
7
|
+
maxSpeed?: number;
|
|
8
|
+
moveDrift?: number;
|
|
9
|
+
moveSpeed?: number;
|
|
10
|
+
sizeAnimationSpeed?: number;
|
|
11
|
+
spinAcceleration?: number;
|
|
12
|
+
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import type { IDelta } from "./IDelta";
|
|
2
2
|
import type { Particle } from "../Particle";
|
|
3
3
|
export interface IParticleUpdater {
|
|
4
|
+
init(particle: Particle): void;
|
|
4
5
|
isEnabled(particle: Particle): boolean;
|
|
5
6
|
update(particle: Particle, delta: IDelta): void;
|
|
7
|
+
beforeDraw?: (particle: Particle) => void;
|
|
8
|
+
afterDraw?: (particle: Particle) => void;
|
|
6
9
|
}
|
|
@@ -21,10 +21,11 @@ export * from "./IParticleGradientColorAnimation";
|
|
|
21
21
|
export * from "./IParticleHslAnimation";
|
|
22
22
|
export * from "./IParticleLife";
|
|
23
23
|
export * from "./IParticleLoops";
|
|
24
|
-
export * from "./
|
|
25
|
-
export * from "./IParticleUpdater";
|
|
24
|
+
export * from "./IParticleRetinaProps";
|
|
26
25
|
export * from "./IParticleSpin";
|
|
26
|
+
export * from "./IParticleUpdater";
|
|
27
27
|
export * from "./IParticleValueAnimation";
|
|
28
|
+
export * from "./IParticlesInteractor";
|
|
28
29
|
export * from "./IPlugin";
|
|
29
30
|
export * from "./IRangeValue";
|
|
30
31
|
export * from "./IRectSideResult";
|
package/Core/Interfaces/index.js
CHANGED
|
@@ -33,10 +33,11 @@ __exportStar(require("./IParticleGradientColorAnimation"), exports);
|
|
|
33
33
|
__exportStar(require("./IParticleHslAnimation"), exports);
|
|
34
34
|
__exportStar(require("./IParticleLife"), exports);
|
|
35
35
|
__exportStar(require("./IParticleLoops"), exports);
|
|
36
|
-
__exportStar(require("./
|
|
37
|
-
__exportStar(require("./IParticleUpdater"), exports);
|
|
36
|
+
__exportStar(require("./IParticleRetinaProps"), exports);
|
|
38
37
|
__exportStar(require("./IParticleSpin"), exports);
|
|
38
|
+
__exportStar(require("./IParticleUpdater"), exports);
|
|
39
39
|
__exportStar(require("./IParticleValueAnimation"), exports);
|
|
40
|
+
__exportStar(require("./IParticlesInteractor"), exports);
|
|
40
41
|
__exportStar(require("./IPlugin"), exports);
|
|
41
42
|
__exportStar(require("./IRangeValue"), exports);
|
|
42
43
|
__exportStar(require("./IRectSideResult"), exports);
|