@tsparticles/preset-firefly 4.1.0 → 4.1.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.
- package/README.md +1 -1
- package/browser/bundle.js +3 -2
- package/cjs/bundle.js +3 -2
- package/esm/bundle.js +3 -2
- package/package.json +6 -6
- package/report.html +1 -1
- package/tsparticles.preset.firefly.bundle.js +17 -17
- package/tsparticles.preset.firefly.bundle.min.js +1 -1
- package/tsparticles.preset.firefly.js +1 -1
- package/types/bundle.d.ts +2 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(g){g.__tsParticlesInternals=g.__tsParticlesInternals||{};g.__tsParticlesInternals.bundles=g.__tsParticlesInternals.bundles||{};g.__tsParticlesInternals.effects=g.__tsParticlesInternals.effects||{};g.__tsParticlesInternals.engine=g.__tsParticlesInternals.engine||{};g.__tsParticlesInternals.interactions=g.__tsParticlesInternals.interactions||{};g.__tsParticlesInternals.palettes=g.__tsParticlesInternals.palettes||{};g.__tsParticlesInternals.paths=g.__tsParticlesInternals.paths||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins.emittersShapes=g.__tsParticlesInternals.plugins.emittersShapes||{};g.__tsParticlesInternals.presets=g.__tsParticlesInternals.presets||{};g.__tsParticlesInternals.shapes=g.__tsParticlesInternals.shapes||{};g.__tsParticlesInternals.updaters=g.__tsParticlesInternals.updaters||{};g.__tsParticlesInternals.utils=g.__tsParticlesInternals.utils||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas.utils=g.__tsParticlesInternals.canvas.utils||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path.utils=g.__tsParticlesInternals.path.utils||{};var __tsProxyFactory=typeof Proxy!=="undefined"?function(obj){return new Proxy(obj,{get:function(target,key){if(!(key in target)){target[key]={};}return target[key];}});}:function(obj){return obj;};g.__tsParticlesInternals.bundles=__tsProxyFactory(g.__tsParticlesInternals.bundles);g.__tsParticlesInternals.effects=__tsProxyFactory(g.__tsParticlesInternals.effects);g.__tsParticlesInternals.interactions=__tsProxyFactory(g.__tsParticlesInternals.interactions);g.__tsParticlesInternals.palettes=__tsProxyFactory(g.__tsParticlesInternals.palettes);g.__tsParticlesInternals.paths=__tsProxyFactory(g.__tsParticlesInternals.paths);g.__tsParticlesInternals.plugins=__tsProxyFactory(g.__tsParticlesInternals.plugins);g.__tsParticlesInternals.plugins.emittersShapes=__tsProxyFactory(g.__tsParticlesInternals.plugins.emittersShapes);g.__tsParticlesInternals.presets=__tsProxyFactory(g.__tsParticlesInternals.presets);g.__tsParticlesInternals.shapes=__tsProxyFactory(g.__tsParticlesInternals.shapes);g.__tsParticlesInternals.updaters=__tsProxyFactory(g.__tsParticlesInternals.updaters);g.__tsParticlesInternals.utils=__tsProxyFactory(g.__tsParticlesInternals.utils);g.__tsParticlesInternals.canvas=__tsProxyFactory(g.__tsParticlesInternals.canvas);g.__tsParticlesInternals.path=__tsProxyFactory(g.__tsParticlesInternals.path);g.tsparticlesInternalExports=g.tsparticlesInternalExports||{};})(typeof globalThis!=="undefined"?globalThis:typeof window!=="undefined"?window:this);
|
|
2
|
-
/* Preset v4.1.
|
|
2
|
+
/* Preset v4.1.2 */
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
5
5
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
@@ -1002,7 +1002,7 @@
|
|
|
1002
1002
|
return this.#domArray;
|
|
1003
1003
|
}
|
|
1004
1004
|
get version() {
|
|
1005
|
-
return "4.1.
|
|
1005
|
+
return "4.1.2";
|
|
1006
1006
|
}
|
|
1007
1007
|
addEventListener(type, listener) {
|
|
1008
1008
|
this.#eventDispatcher.addEventListener(type, listener);
|
|
@@ -2795,7 +2795,7 @@
|
|
|
2795
2795
|
}
|
|
2796
2796
|
|
|
2797
2797
|
async function loadBlendPlugin(engine) {
|
|
2798
|
-
engine.checkVersion("4.1.
|
|
2798
|
+
engine.checkVersion("4.1.2");
|
|
2799
2799
|
await engine.pluginManager.register(e => {
|
|
2800
2800
|
e.pluginManager.addPlugin(new BlendPlugin());
|
|
2801
2801
|
});
|
|
@@ -2832,7 +2832,7 @@
|
|
|
2832
2832
|
}
|
|
2833
2833
|
|
|
2834
2834
|
async function loadCircleShape(engine) {
|
|
2835
|
-
engine.checkVersion("4.1.
|
|
2835
|
+
engine.checkVersion("4.1.2");
|
|
2836
2836
|
await engine.pluginManager.register(e => {
|
|
2837
2837
|
e.pluginManager.addShape(["circle"], () => {
|
|
2838
2838
|
return Promise.resolve(new CircleDrawer());
|
|
@@ -2880,7 +2880,7 @@
|
|
|
2880
2880
|
}
|
|
2881
2881
|
|
|
2882
2882
|
async function loadHexColorPlugin(engine) {
|
|
2883
|
-
engine.checkVersion("4.1.
|
|
2883
|
+
engine.checkVersion("4.1.2");
|
|
2884
2884
|
await engine.pluginManager.register(e => {
|
|
2885
2885
|
e.pluginManager.addColorManager("hex", new HexColorManager());
|
|
2886
2886
|
});
|
|
@@ -2933,7 +2933,7 @@
|
|
|
2933
2933
|
}
|
|
2934
2934
|
|
|
2935
2935
|
async function loadHslColorPlugin(engine) {
|
|
2936
|
-
engine.checkVersion("4.1.
|
|
2936
|
+
engine.checkVersion("4.1.2");
|
|
2937
2937
|
await engine.pluginManager.register(e => {
|
|
2938
2938
|
e.pluginManager.addColorManager("hsl", new HslColorManager());
|
|
2939
2939
|
});
|
|
@@ -2957,7 +2957,7 @@
|
|
|
2957
2957
|
}
|
|
2958
2958
|
|
|
2959
2959
|
async function loadMovePlugin(engine) {
|
|
2960
|
-
engine.checkVersion("4.1.
|
|
2960
|
+
engine.checkVersion("4.1.2");
|
|
2961
2961
|
await engine.pluginManager.register(e => {
|
|
2962
2962
|
const moveEngine = e, movePluginManager = moveEngine.pluginManager;
|
|
2963
2963
|
movePluginManager.initializers.pathGenerators ??= new Map();
|
|
@@ -3064,7 +3064,7 @@
|
|
|
3064
3064
|
}
|
|
3065
3065
|
|
|
3066
3066
|
async function loadOpacityUpdater(engine) {
|
|
3067
|
-
engine.checkVersion("4.1.
|
|
3067
|
+
engine.checkVersion("4.1.2");
|
|
3068
3068
|
await engine.pluginManager.register(e => {
|
|
3069
3069
|
e.pluginManager.addParticleUpdater("opacity", container => {
|
|
3070
3070
|
return Promise.resolve(new OpacityUpdater(container));
|
|
@@ -3411,7 +3411,7 @@
|
|
|
3411
3411
|
}
|
|
3412
3412
|
|
|
3413
3413
|
async function loadOutModesUpdater(engine) {
|
|
3414
|
-
engine.checkVersion("4.1.
|
|
3414
|
+
engine.checkVersion("4.1.2");
|
|
3415
3415
|
await engine.pluginManager.register(e => {
|
|
3416
3416
|
e.pluginManager.addParticleUpdater("outModes", container => {
|
|
3417
3417
|
return Promise.resolve(new OutOfCanvasUpdater(container));
|
|
@@ -3482,7 +3482,7 @@
|
|
|
3482
3482
|
}
|
|
3483
3483
|
|
|
3484
3484
|
async function loadPaintUpdater(engine) {
|
|
3485
|
-
engine.checkVersion("4.1.
|
|
3485
|
+
engine.checkVersion("4.1.2");
|
|
3486
3486
|
await engine.pluginManager.register(e => {
|
|
3487
3487
|
e.pluginManager.addParticleUpdater("paint", container => {
|
|
3488
3488
|
return Promise.resolve(new PaintUpdater(e.pluginManager, container));
|
|
@@ -3537,7 +3537,7 @@
|
|
|
3537
3537
|
}
|
|
3538
3538
|
|
|
3539
3539
|
async function loadRgbColorPlugin(engine) {
|
|
3540
|
-
engine.checkVersion("4.1.
|
|
3540
|
+
engine.checkVersion("4.1.2");
|
|
3541
3541
|
await engine.pluginManager.register(e => {
|
|
3542
3542
|
e.pluginManager.addColorManager("rgb", new RgbColorManager());
|
|
3543
3543
|
});
|
|
@@ -3636,7 +3636,7 @@
|
|
|
3636
3636
|
}
|
|
3637
3637
|
|
|
3638
3638
|
async function loadSizeUpdater(engine) {
|
|
3639
|
-
engine.checkVersion("4.1.
|
|
3639
|
+
engine.checkVersion("4.1.2");
|
|
3640
3640
|
await engine.pluginManager.register(e => {
|
|
3641
3641
|
e.pluginManager.addParticleUpdater("size", container => {
|
|
3642
3642
|
return Promise.resolve(new SizeUpdater(container));
|
|
@@ -3645,7 +3645,7 @@
|
|
|
3645
3645
|
}
|
|
3646
3646
|
|
|
3647
3647
|
async function loadBasic(engine) {
|
|
3648
|
-
engine.checkVersion("4.1.
|
|
3648
|
+
engine.checkVersion("4.1.2");
|
|
3649
3649
|
await engine.pluginManager.register(async (e) => {
|
|
3650
3650
|
await Promise.all([
|
|
3651
3651
|
loadBlendPlugin(e),
|
|
@@ -3883,7 +3883,7 @@
|
|
|
3883
3883
|
const clickEvent = "click", mouseDownEvent = "pointerdown", mouseUpEvent = "pointerup", mouseLeaveEvent = "pointerleave", mouseMoveEvent = "pointermove", touchStartEvent = "touchstart", touchEndEvent = "touchend", touchMoveEvent = "touchmove", touchCancelEvent = "touchcancel";
|
|
3884
3884
|
|
|
3885
3885
|
async function loadInteractivityPlugin(engine) {
|
|
3886
|
-
engine.checkVersion("4.1.
|
|
3886
|
+
engine.checkVersion("4.1.2");
|
|
3887
3887
|
await engine.pluginManager.register(e => {
|
|
3888
3888
|
const interactivityEngine = e, interactivityPluginManager = interactivityEngine.pluginManager;
|
|
3889
3889
|
interactivityPluginManager.addPlugin(new InteractivityPlugin(interactivityPluginManager));
|
|
@@ -4111,7 +4111,7 @@
|
|
|
4111
4111
|
}
|
|
4112
4112
|
|
|
4113
4113
|
async function loadExternalTrailInteraction(engine) {
|
|
4114
|
-
engine.checkVersion("4.1.
|
|
4114
|
+
engine.checkVersion("4.1.2");
|
|
4115
4115
|
await engine.pluginManager.register((e) => {
|
|
4116
4116
|
ensureInteractivityPluginLoaded(e);
|
|
4117
4117
|
e.pluginManager.addInteractor?.("externalTrail", container => {
|
|
@@ -4279,7 +4279,7 @@
|
|
|
4279
4279
|
}
|
|
4280
4280
|
|
|
4281
4281
|
async function loadLifeUpdater(engine) {
|
|
4282
|
-
engine.checkVersion("4.1.
|
|
4282
|
+
engine.checkVersion("4.1.2");
|
|
4283
4283
|
await engine.pluginManager.register(e => {
|
|
4284
4284
|
e.pluginManager.addParticleUpdater("life", container => {
|
|
4285
4285
|
return Promise.resolve(new LifeUpdater(container));
|
|
@@ -4367,8 +4367,8 @@
|
|
|
4367
4367
|
}
|
|
4368
4368
|
|
|
4369
4369
|
const globalObject = globalThis;
|
|
4370
|
-
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
4371
4370
|
globalObject.loadFireflyPreset = loadFireflyPreset;
|
|
4371
|
+
globalObject.tsParticles = tsParticles;
|
|
4372
4372
|
|
|
4373
4373
|
const fColorIndex = 0, sColorIndex = 1;
|
|
4374
4374
|
function setTransformValue(factor, newFactor, key) {
|