@tsparticles/updater-destroy
Advanced tools
Comparing version 3.6.0-beta.1 to 3.6.0
@@ -0,1 +1,2 @@ | ||
import { isNull } from "@tsparticles/engine"; | ||
import { DestroyBounds } from "./DestroyBounds.js"; | ||
@@ -11,3 +12,3 @@ import { DestroyMode } from "../../Enums/DestroyMode.js"; | ||
load(data) { | ||
if (!data) { | ||
if (isNull(data)) { | ||
return; | ||
@@ -14,0 +15,0 @@ } |
@@ -1,5 +0,5 @@ | ||
import { setRangeValue } from "@tsparticles/engine"; | ||
import { isNull, setRangeValue } from "@tsparticles/engine"; | ||
export class DestroyBounds { | ||
load(data) { | ||
if (!data) { | ||
if (isNull(data)) { | ||
return; | ||
@@ -6,0 +6,0 @@ } |
@@ -1,2 +0,2 @@ | ||
import { OptionsColor, deepExtend, executeOnSingleOrMultiple, } from "@tsparticles/engine"; | ||
import { OptionsColor, deepExtend, executeOnSingleOrMultiple, isNull, } from "@tsparticles/engine"; | ||
import { SplitFactor } from "./SplitFactor.js"; | ||
@@ -12,3 +12,3 @@ import { SplitRate } from "./SplitRate.js"; | ||
load(data) { | ||
if (!data) { | ||
if (isNull(data)) { | ||
return; | ||
@@ -15,0 +15,0 @@ } |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Destroy = void 0; | ||
const engine_1 = require("@tsparticles/engine"); | ||
const DestroyBounds_js_1 = require("./DestroyBounds.js"); | ||
@@ -14,3 +15,3 @@ const DestroyMode_js_1 = require("../../Enums/DestroyMode.js"); | ||
load(data) { | ||
if (!data) { | ||
if ((0, engine_1.isNull)(data)) { | ||
return; | ||
@@ -17,0 +18,0 @@ } |
@@ -7,3 +7,3 @@ "use strict"; | ||
load(data) { | ||
if (!data) { | ||
if ((0, engine_1.isNull)(data)) { | ||
return; | ||
@@ -10,0 +10,0 @@ } |
@@ -15,3 +15,3 @@ "use strict"; | ||
load(data) { | ||
if (!data) { | ||
if ((0, engine_1.isNull)(data)) { | ||
return; | ||
@@ -18,0 +18,0 @@ } |
@@ -0,1 +1,2 @@ | ||
import { isNull } from "@tsparticles/engine"; | ||
import { DestroyBounds } from "./DestroyBounds.js"; | ||
@@ -11,3 +12,3 @@ import { DestroyMode } from "../../Enums/DestroyMode.js"; | ||
load(data) { | ||
if (!data) { | ||
if (isNull(data)) { | ||
return; | ||
@@ -14,0 +15,0 @@ } |
@@ -1,5 +0,5 @@ | ||
import { setRangeValue } from "@tsparticles/engine"; | ||
import { isNull, setRangeValue } from "@tsparticles/engine"; | ||
export class DestroyBounds { | ||
load(data) { | ||
if (!data) { | ||
if (isNull(data)) { | ||
return; | ||
@@ -6,0 +6,0 @@ } |
@@ -1,2 +0,2 @@ | ||
import { OptionsColor, deepExtend, executeOnSingleOrMultiple, } from "@tsparticles/engine"; | ||
import { OptionsColor, deepExtend, executeOnSingleOrMultiple, isNull, } from "@tsparticles/engine"; | ||
import { SplitFactor } from "./SplitFactor.js"; | ||
@@ -12,3 +12,3 @@ import { SplitRate } from "./SplitRate.js"; | ||
load(data) { | ||
if (!data) { | ||
if (isNull(data)) { | ||
return; | ||
@@ -15,0 +15,0 @@ } |
{ | ||
"name": "@tsparticles/updater-destroy", | ||
"version": "3.6.0-beta.1", | ||
"version": "3.6.0", | ||
"description": "tsParticles particles destroy updater", | ||
@@ -90,3 +90,3 @@ "homepage": "https://particles.js.org", | ||
"dependencies": { | ||
"@tsparticles/engine": "^3.6.0-beta.1" | ||
"@tsparticles/engine": "^3.6.0" | ||
}, | ||
@@ -93,0 +93,0 @@ "publishConfig": { |
@@ -7,3 +7,3 @@ /*! | ||
* How to use? : Check the GitHub README | ||
* v3.6.0-beta.1 | ||
* v3.6.0 | ||
*/ | ||
@@ -58,3 +58,3 @@ /* | ||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Destroy: () => (/* binding */ Destroy)\n/* harmony export */ });\n/* harmony import */ var _DestroyBounds_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./DestroyBounds.js */ \"./dist/browser/Options/Classes/DestroyBounds.js\");\n/* harmony import */ var _Enums_DestroyMode_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../Enums/DestroyMode.js */ \"./dist/browser/Enums/DestroyMode.js\");\n/* harmony import */ var _Split_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Split.js */ \"./dist/browser/Options/Classes/Split.js\");\n\n\n\nclass Destroy {\n constructor() {\n this.bounds = new _DestroyBounds_js__WEBPACK_IMPORTED_MODULE_0__.DestroyBounds();\n this.mode = _Enums_DestroyMode_js__WEBPACK_IMPORTED_MODULE_1__.DestroyMode.none;\n this.split = new _Split_js__WEBPACK_IMPORTED_MODULE_2__.Split();\n }\n load(data) {\n if (!data) {\n return;\n }\n if (data.mode) {\n this.mode = data.mode;\n }\n if (data.bounds) {\n this.bounds.load(data.bounds);\n }\n this.split.load(data.split);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-destroy/./dist/browser/Options/Classes/Destroy.js?"); | ||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Destroy: () => (/* binding */ Destroy)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _DestroyBounds_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DestroyBounds.js */ \"./dist/browser/Options/Classes/DestroyBounds.js\");\n/* harmony import */ var _Enums_DestroyMode_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../Enums/DestroyMode.js */ \"./dist/browser/Enums/DestroyMode.js\");\n/* harmony import */ var _Split_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Split.js */ \"./dist/browser/Options/Classes/Split.js\");\n\n\n\n\nclass Destroy {\n constructor() {\n this.bounds = new _DestroyBounds_js__WEBPACK_IMPORTED_MODULE_1__.DestroyBounds();\n this.mode = _Enums_DestroyMode_js__WEBPACK_IMPORTED_MODULE_2__.DestroyMode.none;\n this.split = new _Split_js__WEBPACK_IMPORTED_MODULE_3__.Split();\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.mode) {\n this.mode = data.mode;\n }\n if (data.bounds) {\n this.bounds.load(data.bounds);\n }\n this.split.load(data.split);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-destroy/./dist/browser/Options/Classes/Destroy.js?"); | ||
@@ -69,3 +69,3 @@ /***/ }), | ||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ DestroyBounds: () => (/* binding */ DestroyBounds)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nclass DestroyBounds {\n load(data) {\n if (!data) {\n return;\n }\n if (data.bottom !== undefined) {\n this.bottom = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.bottom);\n }\n if (data.left !== undefined) {\n this.left = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.left);\n }\n if (data.right !== undefined) {\n this.right = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.right);\n }\n if (data.top !== undefined) {\n this.top = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.top);\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-destroy/./dist/browser/Options/Classes/DestroyBounds.js?"); | ||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ DestroyBounds: () => (/* binding */ DestroyBounds)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n\nclass DestroyBounds {\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.bottom !== undefined) {\n this.bottom = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.bottom);\n }\n if (data.left !== undefined) {\n this.left = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.left);\n }\n if (data.right !== undefined) {\n this.right = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.right);\n }\n if (data.top !== undefined) {\n this.top = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.setRangeValue)(data.top);\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-destroy/./dist/browser/Options/Classes/DestroyBounds.js?"); | ||
@@ -80,3 +80,3 @@ /***/ }), | ||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Split: () => (/* binding */ Split)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _SplitFactor_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./SplitFactor.js */ \"./dist/browser/Options/Classes/SplitFactor.js\");\n/* harmony import */ var _SplitRate_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./SplitRate.js */ \"./dist/browser/Options/Classes/SplitRate.js\");\n\n\n\nclass Split {\n constructor() {\n this.count = 1;\n this.factor = new _SplitFactor_js__WEBPACK_IMPORTED_MODULE_1__.SplitFactor();\n this.rate = new _SplitRate_js__WEBPACK_IMPORTED_MODULE_2__.SplitRate();\n this.sizeOffset = true;\n }\n load(data) {\n if (!data) {\n return;\n }\n if (data.color !== undefined) {\n this.color = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OptionsColor.create(this.color, data.color);\n }\n if (data.count !== undefined) {\n this.count = data.count;\n }\n this.factor.load(data.factor);\n this.rate.load(data.rate);\n this.particles = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.executeOnSingleOrMultiple)(data.particles, particles => {\n return (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, particles);\n });\n if (data.sizeOffset !== undefined) {\n this.sizeOffset = data.sizeOffset;\n }\n if (data.colorOffset) {\n this.colorOffset = this.colorOffset ?? {};\n if (data.colorOffset.h !== undefined) {\n this.colorOffset.h = data.colorOffset.h;\n }\n if (data.colorOffset.s !== undefined) {\n this.colorOffset.s = data.colorOffset.s;\n }\n if (data.colorOffset.l !== undefined) {\n this.colorOffset.l = data.colorOffset.l;\n }\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-destroy/./dist/browser/Options/Classes/Split.js?"); | ||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Split: () => (/* binding */ Split)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"@tsparticles/engine\");\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _SplitFactor_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./SplitFactor.js */ \"./dist/browser/Options/Classes/SplitFactor.js\");\n/* harmony import */ var _SplitRate_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./SplitRate.js */ \"./dist/browser/Options/Classes/SplitRate.js\");\n\n\n\nclass Split {\n constructor() {\n this.count = 1;\n this.factor = new _SplitFactor_js__WEBPACK_IMPORTED_MODULE_1__.SplitFactor();\n this.rate = new _SplitRate_js__WEBPACK_IMPORTED_MODULE_2__.SplitRate();\n this.sizeOffset = true;\n }\n load(data) {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isNull)(data)) {\n return;\n }\n if (data.color !== undefined) {\n this.color = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.OptionsColor.create(this.color, data.color);\n }\n if (data.count !== undefined) {\n this.count = data.count;\n }\n this.factor.load(data.factor);\n this.rate.load(data.rate);\n this.particles = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.executeOnSingleOrMultiple)(data.particles, particles => {\n return (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.deepExtend)({}, particles);\n });\n if (data.sizeOffset !== undefined) {\n this.sizeOffset = data.sizeOffset;\n }\n if (data.colorOffset) {\n this.colorOffset = this.colorOffset ?? {};\n if (data.colorOffset.h !== undefined) {\n this.colorOffset.h = data.colorOffset.h;\n }\n if (data.colorOffset.s !== undefined) {\n this.colorOffset.s = data.colorOffset.s;\n }\n if (data.colorOffset.l !== undefined) {\n this.colorOffset.l = data.colorOffset.l;\n }\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/updater-destroy/./dist/browser/Options/Classes/Split.js?"); | ||
@@ -83,0 +83,0 @@ /***/ }), |
/*! For license information please see tsparticles.updater.destroy.min.js.LICENSE.txt */ | ||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var o="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var s in o)("object"==typeof exports?exports:e)[s]=o[s]}}(this,(e=>(()=>{var t={303:t=>{t.exports=e}},o={};function s(e){var i=o[e];if(void 0!==i)return i.exports;var n=o[e]={exports:{}};return t[e](n,n.exports,s),n.exports}s.d=(e,t)=>{for(var o in t)s.o(t,o)&&!s.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};s.r(i),s.d(i,{loadDestroyUpdater:()=>O});var n,r=s(303);class l{load(e){e&&(void 0!==e.bottom&&(this.bottom=(0,r.setRangeValue)(e.bottom)),void 0!==e.left&&(this.left=(0,r.setRangeValue)(e.left)),void 0!==e.right&&(this.right=(0,r.setRangeValue)(e.right)),void 0!==e.top&&(this.top=(0,r.setRangeValue)(e.top)))}}!function(e){e.none="none",e.split="split"}(n||(n={}));class a extends r.ValueWithRandom{constructor(){super(),this.value=3}}class c extends r.ValueWithRandom{constructor(){super(),this.value={min:4,max:9}}}class d{constructor(){this.count=1,this.factor=new a,this.rate=new c,this.sizeOffset=!0}load(e){e&&(void 0!==e.color&&(this.color=r.OptionsColor.create(this.color,e.color)),void 0!==e.count&&(this.count=e.count),this.factor.load(e.factor),this.rate.load(e.rate),this.particles=(0,r.executeOnSingleOrMultiple)(e.particles,(e=>(0,r.deepExtend)({},e))),void 0!==e.sizeOffset&&(this.sizeOffset=e.sizeOffset),e.colorOffset&&(this.colorOffset=this.colorOffset??{},void 0!==e.colorOffset.h&&(this.colorOffset.h=e.colorOffset.h),void 0!==e.colorOffset.s&&(this.colorOffset.s=e.colorOffset.s),void 0!==e.colorOffset.l&&(this.colorOffset.l=e.colorOffset.l)))}}class u{constructor(){this.bounds=new l,this.mode=n.none,this.split=new d}load(e){e&&(e.mode&&(this.mode=e.mode),e.bounds&&this.bounds.load(e.bounds),this.split.load(e.split))}}const f=0,p=.5,h=0,g=1,v=500;function y(e,t,o,s){const i=o.options.destroy;if(!i)return;const n=i.split,l=(0,r.loadParticlesOptions)(e,t,o.options),a=(0,r.getRangeValue)(n.factor.value),c=o.getFillColor();n.color?l.color.load(n.color):n.colorOffset&&c?l.color.load({value:{hsl:{h:c.h+(0,r.getRangeValue)(n.colorOffset.h??f),s:c.s+(0,r.getRangeValue)(n.colorOffset.s??f),l:c.l+(0,r.getRangeValue)(n.colorOffset.l??f)}}}):l.color.load({value:{hsl:o.getFillColor()}}),l.move.load({center:{x:o.position.x,y:o.position.y,mode:r.PixelMode.precise}}),(0,r.isNumber)(l.size.value)?l.size.value/=a:(l.size.value.min/=a,l.size.value.max/=a),l.load(s);const d=n.sizeOffset?(0,r.setRangeValue)(-o.size.value,o.size.value):f,u={x:o.position.x+(0,r.randomInRange)(d),y:o.position.y+(0,r.randomInRange)(d)};return t.particles.addParticle(u,l,o.group,(e=>!(e.size.value<p)&&(e.velocity.length=(0,r.randomInRange)((0,r.setRangeValue)(o.velocity.length,e.velocity.length)),e.splitCount=(o.splitCount??h)+g,e.unbreakable=!0,setTimeout((()=>{e.unbreakable=!1}),v),!0)))}class m{constructor(e,t){this.container=t,this.engine=e}init(e){const t=this.container,o=e.options.destroy;if(!o)return;e.splitCount=0;const s=o.bounds;e.destroyBounds||(e.destroyBounds={});const{bottom:i,left:n,right:l,top:a}=s,{destroyBounds:c}=e,d=t.canvas.size;i&&(c.bottom=(0,r.getRangeValue)(i)*d.height/r.percentDenominator),n&&(c.left=(0,r.getRangeValue)(n)*d.width/r.percentDenominator),l&&(c.right=(0,r.getRangeValue)(l)*d.width/r.percentDenominator),a&&(c.top=(0,r.getRangeValue)(a)*d.height/r.percentDenominator)}isEnabled(e){return!e.destroyed}loadOptions(e,...t){e.destroy||(e.destroy=new u);for(const o of t)e.destroy.load(o?.destroy)}particleDestroyed(e,t){if(t)return;const o=e.options.destroy;o&&o.mode===n.split&&function(e,t,o){const s=o.options.destroy;if(!s)return;const i=s.split;if(i.count>=0&&(void 0===o.splitCount||o.splitCount++>i.count))return;const n=(0,r.getRangeValue)(i.rate.value),l=(0,r.itemFromSingleOrMultiple)(i.particles);for(let s=0;s<n;s++)y(e,t,o,l)}(this.engine,this.container,e)}update(e){if(!this.isEnabled(e))return;const t=e.getPosition(),o=e.destroyBounds;o&&(void 0!==o.bottom&&t.y>=o.bottom||void 0!==o.left&&t.x<=o.left||void 0!==o.right&&t.x>=o.right||void 0!==o.top&&t.y<=o.top)&&e.destroy()}}async function O(e,t=!0){await e.addParticleUpdater("destroy",(t=>Promise.resolve(new m(e,t))),t)}return i})())); | ||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/engine"));else if("function"==typeof define&&define.amd)define(["@tsparticles/engine"],t);else{var o="object"==typeof exports?t(require("@tsparticles/engine")):t(e.window);for(var s in o)("object"==typeof exports?exports:e)[s]=o[s]}}(this,(e=>(()=>{var t={303:t=>{t.exports=e}},o={};function s(e){var i=o[e];if(void 0!==i)return i.exports;var n=o[e]={exports:{}};return t[e](n,n.exports,s),n.exports}s.d=(e,t)=>{for(var o in t)s.o(t,o)&&!s.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},s.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),s.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};s.r(i),s.d(i,{loadDestroyUpdater:()=>O});var n,r=s(303);class l{load(e){(0,r.isNull)(e)||(void 0!==e.bottom&&(this.bottom=(0,r.setRangeValue)(e.bottom)),void 0!==e.left&&(this.left=(0,r.setRangeValue)(e.left)),void 0!==e.right&&(this.right=(0,r.setRangeValue)(e.right)),void 0!==e.top&&(this.top=(0,r.setRangeValue)(e.top)))}}!function(e){e.none="none",e.split="split"}(n||(n={}));class a extends r.ValueWithRandom{constructor(){super(),this.value=3}}class c extends r.ValueWithRandom{constructor(){super(),this.value={min:4,max:9}}}class d{constructor(){this.count=1,this.factor=new a,this.rate=new c,this.sizeOffset=!0}load(e){(0,r.isNull)(e)||(void 0!==e.color&&(this.color=r.OptionsColor.create(this.color,e.color)),void 0!==e.count&&(this.count=e.count),this.factor.load(e.factor),this.rate.load(e.rate),this.particles=(0,r.executeOnSingleOrMultiple)(e.particles,(e=>(0,r.deepExtend)({},e))),void 0!==e.sizeOffset&&(this.sizeOffset=e.sizeOffset),e.colorOffset&&(this.colorOffset=this.colorOffset??{},void 0!==e.colorOffset.h&&(this.colorOffset.h=e.colorOffset.h),void 0!==e.colorOffset.s&&(this.colorOffset.s=e.colorOffset.s),void 0!==e.colorOffset.l&&(this.colorOffset.l=e.colorOffset.l)))}}class u{constructor(){this.bounds=new l,this.mode=n.none,this.split=new d}load(e){(0,r.isNull)(e)||(e.mode&&(this.mode=e.mode),e.bounds&&this.bounds.load(e.bounds),this.split.load(e.split))}}const f=0,p=.5,h=0,g=1,v=500;function y(e,t,o,s){const i=o.options.destroy;if(!i)return;const n=i.split,l=(0,r.loadParticlesOptions)(e,t,o.options),a=(0,r.getRangeValue)(n.factor.value),c=o.getFillColor();n.color?l.color.load(n.color):n.colorOffset&&c?l.color.load({value:{hsl:{h:c.h+(0,r.getRangeValue)(n.colorOffset.h??f),s:c.s+(0,r.getRangeValue)(n.colorOffset.s??f),l:c.l+(0,r.getRangeValue)(n.colorOffset.l??f)}}}):l.color.load({value:{hsl:o.getFillColor()}}),l.move.load({center:{x:o.position.x,y:o.position.y,mode:r.PixelMode.precise}}),(0,r.isNumber)(l.size.value)?l.size.value/=a:(l.size.value.min/=a,l.size.value.max/=a),l.load(s);const d=n.sizeOffset?(0,r.setRangeValue)(-o.size.value,o.size.value):f,u={x:o.position.x+(0,r.randomInRange)(d),y:o.position.y+(0,r.randomInRange)(d)};return t.particles.addParticle(u,l,o.group,(e=>!(e.size.value<p)&&(e.velocity.length=(0,r.randomInRange)((0,r.setRangeValue)(o.velocity.length,e.velocity.length)),e.splitCount=(o.splitCount??h)+g,e.unbreakable=!0,setTimeout((()=>{e.unbreakable=!1}),v),!0)))}class m{constructor(e,t){this.container=t,this.engine=e}init(e){const t=this.container,o=e.options.destroy;if(!o)return;e.splitCount=0;const s=o.bounds;e.destroyBounds||(e.destroyBounds={});const{bottom:i,left:n,right:l,top:a}=s,{destroyBounds:c}=e,d=t.canvas.size;i&&(c.bottom=(0,r.getRangeValue)(i)*d.height/r.percentDenominator),n&&(c.left=(0,r.getRangeValue)(n)*d.width/r.percentDenominator),l&&(c.right=(0,r.getRangeValue)(l)*d.width/r.percentDenominator),a&&(c.top=(0,r.getRangeValue)(a)*d.height/r.percentDenominator)}isEnabled(e){return!e.destroyed}loadOptions(e,...t){e.destroy||(e.destroy=new u);for(const o of t)e.destroy.load(o?.destroy)}particleDestroyed(e,t){if(t)return;const o=e.options.destroy;o&&o.mode===n.split&&function(e,t,o){const s=o.options.destroy;if(!s)return;const i=s.split;if(i.count>=0&&(void 0===o.splitCount||o.splitCount++>i.count))return;const n=(0,r.getRangeValue)(i.rate.value),l=(0,r.itemFromSingleOrMultiple)(i.particles);for(let s=0;s<n;s++)y(e,t,o,l)}(this.engine,this.container,e)}update(e){if(!this.isEnabled(e))return;const t=e.getPosition(),o=e.destroyBounds;o&&(void 0!==o.bottom&&t.y>=o.bottom||void 0!==o.left&&t.x<=o.left||void 0!==o.right&&t.x>=o.right||void 0!==o.top&&t.y<=o.top)&&e.destroy()}}async function O(e,t=!0){await e.addParticleUpdater("destroy",(t=>Promise.resolve(new m(e,t))),t)}return i})())); |
@@ -1,1 +0,1 @@ | ||
/*! tsParticles Destroy Updater v3.6.0-beta.1 by Matteo Bruni */ | ||
/*! tsParticles Destroy Updater v3.6.0 by Matteo Bruni */ |
@@ -1,2 +0,2 @@ | ||
import type { IOptionLoader, RecursivePartial } from "@tsparticles/engine"; | ||
import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; | ||
import { DestroyBounds } from "./DestroyBounds.js"; | ||
@@ -3,0 +3,0 @@ import { DestroyMode } from "../../Enums/DestroyMode.js"; |
@@ -7,3 +7,3 @@ (function (factory) { | ||
else if (typeof define === "function" && define.amd) { | ||
define(["require", "exports", "./DestroyBounds.js", "../../Enums/DestroyMode.js", "./Split.js"], factory); | ||
define(["require", "exports", "@tsparticles/engine", "./DestroyBounds.js", "../../Enums/DestroyMode.js", "./Split.js"], factory); | ||
} | ||
@@ -14,2 +14,3 @@ })(function (require, exports) { | ||
exports.Destroy = void 0; | ||
const engine_1 = require("@tsparticles/engine"); | ||
const DestroyBounds_js_1 = require("./DestroyBounds.js"); | ||
@@ -25,3 +26,3 @@ const DestroyMode_js_1 = require("../../Enums/DestroyMode.js"); | ||
load(data) { | ||
if (!data) { | ||
if ((0, engine_1.isNull)(data)) { | ||
return; | ||
@@ -28,0 +29,0 @@ } |
@@ -16,3 +16,3 @@ (function (factory) { | ||
load(data) { | ||
if (!data) { | ||
if ((0, engine_1.isNull)(data)) { | ||
return; | ||
@@ -19,0 +19,0 @@ } |
@@ -24,3 +24,3 @@ (function (factory) { | ||
load(data) { | ||
if (!data) { | ||
if ((0, engine_1.isNull)(data)) { | ||
return; | ||
@@ -27,0 +27,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
359910
1573
1
Updated@tsparticles/engine@^3.6.0