@tsparticles/engine 3.0.0-alpha.1 → 3.0.0-beta.1
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/README.md +244 -188
- package/browser/Core/Canvas.js +273 -243
- package/browser/Core/Container.js +97 -113
- package/browser/Core/Engine.js +271 -0
- package/browser/Core/Particle.js +165 -172
- package/browser/Core/Particles.js +153 -148
- package/browser/Core/Retina.js +17 -15
- package/browser/Core/Utils/Circle.js +12 -8
- package/browser/Core/Utils/Constants.js +4 -3
- package/browser/Core/Utils/EventListeners.js +259 -235
- package/browser/Core/Utils/InteractionManager.js +6 -16
- package/browser/Core/Utils/QuadTree.js +17 -23
- package/browser/Core/Utils/Rectangle.js +2 -2
- package/browser/Core/Utils/Vector.js +1 -1
- package/browser/Core/Utils/Vector3d.js +17 -9
- package/browser/Options/Classes/AnimatableColor.js +4 -3
- package/browser/Options/Classes/AnimationOptions.js +5 -4
- package/browser/Options/Classes/Background/Background.js +1 -1
- package/browser/Options/Classes/BackgroundMask/BackgroundMask.js +3 -2
- package/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js +1 -1
- package/browser/Options/Classes/ColorAnimation.js +5 -1
- package/browser/Options/Classes/HslAnimation.js +1 -1
- package/browser/Options/Classes/Interactivity/Events/DivEvent.js +0 -24
- package/browser/Options/Classes/Interactivity/Events/Events.js +9 -28
- package/browser/Options/Classes/Interactivity/Events/HoverEvent.js +1 -1
- package/browser/Options/Classes/Interactivity/Interactivity.js +3 -10
- package/browser/Options/Classes/Interactivity/Modes/Modes.js +11 -8
- package/browser/Options/Classes/ManualParticle.js +6 -7
- package/browser/Options/Classes/Options.js +28 -48
- package/browser/Options/Classes/OptionsColor.js +3 -2
- package/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js +1 -1
- package/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +1 -1
- package/browser/Options/Classes/Particles/Collisions/Collisions.js +8 -3
- package/browser/Options/Classes/Particles/Move/Move.js +20 -50
- package/browser/Options/Classes/Particles/Move/MoveAngle.js +1 -1
- package/browser/Options/Classes/Particles/Move/MoveAttract.js +10 -21
- package/browser/Options/Classes/Particles/Move/MoveGravity.js +1 -1
- package/browser/Options/Classes/Particles/Move/MoveTrail.js +3 -9
- package/browser/Options/Classes/Particles/Move/MoveTrailFill.js +1 -1
- package/browser/Options/Classes/Particles/Move/OutModes.js +4 -5
- package/browser/Options/Classes/Particles/Move/Path/MovePath.js +2 -2
- package/browser/Options/Classes/Particles/Move/Spin.js +5 -3
- package/browser/Options/Classes/Particles/Number/ParticlesDensity.js +2 -21
- package/browser/Options/Classes/Particles/Number/ParticlesNumber.js +3 -10
- package/browser/Options/Classes/Particles/Opacity/Opacity.js +12 -8
- package/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -10
- package/browser/Options/Classes/Particles/ParticlesOptions.js +18 -23
- package/browser/Options/Classes/Particles/Shadow.js +1 -1
- package/browser/Options/Classes/Particles/Shape/Shape.js +10 -11
- package/browser/Options/Classes/Particles/Size/Size.js +12 -8
- package/browser/Options/Classes/Particles/Size/SizeAnimation.js +1 -10
- package/browser/Options/Classes/Particles/Stroke.js +2 -2
- package/browser/Options/Classes/Particles/ZIndex/ZIndex.js +1 -1
- package/browser/Options/Classes/Responsive.js +1 -1
- package/browser/Options/Classes/Theme/Theme.js +2 -2
- package/browser/Options/Classes/ValueWithRandom.js +6 -19
- package/browser/Utils/CanvasUtils.js +19 -55
- package/browser/Utils/ColorUtils.js +18 -20
- package/browser/Utils/EventDispatcher.js +7 -6
- package/browser/Utils/HslColorManager.js +4 -6
- package/browser/Utils/NumberUtils.js +42 -46
- package/browser/Utils/OptionsUtils.js +1 -1
- package/browser/Utils/RgbColorManager.js +3 -5
- package/browser/Utils/Utils.js +135 -64
- package/browser/bundle.js +4 -97
- package/browser/export-types.js +97 -0
- package/browser/exports.js +89 -0
- package/browser/index.js +8 -199
- package/browser/init.js +12 -0
- package/browser/package.json +1 -0
- package/cjs/Core/Canvas.js +278 -248
- package/cjs/Core/Container.js +104 -120
- package/cjs/Core/Engine.js +275 -0
- package/cjs/Core/Particle.js +173 -180
- package/cjs/Core/Particles.js +154 -149
- package/cjs/Core/Retina.js +20 -18
- package/cjs/Core/Utils/Circle.js +14 -10
- package/cjs/Core/Utils/Constants.js +5 -4
- package/cjs/Core/Utils/EventListeners.js +267 -243
- package/cjs/Core/Utils/InteractionManager.js +6 -16
- package/cjs/Core/Utils/QuadTree.js +20 -26
- package/cjs/Core/Utils/Rectangle.js +4 -4
- package/cjs/Core/Utils/Vector.js +2 -2
- package/cjs/Core/Utils/Vector3d.js +17 -9
- package/cjs/Options/Classes/AnimatableColor.js +6 -5
- package/cjs/Options/Classes/AnimationOptions.js +8 -7
- package/cjs/Options/Classes/Background/Background.js +3 -3
- package/cjs/Options/Classes/BackgroundMask/BackgroundMask.js +4 -3
- package/cjs/Options/Classes/BackgroundMask/BackgroundMaskCover.js +3 -3
- package/cjs/Options/Classes/ColorAnimation.js +9 -5
- package/cjs/Options/Classes/HslAnimation.js +4 -4
- package/cjs/Options/Classes/Interactivity/Events/DivEvent.js +0 -24
- package/cjs/Options/Classes/Interactivity/Events/Events.js +15 -34
- package/cjs/Options/Classes/Interactivity/Events/HoverEvent.js +2 -2
- package/cjs/Options/Classes/Interactivity/Interactivity.js +5 -12
- package/cjs/Options/Classes/Interactivity/Modes/Modes.js +11 -8
- package/cjs/Options/Classes/ManualParticle.js +7 -8
- package/cjs/Options/Classes/Options.js +41 -61
- package/cjs/Options/Classes/OptionsColor.js +3 -2
- package/cjs/Options/Classes/Particles/Bounce/ParticlesBounce.js +3 -3
- package/cjs/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +2 -2
- package/cjs/Options/Classes/Particles/Collisions/Collisions.js +11 -6
- package/cjs/Options/Classes/Particles/Move/Move.js +31 -61
- package/cjs/Options/Classes/Particles/Move/MoveAngle.js +3 -3
- package/cjs/Options/Classes/Particles/Move/MoveAttract.js +11 -22
- package/cjs/Options/Classes/Particles/Move/MoveGravity.js +3 -3
- package/cjs/Options/Classes/Particles/Move/MoveTrail.js +4 -10
- package/cjs/Options/Classes/Particles/Move/MoveTrailFill.js +2 -2
- package/cjs/Options/Classes/Particles/Move/OutModes.js +4 -5
- package/cjs/Options/Classes/Particles/Move/Path/MovePath.js +4 -4
- package/cjs/Options/Classes/Particles/Move/Spin.js +6 -4
- package/cjs/Options/Classes/Particles/Number/ParticlesDensity.js +2 -21
- package/cjs/Options/Classes/Particles/Number/ParticlesNumber.js +4 -11
- package/cjs/Options/Classes/Particles/Opacity/Opacity.js +13 -9
- package/cjs/Options/Classes/Particles/Opacity/OpacityAnimation.js +2 -11
- package/cjs/Options/Classes/Particles/ParticlesOptions.js +32 -37
- package/cjs/Options/Classes/Particles/Shadow.js +3 -3
- package/cjs/Options/Classes/Particles/Shape/Shape.js +10 -11
- package/cjs/Options/Classes/Particles/Size/Size.js +13 -9
- package/cjs/Options/Classes/Particles/Size/SizeAnimation.js +2 -11
- package/cjs/Options/Classes/Particles/Stroke.js +5 -5
- package/cjs/Options/Classes/Particles/ZIndex/ZIndex.js +2 -2
- package/cjs/Options/Classes/Responsive.js +2 -2
- package/cjs/Options/Classes/Theme/Theme.js +4 -4
- package/cjs/Options/Classes/ValueWithRandom.js +10 -23
- package/cjs/Utils/CanvasUtils.js +23 -60
- package/cjs/Utils/ColorUtils.js +31 -33
- package/cjs/Utils/EventDispatcher.js +7 -6
- package/cjs/Utils/HslColorManager.js +11 -13
- package/cjs/Utils/NumberUtils.js +44 -48
- package/cjs/Utils/OptionsUtils.js +2 -2
- package/cjs/Utils/RgbColorManager.js +7 -9
- package/cjs/Utils/Utils.js +157 -77
- package/cjs/bundle.js +4 -97
- package/cjs/export-types.js +113 -0
- package/cjs/exports.js +105 -0
- package/cjs/index.js +8 -199
- package/cjs/init.js +16 -0
- package/cjs/package.json +1 -0
- package/esm/Core/Canvas.js +273 -243
- package/esm/Core/Container.js +97 -113
- package/esm/Core/Engine.js +271 -0
- package/esm/Core/Particle.js +165 -172
- package/esm/Core/Particles.js +153 -148
- package/esm/Core/Retina.js +17 -15
- package/esm/Core/Utils/Circle.js +12 -8
- package/esm/Core/Utils/Constants.js +4 -3
- package/esm/Core/Utils/EventListeners.js +259 -235
- package/esm/Core/Utils/InteractionManager.js +6 -16
- package/esm/Core/Utils/QuadTree.js +17 -23
- package/esm/Core/Utils/Rectangle.js +2 -2
- package/esm/Core/Utils/Vector.js +1 -1
- package/esm/Core/Utils/Vector3d.js +17 -9
- package/esm/Options/Classes/AnimatableColor.js +4 -3
- package/esm/Options/Classes/AnimationOptions.js +5 -4
- package/esm/Options/Classes/Background/Background.js +1 -1
- package/esm/Options/Classes/BackgroundMask/BackgroundMask.js +3 -2
- package/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.js +1 -1
- package/esm/Options/Classes/ColorAnimation.js +5 -1
- package/esm/Options/Classes/HslAnimation.js +1 -1
- package/esm/Options/Classes/Interactivity/Events/DivEvent.js +0 -24
- package/esm/Options/Classes/Interactivity/Events/Events.js +9 -28
- package/esm/Options/Classes/Interactivity/Events/HoverEvent.js +1 -1
- package/esm/Options/Classes/Interactivity/Interactivity.js +3 -10
- package/esm/Options/Classes/Interactivity/Modes/Modes.js +11 -8
- package/esm/Options/Classes/ManualParticle.js +6 -7
- package/esm/Options/Classes/Options.js +28 -48
- package/esm/Options/Classes/OptionsColor.js +3 -2
- package/esm/Options/Classes/Particles/Bounce/ParticlesBounce.js +1 -1
- package/esm/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +1 -1
- package/esm/Options/Classes/Particles/Collisions/Collisions.js +8 -3
- package/esm/Options/Classes/Particles/Move/Move.js +20 -50
- package/esm/Options/Classes/Particles/Move/MoveAngle.js +1 -1
- package/esm/Options/Classes/Particles/Move/MoveAttract.js +10 -21
- package/esm/Options/Classes/Particles/Move/MoveGravity.js +1 -1
- package/esm/Options/Classes/Particles/Move/MoveTrail.js +3 -9
- package/esm/Options/Classes/Particles/Move/MoveTrailFill.js +1 -1
- package/esm/Options/Classes/Particles/Move/OutModes.js +4 -5
- package/esm/Options/Classes/Particles/Move/Path/MovePath.js +2 -2
- package/esm/Options/Classes/Particles/Move/Spin.js +5 -3
- package/esm/Options/Classes/Particles/Number/ParticlesDensity.js +2 -21
- package/esm/Options/Classes/Particles/Number/ParticlesNumber.js +3 -10
- package/esm/Options/Classes/Particles/Opacity/Opacity.js +12 -8
- package/esm/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -10
- package/esm/Options/Classes/Particles/ParticlesOptions.js +18 -23
- package/esm/Options/Classes/Particles/Shadow.js +1 -1
- package/esm/Options/Classes/Particles/Shape/Shape.js +10 -11
- package/esm/Options/Classes/Particles/Size/Size.js +12 -8
- package/esm/Options/Classes/Particles/Size/SizeAnimation.js +1 -10
- package/esm/Options/Classes/Particles/Stroke.js +2 -2
- package/esm/Options/Classes/Particles/ZIndex/ZIndex.js +1 -1
- package/esm/Options/Classes/Responsive.js +1 -1
- package/esm/Options/Classes/Theme/Theme.js +2 -2
- package/esm/Options/Classes/ValueWithRandom.js +6 -19
- package/esm/Utils/CanvasUtils.js +19 -55
- package/esm/Utils/ColorUtils.js +18 -20
- package/esm/Utils/EventDispatcher.js +7 -6
- package/esm/Utils/HslColorManager.js +4 -6
- package/esm/Utils/NumberUtils.js +42 -46
- package/esm/Utils/OptionsUtils.js +1 -1
- package/esm/Utils/RgbColorManager.js +3 -5
- package/esm/Utils/Utils.js +135 -64
- package/esm/bundle.js +4 -97
- package/esm/export-types.js +97 -0
- package/esm/exports.js +89 -0
- package/esm/index.js +8 -199
- package/esm/init.js +12 -0
- package/esm/package.json +1 -0
- package/package.json +21 -4
- package/report.html +4 -4
- package/scripts/install.js +90 -33
- package/tsparticles.engine.js +1832 -2007
- package/tsparticles.engine.min.js +1 -1
- package/tsparticles.engine.min.js.LICENSE.txt +1 -10
- package/types/Core/Canvas.d.ts +25 -21
- package/types/Core/Container.d.ts +21 -25
- package/types/Core/Engine.d.ts +71 -0
- package/types/Core/Interfaces/Colors.d.ts +2 -2
- package/types/Core/Interfaces/IBubbleParticleData.d.ts +1 -1
- package/types/Core/Interfaces/ICircleBouncer.d.ts +2 -2
- package/types/Core/Interfaces/IColorManager.d.ts +1 -1
- package/types/Core/Interfaces/IContainerInteractivity.d.ts +1 -1
- package/types/Core/Interfaces/IContainerPlugin.d.ts +8 -6
- package/types/Core/Interfaces/ICoordinates.d.ts +3 -3
- package/types/Core/Interfaces/IDimension.d.ts +2 -2
- package/types/Core/Interfaces/IDrawParticleParams.d.ts +6 -6
- package/types/Core/Interfaces/IExternalInteractor.d.ts +7 -7
- package/types/Core/Interfaces/IInteractor.d.ts +8 -8
- package/types/Core/Interfaces/ILoadParams.d.ts +2 -2
- package/types/Core/Interfaces/IMouseData.d.ts +1 -1
- package/types/Core/Interfaces/IMovePathGenerator.d.ts +5 -4
- package/types/Core/Interfaces/IParticle.d.ts +11 -11
- package/types/Core/Interfaces/IParticleHslAnimation.d.ts +1 -1
- package/types/Core/Interfaces/IParticleMover.d.ts +2 -2
- package/types/Core/Interfaces/IParticleRetinaProps.d.ts +1 -1
- package/types/Core/Interfaces/IParticleRoll.d.ts +1 -1
- package/types/Core/Interfaces/IParticleUpdater.d.ts +7 -9
- package/types/Core/Interfaces/IParticleValueAnimation.d.ts +3 -1
- package/types/Core/Interfaces/IParticlesInteractor.d.ts +3 -3
- package/types/Core/Interfaces/IPlugin.d.ts +7 -6
- package/types/Core/Interfaces/IPositionFromSizeParams.d.ts +2 -2
- package/types/Core/Interfaces/IShapeDrawer.d.ts +1 -1
- package/types/Core/Interfaces/IShapeValues.d.ts +2 -2
- package/types/Core/Interfaces/ITrailFillData.d.ts +1 -1
- package/types/Core/Particle.d.ts +27 -27
- package/types/Core/Particles.d.ts +24 -21
- package/types/Core/Retina.d.ts +2 -2
- package/types/Core/Utils/Circle.d.ts +2 -2
- package/types/Core/Utils/Constants.d.ts +4 -3
- package/types/Core/Utils/EventListeners.d.ts +21 -19
- package/types/Core/Utils/ExternalInteractorBase.d.ts +5 -5
- package/types/Core/Utils/InteractionManager.d.ts +5 -5
- package/types/Core/Utils/ParticlesInteractorBase.d.ts +5 -5
- package/types/Core/Utils/Point.d.ts +2 -2
- package/types/Core/Utils/QuadTree.d.ts +8 -11
- package/types/Core/Utils/Range.d.ts +1 -1
- package/types/Core/Utils/Rectangle.d.ts +3 -3
- package/types/Core/Utils/Vector.d.ts +2 -2
- package/types/Core/Utils/Vector3d.d.ts +3 -2
- package/types/Enums/Modes/{SizeMode.d.ts → PixelMode.d.ts} +1 -1
- package/types/Options/Classes/AnimatableColor.d.ts +6 -6
- package/types/Options/Classes/AnimationOptions.d.ts +7 -7
- package/types/Options/Classes/Background/Background.d.ts +4 -4
- package/types/Options/Classes/BackgroundMask/BackgroundMask.d.ts +4 -4
- package/types/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +4 -4
- package/types/Options/Classes/ColorAnimation.d.ts +5 -4
- package/types/Options/Classes/FullScreen/FullScreen.d.ts +3 -3
- package/types/Options/Classes/HslAnimation.d.ts +4 -4
- package/types/Options/Classes/Interactivity/Events/ClickEvent.d.ts +5 -5
- package/types/Options/Classes/Interactivity/Events/DivEvent.d.ts +6 -12
- package/types/Options/Classes/Interactivity/Events/Events.d.ts +8 -14
- package/types/Options/Classes/Interactivity/Events/HoverEvent.d.ts +6 -6
- package/types/Options/Classes/Interactivity/Events/Parallax.d.ts +3 -3
- package/types/Options/Classes/Interactivity/Events/ResizeEvent.d.ts +3 -3
- package/types/Options/Classes/Interactivity/Interactivity.d.ts +8 -10
- package/types/Options/Classes/Interactivity/Modes/Modes.d.ts +5 -5
- package/types/Options/Classes/ManualParticle.d.ts +5 -5
- package/types/Options/Classes/Options.d.ts +19 -26
- package/types/Options/Classes/OptionsColor.d.ts +5 -5
- package/types/Options/Classes/Particles/Bounce/ParticlesBounce.d.ts +4 -4
- package/types/Options/Classes/Particles/Bounce/ParticlesBounceFactor.d.ts +1 -1
- package/types/Options/Classes/Particles/Collisions/Collisions.d.ts +9 -7
- package/types/Options/Classes/Particles/Collisions/CollisionsAbsorb.d.ts +3 -3
- package/types/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +3 -3
- package/types/Options/Classes/Particles/Move/Move.d.ts +15 -26
- package/types/Options/Classes/Particles/Move/MoveAngle.d.ts +4 -4
- package/types/Options/Classes/Particles/Move/MoveAttract.d.ts +5 -9
- package/types/Options/Classes/Particles/Move/MoveCenter.d.ts +5 -5
- package/types/Options/Classes/Particles/Move/MoveGravity.d.ts +4 -4
- package/types/Options/Classes/Particles/Move/MoveTrail.d.ts +4 -7
- package/types/Options/Classes/Particles/Move/MoveTrailFill.d.ts +4 -4
- package/types/Options/Classes/Particles/Move/OutModes.d.ts +5 -5
- package/types/Options/Classes/Particles/Move/Path/MovePath.d.ts +5 -5
- package/types/Options/Classes/Particles/Move/Spin.d.ts +5 -5
- package/types/Options/Classes/Particles/Number/ParticlesDensity.d.ts +3 -9
- package/types/Options/Classes/Particles/Number/ParticlesNumber.d.ts +4 -6
- package/types/Options/Classes/Particles/Opacity/Opacity.d.ts +7 -7
- package/types/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +5 -7
- package/types/Options/Classes/Particles/ParticlesOptions.d.ts +19 -19
- package/types/Options/Classes/Particles/Shadow.d.ts +5 -5
- package/types/Options/Classes/Particles/Shape/Shape.d.ts +5 -5
- package/types/Options/Classes/Particles/Size/Size.d.ts +7 -7
- package/types/Options/Classes/Particles/Size/SizeAnimation.d.ts +5 -7
- package/types/Options/Classes/Particles/Stroke.d.ts +5 -5
- package/types/Options/Classes/Particles/ZIndex/ZIndex.d.ts +4 -4
- package/types/Options/Classes/Random.d.ts +3 -3
- package/types/Options/Classes/Responsive.d.ts +7 -7
- package/types/Options/Classes/Theme/Theme.d.ts +6 -6
- package/types/Options/Classes/Theme/ThemeDefault.d.ts +4 -4
- package/types/Options/Classes/ValueWithRandom.d.ts +7 -11
- package/types/Options/Interfaces/Background/IBackground.d.ts +1 -1
- package/types/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +2 -2
- package/types/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +1 -1
- package/types/Options/Interfaces/IAnimatable.d.ts +1 -1
- package/types/Options/Interfaces/IAnimatableColor.d.ts +3 -3
- package/types/Options/Interfaces/IAnimation.d.ts +4 -4
- package/types/Options/Interfaces/IColorAnimation.d.ts +2 -2
- package/types/Options/Interfaces/IHslAnimation.d.ts +1 -1
- package/types/Options/Interfaces/IManualParticle.d.ts +3 -3
- package/types/Options/Interfaces/IOptionLoader.d.ts +1 -1
- package/types/Options/Interfaces/IOptions.d.ts +12 -15
- package/types/Options/Interfaces/IOptionsColor.d.ts +1 -1
- package/types/Options/Interfaces/IResponsive.d.ts +5 -4
- package/types/Options/Interfaces/IValueWithRandom.d.ts +3 -3
- package/types/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +2 -2
- package/types/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +3 -6
- package/types/Options/Interfaces/Interactivity/Events/IEvents.d.ts +5 -8
- package/types/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +3 -3
- package/types/Options/Interfaces/Interactivity/IInteractivity.d.ts +3 -4
- package/types/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +1 -2
- package/types/Options/Interfaces/Particles/Bounce/IParticlesBounce.d.ts +1 -1
- package/types/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +6 -4
- package/types/Options/Interfaces/Particles/IParticlesOptions.d.ts +15 -15
- package/types/Options/Interfaces/Particles/IShadow.d.ts +2 -2
- package/types/Options/Interfaces/Particles/IStroke.d.ts +5 -4
- package/types/Options/Interfaces/Particles/Move/IMove.d.ts +12 -17
- package/types/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +1 -1
- package/types/Options/Interfaces/Particles/Move/IMoveAttract.d.ts +2 -4
- package/types/Options/Interfaces/Particles/Move/IMoveCenter.d.ts +1 -1
- package/types/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +1 -1
- package/types/Options/Interfaces/Particles/Move/IMoveTrail.d.ts +1 -3
- package/types/Options/Interfaces/Particles/Move/IMoveTrailFill.d.ts +1 -1
- package/types/Options/Interfaces/Particles/Move/IOutModes.d.ts +1 -1
- package/types/Options/Interfaces/Particles/Move/ISpin.d.ts +2 -2
- package/types/Options/Interfaces/Particles/Move/Path/IMovePath.d.ts +2 -2
- package/types/Options/Interfaces/Particles/Number/IParticlesDensity.d.ts +0 -3
- package/types/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +1 -2
- package/types/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +2 -3
- package/types/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +2 -3
- package/types/Options/Interfaces/Particles/Shape/IShape.d.ts +2 -2
- package/types/Options/Interfaces/Particles/Size/ISize.d.ts +2 -3
- package/types/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +2 -3
- package/types/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +1 -1
- package/types/Options/Interfaces/Theme/ITheme.d.ts +4 -3
- package/types/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -1
- package/types/Types/CustomEventArgs.d.ts +1 -1
- package/types/Types/CustomEventListener.d.ts +1 -1
- package/types/Types/ExportResult.d.ts +5 -0
- package/types/Types/ISourceOptions.d.ts +2 -2
- package/types/Types/ParticlesGroups.d.ts +1 -1
- package/types/Types/RangeValue.d.ts +1 -1
- package/types/Types/ShapeData.d.ts +2 -2
- package/types/Types/ShapeDrawerFunctions.d.ts +3 -3
- package/types/Utils/CanvasUtils.d.ts +11 -14
- package/types/Utils/ColorUtils.d.ts +6 -6
- package/types/Utils/EventDispatcher.d.ts +2 -2
- package/types/Utils/HslColorManager.d.ts +2 -2
- package/types/Utils/NumberUtils.d.ts +8 -8
- package/types/Utils/OptionsUtils.d.ts +6 -6
- package/types/Utils/RgbColorManager.d.ts +2 -2
- package/types/Utils/Utils.d.ts +32 -14
- package/types/bundle.d.ts +2 -91
- package/types/export-types.d.ts +107 -0
- package/types/exports.d.ts +89 -0
- package/types/index.d.ts +3 -204
- package/types/init.d.ts +2 -0
- package/umd/Core/Canvas.js +279 -249
- package/umd/Core/Container.js +105 -121
- package/umd/Core/Engine.js +285 -0
- package/umd/Core/Particle.js +174 -181
- package/umd/Core/Particles.js +155 -150
- package/umd/Core/Retina.js +21 -19
- package/umd/Core/Utils/Circle.js +15 -11
- package/umd/Core/Utils/Constants.js +5 -4
- package/umd/Core/Utils/EventListeners.js +268 -244
- package/umd/Core/Utils/InteractionManager.js +6 -16
- package/umd/Core/Utils/QuadTree.js +21 -27
- package/umd/Core/Utils/Rectangle.js +5 -5
- package/umd/Core/Utils/Vector.js +3 -3
- package/umd/Core/Utils/Vector3d.js +18 -10
- package/umd/Options/Classes/AnimatableColor.js +7 -6
- package/umd/Options/Classes/AnimationOptions.js +9 -8
- package/umd/Options/Classes/Background/Background.js +4 -4
- package/umd/Options/Classes/BackgroundMask/BackgroundMask.js +5 -4
- package/umd/Options/Classes/BackgroundMask/BackgroundMaskCover.js +4 -4
- package/umd/Options/Classes/ColorAnimation.js +10 -6
- package/umd/Options/Classes/HslAnimation.js +5 -5
- package/umd/Options/Classes/Interactivity/Events/DivEvent.js +1 -25
- package/umd/Options/Classes/Interactivity/Events/Events.js +16 -35
- package/umd/Options/Classes/Interactivity/Events/HoverEvent.js +3 -3
- package/umd/Options/Classes/Interactivity/Interactivity.js +6 -13
- package/umd/Options/Classes/Interactivity/Modes/Modes.js +11 -8
- package/umd/Options/Classes/ManualParticle.js +8 -9
- package/umd/Options/Classes/Options.js +42 -62
- package/umd/Options/Classes/OptionsColor.js +4 -3
- package/umd/Options/Classes/Particles/Bounce/ParticlesBounce.js +4 -4
- package/umd/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +3 -3
- package/umd/Options/Classes/Particles/Collisions/Collisions.js +12 -7
- package/umd/Options/Classes/Particles/Move/Move.js +32 -62
- package/umd/Options/Classes/Particles/Move/MoveAngle.js +4 -4
- package/umd/Options/Classes/Particles/Move/MoveAttract.js +12 -23
- package/umd/Options/Classes/Particles/Move/MoveGravity.js +4 -4
- package/umd/Options/Classes/Particles/Move/MoveTrail.js +5 -11
- package/umd/Options/Classes/Particles/Move/MoveTrailFill.js +3 -3
- package/umd/Options/Classes/Particles/Move/OutModes.js +4 -5
- package/umd/Options/Classes/Particles/Move/Path/MovePath.js +5 -5
- package/umd/Options/Classes/Particles/Move/Spin.js +7 -5
- package/umd/Options/Classes/Particles/Number/ParticlesDensity.js +2 -21
- package/umd/Options/Classes/Particles/Number/ParticlesNumber.js +5 -12
- package/umd/Options/Classes/Particles/Opacity/Opacity.js +14 -10
- package/umd/Options/Classes/Particles/Opacity/OpacityAnimation.js +3 -12
- package/umd/Options/Classes/Particles/ParticlesOptions.js +33 -38
- package/umd/Options/Classes/Particles/Shadow.js +4 -4
- package/umd/Options/Classes/Particles/Shape/Shape.js +11 -12
- package/umd/Options/Classes/Particles/Size/Size.js +14 -10
- package/umd/Options/Classes/Particles/Size/SizeAnimation.js +3 -12
- package/umd/Options/Classes/Particles/Stroke.js +6 -6
- package/umd/Options/Classes/Particles/ZIndex/ZIndex.js +3 -3
- package/umd/Options/Classes/Responsive.js +3 -3
- package/umd/Options/Classes/Theme/Theme.js +5 -5
- package/umd/Options/Classes/ValueWithRandom.js +11 -24
- package/umd/Utils/CanvasUtils.js +24 -61
- package/umd/Utils/ColorUtils.js +32 -34
- package/umd/Utils/EventDispatcher.js +7 -6
- package/umd/Utils/HslColorManager.js +12 -14
- package/umd/Utils/NumberUtils.js +45 -49
- package/umd/Utils/OptionsUtils.js +3 -3
- package/umd/Utils/RgbColorManager.js +8 -10
- package/umd/Utils/Utils.js +158 -78
- package/umd/bundle.js +5 -98
- package/umd/export-types.js +123 -0
- package/umd/exports.js +115 -0
- package/umd/index.js +9 -200
- package/umd/init.js +26 -0
- package/browser/Core/Utils/FrameManager.js +0 -42
- package/browser/Core/Utils/Plugins.js +0 -112
- package/browser/Options/Interfaces/Particles/Shape/IImageShape.js +0 -1
- package/browser/Options/Interfaces/Particles/Shape/IPolygonShape.js +0 -1
- package/browser/Options/Interfaces/Particles/Shape/IShapeValues.js +0 -1
- package/browser/Options/Interfaces/Particles/Shape/IStarShape.js +0 -1
- package/browser/engine.js +0 -175
- package/cjs/Core/Utils/FrameManager.js +0 -46
- package/cjs/Core/Utils/Plugins.js +0 -116
- package/cjs/Enums/Modes/SizeMode.js +0 -2
- package/cjs/Options/Interfaces/Particles/Shape/ICharacterShape.js +0 -2
- package/cjs/Options/Interfaces/Particles/Shape/IImageShape.js +0 -2
- package/cjs/Options/Interfaces/Particles/Shape/IPolygonShape.js +0 -2
- package/cjs/Options/Interfaces/Particles/Shape/IShapeValues.js +0 -17
- package/cjs/Options/Interfaces/Particles/Shape/IStarShape.js +0 -2
- package/cjs/engine.js +0 -179
- package/esm/Core/Interfaces/IParticleOverride.js +0 -1
- package/esm/Core/Interfaces/IParticlesMover.js +0 -1
- package/esm/Core/Utils/FrameManager.js +0 -42
- package/esm/Core/Utils/Plugins.js +0 -112
- package/esm/Enums/Modes/SizeMode.js +0 -1
- package/esm/Options/Interfaces/Particles/Shape/ICharacterShape.js +0 -1
- package/esm/Options/Interfaces/Particles/Shape/IImageShape.js +0 -1
- package/esm/Options/Interfaces/Particles/Shape/IPolygonShape.js +0 -1
- package/esm/Options/Interfaces/Particles/Shape/IShapeValues.js +0 -1
- package/esm/Options/Interfaces/Particles/Shape/IStarShape.js +0 -1
- package/esm/engine.js +0 -175
- package/types/Core/Interfaces/IParticleOverride.d.ts +0 -6
- package/types/Core/Interfaces/IParticlesMover.d.ts +0 -7
- package/types/Core/Utils/FrameManager.d.ts +0 -6
- package/types/Core/Utils/Plugins.d.ts +0 -51
- package/types/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/types/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/types/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/types/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/types/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/types/engine.d.ts +0 -39
- package/umd/Core/Utils/FrameManager.js +0 -56
- package/umd/Core/Utils/Plugins.js +0 -126
- package/umd/Enums/Modes/SizeMode.js +0 -12
- package/umd/Options/Interfaces/Particles/Shape/ICharacterShape.js +0 -12
- package/umd/Options/Interfaces/Particles/Shape/IImageShape.js +0 -12
- package/umd/Options/Interfaces/Particles/Shape/IPolygonShape.js +0 -12
- package/umd/Options/Interfaces/Particles/Shape/IShapeValues.js +0 -27
- package/umd/Options/Interfaces/Particles/Shape/IStarShape.js +0 -12
- package/umd/engine.js +0 -189
- /package/browser/{Core/Interfaces/IParticleOverride.js → Enums/Modes/PixelMode.js} +0 -0
- /package/browser/{Core/Interfaces/IParticlesMover.js → Types/ExportResult.js} +0 -0
- /package/cjs/{Core/Interfaces/IParticleOverride.js → Enums/Modes/PixelMode.js} +0 -0
- /package/cjs/{Core/Interfaces/IParticlesMover.js → Types/ExportResult.js} +0 -0
- /package/{browser/Enums/Modes/SizeMode.js → esm/Enums/Modes/PixelMode.js} +0 -0
- /package/{browser/Options/Interfaces/Particles/Shape/ICharacterShape.js → esm/Types/ExportResult.js} +0 -0
- /package/umd/{Core/Interfaces/IParticleOverride.js → Enums/Modes/PixelMode.js} +0 -0
- /package/umd/{Core/Interfaces/IParticlesMover.js → Types/ExportResult.js} +0 -0
|
@@ -1,19 +1,16 @@
|
|
|
1
|
-
import { AlterType } from "../Enums/Types/AlterType";
|
|
2
|
-
import type { Container } from "../Core/Container";
|
|
3
|
-
import type { IContainerPlugin } from "../Core/Interfaces/IContainerPlugin";
|
|
4
|
-
import type { ICoordinates } from "../Core/Interfaces/ICoordinates";
|
|
5
|
-
import type { IDelta } from "../Core/Interfaces/IDelta";
|
|
6
|
-
import type { IDimension } from "../Core/Interfaces/IDimension";
|
|
7
|
-
import type { IDrawParticleParams } from "../Core/Interfaces/IDrawParticleParams";
|
|
8
|
-
import type { IHsl } from "../Core/Interfaces/Colors";
|
|
9
|
-
import type {
|
|
10
|
-
import type { Options } from "../Options/Classes/Options";
|
|
11
|
-
import type { Particle } from "../Core/Particle";
|
|
12
|
-
export declare function getContext(canvas: HTMLCanvasElement): CanvasRenderingContext2D;
|
|
13
|
-
export declare function clearCanvas(context: CanvasRenderingContext2D, size: IDimension, options: Options, trailFill?: ITrailFillData, coverColorStyle?: string): void;
|
|
14
|
-
export declare function paintCanvas(context: CanvasRenderingContext2D, size: IDimension, options: Options, coverColorStyle?: string): void;
|
|
1
|
+
import { AlterType } from "../Enums/Types/AlterType.js";
|
|
2
|
+
import type { Container } from "../Core/Container.js";
|
|
3
|
+
import type { IContainerPlugin } from "../Core/Interfaces/IContainerPlugin.js";
|
|
4
|
+
import type { ICoordinates } from "../Core/Interfaces/ICoordinates.js";
|
|
5
|
+
import type { IDelta } from "../Core/Interfaces/IDelta.js";
|
|
6
|
+
import type { IDimension } from "../Core/Interfaces/IDimension.js";
|
|
7
|
+
import type { IDrawParticleParams } from "../Core/Interfaces/IDrawParticleParams.js";
|
|
8
|
+
import type { IHsl } from "../Core/Interfaces/Colors.js";
|
|
9
|
+
import type { Particle } from "../Core/Particle.js";
|
|
15
10
|
export declare function drawLine(context: CanvasRenderingContext2D, begin: ICoordinates, end: ICoordinates): void;
|
|
16
11
|
export declare function drawTriangle(context: CanvasRenderingContext2D, p1: ICoordinates, p2: ICoordinates, p3: ICoordinates): void;
|
|
12
|
+
export declare function paintBase(context: CanvasRenderingContext2D, dimension: IDimension, baseColor?: string): void;
|
|
13
|
+
export declare function paintImage(context: CanvasRenderingContext2D, dimension: IDimension, image: HTMLImageElement | undefined, opacity: number): void;
|
|
17
14
|
export declare function clear(context: CanvasRenderingContext2D, dimension: IDimension): void;
|
|
18
15
|
export declare function drawParticle(data: IDrawParticleParams): void;
|
|
19
16
|
export declare function drawShape(container: Container, context: CanvasRenderingContext2D, particle: Particle, radius: number, opacity: number, delta: IDelta): void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { IColor, IHsl, IHsla, IRangeColor, IRgb, IRgba } from "../Core/Interfaces/Colors";
|
|
2
|
-
import type { HslAnimation } from "../Options/Classes/HslAnimation";
|
|
3
|
-
import type { IColorManager } from "../Core/Interfaces/IColorManager";
|
|
4
|
-
import type { IOptionsColor } from "../Options/Interfaces/IOptionsColor";
|
|
5
|
-
import type { IParticle } from "../Core/Interfaces/IParticle";
|
|
6
|
-
import type { IParticleHslAnimation } from "../Core/Interfaces/IParticleHslAnimation";
|
|
1
|
+
import type { IColor, IHsl, IHsla, IRangeColor, IRgb, IRgba } from "../Core/Interfaces/Colors.js";
|
|
2
|
+
import type { HslAnimation } from "../Options/Classes/HslAnimation.js";
|
|
3
|
+
import type { IColorManager } from "../Core/Interfaces/IColorManager.js";
|
|
4
|
+
import type { IOptionsColor } from "../Options/Interfaces/IOptionsColor.js";
|
|
5
|
+
import type { IParticle } from "../Core/Interfaces/IParticle.js";
|
|
6
|
+
import type { IParticleHslAnimation } from "../Core/Interfaces/IParticleHslAnimation.js";
|
|
7
7
|
export declare function addColorManager(manager: IColorManager): void;
|
|
8
8
|
export declare function rangeColorToRgb(input?: string | IRangeColor, index?: number, useIndex?: boolean): IRgb | undefined;
|
|
9
9
|
export declare function colorToRgb(input?: string | IColor, index?: number, useIndex?: boolean): IRgb | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { CustomEventArgs } from "../Types/CustomEventArgs";
|
|
2
|
-
import type { CustomEventListener } from "../Types/CustomEventListener";
|
|
1
|
+
import type { CustomEventArgs } from "../Types/CustomEventArgs.js";
|
|
2
|
+
import type { CustomEventListener } from "../Types/CustomEventListener.js";
|
|
3
3
|
export declare class EventDispatcher {
|
|
4
4
|
private _listeners;
|
|
5
5
|
constructor();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { IColor, IRangeColor, IRgb, IRgba } from "../Core/Interfaces/Colors";
|
|
2
|
-
import type { IColorManager } from "../Core/Interfaces/IColorManager";
|
|
1
|
+
import type { IColor, IRangeColor, IRgb, IRgba } from "../Core/Interfaces/Colors.js";
|
|
2
|
+
import type { IColorManager } from "../Core/Interfaces/IColorManager.js";
|
|
3
3
|
export declare class HslColorManager implements IColorManager {
|
|
4
4
|
readonly key: string;
|
|
5
5
|
readonly stringPrefix: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type { EasingType, EasingTypeAlt } from "../Enums/Types/EasingType";
|
|
2
|
-
import type { IPositionFromSizeParams, IRangedPositionFromSizeParams } from "../Core/Interfaces/IPositionFromSizeParams";
|
|
3
|
-
import type { ICoordinates } from "../Core/Interfaces/ICoordinates";
|
|
4
|
-
import type { IValueWithRandom } from "../Options/Interfaces/IValueWithRandom";
|
|
5
|
-
import { MoveDirection } from "../Enums/Directions/MoveDirection";
|
|
6
|
-
import type { MoveDirectionAlt } from "../Enums/Directions/MoveDirection";
|
|
7
|
-
import type { RangeValue } from "../Types/RangeValue";
|
|
8
|
-
import { Vector } from "../Core/Utils/Vector";
|
|
1
|
+
import type { EasingType, EasingTypeAlt } from "../Enums/Types/EasingType.js";
|
|
2
|
+
import type { IPositionFromSizeParams, IRangedPositionFromSizeParams } from "../Core/Interfaces/IPositionFromSizeParams.js";
|
|
3
|
+
import type { ICoordinates } from "../Core/Interfaces/ICoordinates.js";
|
|
4
|
+
import type { IValueWithRandom } from "../Options/Interfaces/IValueWithRandom.js";
|
|
5
|
+
import { MoveDirection } from "../Enums/Directions/MoveDirection.js";
|
|
6
|
+
import type { MoveDirectionAlt } from "../Enums/Directions/MoveDirection.js";
|
|
7
|
+
import type { RangeValue } from "../Types/RangeValue.js";
|
|
8
|
+
import { Vector } from "../Core/Utils/Vector.js";
|
|
9
9
|
type EasingFunction = (value: number) => number;
|
|
10
10
|
export declare function addEasing(name: EasingType | EasingTypeAlt, easing: EasingFunction): void;
|
|
11
11
|
export declare function getEasing(name: EasingType | EasingTypeAlt): EasingFunction;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Container } from "../Core/Container";
|
|
2
|
-
import type { Engine } from "../
|
|
3
|
-
import type { IOptionLoader } from "../Options/Interfaces/IOptionLoader";
|
|
4
|
-
import type { IParticlesOptions } from "../Options/Interfaces/Particles/IParticlesOptions";
|
|
5
|
-
import { ParticlesOptions } from "../Options/Classes/Particles/ParticlesOptions";
|
|
6
|
-
import type { RecursivePartial } from "../Types/RecursivePartial";
|
|
1
|
+
import type { Container } from "../Core/Container.js";
|
|
2
|
+
import type { Engine } from "../Core/Engine.js";
|
|
3
|
+
import type { IOptionLoader } from "../Options/Interfaces/IOptionLoader.js";
|
|
4
|
+
import type { IParticlesOptions } from "../Options/Interfaces/Particles/IParticlesOptions.js";
|
|
5
|
+
import { ParticlesOptions } from "../Options/Classes/Particles/ParticlesOptions.js";
|
|
6
|
+
import type { RecursivePartial } from "../Types/RecursivePartial.js";
|
|
7
7
|
export declare function loadOptions<T>(options: IOptionLoader<T>, ...sourceOptionsArr: RecursivePartial<T | undefined>[]): void;
|
|
8
8
|
export declare function loadParticlesOptions(engine: Engine, container: Container, ...sourceOptionsArr: RecursivePartial<IParticlesOptions | undefined>[]): ParticlesOptions;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { IColor, IRangeColor, IRgb, IRgba } from "../Core/Interfaces/Colors";
|
|
2
|
-
import type { IColorManager } from "../Core/Interfaces/IColorManager";
|
|
1
|
+
import type { IColor, IRangeColor, IRgb, IRgba } from "../Core/Interfaces/Colors.js";
|
|
2
|
+
import type { IColorManager } from "../Core/Interfaces/IColorManager.js";
|
|
3
3
|
export declare class RgbColorManager implements IColorManager {
|
|
4
4
|
readonly key: string;
|
|
5
5
|
readonly stringPrefix: string;
|
package/types/Utils/Utils.d.ts
CHANGED
|
@@ -1,20 +1,29 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
3
|
-
import type {
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
6
|
-
import type {
|
|
7
|
-
import type { IModeDiv } from "../Options/Interfaces/Interactivity/Modes/IModeDiv";
|
|
8
|
-
import type { IParticle } from "../Core/Interfaces/IParticle";
|
|
9
|
-
import type { IParticleNumericValueAnimation } from "../Core/Interfaces/IParticleValueAnimation";
|
|
10
|
-
import { OutModeDirection } from "../Enums/Directions/OutModeDirection";
|
|
11
|
-
import type { RangedAnimationValueWithRandom } from "../Options/Classes/ValueWithRandom";
|
|
12
|
-
import type { SingleOrMultiple } from "../Types/SingleOrMultiple";
|
|
1
|
+
import type { ICoordinates, ICoordinatesWithMode } from "../Core/Interfaces/ICoordinates.js";
|
|
2
|
+
import type { IDimension, IDimensionWithMode } from "../Core/Interfaces/IDimension.js";
|
|
3
|
+
import type { DivEvent } from "../Options/Classes/Interactivity/Events/DivEvent.js";
|
|
4
|
+
import type { DivMode } from "../Enums/Modes/DivMode.js";
|
|
5
|
+
import type { IBounds } from "../Core/Interfaces/IBounds.js";
|
|
6
|
+
import type { ICircleBouncer } from "../Core/Interfaces/ICircleBouncer.js";
|
|
7
|
+
import type { IModeDiv } from "../Options/Interfaces/Interactivity/Modes/IModeDiv.js";
|
|
8
|
+
import type { IParticle } from "../Core/Interfaces/IParticle.js";
|
|
9
|
+
import type { IParticleNumericValueAnimation } from "../Core/Interfaces/IParticleValueAnimation.js";
|
|
10
|
+
import { OutModeDirection } from "../Enums/Directions/OutModeDirection.js";
|
|
11
|
+
import type { RangedAnimationValueWithRandom } from "../Options/Classes/ValueWithRandom.js";
|
|
12
|
+
import type { SingleOrMultiple } from "../Types/SingleOrMultiple.js";
|
|
13
|
+
interface ILogger {
|
|
14
|
+
debug(message?: unknown, ...optionalParams: unknown[]): void;
|
|
15
|
+
error(message?: unknown, ...optionalParams: unknown[]): void;
|
|
16
|
+
info(message?: unknown, ...optionalParams: unknown[]): void;
|
|
17
|
+
log(message?: unknown, ...optionalParams: unknown[]): void;
|
|
18
|
+
verbose(message?: unknown, ...optionalParams: unknown[]): void;
|
|
19
|
+
warning(message?: unknown, ...optionalParams: unknown[]): void;
|
|
20
|
+
}
|
|
21
|
+
export declare function setLogger(logger: ILogger): void;
|
|
22
|
+
export declare function getLogger(): ILogger;
|
|
13
23
|
export declare function isSsr(): boolean;
|
|
14
24
|
export declare function hasMatchMedia(): boolean;
|
|
15
25
|
export declare function safeMatchMedia(query: string): MediaQueryList | undefined;
|
|
16
|
-
export declare function
|
|
17
|
-
export declare function cancelAnimation(): (handle: number) => void;
|
|
26
|
+
export declare function safeMutationObserver(callback: (records: MutationRecord[]) => void): MutationObserver | undefined;
|
|
18
27
|
export declare function isInArray<T>(value: T, array: SingleOrMultiple<T>): boolean;
|
|
19
28
|
export declare function loadFont(font?: string, weight?: string): Promise<void>;
|
|
20
29
|
export declare function arrayRandomIndex<T>(array: T[]): number;
|
|
@@ -34,3 +43,12 @@ export declare function executeOnSingleOrMultiple<T, U = void>(obj: SingleOrMult
|
|
|
34
43
|
export declare function itemFromSingleOrMultiple<T>(obj: SingleOrMultiple<T>, index?: number, useIndex?: boolean): T;
|
|
35
44
|
export declare function findItemFromSingleOrMultiple<T>(obj: SingleOrMultiple<T>, callback: (obj: T, index: number) => boolean): T | undefined;
|
|
36
45
|
export declare function initParticleNumericAnimationValue(options: RangedAnimationValueWithRandom, pxRatio: number): IParticleNumericValueAnimation;
|
|
46
|
+
export declare function getPosition(position: ICoordinatesWithMode, canvasSize: IDimension): ICoordinates;
|
|
47
|
+
export declare function getSize(size: IDimensionWithMode, canvasSize: IDimension): IDimension;
|
|
48
|
+
export declare function isBoolean(arg: unknown): arg is boolean;
|
|
49
|
+
export declare function isString(arg: unknown): arg is string;
|
|
50
|
+
export declare function isNumber(arg: unknown): arg is number;
|
|
51
|
+
export declare function isFunction(arg: unknown): arg is Function;
|
|
52
|
+
export declare function isObject<T extends object>(arg: unknown): arg is T;
|
|
53
|
+
export declare function isArray<T>(arg: unknown): arg is T[];
|
|
54
|
+
export {};
|
package/types/bundle.d.ts
CHANGED
|
@@ -1,92 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export * from "./Core/Utils/Circle";
|
|
4
|
-
export * from "./Core/Utils/Constants";
|
|
5
|
-
export * from "./Core/Utils/ExternalInteractorBase";
|
|
6
|
-
export * from "./Core/Utils/ParticlesInteractorBase";
|
|
7
|
-
export * from "./Core/Utils/Point";
|
|
8
|
-
export * from "./Core/Utils/Range";
|
|
9
|
-
export * from "./Core/Utils/Rectangle";
|
|
10
|
-
export * from "./Core/Utils/Vector";
|
|
11
|
-
export * from "./Core/Utils/Vector3d";
|
|
12
|
-
export * from "./Enums/Directions/MoveDirection";
|
|
13
|
-
export * from "./Enums/Directions/RotateDirection";
|
|
14
|
-
export * from "./Enums/Directions/OutModeDirection";
|
|
15
|
-
export * from "./Enums/Modes/AnimationMode";
|
|
16
|
-
export * from "./Enums/Modes/ClickMode";
|
|
17
|
-
export * from "./Enums/Modes/DivMode";
|
|
18
|
-
export * from "./Enums/Modes/HoverMode";
|
|
19
|
-
export * from "./Enums/Modes/CollisionMode";
|
|
20
|
-
export * from "./Enums/Modes/OutMode";
|
|
21
|
-
export * from "./Enums/Modes/SizeMode";
|
|
22
|
-
export * from "./Enums/Modes/ThemeMode";
|
|
23
|
-
export * from "./Enums/Modes/ResponsiveMode";
|
|
24
|
-
export * from "./Enums/Types/AlterType";
|
|
25
|
-
export * from "./Enums/Types/DestroyType";
|
|
26
|
-
export * from "./Enums/Types/GradientType";
|
|
27
|
-
export * from "./Enums/Types/InteractorType";
|
|
28
|
-
export * from "./Enums/Types/ParticleOutType";
|
|
29
|
-
export * from "./Enums/Types/StartValueType";
|
|
30
|
-
export * from "./Enums/Types/DivType";
|
|
31
|
-
export * from "./Enums/Types/EasingType";
|
|
32
|
-
export * from "./Enums/AnimationStatus";
|
|
33
|
-
export * from "./Enums/InteractivityDetect";
|
|
34
|
-
export * from "./Options/Classes/AnimatableColor";
|
|
35
|
-
export * from "./Options/Classes/AnimationOptions";
|
|
36
|
-
export * from "./Options/Classes/Background/Background";
|
|
37
|
-
export * from "./Options/Classes/BackgroundMask/BackgroundMask";
|
|
38
|
-
export * from "./Options/Classes/BackgroundMask/BackgroundMaskCover";
|
|
39
|
-
export * from "./Options/Classes/ColorAnimation";
|
|
40
|
-
export * from "./Options/Classes/FullScreen/FullScreen";
|
|
41
|
-
export * from "./Options/Classes/HslAnimation";
|
|
42
|
-
export * from "./Options/Classes/Interactivity/Events/ClickEvent";
|
|
43
|
-
export * from "./Options/Classes/Interactivity/Events/DivEvent";
|
|
44
|
-
export * from "./Options/Classes/Interactivity/Events/ClickEvent";
|
|
45
|
-
export * from "./Options/Classes/Interactivity/Events/DivEvent";
|
|
46
|
-
export * from "./Options/Classes/Interactivity/Events/Events";
|
|
47
|
-
export * from "./Options/Classes/Interactivity/Events/HoverEvent";
|
|
48
|
-
export * from "./Options/Classes/Interactivity/Events/Parallax";
|
|
49
|
-
export * from "./Options/Classes/Interactivity/Events/ResizeEvent";
|
|
50
|
-
export * from "./Options/Classes/Interactivity/Interactivity";
|
|
51
|
-
export * from "./Options/Classes/Interactivity/Modes/Modes";
|
|
52
|
-
export * from "./Options/Classes/ManualParticle";
|
|
53
|
-
export * from "./Options/Classes/Options";
|
|
54
|
-
export * from "./Options/Classes/OptionsColor";
|
|
55
|
-
export * from "./Options/Classes/Particles/Bounce/ParticlesBounce";
|
|
56
|
-
export * from "./Options/Classes/Particles/Bounce/ParticlesBounceFactor";
|
|
57
|
-
export * from "./Options/Classes/Particles/Collisions/Collisions";
|
|
58
|
-
export * from "./Options/Classes/Particles/Collisions/CollisionsAbsorb";
|
|
59
|
-
export * from "./Options/Classes/Particles/Collisions/CollisionsOverlap";
|
|
60
|
-
export * from "./Options/Classes/Particles/ParticlesOptions";
|
|
61
|
-
export * from "./Options/Classes/Particles/Shadow";
|
|
62
|
-
export * from "./Options/Classes/Particles/Stroke";
|
|
63
|
-
export * from "./Options/Classes/Particles/Move/MoveAttract";
|
|
64
|
-
export * from "./Options/Classes/Particles/Move/Move";
|
|
65
|
-
export * from "./Options/Classes/Particles/Move/MoveAngle";
|
|
66
|
-
export * from "./Options/Classes/Particles/Move/MoveCenter";
|
|
67
|
-
export * from "./Options/Classes/Particles/Move/MoveGravity";
|
|
68
|
-
export * from "./Options/Classes/Particles/Move/MoveTrail";
|
|
69
|
-
export * from "./Options/Classes/Particles/Move/MoveTrailFill";
|
|
70
|
-
export * from "./Options/Classes/Particles/Move/OutModes";
|
|
71
|
-
export * from "./Options/Classes/Particles/Move/Path/MovePath";
|
|
72
|
-
export * from "./Options/Classes/Particles/Move/Spin";
|
|
73
|
-
export * from "./Options/Classes/Particles/Number/ParticlesNumber";
|
|
74
|
-
export * from "./Options/Classes/Particles/Number/ParticlesDensity";
|
|
75
|
-
export * from "./Options/Classes/Particles/Opacity/Opacity";
|
|
76
|
-
export * from "./Options/Classes/Particles/Opacity/OpacityAnimation";
|
|
77
|
-
export * from "./Options/Classes/Particles/Shape/Shape";
|
|
78
|
-
export * from "./Options/Classes/Particles/Size/Size";
|
|
79
|
-
export * from "./Options/Classes/Particles/Size/SizeAnimation";
|
|
80
|
-
export * from "./Options/Classes/Particles/ZIndex/ZIndex";
|
|
81
|
-
export * from "./Options/Classes/Responsive";
|
|
82
|
-
export * from "./Options/Classes/Theme/Theme";
|
|
83
|
-
export * from "./Options/Classes/Theme/ThemeDefault";
|
|
84
|
-
export * from "./Options/Classes/ValueWithRandom";
|
|
85
|
-
export * from "./Utils/CanvasUtils";
|
|
86
|
-
export * from "./Utils/ColorUtils";
|
|
87
|
-
export * from "./Utils/HslColorManager";
|
|
88
|
-
export * from "./Utils/NumberUtils";
|
|
89
|
-
export * from "./Utils/OptionsUtils";
|
|
90
|
-
export * from "./Utils/RgbColorManager";
|
|
91
|
-
export * from "./Utils/Utils";
|
|
1
|
+
declare const tsParticles: import("./export-types.js").Engine;
|
|
2
|
+
export * from "./exports.js";
|
|
92
3
|
export { tsParticles };
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import type { Engine } from "./Core/Engine.js";
|
|
2
|
+
export * from "./Core/Interfaces/Colors.js";
|
|
3
|
+
export * from "./Core/Interfaces/IBounds.js";
|
|
4
|
+
export * from "./Core/Interfaces/IBubbleParticleData.js";
|
|
5
|
+
export * from "./Core/Interfaces/ICircleBouncer.js";
|
|
6
|
+
export * from "./Core/Interfaces/IColorManager.js";
|
|
7
|
+
export * from "./Core/Interfaces/IContainerInteractivity.js";
|
|
8
|
+
export * from "./Core/Interfaces/IContainerPlugin.js";
|
|
9
|
+
export * from "./Core/Interfaces/ICoordinates.js";
|
|
10
|
+
export * from "./Core/Interfaces/IDelta.js";
|
|
11
|
+
export * from "./Core/Interfaces/IDimension.js";
|
|
12
|
+
export * from "./Core/Interfaces/IDistance.js";
|
|
13
|
+
export * from "./Core/Interfaces/IDrawParticleParams.js";
|
|
14
|
+
export * from "./Core/Interfaces/IExternalInteractor.js";
|
|
15
|
+
export * from "./Core/Interfaces/IInteractor.js";
|
|
16
|
+
export * from "./Core/Interfaces/ILoadParams.js";
|
|
17
|
+
export * from "./Core/Interfaces/IMouseData.js";
|
|
18
|
+
export * from "./Core/Interfaces/IMovePathGenerator.js";
|
|
19
|
+
export * from "./Core/Interfaces/IParticle.js";
|
|
20
|
+
export * from "./Core/Interfaces/IParticleColorStyle.js";
|
|
21
|
+
export * from "./Core/Interfaces/IParticleHslAnimation.js";
|
|
22
|
+
export * from "./Core/Interfaces/IParticleLife.js";
|
|
23
|
+
export * from "./Core/Interfaces/IParticleMover.js";
|
|
24
|
+
export * from "./Core/Interfaces/IParticleRetinaProps.js";
|
|
25
|
+
export * from "./Core/Interfaces/IParticleRoll.js";
|
|
26
|
+
export * from "./Core/Interfaces/IParticleTransformValues.js";
|
|
27
|
+
export * from "./Core/Interfaces/IParticleUpdater.js";
|
|
28
|
+
export * from "./Core/Interfaces/IParticleValueAnimation.js";
|
|
29
|
+
export * from "./Core/Interfaces/IParticlesInteractor.js";
|
|
30
|
+
export * from "./Core/Interfaces/IPlugin.js";
|
|
31
|
+
export * from "./Core/Interfaces/IPositionFromSizeParams.js";
|
|
32
|
+
export * from "./Core/Interfaces/IRangeValue.js";
|
|
33
|
+
export * from "./Core/Interfaces/IRectSideResult.js";
|
|
34
|
+
export * from "./Core/Interfaces/IShapeDrawer.js";
|
|
35
|
+
export * from "./Core/Interfaces/IShapeValues.js";
|
|
36
|
+
export * from "./Core/Interfaces/ISlowParticleData.js";
|
|
37
|
+
export * from "./Core/Interfaces/ITrailFillData.js";
|
|
38
|
+
export * from "./Options/Interfaces/Background/IBackground.js";
|
|
39
|
+
export * from "./Options/Interfaces/BackgroundMask/IBackgroundMask.js";
|
|
40
|
+
export * from "./Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js";
|
|
41
|
+
export * from "./Options/Interfaces/FullScreen/IFullScreen.js";
|
|
42
|
+
export * from "./Options/Interfaces/IAnimatable.js";
|
|
43
|
+
export * from "./Options/Interfaces/IAnimatableColor.js";
|
|
44
|
+
export * from "./Options/Interfaces/IAnimation.js";
|
|
45
|
+
export * from "./Options/Interfaces/IColorAnimation.js";
|
|
46
|
+
export * from "./Options/Interfaces/IHslAnimation.js";
|
|
47
|
+
export * from "./Options/Interfaces/IManualParticle.js";
|
|
48
|
+
export * from "./Options/Interfaces/IOptionLoader.js";
|
|
49
|
+
export * from "./Options/Interfaces/IOptions.js";
|
|
50
|
+
export * from "./Options/Interfaces/IOptionsColor.js";
|
|
51
|
+
export * from "./Options/Interfaces/IResponsive.js";
|
|
52
|
+
export * from "./Options/Interfaces/IValueWithRandom.js";
|
|
53
|
+
export * from "./Options/Interfaces/Interactivity/Events/IClickEvent.js";
|
|
54
|
+
export * from "./Options/Interfaces/Interactivity/Events/IDivEvent.js";
|
|
55
|
+
export * from "./Options/Interfaces/Interactivity/Events/IEvents.js";
|
|
56
|
+
export * from "./Options/Interfaces/Interactivity/Events/IHoverEvent.js";
|
|
57
|
+
export * from "./Options/Interfaces/Interactivity/Events/IParallax.js";
|
|
58
|
+
export * from "./Options/Interfaces/Interactivity/Events/IResizeEvent.js";
|
|
59
|
+
export * from "./Options/Interfaces/Interactivity/Modes/IModeDiv.js";
|
|
60
|
+
export * from "./Options/Interfaces/Interactivity/Modes/IModes.js";
|
|
61
|
+
export * from "./Options/Interfaces/Interactivity/IInteractivity.js";
|
|
62
|
+
export * from "./Options/Interfaces/Particles/Bounce/IParticlesBounce.js";
|
|
63
|
+
export * from "./Options/Interfaces/Particles/Collisions/ICollisions.js";
|
|
64
|
+
export * from "./Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js";
|
|
65
|
+
export * from "./Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js";
|
|
66
|
+
export * from "./Options/Interfaces/Particles/IParticlesOptions.js";
|
|
67
|
+
export * from "./Options/Interfaces/Particles/IShadow.js";
|
|
68
|
+
export * from "./Options/Interfaces/Particles/IStroke.js";
|
|
69
|
+
export * from "./Options/Interfaces/Particles/Move/IMoveAttract.js";
|
|
70
|
+
export * from "./Options/Interfaces/Particles/Move/IMove.js";
|
|
71
|
+
export * from "./Options/Interfaces/Particles/Move/IMoveAngle.js";
|
|
72
|
+
export * from "./Options/Interfaces/Particles/Move/IMoveCenter.js";
|
|
73
|
+
export * from "./Options/Interfaces/Particles/Move/IMoveGravity.js";
|
|
74
|
+
export * from "./Options/Interfaces/Particles/Move/Path/IMovePath.js";
|
|
75
|
+
export * from "./Options/Interfaces/Particles/Move/IOutModes.js";
|
|
76
|
+
export * from "./Options/Interfaces/Particles/Move/ISpin.js";
|
|
77
|
+
export * from "./Options/Interfaces/Particles/Move/IMoveTrail.js";
|
|
78
|
+
export * from "./Options/Interfaces/Particles/Number/IParticlesDensity.js";
|
|
79
|
+
export * from "./Options/Interfaces/Particles/Number/IParticlesNumber.js";
|
|
80
|
+
export * from "./Options/Interfaces/Particles/Opacity/IOpacity.js";
|
|
81
|
+
export * from "./Options/Interfaces/Particles/Opacity/IOpacityAnimation.js";
|
|
82
|
+
export * from "./Options/Interfaces/Particles/Shape/IShape.js";
|
|
83
|
+
export * from "./Options/Interfaces/Particles/Size/ISize.js";
|
|
84
|
+
export * from "./Options/Interfaces/Particles/Size/ISizeAnimation.js";
|
|
85
|
+
export * from "./Options/Interfaces/Particles/ZIndex/IZIndex.js";
|
|
86
|
+
export * from "./Options/Interfaces/Theme/ITheme.js";
|
|
87
|
+
export * from "./Options/Interfaces/Theme/IThemeDefault.js";
|
|
88
|
+
export * from "./Types/CustomEventArgs.js";
|
|
89
|
+
export * from "./Types/CustomEventListener.js";
|
|
90
|
+
export * from "./Types/ExportResult.js";
|
|
91
|
+
export * from "./Types/ISourceOptions.js";
|
|
92
|
+
export * from "./Types/ParticlesGroups.js";
|
|
93
|
+
export * from "./Types/PathOptions.js";
|
|
94
|
+
export * from "./Types/RangeValue.js";
|
|
95
|
+
export * from "./Types/RecursivePartial.js";
|
|
96
|
+
export * from "./Types/ShapeData.js";
|
|
97
|
+
export * from "./Types/ShapeDrawerFunctions.js";
|
|
98
|
+
export * from "./Types/SingleOrMultiple.js";
|
|
99
|
+
export type { EventListeners } from "./Core/Utils/EventListeners.js";
|
|
100
|
+
export type { InteractionManager } from "./Core/Utils/InteractionManager.js";
|
|
101
|
+
export type { QuadTree } from "./Core/Utils/QuadTree.js";
|
|
102
|
+
export type { Canvas } from "./Core/Canvas.js";
|
|
103
|
+
export type { Container } from "./Core/Container.js";
|
|
104
|
+
export type { Particle } from "./Core/Particle.js";
|
|
105
|
+
export type { Particles } from "./Core/Particles.js";
|
|
106
|
+
export type { Retina } from "./Core/Retina.js";
|
|
107
|
+
export type { Engine, Engine as Main };
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
export * from "./Core/Utils/Circle.js";
|
|
2
|
+
export * from "./Core/Utils/Constants.js";
|
|
3
|
+
export * from "./Core/Utils/ExternalInteractorBase.js";
|
|
4
|
+
export * from "./Core/Utils/ParticlesInteractorBase.js";
|
|
5
|
+
export * from "./Core/Utils/Point.js";
|
|
6
|
+
export * from "./Core/Utils/Range.js";
|
|
7
|
+
export * from "./Core/Utils/Rectangle.js";
|
|
8
|
+
export * from "./Core/Utils/Vector.js";
|
|
9
|
+
export * from "./Core/Utils/Vector3d.js";
|
|
10
|
+
export * from "./Enums/Directions/MoveDirection.js";
|
|
11
|
+
export * from "./Enums/Directions/RotateDirection.js";
|
|
12
|
+
export * from "./Enums/Directions/OutModeDirection.js";
|
|
13
|
+
export * from "./Enums/Modes/AnimationMode.js";
|
|
14
|
+
export * from "./Enums/Modes/ClickMode.js";
|
|
15
|
+
export * from "./Enums/Modes/DivMode.js";
|
|
16
|
+
export * from "./Enums/Modes/HoverMode.js";
|
|
17
|
+
export * from "./Enums/Modes/CollisionMode.js";
|
|
18
|
+
export * from "./Enums/Modes/OutMode.js";
|
|
19
|
+
export * from "./Enums/Modes/PixelMode.js";
|
|
20
|
+
export * from "./Enums/Modes/ThemeMode.js";
|
|
21
|
+
export * from "./Enums/Modes/ResponsiveMode.js";
|
|
22
|
+
export * from "./Enums/Types/AlterType.js";
|
|
23
|
+
export * from "./Enums/Types/DestroyType.js";
|
|
24
|
+
export * from "./Enums/Types/GradientType.js";
|
|
25
|
+
export * from "./Enums/Types/InteractorType.js";
|
|
26
|
+
export * from "./Enums/Types/ParticleOutType.js";
|
|
27
|
+
export * from "./Enums/Types/StartValueType.js";
|
|
28
|
+
export * from "./Enums/Types/DivType.js";
|
|
29
|
+
export * from "./Enums/Types/EasingType.js";
|
|
30
|
+
export * from "./Enums/Types/EventType.js";
|
|
31
|
+
export * from "./Enums/AnimationStatus.js";
|
|
32
|
+
export * from "./Enums/InteractivityDetect.js";
|
|
33
|
+
export * from "./Options/Classes/AnimatableColor.js";
|
|
34
|
+
export * from "./Options/Classes/AnimationOptions.js";
|
|
35
|
+
export * from "./Options/Classes/Background/Background.js";
|
|
36
|
+
export * from "./Options/Classes/BackgroundMask/BackgroundMask.js";
|
|
37
|
+
export * from "./Options/Classes/BackgroundMask/BackgroundMaskCover.js";
|
|
38
|
+
export * from "./Options/Classes/ColorAnimation.js";
|
|
39
|
+
export * from "./Options/Classes/FullScreen/FullScreen.js";
|
|
40
|
+
export * from "./Options/Classes/HslAnimation.js";
|
|
41
|
+
export * from "./Options/Classes/Interactivity/Events/ClickEvent.js";
|
|
42
|
+
export * from "./Options/Classes/Interactivity/Events/DivEvent.js";
|
|
43
|
+
export * from "./Options/Classes/Interactivity/Events/ClickEvent.js";
|
|
44
|
+
export * from "./Options/Classes/Interactivity/Events/DivEvent.js";
|
|
45
|
+
export * from "./Options/Classes/Interactivity/Events/Events.js";
|
|
46
|
+
export * from "./Options/Classes/Interactivity/Events/HoverEvent.js";
|
|
47
|
+
export * from "./Options/Classes/Interactivity/Events/Parallax.js";
|
|
48
|
+
export * from "./Options/Classes/Interactivity/Events/ResizeEvent.js";
|
|
49
|
+
export * from "./Options/Classes/Interactivity/Interactivity.js";
|
|
50
|
+
export * from "./Options/Classes/Interactivity/Modes/Modes.js";
|
|
51
|
+
export * from "./Options/Classes/ManualParticle.js";
|
|
52
|
+
export * from "./Options/Classes/Options.js";
|
|
53
|
+
export * from "./Options/Classes/OptionsColor.js";
|
|
54
|
+
export * from "./Options/Classes/Particles/Bounce/ParticlesBounce.js";
|
|
55
|
+
export * from "./Options/Classes/Particles/Bounce/ParticlesBounceFactor.js";
|
|
56
|
+
export * from "./Options/Classes/Particles/Collisions/Collisions.js";
|
|
57
|
+
export * from "./Options/Classes/Particles/Collisions/CollisionsAbsorb.js";
|
|
58
|
+
export * from "./Options/Classes/Particles/Collisions/CollisionsOverlap.js";
|
|
59
|
+
export * from "./Options/Classes/Particles/ParticlesOptions.js";
|
|
60
|
+
export * from "./Options/Classes/Particles/Shadow.js";
|
|
61
|
+
export * from "./Options/Classes/Particles/Stroke.js";
|
|
62
|
+
export * from "./Options/Classes/Particles/Move/MoveAttract.js";
|
|
63
|
+
export * from "./Options/Classes/Particles/Move/Move.js";
|
|
64
|
+
export * from "./Options/Classes/Particles/Move/MoveAngle.js";
|
|
65
|
+
export * from "./Options/Classes/Particles/Move/MoveCenter.js";
|
|
66
|
+
export * from "./Options/Classes/Particles/Move/MoveGravity.js";
|
|
67
|
+
export * from "./Options/Classes/Particles/Move/OutModes.js";
|
|
68
|
+
export * from "./Options/Classes/Particles/Move/Path/MovePath.js";
|
|
69
|
+
export * from "./Options/Classes/Particles/Move/Spin.js";
|
|
70
|
+
export * from "./Options/Classes/Particles/Move/MoveTrail.js";
|
|
71
|
+
export * from "./Options/Classes/Particles/Number/ParticlesNumber.js";
|
|
72
|
+
export * from "./Options/Classes/Particles/Number/ParticlesDensity.js";
|
|
73
|
+
export * from "./Options/Classes/Particles/Opacity/Opacity.js";
|
|
74
|
+
export * from "./Options/Classes/Particles/Opacity/OpacityAnimation.js";
|
|
75
|
+
export * from "./Options/Classes/Particles/Shape/Shape.js";
|
|
76
|
+
export * from "./Options/Classes/Particles/Size/Size.js";
|
|
77
|
+
export * from "./Options/Classes/Particles/Size/SizeAnimation.js";
|
|
78
|
+
export * from "./Options/Classes/Particles/ZIndex/ZIndex.js";
|
|
79
|
+
export * from "./Options/Classes/Responsive.js";
|
|
80
|
+
export * from "./Options/Classes/Theme/Theme.js";
|
|
81
|
+
export * from "./Options/Classes/Theme/ThemeDefault.js";
|
|
82
|
+
export * from "./Options/Classes/ValueWithRandom.js";
|
|
83
|
+
export * from "./Utils/CanvasUtils.js";
|
|
84
|
+
export * from "./Utils/ColorUtils.js";
|
|
85
|
+
export * from "./Utils/HslColorManager.js";
|
|
86
|
+
export * from "./Utils/NumberUtils.js";
|
|
87
|
+
export * from "./Utils/OptionsUtils.js";
|
|
88
|
+
export * from "./Utils/RgbColorManager.js";
|
|
89
|
+
export * from "./Utils/Utils.js";
|