@tsparticles/engine 3.0.0-beta.0 → 3.0.0-beta.2

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.
Files changed (412) hide show
  1. package/README.md +8 -8
  2. package/browser/Core/Canvas.js +4 -4
  3. package/browser/Core/Container.js +9 -9
  4. package/browser/Core/Engine.js +6 -6
  5. package/browser/Core/Particle.js +9 -9
  6. package/browser/Core/Particles.js +10 -9
  7. package/browser/Core/Retina.js +2 -2
  8. package/browser/Core/Utils/Circle.js +3 -3
  9. package/browser/Core/Utils/EventListeners.js +2 -2
  10. package/browser/Core/Utils/QuadTree.js +3 -3
  11. package/browser/Core/Utils/Rectangle.js +2 -2
  12. package/browser/Core/Utils/Vector.js +1 -1
  13. package/browser/Core/Utils/Vector3d.js +2 -2
  14. package/browser/Options/Classes/AnimatableColor.js +3 -3
  15. package/browser/Options/Classes/AnimationOptions.js +1 -1
  16. package/browser/Options/Classes/Background/Background.js +1 -1
  17. package/browser/Options/Classes/BackgroundMask/BackgroundMask.js +2 -2
  18. package/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js +1 -1
  19. package/browser/Options/Classes/ColorAnimation.js +1 -1
  20. package/browser/Options/Classes/HslAnimation.js +1 -1
  21. package/browser/Options/Classes/Interactivity/Events/Events.js +5 -5
  22. package/browser/Options/Classes/Interactivity/Events/HoverEvent.js +1 -1
  23. package/browser/Options/Classes/Interactivity/Interactivity.js +2 -2
  24. package/browser/Options/Classes/ManualParticle.js +1 -1
  25. package/browser/Options/Classes/Options.js +10 -10
  26. package/browser/Options/Classes/OptionsColor.js +1 -1
  27. package/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js +1 -1
  28. package/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +1 -1
  29. package/browser/Options/Classes/Particles/Collisions/Collisions.js +4 -4
  30. package/browser/Options/Classes/Particles/Move/Move.js +10 -10
  31. package/browser/Options/Classes/Particles/Move/MoveAngle.js +1 -1
  32. package/browser/Options/Classes/Particles/Move/MoveAttract.js +1 -1
  33. package/browser/Options/Classes/Particles/Move/MoveGravity.js +1 -1
  34. package/browser/Options/Classes/Particles/Move/MoveTrail.js +1 -1
  35. package/browser/Options/Classes/Particles/Move/MoveTrailFill.js +1 -1
  36. package/browser/Options/Classes/Particles/Move/Path/MovePath.js +2 -2
  37. package/browser/Options/Classes/Particles/Move/Spin.js +2 -2
  38. package/browser/Options/Classes/Particles/Number/ParticlesNumber.js +1 -1
  39. package/browser/Options/Classes/Particles/Opacity/Opacity.js +2 -2
  40. package/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -1
  41. package/browser/Options/Classes/Particles/ParticlesOptions.js +12 -12
  42. package/browser/Options/Classes/Particles/Shadow.js +1 -1
  43. package/browser/Options/Classes/Particles/Shape/Shape.js +1 -1
  44. package/browser/Options/Classes/Particles/Size/Size.js +2 -2
  45. package/browser/Options/Classes/Particles/Size/SizeAnimation.js +1 -1
  46. package/browser/Options/Classes/Particles/Stroke.js +2 -2
  47. package/browser/Options/Classes/Particles/ZIndex/ZIndex.js +1 -1
  48. package/browser/Options/Classes/Responsive.js +1 -1
  49. package/browser/Options/Classes/Theme/Theme.js +2 -2
  50. package/browser/Options/Classes/ValueWithRandom.js +4 -4
  51. package/browser/Utils/CanvasUtils.js +1 -1
  52. package/browser/Utils/ColorUtils.js +2 -2
  53. package/browser/Utils/HslColorManager.js +2 -2
  54. package/browser/Utils/NumberUtils.js +2 -2
  55. package/browser/Utils/OptionsUtils.js +1 -1
  56. package/browser/Utils/RgbColorManager.js +1 -1
  57. package/browser/Utils/Utils.js +2 -2
  58. package/browser/bundle.js +2 -2
  59. package/browser/export-types.js +97 -97
  60. package/browser/exports.js +89 -89
  61. package/browser/index.js +4 -4
  62. package/browser/init.js +4 -4
  63. package/browser/package.json +1 -0
  64. package/cjs/Core/Canvas.js +28 -28
  65. package/cjs/Core/Container.js +19 -19
  66. package/cjs/Core/Engine.js +22 -22
  67. package/cjs/Core/Particle.js +37 -37
  68. package/cjs/Core/Particles.js +18 -17
  69. package/cjs/Core/Retina.js +11 -11
  70. package/cjs/Core/Utils/Circle.js +6 -6
  71. package/cjs/Core/Utils/EventListeners.js +19 -19
  72. package/cjs/Core/Utils/QuadTree.js +7 -7
  73. package/cjs/Core/Utils/Rectangle.js +4 -4
  74. package/cjs/Core/Utils/Vector.js +2 -2
  75. package/cjs/Core/Utils/Vector3d.js +4 -4
  76. package/cjs/Options/Classes/AnimatableColor.js +6 -6
  77. package/cjs/Options/Classes/AnimationOptions.js +5 -5
  78. package/cjs/Options/Classes/Background/Background.js +3 -3
  79. package/cjs/Options/Classes/BackgroundMask/BackgroundMask.js +4 -4
  80. package/cjs/Options/Classes/BackgroundMask/BackgroundMaskCover.js +3 -3
  81. package/cjs/Options/Classes/ColorAnimation.js +6 -6
  82. package/cjs/Options/Classes/HslAnimation.js +4 -4
  83. package/cjs/Options/Classes/Interactivity/Events/Events.js +12 -12
  84. package/cjs/Options/Classes/Interactivity/Events/HoverEvent.js +2 -2
  85. package/cjs/Options/Classes/Interactivity/Interactivity.js +4 -4
  86. package/cjs/Options/Classes/ManualParticle.js +2 -2
  87. package/cjs/Options/Classes/Options.js +24 -24
  88. package/cjs/Options/Classes/OptionsColor.js +2 -2
  89. package/cjs/Options/Classes/Particles/Bounce/ParticlesBounce.js +3 -3
  90. package/cjs/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +2 -2
  91. package/cjs/Options/Classes/Particles/Collisions/Collisions.js +8 -8
  92. package/cjs/Options/Classes/Particles/Move/Move.js +24 -24
  93. package/cjs/Options/Classes/Particles/Move/MoveAngle.js +3 -3
  94. package/cjs/Options/Classes/Particles/Move/MoveAttract.js +2 -2
  95. package/cjs/Options/Classes/Particles/Move/MoveGravity.js +3 -3
  96. package/cjs/Options/Classes/Particles/Move/MoveTrail.js +2 -2
  97. package/cjs/Options/Classes/Particles/Move/MoveTrailFill.js +2 -2
  98. package/cjs/Options/Classes/Particles/Move/Path/MovePath.js +4 -4
  99. package/cjs/Options/Classes/Particles/Move/Spin.js +4 -4
  100. package/cjs/Options/Classes/Particles/Number/ParticlesNumber.js +2 -2
  101. package/cjs/Options/Classes/Particles/Opacity/Opacity.js +4 -4
  102. package/cjs/Options/Classes/Particles/Opacity/OpacityAnimation.js +2 -2
  103. package/cjs/Options/Classes/Particles/ParticlesOptions.js +28 -28
  104. package/cjs/Options/Classes/Particles/Shadow.js +3 -3
  105. package/cjs/Options/Classes/Particles/Shape/Shape.js +2 -2
  106. package/cjs/Options/Classes/Particles/Size/Size.js +4 -4
  107. package/cjs/Options/Classes/Particles/Size/SizeAnimation.js +2 -2
  108. package/cjs/Options/Classes/Particles/Stroke.js +5 -5
  109. package/cjs/Options/Classes/Particles/ZIndex/ZIndex.js +2 -2
  110. package/cjs/Options/Classes/Responsive.js +2 -2
  111. package/cjs/Options/Classes/Theme/Theme.js +4 -4
  112. package/cjs/Options/Classes/ValueWithRandom.js +9 -9
  113. package/cjs/Utils/CanvasUtils.js +2 -2
  114. package/cjs/Utils/ColorUtils.js +23 -23
  115. package/cjs/Utils/HslColorManager.js +9 -9
  116. package/cjs/Utils/NumberUtils.js +10 -10
  117. package/cjs/Utils/OptionsUtils.js +2 -2
  118. package/cjs/Utils/RgbColorManager.js +5 -5
  119. package/cjs/Utils/Utils.js +17 -17
  120. package/cjs/bundle.js +3 -3
  121. package/cjs/export-types.js +97 -97
  122. package/cjs/exports.js +89 -89
  123. package/cjs/index.js +6 -6
  124. package/cjs/init.js +8 -8
  125. package/cjs/package.json +1 -0
  126. package/esm/Core/Canvas.js +4 -4
  127. package/esm/Core/Container.js +9 -9
  128. package/esm/Core/Engine.js +6 -6
  129. package/esm/Core/Particle.js +9 -9
  130. package/esm/Core/Particles.js +10 -9
  131. package/esm/Core/Retina.js +2 -2
  132. package/esm/Core/Utils/Circle.js +3 -3
  133. package/esm/Core/Utils/EventListeners.js +2 -2
  134. package/esm/Core/Utils/QuadTree.js +3 -3
  135. package/esm/Core/Utils/Rectangle.js +2 -2
  136. package/esm/Core/Utils/Vector.js +1 -1
  137. package/esm/Core/Utils/Vector3d.js +2 -2
  138. package/esm/Options/Classes/AnimatableColor.js +3 -3
  139. package/esm/Options/Classes/AnimationOptions.js +1 -1
  140. package/esm/Options/Classes/Background/Background.js +1 -1
  141. package/esm/Options/Classes/BackgroundMask/BackgroundMask.js +2 -2
  142. package/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.js +1 -1
  143. package/esm/Options/Classes/ColorAnimation.js +1 -1
  144. package/esm/Options/Classes/HslAnimation.js +1 -1
  145. package/esm/Options/Classes/Interactivity/Events/Events.js +5 -5
  146. package/esm/Options/Classes/Interactivity/Events/HoverEvent.js +1 -1
  147. package/esm/Options/Classes/Interactivity/Interactivity.js +2 -2
  148. package/esm/Options/Classes/ManualParticle.js +1 -1
  149. package/esm/Options/Classes/Options.js +10 -10
  150. package/esm/Options/Classes/OptionsColor.js +1 -1
  151. package/esm/Options/Classes/Particles/Bounce/ParticlesBounce.js +1 -1
  152. package/esm/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +1 -1
  153. package/esm/Options/Classes/Particles/Collisions/Collisions.js +4 -4
  154. package/esm/Options/Classes/Particles/Move/Move.js +10 -10
  155. package/esm/Options/Classes/Particles/Move/MoveAngle.js +1 -1
  156. package/esm/Options/Classes/Particles/Move/MoveAttract.js +1 -1
  157. package/esm/Options/Classes/Particles/Move/MoveGravity.js +1 -1
  158. package/esm/Options/Classes/Particles/Move/MoveTrail.js +1 -1
  159. package/esm/Options/Classes/Particles/Move/MoveTrailFill.js +1 -1
  160. package/esm/Options/Classes/Particles/Move/Path/MovePath.js +2 -2
  161. package/esm/Options/Classes/Particles/Move/Spin.js +2 -2
  162. package/esm/Options/Classes/Particles/Number/ParticlesNumber.js +1 -1
  163. package/esm/Options/Classes/Particles/Opacity/Opacity.js +2 -2
  164. package/esm/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -1
  165. package/esm/Options/Classes/Particles/ParticlesOptions.js +12 -12
  166. package/esm/Options/Classes/Particles/Shadow.js +1 -1
  167. package/esm/Options/Classes/Particles/Shape/Shape.js +1 -1
  168. package/esm/Options/Classes/Particles/Size/Size.js +2 -2
  169. package/esm/Options/Classes/Particles/Size/SizeAnimation.js +1 -1
  170. package/esm/Options/Classes/Particles/Stroke.js +2 -2
  171. package/esm/Options/Classes/Particles/ZIndex/ZIndex.js +1 -1
  172. package/esm/Options/Classes/Responsive.js +1 -1
  173. package/esm/Options/Classes/Theme/Theme.js +2 -2
  174. package/esm/Options/Classes/ValueWithRandom.js +4 -4
  175. package/esm/Utils/CanvasUtils.js +1 -1
  176. package/esm/Utils/ColorUtils.js +2 -2
  177. package/esm/Utils/HslColorManager.js +2 -2
  178. package/esm/Utils/NumberUtils.js +2 -2
  179. package/esm/Utils/OptionsUtils.js +1 -1
  180. package/esm/Utils/RgbColorManager.js +1 -1
  181. package/esm/Utils/Utils.js +2 -2
  182. package/esm/bundle.js +2 -2
  183. package/esm/export-types.js +97 -97
  184. package/esm/exports.js +89 -89
  185. package/esm/index.js +4 -4
  186. package/esm/init.js +4 -4
  187. package/esm/package.json +1 -0
  188. package/package.json +8 -6
  189. package/report.html +23 -5
  190. package/scripts/install.js +8 -8
  191. package/tsparticles.engine.js +5 -4
  192. package/tsparticles.engine.min.js +1 -1
  193. package/tsparticles.engine.min.js.LICENSE.txt +1 -1
  194. package/types/Core/Canvas.d.ts +5 -5
  195. package/types/Core/Container.d.ts +12 -12
  196. package/types/Core/Engine.d.ts +20 -20
  197. package/types/Core/Interfaces/Colors.d.ts +2 -2
  198. package/types/Core/Interfaces/IBubbleParticleData.d.ts +1 -1
  199. package/types/Core/Interfaces/ICircleBouncer.d.ts +2 -2
  200. package/types/Core/Interfaces/IColorManager.d.ts +1 -1
  201. package/types/Core/Interfaces/IContainerInteractivity.d.ts +1 -1
  202. package/types/Core/Interfaces/IContainerPlugin.d.ts +7 -7
  203. package/types/Core/Interfaces/ICoordinates.d.ts +2 -2
  204. package/types/Core/Interfaces/IDimension.d.ts +1 -1
  205. package/types/Core/Interfaces/IDrawParticleParams.d.ts +6 -6
  206. package/types/Core/Interfaces/IExternalInteractor.d.ts +7 -7
  207. package/types/Core/Interfaces/IInteractor.d.ts +8 -8
  208. package/types/Core/Interfaces/ILoadParams.d.ts +2 -2
  209. package/types/Core/Interfaces/IMouseData.d.ts +1 -1
  210. package/types/Core/Interfaces/IMovePathGenerator.d.ts +4 -4
  211. package/types/Core/Interfaces/IParticle.d.ts +11 -11
  212. package/types/Core/Interfaces/IParticleHslAnimation.d.ts +1 -1
  213. package/types/Core/Interfaces/IParticleMover.d.ts +2 -2
  214. package/types/Core/Interfaces/IParticleRetinaProps.d.ts +1 -1
  215. package/types/Core/Interfaces/IParticleRoll.d.ts +1 -1
  216. package/types/Core/Interfaces/IParticleUpdater.d.ts +7 -7
  217. package/types/Core/Interfaces/IParticleValueAnimation.d.ts +1 -1
  218. package/types/Core/Interfaces/IParticlesInteractor.d.ts +3 -3
  219. package/types/Core/Interfaces/IPlugin.d.ts +5 -5
  220. package/types/Core/Interfaces/IPositionFromSizeParams.d.ts +2 -2
  221. package/types/Core/Interfaces/IShapeDrawer.d.ts +1 -1
  222. package/types/Core/Interfaces/IShapeValues.d.ts +2 -2
  223. package/types/Core/Interfaces/ITrailFillData.d.ts +1 -1
  224. package/types/Core/Particle.d.ts +21 -21
  225. package/types/Core/Particles.d.ts +12 -12
  226. package/types/Core/Retina.d.ts +2 -2
  227. package/types/Core/Utils/Circle.d.ts +2 -2
  228. package/types/Core/Utils/EventListeners.d.ts +1 -1
  229. package/types/Core/Utils/ExternalInteractorBase.d.ts +5 -5
  230. package/types/Core/Utils/InteractionManager.d.ts +5 -5
  231. package/types/Core/Utils/ParticlesInteractorBase.d.ts +5 -5
  232. package/types/Core/Utils/Point.d.ts +2 -2
  233. package/types/Core/Utils/QuadTree.d.ts +6 -6
  234. package/types/Core/Utils/Range.d.ts +1 -1
  235. package/types/Core/Utils/Rectangle.d.ts +3 -3
  236. package/types/Core/Utils/Vector.d.ts +2 -2
  237. package/types/Core/Utils/Vector3d.d.ts +1 -1
  238. package/types/Options/Classes/AnimatableColor.d.ts +6 -6
  239. package/types/Options/Classes/AnimationOptions.d.ts +6 -6
  240. package/types/Options/Classes/Background/Background.d.ts +4 -4
  241. package/types/Options/Classes/BackgroundMask/BackgroundMask.d.ts +4 -4
  242. package/types/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +4 -4
  243. package/types/Options/Classes/ColorAnimation.d.ts +4 -4
  244. package/types/Options/Classes/FullScreen/FullScreen.d.ts +3 -3
  245. package/types/Options/Classes/HslAnimation.d.ts +4 -4
  246. package/types/Options/Classes/Interactivity/Events/ClickEvent.d.ts +5 -5
  247. package/types/Options/Classes/Interactivity/Events/DivEvent.d.ts +6 -6
  248. package/types/Options/Classes/Interactivity/Events/Events.d.ts +8 -8
  249. package/types/Options/Classes/Interactivity/Events/HoverEvent.d.ts +6 -6
  250. package/types/Options/Classes/Interactivity/Events/Parallax.d.ts +3 -3
  251. package/types/Options/Classes/Interactivity/Events/ResizeEvent.d.ts +3 -3
  252. package/types/Options/Classes/Interactivity/Interactivity.d.ts +8 -8
  253. package/types/Options/Classes/Interactivity/Modes/Modes.d.ts +5 -5
  254. package/types/Options/Classes/ManualParticle.d.ts +5 -5
  255. package/types/Options/Classes/Options.d.ts +15 -15
  256. package/types/Options/Classes/OptionsColor.d.ts +5 -5
  257. package/types/Options/Classes/Particles/Bounce/ParticlesBounce.d.ts +4 -4
  258. package/types/Options/Classes/Particles/Bounce/ParticlesBounceFactor.d.ts +1 -1
  259. package/types/Options/Classes/Particles/Collisions/Collisions.d.ts +8 -8
  260. package/types/Options/Classes/Particles/Collisions/CollisionsAbsorb.d.ts +3 -3
  261. package/types/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +3 -3
  262. package/types/Options/Classes/Particles/Move/Move.d.ts +15 -15
  263. package/types/Options/Classes/Particles/Move/MoveAngle.d.ts +4 -4
  264. package/types/Options/Classes/Particles/Move/MoveAttract.d.ts +5 -5
  265. package/types/Options/Classes/Particles/Move/MoveCenter.d.ts +4 -4
  266. package/types/Options/Classes/Particles/Move/MoveGravity.d.ts +4 -4
  267. package/types/Options/Classes/Particles/Move/MoveTrail.d.ts +4 -4
  268. package/types/Options/Classes/Particles/Move/MoveTrailFill.d.ts +4 -4
  269. package/types/Options/Classes/Particles/Move/OutModes.d.ts +5 -5
  270. package/types/Options/Classes/Particles/Move/Path/MovePath.d.ts +5 -5
  271. package/types/Options/Classes/Particles/Move/Spin.d.ts +5 -5
  272. package/types/Options/Classes/Particles/Number/ParticlesDensity.d.ts +3 -3
  273. package/types/Options/Classes/Particles/Number/ParticlesNumber.d.ts +4 -4
  274. package/types/Options/Classes/Particles/Opacity/Opacity.d.ts +5 -5
  275. package/types/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +5 -5
  276. package/types/Options/Classes/Particles/ParticlesOptions.d.ts +19 -19
  277. package/types/Options/Classes/Particles/Shadow.d.ts +5 -5
  278. package/types/Options/Classes/Particles/Shape/Shape.d.ts +5 -5
  279. package/types/Options/Classes/Particles/Size/Size.d.ts +5 -5
  280. package/types/Options/Classes/Particles/Size/SizeAnimation.d.ts +5 -5
  281. package/types/Options/Classes/Particles/Stroke.d.ts +5 -5
  282. package/types/Options/Classes/Particles/ZIndex/ZIndex.d.ts +4 -4
  283. package/types/Options/Classes/Random.d.ts +3 -3
  284. package/types/Options/Classes/Responsive.d.ts +5 -5
  285. package/types/Options/Classes/Theme/Theme.d.ts +5 -5
  286. package/types/Options/Classes/Theme/ThemeDefault.d.ts +4 -4
  287. package/types/Options/Classes/ValueWithRandom.d.ts +6 -6
  288. package/types/Options/Interfaces/Background/IBackground.d.ts +1 -1
  289. package/types/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +2 -2
  290. package/types/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +1 -1
  291. package/types/Options/Interfaces/IAnimatable.d.ts +1 -1
  292. package/types/Options/Interfaces/IAnimatableColor.d.ts +3 -3
  293. package/types/Options/Interfaces/IAnimation.d.ts +3 -3
  294. package/types/Options/Interfaces/IColorAnimation.d.ts +2 -2
  295. package/types/Options/Interfaces/IHslAnimation.d.ts +1 -1
  296. package/types/Options/Interfaces/IManualParticle.d.ts +3 -3
  297. package/types/Options/Interfaces/IOptionLoader.d.ts +1 -1
  298. package/types/Options/Interfaces/IOptions.d.ts +11 -11
  299. package/types/Options/Interfaces/IOptionsColor.d.ts +1 -1
  300. package/types/Options/Interfaces/IResponsive.d.ts +3 -3
  301. package/types/Options/Interfaces/IValueWithRandom.d.ts +3 -3
  302. package/types/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +2 -2
  303. package/types/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +3 -3
  304. package/types/Options/Interfaces/Interactivity/Events/IEvents.d.ts +5 -5
  305. package/types/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +3 -3
  306. package/types/Options/Interfaces/Interactivity/IInteractivity.d.ts +3 -3
  307. package/types/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +1 -1
  308. package/types/Options/Interfaces/Particles/Bounce/IParticlesBounce.d.ts +1 -1
  309. package/types/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +5 -5
  310. package/types/Options/Interfaces/Particles/IParticlesOptions.d.ts +15 -15
  311. package/types/Options/Interfaces/Particles/IShadow.d.ts +2 -2
  312. package/types/Options/Interfaces/Particles/IStroke.d.ts +4 -4
  313. package/types/Options/Interfaces/Particles/Move/IMove.d.ts +12 -12
  314. package/types/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +1 -1
  315. package/types/Options/Interfaces/Particles/Move/IMoveAttract.d.ts +2 -2
  316. package/types/Options/Interfaces/Particles/Move/IMoveCenter.d.ts +1 -1
  317. package/types/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +1 -1
  318. package/types/Options/Interfaces/Particles/Move/IMoveTrail.d.ts +1 -1
  319. package/types/Options/Interfaces/Particles/Move/IMoveTrailFill.d.ts +1 -1
  320. package/types/Options/Interfaces/Particles/Move/IOutModes.d.ts +1 -1
  321. package/types/Options/Interfaces/Particles/Move/ISpin.d.ts +2 -2
  322. package/types/Options/Interfaces/Particles/Move/Path/IMovePath.d.ts +2 -2
  323. package/types/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +1 -1
  324. package/types/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +2 -2
  325. package/types/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +2 -2
  326. package/types/Options/Interfaces/Particles/Shape/IShape.d.ts +2 -2
  327. package/types/Options/Interfaces/Particles/Size/ISize.d.ts +2 -2
  328. package/types/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +2 -2
  329. package/types/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +1 -1
  330. package/types/Options/Interfaces/Theme/ITheme.d.ts +3 -3
  331. package/types/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -1
  332. package/types/Types/CustomEventArgs.d.ts +1 -1
  333. package/types/Types/CustomEventListener.d.ts +1 -1
  334. package/types/Types/ISourceOptions.d.ts +2 -2
  335. package/types/Types/ParticlesGroups.d.ts +1 -1
  336. package/types/Types/RangeValue.d.ts +1 -1
  337. package/types/Types/ShapeData.d.ts +2 -2
  338. package/types/Types/ShapeDrawerFunctions.d.ts +3 -3
  339. package/types/Utils/CanvasUtils.d.ts +9 -9
  340. package/types/Utils/ColorUtils.d.ts +6 -6
  341. package/types/Utils/EventDispatcher.d.ts +2 -2
  342. package/types/Utils/HslColorManager.d.ts +2 -2
  343. package/types/Utils/NumberUtils.d.ts +8 -8
  344. package/types/Utils/OptionsUtils.d.ts +6 -6
  345. package/types/Utils/RgbColorManager.d.ts +2 -2
  346. package/types/Utils/Utils.d.ts +12 -12
  347. package/types/bundle.d.ts +2 -2
  348. package/types/export-types.d.ts +106 -106
  349. package/types/exports.d.ts +89 -89
  350. package/types/index.d.ts +3 -3
  351. package/types/init.d.ts +1 -1
  352. package/umd/Core/Canvas.js +29 -29
  353. package/umd/Core/Container.js +20 -20
  354. package/umd/Core/Engine.js +23 -23
  355. package/umd/Core/Particle.js +38 -38
  356. package/umd/Core/Particles.js +19 -18
  357. package/umd/Core/Retina.js +12 -12
  358. package/umd/Core/Utils/Circle.js +7 -7
  359. package/umd/Core/Utils/EventListeners.js +20 -20
  360. package/umd/Core/Utils/QuadTree.js +8 -8
  361. package/umd/Core/Utils/Rectangle.js +5 -5
  362. package/umd/Core/Utils/Vector.js +3 -3
  363. package/umd/Core/Utils/Vector3d.js +5 -5
  364. package/umd/Options/Classes/AnimatableColor.js +7 -7
  365. package/umd/Options/Classes/AnimationOptions.js +6 -6
  366. package/umd/Options/Classes/Background/Background.js +4 -4
  367. package/umd/Options/Classes/BackgroundMask/BackgroundMask.js +5 -5
  368. package/umd/Options/Classes/BackgroundMask/BackgroundMaskCover.js +4 -4
  369. package/umd/Options/Classes/ColorAnimation.js +7 -7
  370. package/umd/Options/Classes/HslAnimation.js +5 -5
  371. package/umd/Options/Classes/Interactivity/Events/Events.js +13 -13
  372. package/umd/Options/Classes/Interactivity/Events/HoverEvent.js +3 -3
  373. package/umd/Options/Classes/Interactivity/Interactivity.js +5 -5
  374. package/umd/Options/Classes/ManualParticle.js +3 -3
  375. package/umd/Options/Classes/Options.js +25 -25
  376. package/umd/Options/Classes/OptionsColor.js +3 -3
  377. package/umd/Options/Classes/Particles/Bounce/ParticlesBounce.js +4 -4
  378. package/umd/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js +3 -3
  379. package/umd/Options/Classes/Particles/Collisions/Collisions.js +9 -9
  380. package/umd/Options/Classes/Particles/Move/Move.js +25 -25
  381. package/umd/Options/Classes/Particles/Move/MoveAngle.js +4 -4
  382. package/umd/Options/Classes/Particles/Move/MoveAttract.js +3 -3
  383. package/umd/Options/Classes/Particles/Move/MoveGravity.js +4 -4
  384. package/umd/Options/Classes/Particles/Move/MoveTrail.js +3 -3
  385. package/umd/Options/Classes/Particles/Move/MoveTrailFill.js +3 -3
  386. package/umd/Options/Classes/Particles/Move/Path/MovePath.js +5 -5
  387. package/umd/Options/Classes/Particles/Move/Spin.js +5 -5
  388. package/umd/Options/Classes/Particles/Number/ParticlesNumber.js +3 -3
  389. package/umd/Options/Classes/Particles/Opacity/Opacity.js +5 -5
  390. package/umd/Options/Classes/Particles/Opacity/OpacityAnimation.js +3 -3
  391. package/umd/Options/Classes/Particles/ParticlesOptions.js +29 -29
  392. package/umd/Options/Classes/Particles/Shadow.js +4 -4
  393. package/umd/Options/Classes/Particles/Shape/Shape.js +3 -3
  394. package/umd/Options/Classes/Particles/Size/Size.js +5 -5
  395. package/umd/Options/Classes/Particles/Size/SizeAnimation.js +3 -3
  396. package/umd/Options/Classes/Particles/Stroke.js +6 -6
  397. package/umd/Options/Classes/Particles/ZIndex/ZIndex.js +3 -3
  398. package/umd/Options/Classes/Responsive.js +3 -3
  399. package/umd/Options/Classes/Theme/Theme.js +5 -5
  400. package/umd/Options/Classes/ValueWithRandom.js +10 -10
  401. package/umd/Utils/CanvasUtils.js +3 -3
  402. package/umd/Utils/ColorUtils.js +24 -24
  403. package/umd/Utils/HslColorManager.js +10 -10
  404. package/umd/Utils/NumberUtils.js +11 -11
  405. package/umd/Utils/OptionsUtils.js +3 -3
  406. package/umd/Utils/RgbColorManager.js +6 -6
  407. package/umd/Utils/Utils.js +18 -18
  408. package/umd/bundle.js +4 -4
  409. package/umd/export-types.js +98 -98
  410. package/umd/exports.js +90 -90
  411. package/umd/index.js +7 -7
  412. package/umd/init.js +9 -9
@@ -1,4 +1,4 @@
1
- import type { ThemeMode } from "../../../Enums/Modes/ThemeMode";
1
+ import type { ThemeMode } from "../../../Enums/Modes/ThemeMode.js";
2
2
  export interface IThemeDefault {
3
3
  auto: boolean;
4
4
  mode: ThemeMode | keyof typeof ThemeMode;
@@ -1,4 +1,4 @@
1
- import type { Container } from "../Core/Container";
1
+ import type { Container } from "../Core/Container.js";
2
2
  export type CustomEventArgs = {
3
3
  container: Container;
4
4
  data?: unknown;
@@ -1,2 +1,2 @@
1
- import type { CustomEventArgs } from "./CustomEventArgs";
1
+ import type { CustomEventArgs } from "./CustomEventArgs.js";
2
2
  export type CustomEventListener = (args: CustomEventArgs) => void;
@@ -1,3 +1,3 @@
1
- import type { IOptions } from "../Options/Interfaces/IOptions";
2
- import type { RecursivePartial } from "./RecursivePartial";
1
+ import type { IOptions } from "../Options/Interfaces/IOptions.js";
2
+ import type { RecursivePartial } from "./RecursivePartial.js";
3
3
  export type ISourceOptions = RecursivePartial<IOptions>;
@@ -1,4 +1,4 @@
1
- import type { IParticlesOptions } from "../Options/Interfaces/Particles/IParticlesOptions";
1
+ import type { IParticlesOptions } from "../Options/Interfaces/Particles/IParticlesOptions.js";
2
2
  export type ParticlesGroups = {
3
3
  [name: string]: IParticlesOptions;
4
4
  };
@@ -1,2 +1,2 @@
1
- import type { IRangeValue } from "../Core/Interfaces/IRangeValue";
1
+ import type { IRangeValue } from "../Core/Interfaces/IRangeValue.js";
2
2
  export type RangeValue = number | IRangeValue;
@@ -1,5 +1,5 @@
1
- import type { IShapeValues } from "../Core/Interfaces/IShapeValues";
2
- import type { SingleOrMultiple } from "./SingleOrMultiple";
1
+ import type { IShapeValues } from "../Core/Interfaces/IShapeValues.js";
2
+ import type { SingleOrMultiple } from "./SingleOrMultiple.js";
3
3
  export type ShapeData = {
4
4
  [type: string]: SingleOrMultiple<IShapeValues>;
5
5
  };
@@ -1,6 +1,6 @@
1
- import type { Container } from "../Core/Container";
2
- import type { IDelta } from "../Core/Interfaces/IDelta";
3
- import type { Particle } from "../Core/Particle";
1
+ import type { Container } from "../Core/Container.js";
2
+ import type { IDelta } from "../Core/Interfaces/IDelta.js";
3
+ import type { Particle } from "../Core/Particle.js";
4
4
  export type ShapeDrawerDrawFunction = (context: CanvasRenderingContext2D, particle: Particle, radius: number, opacity: number, delta: IDelta, pixelRatio: number) => void;
5
5
  export type ShapeDrawerInitFunction = (container: Container) => Promise<void>;
6
6
  export type ShapeDrawerParticleInitFunction = (container: Container, particle: Particle) => void;
@@ -1,12 +1,12 @@
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 { Particle } from "../Core/Particle";
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";
10
10
  export declare function drawLine(context: CanvasRenderingContext2D, begin: ICoordinates, end: ICoordinates): void;
11
11
  export declare function drawTriangle(context: CanvasRenderingContext2D, p1: ICoordinates, p2: ICoordinates, p3: ICoordinates): void;
12
12
  export declare function paintBase(context: CanvasRenderingContext2D, dimension: IDimension, baseColor?: string): 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 "../Core/Engine";
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;
@@ -1,15 +1,15 @@
1
- import type { ICoordinates, ICoordinatesWithMode } from "../Core/Interfaces/ICoordinates";
2
- import type { IDimension, IDimensionWithMode } from "../Core/Interfaces/IDimension";
3
- import type { DivEvent } from "../Options/Classes/Interactivity/Events/DivEvent";
4
- import type { DivMode } from "../Enums/Modes/DivMode";
5
- import type { IBounds } from "../Core/Interfaces/IBounds";
6
- import type { ICircleBouncer } from "../Core/Interfaces/ICircleBouncer";
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
13
  interface ILogger {
14
14
  debug(message?: unknown, ...optionalParams: unknown[]): void;
15
15
  error(message?: unknown, ...optionalParams: unknown[]): void;
package/types/bundle.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- declare const tsParticles: import("./export-types").Engine;
2
- export * from "./exports";
1
+ declare const tsParticles: import("./export-types.js").Engine;
2
+ export * from "./exports.js";
3
3
  export { tsParticles };
@@ -1,107 +1,107 @@
1
- import type { Engine } from "./Core/Engine";
2
- export * from "./Core/Interfaces/Colors";
3
- export * from "./Core/Interfaces/IBounds";
4
- export * from "./Core/Interfaces/IBubbleParticleData";
5
- export * from "./Core/Interfaces/ICircleBouncer";
6
- export * from "./Core/Interfaces/IColorManager";
7
- export * from "./Core/Interfaces/IContainerInteractivity";
8
- export * from "./Core/Interfaces/IContainerPlugin";
9
- export * from "./Core/Interfaces/ICoordinates";
10
- export * from "./Core/Interfaces/IDelta";
11
- export * from "./Core/Interfaces/IDimension";
12
- export * from "./Core/Interfaces/IDistance";
13
- export * from "./Core/Interfaces/IDrawParticleParams";
14
- export * from "./Core/Interfaces/IExternalInteractor";
15
- export * from "./Core/Interfaces/IInteractor";
16
- export * from "./Core/Interfaces/ILoadParams";
17
- export * from "./Core/Interfaces/IMouseData";
18
- export * from "./Core/Interfaces/IMovePathGenerator";
19
- export * from "./Core/Interfaces/IParticle";
20
- export * from "./Core/Interfaces/IParticleColorStyle";
21
- export * from "./Core/Interfaces/IParticleHslAnimation";
22
- export * from "./Core/Interfaces/IParticleLife";
23
- export * from "./Core/Interfaces/IParticleMover";
24
- export * from "./Core/Interfaces/IParticleRetinaProps";
25
- export * from "./Core/Interfaces/IParticleRoll";
26
- export * from "./Core/Interfaces/IParticleTransformValues";
27
- export * from "./Core/Interfaces/IParticleUpdater";
28
- export * from "./Core/Interfaces/IParticleValueAnimation";
29
- export * from "./Core/Interfaces/IParticlesInteractor";
30
- export * from "./Core/Interfaces/IPlugin";
31
- export * from "./Core/Interfaces/IPositionFromSizeParams";
32
- export * from "./Core/Interfaces/IRangeValue";
33
- export * from "./Core/Interfaces/IRectSideResult";
34
- export * from "./Core/Interfaces/IShapeDrawer";
35
- export * from "./Core/Interfaces/IShapeValues";
36
- export * from "./Core/Interfaces/ISlowParticleData";
37
- export * from "./Core/Interfaces/ITrailFillData";
38
- export * from "./Options/Interfaces/Background/IBackground";
39
- export * from "./Options/Interfaces/BackgroundMask/IBackgroundMask";
40
- export * from "./Options/Interfaces/BackgroundMask/IBackgroundMaskCover";
41
- export * from "./Options/Interfaces/FullScreen/IFullScreen";
42
- export * from "./Options/Interfaces/IAnimatable";
43
- export * from "./Options/Interfaces/IAnimatableColor";
44
- export * from "./Options/Interfaces/IAnimation";
45
- export * from "./Options/Interfaces/IColorAnimation";
46
- export * from "./Options/Interfaces/IHslAnimation";
47
- export * from "./Options/Interfaces/IManualParticle";
48
- export * from "./Options/Interfaces/IOptionLoader";
49
- export * from "./Options/Interfaces/IOptions";
50
- export * from "./Options/Interfaces/IOptionsColor";
51
- export * from "./Options/Interfaces/IResponsive";
52
- export * from "./Options/Interfaces/IValueWithRandom";
53
- export * from "./Options/Interfaces/Interactivity/Events/IClickEvent";
54
- export * from "./Options/Interfaces/Interactivity/Events/IDivEvent";
55
- export * from "./Options/Interfaces/Interactivity/Events/IEvents";
56
- export * from "./Options/Interfaces/Interactivity/Events/IHoverEvent";
57
- export * from "./Options/Interfaces/Interactivity/Events/IParallax";
58
- export * from "./Options/Interfaces/Interactivity/Events/IResizeEvent";
59
- export * from "./Options/Interfaces/Interactivity/Modes/IModeDiv";
60
- export * from "./Options/Interfaces/Interactivity/Modes/IModes";
61
- export * from "./Options/Interfaces/Interactivity/IInteractivity";
62
- export * from "./Options/Interfaces/Particles/Bounce/IParticlesBounce";
63
- export * from "./Options/Interfaces/Particles/Collisions/ICollisions";
64
- export * from "./Options/Interfaces/Particles/Collisions/ICollisionsAbsorb";
65
- export * from "./Options/Interfaces/Particles/Collisions/ICollisionsOverlap";
66
- export * from "./Options/Interfaces/Particles/IParticlesOptions";
67
- export * from "./Options/Interfaces/Particles/IShadow";
68
- export * from "./Options/Interfaces/Particles/IStroke";
69
- export * from "./Options/Interfaces/Particles/Move/IMoveAttract";
70
- export * from "./Options/Interfaces/Particles/Move/IMove";
71
- export * from "./Options/Interfaces/Particles/Move/IMoveAngle";
72
- export * from "./Options/Interfaces/Particles/Move/IMoveCenter";
73
- export * from "./Options/Interfaces/Particles/Move/IMoveGravity";
74
- export * from "./Options/Interfaces/Particles/Move/Path/IMovePath";
75
- export * from "./Options/Interfaces/Particles/Move/IOutModes";
76
- export * from "./Options/Interfaces/Particles/Move/ISpin";
77
- export * from "./Options/Interfaces/Particles/Move/IMoveTrail";
78
- export * from "./Options/Interfaces/Particles/Number/IParticlesDensity";
79
- export * from "./Options/Interfaces/Particles/Number/IParticlesNumber";
80
- export * from "./Options/Interfaces/Particles/Opacity/IOpacity";
81
- export * from "./Options/Interfaces/Particles/Opacity/IOpacityAnimation";
82
- export * from "./Options/Interfaces/Particles/Shape/IShape";
83
- export * from "./Options/Interfaces/Particles/Size/ISize";
84
- export * from "./Options/Interfaces/Particles/Size/ISizeAnimation";
85
- export * from "./Options/Interfaces/Particles/ZIndex/IZIndex";
86
- export * from "./Options/Interfaces/Theme/ITheme";
87
- export * from "./Options/Interfaces/Theme/IThemeDefault";
88
- export * from "./Types/CustomEventArgs";
89
- export * from "./Types/CustomEventListener";
90
- export * from "./Types/ExportResult";
91
- export * from "./Types/ISourceOptions";
92
- export * from "./Types/ParticlesGroups";
93
- export * from "./Types/PathOptions";
94
- export * from "./Types/RangeValue";
95
- export * from "./Types/RecursivePartial";
96
- export * from "./Types/ShapeData";
97
- export * from "./Types/ShapeDrawerFunctions";
98
- export * from "./Types/SingleOrMultiple";
99
- export type { EventListeners } from "./Core/Utils/EventListeners";
100
- export type { InteractionManager } from "./Core/Utils/InteractionManager";
101
- export type { QuadTree } from "./Core/Utils/QuadTree";
102
- export type { Canvas } from "./Core/Canvas";
103
- export type { Container } from "./Core/Container";
104
- export type { Particle } from "./Core/Particle";
105
- export type { Particles } from "./Core/Particles";
106
- export type { Retina } from "./Core/Retina";
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
107
  export type { Engine, Engine as Main };