@tsparticles/engine 3.9.1 → 4.0.0-alpha.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/638.min.js +2 -0
- package/638.min.js.LICENSE.txt +1 -0
- package/browser/Core/Canvas.js +126 -181
- package/browser/Core/Container.js +22 -18
- package/browser/Core/Engine.js +64 -54
- package/browser/Core/Particle.js +43 -48
- package/browser/Core/Particles.js +33 -24
- package/browser/Core/Retina.js +2 -3
- package/browser/Core/Utils/Constants.js +2 -2
- package/browser/Core/Utils/EventListeners.js +74 -64
- package/browser/Core/Utils/QuadTree.js +1 -1
- package/browser/Core/Utils/Ranges.js +2 -2
- package/browser/Core/Utils/Vectors.js +15 -21
- package/browser/Options/Classes/AnimatableColor.js +3 -3
- package/browser/Options/Classes/AnimationOptions.js +1 -1
- package/browser/Options/Classes/ColorAnimation.js +1 -1
- package/browser/Options/Classes/Options.js +13 -10
- package/browser/Options/Classes/Particles/Move/Move.js +1 -4
- package/browser/Options/Classes/Particles/Move/MoveAngle.js +1 -1
- package/browser/Options/Classes/Particles/Move/MoveAttract.js +1 -1
- package/browser/Options/Classes/Particles/Move/MoveGravity.js +1 -1
- package/browser/Options/Classes/Particles/Move/Spin.js +1 -1
- package/browser/Options/Classes/Particles/ParticlesOptions.js +0 -6
- package/browser/Options/Classes/Particles/Stroke.js +1 -1
- package/browser/Options/Classes/ValueWithRandom.js +1 -1
- package/browser/Utils/CanvasUtils.js +65 -21
- package/browser/Utils/ColorUtils.js +61 -45
- package/browser/Utils/EventDispatcher.js +3 -1
- package/browser/Utils/LogUtils.js +22 -0
- package/browser/Utils/{NumberUtils.js → MathUtils.js} +14 -7
- package/browser/Utils/Utils.js +23 -125
- package/browser/bundle.js +3 -3
- package/browser/export-types.js +1 -99
- package/browser/exports.js +2 -9
- package/browser/index.js +3 -7
- package/browser/initEngine.js +4 -0
- package/cjs/Core/Canvas.js +136 -195
- package/cjs/Core/Container.js +57 -57
- package/cjs/Core/Engine.js +77 -71
- package/cjs/Core/Interfaces/Colors.js +1 -2
- package/cjs/Core/Interfaces/IBounds.js +1 -2
- package/cjs/Core/Interfaces/IBubbleParticleData.js +1 -2
- package/cjs/Core/Interfaces/ICircleBouncer.js +1 -2
- package/cjs/Core/Interfaces/IColorManager.js +1 -2
- package/cjs/Core/Interfaces/IContainerInteractivity.js +1 -2
- package/cjs/Core/Interfaces/IContainerPlugin.js +1 -2
- package/cjs/Core/Interfaces/ICoordinates.js +1 -2
- package/cjs/Core/Interfaces/IDelta.js +1 -2
- package/cjs/Core/Interfaces/IDimension.js +1 -2
- package/cjs/Core/Interfaces/IDistance.js +1 -2
- package/cjs/Core/Interfaces/IDrawParticleParams.js +1 -2
- package/cjs/Core/Interfaces/IEffectDrawer.js +1 -2
- package/cjs/Core/Interfaces/IExternalInteractor.js +1 -2
- package/cjs/Core/Interfaces/IInteractor.js +1 -2
- package/cjs/Core/Interfaces/ILoadParams.js +1 -2
- package/cjs/Core/Interfaces/IMouseData.js +1 -2
- package/cjs/Core/Interfaces/IMovePathGenerator.js +1 -2
- package/cjs/Core/Interfaces/IParticleColorStyle.js +1 -2
- package/cjs/Core/Interfaces/IParticleHslAnimation.js +1 -2
- package/cjs/Core/Interfaces/IParticleLife.js +1 -2
- package/cjs/Core/Interfaces/IParticleMover.js +1 -2
- package/cjs/Core/Interfaces/IParticleRetinaProps.js +1 -2
- package/cjs/Core/Interfaces/IParticleRoll.js +1 -2
- package/cjs/Core/Interfaces/IParticleTransformValues.js +1 -2
- package/cjs/Core/Interfaces/IParticleUpdater.js +1 -2
- package/cjs/Core/Interfaces/IParticleValueAnimation.js +1 -2
- package/cjs/Core/Interfaces/IParticlesInteractor.js +1 -2
- package/cjs/Core/Interfaces/IPlugin.js +1 -2
- package/cjs/Core/Interfaces/IPositionFromSizeParams.js +1 -2
- package/cjs/Core/Interfaces/IRangeValue.js +1 -2
- package/cjs/Core/Interfaces/IShapeDrawData.js +1 -2
- package/cjs/Core/Interfaces/IShapeDrawer.js +1 -2
- package/cjs/Core/Interfaces/IShapeValues.js +1 -2
- package/cjs/Core/Interfaces/ISlowParticleData.js +1 -2
- package/cjs/Core/Particle.js +99 -108
- package/cjs/Core/Particles.js +63 -58
- package/cjs/Core/Retina.js +13 -18
- package/cjs/Core/Utils/Constants.js +3 -7
- package/cjs/Core/Utils/EventListeners.js +94 -88
- package/cjs/Core/Utils/ExternalInteractorBase.js +3 -7
- package/cjs/Core/Utils/InteractionManager.js +4 -8
- package/cjs/Core/Utils/ParticlesInteractorBase.js +3 -7
- package/cjs/Core/Utils/Point.js +1 -5
- package/cjs/Core/Utils/QuadTree.js +10 -14
- package/cjs/Core/Utils/Ranges.js +14 -20
- package/cjs/Core/Utils/Vectors.js +24 -35
- package/cjs/Enums/AnimationStatus.js +2 -5
- package/cjs/Enums/Directions/MoveDirection.js +2 -5
- package/cjs/Enums/Directions/OutModeDirection.js +2 -5
- package/cjs/Enums/Directions/RotateDirection.js +2 -5
- package/cjs/Enums/InteractivityDetect.js +2 -5
- package/cjs/Enums/Modes/AnimationMode.js +2 -5
- package/cjs/Enums/Modes/LimitMode.js +2 -5
- package/cjs/Enums/Modes/OutMode.js +2 -5
- package/cjs/Enums/Modes/PixelMode.js +2 -5
- package/cjs/Enums/Modes/ResponsiveMode.js +2 -5
- package/cjs/Enums/Modes/ThemeMode.js +2 -5
- package/cjs/Enums/Types/AlterType.js +2 -5
- package/cjs/Enums/Types/DestroyType.js +2 -5
- package/cjs/Enums/Types/DivType.js +2 -5
- package/cjs/Enums/Types/EasingType.js +2 -5
- package/cjs/Enums/Types/EventType.js +2 -5
- package/cjs/Enums/Types/GradientType.js +2 -5
- package/cjs/Enums/Types/InteractorType.js +2 -5
- package/cjs/Enums/Types/ParticleOutType.js +2 -5
- package/cjs/Enums/Types/StartValueType.js +2 -5
- package/cjs/Options/Classes/AnimatableColor.js +10 -14
- package/cjs/Options/Classes/AnimationOptions.js +14 -19
- package/cjs/Options/Classes/Background/Background.js +6 -10
- package/cjs/Options/Classes/ColorAnimation.js +6 -10
- package/cjs/Options/Classes/FullScreen/FullScreen.js +3 -7
- package/cjs/Options/Classes/HslAnimation.js +7 -11
- package/cjs/Options/Classes/Interactivity/Events/ClickEvent.js +3 -7
- package/cjs/Options/Classes/Interactivity/Events/DivEvent.js +5 -9
- package/cjs/Options/Classes/Interactivity/Events/Events.js +14 -18
- package/cjs/Options/Classes/Interactivity/Events/HoverEvent.js +5 -9
- package/cjs/Options/Classes/Interactivity/Events/Parallax.js +3 -7
- package/cjs/Options/Classes/Interactivity/Events/ResizeEvent.js +3 -7
- package/cjs/Options/Classes/Interactivity/Interactivity.js +9 -13
- package/cjs/Options/Classes/Interactivity/Modes/Modes.js +3 -7
- package/cjs/Options/Classes/ManualParticle.js +10 -14
- package/cjs/Options/Classes/Options.js +41 -42
- package/cjs/Options/Classes/OptionsColor.js +5 -9
- package/cjs/Options/Classes/Particles/Bounce/ParticlesBounce.js +6 -10
- package/cjs/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +2 -6
- package/cjs/Options/Classes/Particles/Effect/Effect.js +5 -9
- package/cjs/Options/Classes/Particles/Move/Move.js +26 -33
- package/cjs/Options/Classes/Particles/Move/MoveAngle.js +6 -10
- package/cjs/Options/Classes/Particles/Move/MoveAttract.js +5 -9
- package/cjs/Options/Classes/Particles/Move/MoveCenter.js +5 -9
- package/cjs/Options/Classes/Particles/Move/MoveGravity.js +6 -10
- package/cjs/Options/Classes/Particles/Move/OutModes.js +5 -9
- package/cjs/Options/Classes/Particles/Move/Path/MovePath.js +7 -11
- package/cjs/Options/Classes/Particles/Move/Spin.js +7 -11
- package/cjs/Options/Classes/Particles/Number/ParticlesDensity.js +3 -7
- package/cjs/Options/Classes/Particles/Number/ParticlesNumber.js +7 -11
- package/cjs/Options/Classes/Particles/Number/ParticlesNumberLimit.js +5 -9
- package/cjs/Options/Classes/Particles/Opacity/Opacity.js +6 -10
- package/cjs/Options/Classes/Particles/Opacity/OpacityAnimation.js +6 -10
- package/cjs/Options/Classes/Particles/ParticlesOptions.js +29 -39
- package/cjs/Options/Classes/Particles/Shape/Shape.js +5 -9
- package/cjs/Options/Classes/Particles/Size/Size.js +6 -10
- package/cjs/Options/Classes/Particles/Size/SizeAnimation.js +6 -10
- package/cjs/Options/Classes/Particles/Stroke.js +8 -12
- package/cjs/Options/Classes/Particles/ZIndex/ZIndex.js +4 -8
- package/cjs/Options/Classes/Responsive.js +13 -17
- package/cjs/Options/Classes/Theme/Theme.js +7 -11
- package/cjs/Options/Classes/Theme/ThemeDefault.js +5 -9
- package/cjs/Options/Classes/ValueWithRandom.js +12 -18
- package/cjs/Options/Interfaces/Background/IBackground.js +1 -2
- package/cjs/Options/Interfaces/FullScreen/IFullScreen.js +1 -2
- package/cjs/Options/Interfaces/IAnimatable.js +1 -2
- package/cjs/Options/Interfaces/IAnimatableColor.js +1 -2
- package/cjs/Options/Interfaces/IAnimation.js +1 -2
- package/cjs/Options/Interfaces/IColorAnimation.js +1 -2
- package/cjs/Options/Interfaces/IHslAnimation.js +1 -2
- package/cjs/Options/Interfaces/IManualParticle.js +1 -2
- package/cjs/Options/Interfaces/IOptionLoader.js +1 -2
- package/cjs/Options/Interfaces/IOptions.js +1 -2
- package/cjs/Options/Interfaces/IOptionsColor.js +1 -2
- package/cjs/Options/Interfaces/IResponsive.js +1 -2
- package/cjs/Options/Interfaces/IValueWithRandom.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Events/IClickEvent.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Events/IDivEvent.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Events/IEvents.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Events/IHoverEvent.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Events/IParallax.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Events/IResizeEvent.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/IInteractivity.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Modes/IModeDiv.js +1 -2
- package/cjs/Options/Interfaces/Interactivity/Modes/IModes.js +1 -2
- package/cjs/Options/Interfaces/Particles/Bounce/IParticlesBounce.js +1 -2
- package/cjs/Options/Interfaces/Particles/Effect/IEffect.js +1 -2
- package/cjs/Options/Interfaces/Particles/IParticlesOptions.js +1 -2
- package/cjs/Options/Interfaces/Particles/IStroke.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/IMove.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/IMoveAngle.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/IMoveAttract.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/IMoveCenter.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/IMoveGravity.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/IOutModes.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/ISpin.js +1 -2
- package/cjs/Options/Interfaces/Particles/Move/Path/IMovePath.js +1 -2
- package/cjs/Options/Interfaces/Particles/Number/IParticlesDensity.js +1 -2
- package/cjs/Options/Interfaces/Particles/Number/IParticlesNumber.js +1 -2
- package/cjs/Options/Interfaces/Particles/Number/IParticlesNumberLimit.js +1 -2
- package/cjs/Options/Interfaces/Particles/Opacity/IOpacity.js +1 -2
- package/cjs/Options/Interfaces/Particles/Opacity/IOpacityAnimation.js +1 -2
- package/cjs/Options/Interfaces/Particles/Shape/IShape.js +1 -2
- package/cjs/Options/Interfaces/Particles/Size/ISize.js +1 -2
- package/cjs/Options/Interfaces/Particles/Size/ISizeAnimation.js +1 -2
- package/cjs/Options/Interfaces/Particles/ZIndex/IZIndex.js +1 -2
- package/cjs/Options/Interfaces/Theme/ITheme.js +1 -2
- package/cjs/Options/Interfaces/Theme/IThemeDefault.js +1 -2
- package/cjs/Types/CustomEventArgs.js +1 -2
- package/cjs/Types/CustomEventListener.js +1 -2
- package/cjs/Types/EasingFunction.js +1 -2
- package/cjs/Types/ExportResult.js +1 -2
- package/cjs/Types/ISourceOptions.js +1 -2
- package/cjs/Types/ParticlesGroups.js +1 -2
- package/cjs/Types/PathOptions.js +1 -2
- package/cjs/Types/RangeValue.js +1 -2
- package/cjs/Types/RecursivePartial.js +1 -2
- package/cjs/Types/ShapeData.js +1 -2
- package/cjs/Types/SingleOrMultiple.js +1 -2
- package/cjs/Utils/CanvasUtils.js +86 -55
- package/cjs/Utils/ColorUtils.js +136 -141
- package/cjs/Utils/EventDispatcher.js +8 -10
- package/cjs/Utils/LogUtils.js +22 -0
- package/{esm/Utils/NumberUtils.js → cjs/Utils/MathUtils.js} +14 -7
- package/cjs/Utils/OptionsUtils.js +4 -8
- package/cjs/Utils/TypeUtils.js +7 -16
- package/cjs/Utils/Utils.js +104 -239
- package/cjs/bundle.js +5 -22
- package/cjs/export-types.js +1 -115
- package/cjs/exports.js +77 -100
- package/cjs/index.js +5 -26
- package/cjs/initEngine.js +4 -0
- package/dist_browser_Core_Container_js.js +102 -0
- package/esm/Core/Canvas.js +126 -181
- package/esm/Core/Container.js +22 -18
- package/esm/Core/Engine.js +64 -54
- package/esm/Core/Particle.js +43 -48
- package/esm/Core/Particles.js +33 -24
- package/esm/Core/Retina.js +2 -3
- package/esm/Core/Utils/Constants.js +2 -2
- package/esm/Core/Utils/EventListeners.js +74 -64
- package/esm/Core/Utils/QuadTree.js +1 -1
- package/esm/Core/Utils/Ranges.js +2 -2
- package/esm/Core/Utils/Vectors.js +15 -21
- package/esm/Enums/RangeType.js +5 -0
- package/esm/Options/Classes/AnimatableColor.js +3 -3
- package/esm/Options/Classes/AnimationOptions.js +1 -1
- package/esm/Options/Classes/ColorAnimation.js +1 -1
- package/esm/Options/Classes/Options.js +13 -10
- package/esm/Options/Classes/Particles/Move/Move.js +1 -4
- package/esm/Options/Classes/Particles/Move/MoveAngle.js +1 -1
- package/esm/Options/Classes/Particles/Move/MoveAttract.js +1 -1
- package/esm/Options/Classes/Particles/Move/MoveGravity.js +1 -1
- package/esm/Options/Classes/Particles/Move/Spin.js +1 -1
- package/esm/Options/Classes/Particles/ParticlesOptions.js +0 -6
- package/esm/Options/Classes/Particles/Stroke.js +1 -1
- package/esm/Options/Classes/ValueWithRandom.js +1 -1
- package/esm/Utils/CanvasUtils.js +65 -21
- package/esm/Utils/ColorUtils.js +61 -45
- package/esm/Utils/EventDispatcher.js +3 -1
- package/esm/Utils/LogUtils.js +22 -0
- package/esm/Utils/MathUtils.js +158 -0
- package/esm/Utils/Utils.js +23 -125
- package/esm/bundle.js +3 -3
- package/esm/export-types.js +1 -99
- package/esm/exports.js +2 -9
- package/esm/index.js +3 -7
- package/esm/initEngine.js +4 -0
- package/package.json +3 -2
- package/report.html +5 -4
- package/scripts/install.js +204 -118
- package/tsparticles.engine.js +492 -451
- package/tsparticles.engine.min.js +1 -1
- package/tsparticles.engine.min.js.LICENSE.txt +1 -1
- package/types/Core/Canvas.d.ts +6 -9
- package/types/Core/Container.d.ts +1 -0
- package/types/Core/Engine.d.ts +20 -16
- package/types/Core/Interfaces/Colors.d.ts +46 -2
- package/types/Core/Interfaces/IColorManager.d.ts +1 -1
- package/types/Core/Interfaces/IContainerPlugin.d.ts +4 -0
- package/types/Core/Interfaces/IDrawParticleParams.d.ts +0 -4
- package/types/Core/Interfaces/IEffectDrawer.d.ts +2 -1
- package/types/Core/Interfaces/IShapeDrawData.d.ts +2 -0
- package/types/Core/Interfaces/IShapeDrawer.d.ts +1 -0
- package/types/Core/Particle.d.ts +4 -5
- package/types/Core/Particles.d.ts +1 -1
- package/types/Core/Utils/Constants.d.ts +2 -2
- package/types/Core/Utils/EventListeners.d.ts +1 -0
- package/types/Core/Utils/Vectors.d.ts +3 -3
- package/types/Options/Classes/Options.d.ts +1 -2
- package/types/Options/Classes/OptionsColor.d.ts +2 -2
- package/types/Options/Classes/Particles/Move/Move.d.ts +0 -2
- package/types/Options/Classes/Particles/ParticlesOptions.d.ts +0 -4
- package/types/Options/Interfaces/IOptions.d.ts +1 -2
- package/types/Options/Interfaces/Particles/IParticlesOptions.d.ts +0 -4
- package/types/Options/Interfaces/Particles/Move/IMove.d.ts +0 -2
- package/types/Utils/CanvasUtils.d.ts +4 -1
- package/types/Utils/ColorUtils.d.ts +2 -2
- package/types/Utils/LogUtils.d.ts +11 -0
- package/types/Utils/{NumberUtils.d.ts → MathUtils.d.ts} +2 -1
- package/types/Utils/TypeUtils.d.ts +2 -2
- package/types/Utils/Utils.d.ts +4 -16
- package/types/export-types.d.ts +91 -101
- package/types/exports.d.ts +2 -9
- package/types/index.d.ts +1 -1
- package/types/initEngine.d.ts +2 -0
- package/umd/Core/Canvas.js +123 -178
- package/umd/Core/Container.js +25 -21
- package/umd/Core/Engine.js +97 -53
- package/umd/Core/Particle.js +54 -59
- package/umd/Core/Particles.js +33 -24
- package/umd/Core/Retina.js +9 -10
- package/umd/Core/Utils/Constants.js +3 -3
- package/umd/Core/Utils/EventListeners.js +72 -62
- package/umd/Core/Utils/QuadTree.js +3 -3
- package/umd/Core/Utils/Ranges.js +4 -4
- package/umd/Core/Utils/Vectors.js +15 -21
- package/umd/Options/Classes/AnimatableColor.js +3 -3
- package/umd/Options/Classes/AnimationOptions.js +6 -6
- package/umd/Options/Classes/ColorAnimation.js +3 -3
- package/umd/Options/Classes/Options.js +16 -13
- package/umd/Options/Classes/Particles/Move/Move.js +5 -8
- package/umd/Options/Classes/Particles/Move/MoveAngle.js +4 -4
- package/umd/Options/Classes/Particles/Move/MoveAttract.js +3 -3
- package/umd/Options/Classes/Particles/Move/MoveGravity.js +4 -4
- package/umd/Options/Classes/Particles/Move/Spin.js +3 -3
- package/umd/Options/Classes/Particles/ParticlesOptions.js +1 -7
- package/umd/Options/Classes/Particles/Stroke.js +4 -4
- package/umd/Options/Classes/ValueWithRandom.js +3 -3
- package/umd/Utils/CanvasUtils.js +69 -22
- package/umd/Utils/ColorUtils.js +72 -56
- package/umd/Utils/EventDispatcher.js +3 -1
- package/umd/Utils/LogUtils.js +36 -0
- package/umd/Utils/{NumberUtils.js → MathUtils.js} +16 -8
- package/umd/Utils/Utils.js +36 -141
- package/umd/bundle.js +4 -4
- package/umd/export-types.js +1 -114
- package/umd/exports.js +3 -10
- package/umd/index.js +4 -8
- package/umd/{init.js → initEngine.js} +3 -5
- package/browser/Core/Interfaces/IRectSideResult.js +0 -1
- package/browser/Core/Interfaces/ITrailFillData.js +0 -1
- package/browser/Enums/Modes/CollisionMode.js +0 -6
- package/browser/Options/Classes/BackgroundMask/BackgroundMask.js +0 -24
- package/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js +0 -21
- package/browser/Options/Classes/Particles/Collisions/Collisions.js +0 -33
- package/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +0 -14
- package/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js +0 -18
- package/browser/Options/Classes/Particles/Move/MoveTrail.js +0 -23
- package/browser/Options/Classes/Particles/Move/MoveTrailFill.js +0 -15
- package/browser/Options/Classes/Particles/Shadow.js +0 -35
- package/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.js +0 -1
- package/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +0 -1
- package/browser/Options/Interfaces/Particles/Collisions/ICollisions.js +0 -1
- package/browser/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +0 -1
- package/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +0 -1
- package/browser/Options/Interfaces/Particles/IShadow.js +0 -1
- package/browser/Options/Interfaces/Particles/Move/IMoveTrail.js +0 -1
- package/browser/Options/Interfaces/Particles/Move/IMoveTrailFill.js +0 -1
- package/browser/init.js +0 -6
- package/cjs/Core/Interfaces/IRectSideResult.js +0 -2
- package/cjs/Core/Interfaces/ITrailFillData.js +0 -2
- package/cjs/Enums/Modes/CollisionMode.js +0 -9
- package/cjs/Options/Classes/BackgroundMask/BackgroundMask.js +0 -28
- package/cjs/Options/Classes/BackgroundMask/BackgroundMaskCover.js +0 -25
- package/cjs/Options/Classes/Particles/Collisions/Collisions.js +0 -37
- package/cjs/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +0 -18
- package/cjs/Options/Classes/Particles/Collisions/CollisionsOverlap.js +0 -22
- package/cjs/Options/Classes/Particles/Move/MoveTrail.js +0 -27
- package/cjs/Options/Classes/Particles/Move/MoveTrailFill.js +0 -19
- package/cjs/Options/Classes/Particles/Shadow.js +0 -39
- package/cjs/Options/Interfaces/BackgroundMask/IBackgroundMask.js +0 -2
- package/cjs/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +0 -2
- package/cjs/Options/Interfaces/Particles/Collisions/ICollisions.js +0 -2
- package/cjs/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +0 -2
- package/cjs/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +0 -2
- package/cjs/Options/Interfaces/Particles/IShadow.js +0 -2
- package/cjs/Options/Interfaces/Particles/Move/IMoveTrail.js +0 -2
- package/cjs/Options/Interfaces/Particles/Move/IMoveTrailFill.js +0 -2
- package/cjs/Types/RangeType.js +0 -8
- package/cjs/Utils/NumberUtils.js +0 -177
- package/cjs/init.js +0 -9
- package/esm/Core/Interfaces/IRectSideResult.js +0 -1
- package/esm/Core/Interfaces/ITrailFillData.js +0 -1
- package/esm/Enums/Modes/CollisionMode.js +0 -6
- package/esm/Options/Classes/BackgroundMask/BackgroundMask.js +0 -24
- package/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.js +0 -21
- package/esm/Options/Classes/Particles/Collisions/Collisions.js +0 -33
- package/esm/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +0 -14
- package/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.js +0 -18
- package/esm/Options/Classes/Particles/Move/MoveTrail.js +0 -23
- package/esm/Options/Classes/Particles/Move/MoveTrailFill.js +0 -15
- package/esm/Options/Classes/Particles/Shadow.js +0 -35
- package/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.js +0 -1
- package/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +0 -1
- package/esm/Options/Interfaces/Particles/Collisions/ICollisions.js +0 -1
- package/esm/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +0 -1
- package/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +0 -1
- package/esm/Options/Interfaces/Particles/IShadow.js +0 -1
- package/esm/Options/Interfaces/Particles/Move/IMoveTrail.js +0 -1
- package/esm/Options/Interfaces/Particles/Move/IMoveTrailFill.js +0 -1
- package/esm/init.js +0 -6
- package/types/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/types/Core/Interfaces/ITrailFillData.d.ts +0 -6
- package/types/Enums/Modes/CollisionMode.d.ts +0 -5
- package/types/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/types/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -11
- package/types/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -18
- package/types/Options/Classes/Particles/Collisions/CollisionsAbsorb.d.ts +0 -8
- package/types/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/types/Options/Classes/Particles/Move/MoveTrail.d.ts +0 -11
- package/types/Options/Classes/Particles/Move/MoveTrailFill.d.ts +0 -9
- package/types/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/types/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -8
- package/types/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -6
- package/types/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -13
- package/types/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.d.ts +0 -3
- package/types/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/types/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/types/Options/Interfaces/Particles/Move/IMoveTrail.d.ts +0 -6
- package/types/Options/Interfaces/Particles/Move/IMoveTrailFill.d.ts +0 -5
- package/types/init.d.ts +0 -2
- package/umd/Core/Interfaces/IRectSideResult.js +0 -12
- package/umd/Core/Interfaces/ITrailFillData.js +0 -12
- package/umd/Enums/Modes/CollisionMode.js +0 -19
- package/umd/Options/Classes/BackgroundMask/BackgroundMask.js +0 -38
- package/umd/Options/Classes/BackgroundMask/BackgroundMaskCover.js +0 -35
- package/umd/Options/Classes/Particles/Collisions/Collisions.js +0 -47
- package/umd/Options/Classes/Particles/Collisions/CollisionsAbsorb.js +0 -28
- package/umd/Options/Classes/Particles/Collisions/CollisionsOverlap.js +0 -32
- package/umd/Options/Classes/Particles/Move/MoveTrail.js +0 -37
- package/umd/Options/Classes/Particles/Move/MoveTrailFill.js +0 -29
- package/umd/Options/Classes/Particles/Shadow.js +0 -49
- package/umd/Options/Interfaces/BackgroundMask/IBackgroundMask.js +0 -12
- package/umd/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.js +0 -12
- package/umd/Options/Interfaces/Particles/Collisions/ICollisions.js +0 -12
- package/umd/Options/Interfaces/Particles/Collisions/ICollisionsAbsorb.js +0 -12
- package/umd/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.js +0 -12
- package/umd/Options/Interfaces/Particles/IShadow.js +0 -12
- package/umd/Options/Interfaces/Particles/Move/IMoveTrail.js +0 -12
- package/umd/Options/Interfaces/Particles/Move/IMoveTrailFill.js +0 -12
- /package/browser/{Types → Enums}/RangeType.js +0 -0
- /package/{esm/Types → cjs/Enums}/RangeType.js +0 -0
- /package/types/{Types → Enums}/RangeType.d.ts +0 -0
- /package/umd/{Types → Enums}/RangeType.js +0 -0
package/types/export-types.d.ts
CHANGED
|
@@ -1,103 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
export * from "./Core/Interfaces/
|
|
3
|
-
export * from "./Core/Interfaces/
|
|
4
|
-
export * from "./Core/Interfaces/
|
|
5
|
-
export * from "./Core/Interfaces/
|
|
6
|
-
export * from "./Core/Interfaces/
|
|
7
|
-
export * from "./Core/Interfaces/
|
|
8
|
-
export * from "./Core/Interfaces/
|
|
9
|
-
export * from "./Core/Interfaces/
|
|
10
|
-
export * from "./Core/Interfaces/
|
|
11
|
-
export * from "./Core/Interfaces/
|
|
12
|
-
export * from "./Core/Interfaces/
|
|
13
|
-
export * from "./Core/Interfaces/
|
|
14
|
-
export * from "./Core/Interfaces/
|
|
15
|
-
export * from "./Core/Interfaces/
|
|
16
|
-
export * from "./Core/Interfaces/
|
|
17
|
-
export * from "./Core/Interfaces/
|
|
18
|
-
export * from "./Core/Interfaces/
|
|
19
|
-
export * from "./Core/Interfaces/
|
|
20
|
-
export * from "./Core/Interfaces/
|
|
21
|
-
export * from "./Core/Interfaces/
|
|
22
|
-
export * from "./Core/Interfaces/
|
|
23
|
-
export * from "./Core/Interfaces/
|
|
24
|
-
export * from "./Core/Interfaces/
|
|
25
|
-
export * from "./Core/Interfaces/
|
|
26
|
-
export * from "./Core/Interfaces/
|
|
27
|
-
export * from "./Core/Interfaces/
|
|
28
|
-
export * from "./Core/Interfaces/
|
|
29
|
-
export * from "./Core/Interfaces/
|
|
30
|
-
export * from "./Core/Interfaces/
|
|
31
|
-
export * from "./Core/Interfaces/
|
|
32
|
-
export * from "./Core/Interfaces/
|
|
33
|
-
export * from "./Core/Interfaces/
|
|
34
|
-
export * from "./Core/Interfaces/
|
|
35
|
-
export * from "./Core/Interfaces/
|
|
36
|
-
export * from "./
|
|
37
|
-
export * from "./
|
|
38
|
-
export * from "./
|
|
39
|
-
export * from "./Options/Interfaces/
|
|
40
|
-
export * from "./Options/Interfaces/
|
|
41
|
-
export * from "./Options/Interfaces/
|
|
42
|
-
export * from "./Options/Interfaces/
|
|
43
|
-
export * from "./Options/Interfaces/
|
|
44
|
-
export * from "./Options/Interfaces/
|
|
45
|
-
export * from "./Options/Interfaces/
|
|
46
|
-
export * from "./Options/Interfaces/
|
|
47
|
-
export * from "./Options/Interfaces/
|
|
48
|
-
export * from "./Options/Interfaces/
|
|
49
|
-
export * from "./Options/Interfaces/
|
|
50
|
-
export * from "./Options/Interfaces/
|
|
51
|
-
export * from "./Options/Interfaces/
|
|
52
|
-
export * from "./Options/Interfaces/
|
|
53
|
-
export * from "./Options/Interfaces/
|
|
54
|
-
export * from "./Options/Interfaces/Interactivity/Events/
|
|
55
|
-
export * from "./Options/Interfaces/Interactivity/
|
|
56
|
-
export * from "./Options/Interfaces/Interactivity/
|
|
57
|
-
export * from "./Options/Interfaces/Interactivity/
|
|
58
|
-
export * from "./Options/Interfaces/
|
|
59
|
-
export * from "./Options/Interfaces/
|
|
60
|
-
export * from "./Options/Interfaces/
|
|
61
|
-
export * from "./Options/Interfaces/
|
|
62
|
-
export * from "./Options/Interfaces/
|
|
63
|
-
export * from "./Options/Interfaces/Particles/
|
|
64
|
-
export * from "./Options/Interfaces/Particles/
|
|
65
|
-
export * from "./Options/Interfaces/Particles/
|
|
66
|
-
export * from "./Options/Interfaces/Particles/
|
|
67
|
-
export * from "./Options/Interfaces/Particles/
|
|
68
|
-
export * from "./Options/Interfaces/Particles/
|
|
69
|
-
export * from "./Options/Interfaces/Particles/
|
|
70
|
-
export * from "./Options/Interfaces/Particles/
|
|
71
|
-
export * from "./Options/Interfaces/Particles/
|
|
72
|
-
export * from "./Options/Interfaces/Particles/
|
|
73
|
-
export * from "./Options/Interfaces/Particles/
|
|
74
|
-
export * from "./Options/Interfaces/Particles/
|
|
75
|
-
export * from "./Options/Interfaces/Particles/
|
|
76
|
-
export * from "./Options/Interfaces/Particles/
|
|
77
|
-
export * from "./Options/Interfaces/Particles/
|
|
78
|
-
export * from "./Options/Interfaces/Particles/
|
|
79
|
-
export * from "./Options/Interfaces/
|
|
80
|
-
export * from "./Options/Interfaces/
|
|
81
|
-
export * from "./
|
|
82
|
-
export * from "./
|
|
83
|
-
export * from "./
|
|
84
|
-
export * from "./
|
|
85
|
-
export * from "./
|
|
86
|
-
export * from "./
|
|
87
|
-
export * from "./
|
|
88
|
-
export * from "./
|
|
89
|
-
export * from "./
|
|
90
|
-
export * from "./
|
|
91
|
-
export * from "./Types/CustomEventArgs.js";
|
|
92
|
-
export * from "./Types/CustomEventListener.js";
|
|
93
|
-
export * from "./Types/ExportResult.js";
|
|
94
|
-
export * from "./Types/ISourceOptions.js";
|
|
95
|
-
export * from "./Types/ParticlesGroups.js";
|
|
96
|
-
export * from "./Types/PathOptions.js";
|
|
97
|
-
export * from "./Types/RangeValue.js";
|
|
98
|
-
export * from "./Types/RecursivePartial.js";
|
|
99
|
-
export * from "./Types/ShapeData.js";
|
|
100
|
-
export * from "./Types/SingleOrMultiple.js";
|
|
1
|
+
export type * from "./Core/Interfaces/Colors.js";
|
|
2
|
+
export type * from "./Core/Interfaces/IBounds.js";
|
|
3
|
+
export type * from "./Core/Interfaces/IBubbleParticleData.js";
|
|
4
|
+
export type * from "./Core/Interfaces/ICircleBouncer.js";
|
|
5
|
+
export type * from "./Core/Interfaces/IColorManager.js";
|
|
6
|
+
export type * from "./Core/Interfaces/IContainerInteractivity.js";
|
|
7
|
+
export type * from "./Core/Interfaces/IContainerPlugin.js";
|
|
8
|
+
export type * from "./Core/Interfaces/ICoordinates.js";
|
|
9
|
+
export type * from "./Core/Interfaces/IDelta.js";
|
|
10
|
+
export type * from "./Core/Interfaces/IDimension.js";
|
|
11
|
+
export type * from "./Core/Interfaces/IDistance.js";
|
|
12
|
+
export type * from "./Core/Interfaces/IDrawParticleParams.js";
|
|
13
|
+
export type * from "./Core/Interfaces/IEffectDrawer.js";
|
|
14
|
+
export type * from "./Core/Interfaces/IExternalInteractor.js";
|
|
15
|
+
export type * from "./Core/Interfaces/IInteractor.js";
|
|
16
|
+
export type * from "./Core/Interfaces/ILoadParams.js";
|
|
17
|
+
export type * from "./Core/Interfaces/IMouseData.js";
|
|
18
|
+
export type * from "./Core/Interfaces/IMovePathGenerator.js";
|
|
19
|
+
export type * from "./Core/Interfaces/IParticleColorStyle.js";
|
|
20
|
+
export type * from "./Core/Interfaces/IParticleHslAnimation.js";
|
|
21
|
+
export type * from "./Core/Interfaces/IParticleLife.js";
|
|
22
|
+
export type * from "./Core/Interfaces/IParticleMover.js";
|
|
23
|
+
export type * from "./Core/Interfaces/IParticleRetinaProps.js";
|
|
24
|
+
export type * from "./Core/Interfaces/IParticleRoll.js";
|
|
25
|
+
export type * from "./Core/Interfaces/IParticleTransformValues.js";
|
|
26
|
+
export type * from "./Core/Interfaces/IParticleUpdater.js";
|
|
27
|
+
export type * from "./Core/Interfaces/IParticleValueAnimation.js";
|
|
28
|
+
export type * from "./Core/Interfaces/IParticlesInteractor.js";
|
|
29
|
+
export type * from "./Core/Interfaces/IPlugin.js";
|
|
30
|
+
export type * from "./Core/Interfaces/IPositionFromSizeParams.js";
|
|
31
|
+
export type * from "./Core/Interfaces/IRangeValue.js";
|
|
32
|
+
export type * from "./Core/Interfaces/IShapeDrawData.js";
|
|
33
|
+
export type * from "./Core/Interfaces/IShapeDrawer.js";
|
|
34
|
+
export type * from "./Core/Interfaces/IShapeValues.js";
|
|
35
|
+
export type * from "./Core/Interfaces/ISlowParticleData.js";
|
|
36
|
+
export type * from "./Options/Interfaces/Background/IBackground.js";
|
|
37
|
+
export type * from "./Options/Interfaces/FullScreen/IFullScreen.js";
|
|
38
|
+
export type * from "./Options/Interfaces/IAnimatable.js";
|
|
39
|
+
export type * from "./Options/Interfaces/IAnimatableColor.js";
|
|
40
|
+
export type * from "./Options/Interfaces/IAnimation.js";
|
|
41
|
+
export type * from "./Options/Interfaces/IColorAnimation.js";
|
|
42
|
+
export type * from "./Options/Interfaces/IHslAnimation.js";
|
|
43
|
+
export type * from "./Options/Interfaces/IManualParticle.js";
|
|
44
|
+
export type * from "./Options/Interfaces/IOptionLoader.js";
|
|
45
|
+
export type * from "./Options/Interfaces/IOptions.js";
|
|
46
|
+
export type * from "./Options/Interfaces/IOptionsColor.js";
|
|
47
|
+
export type * from "./Options/Interfaces/IResponsive.js";
|
|
48
|
+
export type * from "./Options/Interfaces/IValueWithRandom.js";
|
|
49
|
+
export type * from "./Options/Interfaces/Interactivity/Events/IClickEvent.js";
|
|
50
|
+
export type * from "./Options/Interfaces/Interactivity/Events/IDivEvent.js";
|
|
51
|
+
export type * from "./Options/Interfaces/Interactivity/Events/IEvents.js";
|
|
52
|
+
export type * from "./Options/Interfaces/Interactivity/Events/IHoverEvent.js";
|
|
53
|
+
export type * from "./Options/Interfaces/Interactivity/Events/IParallax.js";
|
|
54
|
+
export type * from "./Options/Interfaces/Interactivity/Events/IResizeEvent.js";
|
|
55
|
+
export type * from "./Options/Interfaces/Interactivity/Modes/IModeDiv.js";
|
|
56
|
+
export type * from "./Options/Interfaces/Interactivity/Modes/IModes.js";
|
|
57
|
+
export type * from "./Options/Interfaces/Interactivity/IInteractivity.js";
|
|
58
|
+
export type * from "./Options/Interfaces/Particles/Bounce/IParticlesBounce.js";
|
|
59
|
+
export type * from "./Options/Interfaces/Particles/Effect/IEffect.js";
|
|
60
|
+
export type * from "./Options/Interfaces/Particles/IParticlesOptions.js";
|
|
61
|
+
export type * from "./Options/Interfaces/Particles/IStroke.js";
|
|
62
|
+
export type * from "./Options/Interfaces/Particles/Move/IMoveAttract.js";
|
|
63
|
+
export type * from "./Options/Interfaces/Particles/Move/IMove.js";
|
|
64
|
+
export type * from "./Options/Interfaces/Particles/Move/IMoveAngle.js";
|
|
65
|
+
export type * from "./Options/Interfaces/Particles/Move/IMoveCenter.js";
|
|
66
|
+
export type * from "./Options/Interfaces/Particles/Move/IMoveGravity.js";
|
|
67
|
+
export type * from "./Options/Interfaces/Particles/Move/Path/IMovePath.js";
|
|
68
|
+
export type * from "./Options/Interfaces/Particles/Move/IOutModes.js";
|
|
69
|
+
export type * from "./Options/Interfaces/Particles/Move/ISpin.js";
|
|
70
|
+
export type * from "./Options/Interfaces/Particles/Number/IParticlesDensity.js";
|
|
71
|
+
export type * from "./Options/Interfaces/Particles/Number/IParticlesNumber.js";
|
|
72
|
+
export type * from "./Options/Interfaces/Particles/Number/IParticlesNumberLimit.js";
|
|
73
|
+
export type * from "./Options/Interfaces/Particles/Opacity/IOpacity.js";
|
|
74
|
+
export type * from "./Options/Interfaces/Particles/Opacity/IOpacityAnimation.js";
|
|
75
|
+
export type * from "./Options/Interfaces/Particles/Shape/IShape.js";
|
|
76
|
+
export type * from "./Options/Interfaces/Particles/Size/ISize.js";
|
|
77
|
+
export type * from "./Options/Interfaces/Particles/Size/ISizeAnimation.js";
|
|
78
|
+
export type * from "./Options/Interfaces/Particles/ZIndex/IZIndex.js";
|
|
79
|
+
export type * from "./Options/Interfaces/Theme/ITheme.js";
|
|
80
|
+
export type * from "./Options/Interfaces/Theme/IThemeDefault.js";
|
|
81
|
+
export type * from "./Types/CustomEventArgs.js";
|
|
82
|
+
export type * from "./Types/CustomEventListener.js";
|
|
83
|
+
export type * from "./Types/ExportResult.js";
|
|
84
|
+
export type * from "./Types/ISourceOptions.js";
|
|
85
|
+
export type * from "./Types/ParticlesGroups.js";
|
|
86
|
+
export type * from "./Types/PathOptions.js";
|
|
87
|
+
export type * from "./Types/RangeValue.js";
|
|
88
|
+
export type * from "./Types/RecursivePartial.js";
|
|
89
|
+
export type * from "./Types/ShapeData.js";
|
|
90
|
+
export type * from "./Types/SingleOrMultiple.js";
|
|
101
91
|
export type { EventListeners } from "./Core/Utils/EventListeners.js";
|
|
102
92
|
export type { InteractionManager } from "./Core/Utils/InteractionManager.js";
|
|
103
93
|
export type { QuadTree } from "./Core/Utils/QuadTree.js";
|
|
@@ -106,5 +96,5 @@ export type { Container } from "./Core/Container.js";
|
|
|
106
96
|
export type { Particle } from "./Core/Particle.js";
|
|
107
97
|
export type { Particles } from "./Core/Particles.js";
|
|
108
98
|
export type { Retina } from "./Core/Retina.js";
|
|
109
|
-
export type { Engine
|
|
99
|
+
export type { Engine } from "./Core/Engine.js";
|
|
110
100
|
export type { IParticlesNumberLimit } from "./Options/Interfaces/Particles/Number/IParticlesNumberLimit.js";
|
package/types/exports.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ export * from "./Enums/Directions/MoveDirection.js";
|
|
|
8
8
|
export * from "./Enums/Directions/RotateDirection.js";
|
|
9
9
|
export * from "./Enums/Directions/OutModeDirection.js";
|
|
10
10
|
export * from "./Enums/Modes/AnimationMode.js";
|
|
11
|
-
export * from "./Enums/Modes/CollisionMode.js";
|
|
12
11
|
export * from "./Enums/Modes/LimitMode.js";
|
|
13
12
|
export * from "./Enums/Modes/OutMode.js";
|
|
14
13
|
export * from "./Enums/Modes/PixelMode.js";
|
|
@@ -28,8 +27,6 @@ export * from "./Enums/InteractivityDetect.js";
|
|
|
28
27
|
export * from "./Options/Classes/AnimatableColor.js";
|
|
29
28
|
export * from "./Options/Classes/AnimationOptions.js";
|
|
30
29
|
export * from "./Options/Classes/Background/Background.js";
|
|
31
|
-
export * from "./Options/Classes/BackgroundMask/BackgroundMask.js";
|
|
32
|
-
export * from "./Options/Classes/BackgroundMask/BackgroundMaskCover.js";
|
|
33
30
|
export * from "./Options/Classes/ColorAnimation.js";
|
|
34
31
|
export * from "./Options/Classes/FullScreen/FullScreen.js";
|
|
35
32
|
export * from "./Options/Classes/HslAnimation.js";
|
|
@@ -48,11 +45,7 @@ export * from "./Options/Classes/Options.js";
|
|
|
48
45
|
export * from "./Options/Classes/OptionsColor.js";
|
|
49
46
|
export * from "./Options/Classes/Particles/Bounce/ParticlesBounce.js";
|
|
50
47
|
export * from "./Options/Classes/Particles/Bounce/ParticlesBounceFactor.js";
|
|
51
|
-
export * from "./Options/Classes/Particles/Collisions/Collisions.js";
|
|
52
|
-
export * from "./Options/Classes/Particles/Collisions/CollisionsAbsorb.js";
|
|
53
|
-
export * from "./Options/Classes/Particles/Collisions/CollisionsOverlap.js";
|
|
54
48
|
export * from "./Options/Classes/Particles/ParticlesOptions.js";
|
|
55
|
-
export * from "./Options/Classes/Particles/Shadow.js";
|
|
56
49
|
export * from "./Options/Classes/Particles/Stroke.js";
|
|
57
50
|
export * from "./Options/Classes/Particles/Move/MoveAttract.js";
|
|
58
51
|
export * from "./Options/Classes/Particles/Move/Move.js";
|
|
@@ -62,7 +55,6 @@ export * from "./Options/Classes/Particles/Move/MoveGravity.js";
|
|
|
62
55
|
export * from "./Options/Classes/Particles/Move/OutModes.js";
|
|
63
56
|
export * from "./Options/Classes/Particles/Move/Path/MovePath.js";
|
|
64
57
|
export * from "./Options/Classes/Particles/Move/Spin.js";
|
|
65
|
-
export * from "./Options/Classes/Particles/Move/MoveTrail.js";
|
|
66
58
|
export * from "./Options/Classes/Particles/Number/ParticlesNumber.js";
|
|
67
59
|
export * from "./Options/Classes/Particles/Number/ParticlesNumberLimit.js";
|
|
68
60
|
export * from "./Options/Classes/Particles/Number/ParticlesDensity.js";
|
|
@@ -78,7 +70,8 @@ export * from "./Options/Classes/Theme/ThemeDefault.js";
|
|
|
78
70
|
export * from "./Options/Classes/ValueWithRandom.js";
|
|
79
71
|
export * from "./Utils/CanvasUtils.js";
|
|
80
72
|
export * from "./Utils/ColorUtils.js";
|
|
81
|
-
export * from "./Utils/
|
|
73
|
+
export * from "./Utils/LogUtils.js";
|
|
74
|
+
export * from "./Utils/MathUtils.js";
|
|
82
75
|
export * from "./Utils/OptionsUtils.js";
|
|
83
76
|
export * from "./Utils/Utils.js";
|
|
84
77
|
export * from "./Utils/TypeUtils.js";
|
package/types/index.d.ts
CHANGED