tsparticles 1.34.1 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/167.js +1775 -0
- package/Core/Canvas.d.ts +0 -1
- package/Core/Canvas.js +37 -56
- package/Core/Container.js +66 -81
- package/Core/Interfaces/IParticle.d.ts +11 -15
- package/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/Core/Interfaces/IParticleRetinaProps.js +2 -0
- package/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/Core/Interfaces/IParticleRoll.js +2 -0
- package/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/Core/Interfaces/IParticleWobble.js +2 -0
- package/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/Core/Interfaces/IParticlesFrequencies.js +2 -0
- package/Core/Interfaces/index.d.ts +3 -2
- package/Core/Interfaces/index.js +3 -2
- package/Core/Loader.js +66 -83
- package/Core/Particle/Mover.js +14 -13
- package/Core/Particle/Vector.js +2 -2
- package/Core/Particle.d.ts +16 -28
- package/Core/Particle.js +76 -280
- package/Core/Particles.d.ts +2 -3
- package/Core/Particles.js +16 -14
- package/Core/Retina.js +12 -14
- package/Enums/Modes/RollMode.d.ts +5 -0
- package/Enums/Modes/RollMode.js +9 -0
- package/Enums/Modes/index.d.ts +1 -0
- package/Enums/Modes/index.js +1 -0
- package/Interactions/External/Attract/Attractor.js +5 -5
- package/Interactions/External/Bounce/Bouncer.js +7 -7
- package/Interactions/External/Bubble/Bubbler.js +21 -20
- package/Interactions/External/Connect/Connector.js +1 -1
- package/Interactions/External/Grab/Grabber.js +4 -4
- package/Interactions/External/Repulse/Repulser.js +8 -8
- package/Interactions/External/Trail/TrailMaker.js +2 -2
- package/Interactions/Particles/Attract/Attractor.js +2 -2
- package/Interactions/Particles/Collisions/Collider.js +4 -4
- package/Interactions/Particles/Links/LinkInstance.js +11 -11
- package/Interactions/Particles/Links/Linker.js +6 -6
- package/Interactions/Particles/Links/index.js +1 -1
- package/Options/Classes/AnimatableColor.d.ts +2 -2
- package/Options/Classes/AnimatableColor.js +8 -2
- package/Options/Classes/AnimatableGradient.js +1 -1
- package/Options/Classes/ColorAnimation.js +1 -1
- package/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/Options/Classes/Interactivity/Modes/Trail.js +1 -1
- package/Options/Classes/ManualParticle.js +1 -1
- package/Options/Classes/Options.d.ts +4 -1
- package/Options/Classes/Options.js +25 -12
- package/Options/Classes/OptionsColor.d.ts +1 -1
- package/Options/Classes/OptionsColor.js +2 -1
- package/Options/Classes/Particles/Destroy/Split.js +1 -1
- package/Options/Classes/Particles/Move/Move.js +3 -3
- package/Options/Classes/Particles/Move/Path/Path.js +1 -1
- package/Options/Classes/Particles/Move/Spin.js +2 -2
- package/Options/Classes/Particles/Opacity/Opacity.js +1 -1
- package/Options/Classes/Particles/ParticlesOptions.js +2 -2
- package/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/Options/Classes/Particles/Roll/Roll.js +6 -1
- package/Options/Classes/Particles/Shape/Shape.js +5 -5
- package/Options/Classes/Particles/Size/Size.js +1 -1
- package/Options/Classes/Particles/Wobble/Wobble.js +2 -2
- package/Options/Classes/Responsive.js +1 -1
- package/Options/Classes/Theme/Theme.js +1 -1
- package/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/Options/Classes/Theme/ThemeDefault.js +7 -3
- package/Options/Classes/ValueWithRandom.js +1 -1
- package/Options/Interfaces/IOptions.d.ts +3 -3
- package/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/Plugins/Absorbers/AbsorberInstance.js +9 -8
- package/Plugins/Absorbers/Absorbers.js +2 -2
- package/Plugins/Absorbers/plugin.js +1 -1
- package/Plugins/Emitters/EmitterInstance.js +10 -10
- package/Plugins/Emitters/Emitters.js +3 -3
- package/Plugins/Emitters/Options/Classes/Emitter.js +1 -1
- package/Plugins/Emitters/Options/Classes/EmitterRate.js +2 -2
- package/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/Plugins/Emitters/plugin.js +1 -1
- package/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/Plugins/PolygonMask/Options/Classes/DrawStroke.js +1 -1
- package/Plugins/PolygonMask/Options/Classes/PolygonMask.js +1 -1
- package/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/Plugins/PolygonMask/PolygonMaskInstance.js +53 -178
- package/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/Plugins/PolygonMask/pathseg.js +1532 -0
- package/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/Plugins/PolygonMask/plugin.js +23 -1
- package/Plugins/PolygonMask/types.d.ts +8 -0
- package/Plugins/PolygonMask/types.js +2 -0
- package/Plugins/PolygonMask/utils.d.ts +11 -0
- package/Plugins/PolygonMask/utils.js +121 -0
- package/README.md +0 -6
- package/Shapes/Image/ImageDrawer.js +68 -83
- package/Shapes/Image/Utils.js +19 -30
- package/Shapes/Text/TextDrawer.js +15 -26
- package/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/Updaters/Angle/AngleUpdater.js +46 -10
- package/Updaters/Angle/index.js +1 -1
- package/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/Updaters/Color/ColorUpdater.js +10 -1
- package/Updaters/Color/index.js +1 -1
- package/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/Updaters/Life/LifeUpdater.js +7 -5
- package/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/Updaters/Opacity/OpacityUpdater.js +46 -1
- package/Updaters/Opacity/index.js +1 -1
- package/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/Updaters/OutModes/OutOfCanvasUpdater.js +9 -7
- package/Updaters/OutModes/Utils.js +2 -2
- package/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/Updaters/Roll/RollUpdater.js +42 -6
- package/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/Updaters/Size/SizeUpdater.js +3 -1
- package/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/Updaters/StrokeColor/index.js +1 -1
- package/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/Updaters/Tilt/TiltUpdater.js +37 -0
- package/Updaters/Tilt/index.js +1 -1
- package/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/Updaters/Wobble/index.js +1 -1
- package/Utils/CanvasUtils.d.ts +2 -0
- package/Utils/CanvasUtils.js +36 -24
- package/Utils/Circle.js +1 -1
- package/Utils/ColorUtils.js +7 -7
- package/Utils/EventListeners.d.ts +2 -0
- package/Utils/EventListeners.js +16 -1
- package/Utils/NumberUtils.js +4 -4
- package/Utils/QuadTree.js +1 -1
- package/Utils/Utils.d.ts +1 -27
- package/Utils/Utils.js +11 -22
- package/browser/Core/Canvas.d.ts +0 -1
- package/browser/Core/Canvas.js +17 -36
- package/browser/Core/Container.js +64 -79
- package/browser/Core/Interfaces/IParticle.d.ts +11 -15
- package/browser/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/browser/Core/Interfaces/IParticleRetinaProps.js +1 -0
- package/browser/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/browser/Core/Interfaces/IParticleRoll.js +1 -0
- package/browser/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/browser/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/browser/Core/Interfaces/IParticleWobble.js +1 -0
- package/browser/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/browser/Core/Interfaces/IParticlesFrequencies.js +1 -0
- package/browser/Core/Interfaces/index.d.ts +3 -2
- package/browser/Core/Interfaces/index.js +3 -2
- package/browser/Core/Loader.js +66 -83
- package/browser/Core/Particle/Mover.js +8 -7
- package/browser/Core/Particle/Vector.js +2 -2
- package/browser/Core/Particle.d.ts +16 -28
- package/browser/Core/Particle.js +60 -264
- package/browser/Core/Particles.d.ts +2 -3
- package/browser/Core/Particles.js +11 -9
- package/browser/Core/Retina.js +10 -12
- package/browser/Enums/Modes/RollMode.d.ts +5 -0
- package/browser/Enums/Modes/RollMode.js +6 -0
- package/browser/Enums/Modes/index.d.ts +1 -0
- package/browser/Enums/Modes/index.js +1 -0
- package/browser/Interactions/External/Bounce/Bouncer.js +1 -1
- package/browser/Interactions/External/Bubble/Bubbler.js +4 -3
- package/browser/Interactions/External/Repulse/Repulser.js +1 -1
- package/browser/Interactions/Particles/Attract/Attractor.js +1 -1
- package/browser/Interactions/Particles/Links/LinkInstance.js +2 -2
- package/browser/Interactions/Particles/Links/Linker.js +1 -1
- package/browser/Options/Classes/AnimatableColor.d.ts +2 -2
- package/browser/Options/Classes/AnimatableColor.js +8 -2
- package/browser/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/browser/Options/Classes/Options.d.ts +4 -1
- package/browser/Options/Classes/Options.js +25 -12
- package/browser/Options/Classes/OptionsColor.d.ts +1 -1
- package/browser/Options/Classes/OptionsColor.js +2 -1
- package/browser/Options/Classes/Particles/ParticlesOptions.js +1 -1
- package/browser/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/browser/Options/Classes/Particles/Roll/Roll.js +5 -0
- package/browser/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/browser/Options/Classes/Theme/ThemeDefault.js +6 -2
- package/browser/Options/Interfaces/IOptions.d.ts +3 -3
- package/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/browser/Plugins/Absorbers/AbsorberInstance.js +2 -1
- package/browser/Plugins/Emitters/EmitterInstance.js +1 -1
- package/browser/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/browser/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
- package/browser/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/browser/Plugins/PolygonMask/pathseg.js +1532 -0
- package/browser/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/browser/Plugins/PolygonMask/plugin.js +4 -1
- package/browser/Plugins/PolygonMask/types.d.ts +8 -0
- package/browser/Plugins/PolygonMask/types.js +1 -0
- package/browser/Plugins/PolygonMask/utils.d.ts +11 -0
- package/browser/Plugins/PolygonMask/utils.js +113 -0
- package/browser/Shapes/Image/ImageDrawer.js +67 -82
- package/browser/Shapes/Image/Utils.js +17 -28
- package/browser/Shapes/Text/TextDrawer.js +14 -25
- package/browser/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/browser/Updaters/Angle/AngleUpdater.js +47 -11
- package/browser/Updaters/Angle/index.js +1 -1
- package/browser/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/browser/Updaters/Color/ColorUpdater.js +10 -1
- package/browser/Updaters/Color/index.js +1 -1
- package/browser/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/browser/Updaters/Life/LifeUpdater.js +2 -0
- package/browser/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/browser/Updaters/Opacity/OpacityUpdater.js +47 -2
- package/browser/Updaters/Opacity/index.js +1 -1
- package/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/browser/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
- package/browser/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/browser/Updaters/Roll/RollUpdater.js +42 -6
- package/browser/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/browser/Updaters/Size/SizeUpdater.js +2 -0
- package/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/browser/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/browser/Updaters/StrokeColor/index.js +1 -1
- package/browser/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/browser/Updaters/Tilt/TiltUpdater.js +38 -1
- package/browser/Updaters/Tilt/index.js +1 -1
- package/browser/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/browser/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/browser/Updaters/Wobble/index.js +1 -1
- package/browser/Utils/CanvasUtils.d.ts +2 -0
- package/browser/Utils/CanvasUtils.js +19 -8
- package/browser/Utils/EventListeners.d.ts +2 -0
- package/browser/Utils/EventListeners.js +15 -0
- package/browser/Utils/NumberUtils.js +4 -4
- package/browser/Utils/Utils.d.ts +1 -27
- package/browser/Utils/Utils.js +6 -17
- package/browser/index.d.ts +5 -5
- package/browser/index.js +5 -5
- package/browser/index.slim.d.ts +5 -5
- package/browser/index.slim.js +5 -5
- package/browser/main.js +8 -25
- package/esm/Core/Canvas.d.ts +0 -1
- package/esm/Core/Canvas.js +17 -36
- package/esm/Core/Container.js +64 -79
- package/esm/Core/Interfaces/IParticle.d.ts +11 -15
- package/esm/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/esm/Core/Interfaces/IParticleRetinaProps.js +1 -0
- package/esm/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/esm/Core/Interfaces/IParticleRoll.js +1 -0
- package/esm/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/esm/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/esm/Core/Interfaces/IParticleWobble.js +1 -0
- package/esm/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/esm/Core/Interfaces/IParticlesFrequencies.js +1 -0
- package/esm/Core/Interfaces/index.d.ts +3 -2
- package/esm/Core/Interfaces/index.js +3 -2
- package/esm/Core/Loader.js +66 -83
- package/esm/Core/Particle/Mover.js +8 -7
- package/esm/Core/Particle/Vector.js +2 -2
- package/esm/Core/Particle.d.ts +16 -28
- package/esm/Core/Particle.js +60 -264
- package/esm/Core/Particles.d.ts +2 -3
- package/esm/Core/Particles.js +11 -9
- package/esm/Core/Retina.js +10 -12
- package/esm/Enums/Modes/RollMode.d.ts +5 -0
- package/esm/Enums/Modes/RollMode.js +6 -0
- package/esm/Enums/Modes/index.d.ts +1 -0
- package/esm/Enums/Modes/index.js +1 -0
- package/esm/Interactions/External/Bounce/Bouncer.js +1 -1
- package/esm/Interactions/External/Bubble/Bubbler.js +4 -3
- package/esm/Interactions/External/Repulse/Repulser.js +1 -1
- package/esm/Interactions/Particles/Attract/Attractor.js +1 -1
- package/esm/Interactions/Particles/Links/LinkInstance.js +2 -2
- package/esm/Interactions/Particles/Links/Linker.js +1 -1
- package/esm/Options/Classes/AnimatableColor.d.ts +2 -2
- package/esm/Options/Classes/AnimatableColor.js +8 -2
- package/esm/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/esm/Options/Classes/Options.d.ts +4 -1
- package/esm/Options/Classes/Options.js +25 -12
- package/esm/Options/Classes/OptionsColor.d.ts +1 -1
- package/esm/Options/Classes/OptionsColor.js +2 -1
- package/esm/Options/Classes/Particles/ParticlesOptions.js +1 -1
- package/esm/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/esm/Options/Classes/Particles/Roll/Roll.js +5 -0
- package/esm/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/esm/Options/Classes/Theme/ThemeDefault.js +6 -2
- package/esm/Options/Interfaces/IOptions.d.ts +3 -3
- package/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/esm/Plugins/Absorbers/AbsorberInstance.js +2 -1
- package/esm/Plugins/Emitters/EmitterInstance.js +1 -1
- package/esm/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/esm/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
- package/esm/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/esm/Plugins/PolygonMask/pathseg.js +1532 -0
- package/esm/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/esm/Plugins/PolygonMask/plugin.js +4 -1
- package/esm/Plugins/PolygonMask/types.d.ts +8 -0
- package/esm/Plugins/PolygonMask/types.js +1 -0
- package/esm/Plugins/PolygonMask/utils.d.ts +11 -0
- package/esm/Plugins/PolygonMask/utils.js +113 -0
- package/esm/Shapes/Image/ImageDrawer.js +67 -82
- package/esm/Shapes/Image/Utils.js +17 -28
- package/esm/Shapes/Text/TextDrawer.js +14 -25
- package/esm/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/esm/Updaters/Angle/AngleUpdater.js +47 -11
- package/esm/Updaters/Angle/index.js +1 -1
- package/esm/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/esm/Updaters/Color/ColorUpdater.js +10 -1
- package/esm/Updaters/Color/index.js +1 -1
- package/esm/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/esm/Updaters/Life/LifeUpdater.js +2 -0
- package/esm/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/esm/Updaters/Opacity/OpacityUpdater.js +47 -2
- package/esm/Updaters/Opacity/index.js +1 -1
- package/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/esm/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
- package/esm/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/esm/Updaters/Roll/RollUpdater.js +42 -6
- package/esm/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/esm/Updaters/Size/SizeUpdater.js +2 -0
- package/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/esm/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/esm/Updaters/StrokeColor/index.js +1 -1
- package/esm/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/esm/Updaters/Tilt/TiltUpdater.js +38 -1
- package/esm/Updaters/Tilt/index.js +1 -1
- package/esm/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/esm/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/esm/Updaters/Wobble/index.js +1 -1
- package/esm/Utils/CanvasUtils.d.ts +2 -0
- package/esm/Utils/CanvasUtils.js +19 -8
- package/esm/Utils/EventListeners.d.ts +2 -0
- package/esm/Utils/EventListeners.js +15 -0
- package/esm/Utils/NumberUtils.js +4 -4
- package/esm/Utils/Utils.d.ts +1 -27
- package/esm/Utils/Utils.js +6 -17
- package/esm/index.d.ts +5 -5
- package/esm/index.js +5 -5
- package/esm/index.slim.d.ts +5 -5
- package/esm/index.slim.js +5 -5
- package/esm/main.js +8 -25
- package/full.js +4 -4
- package/index.d.ts +5 -5
- package/index.js +7 -23
- package/index.slim.d.ts +5 -5
- package/index.slim.js +7 -23
- package/main.js +8 -25
- package/package.json +1 -4
- package/report.html +2 -2
- package/report.slim.html +2 -2
- package/slim.js +27 -27
- package/tsparticles.js +1139 -1132
- package/tsparticles.min.js +2 -2
- package/tsparticles.slim.js +830 -1035
- package/tsparticles.slim.min.js +2 -2
- package/ts3.4/Core/Canvas.d.ts +0 -36
- package/ts3.4/Core/Container.d.ts +0 -64
- package/ts3.4/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/Core/FrameManager.d.ts +0 -6
- package/ts3.4/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/Core/Loader.d.ts +0 -14
- package/ts3.4/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/Core/Particle.d.ts +0 -84
- package/ts3.4/Core/Particles.d.ts +0 -45
- package/ts3.4/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/Core/Retina.d.ts +0 -26
- package/ts3.4/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/Enums/Types/index.d.ts +0 -9
- package/ts3.4/Enums/index.d.ts +0 -5
- package/ts3.4/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/Types/PathOptions.d.ts +0 -3
- package/ts3.4/Types/RangeValue.d.ts +0 -2
- package/ts3.4/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/Types/ShapeData.d.ts +0 -5
- package/ts3.4/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/Types/index.d.ts +0 -6
- package/ts3.4/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/Utils/Circle.d.ts +0 -8
- package/ts3.4/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/Utils/Constants.d.ts +0 -18
- package/ts3.4/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/Utils/Plugins.d.ts +0 -22
- package/ts3.4/Utils/Point.d.ts +0 -7
- package/ts3.4/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/Utils/Range.d.ts +0 -7
- package/ts3.4/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/Utils/Utils.d.ts +0 -65
- package/ts3.4/Utils/index.d.ts +0 -13
- package/ts3.4/browser/Core/Canvas.d.ts +0 -36
- package/ts3.4/browser/Core/Container.d.ts +0 -64
- package/ts3.4/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/browser/Core/FrameManager.d.ts +0 -6
- package/ts3.4/browser/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/browser/Core/Loader.d.ts +0 -14
- package/ts3.4/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/browser/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/browser/Core/Particle.d.ts +0 -84
- package/ts3.4/browser/Core/Particles.d.ts +0 -45
- package/ts3.4/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/browser/Core/Retina.d.ts +0 -26
- package/ts3.4/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/index.d.ts +0 -9
- package/ts3.4/browser/Enums/index.d.ts +0 -5
- package/ts3.4/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/browser/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/browser/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/browser/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/browser/Types/PathOptions.d.ts +0 -3
- package/ts3.4/browser/Types/RangeValue.d.ts +0 -2
- package/ts3.4/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/browser/Types/ShapeData.d.ts +0 -5
- package/ts3.4/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/browser/Types/index.d.ts +0 -6
- package/ts3.4/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/browser/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/browser/Utils/Circle.d.ts +0 -8
- package/ts3.4/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/browser/Utils/Constants.d.ts +0 -18
- package/ts3.4/browser/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/browser/Utils/Plugins.d.ts +0 -22
- package/ts3.4/browser/Utils/Point.d.ts +0 -7
- package/ts3.4/browser/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/browser/Utils/Range.d.ts +0 -7
- package/ts3.4/browser/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/browser/Utils/Utils.d.ts +0 -65
- package/ts3.4/browser/Utils/index.d.ts +0 -13
- package/ts3.4/browser/full.d.ts +0 -2
- package/ts3.4/browser/index.d.ts +0 -31
- package/ts3.4/browser/index.slim.d.ts +0 -25
- package/ts3.4/browser/main.d.ts +0 -24
- package/ts3.4/browser/pjs.d.ts +0 -14
- package/ts3.4/browser/slim.d.ts +0 -2
- package/ts3.4/esm/Core/Canvas.d.ts +0 -36
- package/ts3.4/esm/Core/Container.d.ts +0 -64
- package/ts3.4/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/esm/Core/FrameManager.d.ts +0 -6
- package/ts3.4/esm/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/esm/Core/Loader.d.ts +0 -14
- package/ts3.4/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/esm/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/esm/Core/Particle.d.ts +0 -84
- package/ts3.4/esm/Core/Particles.d.ts +0 -45
- package/ts3.4/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/esm/Core/Retina.d.ts +0 -26
- package/ts3.4/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/index.d.ts +0 -9
- package/ts3.4/esm/Enums/index.d.ts +0 -5
- package/ts3.4/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/esm/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/esm/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/esm/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/esm/Types/PathOptions.d.ts +0 -3
- package/ts3.4/esm/Types/RangeValue.d.ts +0 -2
- package/ts3.4/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/esm/Types/ShapeData.d.ts +0 -5
- package/ts3.4/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/esm/Types/index.d.ts +0 -6
- package/ts3.4/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/esm/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/esm/Utils/Circle.d.ts +0 -8
- package/ts3.4/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/esm/Utils/Constants.d.ts +0 -18
- package/ts3.4/esm/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/esm/Utils/Plugins.d.ts +0 -22
- package/ts3.4/esm/Utils/Point.d.ts +0 -7
- package/ts3.4/esm/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/esm/Utils/Range.d.ts +0 -7
- package/ts3.4/esm/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/esm/Utils/Utils.d.ts +0 -65
- package/ts3.4/esm/Utils/index.d.ts +0 -13
- package/ts3.4/esm/full.d.ts +0 -2
- package/ts3.4/esm/index.d.ts +0 -31
- package/ts3.4/esm/index.slim.d.ts +0 -25
- package/ts3.4/esm/main.d.ts +0 -24
- package/ts3.4/esm/pjs.d.ts +0 -14
- package/ts3.4/esm/slim.d.ts +0 -2
- package/ts3.4/full.d.ts +0 -2
- package/ts3.4/index.d.ts +0 -31
- package/ts3.4/index.slim.d.ts +0 -25
- package/ts3.4/main.d.ts +0 -24
- package/ts3.4/pjs.d.ts +0 -14
- package/ts3.4/slim.d.ts +0 -2
- package/ts3.8/Core/Canvas.d.ts +0 -36
- package/ts3.8/Core/Container.d.ts +0 -64
- package/ts3.8/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/Core/FrameManager.d.ts +0 -6
- package/ts3.8/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/Core/Loader.d.ts +0 -14
- package/ts3.8/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/Core/Particle.d.ts +0 -84
- package/ts3.8/Core/Particles.d.ts +0 -45
- package/ts3.8/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/Core/Retina.d.ts +0 -26
- package/ts3.8/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/Enums/Types/index.d.ts +0 -9
- package/ts3.8/Enums/index.d.ts +0 -5
- package/ts3.8/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/Types/PathOptions.d.ts +0 -3
- package/ts3.8/Types/RangeValue.d.ts +0 -2
- package/ts3.8/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/Types/ShapeData.d.ts +0 -5
- package/ts3.8/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/Types/index.d.ts +0 -6
- package/ts3.8/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/Utils/Circle.d.ts +0 -8
- package/ts3.8/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/Utils/Constants.d.ts +0 -18
- package/ts3.8/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/Utils/Plugins.d.ts +0 -22
- package/ts3.8/Utils/Point.d.ts +0 -7
- package/ts3.8/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/Utils/Range.d.ts +0 -7
- package/ts3.8/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/Utils/Utils.d.ts +0 -65
- package/ts3.8/Utils/index.d.ts +0 -13
- package/ts3.8/browser/Core/Canvas.d.ts +0 -36
- package/ts3.8/browser/Core/Container.d.ts +0 -64
- package/ts3.8/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/browser/Core/FrameManager.d.ts +0 -6
- package/ts3.8/browser/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/browser/Core/Loader.d.ts +0 -14
- package/ts3.8/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/browser/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/browser/Core/Particle.d.ts +0 -84
- package/ts3.8/browser/Core/Particles.d.ts +0 -45
- package/ts3.8/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/browser/Core/Retina.d.ts +0 -26
- package/ts3.8/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/index.d.ts +0 -9
- package/ts3.8/browser/Enums/index.d.ts +0 -5
- package/ts3.8/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/browser/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/browser/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/browser/Types/PathOptions.d.ts +0 -3
- package/ts3.8/browser/Types/RangeValue.d.ts +0 -2
- package/ts3.8/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/browser/Types/ShapeData.d.ts +0 -5
- package/ts3.8/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/browser/Types/index.d.ts +0 -6
- package/ts3.8/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/browser/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/browser/Utils/Circle.d.ts +0 -8
- package/ts3.8/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/browser/Utils/Constants.d.ts +0 -18
- package/ts3.8/browser/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/browser/Utils/Plugins.d.ts +0 -22
- package/ts3.8/browser/Utils/Point.d.ts +0 -7
- package/ts3.8/browser/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/browser/Utils/Range.d.ts +0 -7
- package/ts3.8/browser/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/browser/Utils/Utils.d.ts +0 -65
- package/ts3.8/browser/Utils/index.d.ts +0 -13
- package/ts3.8/browser/full.d.ts +0 -2
- package/ts3.8/browser/index.d.ts +0 -31
- package/ts3.8/browser/index.slim.d.ts +0 -25
- package/ts3.8/browser/main.d.ts +0 -24
- package/ts3.8/browser/pjs.d.ts +0 -14
- package/ts3.8/browser/slim.d.ts +0 -2
- package/ts3.8/esm/Core/Canvas.d.ts +0 -36
- package/ts3.8/esm/Core/Container.d.ts +0 -64
- package/ts3.8/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/esm/Core/FrameManager.d.ts +0 -6
- package/ts3.8/esm/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/esm/Core/Loader.d.ts +0 -14
- package/ts3.8/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/esm/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/esm/Core/Particle.d.ts +0 -84
- package/ts3.8/esm/Core/Particles.d.ts +0 -45
- package/ts3.8/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/esm/Core/Retina.d.ts +0 -26
- package/ts3.8/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/index.d.ts +0 -9
- package/ts3.8/esm/Enums/index.d.ts +0 -5
- package/ts3.8/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/esm/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/esm/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/esm/Types/PathOptions.d.ts +0 -3
- package/ts3.8/esm/Types/RangeValue.d.ts +0 -2
- package/ts3.8/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/esm/Types/ShapeData.d.ts +0 -5
- package/ts3.8/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/esm/Types/index.d.ts +0 -6
- package/ts3.8/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/esm/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/esm/Utils/Circle.d.ts +0 -8
- package/ts3.8/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/esm/Utils/Constants.d.ts +0 -18
- package/ts3.8/esm/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/esm/Utils/Plugins.d.ts +0 -22
- package/ts3.8/esm/Utils/Point.d.ts +0 -7
- package/ts3.8/esm/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/esm/Utils/Range.d.ts +0 -7
- package/ts3.8/esm/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/esm/Utils/Utils.d.ts +0 -65
- package/ts3.8/esm/Utils/index.d.ts +0 -13
- package/ts3.8/esm/full.d.ts +0 -2
- package/ts3.8/esm/index.d.ts +0 -31
- package/ts3.8/esm/index.slim.d.ts +0 -25
- package/ts3.8/esm/main.d.ts +0 -24
- package/ts3.8/esm/pjs.d.ts +0 -14
- package/ts3.8/esm/slim.d.ts +0 -2
- package/ts3.8/full.d.ts +0 -2
- package/ts3.8/index.d.ts +0 -31
- package/ts3.8/index.slim.d.ts +0 -25
- package/ts3.8/main.d.ts +0 -24
- package/ts3.8/pjs.d.ts +0 -14
- package/ts3.8/slim.d.ts +0 -2
- package/ts4.0/Core/Canvas.d.ts +0 -36
- package/ts4.0/Core/Container.d.ts +0 -64
- package/ts4.0/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/Core/FrameManager.d.ts +0 -6
- package/ts4.0/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/Core/Loader.d.ts +0 -14
- package/ts4.0/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/Core/Particle.d.ts +0 -84
- package/ts4.0/Core/Particles.d.ts +0 -45
- package/ts4.0/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/Core/Retina.d.ts +0 -26
- package/ts4.0/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/Enums/Types/index.d.ts +0 -9
- package/ts4.0/Enums/index.d.ts +0 -5
- package/ts4.0/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/Types/PathOptions.d.ts +0 -3
- package/ts4.0/Types/RangeValue.d.ts +0 -2
- package/ts4.0/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/Types/ShapeData.d.ts +0 -5
- package/ts4.0/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/Types/index.d.ts +0 -6
- package/ts4.0/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/Utils/Circle.d.ts +0 -8
- package/ts4.0/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/Utils/Constants.d.ts +0 -18
- package/ts4.0/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/Utils/Plugins.d.ts +0 -22
- package/ts4.0/Utils/Point.d.ts +0 -7
- package/ts4.0/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/Utils/Range.d.ts +0 -7
- package/ts4.0/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/Utils/Utils.d.ts +0 -65
- package/ts4.0/Utils/index.d.ts +0 -13
- package/ts4.0/browser/Core/Canvas.d.ts +0 -36
- package/ts4.0/browser/Core/Container.d.ts +0 -64
- package/ts4.0/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/browser/Core/FrameManager.d.ts +0 -6
- package/ts4.0/browser/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/browser/Core/Loader.d.ts +0 -14
- package/ts4.0/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/browser/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/browser/Core/Particle.d.ts +0 -84
- package/ts4.0/browser/Core/Particles.d.ts +0 -45
- package/ts4.0/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/browser/Core/Retina.d.ts +0 -26
- package/ts4.0/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/index.d.ts +0 -9
- package/ts4.0/browser/Enums/index.d.ts +0 -5
- package/ts4.0/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/browser/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/browser/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/browser/Types/PathOptions.d.ts +0 -3
- package/ts4.0/browser/Types/RangeValue.d.ts +0 -2
- package/ts4.0/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/browser/Types/ShapeData.d.ts +0 -5
- package/ts4.0/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/browser/Types/index.d.ts +0 -6
- package/ts4.0/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/browser/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/browser/Utils/Circle.d.ts +0 -8
- package/ts4.0/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/browser/Utils/Constants.d.ts +0 -18
- package/ts4.0/browser/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/browser/Utils/Plugins.d.ts +0 -22
- package/ts4.0/browser/Utils/Point.d.ts +0 -7
- package/ts4.0/browser/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/browser/Utils/Range.d.ts +0 -7
- package/ts4.0/browser/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/browser/Utils/Utils.d.ts +0 -65
- package/ts4.0/browser/Utils/index.d.ts +0 -13
- package/ts4.0/browser/full.d.ts +0 -2
- package/ts4.0/browser/index.d.ts +0 -31
- package/ts4.0/browser/index.slim.d.ts +0 -25
- package/ts4.0/browser/main.d.ts +0 -24
- package/ts4.0/browser/pjs.d.ts +0 -14
- package/ts4.0/browser/slim.d.ts +0 -2
- package/ts4.0/esm/Core/Canvas.d.ts +0 -36
- package/ts4.0/esm/Core/Container.d.ts +0 -64
- package/ts4.0/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/esm/Core/FrameManager.d.ts +0 -6
- package/ts4.0/esm/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/esm/Core/Loader.d.ts +0 -14
- package/ts4.0/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/esm/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/esm/Core/Particle.d.ts +0 -84
- package/ts4.0/esm/Core/Particles.d.ts +0 -45
- package/ts4.0/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/esm/Core/Retina.d.ts +0 -26
- package/ts4.0/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/index.d.ts +0 -9
- package/ts4.0/esm/Enums/index.d.ts +0 -5
- package/ts4.0/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/esm/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/esm/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/esm/Types/PathOptions.d.ts +0 -3
- package/ts4.0/esm/Types/RangeValue.d.ts +0 -2
- package/ts4.0/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/esm/Types/ShapeData.d.ts +0 -5
- package/ts4.0/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/esm/Types/index.d.ts +0 -6
- package/ts4.0/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/esm/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/esm/Utils/Circle.d.ts +0 -8
- package/ts4.0/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/esm/Utils/Constants.d.ts +0 -18
- package/ts4.0/esm/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/esm/Utils/Plugins.d.ts +0 -22
- package/ts4.0/esm/Utils/Point.d.ts +0 -7
- package/ts4.0/esm/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/esm/Utils/Range.d.ts +0 -7
- package/ts4.0/esm/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/esm/Utils/Utils.d.ts +0 -65
- package/ts4.0/esm/Utils/index.d.ts +0 -13
- package/ts4.0/esm/full.d.ts +0 -2
- package/ts4.0/esm/index.d.ts +0 -31
- package/ts4.0/esm/index.slim.d.ts +0 -25
- package/ts4.0/esm/main.d.ts +0 -24
- package/ts4.0/esm/pjs.d.ts +0 -14
- package/ts4.0/esm/slim.d.ts +0 -2
- package/ts4.0/full.d.ts +0 -2
- package/ts4.0/index.d.ts +0 -31
- package/ts4.0/index.slim.d.ts +0 -25
- package/ts4.0/main.d.ts +0 -24
- package/ts4.0/pjs.d.ts +0 -14
- package/ts4.0/slim.d.ts +0 -2
package/tsparticles.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Demo / Generator : https://particles.js.org/
|
|
5
5
|
* GitHub : https://www.github.com/matteobruni/tsparticles
|
|
6
6
|
* How to use? : Check the GitHub README
|
|
7
|
-
* v1.
|
|
7
|
+
* v1.35.0
|
|
8
8
|
*/
|
|
9
9
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
10
10
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
@@ -18,10 +18,66 @@
|
|
|
18
18
|
})(this, function() {
|
|
19
19
|
return /******/ (() => { // webpackBootstrap
|
|
20
20
|
/******/ "use strict";
|
|
21
|
-
/******/
|
|
22
|
-
|
|
21
|
+
/******/ var __webpack_modules__ = ({});
|
|
22
|
+
/************************************************************************/
|
|
23
|
+
/******/ // The module cache
|
|
24
|
+
/******/ var __webpack_module_cache__ = {};
|
|
25
|
+
/******/
|
|
26
|
+
/******/ // The require function
|
|
27
|
+
/******/ function __webpack_require__(moduleId) {
|
|
28
|
+
/******/ // Check if module is in cache
|
|
29
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
30
|
+
/******/ if (cachedModule !== undefined) {
|
|
31
|
+
/******/ return cachedModule.exports;
|
|
32
|
+
/******/ }
|
|
33
|
+
/******/ // Create a new module (and put it into the cache)
|
|
34
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
35
|
+
/******/ // no module.id needed
|
|
36
|
+
/******/ // no module.loaded needed
|
|
37
|
+
/******/ exports: {}
|
|
38
|
+
/******/ };
|
|
39
|
+
/******/
|
|
40
|
+
/******/ // Execute the module function
|
|
41
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
42
|
+
/******/
|
|
43
|
+
/******/ // Return the exports of the module
|
|
44
|
+
/******/ return module.exports;
|
|
45
|
+
/******/ }
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
48
|
+
/******/ __webpack_require__.m = __webpack_modules__;
|
|
23
49
|
/******/
|
|
24
50
|
/************************************************************************/
|
|
51
|
+
/******/ /* webpack/runtime/create fake namespace object */
|
|
52
|
+
/******/ (() => {
|
|
53
|
+
/******/ var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);
|
|
54
|
+
/******/ var leafPrototypes;
|
|
55
|
+
/******/ // create a fake namespace object
|
|
56
|
+
/******/ // mode & 1: value is a module id, require it
|
|
57
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
58
|
+
/******/ // mode & 4: return value when already ns object
|
|
59
|
+
/******/ // mode & 16: return value when it's Promise-like
|
|
60
|
+
/******/ // mode & 8|1: behave like require
|
|
61
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
62
|
+
/******/ if(mode & 1) value = this(value);
|
|
63
|
+
/******/ if(mode & 8) return value;
|
|
64
|
+
/******/ if(typeof value === 'object' && value) {
|
|
65
|
+
/******/ if((mode & 4) && value.__esModule) return value;
|
|
66
|
+
/******/ if((mode & 16) && typeof value.then === 'function') return value;
|
|
67
|
+
/******/ }
|
|
68
|
+
/******/ var ns = Object.create(null);
|
|
69
|
+
/******/ __webpack_require__.r(ns);
|
|
70
|
+
/******/ var def = {};
|
|
71
|
+
/******/ leafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];
|
|
72
|
+
/******/ for(var current = mode & 2 && value; typeof current == 'object' && !~leafPrototypes.indexOf(current); current = getProto(current)) {
|
|
73
|
+
/******/ Object.getOwnPropertyNames(current).forEach((key) => (def[key] = () => (value[key])));
|
|
74
|
+
/******/ }
|
|
75
|
+
/******/ def['default'] = () => (value);
|
|
76
|
+
/******/ __webpack_require__.d(ns, def);
|
|
77
|
+
/******/ return ns;
|
|
78
|
+
/******/ };
|
|
79
|
+
/******/ })();
|
|
80
|
+
/******/
|
|
25
81
|
/******/ /* webpack/runtime/define property getters */
|
|
26
82
|
/******/ (() => {
|
|
27
83
|
/******/ // define getter functions for harmony exports
|
|
@@ -34,11 +90,91 @@ return /******/ (() => { // webpackBootstrap
|
|
|
34
90
|
/******/ };
|
|
35
91
|
/******/ })();
|
|
36
92
|
/******/
|
|
93
|
+
/******/ /* webpack/runtime/ensure chunk */
|
|
94
|
+
/******/ (() => {
|
|
95
|
+
/******/ __webpack_require__.f = {};
|
|
96
|
+
/******/ // This file contains only the entry chunk.
|
|
97
|
+
/******/ // The chunk loading function for additional chunks
|
|
98
|
+
/******/ __webpack_require__.e = (chunkId) => {
|
|
99
|
+
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
100
|
+
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
101
|
+
/******/ return promises;
|
|
102
|
+
/******/ }, []));
|
|
103
|
+
/******/ };
|
|
104
|
+
/******/ })();
|
|
105
|
+
/******/
|
|
106
|
+
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
107
|
+
/******/ (() => {
|
|
108
|
+
/******/ // This function allow to reference async chunks
|
|
109
|
+
/******/ __webpack_require__.u = (chunkId) => {
|
|
110
|
+
/******/ // return url for filenames based on template
|
|
111
|
+
/******/ return "" + chunkId + ".js";
|
|
112
|
+
/******/ };
|
|
113
|
+
/******/ })();
|
|
114
|
+
/******/
|
|
115
|
+
/******/ /* webpack/runtime/global */
|
|
116
|
+
/******/ (() => {
|
|
117
|
+
/******/ __webpack_require__.g = (function() {
|
|
118
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
119
|
+
/******/ try {
|
|
120
|
+
/******/ return this || new Function('return this')();
|
|
121
|
+
/******/ } catch (e) {
|
|
122
|
+
/******/ if (typeof window === 'object') return window;
|
|
123
|
+
/******/ }
|
|
124
|
+
/******/ })();
|
|
125
|
+
/******/ })();
|
|
126
|
+
/******/
|
|
37
127
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
38
128
|
/******/ (() => {
|
|
39
129
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
40
130
|
/******/ })();
|
|
41
131
|
/******/
|
|
132
|
+
/******/ /* webpack/runtime/load script */
|
|
133
|
+
/******/ (() => {
|
|
134
|
+
/******/ var inProgress = {};
|
|
135
|
+
/******/ var dataWebpackPrefix = "tsparticles:";
|
|
136
|
+
/******/ // loadScript function to load a script via script tag
|
|
137
|
+
/******/ __webpack_require__.l = (url, done, key, chunkId) => {
|
|
138
|
+
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
|
|
139
|
+
/******/ var script, needAttach;
|
|
140
|
+
/******/ if(key !== undefined) {
|
|
141
|
+
/******/ var scripts = document.getElementsByTagName("script");
|
|
142
|
+
/******/ for(var i = 0; i < scripts.length; i++) {
|
|
143
|
+
/******/ var s = scripts[i];
|
|
144
|
+
/******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
|
|
145
|
+
/******/ }
|
|
146
|
+
/******/ }
|
|
147
|
+
/******/ if(!script) {
|
|
148
|
+
/******/ needAttach = true;
|
|
149
|
+
/******/ script = document.createElement('script');
|
|
150
|
+
/******/
|
|
151
|
+
/******/ script.charset = 'utf-8';
|
|
152
|
+
/******/ script.timeout = 120;
|
|
153
|
+
/******/ if (__webpack_require__.nc) {
|
|
154
|
+
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
|
155
|
+
/******/ }
|
|
156
|
+
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
|
|
157
|
+
/******/ script.src = url;
|
|
158
|
+
/******/ }
|
|
159
|
+
/******/ inProgress[url] = [done];
|
|
160
|
+
/******/ var onScriptComplete = (prev, event) => {
|
|
161
|
+
/******/ // avoid mem leaks in IE.
|
|
162
|
+
/******/ script.onerror = script.onload = null;
|
|
163
|
+
/******/ clearTimeout(timeout);
|
|
164
|
+
/******/ var doneFns = inProgress[url];
|
|
165
|
+
/******/ delete inProgress[url];
|
|
166
|
+
/******/ script.parentNode && script.parentNode.removeChild(script);
|
|
167
|
+
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
|
|
168
|
+
/******/ if(prev) return prev(event);
|
|
169
|
+
/******/ }
|
|
170
|
+
/******/ ;
|
|
171
|
+
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
|
172
|
+
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
|
173
|
+
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
|
174
|
+
/******/ needAttach && document.head.appendChild(script);
|
|
175
|
+
/******/ };
|
|
176
|
+
/******/ })();
|
|
177
|
+
/******/
|
|
42
178
|
/******/ /* webpack/runtime/make namespace object */
|
|
43
179
|
/******/ (() => {
|
|
44
180
|
/******/ // define __esModule on exports
|
|
@@ -50,6 +186,117 @@ return /******/ (() => { // webpackBootstrap
|
|
|
50
186
|
/******/ };
|
|
51
187
|
/******/ })();
|
|
52
188
|
/******/
|
|
189
|
+
/******/ /* webpack/runtime/publicPath */
|
|
190
|
+
/******/ (() => {
|
|
191
|
+
/******/ var scriptUrl;
|
|
192
|
+
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
|
|
193
|
+
/******/ var document = __webpack_require__.g.document;
|
|
194
|
+
/******/ if (!scriptUrl && document) {
|
|
195
|
+
/******/ if (document.currentScript)
|
|
196
|
+
/******/ scriptUrl = document.currentScript.src
|
|
197
|
+
/******/ if (!scriptUrl) {
|
|
198
|
+
/******/ var scripts = document.getElementsByTagName("script");
|
|
199
|
+
/******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src
|
|
200
|
+
/******/ }
|
|
201
|
+
/******/ }
|
|
202
|
+
/******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
|
|
203
|
+
/******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
|
|
204
|
+
/******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
|
|
205
|
+
/******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
|
|
206
|
+
/******/ __webpack_require__.p = scriptUrl;
|
|
207
|
+
/******/ })();
|
|
208
|
+
/******/
|
|
209
|
+
/******/ /* webpack/runtime/jsonp chunk loading */
|
|
210
|
+
/******/ (() => {
|
|
211
|
+
/******/ // no baseURI
|
|
212
|
+
/******/
|
|
213
|
+
/******/ // object to store loaded and loading chunks
|
|
214
|
+
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
215
|
+
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
|
216
|
+
/******/ var installedChunks = {
|
|
217
|
+
/******/ 649: 0,
|
|
218
|
+
/******/ 155: 0
|
|
219
|
+
/******/ };
|
|
220
|
+
/******/
|
|
221
|
+
/******/ __webpack_require__.f.j = (chunkId, promises) => {
|
|
222
|
+
/******/ // JSONP chunk loading for javascript
|
|
223
|
+
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
|
224
|
+
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
|
225
|
+
/******/
|
|
226
|
+
/******/ // a Promise means "currently loading".
|
|
227
|
+
/******/ if(installedChunkData) {
|
|
228
|
+
/******/ promises.push(installedChunkData[2]);
|
|
229
|
+
/******/ } else {
|
|
230
|
+
/******/ if(true) { // all chunks have JS
|
|
231
|
+
/******/ // setup Promise in chunk cache
|
|
232
|
+
/******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
|
|
233
|
+
/******/ promises.push(installedChunkData[2] = promise);
|
|
234
|
+
/******/
|
|
235
|
+
/******/ // start chunk loading
|
|
236
|
+
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
|
237
|
+
/******/ // create error before stack unwound to get useful stacktrace later
|
|
238
|
+
/******/ var error = new Error();
|
|
239
|
+
/******/ var loadingEnded = (event) => {
|
|
240
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
|
241
|
+
/******/ installedChunkData = installedChunks[chunkId];
|
|
242
|
+
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
|
243
|
+
/******/ if(installedChunkData) {
|
|
244
|
+
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
|
245
|
+
/******/ var realSrc = event && event.target && event.target.src;
|
|
246
|
+
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
|
247
|
+
/******/ error.name = 'ChunkLoadError';
|
|
248
|
+
/******/ error.type = errorType;
|
|
249
|
+
/******/ error.request = realSrc;
|
|
250
|
+
/******/ installedChunkData[1](error);
|
|
251
|
+
/******/ }
|
|
252
|
+
/******/ }
|
|
253
|
+
/******/ };
|
|
254
|
+
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
|
|
255
|
+
/******/ } else installedChunks[chunkId] = 0;
|
|
256
|
+
/******/ }
|
|
257
|
+
/******/ }
|
|
258
|
+
/******/ };
|
|
259
|
+
/******/
|
|
260
|
+
/******/ // no prefetching
|
|
261
|
+
/******/
|
|
262
|
+
/******/ // no preloaded
|
|
263
|
+
/******/
|
|
264
|
+
/******/ // no HMR
|
|
265
|
+
/******/
|
|
266
|
+
/******/ // no HMR manifest
|
|
267
|
+
/******/
|
|
268
|
+
/******/ // no on chunks loaded
|
|
269
|
+
/******/
|
|
270
|
+
/******/ // install a JSONP callback for chunk loading
|
|
271
|
+
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
|
|
272
|
+
/******/ var [chunkIds, moreModules, runtime] = data;
|
|
273
|
+
/******/ // add "moreModules" to the modules object,
|
|
274
|
+
/******/ // then flag all "chunkIds" as loaded and fire callback
|
|
275
|
+
/******/ var moduleId, chunkId, i = 0;
|
|
276
|
+
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
|
|
277
|
+
/******/ for(moduleId in moreModules) {
|
|
278
|
+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
|
279
|
+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
280
|
+
/******/ }
|
|
281
|
+
/******/ }
|
|
282
|
+
/******/ if(runtime) var result = runtime(__webpack_require__);
|
|
283
|
+
/******/ }
|
|
284
|
+
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
|
285
|
+
/******/ for(;i < chunkIds.length; i++) {
|
|
286
|
+
/******/ chunkId = chunkIds[i];
|
|
287
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
|
288
|
+
/******/ installedChunks[chunkId][0]();
|
|
289
|
+
/******/ }
|
|
290
|
+
/******/ installedChunks[chunkIds[i]] = 0;
|
|
291
|
+
/******/ }
|
|
292
|
+
/******/
|
|
293
|
+
/******/ }
|
|
294
|
+
/******/
|
|
295
|
+
/******/ var chunkLoadingGlobal = this["webpackChunktsparticles"] = this["webpackChunktsparticles"] || [];
|
|
296
|
+
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
|
297
|
+
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
|
298
|
+
/******/ })();
|
|
299
|
+
/******/
|
|
53
300
|
/************************************************************************/
|
|
54
301
|
var __webpack_exports__ = {};
|
|
55
302
|
// ESM COMPAT FLAG
|
|
@@ -60,12 +307,10 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
60
307
|
"AbsorberClickMode": () => (/* reexport */ AbsorberClickMode),
|
|
61
308
|
"AlterType": () => (/* reexport */ AlterType),
|
|
62
309
|
"AnimationStatus": () => (/* reexport */ AnimationStatus),
|
|
63
|
-
"CanvasUtils": () => (/* reexport */ CanvasUtils_namespaceObject),
|
|
64
310
|
"Circle": () => (/* reexport */ Circle),
|
|
65
311
|
"CircleWarp": () => (/* reexport */ CircleWarp),
|
|
66
312
|
"ClickMode": () => (/* reexport */ ClickMode),
|
|
67
313
|
"CollisionMode": () => (/* reexport */ CollisionMode),
|
|
68
|
-
"ColorUtils": () => (/* reexport */ ColorUtils_namespaceObject),
|
|
69
314
|
"Constants": () => (/* reexport */ Constants),
|
|
70
315
|
"Container": () => (/* reexport */ Container),
|
|
71
316
|
"DestroyMode": () => (/* reexport */ DestroyMode),
|
|
@@ -84,7 +329,6 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
84
329
|
"Main": () => (/* reexport */ Main),
|
|
85
330
|
"MoveDirection": () => (/* reexport */ MoveDirection),
|
|
86
331
|
"MoveType": () => (/* reexport */ MoveType),
|
|
87
|
-
"NumberUtils": () => (/* reexport */ NumberUtils_namespaceObject),
|
|
88
332
|
"OrbitType": () => (/* reexport */ OrbitType),
|
|
89
333
|
"OutMode": () => (/* reexport */ OutMode),
|
|
90
334
|
"OutModeDirection": () => (/* reexport */ OutModeDirection),
|
|
@@ -92,6 +336,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
92
336
|
"ParticlesInteractorBase": () => (/* reexport */ ParticlesInteractorBase),
|
|
93
337
|
"Point": () => (/* reexport */ Point),
|
|
94
338
|
"Rectangle": () => (/* reexport */ Rectangle),
|
|
339
|
+
"RollMode": () => (/* reexport */ RollMode),
|
|
95
340
|
"RotateDirection": () => (/* reexport */ RotateDirection),
|
|
96
341
|
"ShapeType": () => (/* reexport */ ShapeType),
|
|
97
342
|
"SizeMode": () => (/* reexport */ SizeMode),
|
|
@@ -99,107 +344,83 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
99
344
|
"ThemeMode": () => (/* reexport */ ThemeMode),
|
|
100
345
|
"TiltDirection": () => (/* reexport */ TiltDirection),
|
|
101
346
|
"Type": () => (/* reexport */ Type),
|
|
102
|
-
"Utils": () => (/* reexport */ Utils_namespaceObject),
|
|
103
347
|
"Vector": () => (/* reexport */ Vector),
|
|
348
|
+
"alterHsl": () => (/* reexport */ alterHsl),
|
|
349
|
+
"animate": () => (/* reexport */ animate),
|
|
350
|
+
"areBoundsInside": () => (/* reexport */ areBoundsInside),
|
|
351
|
+
"arrayRandomIndex": () => (/* reexport */ arrayRandomIndex),
|
|
352
|
+
"calcEasing": () => (/* reexport */ calcEasing),
|
|
353
|
+
"calculateBounds": () => (/* reexport */ calculateBounds),
|
|
354
|
+
"cancelAnimation": () => (/* reexport */ cancelAnimation),
|
|
355
|
+
"circleBounce": () => (/* reexport */ circleBounce),
|
|
356
|
+
"circleBounceDataFromParticle": () => (/* reexport */ circleBounceDataFromParticle),
|
|
357
|
+
"clamp": () => (/* reexport */ clamp),
|
|
358
|
+
"clear": () => (/* reexport */ clear),
|
|
359
|
+
"collisionVelocity": () => (/* reexport */ collisionVelocity),
|
|
360
|
+
"colorMix": () => (/* reexport */ colorMix),
|
|
361
|
+
"colorToHsl": () => (/* reexport */ colorToHsl),
|
|
362
|
+
"colorToRgb": () => (/* reexport */ colorToRgb),
|
|
363
|
+
"deepExtend": () => (/* reexport */ deepExtend),
|
|
364
|
+
"divMode": () => (/* reexport */ divMode),
|
|
365
|
+
"divModeExecute": () => (/* reexport */ divModeExecute),
|
|
366
|
+
"drawConnectLine": () => (/* reexport */ drawConnectLine),
|
|
367
|
+
"drawEllipse": () => (/* reexport */ drawEllipse),
|
|
368
|
+
"drawGrabLine": () => (/* reexport */ drawGrabLine),
|
|
369
|
+
"drawLinkLine": () => (/* reexport */ drawLinkLine),
|
|
370
|
+
"drawLinkTriangle": () => (/* reexport */ drawLinkTriangle),
|
|
371
|
+
"drawParticle": () => (/* reexport */ drawParticle),
|
|
372
|
+
"drawParticlePlugin": () => (/* reexport */ drawParticlePlugin),
|
|
373
|
+
"drawPlugin": () => (/* reexport */ drawPlugin),
|
|
374
|
+
"drawShape": () => (/* reexport */ drawShape),
|
|
375
|
+
"drawShapeAfterEffect": () => (/* reexport */ drawShapeAfterEffect),
|
|
376
|
+
"getDistance": () => (/* reexport */ getDistance),
|
|
377
|
+
"getDistances": () => (/* reexport */ getDistances),
|
|
378
|
+
"getHslAnimationFromHsl": () => (/* reexport */ getHslAnimationFromHsl),
|
|
379
|
+
"getHslFromAnimation": () => (/* reexport */ getHslFromAnimation),
|
|
380
|
+
"getLinkColor": () => (/* reexport */ getLinkColor),
|
|
381
|
+
"getLinkRandomColor": () => (/* reexport */ getLinkRandomColor),
|
|
382
|
+
"getParticleBaseVelocity": () => (/* reexport */ getParticleBaseVelocity),
|
|
383
|
+
"getParticleDirectionAngle": () => (/* reexport */ getParticleDirectionAngle),
|
|
384
|
+
"getRandomRgbColor": () => (/* reexport */ getRandomRgbColor),
|
|
385
|
+
"getRangeMax": () => (/* reexport */ getRangeMax),
|
|
386
|
+
"getRangeMin": () => (/* reexport */ getRangeMin),
|
|
387
|
+
"getRangeValue": () => (/* reexport */ getRangeValue),
|
|
388
|
+
"getStyleFromHsl": () => (/* reexport */ getStyleFromHsl),
|
|
389
|
+
"getStyleFromHsv": () => (/* reexport */ getStyleFromHsv),
|
|
390
|
+
"getStyleFromRgb": () => (/* reexport */ getStyleFromRgb),
|
|
391
|
+
"getValue": () => (/* reexport */ getValue),
|
|
392
|
+
"gradient": () => (/* reexport */ gradient),
|
|
393
|
+
"hslToHsv": () => (/* reexport */ hslToHsv),
|
|
394
|
+
"hslToRgb": () => (/* reexport */ hslToRgb),
|
|
395
|
+
"hslaToHsva": () => (/* reexport */ hslaToHsva),
|
|
396
|
+
"hslaToRgba": () => (/* reexport */ hslaToRgba),
|
|
397
|
+
"hsvToHsl": () => (/* reexport */ hsvToHsl),
|
|
398
|
+
"hsvToRgb": () => (/* reexport */ hsvToRgb),
|
|
399
|
+
"hsvaToHsla": () => (/* reexport */ hsvaToHsla),
|
|
400
|
+
"hsvaToRgba": () => (/* reexport */ hsvaToRgba),
|
|
401
|
+
"isDivModeEnabled": () => (/* reexport */ isDivModeEnabled),
|
|
402
|
+
"isInArray": () => (/* reexport */ isInArray),
|
|
403
|
+
"isPointInside": () => (/* reexport */ isPointInside),
|
|
404
|
+
"isSsr": () => (/* reexport */ isSsr),
|
|
405
|
+
"itemFromArray": () => (/* reexport */ itemFromArray),
|
|
406
|
+
"loadFont": () => (/* reexport */ loadFont),
|
|
104
407
|
"loadFull": () => (/* reexport */ loadFull),
|
|
408
|
+
"mix": () => (/* reexport */ mix),
|
|
105
409
|
"pJSDom": () => (/* binding */ pJSDom),
|
|
410
|
+
"paintBase": () => (/* reexport */ paintBase),
|
|
106
411
|
"particlesJS": () => (/* binding */ particlesJS),
|
|
412
|
+
"randomInRange": () => (/* reexport */ randomInRange),
|
|
413
|
+
"rectBounce": () => (/* reexport */ rectBounce),
|
|
414
|
+
"rgbToHsl": () => (/* reexport */ rgbToHsl),
|
|
415
|
+
"rgbToHsv": () => (/* reexport */ rgbToHsv),
|
|
416
|
+
"rgbaToHsva": () => (/* reexport */ rgbaToHsva),
|
|
417
|
+
"setRangeValue": () => (/* reexport */ setRangeValue),
|
|
418
|
+
"singleDivModeExecute": () => (/* reexport */ singleDivModeExecute),
|
|
419
|
+
"stringToAlpha": () => (/* reexport */ stringToAlpha),
|
|
420
|
+
"stringToRgb": () => (/* reexport */ stringToRgb),
|
|
107
421
|
"tsParticles": () => (/* binding */ tsParticles)
|
|
108
422
|
});
|
|
109
423
|
|
|
110
|
-
// NAMESPACE OBJECT: ./dist/browser/Utils/NumberUtils.js
|
|
111
|
-
var NumberUtils_namespaceObject = {};
|
|
112
|
-
__webpack_require__.r(NumberUtils_namespaceObject);
|
|
113
|
-
__webpack_require__.d(NumberUtils_namespaceObject, {
|
|
114
|
-
"calcEasing": () => (calcEasing),
|
|
115
|
-
"clamp": () => (clamp),
|
|
116
|
-
"collisionVelocity": () => (collisionVelocity),
|
|
117
|
-
"getDistance": () => (getDistance),
|
|
118
|
-
"getDistances": () => (getDistances),
|
|
119
|
-
"getParticleBaseVelocity": () => (getParticleBaseVelocity),
|
|
120
|
-
"getParticleDirectionAngle": () => (getParticleDirectionAngle),
|
|
121
|
-
"getRangeMax": () => (getRangeMax),
|
|
122
|
-
"getRangeMin": () => (getRangeMin),
|
|
123
|
-
"getRangeValue": () => (getRangeValue),
|
|
124
|
-
"getValue": () => (getValue),
|
|
125
|
-
"mix": () => (mix),
|
|
126
|
-
"randomInRange": () => (randomInRange),
|
|
127
|
-
"setRangeValue": () => (setRangeValue)
|
|
128
|
-
});
|
|
129
|
-
|
|
130
|
-
// NAMESPACE OBJECT: ./dist/browser/Utils/Utils.js
|
|
131
|
-
var Utils_namespaceObject = {};
|
|
132
|
-
__webpack_require__.r(Utils_namespaceObject);
|
|
133
|
-
__webpack_require__.d(Utils_namespaceObject, {
|
|
134
|
-
"animate": () => (animate),
|
|
135
|
-
"areBoundsInside": () => (areBoundsInside),
|
|
136
|
-
"arrayRandomIndex": () => (arrayRandomIndex),
|
|
137
|
-
"calculateBounds": () => (calculateBounds),
|
|
138
|
-
"cancelAnimation": () => (cancelAnimation),
|
|
139
|
-
"circleBounce": () => (circleBounce),
|
|
140
|
-
"circleBounceDataFromParticle": () => (circleBounceDataFromParticle),
|
|
141
|
-
"deepExtend": () => (deepExtend),
|
|
142
|
-
"divMode": () => (divMode),
|
|
143
|
-
"divModeExecute": () => (divModeExecute),
|
|
144
|
-
"isDivModeEnabled": () => (isDivModeEnabled),
|
|
145
|
-
"isInArray": () => (isInArray),
|
|
146
|
-
"isPointInside": () => (isPointInside),
|
|
147
|
-
"isSsr": () => (isSsr),
|
|
148
|
-
"itemFromArray": () => (itemFromArray),
|
|
149
|
-
"loadFont": () => (loadFont),
|
|
150
|
-
"rectBounce": () => (rectBounce),
|
|
151
|
-
"singleDivModeExecute": () => (singleDivModeExecute)
|
|
152
|
-
});
|
|
153
|
-
|
|
154
|
-
// NAMESPACE OBJECT: ./dist/browser/Utils/ColorUtils.js
|
|
155
|
-
var ColorUtils_namespaceObject = {};
|
|
156
|
-
__webpack_require__.r(ColorUtils_namespaceObject);
|
|
157
|
-
__webpack_require__.d(ColorUtils_namespaceObject, {
|
|
158
|
-
"colorMix": () => (colorMix),
|
|
159
|
-
"colorToHsl": () => (colorToHsl),
|
|
160
|
-
"colorToRgb": () => (colorToRgb),
|
|
161
|
-
"getHslAnimationFromHsl": () => (getHslAnimationFromHsl),
|
|
162
|
-
"getHslFromAnimation": () => (getHslFromAnimation),
|
|
163
|
-
"getLinkColor": () => (getLinkColor),
|
|
164
|
-
"getLinkRandomColor": () => (getLinkRandomColor),
|
|
165
|
-
"getRandomRgbColor": () => (getRandomRgbColor),
|
|
166
|
-
"getStyleFromHsl": () => (getStyleFromHsl),
|
|
167
|
-
"getStyleFromHsv": () => (getStyleFromHsv),
|
|
168
|
-
"getStyleFromRgb": () => (getStyleFromRgb),
|
|
169
|
-
"hslToHsv": () => (hslToHsv),
|
|
170
|
-
"hslToRgb": () => (hslToRgb),
|
|
171
|
-
"hslaToHsva": () => (hslaToHsva),
|
|
172
|
-
"hslaToRgba": () => (hslaToRgba),
|
|
173
|
-
"hsvToHsl": () => (hsvToHsl),
|
|
174
|
-
"hsvToRgb": () => (hsvToRgb),
|
|
175
|
-
"hsvaToHsla": () => (hsvaToHsla),
|
|
176
|
-
"hsvaToRgba": () => (hsvaToRgba),
|
|
177
|
-
"rgbToHsl": () => (rgbToHsl),
|
|
178
|
-
"rgbToHsv": () => (rgbToHsv),
|
|
179
|
-
"rgbaToHsva": () => (rgbaToHsva),
|
|
180
|
-
"stringToAlpha": () => (stringToAlpha),
|
|
181
|
-
"stringToRgb": () => (stringToRgb)
|
|
182
|
-
});
|
|
183
|
-
|
|
184
|
-
// NAMESPACE OBJECT: ./dist/browser/Utils/CanvasUtils.js
|
|
185
|
-
var CanvasUtils_namespaceObject = {};
|
|
186
|
-
__webpack_require__.r(CanvasUtils_namespaceObject);
|
|
187
|
-
__webpack_require__.d(CanvasUtils_namespaceObject, {
|
|
188
|
-
"clear": () => (clear),
|
|
189
|
-
"drawConnectLine": () => (drawConnectLine),
|
|
190
|
-
"drawEllipse": () => (drawEllipse),
|
|
191
|
-
"drawGrabLine": () => (drawGrabLine),
|
|
192
|
-
"drawLinkLine": () => (drawLinkLine),
|
|
193
|
-
"drawLinkTriangle": () => (drawLinkTriangle),
|
|
194
|
-
"drawParticle": () => (drawParticle),
|
|
195
|
-
"drawParticlePlugin": () => (drawParticlePlugin),
|
|
196
|
-
"drawPlugin": () => (drawPlugin),
|
|
197
|
-
"drawShape": () => (drawShape),
|
|
198
|
-
"drawShapeAfterEffect": () => (drawShapeAfterEffect),
|
|
199
|
-
"gradient": () => (gradient),
|
|
200
|
-
"paintBase": () => (paintBase)
|
|
201
|
-
});
|
|
202
|
-
|
|
203
424
|
;// CONCATENATED MODULE: ./dist/browser/pjs.js
|
|
204
425
|
const initPjs = main => {
|
|
205
426
|
const particlesJS = (tagId, options) => {
|
|
@@ -333,6 +554,14 @@ var OutMode;
|
|
|
333
554
|
OutMode["destroy"] = "destroy";
|
|
334
555
|
OutMode["split"] = "split";
|
|
335
556
|
})(OutMode || (OutMode = {}));
|
|
557
|
+
;// CONCATENATED MODULE: ./dist/browser/Enums/Modes/RollMode.js
|
|
558
|
+
var RollMode;
|
|
559
|
+
|
|
560
|
+
(function (RollMode) {
|
|
561
|
+
RollMode["both"] = "both";
|
|
562
|
+
RollMode["horizontal"] = "horizontal";
|
|
563
|
+
RollMode["vertical"] = "vertical";
|
|
564
|
+
})(RollMode || (RollMode = {}));
|
|
336
565
|
;// CONCATENATED MODULE: ./dist/browser/Enums/Modes/SizeMode.js
|
|
337
566
|
var SizeMode;
|
|
338
567
|
|
|
@@ -357,6 +586,7 @@ var ThemeMode;
|
|
|
357
586
|
|
|
358
587
|
|
|
359
588
|
|
|
589
|
+
|
|
360
590
|
;// CONCATENATED MODULE: ./dist/browser/Enums/AnimationStatus.js
|
|
361
591
|
var AnimationStatus;
|
|
362
592
|
|
|
@@ -510,7 +740,7 @@ class Vector {
|
|
|
510
740
|
}
|
|
511
741
|
|
|
512
742
|
get length() {
|
|
513
|
-
return Math.sqrt(
|
|
743
|
+
return Math.sqrt(this.x ** 2 + this.y ** 2);
|
|
514
744
|
}
|
|
515
745
|
|
|
516
746
|
set length(length) {
|
|
@@ -558,7 +788,7 @@ class Vector {
|
|
|
558
788
|
}
|
|
559
789
|
|
|
560
790
|
getLengthSq() {
|
|
561
|
-
return
|
|
791
|
+
return this.x ** 2 + this.y ** 2;
|
|
562
792
|
}
|
|
563
793
|
|
|
564
794
|
distanceToSq(v) {
|
|
@@ -698,16 +928,16 @@ function collisionVelocity(v1, v2, m1, m2) {
|
|
|
698
928
|
function calcEasing(value, type) {
|
|
699
929
|
switch (type) {
|
|
700
930
|
case EasingType.easeOutQuad:
|
|
701
|
-
return 1 -
|
|
931
|
+
return 1 - (1 - value) ** 2;
|
|
702
932
|
|
|
703
933
|
case EasingType.easeOutCubic:
|
|
704
|
-
return 1 -
|
|
934
|
+
return 1 - (1 - value) ** 3;
|
|
705
935
|
|
|
706
936
|
case EasingType.easeOutQuart:
|
|
707
|
-
return 1 -
|
|
937
|
+
return 1 - (1 - value) ** 4;
|
|
708
938
|
|
|
709
939
|
case EasingType.easeOutQuint:
|
|
710
|
-
return 1 -
|
|
940
|
+
return 1 - (1 - value) ** 5;
|
|
711
941
|
|
|
712
942
|
case EasingType.easeOutExpo:
|
|
713
943
|
return value === 1 ? 1 : 1 - Math.pow(2, -10 * value);
|
|
@@ -730,38 +960,6 @@ function calcEasing(value, type) {
|
|
|
730
960
|
}
|
|
731
961
|
}
|
|
732
962
|
;// CONCATENATED MODULE: ./dist/browser/Utils/Utils.js
|
|
733
|
-
var __awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
734
|
-
function adopt(value) {
|
|
735
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
736
|
-
resolve(value);
|
|
737
|
-
});
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
741
|
-
function fulfilled(value) {
|
|
742
|
-
try {
|
|
743
|
-
step(generator.next(value));
|
|
744
|
-
} catch (e) {
|
|
745
|
-
reject(e);
|
|
746
|
-
}
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
function rejected(value) {
|
|
750
|
-
try {
|
|
751
|
-
step(generator["throw"](value));
|
|
752
|
-
} catch (e) {
|
|
753
|
-
reject(e);
|
|
754
|
-
}
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
function step(result) {
|
|
758
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
762
|
-
});
|
|
763
|
-
};
|
|
764
|
-
|
|
765
963
|
|
|
766
964
|
|
|
767
965
|
|
|
@@ -807,14 +1005,12 @@ function cancelAnimation() {
|
|
|
807
1005
|
function isInArray(value, array) {
|
|
808
1006
|
return value === array || array instanceof Array && array.indexOf(value) > -1;
|
|
809
1007
|
}
|
|
810
|
-
function loadFont(character) {
|
|
1008
|
+
async function loadFont(character) {
|
|
811
1009
|
var _a, _b;
|
|
812
1010
|
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
} catch (_c) {}
|
|
817
|
-
});
|
|
1011
|
+
try {
|
|
1012
|
+
await document.fonts.load(`${(_a = character.weight) !== null && _a !== void 0 ? _a : "400"} 36px '${(_b = character.font) !== null && _b !== void 0 ? _b : "Verdana"}'`);
|
|
1013
|
+
} catch (_c) {}
|
|
818
1014
|
}
|
|
819
1015
|
function arrayRandomIndex(array) {
|
|
820
1016
|
return Math.floor(Math.random() * array.length);
|
|
@@ -1681,7 +1877,7 @@ function drawGrabLine(context, width, begin, end, colorLine, opacity) {
|
|
|
1681
1877
|
context.restore();
|
|
1682
1878
|
}
|
|
1683
1879
|
function drawParticle(container, context, particle, delta, fillColorValue, strokeColorValue, backgroundMask, composite, radius, opacity, shadow, gradient) {
|
|
1684
|
-
var _a, _b;
|
|
1880
|
+
var _a, _b, _c, _d, _e, _f;
|
|
1685
1881
|
|
|
1686
1882
|
const pos = particle.getPosition();
|
|
1687
1883
|
const tiltOptions = particle.options.tilt;
|
|
@@ -1689,13 +1885,17 @@ function drawParticle(container, context, particle, delta, fillColorValue, strok
|
|
|
1689
1885
|
context.save();
|
|
1690
1886
|
|
|
1691
1887
|
if (tiltOptions.enable || rollOptions.enable) {
|
|
1692
|
-
|
|
1888
|
+
const roll = rollOptions.enable && particle.roll;
|
|
1889
|
+
const tilt = tiltOptions.enable && particle.tilt;
|
|
1890
|
+
const rollHorizontal = roll && (rollOptions.mode === RollMode.horizontal || rollOptions.mode === RollMode.both);
|
|
1891
|
+
const rollVertical = roll && (rollOptions.mode === RollMode.vertical || rollOptions.mode === RollMode.both);
|
|
1892
|
+
context.setTransform(rollHorizontal ? Math.cos(particle.roll.angle) : 1, tilt ? Math.cos(particle.tilt.value) * particle.tilt.cosDirection : 0, tilt ? Math.sin(particle.tilt.value) * particle.tilt.sinDirection : 0, rollVertical ? Math.sin(particle.roll.angle) : 1, pos.x, pos.y);
|
|
1693
1893
|
} else {
|
|
1694
1894
|
context.translate(pos.x, pos.y);
|
|
1695
1895
|
}
|
|
1696
1896
|
|
|
1697
1897
|
context.beginPath();
|
|
1698
|
-
const angle = particle.rotate.value + (particle.options.rotate.path ? particle.velocity.angle : 0);
|
|
1898
|
+
const angle = ((_b = (_a = particle.rotate) === null || _a === void 0 ? void 0 : _a.value) !== null && _b !== void 0 ? _b : 0) + (particle.options.rotate.path ? particle.velocity.angle : 0);
|
|
1699
1899
|
|
|
1700
1900
|
if (angle !== 0) {
|
|
1701
1901
|
context.rotate(angle);
|
|
@@ -1723,7 +1923,7 @@ function drawParticle(container, context, particle, delta, fillColorValue, strok
|
|
|
1723
1923
|
h: color.value.h.value,
|
|
1724
1924
|
s: color.value.s.value,
|
|
1725
1925
|
l: color.value.l.value
|
|
1726
|
-
}, (
|
|
1926
|
+
}, (_d = (_c = color.opacity) === null || _c === void 0 ? void 0 : _c.value) !== null && _d !== void 0 ? _d : opacity));
|
|
1727
1927
|
}
|
|
1728
1928
|
|
|
1729
1929
|
context.fillStyle = fillGradient;
|
|
@@ -1734,7 +1934,7 @@ function drawParticle(container, context, particle, delta, fillColorValue, strok
|
|
|
1734
1934
|
}
|
|
1735
1935
|
|
|
1736
1936
|
const stroke = particle.stroke;
|
|
1737
|
-
context.lineWidth = particle.strokeWidth;
|
|
1937
|
+
context.lineWidth = (_e = particle.strokeWidth) !== null && _e !== void 0 ? _e : 0;
|
|
1738
1938
|
|
|
1739
1939
|
if (strokeColorValue) {
|
|
1740
1940
|
context.strokeStyle = strokeColorValue;
|
|
@@ -1742,7 +1942,7 @@ function drawParticle(container, context, particle, delta, fillColorValue, strok
|
|
|
1742
1942
|
|
|
1743
1943
|
drawShape(container, context, particle, radius, opacity, delta);
|
|
1744
1944
|
|
|
1745
|
-
if (stroke.width > 0) {
|
|
1945
|
+
if (((_f = stroke === null || stroke === void 0 ? void 0 : stroke.width) !== null && _f !== void 0 ? _f : 0) > 0) {
|
|
1746
1946
|
context.stroke();
|
|
1747
1947
|
}
|
|
1748
1948
|
|
|
@@ -1757,7 +1957,7 @@ function drawParticle(container, context, particle, delta, fillColorValue, strok
|
|
|
1757
1957
|
context.restore();
|
|
1758
1958
|
context.save();
|
|
1759
1959
|
|
|
1760
|
-
if (tiltOptions.enable) {
|
|
1960
|
+
if (tiltOptions.enable && particle.tilt) {
|
|
1761
1961
|
context.setTransform(1, Math.cos(particle.tilt.value) * particle.tilt.cosDirection, Math.sin(particle.tilt.value) * particle.tilt.sinDirection, 1, pos.x, pos.y);
|
|
1762
1962
|
} else {
|
|
1763
1963
|
context.translate(pos.x, pos.y);
|
|
@@ -1833,6 +2033,13 @@ function drawEllipse(context, particle, fillColorValue, radius, opacity, width,
|
|
|
1833
2033
|
context.ellipse(pos.x, pos.y, radius / 2, radius * 2, rotationRadian, start, end);
|
|
1834
2034
|
context.stroke();
|
|
1835
2035
|
}
|
|
2036
|
+
function alterHsl(color, type, value) {
|
|
2037
|
+
return {
|
|
2038
|
+
h: color.h,
|
|
2039
|
+
s: color.s,
|
|
2040
|
+
l: color.l + (type === AlterType.darken ? -1 : 1) * value
|
|
2041
|
+
};
|
|
2042
|
+
}
|
|
1836
2043
|
;// CONCATENATED MODULE: ./dist/browser/Utils/Range.js
|
|
1837
2044
|
class Range {
|
|
1838
2045
|
constructor(x, y) {
|
|
@@ -2044,6 +2251,8 @@ class EventListeners {
|
|
|
2044
2251
|
|
|
2045
2252
|
this.visibilityChangeHandler = () => this.handleVisibilityChange();
|
|
2046
2253
|
|
|
2254
|
+
this.themeChangeHandler = e => this.handleThemeChange(e);
|
|
2255
|
+
|
|
2047
2256
|
this.resizeHandler = () => this.handleWindowResize();
|
|
2048
2257
|
}
|
|
2049
2258
|
|
|
@@ -2073,6 +2282,12 @@ class EventListeners {
|
|
|
2073
2282
|
container.interactivity.element = container.canvas.element;
|
|
2074
2283
|
}
|
|
2075
2284
|
|
|
2285
|
+
const mediaMatch = typeof matchMedia !== "undefined" && matchMedia("(prefers-color-scheme: dark)");
|
|
2286
|
+
|
|
2287
|
+
if (mediaMatch) {
|
|
2288
|
+
manageListener(mediaMatch, "change", this.themeChangeHandler, add);
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2076
2291
|
const interactivityEl = container.interactivity.element;
|
|
2077
2292
|
|
|
2078
2293
|
if (!interactivityEl) {
|
|
@@ -2332,6 +2547,16 @@ class EventListeners {
|
|
|
2332
2547
|
}
|
|
2333
2548
|
}
|
|
2334
2549
|
|
|
2550
|
+
handleThemeChange(e) {
|
|
2551
|
+
const mediaEvent = e;
|
|
2552
|
+
const themeName = mediaEvent.matches ? this.container.options.defaultDarkTheme : this.container.options.defaultLightTheme;
|
|
2553
|
+
const theme = this.container.options.themes.find(theme => theme.name === themeName);
|
|
2554
|
+
|
|
2555
|
+
if (theme && theme.default.auto) {
|
|
2556
|
+
this.container.loadTheme(themeName);
|
|
2557
|
+
}
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2335
2560
|
handleClickMode(mode) {
|
|
2336
2561
|
const container = this.container;
|
|
2337
2562
|
const options = container.actualOptions;
|
|
@@ -2628,7 +2853,6 @@ class QuadTree {
|
|
|
2628
2853
|
;// CONCATENATED MODULE: ./dist/browser/Core/Canvas.js
|
|
2629
2854
|
|
|
2630
2855
|
|
|
2631
|
-
|
|
2632
2856
|
class Canvas {
|
|
2633
2857
|
constructor(container) {
|
|
2634
2858
|
this.container = container;
|
|
@@ -2771,7 +2995,7 @@ class Canvas {
|
|
|
2771
2995
|
|
|
2772
2996
|
const pos1 = p1.getPosition();
|
|
2773
2997
|
const pos2 = p2.getPosition();
|
|
2774
|
-
drawConnectLine(ctx, (_a = p1.linksWidth) !== null && _a !== void 0 ? _a : this.container.retina.linksWidth, lineStyle, pos1, pos2);
|
|
2998
|
+
drawConnectLine(ctx, (_a = p1.retina.linksWidth) !== null && _a !== void 0 ? _a : this.container.retina.linksWidth, lineStyle, pos1, pos2);
|
|
2775
2999
|
});
|
|
2776
3000
|
}
|
|
2777
3001
|
|
|
@@ -2781,12 +3005,12 @@ class Canvas {
|
|
|
2781
3005
|
var _a;
|
|
2782
3006
|
|
|
2783
3007
|
const beginPos = particle.getPosition();
|
|
2784
|
-
drawGrabLine(ctx, (_a = particle.linksWidth) !== null && _a !== void 0 ? _a : container.retina.linksWidth, beginPos, mousePos, lineColor, opacity);
|
|
3008
|
+
drawGrabLine(ctx, (_a = particle.retina.linksWidth) !== null && _a !== void 0 ? _a : container.retina.linksWidth, beginPos, mousePos, lineColor, opacity);
|
|
2785
3009
|
});
|
|
2786
3010
|
}
|
|
2787
3011
|
|
|
2788
3012
|
drawParticle(particle, delta) {
|
|
2789
|
-
var _a, _b, _c;
|
|
3013
|
+
var _a, _b, _c, _d, _e, _f;
|
|
2790
3014
|
|
|
2791
3015
|
if (particle.spawning || particle.destroyed) {
|
|
2792
3016
|
return;
|
|
@@ -2818,10 +3042,10 @@ class Canvas {
|
|
|
2818
3042
|
|
|
2819
3043
|
const options = this.container.actualOptions;
|
|
2820
3044
|
const zIndexOptions = particle.options.zIndex;
|
|
2821
|
-
const zOpacityFactor =
|
|
3045
|
+
const zOpacityFactor = (1 - particle.zIndexFactor) ** zIndexOptions.opacityRate;
|
|
2822
3046
|
const radius = particle.getRadius();
|
|
2823
|
-
const opacity = twinkling ? twinkle.opacity : (_b = particle.bubble.opacity) !== null && _b !== void 0 ? _b : particle.opacity.value;
|
|
2824
|
-
const strokeOpacity = (
|
|
3047
|
+
const opacity = twinkling ? twinkle.opacity : (_d = (_b = particle.bubble.opacity) !== null && _b !== void 0 ? _b : (_c = particle.opacity) === null || _c === void 0 ? void 0 : _c.value) !== null && _d !== void 0 ? _d : 1;
|
|
3048
|
+
const strokeOpacity = (_f = (_e = particle.stroke) === null || _e === void 0 ? void 0 : _e.opacity) !== null && _f !== void 0 ? _f : opacity;
|
|
2825
3049
|
const zOpacity = opacity * zOpacityFactor;
|
|
2826
3050
|
const fillColorValue = fColor ? getStyleFromHsl(fColor, zOpacity) : undefined;
|
|
2827
3051
|
|
|
@@ -2829,9 +3053,8 @@ class Canvas {
|
|
|
2829
3053
|
return;
|
|
2830
3054
|
}
|
|
2831
3055
|
|
|
2832
|
-
const orbitOptions = particle.options.orbit;
|
|
2833
3056
|
this.draw(ctx => {
|
|
2834
|
-
const zSizeFactor =
|
|
3057
|
+
const zSizeFactor = (1 - particle.zIndexFactor) ** zIndexOptions.sizeRate;
|
|
2835
3058
|
const zStrokeOpacity = strokeOpacity * zOpacityFactor;
|
|
2836
3059
|
const strokeColorValue = sColor ? getStyleFromHsl(sColor, zStrokeOpacity) : fillColorValue;
|
|
2837
3060
|
|
|
@@ -2839,42 +3062,24 @@ class Canvas {
|
|
|
2839
3062
|
return;
|
|
2840
3063
|
}
|
|
2841
3064
|
|
|
2842
|
-
|
|
2843
|
-
|
|
3065
|
+
const container = this.container;
|
|
3066
|
+
|
|
3067
|
+
for (const updater of container.particles.updaters) {
|
|
3068
|
+
if (updater.beforeDraw) {
|
|
3069
|
+
updater.beforeDraw(particle);
|
|
3070
|
+
}
|
|
2844
3071
|
}
|
|
2845
3072
|
|
|
2846
3073
|
drawParticle(this.container, ctx, particle, delta, fillColorValue, strokeColorValue, options.backgroundMask.enable, options.backgroundMask.composite, radius * zSizeFactor, zOpacity, particle.options.shadow, particle.gradient);
|
|
2847
3074
|
|
|
2848
|
-
|
|
2849
|
-
|
|
3075
|
+
for (const updater of container.particles.updaters) {
|
|
3076
|
+
if (updater.afterDraw) {
|
|
3077
|
+
updater.afterDraw(particle);
|
|
3078
|
+
}
|
|
2850
3079
|
}
|
|
2851
3080
|
});
|
|
2852
3081
|
}
|
|
2853
3082
|
|
|
2854
|
-
drawOrbit(particle, type) {
|
|
2855
|
-
const container = this.container;
|
|
2856
|
-
const orbitOptions = particle.options.orbit;
|
|
2857
|
-
let start;
|
|
2858
|
-
let end;
|
|
2859
|
-
|
|
2860
|
-
if (type === OrbitType.back) {
|
|
2861
|
-
start = Math.PI / 2;
|
|
2862
|
-
end = Math.PI * 3 / 2;
|
|
2863
|
-
} else if (type === OrbitType.front) {
|
|
2864
|
-
start = Math.PI * 3 / 2;
|
|
2865
|
-
end = Math.PI / 2;
|
|
2866
|
-
} else {
|
|
2867
|
-
start = 0;
|
|
2868
|
-
end = 2 * Math.PI;
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
|
-
this.draw(ctx => {
|
|
2872
|
-
var _a, _b, _c, _d;
|
|
2873
|
-
|
|
2874
|
-
drawEllipse(ctx, particle, (_a = particle.orbitColor) !== null && _a !== void 0 ? _a : particle.getFillColor(), (_c = (_b = particle.orbitRadius) !== null && _b !== void 0 ? _b : container.retina.orbitRadius) !== null && _c !== void 0 ? _c : particle.getRadius(), orbitOptions.opacity, orbitOptions.width, ((_d = particle.orbitRotation) !== null && _d !== void 0 ? _d : 0) * container.retina.pixelRatio, start, end);
|
|
2875
|
-
});
|
|
2876
|
-
}
|
|
2877
|
-
|
|
2878
3083
|
drawPlugin(plugin, delta) {
|
|
2879
3084
|
this.draw(ctx => {
|
|
2880
3085
|
drawPlugin(ctx, plugin, delta);
|
|
@@ -3021,7 +3226,8 @@ class OptionsColor {
|
|
|
3021
3226
|
}
|
|
3022
3227
|
|
|
3023
3228
|
static create(source, data) {
|
|
3024
|
-
const color =
|
|
3229
|
+
const color = new OptionsColor();
|
|
3230
|
+
color.load(source);
|
|
3025
3231
|
|
|
3026
3232
|
if (data !== undefined) {
|
|
3027
3233
|
if (typeof data === "string" || data instanceof Array) {
|
|
@@ -4193,12 +4399,17 @@ class AnimatableColor extends OptionsColor {
|
|
|
4193
4399
|
}
|
|
4194
4400
|
|
|
4195
4401
|
static create(source, data) {
|
|
4196
|
-
const color =
|
|
4402
|
+
const color = new AnimatableColor();
|
|
4403
|
+
color.load(source);
|
|
4197
4404
|
|
|
4198
4405
|
if (data !== undefined) {
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4406
|
+
if (typeof data === "string" || data instanceof Array) {
|
|
4407
|
+
color.load({
|
|
4408
|
+
value: data
|
|
4409
|
+
});
|
|
4410
|
+
} else {
|
|
4411
|
+
color.load(data);
|
|
4412
|
+
}
|
|
4202
4413
|
}
|
|
4203
4414
|
|
|
4204
4415
|
return color;
|
|
@@ -4636,11 +4847,13 @@ class RollLight {
|
|
|
4636
4847
|
|
|
4637
4848
|
|
|
4638
4849
|
|
|
4850
|
+
|
|
4639
4851
|
class Roll {
|
|
4640
4852
|
constructor() {
|
|
4641
4853
|
this.darken = new RollLight();
|
|
4642
4854
|
this.enable = false;
|
|
4643
4855
|
this.enlighten = new RollLight();
|
|
4856
|
+
this.mode = RollMode.vertical;
|
|
4644
4857
|
this.speed = 25;
|
|
4645
4858
|
}
|
|
4646
4859
|
|
|
@@ -4661,6 +4874,10 @@ class Roll {
|
|
|
4661
4874
|
|
|
4662
4875
|
this.enlighten.load(data.enlighten);
|
|
4663
4876
|
|
|
4877
|
+
if (data.mode !== undefined) {
|
|
4878
|
+
this.mode = data.mode;
|
|
4879
|
+
}
|
|
4880
|
+
|
|
4664
4881
|
if (data.speed !== undefined) {
|
|
4665
4882
|
this.speed = setRangeValue(data.speed);
|
|
4666
4883
|
}
|
|
@@ -5048,7 +5265,7 @@ class ParticlesOptions {
|
|
|
5048
5265
|
}
|
|
5049
5266
|
|
|
5050
5267
|
this.bounce.load(data.bounce);
|
|
5051
|
-
this.color
|
|
5268
|
+
this.color.load(AnimatableColor.create(this.color, data.color));
|
|
5052
5269
|
this.destroy.load(data.destroy);
|
|
5053
5270
|
this.life.load(data.life);
|
|
5054
5271
|
const links = (_b = (_a = data.links) !== null && _a !== void 0 ? _a : data.lineLinked) !== null && _b !== void 0 ? _b : data.line_linked;
|
|
@@ -5209,9 +5426,20 @@ class Vector3d extends Vector {
|
|
|
5209
5426
|
|
|
5210
5427
|
|
|
5211
5428
|
|
|
5429
|
+
|
|
5430
|
+
const fixOutMode = data => {
|
|
5431
|
+
if (isInArray(data.outMode, data.checkModes) || isInArray(data.outMode, data.checkModes)) {
|
|
5432
|
+
if (data.coord > data.maxCoord - data.radius * 2) {
|
|
5433
|
+
data.setCb(-data.radius);
|
|
5434
|
+
} else if (data.coord < data.radius * 2) {
|
|
5435
|
+
data.setCb(data.radius);
|
|
5436
|
+
}
|
|
5437
|
+
}
|
|
5438
|
+
};
|
|
5439
|
+
|
|
5212
5440
|
class Particle {
|
|
5213
5441
|
constructor(id, container, position, overrideOptions, group) {
|
|
5214
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j
|
|
5442
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
5215
5443
|
|
|
5216
5444
|
this.id = id;
|
|
5217
5445
|
this.container = container;
|
|
@@ -5223,11 +5451,13 @@ class Particle {
|
|
|
5223
5451
|
this.unbreakable = false;
|
|
5224
5452
|
this.splitCount = 0;
|
|
5225
5453
|
this.misplaced = false;
|
|
5226
|
-
this.
|
|
5454
|
+
this.retina = {
|
|
5455
|
+
maxDistance: {}
|
|
5456
|
+
};
|
|
5227
5457
|
const pxRatio = container.retina.pixelRatio;
|
|
5228
|
-
const
|
|
5458
|
+
const mainOptions = container.actualOptions;
|
|
5229
5459
|
const particlesOptions = new ParticlesOptions();
|
|
5230
|
-
particlesOptions.load(
|
|
5460
|
+
particlesOptions.load(mainOptions.particles);
|
|
5231
5461
|
const shapeType = particlesOptions.shape.type;
|
|
5232
5462
|
const reduceDuplicates = particlesOptions.reduceDuplicates;
|
|
5233
5463
|
this.shape = shapeType instanceof Array ? itemFromArray(shapeType, this.id, reduceDuplicates) : shapeType;
|
|
@@ -5259,16 +5489,14 @@ class Particle {
|
|
|
5259
5489
|
this.fill = (_d = (_c = this.shapeData) === null || _c === void 0 ? void 0 : _c.fill) !== null && _d !== void 0 ? _d : this.fill;
|
|
5260
5490
|
this.close = (_f = (_e = this.shapeData) === null || _e === void 0 ? void 0 : _e.close) !== null && _f !== void 0 ? _f : this.close;
|
|
5261
5491
|
this.options = particlesOptions;
|
|
5262
|
-
const zIndexValue = getRangeValue(this.options.zIndex.value);
|
|
5263
5492
|
this.pathDelay = getValue(this.options.move.path.delay) * 1000;
|
|
5264
|
-
|
|
5493
|
+
const zIndexValue = getRangeValue(this.options.zIndex.value);
|
|
5265
5494
|
container.retina.initParticle(this);
|
|
5266
|
-
const sizeOptions = this.options.size
|
|
5267
|
-
|
|
5268
|
-
const sizeRange = sizeOptions.value;
|
|
5495
|
+
const sizeOptions = this.options.size,
|
|
5496
|
+
sizeRange = sizeOptions.value;
|
|
5269
5497
|
this.size = {
|
|
5270
5498
|
enable: sizeOptions.animation.enable,
|
|
5271
|
-
value:
|
|
5499
|
+
value: getValue(sizeOptions) * container.retina.pixelRatio,
|
|
5272
5500
|
max: getRangeMax(sizeRange) * pxRatio,
|
|
5273
5501
|
min: getRangeMin(sizeRange) * pxRatio,
|
|
5274
5502
|
loops: 0,
|
|
@@ -5297,7 +5525,7 @@ class Particle {
|
|
|
5297
5525
|
break;
|
|
5298
5526
|
}
|
|
5299
5527
|
|
|
5300
|
-
this.size.velocity = ((_g = this.sizeAnimationSpeed) !== null && _g !== void 0 ? _g : container.retina.sizeAnimationSpeed) / 100 * container.retina.reduceFactor;
|
|
5528
|
+
this.size.velocity = ((_g = this.retina.sizeAnimationSpeed) !== null && _g !== void 0 ? _g : container.retina.sizeAnimationSpeed) / 100 * container.retina.reduceFactor;
|
|
5301
5529
|
|
|
5302
5530
|
if (!sizeAnimation.sync) {
|
|
5303
5531
|
this.size.velocity *= Math.random();
|
|
@@ -5310,200 +5538,7 @@ class Particle {
|
|
|
5310
5538
|
};
|
|
5311
5539
|
this.initialVelocity = this.calculateVelocity();
|
|
5312
5540
|
this.velocity = this.initialVelocity.copy();
|
|
5313
|
-
|
|
5314
|
-
this.rotate = {
|
|
5315
|
-
enable: rotateOptions.animation.enable,
|
|
5316
|
-
value: getRangeValue(rotateOptions.value) * Math.PI / 180
|
|
5317
|
-
};
|
|
5318
|
-
let rotateDirection = rotateOptions.direction;
|
|
5319
|
-
|
|
5320
|
-
if (rotateDirection === RotateDirection.random) {
|
|
5321
|
-
const index = Math.floor(Math.random() * 2);
|
|
5322
|
-
rotateDirection = index > 0 ? RotateDirection.counterClockwise : RotateDirection.clockwise;
|
|
5323
|
-
}
|
|
5324
|
-
|
|
5325
|
-
switch (rotateDirection) {
|
|
5326
|
-
case RotateDirection.counterClockwise:
|
|
5327
|
-
case "counterClockwise":
|
|
5328
|
-
this.rotate.status = AnimationStatus.decreasing;
|
|
5329
|
-
break;
|
|
5330
|
-
|
|
5331
|
-
case RotateDirection.clockwise:
|
|
5332
|
-
this.rotate.status = AnimationStatus.increasing;
|
|
5333
|
-
break;
|
|
5334
|
-
}
|
|
5335
|
-
|
|
5336
|
-
const rotateAnimation = this.options.rotate.animation;
|
|
5337
|
-
|
|
5338
|
-
if (rotateAnimation.enable) {
|
|
5339
|
-
this.rotate.velocity = rotateAnimation.speed / 360 * container.retina.reduceFactor;
|
|
5340
|
-
|
|
5341
|
-
if (!rotateAnimation.sync) {
|
|
5342
|
-
this.rotate.velocity *= Math.random();
|
|
5343
|
-
}
|
|
5344
|
-
}
|
|
5345
|
-
|
|
5346
|
-
const tiltOptions = this.options.tilt;
|
|
5347
|
-
this.tilt = {
|
|
5348
|
-
enable: tiltOptions.enable,
|
|
5349
|
-
value: getRangeValue(tiltOptions.value) * Math.PI / 180,
|
|
5350
|
-
sinDirection: Math.random() >= 0.5 ? 1 : -1,
|
|
5351
|
-
cosDirection: Math.random() >= 0.5 ? 1 : -1
|
|
5352
|
-
};
|
|
5353
|
-
let tiltDirection = tiltOptions.direction;
|
|
5354
|
-
|
|
5355
|
-
if (tiltDirection === TiltDirection.random) {
|
|
5356
|
-
const index = Math.floor(Math.random() * 2);
|
|
5357
|
-
tiltDirection = index > 0 ? TiltDirection.counterClockwise : TiltDirection.clockwise;
|
|
5358
|
-
}
|
|
5359
|
-
|
|
5360
|
-
switch (tiltDirection) {
|
|
5361
|
-
case TiltDirection.counterClockwise:
|
|
5362
|
-
case "counterClockwise":
|
|
5363
|
-
this.tilt.status = AnimationStatus.decreasing;
|
|
5364
|
-
break;
|
|
5365
|
-
|
|
5366
|
-
case TiltDirection.clockwise:
|
|
5367
|
-
this.tilt.status = AnimationStatus.increasing;
|
|
5368
|
-
break;
|
|
5369
|
-
}
|
|
5370
|
-
|
|
5371
|
-
const tiltAnimation = this.options.tilt.animation;
|
|
5372
|
-
|
|
5373
|
-
if (tiltAnimation.enable) {
|
|
5374
|
-
this.tilt.velocity = tiltAnimation.speed / 360 * container.retina.reduceFactor;
|
|
5375
|
-
|
|
5376
|
-
if (!tiltAnimation.sync) {
|
|
5377
|
-
this.tilt.velocity *= Math.random();
|
|
5378
|
-
}
|
|
5379
|
-
}
|
|
5380
|
-
|
|
5381
|
-
const orbitOptions = particlesOptions.orbit;
|
|
5382
|
-
|
|
5383
|
-
if (orbitOptions.enable) {
|
|
5384
|
-
this.orbitRotation = getRangeValue(orbitOptions.rotation.value);
|
|
5385
|
-
this.orbitColor = colorToHsl(orbitOptions.color);
|
|
5386
|
-
}
|
|
5387
|
-
|
|
5388
|
-
const hslColor = colorToHsl(this.options.color, this.id, reduceDuplicates);
|
|
5389
|
-
|
|
5390
|
-
if (hslColor) {
|
|
5391
|
-
this.color = getHslAnimationFromHsl(hslColor, this.options.color.animation, container.retina.reduceFactor);
|
|
5392
|
-
}
|
|
5393
|
-
|
|
5394
|
-
const gradient = this.options.gradient instanceof Array ? itemFromArray(this.options.gradient) : this.options.gradient;
|
|
5395
|
-
|
|
5396
|
-
if (gradient) {
|
|
5397
|
-
this.gradient = {
|
|
5398
|
-
angle: {
|
|
5399
|
-
value: gradient.angle.value,
|
|
5400
|
-
enable: gradient.angle.animation.enable,
|
|
5401
|
-
velocity: gradient.angle.animation.speed / 360 * container.retina.reduceFactor
|
|
5402
|
-
},
|
|
5403
|
-
type: gradient.type,
|
|
5404
|
-
colors: []
|
|
5405
|
-
};
|
|
5406
|
-
let rotateDirection = gradient.angle.direction;
|
|
5407
|
-
|
|
5408
|
-
if (rotateDirection === RotateDirection.random) {
|
|
5409
|
-
const index = Math.floor(Math.random() * 2);
|
|
5410
|
-
rotateDirection = index > 0 ? RotateDirection.counterClockwise : RotateDirection.clockwise;
|
|
5411
|
-
}
|
|
5412
|
-
|
|
5413
|
-
switch (rotateDirection) {
|
|
5414
|
-
case RotateDirection.counterClockwise:
|
|
5415
|
-
case "counterClockwise":
|
|
5416
|
-
this.gradient.angle.status = AnimationStatus.decreasing;
|
|
5417
|
-
break;
|
|
5418
|
-
|
|
5419
|
-
case RotateDirection.clockwise:
|
|
5420
|
-
this.gradient.angle.status = AnimationStatus.increasing;
|
|
5421
|
-
break;
|
|
5422
|
-
}
|
|
5423
|
-
|
|
5424
|
-
for (const grColor of gradient.colors) {
|
|
5425
|
-
const grHslColor = colorToHsl(grColor.value, this.id, reduceDuplicates);
|
|
5426
|
-
|
|
5427
|
-
if (grHslColor) {
|
|
5428
|
-
const grHslAnimation = getHslAnimationFromHsl(grHslColor, grColor.value.animation, container.retina.reduceFactor);
|
|
5429
|
-
const addColor = {
|
|
5430
|
-
stop: grColor.stop,
|
|
5431
|
-
value: grHslAnimation,
|
|
5432
|
-
opacity: grColor.opacity ? {
|
|
5433
|
-
enable: grColor.opacity.animation.enable,
|
|
5434
|
-
max: getRangeMax(grColor.opacity.value),
|
|
5435
|
-
min: getRangeMin(grColor.opacity.value),
|
|
5436
|
-
status: AnimationStatus.increasing,
|
|
5437
|
-
value: getRangeValue(grColor.opacity.value),
|
|
5438
|
-
velocity: grColor.opacity.animation.speed / 100 * container.retina.reduceFactor
|
|
5439
|
-
} : undefined
|
|
5440
|
-
};
|
|
5441
|
-
|
|
5442
|
-
if (grColor.opacity && addColor.opacity) {
|
|
5443
|
-
const opacityRange = grColor.opacity.value;
|
|
5444
|
-
addColor.opacity.min = getRangeMin(opacityRange);
|
|
5445
|
-
addColor.opacity.max = getRangeMax(opacityRange);
|
|
5446
|
-
const opacityAnimation = grColor.opacity.animation;
|
|
5447
|
-
|
|
5448
|
-
switch (opacityAnimation.startValue) {
|
|
5449
|
-
case StartValueType.min:
|
|
5450
|
-
addColor.opacity.value = addColor.opacity.min;
|
|
5451
|
-
addColor.opacity.status = AnimationStatus.increasing;
|
|
5452
|
-
break;
|
|
5453
|
-
|
|
5454
|
-
case StartValueType.random:
|
|
5455
|
-
addColor.opacity.value = randomInRange(addColor.opacity);
|
|
5456
|
-
addColor.opacity.status = Math.random() >= 0.5 ? AnimationStatus.increasing : AnimationStatus.decreasing;
|
|
5457
|
-
break;
|
|
5458
|
-
|
|
5459
|
-
case StartValueType.max:
|
|
5460
|
-
default:
|
|
5461
|
-
addColor.opacity.value = addColor.opacity.max;
|
|
5462
|
-
addColor.opacity.status = AnimationStatus.decreasing;
|
|
5463
|
-
break;
|
|
5464
|
-
}
|
|
5465
|
-
}
|
|
5466
|
-
|
|
5467
|
-
this.gradient.colors.push(addColor);
|
|
5468
|
-
}
|
|
5469
|
-
}
|
|
5470
|
-
}
|
|
5471
|
-
|
|
5472
|
-
const rollOpt = this.options.roll;
|
|
5473
|
-
|
|
5474
|
-
if (rollOpt.enable) {
|
|
5475
|
-
if (this.color) {
|
|
5476
|
-
if (rollOpt.backColor) {
|
|
5477
|
-
this.backColor = colorToHsl(rollOpt.backColor);
|
|
5478
|
-
} else if (rollOpt.darken.enable && rollOpt.enlighten.enable) {
|
|
5479
|
-
this.alterType = Math.random() >= 0.5 ? AlterType.darken : AlterType.enlighten;
|
|
5480
|
-
this.alterValue = this.alterType === AlterType.darken ? rollOpt.darken.value : rollOpt.enlighten.value;
|
|
5481
|
-
} else if (rollOpt.darken.enable) {
|
|
5482
|
-
this.alterType = AlterType.darken;
|
|
5483
|
-
this.alterValue = rollOpt.darken.value;
|
|
5484
|
-
} else if (rollOpt.enlighten.enable) {
|
|
5485
|
-
this.alterType = AlterType.enlighten;
|
|
5486
|
-
this.alterValue = rollOpt.enlighten.value;
|
|
5487
|
-
}
|
|
5488
|
-
}
|
|
5489
|
-
|
|
5490
|
-
this.rollAngle = Math.random() * Math.PI * 2;
|
|
5491
|
-
this.rollSpeed = getRangeValue(rollOpt.speed) / 360;
|
|
5492
|
-
} else {
|
|
5493
|
-
this.rollAngle = 0;
|
|
5494
|
-
this.rollSpeed = 0;
|
|
5495
|
-
}
|
|
5496
|
-
|
|
5497
|
-
const wobbleOpt = this.options.wobble;
|
|
5498
|
-
|
|
5499
|
-
if (wobbleOpt.enable) {
|
|
5500
|
-
this.wobbleAngle = Math.random() * Math.PI * 2;
|
|
5501
|
-
this.wobbleSpeed = getRangeValue(wobbleOpt.speed) / 360;
|
|
5502
|
-
} else {
|
|
5503
|
-
this.wobbleAngle = 0;
|
|
5504
|
-
this.wobbleSpeed = 0;
|
|
5505
|
-
}
|
|
5506
|
-
|
|
5541
|
+
this.moveDecay = 1 - getRangeValue(this.options.move.decay);
|
|
5507
5542
|
this.position = this.calcPosition(container, position, clamp(zIndexValue, 0, container.zLayers));
|
|
5508
5543
|
this.initialPosition = this.position.copy();
|
|
5509
5544
|
this.offset = Vector.origin;
|
|
@@ -5511,48 +5546,6 @@ class Particle {
|
|
|
5511
5546
|
particles.needsSort = particles.needsSort || particles.lastZIndex < this.position.z;
|
|
5512
5547
|
particles.lastZIndex = this.position.z;
|
|
5513
5548
|
this.zIndexFactor = this.position.z / container.zLayers;
|
|
5514
|
-
const opacityOptions = this.options.opacity;
|
|
5515
|
-
this.opacity = {
|
|
5516
|
-
enable: opacityOptions.animation.enable,
|
|
5517
|
-
max: getRangeMax(opacityOptions.value),
|
|
5518
|
-
min: getRangeMin(opacityOptions.value),
|
|
5519
|
-
value: getRangeValue(opacityOptions.value),
|
|
5520
|
-
loops: 0,
|
|
5521
|
-
maxLoops: opacityOptions.animation.count
|
|
5522
|
-
};
|
|
5523
|
-
const opacityAnimation = opacityOptions.animation;
|
|
5524
|
-
|
|
5525
|
-
if (opacityAnimation.enable) {
|
|
5526
|
-
this.opacity.status = AnimationStatus.increasing;
|
|
5527
|
-
const opacityRange = opacityOptions.value;
|
|
5528
|
-
this.opacity.min = getRangeMin(opacityRange);
|
|
5529
|
-
this.opacity.max = getRangeMax(opacityRange);
|
|
5530
|
-
|
|
5531
|
-
switch (opacityAnimation.startValue) {
|
|
5532
|
-
case StartValueType.min:
|
|
5533
|
-
this.opacity.value = this.opacity.min;
|
|
5534
|
-
this.opacity.status = AnimationStatus.increasing;
|
|
5535
|
-
break;
|
|
5536
|
-
|
|
5537
|
-
case StartValueType.random:
|
|
5538
|
-
this.opacity.value = randomInRange(this.opacity);
|
|
5539
|
-
this.opacity.status = Math.random() >= 0.5 ? AnimationStatus.increasing : AnimationStatus.decreasing;
|
|
5540
|
-
break;
|
|
5541
|
-
|
|
5542
|
-
case StartValueType.max:
|
|
5543
|
-
default:
|
|
5544
|
-
this.opacity.value = this.opacity.max;
|
|
5545
|
-
this.opacity.status = AnimationStatus.decreasing;
|
|
5546
|
-
break;
|
|
5547
|
-
}
|
|
5548
|
-
|
|
5549
|
-
this.opacity.velocity = opacityAnimation.speed / 100 * container.retina.reduceFactor;
|
|
5550
|
-
|
|
5551
|
-
if (!opacityAnimation.sync) {
|
|
5552
|
-
this.opacity.velocity *= Math.random();
|
|
5553
|
-
}
|
|
5554
|
-
}
|
|
5555
|
-
|
|
5556
5549
|
this.sides = 24;
|
|
5557
5550
|
let drawer = container.drawers.get(this.shape);
|
|
5558
5551
|
|
|
@@ -5574,19 +5567,11 @@ class Particle {
|
|
|
5574
5567
|
this.sides = sideCountFunc(this);
|
|
5575
5568
|
}
|
|
5576
5569
|
|
|
5577
|
-
this.stroke = this.options.stroke instanceof Array ? itemFromArray(this.options.stroke, this.id, reduceDuplicates) : this.options.stroke;
|
|
5578
|
-
this.strokeWidth = this.stroke.width * container.retina.pixelRatio;
|
|
5579
|
-
const strokeHslColor = (_h = colorToHsl(this.stroke.color)) !== null && _h !== void 0 ? _h : this.getFillColor();
|
|
5580
|
-
|
|
5581
|
-
if (strokeHslColor) {
|
|
5582
|
-
this.strokeColor = getHslAnimationFromHsl(strokeHslColor, (_j = this.stroke.color) === null || _j === void 0 ? void 0 : _j.animation, container.retina.reduceFactor);
|
|
5583
|
-
}
|
|
5584
|
-
|
|
5585
5570
|
this.life = this.loadLife();
|
|
5586
5571
|
this.spawning = this.life.delay > 0;
|
|
5587
5572
|
|
|
5588
5573
|
if (this.options.move.spin.enable) {
|
|
5589
|
-
const spinPos = (
|
|
5574
|
+
const spinPos = (_h = this.options.move.spin.position) !== null && _h !== void 0 ? _h : {
|
|
5590
5575
|
x: 50,
|
|
5591
5576
|
y: 50
|
|
5592
5577
|
};
|
|
@@ -5601,12 +5586,18 @@ class Particle {
|
|
|
5601
5586
|
direction: this.velocity.x >= 0 ? RotateDirection.clockwise : RotateDirection.counterClockwise,
|
|
5602
5587
|
angle: this.velocity.angle,
|
|
5603
5588
|
radius: distance,
|
|
5604
|
-
acceleration: getRangeValue(this.options.move.spin.acceleration)
|
|
5589
|
+
acceleration: (_j = this.retina.spinAcceleration) !== null && _j !== void 0 ? _j : getRangeValue(this.options.move.spin.acceleration)
|
|
5605
5590
|
};
|
|
5606
5591
|
}
|
|
5607
5592
|
|
|
5608
5593
|
this.shadowColor = colorToRgb(this.options.shadow.color);
|
|
5609
5594
|
|
|
5595
|
+
for (const updater of container.particles.updaters) {
|
|
5596
|
+
if (updater.init) {
|
|
5597
|
+
updater.init(this);
|
|
5598
|
+
}
|
|
5599
|
+
}
|
|
5600
|
+
|
|
5610
5601
|
if (drawer && drawer.particleInit) {
|
|
5611
5602
|
drawer.particleInit(container, this);
|
|
5612
5603
|
}
|
|
@@ -5647,33 +5638,30 @@ class Particle {
|
|
|
5647
5638
|
}
|
|
5648
5639
|
|
|
5649
5640
|
getRadius() {
|
|
5650
|
-
|
|
5641
|
+
var _a;
|
|
5642
|
+
|
|
5643
|
+
return (_a = this.bubble.radius) !== null && _a !== void 0 ? _a : this.size.value;
|
|
5651
5644
|
}
|
|
5652
5645
|
|
|
5653
5646
|
getMass() {
|
|
5654
|
-
|
|
5655
|
-
return Math.pow(radius, 2) * Math.PI / 2;
|
|
5647
|
+
return this.getRadius() ** 2 * Math.PI / 2;
|
|
5656
5648
|
}
|
|
5657
5649
|
|
|
5658
5650
|
getFillColor() {
|
|
5659
|
-
|
|
5660
|
-
return this.bubble.color;
|
|
5661
|
-
}
|
|
5651
|
+
var _a, _b, _c;
|
|
5662
5652
|
|
|
5663
|
-
const color = getHslFromAnimation(this.color);
|
|
5653
|
+
const color = (_a = this.bubble.color) !== null && _a !== void 0 ? _a : getHslFromAnimation(this.color);
|
|
5664
5654
|
|
|
5665
|
-
if (color &&
|
|
5666
|
-
const rolled = Math.floor(this.
|
|
5655
|
+
if (color && this.roll && (this.backColor || this.roll.alter)) {
|
|
5656
|
+
const rolled = Math.floor(((_c = (_b = this.roll) === null || _b === void 0 ? void 0 : _b.angle) !== null && _c !== void 0 ? _c : 0) / (Math.PI / 2)) % 2;
|
|
5667
5657
|
|
|
5668
5658
|
if (rolled) {
|
|
5669
5659
|
if (this.backColor) {
|
|
5670
5660
|
return this.backColor;
|
|
5671
|
-
}
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
l: color.l + (this.alterType === AlterType.darken ? -1 : 1) * this.alterValue
|
|
5676
|
-
};
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
if (this.roll.alter) {
|
|
5664
|
+
return alterHsl(color, this.roll.alter.type, this.roll.alter.value);
|
|
5677
5665
|
}
|
|
5678
5666
|
}
|
|
5679
5667
|
}
|
|
@@ -5716,7 +5704,10 @@ class Particle {
|
|
|
5716
5704
|
}
|
|
5717
5705
|
|
|
5718
5706
|
reset() {
|
|
5719
|
-
this.opacity
|
|
5707
|
+
if (this.opacity) {
|
|
5708
|
+
this.opacity.loops = 0;
|
|
5709
|
+
}
|
|
5710
|
+
|
|
5720
5711
|
this.size.loops = 0;
|
|
5721
5712
|
}
|
|
5722
5713
|
|
|
@@ -5748,26 +5739,27 @@ class Particle {
|
|
|
5748
5739
|
const canvasSize = container.canvas.size;
|
|
5749
5740
|
const pos = Vector3d.create((_a = position === null || position === void 0 ? void 0 : position.x) !== null && _a !== void 0 ? _a : Math.random() * canvasSize.width, (_b = position === null || position === void 0 ? void 0 : position.y) !== null && _b !== void 0 ? _b : Math.random() * canvasSize.height, zIndex);
|
|
5750
5741
|
const radius = this.getRadius();
|
|
5751
|
-
const outModes = this.options.move.outModes;
|
|
5752
|
-
|
|
5753
|
-
const fixHorizontal = outMode => {
|
|
5754
|
-
if (isInArray(outMode, OutMode.bounce) || isInArray(outMode, OutMode.bounceHorizontal)) {
|
|
5755
|
-
if (pos.x > container.canvas.size.width - radius * 2) {
|
|
5756
|
-
pos.x -= radius;
|
|
5757
|
-
} else if (pos.x < radius * 2) {
|
|
5758
|
-
pos.x += radius;
|
|
5759
|
-
}
|
|
5760
|
-
}
|
|
5761
|
-
};
|
|
5762
5742
|
|
|
5763
|
-
const
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
|
|
5770
|
-
|
|
5743
|
+
const outModes = this.options.move.outModes,
|
|
5744
|
+
fixHorizontal = outMode => {
|
|
5745
|
+
fixOutMode({
|
|
5746
|
+
outMode,
|
|
5747
|
+
checkModes: [OutMode.bounce, OutMode.bounceHorizontal],
|
|
5748
|
+
coord: pos.x,
|
|
5749
|
+
maxCoord: container.canvas.size.width,
|
|
5750
|
+
setCb: value => pos.x += value,
|
|
5751
|
+
radius
|
|
5752
|
+
});
|
|
5753
|
+
},
|
|
5754
|
+
fixVertical = outMode => {
|
|
5755
|
+
fixOutMode({
|
|
5756
|
+
outMode,
|
|
5757
|
+
checkModes: [OutMode.bounce, OutMode.bounceVertical],
|
|
5758
|
+
coord: pos.y,
|
|
5759
|
+
maxCoord: container.canvas.size.height,
|
|
5760
|
+
setCb: value => pos.y += value,
|
|
5761
|
+
radius
|
|
5762
|
+
});
|
|
5771
5763
|
};
|
|
5772
5764
|
|
|
5773
5765
|
fixHorizontal((_c = outModes.left) !== null && _c !== void 0 ? _c : outModes.default);
|
|
@@ -5924,8 +5916,8 @@ function applyDistance(particle) {
|
|
|
5924
5916
|
} = getDistances(initialPosition, particle.position);
|
|
5925
5917
|
const dxFixed = Math.abs(dx),
|
|
5926
5918
|
dyFixed = Math.abs(dy);
|
|
5927
|
-
const hDistance = particle.maxDistance.horizontal;
|
|
5928
|
-
const vDistance = particle.maxDistance.vertical;
|
|
5919
|
+
const hDistance = particle.retina.maxDistance.horizontal;
|
|
5920
|
+
const vDistance = particle.retina.maxDistance.vertical;
|
|
5929
5921
|
|
|
5930
5922
|
if (!hDistance && !vDistance) {
|
|
5931
5923
|
return;
|
|
@@ -5974,6 +5966,8 @@ class Mover {
|
|
|
5974
5966
|
moveParticle(particle, delta) {
|
|
5975
5967
|
var _a, _b, _c;
|
|
5976
5968
|
|
|
5969
|
+
var _d, _e;
|
|
5970
|
+
|
|
5977
5971
|
const particleOptions = particle.options;
|
|
5978
5972
|
const moveOptions = particleOptions.move;
|
|
5979
5973
|
|
|
@@ -5983,8 +5977,8 @@ class Mover {
|
|
|
5983
5977
|
|
|
5984
5978
|
const container = this.container,
|
|
5985
5979
|
slowFactor = this.getProximitySpeedFactor(particle),
|
|
5986
|
-
baseSpeed = ((_a = particle.moveSpeed) !== null && _a !== void 0 ? _a :
|
|
5987
|
-
moveDrift = (_b = particle.moveDrift) !== null && _b !== void 0 ? _b :
|
|
5980
|
+
baseSpeed = ((_a = (_d = particle.retina).moveSpeed) !== null && _a !== void 0 ? _a : _d.moveSpeed = getRangeValue(moveOptions.speed) * container.retina.pixelRatio) * container.retina.reduceFactor,
|
|
5981
|
+
moveDrift = (_b = (_e = particle.retina).moveDrift) !== null && _b !== void 0 ? _b : _e.moveDrift = getRangeValue(particle.options.move.drift) * container.retina.pixelRatio,
|
|
5988
5982
|
maxSize = getRangeMax(particleOptions.size.value) * container.retina.pixelRatio,
|
|
5989
5983
|
sizeFactor = moveOptions.size ? particle.getRadius() / maxSize : 1,
|
|
5990
5984
|
diffFactor = 2,
|
|
@@ -6002,14 +5996,14 @@ class Mover {
|
|
|
6002
5996
|
particle.velocity.x += moveDrift * delta.factor / (60 * moveSpeed);
|
|
6003
5997
|
}
|
|
6004
5998
|
|
|
6005
|
-
const decay =
|
|
5999
|
+
const decay = particle.moveDecay;
|
|
6006
6000
|
|
|
6007
6001
|
if (decay != 1) {
|
|
6008
6002
|
particle.velocity.multTo(decay);
|
|
6009
6003
|
}
|
|
6010
6004
|
|
|
6011
6005
|
const velocity = particle.velocity.mult(moveSpeed);
|
|
6012
|
-
const maxSpeed = (_c = particle.maxSpeed) !== null && _c !== void 0 ? _c : container.retina.maxSpeed;
|
|
6006
|
+
const maxSpeed = (_c = particle.retina.maxSpeed) !== null && _c !== void 0 ? _c : container.retina.maxSpeed;
|
|
6013
6007
|
|
|
6014
6008
|
if (gravityOptions.enable && gravityOptions.maxSpeed > 0 && (!gravityOptions.inverse && velocity.y >= 0 && velocity.y >= maxSpeed || gravityOptions.inverse && velocity.y <= 0 && velocity.y <= -maxSpeed)) {
|
|
6015
6009
|
velocity.y = gravityFactor * maxSpeed;
|
|
@@ -6020,7 +6014,7 @@ class Mover {
|
|
|
6020
6014
|
}
|
|
6021
6015
|
|
|
6022
6016
|
const zIndexOptions = particle.options.zIndex,
|
|
6023
|
-
zVelocityFactor =
|
|
6017
|
+
zVelocityFactor = (1 - particle.zIndexFactor) ** zIndexOptions.velocityRate;
|
|
6024
6018
|
|
|
6025
6019
|
if (moveOptions.spin.enable) {
|
|
6026
6020
|
this.spin(particle, moveSpeed);
|
|
@@ -6168,8 +6162,10 @@ class Particles {
|
|
|
6168
6162
|
this.limit = 0;
|
|
6169
6163
|
this.needsSort = false;
|
|
6170
6164
|
this.lastZIndex = 0;
|
|
6171
|
-
this.
|
|
6172
|
-
|
|
6165
|
+
this.freqs = {
|
|
6166
|
+
links: new Map(),
|
|
6167
|
+
triangles: new Map()
|
|
6168
|
+
};
|
|
6173
6169
|
this.interactionManager = new InteractionManager(container);
|
|
6174
6170
|
const canvasSize = this.container.canvas.size;
|
|
6175
6171
|
this.linksColors = new Map();
|
|
@@ -6188,8 +6184,8 @@ class Particles {
|
|
|
6188
6184
|
const options = container.actualOptions;
|
|
6189
6185
|
this.lastZIndex = 0;
|
|
6190
6186
|
this.needsSort = false;
|
|
6191
|
-
this.
|
|
6192
|
-
this.
|
|
6187
|
+
this.freqs.links = new Map();
|
|
6188
|
+
this.freqs.triangles = new Map();
|
|
6193
6189
|
let handled = false;
|
|
6194
6190
|
|
|
6195
6191
|
for (const [, plugin] of container.plugins) {
|
|
@@ -6414,11 +6410,11 @@ class Particles {
|
|
|
6414
6410
|
|
|
6415
6411
|
getLinkFrequency(p1, p2) {
|
|
6416
6412
|
const key = `${Math.min(p1.id, p2.id)}_${Math.max(p1.id, p2.id)}`;
|
|
6417
|
-
let res = this.
|
|
6413
|
+
let res = this.freqs.links.get(key);
|
|
6418
6414
|
|
|
6419
6415
|
if (res === undefined) {
|
|
6420
6416
|
res = Math.random();
|
|
6421
|
-
this.
|
|
6417
|
+
this.freqs.links.set(key, res);
|
|
6422
6418
|
}
|
|
6423
6419
|
|
|
6424
6420
|
return res;
|
|
@@ -6440,11 +6436,11 @@ class Particles {
|
|
|
6440
6436
|
}
|
|
6441
6437
|
|
|
6442
6438
|
const key = `${id1}_${id2}_${id3}`;
|
|
6443
|
-
let res = this.
|
|
6439
|
+
let res = this.freqs.triangles.get(key);
|
|
6444
6440
|
|
|
6445
6441
|
if (res === undefined) {
|
|
6446
6442
|
res = Math.random();
|
|
6447
|
-
this.
|
|
6443
|
+
this.freqs.triangles.set(key, res);
|
|
6448
6444
|
}
|
|
6449
6445
|
|
|
6450
6446
|
return res;
|
|
@@ -6504,7 +6500,7 @@ class Particles {
|
|
|
6504
6500
|
|
|
6505
6501
|
const canvas = container.canvas.element;
|
|
6506
6502
|
const pxRatio = container.retina.pixelRatio;
|
|
6507
|
-
return canvas.width * canvas.height / (densityOptions.factor *
|
|
6503
|
+
return canvas.width * canvas.height / (densityOptions.factor * pxRatio ** 2 * densityOptions.area);
|
|
6508
6504
|
}
|
|
6509
6505
|
|
|
6510
6506
|
pushParticle(position, overrideOptions, group, initializer) {
|
|
@@ -6607,24 +6603,22 @@ class Retina {
|
|
|
6607
6603
|
const options = particle.options;
|
|
6608
6604
|
const ratio = this.pixelRatio;
|
|
6609
6605
|
const moveDistance = options.move.distance;
|
|
6610
|
-
const
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
particle.orbitRadius = (orbit === null || orbit === void 0 ? void 0 : orbit.radius) !== undefined ? orbit.radius * ratio : undefined;
|
|
6606
|
+
const props = particle.retina;
|
|
6607
|
+
props.attractDistance = options.move.attract.distance * ratio;
|
|
6608
|
+
props.linksDistance = options.links.distance * ratio;
|
|
6609
|
+
props.linksWidth = options.links.width * ratio;
|
|
6610
|
+
props.moveDrift = getRangeValue(options.move.drift) * ratio;
|
|
6611
|
+
props.moveSpeed = getRangeValue(options.move.speed) * ratio;
|
|
6612
|
+
props.sizeAnimationSpeed = options.size.animation.speed * ratio;
|
|
6618
6613
|
|
|
6619
6614
|
if (particle.spin) {
|
|
6620
|
-
|
|
6615
|
+
props.spinAcceleration = getRangeValue(options.move.spin.acceleration) * ratio;
|
|
6621
6616
|
}
|
|
6622
6617
|
|
|
6623
|
-
const maxDistance =
|
|
6618
|
+
const maxDistance = props.maxDistance;
|
|
6624
6619
|
maxDistance.horizontal = moveDistance.horizontal !== undefined ? moveDistance.horizontal * ratio : undefined;
|
|
6625
6620
|
maxDistance.vertical = moveDistance.vertical !== undefined ? moveDistance.vertical * ratio : undefined;
|
|
6626
|
-
|
|
6627
|
-
particle.maxSpeed = options.move.gravity.maxSpeed * ratio;
|
|
6621
|
+
props.maxSpeed = options.move.gravity.maxSpeed * ratio;
|
|
6628
6622
|
}
|
|
6629
6623
|
|
|
6630
6624
|
handleMotionChange(mediaQuery) {
|
|
@@ -7713,15 +7707,20 @@ class Background {
|
|
|
7713
7707
|
|
|
7714
7708
|
class ThemeDefault {
|
|
7715
7709
|
constructor() {
|
|
7710
|
+
this.auto = false;
|
|
7716
7711
|
this.mode = ThemeMode.any;
|
|
7717
7712
|
this.value = false;
|
|
7718
7713
|
}
|
|
7719
7714
|
|
|
7720
7715
|
load(data) {
|
|
7721
|
-
if (data
|
|
7716
|
+
if (!data) {
|
|
7722
7717
|
return;
|
|
7723
7718
|
}
|
|
7724
7719
|
|
|
7720
|
+
if (data.auto !== undefined) {
|
|
7721
|
+
this.auto = data.auto;
|
|
7722
|
+
}
|
|
7723
|
+
|
|
7725
7724
|
if (data.mode !== undefined) {
|
|
7726
7725
|
this.mode = data.mode;
|
|
7727
7726
|
}
|
|
@@ -7870,6 +7869,14 @@ class Responsive {
|
|
|
7870
7869
|
|
|
7871
7870
|
}
|
|
7872
7871
|
;// CONCATENATED MODULE: ./dist/browser/Options/Classes/Options.js
|
|
7872
|
+
var __classPrivateFieldGet = undefined && undefined.__classPrivateFieldGet || function (receiver, state, kind, f) {
|
|
7873
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
7874
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
7875
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
7876
|
+
};
|
|
7877
|
+
|
|
7878
|
+
var _Options_instances, _Options_findDefaultTheme;
|
|
7879
|
+
|
|
7873
7880
|
|
|
7874
7881
|
|
|
7875
7882
|
|
|
@@ -7883,6 +7890,8 @@ class Responsive {
|
|
|
7883
7890
|
|
|
7884
7891
|
class Options {
|
|
7885
7892
|
constructor() {
|
|
7893
|
+
_Options_instances.add(this);
|
|
7894
|
+
|
|
7886
7895
|
this.autoPlay = true;
|
|
7887
7896
|
this.background = new Background();
|
|
7888
7897
|
this.backgroundMask = new BackgroundMask();
|
|
@@ -7926,7 +7935,7 @@ class Options {
|
|
|
7926
7935
|
}
|
|
7927
7936
|
|
|
7928
7937
|
load(data) {
|
|
7929
|
-
var _a, _b, _c;
|
|
7938
|
+
var _a, _b, _c, _d, _e;
|
|
7930
7939
|
|
|
7931
7940
|
if (data === undefined) {
|
|
7932
7941
|
return;
|
|
@@ -7975,7 +7984,14 @@ class Options {
|
|
|
7975
7984
|
}
|
|
7976
7985
|
|
|
7977
7986
|
this.background.load(data.background);
|
|
7978
|
-
|
|
7987
|
+
const fullScreen = (_c = data.fullScreen) !== null && _c !== void 0 ? _c : data.backgroundMode;
|
|
7988
|
+
|
|
7989
|
+
if (typeof fullScreen === "boolean") {
|
|
7990
|
+
this.fullScreen.enable = fullScreen;
|
|
7991
|
+
} else {
|
|
7992
|
+
this.fullScreen.load(fullScreen);
|
|
7993
|
+
}
|
|
7994
|
+
|
|
7979
7995
|
this.backgroundMask.load(data.backgroundMask);
|
|
7980
7996
|
this.interactivity.load(data.interactivity);
|
|
7981
7997
|
|
|
@@ -8008,6 +8024,9 @@ class Options {
|
|
|
8008
8024
|
this.themes.push(optTheme);
|
|
8009
8025
|
}
|
|
8010
8026
|
}
|
|
8027
|
+
|
|
8028
|
+
this.defaultDarkTheme = (_d = __classPrivateFieldGet(this, _Options_instances, "m", _Options_findDefaultTheme).call(this, ThemeMode.dark)) === null || _d === void 0 ? void 0 : _d.name;
|
|
8029
|
+
this.defaultLightTheme = (_e = __classPrivateFieldGet(this, _Options_instances, "m", _Options_findDefaultTheme).call(this, ThemeMode.light)) === null || _e === void 0 ? void 0 : _e.name;
|
|
8011
8030
|
}
|
|
8012
8031
|
|
|
8013
8032
|
setTheme(name) {
|
|
@@ -8018,12 +8037,9 @@ class Options {
|
|
|
8018
8037
|
this.load(chosenTheme.options);
|
|
8019
8038
|
}
|
|
8020
8039
|
} else {
|
|
8021
|
-
const
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
if (!defaultTheme) {
|
|
8025
|
-
defaultTheme = this.themes.find(theme => theme.default.value && theme.default.mode === ThemeMode.any);
|
|
8026
|
-
}
|
|
8040
|
+
const mediaMatch = typeof matchMedia !== "undefined" && matchMedia("(prefers-color-scheme: dark)"),
|
|
8041
|
+
clientDarkMode = mediaMatch && mediaMatch.matches,
|
|
8042
|
+
defaultTheme = __classPrivateFieldGet(this, _Options_instances, "m", _Options_findDefaultTheme).call(this, clientDarkMode ? ThemeMode.dark : ThemeMode.light);
|
|
8027
8043
|
|
|
8028
8044
|
if (defaultTheme) {
|
|
8029
8045
|
this.load(defaultTheme.options);
|
|
@@ -8031,10 +8047,6 @@ class Options {
|
|
|
8031
8047
|
}
|
|
8032
8048
|
}
|
|
8033
8049
|
|
|
8034
|
-
importPreset(preset) {
|
|
8035
|
-
this.load(Plugins.getPreset(preset));
|
|
8036
|
-
}
|
|
8037
|
-
|
|
8038
8050
|
setResponsive(width, pxRatio, defaultOptions) {
|
|
8039
8051
|
var _a;
|
|
8040
8052
|
|
|
@@ -8042,40 +8054,17 @@ class Options {
|
|
|
8042
8054
|
this.load((_a = this.responsive.find(t => t.maxWidth * pxRatio > width)) === null || _a === void 0 ? void 0 : _a.options);
|
|
8043
8055
|
}
|
|
8044
8056
|
|
|
8045
|
-
|
|
8046
|
-
|
|
8047
|
-
var Container_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
8048
|
-
function adopt(value) {
|
|
8049
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
8050
|
-
resolve(value);
|
|
8051
|
-
});
|
|
8057
|
+
importPreset(preset) {
|
|
8058
|
+
this.load(Plugins.getPreset(preset));
|
|
8052
8059
|
}
|
|
8053
8060
|
|
|
8054
|
-
|
|
8055
|
-
|
|
8056
|
-
|
|
8057
|
-
step(generator.next(value));
|
|
8058
|
-
} catch (e) {
|
|
8059
|
-
reject(e);
|
|
8060
|
-
}
|
|
8061
|
-
}
|
|
8062
|
-
|
|
8063
|
-
function rejected(value) {
|
|
8064
|
-
try {
|
|
8065
|
-
step(generator["throw"](value));
|
|
8066
|
-
} catch (e) {
|
|
8067
|
-
reject(e);
|
|
8068
|
-
}
|
|
8069
|
-
}
|
|
8070
|
-
|
|
8071
|
-
function step(result) {
|
|
8072
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
8073
|
-
}
|
|
8061
|
+
}
|
|
8062
|
+
_Options_instances = new WeakSet(), _Options_findDefaultTheme = function _Options_findDefaultTheme(mode) {
|
|
8063
|
+
var _a;
|
|
8074
8064
|
|
|
8075
|
-
|
|
8076
|
-
});
|
|
8065
|
+
return (_a = this.themes.find(theme => theme.default.value && theme.default.mode === mode)) !== null && _a !== void 0 ? _a : this.themes.find(theme => theme.default.value && theme.default.mode === ThemeMode.any);
|
|
8077
8066
|
};
|
|
8078
|
-
|
|
8067
|
+
;// CONCATENATED MODULE: ./dist/browser/Core/Container.js
|
|
8079
8068
|
|
|
8080
8069
|
|
|
8081
8070
|
|
|
@@ -8327,37 +8316,33 @@ class Container {
|
|
|
8327
8316
|
delete this.particles.linksColor;
|
|
8328
8317
|
}
|
|
8329
8318
|
|
|
8330
|
-
loadTheme(name) {
|
|
8331
|
-
|
|
8332
|
-
|
|
8333
|
-
yield this.refresh();
|
|
8334
|
-
});
|
|
8319
|
+
async loadTheme(name) {
|
|
8320
|
+
this.currentTheme = name;
|
|
8321
|
+
await this.refresh();
|
|
8335
8322
|
}
|
|
8336
8323
|
|
|
8337
|
-
start() {
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
|
|
8341
|
-
}
|
|
8324
|
+
async start() {
|
|
8325
|
+
if (this.started) {
|
|
8326
|
+
return;
|
|
8327
|
+
}
|
|
8342
8328
|
|
|
8343
|
-
|
|
8344
|
-
|
|
8345
|
-
|
|
8329
|
+
await this.init();
|
|
8330
|
+
this.started = true;
|
|
8331
|
+
this.eventListeners.addListeners();
|
|
8346
8332
|
|
|
8347
|
-
|
|
8348
|
-
|
|
8349
|
-
|
|
8333
|
+
if (this.interactivity.element instanceof HTMLElement && this.intersectionObserver) {
|
|
8334
|
+
this.intersectionObserver.observe(this.interactivity.element);
|
|
8335
|
+
}
|
|
8350
8336
|
|
|
8351
|
-
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
}
|
|
8337
|
+
for (const [, plugin] of this.plugins) {
|
|
8338
|
+
if (plugin.startAsync !== undefined) {
|
|
8339
|
+
await plugin.startAsync();
|
|
8340
|
+
} else if (plugin.start !== undefined) {
|
|
8341
|
+
plugin.start();
|
|
8357
8342
|
}
|
|
8343
|
+
}
|
|
8358
8344
|
|
|
8359
|
-
|
|
8360
|
-
});
|
|
8345
|
+
this.play();
|
|
8361
8346
|
}
|
|
8362
8347
|
|
|
8363
8348
|
addClickHandler(callback) {
|
|
@@ -8465,68 +8450,66 @@ class Container {
|
|
|
8465
8450
|
this.actualOptions.setTheme(this.currentTheme);
|
|
8466
8451
|
}
|
|
8467
8452
|
|
|
8468
|
-
init() {
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
yield drawer.init(this);
|
|
8490
|
-
}
|
|
8453
|
+
async init() {
|
|
8454
|
+
this.actualOptions = new Options();
|
|
8455
|
+
this.actualOptions.load(this._options);
|
|
8456
|
+
this.retina.init();
|
|
8457
|
+
this.canvas.init();
|
|
8458
|
+
this.updateActualOptions();
|
|
8459
|
+
this.canvas.initBackground();
|
|
8460
|
+
this.canvas.resize();
|
|
8461
|
+
this.zLayers = this.actualOptions.zLayers;
|
|
8462
|
+
this.duration = getRangeValue(this.actualOptions.duration);
|
|
8463
|
+
this.lifeTime = 0;
|
|
8464
|
+
this.fpsLimit = this.actualOptions.fpsLimit > 0 ? this.actualOptions.fpsLimit : 60;
|
|
8465
|
+
const availablePlugins = Plugins.getAvailablePlugins(this);
|
|
8466
|
+
|
|
8467
|
+
for (const [id, plugin] of availablePlugins) {
|
|
8468
|
+
this.plugins.set(id, plugin);
|
|
8469
|
+
}
|
|
8470
|
+
|
|
8471
|
+
for (const [, drawer] of this.drawers) {
|
|
8472
|
+
if (drawer.init) {
|
|
8473
|
+
await drawer.init(this);
|
|
8491
8474
|
}
|
|
8475
|
+
}
|
|
8492
8476
|
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
}
|
|
8477
|
+
for (const [, plugin] of this.plugins) {
|
|
8478
|
+
if (plugin.init) {
|
|
8479
|
+
plugin.init(this.actualOptions);
|
|
8480
|
+
} else if (plugin.initAsync !== undefined) {
|
|
8481
|
+
await plugin.initAsync(this.actualOptions);
|
|
8499
8482
|
}
|
|
8483
|
+
}
|
|
8500
8484
|
|
|
8501
|
-
|
|
8485
|
+
const pathOptions = this.actualOptions.particles.move.path;
|
|
8502
8486
|
|
|
8503
|
-
|
|
8504
|
-
|
|
8487
|
+
if (pathOptions.generator) {
|
|
8488
|
+
const customGenerator = Plugins.getPathGenerator(pathOptions.generator);
|
|
8505
8489
|
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
|
|
8490
|
+
if (customGenerator) {
|
|
8491
|
+
if (customGenerator.init) {
|
|
8492
|
+
this.pathGenerator.init = customGenerator.init;
|
|
8493
|
+
}
|
|
8510
8494
|
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8495
|
+
if (customGenerator.generate) {
|
|
8496
|
+
this.pathGenerator.generate = customGenerator.generate;
|
|
8497
|
+
}
|
|
8514
8498
|
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
}
|
|
8499
|
+
if (customGenerator.update) {
|
|
8500
|
+
this.pathGenerator.update = customGenerator.update;
|
|
8518
8501
|
}
|
|
8519
8502
|
}
|
|
8503
|
+
}
|
|
8520
8504
|
|
|
8521
|
-
|
|
8522
|
-
|
|
8505
|
+
this.particles.init();
|
|
8506
|
+
this.particles.setDensity();
|
|
8523
8507
|
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
}
|
|
8508
|
+
for (const [, plugin] of this.plugins) {
|
|
8509
|
+
if (plugin.particlesSetup !== undefined) {
|
|
8510
|
+
plugin.particlesSetup();
|
|
8528
8511
|
}
|
|
8529
|
-
}
|
|
8512
|
+
}
|
|
8530
8513
|
}
|
|
8531
8514
|
|
|
8532
8515
|
intersectionManager(entries) {
|
|
@@ -8549,38 +8532,6 @@ class Container {
|
|
|
8549
8532
|
|
|
8550
8533
|
}
|
|
8551
8534
|
;// CONCATENATED MODULE: ./dist/browser/Core/Loader.js
|
|
8552
|
-
var Loader_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
8553
|
-
function adopt(value) {
|
|
8554
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
8555
|
-
resolve(value);
|
|
8556
|
-
});
|
|
8557
|
-
}
|
|
8558
|
-
|
|
8559
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
8560
|
-
function fulfilled(value) {
|
|
8561
|
-
try {
|
|
8562
|
-
step(generator.next(value));
|
|
8563
|
-
} catch (e) {
|
|
8564
|
-
reject(e);
|
|
8565
|
-
}
|
|
8566
|
-
}
|
|
8567
|
-
|
|
8568
|
-
function rejected(value) {
|
|
8569
|
-
try {
|
|
8570
|
-
step(generator["throw"](value));
|
|
8571
|
-
} catch (e) {
|
|
8572
|
-
reject(e);
|
|
8573
|
-
}
|
|
8574
|
-
}
|
|
8575
|
-
|
|
8576
|
-
function step(result) {
|
|
8577
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
8578
|
-
}
|
|
8579
|
-
|
|
8580
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8581
|
-
});
|
|
8582
|
-
};
|
|
8583
|
-
|
|
8584
8535
|
|
|
8585
8536
|
|
|
8586
8537
|
const tsParticlesDom = [];
|
|
@@ -8606,101 +8557,93 @@ class Loader {
|
|
|
8606
8557
|
dom.splice(index, 1);
|
|
8607
8558
|
}
|
|
8608
8559
|
|
|
8609
|
-
static load(tagId, options, index) {
|
|
8610
|
-
|
|
8611
|
-
let domContainer = document.getElementById(tagId);
|
|
8560
|
+
static async load(tagId, options, index) {
|
|
8561
|
+
let domContainer = document.getElementById(tagId);
|
|
8612
8562
|
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8617
|
-
|
|
8563
|
+
if (!domContainer) {
|
|
8564
|
+
domContainer = document.createElement("div");
|
|
8565
|
+
domContainer.id = tagId;
|
|
8566
|
+
document.append(domContainer);
|
|
8567
|
+
}
|
|
8618
8568
|
|
|
8619
|
-
|
|
8620
|
-
});
|
|
8569
|
+
return Loader.set(tagId, domContainer, options, index);
|
|
8621
8570
|
}
|
|
8622
8571
|
|
|
8623
|
-
static set(id, domContainer, options, index) {
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
|
-
|
|
8627
|
-
const oldIndex = dom.findIndex(v => v.id === id);
|
|
8572
|
+
static async set(id, domContainer, options, index) {
|
|
8573
|
+
const currentOptions = options instanceof Array ? itemFromArray(options, index) : options;
|
|
8574
|
+
const dom = Loader.dom();
|
|
8575
|
+
const oldIndex = dom.findIndex(v => v.id === id);
|
|
8628
8576
|
|
|
8629
|
-
|
|
8630
|
-
|
|
8577
|
+
if (oldIndex >= 0) {
|
|
8578
|
+
const old = Loader.domItem(oldIndex);
|
|
8631
8579
|
|
|
8632
|
-
|
|
8633
|
-
|
|
8634
|
-
|
|
8635
|
-
}
|
|
8580
|
+
if (old && !old.destroyed) {
|
|
8581
|
+
old.destroy();
|
|
8582
|
+
dom.splice(oldIndex, 1);
|
|
8636
8583
|
}
|
|
8584
|
+
}
|
|
8637
8585
|
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
if (domContainer.tagName.toLowerCase() === "canvas") {
|
|
8642
|
-
canvasEl = domContainer;
|
|
8643
|
-
generatedCanvas = false;
|
|
8644
|
-
} else {
|
|
8645
|
-
const existingCanvases = domContainer.getElementsByTagName("canvas");
|
|
8586
|
+
let canvasEl;
|
|
8587
|
+
let generatedCanvas;
|
|
8646
8588
|
|
|
8647
|
-
|
|
8648
|
-
|
|
8589
|
+
if (domContainer.tagName.toLowerCase() === "canvas") {
|
|
8590
|
+
canvasEl = domContainer;
|
|
8591
|
+
generatedCanvas = false;
|
|
8592
|
+
} else {
|
|
8593
|
+
const existingCanvases = domContainer.getElementsByTagName("canvas");
|
|
8649
8594
|
|
|
8650
|
-
|
|
8651
|
-
|
|
8652
|
-
}
|
|
8595
|
+
if (existingCanvases.length) {
|
|
8596
|
+
canvasEl = existingCanvases[0];
|
|
8653
8597
|
|
|
8654
|
-
|
|
8655
|
-
} else {
|
|
8656
|
-
generatedCanvas = true;
|
|
8657
|
-
canvasEl = document.createElement("canvas");
|
|
8598
|
+
if (!canvasEl.className) {
|
|
8658
8599
|
canvasEl.className = Constants.canvasClass;
|
|
8659
|
-
canvasEl.style.width = "100%";
|
|
8660
|
-
canvasEl.style.height = "100%";
|
|
8661
|
-
domContainer.appendChild(canvasEl);
|
|
8662
8600
|
}
|
|
8663
|
-
}
|
|
8664
|
-
|
|
8665
|
-
const newItem = new Container(id, currentOptions);
|
|
8666
8601
|
|
|
8667
|
-
|
|
8668
|
-
dom.splice(oldIndex, 0, newItem);
|
|
8602
|
+
generatedCanvas = false;
|
|
8669
8603
|
} else {
|
|
8670
|
-
|
|
8604
|
+
generatedCanvas = true;
|
|
8605
|
+
canvasEl = document.createElement("canvas");
|
|
8606
|
+
canvasEl.className = Constants.canvasClass;
|
|
8607
|
+
canvasEl.style.width = "100%";
|
|
8608
|
+
canvasEl.style.height = "100%";
|
|
8609
|
+
domContainer.appendChild(canvasEl);
|
|
8671
8610
|
}
|
|
8611
|
+
}
|
|
8672
8612
|
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
|
|
8676
|
-
|
|
8613
|
+
const newItem = new Container(id, currentOptions);
|
|
8614
|
+
|
|
8615
|
+
if (oldIndex >= 0) {
|
|
8616
|
+
dom.splice(oldIndex, 0, newItem);
|
|
8617
|
+
} else {
|
|
8618
|
+
dom.push(newItem);
|
|
8619
|
+
}
|
|
8620
|
+
|
|
8621
|
+
newItem.canvas.loadCanvas(canvasEl, generatedCanvas);
|
|
8622
|
+
await newItem.start();
|
|
8623
|
+
return newItem;
|
|
8677
8624
|
}
|
|
8678
8625
|
|
|
8679
|
-
static loadJSON(tagId, jsonUrl, index) {
|
|
8680
|
-
|
|
8681
|
-
|
|
8682
|
-
const response = yield fetch(url);
|
|
8626
|
+
static async loadJSON(tagId, jsonUrl, index) {
|
|
8627
|
+
const url = jsonUrl instanceof Array ? itemFromArray(jsonUrl, index) : jsonUrl;
|
|
8628
|
+
const response = await fetch(url);
|
|
8683
8629
|
|
|
8684
|
-
|
|
8685
|
-
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
});
|
|
8630
|
+
if (response.ok) {
|
|
8631
|
+
return Loader.load(tagId, await response.json());
|
|
8632
|
+
} else {
|
|
8633
|
+
fetchError(response.status);
|
|
8634
|
+
}
|
|
8690
8635
|
}
|
|
8691
8636
|
|
|
8692
|
-
static setJSON(id, domContainer, jsonUrl, index) {
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
const response = yield fetch(url);
|
|
8637
|
+
static async setJSON(id, domContainer, jsonUrl, index) {
|
|
8638
|
+
const url = jsonUrl instanceof Array ? itemFromArray(jsonUrl, index) : jsonUrl;
|
|
8639
|
+
const response = await fetch(url);
|
|
8696
8640
|
|
|
8697
|
-
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
});
|
|
8641
|
+
if (response.ok) {
|
|
8642
|
+
const options = await response.json();
|
|
8643
|
+
return Loader.set(id, domContainer, options);
|
|
8644
|
+
} else {
|
|
8645
|
+
fetchError(response.status);
|
|
8646
|
+
}
|
|
8704
8647
|
}
|
|
8705
8648
|
|
|
8706
8649
|
static setOnClickHandler(callback) {
|
|
@@ -8717,38 +8660,6 @@ class Loader {
|
|
|
8717
8660
|
|
|
8718
8661
|
}
|
|
8719
8662
|
;// CONCATENATED MODULE: ./dist/browser/main.js
|
|
8720
|
-
var main_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
8721
|
-
function adopt(value) {
|
|
8722
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
8723
|
-
resolve(value);
|
|
8724
|
-
});
|
|
8725
|
-
}
|
|
8726
|
-
|
|
8727
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
8728
|
-
function fulfilled(value) {
|
|
8729
|
-
try {
|
|
8730
|
-
step(generator.next(value));
|
|
8731
|
-
} catch (e) {
|
|
8732
|
-
reject(e);
|
|
8733
|
-
}
|
|
8734
|
-
}
|
|
8735
|
-
|
|
8736
|
-
function rejected(value) {
|
|
8737
|
-
try {
|
|
8738
|
-
step(generator["throw"](value));
|
|
8739
|
-
} catch (e) {
|
|
8740
|
-
reject(e);
|
|
8741
|
-
}
|
|
8742
|
-
}
|
|
8743
|
-
|
|
8744
|
-
function step(result) {
|
|
8745
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
8746
|
-
}
|
|
8747
|
-
|
|
8748
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8749
|
-
});
|
|
8750
|
-
};
|
|
8751
|
-
|
|
8752
8663
|
var __classPrivateFieldSet = undefined && undefined.__classPrivateFieldSet || function (receiver, state, value, kind, f) {
|
|
8753
8664
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
8754
8665
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
@@ -8756,7 +8667,7 @@ var __classPrivateFieldSet = undefined && undefined.__classPrivateFieldSet || fu
|
|
|
8756
8667
|
return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value;
|
|
8757
8668
|
};
|
|
8758
8669
|
|
|
8759
|
-
var
|
|
8670
|
+
var main_classPrivateFieldGet = undefined && undefined.__classPrivateFieldGet || function (receiver, state, kind, f) {
|
|
8760
8671
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
8761
8672
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
8762
8673
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
@@ -8774,37 +8685,29 @@ class Main {
|
|
|
8774
8685
|
}
|
|
8775
8686
|
|
|
8776
8687
|
init() {
|
|
8777
|
-
if (!
|
|
8688
|
+
if (!main_classPrivateFieldGet(this, _Main_initialized, "f")) {
|
|
8778
8689
|
__classPrivateFieldSet(this, _Main_initialized, true, "f");
|
|
8779
8690
|
}
|
|
8780
8691
|
}
|
|
8781
8692
|
|
|
8782
|
-
loadFromArray(tagId, options, index) {
|
|
8783
|
-
return
|
|
8784
|
-
return Loader.load(tagId, options, index);
|
|
8785
|
-
});
|
|
8693
|
+
async loadFromArray(tagId, options, index) {
|
|
8694
|
+
return Loader.load(tagId, options, index);
|
|
8786
8695
|
}
|
|
8787
8696
|
|
|
8788
|
-
load(tagId, options) {
|
|
8789
|
-
return
|
|
8790
|
-
return Loader.load(tagId, options);
|
|
8791
|
-
});
|
|
8697
|
+
async load(tagId, options) {
|
|
8698
|
+
return Loader.load(tagId, options);
|
|
8792
8699
|
}
|
|
8793
8700
|
|
|
8794
|
-
set(id, element, options) {
|
|
8795
|
-
return
|
|
8796
|
-
return Loader.set(id, element, options);
|
|
8797
|
-
});
|
|
8701
|
+
async set(id, element, options) {
|
|
8702
|
+
return Loader.set(id, element, options);
|
|
8798
8703
|
}
|
|
8799
8704
|
|
|
8800
8705
|
loadJSON(tagId, pathConfigJson, index) {
|
|
8801
8706
|
return Loader.loadJSON(tagId, pathConfigJson, index);
|
|
8802
8707
|
}
|
|
8803
8708
|
|
|
8804
|
-
setJSON(id, element, pathConfigJson, index) {
|
|
8805
|
-
return
|
|
8806
|
-
return Loader.setJSON(id, element, pathConfigJson, index);
|
|
8807
|
-
});
|
|
8709
|
+
async setJSON(id, element, pathConfigJson, index) {
|
|
8710
|
+
return Loader.setJSON(id, element, pathConfigJson, index);
|
|
8808
8711
|
}
|
|
8809
8712
|
|
|
8810
8713
|
setOnClickHandler(callback) {
|
|
@@ -9015,7 +8918,7 @@ class AbsorberInstance {
|
|
|
9015
8918
|
particle.position.x = this.position.x + orbitRadius * updateFunc.x(orbitAngle);
|
|
9016
8919
|
particle.position.y = this.position.y + orbitRadius * updateFunc.y(orbitAngle);
|
|
9017
8920
|
particle.absorberOrbit.length -= v.length;
|
|
9018
|
-
particle.absorberOrbit.angle += ((_a = particle.moveSpeed) !== null && _a !== void 0 ? _a : 0) * container.retina.pixelRatio / 100 * container.retina.reduceFactor;
|
|
8921
|
+
particle.absorberOrbit.angle += ((_a = particle.retina.moveSpeed) !== null && _a !== void 0 ? _a : 0) * container.retina.pixelRatio / 100 * container.retina.reduceFactor;
|
|
9019
8922
|
} else {
|
|
9020
8923
|
const addV = Vector.origin;
|
|
9021
8924
|
addV.length = v.length;
|
|
@@ -9621,7 +9524,7 @@ class EmitterInstance {
|
|
|
9621
9524
|
for (let i = 0; i < quantity; i++) {
|
|
9622
9525
|
const particlesOptions = deepExtend({}, this.particlesOptions);
|
|
9623
9526
|
|
|
9624
|
-
if (this.spawnColor
|
|
9527
|
+
if (this.spawnColor) {
|
|
9625
9528
|
const colorAnimation = (_a = this.emitterOptions.spawnColor) === null || _a === void 0 ? void 0 : _a.animation;
|
|
9626
9529
|
|
|
9627
9530
|
if (colorAnimation) {
|
|
@@ -9981,7 +9884,7 @@ class CircleShape {
|
|
|
9981
9884
|
}
|
|
9982
9885
|
};
|
|
9983
9886
|
|
|
9984
|
-
const radius = (x, y, theta) => x * y / Math.sqrt(
|
|
9887
|
+
const radius = (x, y, theta) => x * y / Math.sqrt((y * Math.cos(theta)) ** 2 + (x * Math.sin(theta)) ** 2);
|
|
9985
9888
|
|
|
9986
9889
|
const [a, b] = [offset.x / 2, offset.y / 2];
|
|
9987
9890
|
const randomTheta = generateTheta(a, b),
|
|
@@ -10378,43 +10281,7 @@ class PolygonMask {
|
|
|
10378
10281
|
}
|
|
10379
10282
|
|
|
10380
10283
|
}
|
|
10381
|
-
;// CONCATENATED MODULE: ./dist/browser/Plugins/PolygonMask/
|
|
10382
|
-
var PolygonMaskInstance_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
10383
|
-
function adopt(value) {
|
|
10384
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
10385
|
-
resolve(value);
|
|
10386
|
-
});
|
|
10387
|
-
}
|
|
10388
|
-
|
|
10389
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
10390
|
-
function fulfilled(value) {
|
|
10391
|
-
try {
|
|
10392
|
-
step(generator.next(value));
|
|
10393
|
-
} catch (e) {
|
|
10394
|
-
reject(e);
|
|
10395
|
-
}
|
|
10396
|
-
}
|
|
10397
|
-
|
|
10398
|
-
function rejected(value) {
|
|
10399
|
-
try {
|
|
10400
|
-
step(generator["throw"](value));
|
|
10401
|
-
} catch (e) {
|
|
10402
|
-
reject(e);
|
|
10403
|
-
}
|
|
10404
|
-
}
|
|
10405
|
-
|
|
10406
|
-
function step(result) {
|
|
10407
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
10408
|
-
}
|
|
10409
|
-
|
|
10410
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
10411
|
-
});
|
|
10412
|
-
};
|
|
10413
|
-
|
|
10414
|
-
|
|
10415
|
-
|
|
10416
|
-
|
|
10417
|
-
|
|
10284
|
+
;// CONCATENATED MODULE: ./dist/browser/Plugins/PolygonMask/utils.js
|
|
10418
10285
|
|
|
10419
10286
|
function drawPolygonMask(context, rawData, stroke) {
|
|
10420
10287
|
const color = colorToRgb(stroke.color);
|
|
@@ -10435,7 +10302,6 @@ function drawPolygonMask(context, rawData, stroke) {
|
|
|
10435
10302
|
context.lineWidth = stroke.width;
|
|
10436
10303
|
context.stroke();
|
|
10437
10304
|
}
|
|
10438
|
-
|
|
10439
10305
|
function drawPolygonMaskPath(context, path, stroke, position) {
|
|
10440
10306
|
context.translate(position.x, position.y);
|
|
10441
10307
|
const color = colorToRgb(stroke.color);
|
|
@@ -10448,23 +10314,24 @@ function drawPolygonMaskPath(context, path, stroke, position) {
|
|
|
10448
10314
|
context.lineWidth = stroke.width;
|
|
10449
10315
|
context.stroke(path);
|
|
10450
10316
|
}
|
|
10451
|
-
|
|
10452
10317
|
function parsePaths(paths, scale, offset) {
|
|
10318
|
+
var _a;
|
|
10319
|
+
|
|
10453
10320
|
const res = [];
|
|
10454
10321
|
|
|
10455
10322
|
for (const path of paths) {
|
|
10456
10323
|
const segments = path.element.pathSegList;
|
|
10457
|
-
const len = segments.numberOfItems;
|
|
10324
|
+
const len = (_a = segments === null || segments === void 0 ? void 0 : segments.numberOfItems) !== null && _a !== void 0 ? _a : 0;
|
|
10458
10325
|
const p = {
|
|
10459
10326
|
x: 0,
|
|
10460
10327
|
y: 0
|
|
10461
10328
|
};
|
|
10462
10329
|
|
|
10463
10330
|
for (let i = 0; i < len; i++) {
|
|
10464
|
-
const segment = segments.getItem(i);
|
|
10331
|
+
const segment = segments === null || segments === void 0 ? void 0 : segments.getItem(i);
|
|
10465
10332
|
const svgPathSeg = window.SVGPathSeg;
|
|
10466
10333
|
|
|
10467
|
-
switch (segment.pathSegType) {
|
|
10334
|
+
switch (segment === null || segment === void 0 ? void 0 : segment.pathSegType) {
|
|
10468
10335
|
case svgPathSeg.PATHSEG_MOVETO_ABS:
|
|
10469
10336
|
case svgPathSeg.PATHSEG_LINETO_ABS:
|
|
10470
10337
|
case svgPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
|
|
@@ -10523,7 +10390,6 @@ function parsePaths(paths, scale, offset) {
|
|
|
10523
10390
|
|
|
10524
10391
|
return res;
|
|
10525
10392
|
}
|
|
10526
|
-
|
|
10527
10393
|
function calcClosestPtOnSegment(s1, s2, pos) {
|
|
10528
10394
|
const {
|
|
10529
10395
|
dx,
|
|
@@ -10533,7 +10399,7 @@ function calcClosestPtOnSegment(s1, s2, pos) {
|
|
|
10533
10399
|
dx: dxx,
|
|
10534
10400
|
dy: dyy
|
|
10535
10401
|
} = getDistances(s2, s1);
|
|
10536
|
-
const t = (dx * dxx + dy * dyy) / (
|
|
10402
|
+
const t = (dx * dxx + dy * dyy) / (dxx ** 2 + dyy ** 2);
|
|
10537
10403
|
let x = s1.x + dxx * t;
|
|
10538
10404
|
let y = s1.y + dyy * t;
|
|
10539
10405
|
|
|
@@ -10551,7 +10417,6 @@ function calcClosestPtOnSegment(s1, s2, pos) {
|
|
|
10551
10417
|
isOnSegment: t >= 0 && t <= 1
|
|
10552
10418
|
};
|
|
10553
10419
|
}
|
|
10554
|
-
|
|
10555
10420
|
function segmentBounce(start, stop, velocity) {
|
|
10556
10421
|
const {
|
|
10557
10422
|
dx,
|
|
@@ -10564,6 +10429,11 @@ function segmentBounce(start, stop, velocity) {
|
|
|
10564
10429
|
velocity.x -= d * wallNormalX;
|
|
10565
10430
|
velocity.y -= d * wallNormalY;
|
|
10566
10431
|
}
|
|
10432
|
+
;// CONCATENATED MODULE: ./dist/browser/Plugins/PolygonMask/PolygonMaskInstance.js
|
|
10433
|
+
|
|
10434
|
+
|
|
10435
|
+
|
|
10436
|
+
|
|
10567
10437
|
|
|
10568
10438
|
class PolygonMaskInstance {
|
|
10569
10439
|
constructor(container) {
|
|
@@ -10577,16 +10447,14 @@ class PolygonMaskInstance {
|
|
|
10577
10447
|
this.polygonMaskMoveRadius = this.options.move.radius * container.retina.pixelRatio;
|
|
10578
10448
|
}
|
|
10579
10449
|
|
|
10580
|
-
initAsync(options) {
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
|
|
10584
|
-
this.polygonMaskMoveRadius = polygonMaskOptions.move.radius * this.container.retina.pixelRatio;
|
|
10450
|
+
async initAsync(options) {
|
|
10451
|
+
this.options.load(options === null || options === void 0 ? void 0 : options.polygon);
|
|
10452
|
+
const polygonMaskOptions = this.options;
|
|
10453
|
+
this.polygonMaskMoveRadius = polygonMaskOptions.move.radius * this.container.retina.pixelRatio;
|
|
10585
10454
|
|
|
10586
|
-
|
|
10587
|
-
|
|
10588
|
-
|
|
10589
|
-
});
|
|
10455
|
+
if (polygonMaskOptions.enable) {
|
|
10456
|
+
await this.initRawData();
|
|
10457
|
+
}
|
|
10590
10458
|
}
|
|
10591
10459
|
|
|
10592
10460
|
resize() {
|
|
@@ -10601,10 +10469,10 @@ class PolygonMaskInstance {
|
|
|
10601
10469
|
clearTimeout(this.redrawTimeout);
|
|
10602
10470
|
}
|
|
10603
10471
|
|
|
10604
|
-
this.redrawTimeout = window.setTimeout(() =>
|
|
10605
|
-
|
|
10472
|
+
this.redrawTimeout = window.setTimeout(async () => {
|
|
10473
|
+
await this.initRawData(true);
|
|
10606
10474
|
container.particles.redraw();
|
|
10607
|
-
}
|
|
10475
|
+
}, 250);
|
|
10608
10476
|
}
|
|
10609
10477
|
|
|
10610
10478
|
stop() {
|
|
@@ -10676,7 +10544,7 @@ class PolygonMaskInstance {
|
|
|
10676
10544
|
}
|
|
10677
10545
|
}
|
|
10678
10546
|
|
|
10679
|
-
polygonBounce(particle,
|
|
10547
|
+
polygonBounce(particle, _delta, direction) {
|
|
10680
10548
|
const options = this.options;
|
|
10681
10549
|
|
|
10682
10550
|
if (!this.raw || !options.enable || direction !== OutModeDirection.top) {
|
|
@@ -10813,24 +10681,22 @@ class PolygonMaskInstance {
|
|
|
10813
10681
|
return parsePaths(this.paths, scale, this.offset);
|
|
10814
10682
|
}
|
|
10815
10683
|
|
|
10816
|
-
downloadSvgPath(svgUrl, force) {
|
|
10817
|
-
|
|
10818
|
-
|
|
10819
|
-
|
|
10820
|
-
const forceDownload = force !== null && force !== void 0 ? force : false;
|
|
10684
|
+
async downloadSvgPath(svgUrl, force) {
|
|
10685
|
+
const options = this.options;
|
|
10686
|
+
const url = svgUrl || options.url;
|
|
10687
|
+
const forceDownload = force !== null && force !== void 0 ? force : false;
|
|
10821
10688
|
|
|
10822
|
-
|
|
10823
|
-
|
|
10824
|
-
|
|
10689
|
+
if (!url || this.paths !== undefined && !forceDownload) {
|
|
10690
|
+
return this.raw;
|
|
10691
|
+
}
|
|
10825
10692
|
|
|
10826
|
-
|
|
10693
|
+
const req = await fetch(url);
|
|
10827
10694
|
|
|
10828
|
-
|
|
10829
|
-
|
|
10830
|
-
|
|
10695
|
+
if (!req.ok) {
|
|
10696
|
+
throw new Error("tsParticles Error - Error occurred during polygon mask download");
|
|
10697
|
+
}
|
|
10831
10698
|
|
|
10832
|
-
|
|
10833
|
-
});
|
|
10699
|
+
return this.parseSvgPath(await req.text(), force);
|
|
10834
10700
|
}
|
|
10835
10701
|
|
|
10836
10702
|
drawPoints() {
|
|
@@ -10999,29 +10865,27 @@ class PolygonMaskInstance {
|
|
|
10999
10865
|
}
|
|
11000
10866
|
}
|
|
11001
10867
|
|
|
11002
|
-
initRawData(force) {
|
|
11003
|
-
|
|
11004
|
-
const options = this.options;
|
|
11005
|
-
|
|
11006
|
-
if (options.url) {
|
|
11007
|
-
this.raw = yield this.downloadSvgPath(options.url, force);
|
|
11008
|
-
} else if (options.data) {
|
|
11009
|
-
const data = options.data;
|
|
11010
|
-
let svg;
|
|
10868
|
+
async initRawData(force) {
|
|
10869
|
+
const options = this.options;
|
|
11011
10870
|
|
|
11012
|
-
|
|
11013
|
-
|
|
11014
|
-
|
|
11015
|
-
|
|
11016
|
-
|
|
11017
|
-
svg = data;
|
|
11018
|
-
}
|
|
10871
|
+
if (options.url) {
|
|
10872
|
+
this.raw = await this.downloadSvgPath(options.url, force);
|
|
10873
|
+
} else if (options.data) {
|
|
10874
|
+
const data = options.data;
|
|
10875
|
+
let svg;
|
|
11019
10876
|
|
|
11020
|
-
|
|
10877
|
+
if (typeof data !== "string") {
|
|
10878
|
+
const path = data.path instanceof Array ? data.path.map(t => `<path d="${t}" />`).join("") : `<path d="${data.path}" />`;
|
|
10879
|
+
const namespaces = 'xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"';
|
|
10880
|
+
svg = `<svg ${namespaces} width="${data.size.width}" height="${data.size.height}">${path}</svg>`;
|
|
10881
|
+
} else {
|
|
10882
|
+
svg = data;
|
|
11021
10883
|
}
|
|
11022
10884
|
|
|
11023
|
-
this.
|
|
11024
|
-
}
|
|
10885
|
+
this.raw = this.parseSvgPath(svg, force);
|
|
10886
|
+
}
|
|
10887
|
+
|
|
10888
|
+
this.createPath2D();
|
|
11025
10889
|
}
|
|
11026
10890
|
|
|
11027
10891
|
}
|
|
@@ -11062,7 +10926,11 @@ class plugin_Plugin {
|
|
|
11062
10926
|
|
|
11063
10927
|
}
|
|
11064
10928
|
|
|
11065
|
-
function loadPolygonMaskPlugin(tsParticles) {
|
|
10929
|
+
async function loadPolygonMaskPlugin(tsParticles) {
|
|
10930
|
+
if (!window.SVGPathSeg) {
|
|
10931
|
+
await __webpack_require__.e(/* import() */ 167).then(__webpack_require__.t.bind(__webpack_require__, 167, 23));
|
|
10932
|
+
}
|
|
10933
|
+
|
|
11066
10934
|
const plugin = new plugin_Plugin();
|
|
11067
10935
|
tsParticles.addPlugin(plugin);
|
|
11068
10936
|
}
|
|
@@ -11083,38 +10951,6 @@ function loadCircleShape(tsParticles) {
|
|
|
11083
10951
|
tsParticles.addShape("circle", new CircleDrawer());
|
|
11084
10952
|
}
|
|
11085
10953
|
;// CONCATENATED MODULE: ./dist/browser/Shapes/Image/Utils.js
|
|
11086
|
-
var Utils_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
11087
|
-
function adopt(value) {
|
|
11088
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
11089
|
-
resolve(value);
|
|
11090
|
-
});
|
|
11091
|
-
}
|
|
11092
|
-
|
|
11093
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
11094
|
-
function fulfilled(value) {
|
|
11095
|
-
try {
|
|
11096
|
-
step(generator.next(value));
|
|
11097
|
-
} catch (e) {
|
|
11098
|
-
reject(e);
|
|
11099
|
-
}
|
|
11100
|
-
}
|
|
11101
|
-
|
|
11102
|
-
function rejected(value) {
|
|
11103
|
-
try {
|
|
11104
|
-
step(generator["throw"](value));
|
|
11105
|
-
} catch (e) {
|
|
11106
|
-
reject(e);
|
|
11107
|
-
}
|
|
11108
|
-
}
|
|
11109
|
-
|
|
11110
|
-
function step(result) {
|
|
11111
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
11112
|
-
}
|
|
11113
|
-
|
|
11114
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
11115
|
-
});
|
|
11116
|
-
};
|
|
11117
|
-
|
|
11118
10954
|
|
|
11119
10955
|
function loadImage(source) {
|
|
11120
10956
|
return new Promise((resolve, reject) => {
|
|
@@ -11138,30 +10974,28 @@ function loadImage(source) {
|
|
|
11138
10974
|
img.src = source;
|
|
11139
10975
|
});
|
|
11140
10976
|
}
|
|
11141
|
-
function downloadSvgImage(source) {
|
|
11142
|
-
|
|
11143
|
-
|
|
11144
|
-
|
|
11145
|
-
}
|
|
10977
|
+
async function downloadSvgImage(source) {
|
|
10978
|
+
if (!source) {
|
|
10979
|
+
throw new Error("Error tsParticles - No image.src");
|
|
10980
|
+
}
|
|
11146
10981
|
|
|
11147
|
-
|
|
11148
|
-
|
|
11149
|
-
|
|
11150
|
-
|
|
10982
|
+
const image = {
|
|
10983
|
+
source: source,
|
|
10984
|
+
type: source.substr(source.length - 3)
|
|
10985
|
+
};
|
|
11151
10986
|
|
|
11152
|
-
|
|
11153
|
-
|
|
11154
|
-
|
|
10987
|
+
if (image.type !== "svg") {
|
|
10988
|
+
return loadImage(source);
|
|
10989
|
+
}
|
|
11155
10990
|
|
|
11156
|
-
|
|
10991
|
+
const response = await fetch(image.source);
|
|
11157
10992
|
|
|
11158
|
-
|
|
11159
|
-
|
|
11160
|
-
|
|
10993
|
+
if (!response.ok) {
|
|
10994
|
+
throw new Error("Error tsParticles - Image not found");
|
|
10995
|
+
}
|
|
11161
10996
|
|
|
11162
|
-
|
|
11163
|
-
|
|
11164
|
-
});
|
|
10997
|
+
image.svgData = await response.text();
|
|
10998
|
+
return image;
|
|
11165
10999
|
}
|
|
11166
11000
|
function replaceColorSvg(imageShape, color, opacity) {
|
|
11167
11001
|
const {
|
|
@@ -11181,38 +11015,6 @@ function replaceColorSvg(imageShape, color, opacity) {
|
|
|
11181
11015
|
return `${svgData.substring(0, preFillIndex)} fill="${getStyleFromHsl(color, opacity)}"${svgData.substring(preFillIndex)}`;
|
|
11182
11016
|
}
|
|
11183
11017
|
;// CONCATENATED MODULE: ./dist/browser/Shapes/Image/ImageDrawer.js
|
|
11184
|
-
var ImageDrawer_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
11185
|
-
function adopt(value) {
|
|
11186
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
11187
|
-
resolve(value);
|
|
11188
|
-
});
|
|
11189
|
-
}
|
|
11190
|
-
|
|
11191
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
11192
|
-
function fulfilled(value) {
|
|
11193
|
-
try {
|
|
11194
|
-
step(generator.next(value));
|
|
11195
|
-
} catch (e) {
|
|
11196
|
-
reject(e);
|
|
11197
|
-
}
|
|
11198
|
-
}
|
|
11199
|
-
|
|
11200
|
-
function rejected(value) {
|
|
11201
|
-
try {
|
|
11202
|
-
step(generator["throw"](value));
|
|
11203
|
-
} catch (e) {
|
|
11204
|
-
reject(e);
|
|
11205
|
-
}
|
|
11206
|
-
}
|
|
11207
|
-
|
|
11208
|
-
function step(result) {
|
|
11209
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
11210
|
-
}
|
|
11211
|
-
|
|
11212
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
11213
|
-
});
|
|
11214
|
-
};
|
|
11215
|
-
|
|
11216
11018
|
var ImageDrawer_classPrivateFieldSet = undefined && undefined.__classPrivateFieldSet || function (receiver, state, value, kind, f) {
|
|
11217
11019
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
11218
11020
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
@@ -11262,97 +11064,91 @@ class ImageDrawer {
|
|
|
11262
11064
|
containerImages === null || containerImages === void 0 ? void 0 : containerImages.images.push(image);
|
|
11263
11065
|
}
|
|
11264
11066
|
|
|
11265
|
-
init(container) {
|
|
11266
|
-
|
|
11267
|
-
|
|
11268
|
-
yield this.loadImagesFromParticlesOptions(container, container.actualOptions.interactivity.modes.trail.particles);
|
|
11067
|
+
async init(container) {
|
|
11068
|
+
await this.loadImagesFromParticlesOptions(container, container.actualOptions.particles);
|
|
11069
|
+
await this.loadImagesFromParticlesOptions(container, container.actualOptions.interactivity.modes.trail.particles);
|
|
11269
11070
|
|
|
11270
|
-
|
|
11271
|
-
|
|
11272
|
-
|
|
11071
|
+
for (const manualParticle of container.actualOptions.manualParticles) {
|
|
11072
|
+
await this.loadImagesFromParticlesOptions(container, manualParticle.options);
|
|
11073
|
+
}
|
|
11273
11074
|
|
|
11274
|
-
|
|
11075
|
+
const emitterOptions = container.actualOptions;
|
|
11275
11076
|
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
}
|
|
11281
|
-
} else {
|
|
11282
|
-
yield this.loadImagesFromParticlesOptions(container, emitterOptions.emitters.particles);
|
|
11077
|
+
if (emitterOptions.emitters) {
|
|
11078
|
+
if (emitterOptions.emitters instanceof Array) {
|
|
11079
|
+
for (const emitter of emitterOptions.emitters) {
|
|
11080
|
+
await this.loadImagesFromParticlesOptions(container, emitter.particles);
|
|
11283
11081
|
}
|
|
11082
|
+
} else {
|
|
11083
|
+
await this.loadImagesFromParticlesOptions(container, emitterOptions.emitters.particles);
|
|
11284
11084
|
}
|
|
11085
|
+
}
|
|
11285
11086
|
|
|
11286
|
-
|
|
11087
|
+
const interactiveEmitters = emitterOptions.interactivity.modes.emitters;
|
|
11287
11088
|
|
|
11288
|
-
|
|
11289
|
-
|
|
11290
|
-
|
|
11291
|
-
|
|
11292
|
-
}
|
|
11293
|
-
} else {
|
|
11294
|
-
yield this.loadImagesFromParticlesOptions(container, interactiveEmitters.particles);
|
|
11089
|
+
if (interactiveEmitters) {
|
|
11090
|
+
if (interactiveEmitters instanceof Array) {
|
|
11091
|
+
for (const emitter of interactiveEmitters) {
|
|
11092
|
+
await this.loadImagesFromParticlesOptions(container, emitter.particles);
|
|
11295
11093
|
}
|
|
11094
|
+
} else {
|
|
11095
|
+
await this.loadImagesFromParticlesOptions(container, interactiveEmitters.particles);
|
|
11296
11096
|
}
|
|
11297
|
-
}
|
|
11097
|
+
}
|
|
11298
11098
|
}
|
|
11299
11099
|
|
|
11300
11100
|
destroy() {
|
|
11301
11101
|
ImageDrawer_classPrivateFieldSet(this, _ImageDrawer_images, [], "f");
|
|
11302
11102
|
}
|
|
11303
11103
|
|
|
11304
|
-
loadImagesFromParticlesOptions(container, options) {
|
|
11104
|
+
async loadImagesFromParticlesOptions(container, options) {
|
|
11305
11105
|
var _a, _b, _c;
|
|
11306
11106
|
|
|
11307
|
-
|
|
11308
|
-
const shapeOptions = options === null || options === void 0 ? void 0 : options.shape;
|
|
11107
|
+
const shapeOptions = options === null || options === void 0 ? void 0 : options.shape;
|
|
11309
11108
|
|
|
11310
|
-
|
|
11311
|
-
|
|
11312
|
-
|
|
11109
|
+
if (!(shapeOptions === null || shapeOptions === void 0 ? void 0 : shapeOptions.type) || !shapeOptions.options || !isInArray(ShapeType.image, shapeOptions.type) && !isInArray(ShapeType.images, shapeOptions.type)) {
|
|
11110
|
+
return;
|
|
11111
|
+
}
|
|
11313
11112
|
|
|
11314
|
-
|
|
11113
|
+
const idx = ImageDrawer_classPrivateFieldGet(this, _ImageDrawer_images, "f").findIndex(t => t.id === container.id);
|
|
11315
11114
|
|
|
11316
|
-
|
|
11317
|
-
|
|
11318
|
-
|
|
11115
|
+
if (idx >= 0) {
|
|
11116
|
+
ImageDrawer_classPrivateFieldGet(this, _ImageDrawer_images, "f").splice(idx, 1);
|
|
11117
|
+
}
|
|
11319
11118
|
|
|
11320
|
-
|
|
11119
|
+
const imageOptions = (_a = shapeOptions.options[ShapeType.images]) !== null && _a !== void 0 ? _a : shapeOptions.options[ShapeType.image];
|
|
11321
11120
|
|
|
11322
|
-
|
|
11323
|
-
|
|
11324
|
-
|
|
11325
|
-
}
|
|
11326
|
-
} else {
|
|
11327
|
-
yield this.loadImageShape(container, imageOptions);
|
|
11121
|
+
if (imageOptions instanceof Array) {
|
|
11122
|
+
for (const optionsImage of imageOptions) {
|
|
11123
|
+
await this.loadImageShape(container, optionsImage);
|
|
11328
11124
|
}
|
|
11125
|
+
} else {
|
|
11126
|
+
await this.loadImageShape(container, imageOptions);
|
|
11127
|
+
}
|
|
11329
11128
|
|
|
11330
|
-
|
|
11331
|
-
|
|
11332
|
-
|
|
11333
|
-
|
|
11334
|
-
}
|
|
11129
|
+
if (options === null || options === void 0 ? void 0 : options.groups) {
|
|
11130
|
+
for (const groupName in options.groups) {
|
|
11131
|
+
const group = options.groups[groupName];
|
|
11132
|
+
await this.loadImagesFromParticlesOptions(container, group);
|
|
11335
11133
|
}
|
|
11134
|
+
}
|
|
11336
11135
|
|
|
11337
|
-
|
|
11338
|
-
|
|
11339
|
-
|
|
11340
|
-
});
|
|
11136
|
+
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) {
|
|
11137
|
+
await this.loadImagesFromParticlesOptions(container, options === null || options === void 0 ? void 0 : options.destroy.split.particles);
|
|
11138
|
+
}
|
|
11341
11139
|
}
|
|
11342
11140
|
|
|
11343
|
-
loadImageShape(container, imageShape) {
|
|
11344
|
-
|
|
11345
|
-
|
|
11346
|
-
|
|
11347
|
-
const image = yield imageFunc(imageShape.src);
|
|
11141
|
+
async loadImageShape(container, imageShape) {
|
|
11142
|
+
try {
|
|
11143
|
+
const imageFunc = imageShape.replaceColor ? downloadSvgImage : loadImage;
|
|
11144
|
+
const image = await imageFunc(imageShape.src);
|
|
11348
11145
|
|
|
11349
|
-
|
|
11350
|
-
|
|
11351
|
-
}
|
|
11352
|
-
} catch (_a) {
|
|
11353
|
-
console.warn(`tsParticles error - ${imageShape.src} not found`);
|
|
11146
|
+
if (image) {
|
|
11147
|
+
this.addImage(container, image);
|
|
11354
11148
|
}
|
|
11355
|
-
})
|
|
11149
|
+
} catch (_a) {
|
|
11150
|
+
console.warn(`tsParticles error - ${imageShape.src} not found`);
|
|
11151
|
+
}
|
|
11356
11152
|
}
|
|
11357
11153
|
|
|
11358
11154
|
draw(context, particle, radius, opacity) {
|
|
@@ -11387,7 +11183,7 @@ class ImageDrawer {
|
|
|
11387
11183
|
}
|
|
11388
11184
|
|
|
11389
11185
|
loadShape(particle) {
|
|
11390
|
-
var _a, _b, _c, _d, _e;
|
|
11186
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
11391
11187
|
|
|
11392
11188
|
if (particle.shape !== "image" && particle.shape !== "images") {
|
|
11393
11189
|
return;
|
|
@@ -11404,7 +11200,7 @@ class ImageDrawer {
|
|
|
11404
11200
|
}
|
|
11405
11201
|
|
|
11406
11202
|
if (image.svgData !== undefined && imageData.replaceColor && color) {
|
|
11407
|
-
const svgColoredData = replaceColorSvg(image, color, particle.opacity.value);
|
|
11203
|
+
const svgColoredData = replaceColorSvg(image, color, (_c = (_b = particle.opacity) === null || _b === void 0 ? void 0 : _b.value) !== null && _c !== void 0 ? _c : 1);
|
|
11408
11204
|
const svg = new Blob([svgColoredData], {
|
|
11409
11205
|
type: "image/svg+xml"
|
|
11410
11206
|
});
|
|
@@ -11416,7 +11212,7 @@ class ImageDrawer {
|
|
|
11416
11212
|
svgData: svgColoredData
|
|
11417
11213
|
}),
|
|
11418
11214
|
ratio: imageData.width / imageData.height,
|
|
11419
|
-
replaceColor: (
|
|
11215
|
+
replaceColor: (_d = imageData.replaceColor) !== null && _d !== void 0 ? _d : imageData.replace_color,
|
|
11420
11216
|
source: imageData.src
|
|
11421
11217
|
};
|
|
11422
11218
|
img.addEventListener("load", () => {
|
|
@@ -11446,7 +11242,7 @@ class ImageDrawer {
|
|
|
11446
11242
|
data: image,
|
|
11447
11243
|
loaded: true,
|
|
11448
11244
|
ratio: imageData.width / imageData.height,
|
|
11449
|
-
replaceColor: (
|
|
11245
|
+
replaceColor: (_e = imageData.replaceColor) !== null && _e !== void 0 ? _e : imageData.replace_color,
|
|
11450
11246
|
source: imageData.src
|
|
11451
11247
|
};
|
|
11452
11248
|
}
|
|
@@ -11455,8 +11251,8 @@ class ImageDrawer {
|
|
|
11455
11251
|
imageRes.ratio = 1;
|
|
11456
11252
|
}
|
|
11457
11253
|
|
|
11458
|
-
const fill = (
|
|
11459
|
-
const close = (
|
|
11254
|
+
const fill = (_f = imageData.fill) !== null && _f !== void 0 ? _f : particle.fill;
|
|
11255
|
+
const close = (_g = imageData.close) !== null && _g !== void 0 ? _g : particle.close;
|
|
11460
11256
|
const imageShape = {
|
|
11461
11257
|
image: imageRes,
|
|
11462
11258
|
fill,
|
|
@@ -11641,38 +11437,6 @@ function loadStarShape(tsParticles) {
|
|
|
11641
11437
|
tsParticles.addShape("star", new StarDrawer());
|
|
11642
11438
|
}
|
|
11643
11439
|
;// CONCATENATED MODULE: ./dist/browser/Shapes/Text/TextDrawer.js
|
|
11644
|
-
var TextDrawer_awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
11645
|
-
function adopt(value) {
|
|
11646
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
11647
|
-
resolve(value);
|
|
11648
|
-
});
|
|
11649
|
-
}
|
|
11650
|
-
|
|
11651
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
11652
|
-
function fulfilled(value) {
|
|
11653
|
-
try {
|
|
11654
|
-
step(generator.next(value));
|
|
11655
|
-
} catch (e) {
|
|
11656
|
-
reject(e);
|
|
11657
|
-
}
|
|
11658
|
-
}
|
|
11659
|
-
|
|
11660
|
-
function rejected(value) {
|
|
11661
|
-
try {
|
|
11662
|
-
step(generator["throw"](value));
|
|
11663
|
-
} catch (e) {
|
|
11664
|
-
reject(e);
|
|
11665
|
-
}
|
|
11666
|
-
}
|
|
11667
|
-
|
|
11668
|
-
function step(result) {
|
|
11669
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
11670
|
-
}
|
|
11671
|
-
|
|
11672
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
11673
|
-
});
|
|
11674
|
-
};
|
|
11675
|
-
|
|
11676
11440
|
|
|
11677
11441
|
const validTypes = ["text", "character", "char"];
|
|
11678
11442
|
class TextDrawer {
|
|
@@ -11680,28 +11444,26 @@ class TextDrawer {
|
|
|
11680
11444
|
return 12;
|
|
11681
11445
|
}
|
|
11682
11446
|
|
|
11683
|
-
init(container) {
|
|
11684
|
-
|
|
11685
|
-
const options = container.actualOptions;
|
|
11447
|
+
async init(container) {
|
|
11448
|
+
const options = container.actualOptions;
|
|
11686
11449
|
|
|
11687
|
-
|
|
11688
|
-
|
|
11450
|
+
if (validTypes.find(t => isInArray(t, options.particles.shape.type))) {
|
|
11451
|
+
const shapeOptions = validTypes.map(t => options.particles.shape.options[t]).find(t => !!t);
|
|
11689
11452
|
|
|
11690
|
-
|
|
11691
|
-
|
|
11453
|
+
if (shapeOptions instanceof Array) {
|
|
11454
|
+
const promises = [];
|
|
11692
11455
|
|
|
11693
|
-
|
|
11694
|
-
|
|
11695
|
-
|
|
11456
|
+
for (const character of shapeOptions) {
|
|
11457
|
+
promises.push(loadFont(character));
|
|
11458
|
+
}
|
|
11696
11459
|
|
|
11697
|
-
|
|
11698
|
-
|
|
11699
|
-
|
|
11700
|
-
|
|
11701
|
-
}
|
|
11460
|
+
await Promise.allSettled(promises);
|
|
11461
|
+
} else {
|
|
11462
|
+
if (shapeOptions !== undefined) {
|
|
11463
|
+
await loadFont(shapeOptions);
|
|
11702
11464
|
}
|
|
11703
11465
|
}
|
|
11704
|
-
}
|
|
11466
|
+
}
|
|
11705
11467
|
}
|
|
11706
11468
|
|
|
11707
11469
|
draw(context, particle, radius, opacity) {
|
|
@@ -11761,34 +11523,41 @@ function loadTextShape(tsParticles) {
|
|
|
11761
11523
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Angle/AngleUpdater.js
|
|
11762
11524
|
|
|
11763
11525
|
|
|
11526
|
+
|
|
11764
11527
|
function updateAngle(particle, delta) {
|
|
11765
11528
|
var _a;
|
|
11766
11529
|
|
|
11767
|
-
const rotate = particle.
|
|
11768
|
-
|
|
11769
|
-
|
|
11530
|
+
const rotate = particle.rotate;
|
|
11531
|
+
|
|
11532
|
+
if (!rotate) {
|
|
11533
|
+
return;
|
|
11534
|
+
}
|
|
11535
|
+
|
|
11536
|
+
const rotateOptions = particle.options.rotate;
|
|
11537
|
+
const rotateAnimation = rotateOptions.animation;
|
|
11538
|
+
const speed = ((_a = rotate.velocity) !== null && _a !== void 0 ? _a : 0) * delta.factor;
|
|
11770
11539
|
const max = 2 * Math.PI;
|
|
11771
11540
|
|
|
11772
11541
|
if (!rotateAnimation.enable) {
|
|
11773
11542
|
return;
|
|
11774
11543
|
}
|
|
11775
11544
|
|
|
11776
|
-
switch (
|
|
11545
|
+
switch (rotate.status) {
|
|
11777
11546
|
case AnimationStatus.increasing:
|
|
11778
|
-
|
|
11547
|
+
rotate.value += speed;
|
|
11779
11548
|
|
|
11780
|
-
if (
|
|
11781
|
-
|
|
11549
|
+
if (rotate.value > max) {
|
|
11550
|
+
rotate.value -= max;
|
|
11782
11551
|
}
|
|
11783
11552
|
|
|
11784
11553
|
break;
|
|
11785
11554
|
|
|
11786
11555
|
case AnimationStatus.decreasing:
|
|
11787
11556
|
default:
|
|
11788
|
-
|
|
11557
|
+
rotate.value -= speed;
|
|
11789
11558
|
|
|
11790
|
-
if (
|
|
11791
|
-
|
|
11559
|
+
if (rotate.value < 0) {
|
|
11560
|
+
rotate.value += max;
|
|
11792
11561
|
}
|
|
11793
11562
|
|
|
11794
11563
|
break;
|
|
@@ -11796,6 +11565,45 @@ function updateAngle(particle, delta) {
|
|
|
11796
11565
|
}
|
|
11797
11566
|
|
|
11798
11567
|
class AngleUpdater {
|
|
11568
|
+
constructor(container) {
|
|
11569
|
+
this.container = container;
|
|
11570
|
+
}
|
|
11571
|
+
|
|
11572
|
+
init(particle) {
|
|
11573
|
+
const rotateOptions = particle.options.rotate;
|
|
11574
|
+
particle.rotate = {
|
|
11575
|
+
enable: rotateOptions.animation.enable,
|
|
11576
|
+
value: getRangeValue(rotateOptions.value) * Math.PI / 180
|
|
11577
|
+
};
|
|
11578
|
+
let rotateDirection = rotateOptions.direction;
|
|
11579
|
+
|
|
11580
|
+
if (rotateDirection === RotateDirection.random) {
|
|
11581
|
+
const index = Math.floor(Math.random() * 2);
|
|
11582
|
+
rotateDirection = index > 0 ? RotateDirection.counterClockwise : RotateDirection.clockwise;
|
|
11583
|
+
}
|
|
11584
|
+
|
|
11585
|
+
switch (rotateDirection) {
|
|
11586
|
+
case RotateDirection.counterClockwise:
|
|
11587
|
+
case "counterClockwise":
|
|
11588
|
+
particle.rotate.status = AnimationStatus.decreasing;
|
|
11589
|
+
break;
|
|
11590
|
+
|
|
11591
|
+
case RotateDirection.clockwise:
|
|
11592
|
+
particle.rotate.status = AnimationStatus.increasing;
|
|
11593
|
+
break;
|
|
11594
|
+
}
|
|
11595
|
+
|
|
11596
|
+
const rotateAnimation = particle.options.rotate.animation;
|
|
11597
|
+
|
|
11598
|
+
if (rotateAnimation.enable) {
|
|
11599
|
+
particle.rotate.velocity = rotateAnimation.speed / 360 * this.container.retina.reduceFactor;
|
|
11600
|
+
|
|
11601
|
+
if (!rotateAnimation.sync) {
|
|
11602
|
+
particle.rotate.velocity *= Math.random();
|
|
11603
|
+
}
|
|
11604
|
+
}
|
|
11605
|
+
}
|
|
11606
|
+
|
|
11799
11607
|
isEnabled(particle) {
|
|
11800
11608
|
const rotate = particle.options.rotate;
|
|
11801
11609
|
const rotateAnimation = rotate.animation;
|
|
@@ -11814,7 +11622,7 @@ class AngleUpdater {
|
|
|
11814
11622
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Angle/index.js
|
|
11815
11623
|
|
|
11816
11624
|
function loadAngleUpdater(tsParticles) {
|
|
11817
|
-
tsParticles.addParticleUpdater("angle",
|
|
11625
|
+
tsParticles.addParticleUpdater("angle", container => new AngleUpdater(container));
|
|
11818
11626
|
}
|
|
11819
11627
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Color/ColorUpdater.js
|
|
11820
11628
|
|
|
@@ -11872,6 +11680,18 @@ function updateColor(particle, delta) {
|
|
|
11872
11680
|
}
|
|
11873
11681
|
|
|
11874
11682
|
class ColorUpdater {
|
|
11683
|
+
constructor(container) {
|
|
11684
|
+
this.container = container;
|
|
11685
|
+
}
|
|
11686
|
+
|
|
11687
|
+
init(particle) {
|
|
11688
|
+
const hslColor = colorToHsl(particle.options.color, particle.id, particle.options.reduceDuplicates);
|
|
11689
|
+
|
|
11690
|
+
if (hslColor) {
|
|
11691
|
+
particle.color = getHslAnimationFromHsl(hslColor, particle.options.color.animation, this.container.retina.reduceFactor);
|
|
11692
|
+
}
|
|
11693
|
+
}
|
|
11694
|
+
|
|
11875
11695
|
isEnabled(particle) {
|
|
11876
11696
|
var _a, _b, _c;
|
|
11877
11697
|
|
|
@@ -11887,7 +11707,7 @@ class ColorUpdater {
|
|
|
11887
11707
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Color/index.js
|
|
11888
11708
|
|
|
11889
11709
|
function loadColorUpdater(tsParticles) {
|
|
11890
|
-
tsParticles.addParticleUpdater("color",
|
|
11710
|
+
tsParticles.addParticleUpdater("color", container => new ColorUpdater(container));
|
|
11891
11711
|
}
|
|
11892
11712
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Life/LifeUpdater.js
|
|
11893
11713
|
|
|
@@ -11896,6 +11716,8 @@ class LifeUpdater {
|
|
|
11896
11716
|
this.container = container;
|
|
11897
11717
|
}
|
|
11898
11718
|
|
|
11719
|
+
init() {}
|
|
11720
|
+
|
|
11899
11721
|
isEnabled(particle) {
|
|
11900
11722
|
return !particle.destroyed;
|
|
11901
11723
|
}
|
|
@@ -11995,6 +11817,10 @@ function checkDestroy(particle, value, minValue, maxValue) {
|
|
|
11995
11817
|
function updateOpacity(particle, delta) {
|
|
11996
11818
|
var _a, _b, _c, _d, _e;
|
|
11997
11819
|
|
|
11820
|
+
if (!particle.opacity) {
|
|
11821
|
+
return;
|
|
11822
|
+
}
|
|
11823
|
+
|
|
11998
11824
|
const minValue = particle.opacity.min;
|
|
11999
11825
|
const maxValue = particle.opacity.max;
|
|
12000
11826
|
|
|
@@ -12042,10 +11868,58 @@ function updateOpacity(particle, delta) {
|
|
|
12042
11868
|
}
|
|
12043
11869
|
|
|
12044
11870
|
class OpacityUpdater {
|
|
11871
|
+
constructor(container) {
|
|
11872
|
+
this.container = container;
|
|
11873
|
+
}
|
|
11874
|
+
|
|
11875
|
+
init(particle) {
|
|
11876
|
+
const opacityOptions = particle.options.opacity;
|
|
11877
|
+
particle.opacity = {
|
|
11878
|
+
enable: opacityOptions.animation.enable,
|
|
11879
|
+
max: getRangeMax(opacityOptions.value),
|
|
11880
|
+
min: getRangeMin(opacityOptions.value),
|
|
11881
|
+
value: getRangeValue(opacityOptions.value),
|
|
11882
|
+
loops: 0,
|
|
11883
|
+
maxLoops: opacityOptions.animation.count
|
|
11884
|
+
};
|
|
11885
|
+
const opacityAnimation = opacityOptions.animation;
|
|
11886
|
+
|
|
11887
|
+
if (opacityAnimation.enable) {
|
|
11888
|
+
particle.opacity.status = AnimationStatus.increasing;
|
|
11889
|
+
const opacityRange = opacityOptions.value;
|
|
11890
|
+
particle.opacity.min = getRangeMin(opacityRange);
|
|
11891
|
+
particle.opacity.max = getRangeMax(opacityRange);
|
|
11892
|
+
|
|
11893
|
+
switch (opacityAnimation.startValue) {
|
|
11894
|
+
case StartValueType.min:
|
|
11895
|
+
particle.opacity.value = particle.opacity.min;
|
|
11896
|
+
particle.opacity.status = AnimationStatus.increasing;
|
|
11897
|
+
break;
|
|
11898
|
+
|
|
11899
|
+
case StartValueType.random:
|
|
11900
|
+
particle.opacity.value = randomInRange(particle.opacity);
|
|
11901
|
+
particle.opacity.status = Math.random() >= 0.5 ? AnimationStatus.increasing : AnimationStatus.decreasing;
|
|
11902
|
+
break;
|
|
11903
|
+
|
|
11904
|
+
case StartValueType.max:
|
|
11905
|
+
default:
|
|
11906
|
+
particle.opacity.value = particle.opacity.max;
|
|
11907
|
+
particle.opacity.status = AnimationStatus.decreasing;
|
|
11908
|
+
break;
|
|
11909
|
+
}
|
|
11910
|
+
|
|
11911
|
+
particle.opacity.velocity = opacityAnimation.speed / 100 * this.container.retina.reduceFactor;
|
|
11912
|
+
|
|
11913
|
+
if (!opacityAnimation.sync) {
|
|
11914
|
+
particle.opacity.velocity *= Math.random();
|
|
11915
|
+
}
|
|
11916
|
+
}
|
|
11917
|
+
}
|
|
11918
|
+
|
|
12045
11919
|
isEnabled(particle) {
|
|
12046
11920
|
var _a, _b, _c;
|
|
12047
11921
|
|
|
12048
|
-
return !particle.destroyed && !particle.spawning && particle.opacity.enable && (((_a = particle.opacity.maxLoops) !== null && _a !== void 0 ? _a : 0) <= 0 || ((_b = particle.opacity.loops) !== null && _b !== void 0 ? _b : 0) < ((_c = particle.opacity.maxLoops) !== null && _c !== void 0 ? _c : 0));
|
|
11922
|
+
return !particle.destroyed && !particle.spawning && !!particle.opacity && particle.opacity.enable && (((_a = particle.opacity.maxLoops) !== null && _a !== void 0 ? _a : 0) <= 0 || ((_b = particle.opacity.loops) !== null && _b !== void 0 ? _b : 0) < ((_c = particle.opacity.maxLoops) !== null && _c !== void 0 ? _c : 0));
|
|
12049
11923
|
}
|
|
12050
11924
|
|
|
12051
11925
|
update(particle, delta) {
|
|
@@ -12060,7 +11934,7 @@ class OpacityUpdater {
|
|
|
12060
11934
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Opacity/index.js
|
|
12061
11935
|
|
|
12062
11936
|
function loadOpacityUpdater(tsParticles) {
|
|
12063
|
-
tsParticles.addParticleUpdater("opacity",
|
|
11937
|
+
tsParticles.addParticleUpdater("opacity", container => new OpacityUpdater(container));
|
|
12064
11938
|
}
|
|
12065
11939
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Size/SizeUpdater.js
|
|
12066
11940
|
|
|
@@ -12134,6 +12008,8 @@ function updateSize(particle, delta) {
|
|
|
12134
12008
|
}
|
|
12135
12009
|
|
|
12136
12010
|
class SizeUpdater {
|
|
12011
|
+
init() {}
|
|
12012
|
+
|
|
12137
12013
|
isEnabled(particle) {
|
|
12138
12014
|
var _a, _b, _c;
|
|
12139
12015
|
|
|
@@ -12192,26 +12068,26 @@ function StrokeColorUpdater_updateColorValue(delta, value, valueAnimation, max,
|
|
|
12192
12068
|
}
|
|
12193
12069
|
|
|
12194
12070
|
function updateStrokeColor(particle, delta) {
|
|
12195
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
12071
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
12196
12072
|
|
|
12197
|
-
if (!particle.stroke.color) {
|
|
12073
|
+
if (!((_a = particle.stroke) === null || _a === void 0 ? void 0 : _a.color)) {
|
|
12198
12074
|
return;
|
|
12199
12075
|
}
|
|
12200
12076
|
|
|
12201
12077
|
const animationOptions = particle.stroke.color.animation;
|
|
12202
|
-
const h = (
|
|
12078
|
+
const h = (_c = (_b = particle.strokeColor) === null || _b === void 0 ? void 0 : _b.h) !== null && _c !== void 0 ? _c : (_d = particle.color) === null || _d === void 0 ? void 0 : _d.h;
|
|
12203
12079
|
|
|
12204
12080
|
if (h) {
|
|
12205
12081
|
StrokeColorUpdater_updateColorValue(delta, h, animationOptions.h, 360, false);
|
|
12206
12082
|
}
|
|
12207
12083
|
|
|
12208
|
-
const s = (
|
|
12084
|
+
const s = (_f = (_e = particle.strokeColor) === null || _e === void 0 ? void 0 : _e.s) !== null && _f !== void 0 ? _f : (_g = particle.color) === null || _g === void 0 ? void 0 : _g.s;
|
|
12209
12085
|
|
|
12210
12086
|
if (s) {
|
|
12211
12087
|
StrokeColorUpdater_updateColorValue(delta, s, animationOptions.s, 100, true);
|
|
12212
12088
|
}
|
|
12213
12089
|
|
|
12214
|
-
const l = (
|
|
12090
|
+
const l = (_j = (_h = particle.strokeColor) === null || _h === void 0 ? void 0 : _h.l) !== null && _j !== void 0 ? _j : (_k = particle.color) === null || _k === void 0 ? void 0 : _k.l;
|
|
12215
12091
|
|
|
12216
12092
|
if (l) {
|
|
12217
12093
|
StrokeColorUpdater_updateColorValue(delta, l, animationOptions.l, 100, true);
|
|
@@ -12219,11 +12095,28 @@ function updateStrokeColor(particle, delta) {
|
|
|
12219
12095
|
}
|
|
12220
12096
|
|
|
12221
12097
|
class StrokeColorUpdater {
|
|
12098
|
+
constructor(container) {
|
|
12099
|
+
this.container = container;
|
|
12100
|
+
}
|
|
12101
|
+
|
|
12102
|
+
init(particle) {
|
|
12103
|
+
var _a, _b;
|
|
12104
|
+
|
|
12105
|
+
const container = this.container;
|
|
12106
|
+
particle.stroke = particle.options.stroke instanceof Array ? itemFromArray(particle.options.stroke, particle.id, particle.options.reduceDuplicates) : particle.options.stroke;
|
|
12107
|
+
particle.strokeWidth = particle.stroke.width * container.retina.pixelRatio;
|
|
12108
|
+
const strokeHslColor = (_a = colorToHsl(particle.stroke.color)) !== null && _a !== void 0 ? _a : particle.getFillColor();
|
|
12109
|
+
|
|
12110
|
+
if (strokeHslColor) {
|
|
12111
|
+
particle.strokeColor = getHslAnimationFromHsl(strokeHslColor, (_b = particle.stroke.color) === null || _b === void 0 ? void 0 : _b.animation, container.retina.reduceFactor);
|
|
12112
|
+
}
|
|
12113
|
+
}
|
|
12114
|
+
|
|
12222
12115
|
isEnabled(particle) {
|
|
12223
|
-
var _a, _b, _c;
|
|
12116
|
+
var _a, _b, _c, _d;
|
|
12224
12117
|
|
|
12225
|
-
const color = particle.stroke.color;
|
|
12226
|
-
return !particle.destroyed && !particle.spawning && color
|
|
12118
|
+
const color = (_a = particle.stroke) === null || _a === void 0 ? void 0 : _a.color;
|
|
12119
|
+
return !particle.destroyed && !particle.spawning && !!color && (((_b = particle.strokeColor) === null || _b === void 0 ? void 0 : _b.h.value) !== undefined && color.animation.h.enable || ((_c = particle.strokeColor) === null || _c === void 0 ? void 0 : _c.s.value) !== undefined && color.animation.s.enable || ((_d = particle.strokeColor) === null || _d === void 0 ? void 0 : _d.l.value) !== undefined && color.animation.l.enable);
|
|
12227
12120
|
}
|
|
12228
12121
|
|
|
12229
12122
|
update(particle, delta) {
|
|
@@ -12238,7 +12131,7 @@ class StrokeColorUpdater {
|
|
|
12238
12131
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/StrokeColor/index.js
|
|
12239
12132
|
|
|
12240
12133
|
function loadStrokeColorUpdater(tsParticles) {
|
|
12241
|
-
tsParticles.addParticleUpdater("strokeColor",
|
|
12134
|
+
tsParticles.addParticleUpdater("strokeColor", container => new StrokeColorUpdater(container));
|
|
12242
12135
|
}
|
|
12243
12136
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/OutModes/Utils.js
|
|
12244
12137
|
|
|
@@ -12310,6 +12203,8 @@ class OutOfCanvasUpdater {
|
|
|
12310
12203
|
this.container = container;
|
|
12311
12204
|
}
|
|
12312
12205
|
|
|
12206
|
+
init() {}
|
|
12207
|
+
|
|
12313
12208
|
isEnabled(particle) {
|
|
12314
12209
|
return !particle.destroyed && !particle.spawning;
|
|
12315
12210
|
}
|
|
@@ -12492,23 +12387,62 @@ function loadOutModesUpdater(tsParticles) {
|
|
|
12492
12387
|
tsParticles.addParticleUpdater("outModes", container => new OutOfCanvasUpdater(container));
|
|
12493
12388
|
}
|
|
12494
12389
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Roll/RollUpdater.js
|
|
12390
|
+
|
|
12391
|
+
|
|
12392
|
+
|
|
12495
12393
|
function updateRoll(particle, delta) {
|
|
12496
12394
|
const roll = particle.options.roll;
|
|
12497
|
-
const speed = particle.rollSpeed * delta.factor;
|
|
12498
|
-
const max = 2 * Math.PI;
|
|
12499
12395
|
|
|
12500
|
-
if (!roll.enable) {
|
|
12396
|
+
if (!particle.roll || !roll.enable) {
|
|
12501
12397
|
return;
|
|
12502
12398
|
}
|
|
12503
12399
|
|
|
12504
|
-
particle.
|
|
12400
|
+
const speed = particle.roll.speed * delta.factor;
|
|
12401
|
+
const max = 2 * Math.PI;
|
|
12402
|
+
particle.roll.angle += speed;
|
|
12505
12403
|
|
|
12506
|
-
if (particle.
|
|
12507
|
-
particle.
|
|
12404
|
+
if (particle.roll.angle > max) {
|
|
12405
|
+
particle.roll.angle -= max;
|
|
12508
12406
|
}
|
|
12509
12407
|
}
|
|
12510
12408
|
|
|
12511
12409
|
class RollUpdater {
|
|
12410
|
+
init(particle) {
|
|
12411
|
+
const rollOpt = particle.options.roll;
|
|
12412
|
+
|
|
12413
|
+
if (rollOpt.enable) {
|
|
12414
|
+
particle.roll = {
|
|
12415
|
+
angle: Math.random() * Math.PI * 2,
|
|
12416
|
+
speed: getRangeValue(rollOpt.speed) / 360
|
|
12417
|
+
};
|
|
12418
|
+
|
|
12419
|
+
if (rollOpt.backColor) {
|
|
12420
|
+
particle.backColor = colorToHsl(rollOpt.backColor);
|
|
12421
|
+
} else if (rollOpt.darken.enable && rollOpt.enlighten.enable) {
|
|
12422
|
+
const alterType = Math.random() >= 0.5 ? AlterType.darken : AlterType.enlighten;
|
|
12423
|
+
particle.roll.alter = {
|
|
12424
|
+
type: alterType,
|
|
12425
|
+
value: alterType === AlterType.darken ? rollOpt.darken.value : rollOpt.enlighten.value
|
|
12426
|
+
};
|
|
12427
|
+
} else if (rollOpt.darken.enable) {
|
|
12428
|
+
particle.roll.alter = {
|
|
12429
|
+
type: AlterType.darken,
|
|
12430
|
+
value: rollOpt.darken.value
|
|
12431
|
+
};
|
|
12432
|
+
} else if (rollOpt.enlighten.enable) {
|
|
12433
|
+
particle.roll.alter = {
|
|
12434
|
+
type: AlterType.enlighten,
|
|
12435
|
+
value: rollOpt.enlighten.value
|
|
12436
|
+
};
|
|
12437
|
+
}
|
|
12438
|
+
} else {
|
|
12439
|
+
particle.roll = {
|
|
12440
|
+
angle: 0,
|
|
12441
|
+
speed: 0
|
|
12442
|
+
};
|
|
12443
|
+
}
|
|
12444
|
+
}
|
|
12445
|
+
|
|
12512
12446
|
isEnabled(particle) {
|
|
12513
12447
|
const roll = particle.options.roll;
|
|
12514
12448
|
return !particle.destroyed && !particle.spawning && roll.enable;
|
|
@@ -12531,9 +12465,14 @@ function loadRollUpdater(tsParticles) {
|
|
|
12531
12465
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Tilt/TiltUpdater.js
|
|
12532
12466
|
|
|
12533
12467
|
|
|
12468
|
+
|
|
12534
12469
|
function updateTilt(particle, delta) {
|
|
12535
12470
|
var _a;
|
|
12536
12471
|
|
|
12472
|
+
if (!particle.tilt) {
|
|
12473
|
+
return;
|
|
12474
|
+
}
|
|
12475
|
+
|
|
12537
12476
|
const tilt = particle.options.tilt;
|
|
12538
12477
|
const tiltAnimation = tilt.animation;
|
|
12539
12478
|
const speed = ((_a = particle.tilt.velocity) !== null && _a !== void 0 ? _a : 0) * delta.factor;
|
|
@@ -12566,6 +12505,47 @@ function updateTilt(particle, delta) {
|
|
|
12566
12505
|
}
|
|
12567
12506
|
|
|
12568
12507
|
class TiltUpdater {
|
|
12508
|
+
constructor(container) {
|
|
12509
|
+
this.container = container;
|
|
12510
|
+
}
|
|
12511
|
+
|
|
12512
|
+
init(particle) {
|
|
12513
|
+
const tiltOptions = particle.options.tilt;
|
|
12514
|
+
particle.tilt = {
|
|
12515
|
+
enable: tiltOptions.enable,
|
|
12516
|
+
value: getRangeValue(tiltOptions.value) * Math.PI / 180,
|
|
12517
|
+
sinDirection: Math.random() >= 0.5 ? 1 : -1,
|
|
12518
|
+
cosDirection: Math.random() >= 0.5 ? 1 : -1
|
|
12519
|
+
};
|
|
12520
|
+
let tiltDirection = tiltOptions.direction;
|
|
12521
|
+
|
|
12522
|
+
if (tiltDirection === TiltDirection.random) {
|
|
12523
|
+
const index = Math.floor(Math.random() * 2);
|
|
12524
|
+
tiltDirection = index > 0 ? TiltDirection.counterClockwise : TiltDirection.clockwise;
|
|
12525
|
+
}
|
|
12526
|
+
|
|
12527
|
+
switch (tiltDirection) {
|
|
12528
|
+
case TiltDirection.counterClockwise:
|
|
12529
|
+
case "counterClockwise":
|
|
12530
|
+
particle.tilt.status = AnimationStatus.decreasing;
|
|
12531
|
+
break;
|
|
12532
|
+
|
|
12533
|
+
case TiltDirection.clockwise:
|
|
12534
|
+
particle.tilt.status = AnimationStatus.increasing;
|
|
12535
|
+
break;
|
|
12536
|
+
}
|
|
12537
|
+
|
|
12538
|
+
const tiltAnimation = particle.options.tilt.animation;
|
|
12539
|
+
|
|
12540
|
+
if (tiltAnimation.enable) {
|
|
12541
|
+
particle.tilt.velocity = tiltAnimation.speed / 360 * this.container.retina.reduceFactor;
|
|
12542
|
+
|
|
12543
|
+
if (!tiltAnimation.sync) {
|
|
12544
|
+
particle.tilt.velocity *= Math.random();
|
|
12545
|
+
}
|
|
12546
|
+
}
|
|
12547
|
+
}
|
|
12548
|
+
|
|
12569
12549
|
isEnabled(particle) {
|
|
12570
12550
|
const tilt = particle.options.tilt;
|
|
12571
12551
|
const tiltAnimation = tilt.animation;
|
|
@@ -12584,33 +12564,58 @@ class TiltUpdater {
|
|
|
12584
12564
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Tilt/index.js
|
|
12585
12565
|
|
|
12586
12566
|
function loadTiltUpdater(tsParticles) {
|
|
12587
|
-
tsParticles.addParticleUpdater("tilt",
|
|
12567
|
+
tsParticles.addParticleUpdater("tilt", container => new TiltUpdater(container));
|
|
12588
12568
|
}
|
|
12589
12569
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Wobble/WobbleUpdater.js
|
|
12570
|
+
|
|
12571
|
+
|
|
12590
12572
|
function updateWobble(particle, delta) {
|
|
12573
|
+
var _a;
|
|
12574
|
+
|
|
12591
12575
|
const wobble = particle.options.wobble;
|
|
12592
|
-
const speed = particle.wobbleSpeed * delta.factor;
|
|
12593
|
-
const distance = particle.wobbleDistance * delta.factor / (1000 / 60);
|
|
12594
|
-
const max = 2 * Math.PI;
|
|
12595
12576
|
|
|
12596
|
-
if (!wobble.enable) {
|
|
12577
|
+
if (!wobble.enable || !particle.wobble) {
|
|
12597
12578
|
return;
|
|
12598
12579
|
}
|
|
12599
12580
|
|
|
12600
|
-
particle.
|
|
12581
|
+
const speed = particle.wobble.speed * delta.factor;
|
|
12582
|
+
const distance = ((_a = particle.retina.wobbleDistance) !== null && _a !== void 0 ? _a : 0) * delta.factor / (1000 / 60);
|
|
12583
|
+
const max = 2 * Math.PI;
|
|
12584
|
+
particle.wobble.angle += speed;
|
|
12601
12585
|
|
|
12602
|
-
if (particle.
|
|
12603
|
-
particle.
|
|
12586
|
+
if (particle.wobble.angle > max) {
|
|
12587
|
+
particle.wobble.angle -= max;
|
|
12604
12588
|
}
|
|
12605
12589
|
|
|
12606
|
-
particle.position.x += distance * Math.cos(particle.
|
|
12607
|
-
particle.position.y += distance * Math.abs(Math.sin(particle.
|
|
12590
|
+
particle.position.x += distance * Math.cos(particle.wobble.angle);
|
|
12591
|
+
particle.position.y += distance * Math.abs(Math.sin(particle.wobble.angle));
|
|
12608
12592
|
}
|
|
12609
12593
|
|
|
12610
12594
|
class WobbleUpdater {
|
|
12595
|
+
constructor(container) {
|
|
12596
|
+
this.container = container;
|
|
12597
|
+
}
|
|
12598
|
+
|
|
12599
|
+
init(particle) {
|
|
12600
|
+
const wobbleOpt = particle.options.wobble;
|
|
12601
|
+
|
|
12602
|
+
if (wobbleOpt.enable) {
|
|
12603
|
+
particle.wobble = {
|
|
12604
|
+
angle: Math.random() * Math.PI * 2,
|
|
12605
|
+
speed: getRangeValue(wobbleOpt.speed) / 360
|
|
12606
|
+
};
|
|
12607
|
+
} else {
|
|
12608
|
+
particle.wobble = {
|
|
12609
|
+
angle: 0,
|
|
12610
|
+
speed: 0
|
|
12611
|
+
};
|
|
12612
|
+
}
|
|
12613
|
+
|
|
12614
|
+
particle.retina.wobbleDistance = getRangeValue(wobbleOpt.distance) * this.container.retina.pixelRatio;
|
|
12615
|
+
}
|
|
12616
|
+
|
|
12611
12617
|
isEnabled(particle) {
|
|
12612
|
-
|
|
12613
|
-
return !particle.destroyed && !particle.spawning && wobble.enable;
|
|
12618
|
+
return !particle.destroyed && !particle.spawning && particle.options.wobble.enable;
|
|
12614
12619
|
}
|
|
12615
12620
|
|
|
12616
12621
|
update(particle, delta) {
|
|
@@ -12625,7 +12630,7 @@ class WobbleUpdater {
|
|
|
12625
12630
|
;// CONCATENATED MODULE: ./dist/browser/Updaters/Wobble/index.js
|
|
12626
12631
|
|
|
12627
12632
|
function loadWobbleUpdater(tsParticles) {
|
|
12628
|
-
tsParticles.addParticleUpdater("wobble",
|
|
12633
|
+
tsParticles.addParticleUpdater("wobble", container => new WobbleUpdater(container));
|
|
12629
12634
|
}
|
|
12630
12635
|
;// CONCATENATED MODULE: ./dist/browser/Core/ExternalInteractorBase.js
|
|
12631
12636
|
|
|
@@ -12826,7 +12831,7 @@ class Bouncer extends ExternalInteractorBase {
|
|
|
12826
12831
|
circleBounce(circleBounceDataFromParticle(particle), {
|
|
12827
12832
|
position,
|
|
12828
12833
|
radius,
|
|
12829
|
-
mass:
|
|
12834
|
+
mass: radius ** 2 * Math.PI / 2,
|
|
12830
12835
|
velocity: Vector.origin,
|
|
12831
12836
|
factor: Vector.origin
|
|
12832
12837
|
});
|
|
@@ -13015,6 +13020,8 @@ class Bubbler extends ExternalInteractorBase {
|
|
|
13015
13020
|
}
|
|
13016
13021
|
|
|
13017
13022
|
clickBubble() {
|
|
13023
|
+
var _a, _b;
|
|
13024
|
+
|
|
13018
13025
|
const container = this.container,
|
|
13019
13026
|
options = container.actualOptions,
|
|
13020
13027
|
mouseClickPos = container.interactivity.mouse.clickPosition;
|
|
@@ -13064,7 +13071,7 @@ class Bubbler extends ExternalInteractorBase {
|
|
|
13064
13071
|
},
|
|
13065
13072
|
particlesObj: {
|
|
13066
13073
|
optValue: getRangeMax(particle.options.opacity.value),
|
|
13067
|
-
value: particle.opacity.value
|
|
13074
|
+
value: (_b = (_a = particle.opacity) === null || _a === void 0 ? void 0 : _a.value) !== null && _b !== void 0 ? _b : 1
|
|
13068
13075
|
},
|
|
13069
13076
|
type: ProcessBubbleType.opacity
|
|
13070
13077
|
};
|
|
@@ -13133,7 +13140,7 @@ class Bubbler extends ExternalInteractorBase {
|
|
|
13133
13140
|
}
|
|
13134
13141
|
|
|
13135
13142
|
hoverBubbleOpacity(particle, ratio, divBubble) {
|
|
13136
|
-
var _a;
|
|
13143
|
+
var _a, _b, _c;
|
|
13137
13144
|
|
|
13138
13145
|
const container = this.container,
|
|
13139
13146
|
options = container.actualOptions,
|
|
@@ -13144,7 +13151,7 @@ class Bubbler extends ExternalInteractorBase {
|
|
|
13144
13151
|
}
|
|
13145
13152
|
|
|
13146
13153
|
const optOpacity = particle.options.opacity.value;
|
|
13147
|
-
const pOpacity = particle.opacity.value;
|
|
13154
|
+
const pOpacity = (_c = (_b = particle.opacity) === null || _b === void 0 ? void 0 : _b.value) !== null && _c !== void 0 ? _c : 1;
|
|
13148
13155
|
const opacity = calculateBubbleValue(pOpacity, modeOpacity, getRangeMax(optOpacity), ratio);
|
|
13149
13156
|
|
|
13150
13157
|
if (opacity !== undefined) {
|
|
@@ -13459,7 +13466,7 @@ class Repulser extends ExternalInteractorBase {
|
|
|
13459
13466
|
dy,
|
|
13460
13467
|
distance
|
|
13461
13468
|
} = getDistances(mouseClickPos, particle.position),
|
|
13462
|
-
d =
|
|
13469
|
+
d = distance ** 2,
|
|
13463
13470
|
velocity = container.actualOptions.interactivity.modes.repulse.speed,
|
|
13464
13471
|
force = -repulseRadius * velocity / d;
|
|
13465
13472
|
|
|
@@ -13576,7 +13583,7 @@ class Attractor_Attractor extends ParticlesInteractorBase {
|
|
|
13576
13583
|
var _a;
|
|
13577
13584
|
|
|
13578
13585
|
const container = this.container,
|
|
13579
|
-
distance = (_a = p1.attractDistance) !== null && _a !== void 0 ? _a : container.retina.attractDistance,
|
|
13586
|
+
distance = (_a = p1.retina.attractDistance) !== null && _a !== void 0 ? _a : container.retina.attractDistance,
|
|
13580
13587
|
pos1 = p1.getPosition(),
|
|
13581
13588
|
query = container.particles.quadTree.queryCircle(pos1, distance);
|
|
13582
13589
|
|
|
@@ -13802,7 +13809,7 @@ class Linker extends ParticlesInteractorBase {
|
|
|
13802
13809
|
|
|
13803
13810
|
const linkOpt1 = p1.options.links;
|
|
13804
13811
|
const optOpacity = linkOpt1.opacity;
|
|
13805
|
-
const optDistance = (_a = p1.linksDistance) !== null && _a !== void 0 ? _a : container.retina.linksDistance;
|
|
13812
|
+
const optDistance = (_a = p1.retina.linksDistance) !== null && _a !== void 0 ? _a : container.retina.linksDistance;
|
|
13806
13813
|
const warp = linkOpt1.warp;
|
|
13807
13814
|
const range = warp ? new CircleWarp(pos1.x, pos1.y, optDistance, canvasSize) : new Circle(pos1.x, pos1.y, optDistance);
|
|
13808
13815
|
const query = container.particles.quadTree.query(range);
|
|
@@ -13988,8 +13995,8 @@ class LinkInstance {
|
|
|
13988
13995
|
return;
|
|
13989
13996
|
}
|
|
13990
13997
|
|
|
13991
|
-
const width = (_a = p1.linksWidth) !== null && _a !== void 0 ? _a : container.retina.linksWidth;
|
|
13992
|
-
const maxDistance = (_b = p1.linksDistance) !== null && _b !== void 0 ? _b : container.retina.linksDistance;
|
|
13998
|
+
const width = (_a = p1.retina.linksWidth) !== null && _a !== void 0 ? _a : container.retina.linksWidth;
|
|
13999
|
+
const maxDistance = (_b = p1.retina.linksDistance) !== null && _b !== void 0 ? _b : container.retina.linksDistance;
|
|
13993
14000
|
drawLinkLine(ctx, width, pos1, pos2, maxDistance, container.canvas.size, p1.options.links.warp, options.backgroundMask.enable, options.backgroundMask.composite, colorLine, opacity, p1.options.links.shadow);
|
|
13994
14001
|
});
|
|
13995
14002
|
}
|
|
@@ -14102,10 +14109,6 @@ function loadFull(tsParticles) {
|
|
|
14102
14109
|
|
|
14103
14110
|
|
|
14104
14111
|
|
|
14105
|
-
|
|
14106
|
-
|
|
14107
|
-
|
|
14108
|
-
|
|
14109
14112
|
const tsParticles = new Main();
|
|
14110
14113
|
tsParticles.init();
|
|
14111
14114
|
loadFull(tsParticles);
|
|
@@ -14126,6 +14129,10 @@ const {
|
|
|
14126
14129
|
|
|
14127
14130
|
|
|
14128
14131
|
|
|
14132
|
+
|
|
14133
|
+
|
|
14134
|
+
|
|
14135
|
+
|
|
14129
14136
|
/******/ return __webpack_exports__;
|
|
14130
14137
|
/******/ })()
|
|
14131
14138
|
;
|