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
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { Main } from "../../main";
|
|
2
|
-
export declare function loadPolygonMaskPlugin(tsParticles: Main): void
|
|
2
|
+
export declare function loadPolygonMaskPlugin(tsParticles: Main): Promise<void>;
|
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
2
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
22
|
exports.loadPolygonMaskPlugin = void 0;
|
|
4
23
|
const PolygonMaskInstance_1 = require("./PolygonMaskInstance");
|
|
@@ -27,7 +46,10 @@ class Plugin {
|
|
|
27
46
|
polygonOptions.load(source === null || source === void 0 ? void 0 : source.polygon);
|
|
28
47
|
}
|
|
29
48
|
}
|
|
30
|
-
function loadPolygonMaskPlugin(tsParticles) {
|
|
49
|
+
async function loadPolygonMaskPlugin(tsParticles) {
|
|
50
|
+
if (!window.SVGPathSeg) {
|
|
51
|
+
await Promise.resolve().then(() => __importStar(require("./pathseg")));
|
|
52
|
+
}
|
|
31
53
|
const plugin = new Plugin();
|
|
32
54
|
tsParticles.addPlugin(plugin);
|
|
33
55
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IOptions } from "../../Options/Interfaces/IOptions";
|
|
2
|
+
import type { IPolygonMask } from "./Options/Interfaces/IPolygonMask";
|
|
3
|
+
import type { SVGPathSegArcAbs, SVGPathSegCurvetoCubicAbs, SVGPathSegCurvetoCubicSmoothAbs, SVGPathSegCurvetoQuadraticAbs, SVGPathSegCurvetoQuadraticSmoothAbs, SVGPathSegLinetoAbs, SVGPathSegMovetoAbs, SVGPathSegArcRel, SVGPathSegCurvetoCubicRel, SVGPathSegCurvetoCubicSmoothRel, SVGPathSegCurvetoQuadraticRel, SVGPathSegCurvetoQuadraticSmoothRel, SVGPathSegLinetoRel, SVGPathSegMovetoRel } from "./pathseg";
|
|
4
|
+
export declare type SvgAbsoluteCoordinatesTypes = SVGPathSegArcAbs | SVGPathSegCurvetoCubicAbs | SVGPathSegCurvetoCubicSmoothAbs | SVGPathSegCurvetoQuadraticAbs | SVGPathSegCurvetoQuadraticSmoothAbs | SVGPathSegLinetoAbs | SVGPathSegMovetoAbs;
|
|
5
|
+
export declare type SvgRelativeCoordinatesTypes = SVGPathSegArcRel | SVGPathSegCurvetoCubicRel | SVGPathSegCurvetoCubicSmoothRel | SVGPathSegCurvetoQuadraticRel | SVGPathSegCurvetoQuadraticSmoothRel | SVGPathSegLinetoRel | SVGPathSegMovetoRel;
|
|
6
|
+
export declare type IPolygonMaskOptions = IOptions & {
|
|
7
|
+
polygon: IPolygonMask;
|
|
8
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ICoordinates } from "../../Core/Interfaces";
|
|
2
|
+
import type { IDrawStroke } from "./Options/Interfaces/IDrawStroke";
|
|
3
|
+
import type { ISvgPath } from "./Interfaces/ISvgPath";
|
|
4
|
+
import { Vector } from "../../Core/Particle/Vector";
|
|
5
|
+
export declare function drawPolygonMask(context: CanvasRenderingContext2D, rawData: ICoordinates[], stroke: IDrawStroke): void;
|
|
6
|
+
export declare function drawPolygonMaskPath(context: CanvasRenderingContext2D, path: Path2D, stroke: IDrawStroke, position: ICoordinates): void;
|
|
7
|
+
export declare function parsePaths(paths: ISvgPath[], scale: number, offset: ICoordinates): ICoordinates[];
|
|
8
|
+
export declare function calcClosestPtOnSegment(s1: ICoordinates, s2: ICoordinates, pos: ICoordinates): ICoordinates & {
|
|
9
|
+
isOnSegment: boolean;
|
|
10
|
+
};
|
|
11
|
+
export declare function segmentBounce(start: ICoordinates, stop: ICoordinates, velocity: Vector): void;
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.segmentBounce = exports.calcClosestPtOnSegment = exports.parsePaths = exports.drawPolygonMaskPath = exports.drawPolygonMask = void 0;
|
|
4
|
+
const Utils_1 = require("../../Utils");
|
|
5
|
+
function drawPolygonMask(context, rawData, stroke) {
|
|
6
|
+
const color = (0, Utils_1.colorToRgb)(stroke.color);
|
|
7
|
+
if (!color) {
|
|
8
|
+
return;
|
|
9
|
+
}
|
|
10
|
+
context.beginPath();
|
|
11
|
+
context.moveTo(rawData[0].x, rawData[0].y);
|
|
12
|
+
for (const item of rawData) {
|
|
13
|
+
context.lineTo(item.x, item.y);
|
|
14
|
+
}
|
|
15
|
+
context.closePath();
|
|
16
|
+
context.strokeStyle = (0, Utils_1.getStyleFromRgb)(color);
|
|
17
|
+
context.lineWidth = stroke.width;
|
|
18
|
+
context.stroke();
|
|
19
|
+
}
|
|
20
|
+
exports.drawPolygonMask = drawPolygonMask;
|
|
21
|
+
function drawPolygonMaskPath(context, path, stroke, position) {
|
|
22
|
+
context.translate(position.x, position.y);
|
|
23
|
+
const color = (0, Utils_1.colorToRgb)(stroke.color);
|
|
24
|
+
if (!color) {
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
context.strokeStyle = (0, Utils_1.getStyleFromRgb)(color, stroke.opacity);
|
|
28
|
+
context.lineWidth = stroke.width;
|
|
29
|
+
context.stroke(path);
|
|
30
|
+
}
|
|
31
|
+
exports.drawPolygonMaskPath = drawPolygonMaskPath;
|
|
32
|
+
function parsePaths(paths, scale, offset) {
|
|
33
|
+
var _a;
|
|
34
|
+
const res = [];
|
|
35
|
+
for (const path of paths) {
|
|
36
|
+
const segments = path.element.pathSegList;
|
|
37
|
+
const len = (_a = segments === null || segments === void 0 ? void 0 : segments.numberOfItems) !== null && _a !== void 0 ? _a : 0;
|
|
38
|
+
const p = {
|
|
39
|
+
x: 0,
|
|
40
|
+
y: 0,
|
|
41
|
+
};
|
|
42
|
+
for (let i = 0; i < len; i++) {
|
|
43
|
+
const segment = segments === null || segments === void 0 ? void 0 : segments.getItem(i);
|
|
44
|
+
const svgPathSeg = window.SVGPathSeg;
|
|
45
|
+
switch (segment === null || segment === void 0 ? void 0 : segment.pathSegType) {
|
|
46
|
+
case svgPathSeg.PATHSEG_MOVETO_ABS:
|
|
47
|
+
case svgPathSeg.PATHSEG_LINETO_ABS:
|
|
48
|
+
case svgPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
|
|
49
|
+
case svgPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:
|
|
50
|
+
case svgPathSeg.PATHSEG_ARC_ABS:
|
|
51
|
+
case svgPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS:
|
|
52
|
+
case svgPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS: {
|
|
53
|
+
const absSeg = segment;
|
|
54
|
+
p.x = absSeg.x;
|
|
55
|
+
p.y = absSeg.y;
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
case svgPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS:
|
|
59
|
+
p.x = segment.x;
|
|
60
|
+
break;
|
|
61
|
+
case svgPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
|
|
62
|
+
p.y = segment.y;
|
|
63
|
+
break;
|
|
64
|
+
case svgPathSeg.PATHSEG_LINETO_REL:
|
|
65
|
+
case svgPathSeg.PATHSEG_MOVETO_REL:
|
|
66
|
+
case svgPathSeg.PATHSEG_CURVETO_CUBIC_REL:
|
|
67
|
+
case svgPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:
|
|
68
|
+
case svgPathSeg.PATHSEG_ARC_REL:
|
|
69
|
+
case svgPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL:
|
|
70
|
+
case svgPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL: {
|
|
71
|
+
const relSeg = segment;
|
|
72
|
+
p.x += relSeg.x;
|
|
73
|
+
p.y += relSeg.y;
|
|
74
|
+
break;
|
|
75
|
+
}
|
|
76
|
+
case svgPathSeg.PATHSEG_LINETO_HORIZONTAL_REL:
|
|
77
|
+
p.x += segment.x;
|
|
78
|
+
break;
|
|
79
|
+
case svgPathSeg.PATHSEG_LINETO_VERTICAL_REL:
|
|
80
|
+
p.y += segment.y;
|
|
81
|
+
break;
|
|
82
|
+
case svgPathSeg.PATHSEG_UNKNOWN:
|
|
83
|
+
case svgPathSeg.PATHSEG_CLOSEPATH:
|
|
84
|
+
continue;
|
|
85
|
+
}
|
|
86
|
+
res.push({
|
|
87
|
+
x: p.x * scale + offset.x,
|
|
88
|
+
y: p.y * scale + offset.y,
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
return res;
|
|
93
|
+
}
|
|
94
|
+
exports.parsePaths = parsePaths;
|
|
95
|
+
function calcClosestPtOnSegment(s1, s2, pos) {
|
|
96
|
+
const { dx, dy } = (0, Utils_1.getDistances)(pos, s1);
|
|
97
|
+
const { dx: dxx, dy: dyy } = (0, Utils_1.getDistances)(s2, s1);
|
|
98
|
+
const t = (dx * dxx + dy * dyy) / (dxx ** 2 + dyy ** 2);
|
|
99
|
+
let x = s1.x + dxx * t;
|
|
100
|
+
let y = s1.y + dyy * t;
|
|
101
|
+
if (t < 0) {
|
|
102
|
+
x = s1.x;
|
|
103
|
+
y = s1.y;
|
|
104
|
+
}
|
|
105
|
+
else if (t > 1) {
|
|
106
|
+
x = s2.x;
|
|
107
|
+
y = s2.y;
|
|
108
|
+
}
|
|
109
|
+
return { x: x, y: y, isOnSegment: t >= 0 && t <= 1 };
|
|
110
|
+
}
|
|
111
|
+
exports.calcClosestPtOnSegment = calcClosestPtOnSegment;
|
|
112
|
+
function segmentBounce(start, stop, velocity) {
|
|
113
|
+
const { dx, dy } = (0, Utils_1.getDistances)(start, stop);
|
|
114
|
+
const wallAngle = Math.atan2(dy, dx);
|
|
115
|
+
const wallNormalX = Math.sin(wallAngle);
|
|
116
|
+
const wallNormalY = -Math.cos(wallAngle);
|
|
117
|
+
const d = 2 * (velocity.x * wallNormalX + velocity.y * wallNormalY);
|
|
118
|
+
velocity.x -= d * wallNormalX;
|
|
119
|
+
velocity.y -= d * wallNormalY;
|
|
120
|
+
}
|
|
121
|
+
exports.segmentBounce = segmentBounce;
|
package/README.md
CHANGED
|
@@ -337,12 +337,6 @@ yarn install && yarn start
|
|
|
337
337
|
|
|
338
338
|
_If you are brave enough_ you can switch to the `dev` branch for trying the features under development.
|
|
339
339
|
|
|
340
|
-
## Dependencies
|
|
341
|
-
|
|
342
|
-
You may have notices the \* near dependency free. Well almost all features works without any dependency, but... Well
|
|
343
|
-
there's a little but. The **Polygon Mask** feature requires `[pathseg](https://github.com/progers/pathseg)` for some
|
|
344
|
-
browsers to work fine, and obviously the Icon Fonts (like `FontAwesome` ) must be included in your page.
|
|
345
|
-
|
|
346
340
|
---
|
|
347
341
|
|
|
348
342
|
## Migrating from Particles.js
|
|
@@ -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
|
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
12
3
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
13
4
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
@@ -50,86 +41,80 @@ class ImageDrawer {
|
|
|
50
41
|
const containerImages = this.getImages(container);
|
|
51
42
|
containerImages === null || containerImages === void 0 ? void 0 : containerImages.images.push(image);
|
|
52
43
|
}
|
|
53
|
-
init(container) {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
if (emitterOptions.emitters) {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
yield this.loadImagesFromParticlesOptions(container, emitter.particles);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
else {
|
|
68
|
-
yield this.loadImagesFromParticlesOptions(container, emitterOptions.emitters.particles);
|
|
44
|
+
async init(container) {
|
|
45
|
+
await this.loadImagesFromParticlesOptions(container, container.actualOptions.particles);
|
|
46
|
+
await this.loadImagesFromParticlesOptions(container, container.actualOptions.interactivity.modes.trail.particles);
|
|
47
|
+
for (const manualParticle of container.actualOptions.manualParticles) {
|
|
48
|
+
await this.loadImagesFromParticlesOptions(container, manualParticle.options);
|
|
49
|
+
}
|
|
50
|
+
const emitterOptions = container.actualOptions;
|
|
51
|
+
if (emitterOptions.emitters) {
|
|
52
|
+
if (emitterOptions.emitters instanceof Array) {
|
|
53
|
+
for (const emitter of emitterOptions.emitters) {
|
|
54
|
+
await this.loadImagesFromParticlesOptions(container, emitter.particles);
|
|
69
55
|
}
|
|
70
56
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
57
|
+
else {
|
|
58
|
+
await this.loadImagesFromParticlesOptions(container, emitterOptions.emitters.particles);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
const interactiveEmitters = emitterOptions.interactivity.modes.emitters;
|
|
62
|
+
if (interactiveEmitters) {
|
|
63
|
+
if (interactiveEmitters instanceof Array) {
|
|
64
|
+
for (const emitter of interactiveEmitters) {
|
|
65
|
+
await this.loadImagesFromParticlesOptions(container, emitter.particles);
|
|
80
66
|
}
|
|
81
67
|
}
|
|
82
|
-
|
|
68
|
+
else {
|
|
69
|
+
await this.loadImagesFromParticlesOptions(container, interactiveEmitters.particles);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
83
72
|
}
|
|
84
73
|
destroy() {
|
|
85
74
|
__classPrivateFieldSet(this, _ImageDrawer_images, [], "f");
|
|
86
75
|
}
|
|
87
|
-
loadImagesFromParticlesOptions(container, options) {
|
|
76
|
+
async loadImagesFromParticlesOptions(container, options) {
|
|
88
77
|
var _a, _b, _c;
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
yield this.loadImageShape(container, optionsImage);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
else {
|
|
107
|
-
yield this.loadImageShape(container, imageOptions);
|
|
108
|
-
}
|
|
109
|
-
if (options === null || options === void 0 ? void 0 : options.groups) {
|
|
110
|
-
for (const groupName in options.groups) {
|
|
111
|
-
const group = options.groups[groupName];
|
|
112
|
-
yield this.loadImagesFromParticlesOptions(container, group);
|
|
113
|
-
}
|
|
78
|
+
const shapeOptions = options === null || options === void 0 ? void 0 : options.shape;
|
|
79
|
+
if (!(shapeOptions === null || shapeOptions === void 0 ? void 0 : shapeOptions.type) ||
|
|
80
|
+
!shapeOptions.options ||
|
|
81
|
+
(!(0, Utils_1.isInArray)(Enums_1.ShapeType.image, shapeOptions.type) && !(0, Utils_1.isInArray)(Enums_1.ShapeType.images, shapeOptions.type))) {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
const idx = __classPrivateFieldGet(this, _ImageDrawer_images, "f").findIndex((t) => t.id === container.id);
|
|
85
|
+
if (idx >= 0) {
|
|
86
|
+
__classPrivateFieldGet(this, _ImageDrawer_images, "f").splice(idx, 1);
|
|
87
|
+
}
|
|
88
|
+
const imageOptions = (_a = shapeOptions.options[Enums_1.ShapeType.images]) !== null && _a !== void 0 ? _a : shapeOptions.options[Enums_1.ShapeType.image];
|
|
89
|
+
if (imageOptions instanceof Array) {
|
|
90
|
+
for (const optionsImage of imageOptions) {
|
|
91
|
+
await this.loadImageShape(container, optionsImage);
|
|
114
92
|
}
|
|
115
|
-
|
|
116
|
-
|
|
93
|
+
}
|
|
94
|
+
else {
|
|
95
|
+
await this.loadImageShape(container, imageOptions);
|
|
96
|
+
}
|
|
97
|
+
if (options === null || options === void 0 ? void 0 : options.groups) {
|
|
98
|
+
for (const groupName in options.groups) {
|
|
99
|
+
const group = options.groups[groupName];
|
|
100
|
+
await this.loadImagesFromParticlesOptions(container, group);
|
|
117
101
|
}
|
|
118
|
-
}
|
|
102
|
+
}
|
|
103
|
+
if ((_c = (_b = options === null || options === void 0 ? void 0 : options.destroy) === null || _b === void 0 ? void 0 : _b.split) === null || _c === void 0 ? void 0 : _c.particles) {
|
|
104
|
+
await this.loadImagesFromParticlesOptions(container, options === null || options === void 0 ? void 0 : options.destroy.split.particles);
|
|
105
|
+
}
|
|
119
106
|
}
|
|
120
|
-
loadImageShape(container, imageShape) {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
this.addImage(container, image);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
catch (_a) {
|
|
130
|
-
console.warn(`tsParticles error - ${imageShape.src} not found`);
|
|
107
|
+
async loadImageShape(container, imageShape) {
|
|
108
|
+
try {
|
|
109
|
+
const imageFunc = imageShape.replaceColor ? Utils_2.downloadSvgImage : Utils_2.loadImage;
|
|
110
|
+
const image = await imageFunc(imageShape.src);
|
|
111
|
+
if (image) {
|
|
112
|
+
this.addImage(container, image);
|
|
131
113
|
}
|
|
132
|
-
}
|
|
114
|
+
}
|
|
115
|
+
catch (_a) {
|
|
116
|
+
console.warn(`tsParticles error - ${imageShape.src} not found`);
|
|
117
|
+
}
|
|
133
118
|
}
|
|
134
119
|
draw(context, particle, radius, opacity) {
|
|
135
120
|
var _a, _b;
|
|
@@ -155,7 +140,7 @@ class ImageDrawer {
|
|
|
155
140
|
}
|
|
156
141
|
}
|
|
157
142
|
loadShape(particle) {
|
|
158
|
-
var _a, _b, _c, _d, _e;
|
|
143
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
159
144
|
if (particle.shape !== "image" && particle.shape !== "images") {
|
|
160
145
|
return;
|
|
161
146
|
}
|
|
@@ -168,7 +153,7 @@ class ImageDrawer {
|
|
|
168
153
|
return;
|
|
169
154
|
}
|
|
170
155
|
if (image.svgData !== undefined && imageData.replaceColor && color) {
|
|
171
|
-
const svgColoredData = Utils_2.replaceColorSvg(image, color, particle.opacity.value);
|
|
156
|
+
const svgColoredData = (0, Utils_2.replaceColorSvg)(image, color, (_c = (_b = particle.opacity) === null || _b === void 0 ? void 0 : _b.value) !== null && _c !== void 0 ? _c : 1);
|
|
172
157
|
const svg = new Blob([svgColoredData], { type: "image/svg+xml" });
|
|
173
158
|
const domUrl = URL || window.URL || window.webkitURL || window;
|
|
174
159
|
const url = domUrl.createObjectURL(svg);
|
|
@@ -176,7 +161,7 @@ class ImageDrawer {
|
|
|
176
161
|
imageRes = {
|
|
177
162
|
data: Object.assign(Object.assign({}, image), { svgData: svgColoredData }),
|
|
178
163
|
ratio: imageData.width / imageData.height,
|
|
179
|
-
replaceColor: (
|
|
164
|
+
replaceColor: (_d = imageData.replaceColor) !== null && _d !== void 0 ? _d : imageData.replace_color,
|
|
180
165
|
source: imageData.src,
|
|
181
166
|
};
|
|
182
167
|
img.addEventListener("load", () => {
|
|
@@ -189,7 +174,7 @@ class ImageDrawer {
|
|
|
189
174
|
});
|
|
190
175
|
img.addEventListener("error", () => {
|
|
191
176
|
domUrl.revokeObjectURL(url);
|
|
192
|
-
Utils_2.loadImage(imageData.src).then((img2) => {
|
|
177
|
+
(0, Utils_2.loadImage)(imageData.src).then((img2) => {
|
|
193
178
|
const pImage = particle.image;
|
|
194
179
|
if (pImage) {
|
|
195
180
|
image.element = img2 === null || img2 === void 0 ? void 0 : img2.element;
|
|
@@ -204,15 +189,15 @@ class ImageDrawer {
|
|
|
204
189
|
data: image,
|
|
205
190
|
loaded: true,
|
|
206
191
|
ratio: imageData.width / imageData.height,
|
|
207
|
-
replaceColor: (
|
|
192
|
+
replaceColor: (_e = imageData.replaceColor) !== null && _e !== void 0 ? _e : imageData.replace_color,
|
|
208
193
|
source: imageData.src,
|
|
209
194
|
};
|
|
210
195
|
}
|
|
211
196
|
if (!imageRes.ratio) {
|
|
212
197
|
imageRes.ratio = 1;
|
|
213
198
|
}
|
|
214
|
-
const fill = (
|
|
215
|
-
const close = (
|
|
199
|
+
const fill = (_f = imageData.fill) !== null && _f !== void 0 ? _f : particle.fill;
|
|
200
|
+
const close = (_g = imageData.close) !== null && _g !== void 0 ? _g : particle.close;
|
|
216
201
|
const imageShape = {
|
|
217
202
|
image: imageRes,
|
|
218
203
|
fill,
|
package/Shapes/Image/Utils.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.replaceColorSvg = exports.downloadSvgImage = exports.loadImage = void 0;
|
|
13
4
|
const Utils_1 = require("../../Utils");
|
|
@@ -33,25 +24,23 @@ function loadImage(source) {
|
|
|
33
24
|
});
|
|
34
25
|
}
|
|
35
26
|
exports.loadImage = loadImage;
|
|
36
|
-
function downloadSvgImage(source) {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
return image;
|
|
54
|
-
});
|
|
27
|
+
async function downloadSvgImage(source) {
|
|
28
|
+
if (!source) {
|
|
29
|
+
throw new Error("Error tsParticles - No image.src");
|
|
30
|
+
}
|
|
31
|
+
const image = {
|
|
32
|
+
source: source,
|
|
33
|
+
type: source.substr(source.length - 3),
|
|
34
|
+
};
|
|
35
|
+
if (image.type !== "svg") {
|
|
36
|
+
return loadImage(source);
|
|
37
|
+
}
|
|
38
|
+
const response = await fetch(image.source);
|
|
39
|
+
if (!response.ok) {
|
|
40
|
+
throw new Error("Error tsParticles - Image not found");
|
|
41
|
+
}
|
|
42
|
+
image.svgData = await response.text();
|
|
43
|
+
return image;
|
|
55
44
|
}
|
|
56
45
|
exports.downloadSvgImage = downloadSvgImage;
|
|
57
46
|
function replaceColorSvg(imageShape, color, opacity) {
|
|
@@ -61,9 +50,9 @@ function replaceColorSvg(imageShape, color, opacity) {
|
|
|
61
50
|
}
|
|
62
51
|
if (svgData.includes("fill")) {
|
|
63
52
|
const currentColor = /(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d.]+%?\))|currentcolor/gi;
|
|
64
|
-
return svgData.replace(currentColor, () => Utils_1.getStyleFromHsl(color, opacity));
|
|
53
|
+
return svgData.replace(currentColor, () => (0, Utils_1.getStyleFromHsl)(color, opacity));
|
|
65
54
|
}
|
|
66
55
|
const preFillIndex = svgData.indexOf(">");
|
|
67
|
-
return `${svgData.substring(0, preFillIndex)} fill="${Utils_1.getStyleFromHsl(color, opacity)}"${svgData.substring(preFillIndex)}`;
|
|
56
|
+
return `${svgData.substring(0, preFillIndex)} fill="${(0, Utils_1.getStyleFromHsl)(color, opacity)}"${svgData.substring(preFillIndex)}`;
|
|
68
57
|
}
|
|
69
58
|
exports.replaceColorSvg = replaceColorSvg;
|
|
@@ -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.TextDrawer = exports.validTypes = void 0;
|
|
13
4
|
const Utils_1 = require("../../Utils");
|
|
@@ -16,25 +7,23 @@ class TextDrawer {
|
|
|
16
7
|
getSidesCount() {
|
|
17
8
|
return 12;
|
|
18
9
|
}
|
|
19
|
-
init(container) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
promises.push(Utils_1.loadFont(character));
|
|
28
|
-
}
|
|
29
|
-
yield Promise.allSettled(promises);
|
|
10
|
+
async init(container) {
|
|
11
|
+
const options = container.actualOptions;
|
|
12
|
+
if (exports.validTypes.find((t) => (0, Utils_1.isInArray)(t, options.particles.shape.type))) {
|
|
13
|
+
const shapeOptions = exports.validTypes.map((t) => options.particles.shape.options[t]).find((t) => !!t);
|
|
14
|
+
if (shapeOptions instanceof Array) {
|
|
15
|
+
const promises = [];
|
|
16
|
+
for (const character of shapeOptions) {
|
|
17
|
+
promises.push((0, Utils_1.loadFont)(character));
|
|
30
18
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
19
|
+
await Promise.allSettled(promises);
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
if (shapeOptions !== undefined) {
|
|
23
|
+
await (0, Utils_1.loadFont)(shapeOptions);
|
|
35
24
|
}
|
|
36
25
|
}
|
|
37
|
-
}
|
|
26
|
+
}
|
|
38
27
|
}
|
|
39
28
|
draw(context, particle, radius, opacity) {
|
|
40
29
|
var _a, _b, _c;
|
|
@@ -49,7 +38,7 @@ class TextDrawer {
|
|
|
49
38
|
const textParticle = particle;
|
|
50
39
|
if (textParticle.text === undefined) {
|
|
51
40
|
textParticle.text =
|
|
52
|
-
textData instanceof Array ? Utils_1.itemFromArray(textData, particle.randomIndexData) : textData;
|
|
41
|
+
textData instanceof Array ? (0, Utils_1.itemFromArray)(textData, particle.randomIndexData) : textData;
|
|
53
42
|
}
|
|
54
43
|
const text = textParticle.text;
|
|
55
44
|
const style = (_a = character.style) !== null && _a !== void 0 ? _a : "";
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { IDelta, IParticleUpdater } from "../../Core/Interfaces";
|
|
2
2
|
import { Particle } from "../../Core/Particle";
|
|
3
|
+
import { Container } from "../../Core/Container";
|
|
3
4
|
export declare class AngleUpdater implements IParticleUpdater {
|
|
5
|
+
private readonly container;
|
|
6
|
+
constructor(container: Container);
|
|
7
|
+
init(particle: Particle): void;
|
|
4
8
|
isEnabled(particle: Particle): boolean;
|
|
5
9
|
update(particle: Particle, delta: IDelta): void;
|
|
6
10
|
}
|
|
@@ -2,32 +2,68 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AngleUpdater = void 0;
|
|
4
4
|
const Enums_1 = require("../../Enums");
|
|
5
|
+
const Utils_1 = require("../../Utils");
|
|
5
6
|
function updateAngle(particle, delta) {
|
|
6
7
|
var _a;
|
|
7
|
-
const rotate = particle.
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
const rotate = particle.rotate;
|
|
9
|
+
if (!rotate) {
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
12
|
+
const rotateOptions = particle.options.rotate;
|
|
13
|
+
const rotateAnimation = rotateOptions.animation;
|
|
14
|
+
const speed = ((_a = rotate.velocity) !== null && _a !== void 0 ? _a : 0) * delta.factor;
|
|
10
15
|
const max = 2 * Math.PI;
|
|
11
16
|
if (!rotateAnimation.enable) {
|
|
12
17
|
return;
|
|
13
18
|
}
|
|
14
|
-
switch (
|
|
19
|
+
switch (rotate.status) {
|
|
15
20
|
case Enums_1.AnimationStatus.increasing:
|
|
16
|
-
|
|
17
|
-
if (
|
|
18
|
-
|
|
21
|
+
rotate.value += speed;
|
|
22
|
+
if (rotate.value > max) {
|
|
23
|
+
rotate.value -= max;
|
|
19
24
|
}
|
|
20
25
|
break;
|
|
21
26
|
case Enums_1.AnimationStatus.decreasing:
|
|
22
27
|
default:
|
|
23
|
-
|
|
24
|
-
if (
|
|
25
|
-
|
|
28
|
+
rotate.value -= speed;
|
|
29
|
+
if (rotate.value < 0) {
|
|
30
|
+
rotate.value += max;
|
|
26
31
|
}
|
|
27
32
|
break;
|
|
28
33
|
}
|
|
29
34
|
}
|
|
30
35
|
class AngleUpdater {
|
|
36
|
+
constructor(container) {
|
|
37
|
+
this.container = container;
|
|
38
|
+
}
|
|
39
|
+
init(particle) {
|
|
40
|
+
const rotateOptions = particle.options.rotate;
|
|
41
|
+
particle.rotate = {
|
|
42
|
+
enable: rotateOptions.animation.enable,
|
|
43
|
+
value: ((0, Utils_1.getRangeValue)(rotateOptions.value) * Math.PI) / 180,
|
|
44
|
+
};
|
|
45
|
+
let rotateDirection = rotateOptions.direction;
|
|
46
|
+
if (rotateDirection === Enums_1.RotateDirection.random) {
|
|
47
|
+
const index = Math.floor(Math.random() * 2);
|
|
48
|
+
rotateDirection = index > 0 ? Enums_1.RotateDirection.counterClockwise : Enums_1.RotateDirection.clockwise;
|
|
49
|
+
}
|
|
50
|
+
switch (rotateDirection) {
|
|
51
|
+
case Enums_1.RotateDirection.counterClockwise:
|
|
52
|
+
case "counterClockwise":
|
|
53
|
+
particle.rotate.status = Enums_1.AnimationStatus.decreasing;
|
|
54
|
+
break;
|
|
55
|
+
case Enums_1.RotateDirection.clockwise:
|
|
56
|
+
particle.rotate.status = Enums_1.AnimationStatus.increasing;
|
|
57
|
+
break;
|
|
58
|
+
}
|
|
59
|
+
const rotateAnimation = particle.options.rotate.animation;
|
|
60
|
+
if (rotateAnimation.enable) {
|
|
61
|
+
particle.rotate.velocity = (rotateAnimation.speed / 360) * this.container.retina.reduceFactor;
|
|
62
|
+
if (!rotateAnimation.sync) {
|
|
63
|
+
particle.rotate.velocity *= Math.random();
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
31
67
|
isEnabled(particle) {
|
|
32
68
|
const rotate = particle.options.rotate;
|
|
33
69
|
const rotateAnimation = rotate.animation;
|
package/Updaters/Angle/index.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.loadAngleUpdater = void 0;
|
|
4
4
|
const AngleUpdater_1 = require("./AngleUpdater");
|
|
5
5
|
function loadAngleUpdater(tsParticles) {
|
|
6
|
-
tsParticles.addParticleUpdater("angle", () => new AngleUpdater_1.AngleUpdater());
|
|
6
|
+
tsParticles.addParticleUpdater("angle", (container) => new AngleUpdater_1.AngleUpdater(container));
|
|
7
7
|
}
|
|
8
8
|
exports.loadAngleUpdater = loadAngleUpdater;
|