@tsparticles/pjs 3.0.0-alpha.1 → 3.0.0-beta.5
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 +46 -8
- package/browser/VincentGarreau/particles.js +271 -0
- package/browser/bundle.js +2 -2
- package/browser/index.js +7 -20
- package/browser/marcbruederlin/Particles.js +83 -0
- package/browser/package.json +1 -0
- package/cjs/VincentGarreau/particles.js +274 -0
- package/cjs/bundle.js +3 -2
- package/cjs/index.js +7 -20
- package/cjs/marcbruederlin/Particles.js +87 -0
- package/cjs/package.json +1 -0
- package/esm/VincentGarreau/particles.js +271 -0
- package/esm/bundle.js +2 -2
- package/esm/index.js +7 -20
- package/esm/marcbruederlin/Particles.js +83 -0
- package/esm/package.json +1 -0
- package/package.json +36 -13
- package/report.html +5 -5
- package/tsparticles.pjs.bundle.js +2596 -2312
- package/tsparticles.pjs.bundle.min.js +1 -1
- package/tsparticles.pjs.bundle.min.js.LICENSE.txt +1 -8
- package/tsparticles.pjs.js +396 -12
- package/tsparticles.pjs.min.js +1 -1
- package/tsparticles.pjs.min.js.LICENSE.txt +1 -8
- package/types/VincentGarreau/IParticlesJS.d.ts +117 -0
- package/types/VincentGarreau/particles.d.ts +7 -0
- package/types/bundle.d.ts +2 -2
- package/types/index.d.ts +11 -2
- package/types/marcbruederlin/Particles.d.ts +23 -0
- package/umd/VincentGarreau/particles.js +284 -0
- package/umd/bundle.js +3 -2
- package/umd/index.js +8 -21
- package/umd/marcbruederlin/Particles.js +97 -0
- package/types/IParticlesJS.d.ts +0 -6
- /package/browser/{IParticlesJS.js → VincentGarreau/IParticlesJS.js} +0 -0
- /package/cjs/{IParticlesJS.js → VincentGarreau/IParticlesJS.js} +0 -0
- /package/esm/{IParticlesJS.js → VincentGarreau/IParticlesJS.js} +0 -0
- /package/umd/{IParticlesJS.js → VincentGarreau/IParticlesJS.js} +0 -0
| @@ -0,0 +1,274 @@ | |
| 1 | 
            +
            "use strict";
         | 
| 2 | 
            +
            Object.defineProperty(exports, "__esModule", { value: true });
         | 
| 3 | 
            +
            exports.initParticlesJS = void 0;
         | 
| 4 | 
            +
            const engine_1 = require("@tsparticles/engine");
         | 
| 5 | 
            +
            const defaultPjsOptions = {
         | 
| 6 | 
            +
                particles: {
         | 
| 7 | 
            +
                    number: {
         | 
| 8 | 
            +
                        value: 400,
         | 
| 9 | 
            +
                        density: {
         | 
| 10 | 
            +
                            enable: true,
         | 
| 11 | 
            +
                            value_area: 800,
         | 
| 12 | 
            +
                        },
         | 
| 13 | 
            +
                    },
         | 
| 14 | 
            +
                    color: {
         | 
| 15 | 
            +
                        value: "#fff",
         | 
| 16 | 
            +
                    },
         | 
| 17 | 
            +
                    shape: {
         | 
| 18 | 
            +
                        type: "circle",
         | 
| 19 | 
            +
                        stroke: {
         | 
| 20 | 
            +
                            width: 0,
         | 
| 21 | 
            +
                            color: "#ff0000",
         | 
| 22 | 
            +
                        },
         | 
| 23 | 
            +
                        polygon: {
         | 
| 24 | 
            +
                            nb_sides: 5,
         | 
| 25 | 
            +
                        },
         | 
| 26 | 
            +
                        image: {
         | 
| 27 | 
            +
                            src: "",
         | 
| 28 | 
            +
                            width: 100,
         | 
| 29 | 
            +
                            height: 100,
         | 
| 30 | 
            +
                        },
         | 
| 31 | 
            +
                    },
         | 
| 32 | 
            +
                    opacity: {
         | 
| 33 | 
            +
                        value: 1,
         | 
| 34 | 
            +
                        random: false,
         | 
| 35 | 
            +
                        anim: {
         | 
| 36 | 
            +
                            enable: false,
         | 
| 37 | 
            +
                            speed: 2,
         | 
| 38 | 
            +
                            opacity_min: 0,
         | 
| 39 | 
            +
                            sync: false,
         | 
| 40 | 
            +
                        },
         | 
| 41 | 
            +
                    },
         | 
| 42 | 
            +
                    size: {
         | 
| 43 | 
            +
                        value: 20,
         | 
| 44 | 
            +
                        random: false,
         | 
| 45 | 
            +
                        anim: {
         | 
| 46 | 
            +
                            enable: false,
         | 
| 47 | 
            +
                            speed: 20,
         | 
| 48 | 
            +
                            size_min: 0,
         | 
| 49 | 
            +
                            sync: false,
         | 
| 50 | 
            +
                        },
         | 
| 51 | 
            +
                    },
         | 
| 52 | 
            +
                    line_linked: {
         | 
| 53 | 
            +
                        enable: true,
         | 
| 54 | 
            +
                        distance: 100,
         | 
| 55 | 
            +
                        color: "#fff",
         | 
| 56 | 
            +
                        opacity: 1,
         | 
| 57 | 
            +
                        width: 1,
         | 
| 58 | 
            +
                    },
         | 
| 59 | 
            +
                    move: {
         | 
| 60 | 
            +
                        enable: true,
         | 
| 61 | 
            +
                        speed: 2,
         | 
| 62 | 
            +
                        direction: "none",
         | 
| 63 | 
            +
                        random: false,
         | 
| 64 | 
            +
                        straight: false,
         | 
| 65 | 
            +
                        out_mode: "out",
         | 
| 66 | 
            +
                        bounce: false,
         | 
| 67 | 
            +
                        attract: {
         | 
| 68 | 
            +
                            enable: false,
         | 
| 69 | 
            +
                            rotateX: 3000,
         | 
| 70 | 
            +
                            rotateY: 3000,
         | 
| 71 | 
            +
                        },
         | 
| 72 | 
            +
                    },
         | 
| 73 | 
            +
                },
         | 
| 74 | 
            +
                interactivity: {
         | 
| 75 | 
            +
                    detect_on: "canvas",
         | 
| 76 | 
            +
                    events: {
         | 
| 77 | 
            +
                        onhover: {
         | 
| 78 | 
            +
                            enable: true,
         | 
| 79 | 
            +
                            mode: "grab",
         | 
| 80 | 
            +
                        },
         | 
| 81 | 
            +
                        onclick: {
         | 
| 82 | 
            +
                            enable: true,
         | 
| 83 | 
            +
                            mode: "push",
         | 
| 84 | 
            +
                        },
         | 
| 85 | 
            +
                        resize: true,
         | 
| 86 | 
            +
                    },
         | 
| 87 | 
            +
                    modes: {
         | 
| 88 | 
            +
                        grab: {
         | 
| 89 | 
            +
                            distance: 100,
         | 
| 90 | 
            +
                            line_linked: {
         | 
| 91 | 
            +
                                opacity: 1,
         | 
| 92 | 
            +
                            },
         | 
| 93 | 
            +
                        },
         | 
| 94 | 
            +
                        bubble: {
         | 
| 95 | 
            +
                            distance: 200,
         | 
| 96 | 
            +
                            size: 80,
         | 
| 97 | 
            +
                            duration: 0.4,
         | 
| 98 | 
            +
                            opacity: 1,
         | 
| 99 | 
            +
                            speed: 3,
         | 
| 100 | 
            +
                        },
         | 
| 101 | 
            +
                        repulse: {
         | 
| 102 | 
            +
                            distance: 200,
         | 
| 103 | 
            +
                            duration: 0.4,
         | 
| 104 | 
            +
                        },
         | 
| 105 | 
            +
                        push: {
         | 
| 106 | 
            +
                            particles_nb: 4,
         | 
| 107 | 
            +
                        },
         | 
| 108 | 
            +
                        remove: {
         | 
| 109 | 
            +
                            particles_nb: 2,
         | 
| 110 | 
            +
                        },
         | 
| 111 | 
            +
                    },
         | 
| 112 | 
            +
                },
         | 
| 113 | 
            +
                retina_detect: false,
         | 
| 114 | 
            +
            };
         | 
| 115 | 
            +
            const initParticlesJS = (engine) => {
         | 
| 116 | 
            +
                const particlesJS = (tagId, options) => {
         | 
| 117 | 
            +
                    const fixedOptions = (0, engine_1.deepExtend)(defaultPjsOptions, options);
         | 
| 118 | 
            +
                    return engine.load({
         | 
| 119 | 
            +
                        id: tagId,
         | 
| 120 | 
            +
                        options: {
         | 
| 121 | 
            +
                            fullScreen: {
         | 
| 122 | 
            +
                                enable: false,
         | 
| 123 | 
            +
                            },
         | 
| 124 | 
            +
                            detectRetina: fixedOptions.retina_detect,
         | 
| 125 | 
            +
                            smooth: true,
         | 
| 126 | 
            +
                            interactivity: {
         | 
| 127 | 
            +
                                detectsOn: fixedOptions.interactivity.detect_on,
         | 
| 128 | 
            +
                                events: {
         | 
| 129 | 
            +
                                    onHover: {
         | 
| 130 | 
            +
                                        enable: fixedOptions.interactivity.events.onhover.enable,
         | 
| 131 | 
            +
                                        mode: fixedOptions.interactivity.events.onhover.mode,
         | 
| 132 | 
            +
                                    },
         | 
| 133 | 
            +
                                    onClick: {
         | 
| 134 | 
            +
                                        enable: fixedOptions.interactivity.events.onclick.enable,
         | 
| 135 | 
            +
                                        mode: fixedOptions.interactivity.events.onclick.mode,
         | 
| 136 | 
            +
                                    },
         | 
| 137 | 
            +
                                    resize: {
         | 
| 138 | 
            +
                                        enable: fixedOptions.interactivity.events.resize,
         | 
| 139 | 
            +
                                    },
         | 
| 140 | 
            +
                                },
         | 
| 141 | 
            +
                                modes: {
         | 
| 142 | 
            +
                                    grab: {
         | 
| 143 | 
            +
                                        distance: fixedOptions.interactivity.modes.grab.distance,
         | 
| 144 | 
            +
                                        links: {
         | 
| 145 | 
            +
                                            opacity: fixedOptions.interactivity.modes.grab.line_linked.opacity,
         | 
| 146 | 
            +
                                        },
         | 
| 147 | 
            +
                                    },
         | 
| 148 | 
            +
                                    bubble: {
         | 
| 149 | 
            +
                                        distance: fixedOptions.interactivity.modes.bubble.distance,
         | 
| 150 | 
            +
                                        size: fixedOptions.interactivity.modes.bubble.size,
         | 
| 151 | 
            +
                                        duration: fixedOptions.interactivity.modes.bubble.duration,
         | 
| 152 | 
            +
                                        opacity: fixedOptions.interactivity.modes.bubble.opacity,
         | 
| 153 | 
            +
                                        speed: fixedOptions.interactivity.modes.bubble.speed,
         | 
| 154 | 
            +
                                    },
         | 
| 155 | 
            +
                                    repulse: {
         | 
| 156 | 
            +
                                        distance: fixedOptions.interactivity.modes.repulse.distance,
         | 
| 157 | 
            +
                                        duration: fixedOptions.interactivity.modes.repulse.duration,
         | 
| 158 | 
            +
                                    },
         | 
| 159 | 
            +
                                    push: {
         | 
| 160 | 
            +
                                        quantity: fixedOptions.interactivity.modes.push.particles_nb,
         | 
| 161 | 
            +
                                    },
         | 
| 162 | 
            +
                                    remove: {
         | 
| 163 | 
            +
                                        quantity: fixedOptions.interactivity.modes.remove.particles_nb,
         | 
| 164 | 
            +
                                    },
         | 
| 165 | 
            +
                                },
         | 
| 166 | 
            +
                            },
         | 
| 167 | 
            +
                            particles: {
         | 
| 168 | 
            +
                                collisions: {
         | 
| 169 | 
            +
                                    enable: fixedOptions.particles.move.bounce,
         | 
| 170 | 
            +
                                },
         | 
| 171 | 
            +
                                number: {
         | 
| 172 | 
            +
                                    value: fixedOptions.particles.number.value,
         | 
| 173 | 
            +
                                    density: {
         | 
| 174 | 
            +
                                        enable: fixedOptions.particles.number.density.enable,
         | 
| 175 | 
            +
                                        width: fixedOptions.particles.number.density.value_area,
         | 
| 176 | 
            +
                                    },
         | 
| 177 | 
            +
                                },
         | 
| 178 | 
            +
                                color: {
         | 
| 179 | 
            +
                                    value: fixedOptions.particles.color.value,
         | 
| 180 | 
            +
                                },
         | 
| 181 | 
            +
                                stroke: {
         | 
| 182 | 
            +
                                    width: fixedOptions.particles.shape.stroke.width,
         | 
| 183 | 
            +
                                    color: {
         | 
| 184 | 
            +
                                        value: fixedOptions.particles.shape.stroke.color,
         | 
| 185 | 
            +
                                    },
         | 
| 186 | 
            +
                                },
         | 
| 187 | 
            +
                                shape: {
         | 
| 188 | 
            +
                                    type: fixedOptions.particles.shape.type,
         | 
| 189 | 
            +
                                    options: {
         | 
| 190 | 
            +
                                        polygon: {
         | 
| 191 | 
            +
                                            sides: fixedOptions.particles.shape.polygon.nb_sides,
         | 
| 192 | 
            +
                                        },
         | 
| 193 | 
            +
                                        image: {
         | 
| 194 | 
            +
                                            src: fixedOptions.particles.shape.image.src,
         | 
| 195 | 
            +
                                            width: fixedOptions.particles.shape.image.width,
         | 
| 196 | 
            +
                                            height: fixedOptions.particles.shape.image.height,
         | 
| 197 | 
            +
                                        },
         | 
| 198 | 
            +
                                    },
         | 
| 199 | 
            +
                                },
         | 
| 200 | 
            +
                                opacity: {
         | 
| 201 | 
            +
                                    value: fixedOptions.particles.opacity.random
         | 
| 202 | 
            +
                                        ? {
         | 
| 203 | 
            +
                                            min: fixedOptions.particles.opacity.anim.enable
         | 
| 204 | 
            +
                                                ? fixedOptions.particles.opacity.anim.opacity_min
         | 
| 205 | 
            +
                                                : 0,
         | 
| 206 | 
            +
                                            max: fixedOptions.particles.opacity.value,
         | 
| 207 | 
            +
                                        }
         | 
| 208 | 
            +
                                        : fixedOptions.particles.opacity.value,
         | 
| 209 | 
            +
                                    animation: {
         | 
| 210 | 
            +
                                        enable: fixedOptions.particles.opacity.anim.enable,
         | 
| 211 | 
            +
                                        speed: fixedOptions.particles.opacity.anim.speed,
         | 
| 212 | 
            +
                                        sync: fixedOptions.particles.opacity.anim.sync,
         | 
| 213 | 
            +
                                    },
         | 
| 214 | 
            +
                                },
         | 
| 215 | 
            +
                                size: {
         | 
| 216 | 
            +
                                    value: fixedOptions.particles.size.random
         | 
| 217 | 
            +
                                        ? {
         | 
| 218 | 
            +
                                            min: fixedOptions.particles.size.anim.enable
         | 
| 219 | 
            +
                                                ? fixedOptions.particles.size.anim.size_min
         | 
| 220 | 
            +
                                                : 0,
         | 
| 221 | 
            +
                                            max: fixedOptions.particles.size.value,
         | 
| 222 | 
            +
                                        }
         | 
| 223 | 
            +
                                        : fixedOptions.particles.size.value,
         | 
| 224 | 
            +
                                    animation: {
         | 
| 225 | 
            +
                                        enable: fixedOptions.particles.size.anim.enable,
         | 
| 226 | 
            +
                                        speed: fixedOptions.particles.size.anim.speed,
         | 
| 227 | 
            +
                                        sync: fixedOptions.particles.size.anim.sync,
         | 
| 228 | 
            +
                                    },
         | 
| 229 | 
            +
                                },
         | 
| 230 | 
            +
                                links: {
         | 
| 231 | 
            +
                                    enable: fixedOptions.particles.line_linked.enable,
         | 
| 232 | 
            +
                                    distance: fixedOptions.particles.line_linked.distance,
         | 
| 233 | 
            +
                                    color: fixedOptions.particles.line_linked.color,
         | 
| 234 | 
            +
                                    opacity: fixedOptions.particles.line_linked.opacity,
         | 
| 235 | 
            +
                                    width: fixedOptions.particles.line_linked.width,
         | 
| 236 | 
            +
                                },
         | 
| 237 | 
            +
                                move: {
         | 
| 238 | 
            +
                                    enable: fixedOptions.particles.move.enable,
         | 
| 239 | 
            +
                                    speed: fixedOptions.particles.move.speed / 3,
         | 
| 240 | 
            +
                                    direction: fixedOptions.particles.move.direction,
         | 
| 241 | 
            +
                                    random: fixedOptions.particles.move.random,
         | 
| 242 | 
            +
                                    straight: fixedOptions.particles.move.straight,
         | 
| 243 | 
            +
                                    outModes: fixedOptions.particles.move.out_mode,
         | 
| 244 | 
            +
                                    attract: {
         | 
| 245 | 
            +
                                        enable: fixedOptions.particles.move.attract.enable,
         | 
| 246 | 
            +
                                        rotate: {
         | 
| 247 | 
            +
                                            x: fixedOptions.particles.move.attract.rotateX,
         | 
| 248 | 
            +
                                            y: fixedOptions.particles.move.attract.rotateY,
         | 
| 249 | 
            +
                                        },
         | 
| 250 | 
            +
                                    },
         | 
| 251 | 
            +
                                },
         | 
| 252 | 
            +
                            },
         | 
| 253 | 
            +
                        },
         | 
| 254 | 
            +
                    });
         | 
| 255 | 
            +
                };
         | 
| 256 | 
            +
                particlesJS.load = (tagId, pathConfigJson, callback) => {
         | 
| 257 | 
            +
                    engine
         | 
| 258 | 
            +
                        .load({ id: tagId, url: pathConfigJson })
         | 
| 259 | 
            +
                        .then((container) => {
         | 
| 260 | 
            +
                        if (container) {
         | 
| 261 | 
            +
                            callback(container);
         | 
| 262 | 
            +
                        }
         | 
| 263 | 
            +
                    })
         | 
| 264 | 
            +
                        .catch(() => {
         | 
| 265 | 
            +
                        callback(undefined);
         | 
| 266 | 
            +
                    });
         | 
| 267 | 
            +
                };
         | 
| 268 | 
            +
                particlesJS.setOnClickHandler = (callback) => {
         | 
| 269 | 
            +
                    engine.setOnClickHandler(callback);
         | 
| 270 | 
            +
                };
         | 
| 271 | 
            +
                const pJSDom = engine.dom();
         | 
| 272 | 
            +
                return { particlesJS, pJSDom };
         | 
| 273 | 
            +
            };
         | 
| 274 | 
            +
            exports.initParticlesJS = initParticlesJS;
         | 
    
        package/cjs/bundle.js
    CHANGED
    
    | @@ -14,10 +14,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) { | |
| 14 14 | 
             
                for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
         | 
| 15 15 | 
             
            };
         | 
| 16 16 | 
             
            Object.defineProperty(exports, "__esModule", { value: true });
         | 
| 17 | 
            -
            exports.pJSDom = exports.particlesJS = void 0;
         | 
| 17 | 
            +
            exports.Particles = exports.pJSDom = exports.particlesJS = void 0;
         | 
| 18 18 | 
             
            const _1 = require(".");
         | 
| 19 19 | 
             
            const engine_1 = require("@tsparticles/engine");
         | 
| 20 | 
            -
            const { particlesJS, pJSDom } = (0, _1.initPjs)(engine_1.tsParticles);
         | 
| 20 | 
            +
            const { particlesJS, pJSDom, Particles } = (0, _1.initPjs)(engine_1.tsParticles);
         | 
| 21 21 | 
             
            exports.particlesJS = particlesJS;
         | 
| 22 22 | 
             
            exports.pJSDom = pJSDom;
         | 
| 23 | 
            +
            exports.Particles = Particles;
         | 
| 23 24 | 
             
            __exportStar(require("@tsparticles/engine"), exports);
         | 
    
        package/cjs/index.js
    CHANGED
    
    | @@ -1,26 +1,13 @@ | |
| 1 1 | 
             
            "use strict";
         | 
| 2 2 | 
             
            Object.defineProperty(exports, "__esModule", { value: true });
         | 
| 3 3 | 
             
            exports.initPjs = void 0;
         | 
| 4 | 
            +
            const Particles_js_1 = require("./marcbruederlin/Particles.js");
         | 
| 5 | 
            +
            const particles_js_1 = require("./VincentGarreau/particles.js");
         | 
| 4 6 | 
             
            const initPjs = (engine) => {
         | 
| 5 | 
            -
                const particlesJS = ( | 
| 6 | 
            -
             | 
| 7 | 
            -
                 | 
| 8 | 
            -
                 | 
| 9 | 
            -
             | 
| 10 | 
            -
                        .load({ id: tagId, url: pathConfigJson })
         | 
| 11 | 
            -
                        .then((container) => {
         | 
| 12 | 
            -
                        if (container) {
         | 
| 13 | 
            -
                            callback(container);
         | 
| 14 | 
            -
                        }
         | 
| 15 | 
            -
                    })
         | 
| 16 | 
            -
                        .catch(() => {
         | 
| 17 | 
            -
                        callback(undefined);
         | 
| 18 | 
            -
                    });
         | 
| 19 | 
            -
                };
         | 
| 20 | 
            -
                particlesJS.setOnClickHandler = (callback) => {
         | 
| 21 | 
            -
                    engine.setOnClickHandler(callback);
         | 
| 22 | 
            -
                };
         | 
| 23 | 
            -
                const pJSDom = engine.dom();
         | 
| 24 | 
            -
                return { particlesJS, pJSDom };
         | 
| 7 | 
            +
                const { particlesJS, pJSDom } = (0, particles_js_1.initParticlesJS)(engine);
         | 
| 8 | 
            +
                window.particlesJS = particlesJS;
         | 
| 9 | 
            +
                window.pJSDom = pJSDom;
         | 
| 10 | 
            +
                window.Particles = Particles_js_1.Particles;
         | 
| 11 | 
            +
                return { particlesJS, pJSDom, Particles: Particles_js_1.Particles };
         | 
| 25 12 | 
             
            };
         | 
| 26 13 | 
             
            exports.initPjs = initPjs;
         | 
| @@ -0,0 +1,87 @@ | |
| 1 | 
            +
            "use strict";
         | 
| 2 | 
            +
            Object.defineProperty(exports, "__esModule", { value: true });
         | 
| 3 | 
            +
            exports.Particles = void 0;
         | 
| 4 | 
            +
            const engine_1 = require("@tsparticles/engine");
         | 
| 5 | 
            +
            class Particles {
         | 
| 6 | 
            +
                static init(options) {
         | 
| 7 | 
            +
                    const particles = new Particles(), selector = options.selector;
         | 
| 8 | 
            +
                    if (!selector) {
         | 
| 9 | 
            +
                        throw new Error("No selector provided");
         | 
| 10 | 
            +
                    }
         | 
| 11 | 
            +
                    const el = document.querySelector(selector);
         | 
| 12 | 
            +
                    if (!el) {
         | 
| 13 | 
            +
                        throw new Error("No element found for selector");
         | 
| 14 | 
            +
                    }
         | 
| 15 | 
            +
                    engine_1.tsParticles
         | 
| 16 | 
            +
                        .load({
         | 
| 17 | 
            +
                        id: selector.replace(".", "").replace("!", ""),
         | 
| 18 | 
            +
                        element: el,
         | 
| 19 | 
            +
                        options: {
         | 
| 20 | 
            +
                            fullScreen: {
         | 
| 21 | 
            +
                                enable: false,
         | 
| 22 | 
            +
                            },
         | 
| 23 | 
            +
                            particles: {
         | 
| 24 | 
            +
                                color: {
         | 
| 25 | 
            +
                                    value: options.color ?? "!000000",
         | 
| 26 | 
            +
                                },
         | 
| 27 | 
            +
                                links: {
         | 
| 28 | 
            +
                                    color: "random",
         | 
| 29 | 
            +
                                    distance: options.minDistance ?? 120,
         | 
| 30 | 
            +
                                    enable: options.connectParticles ?? false,
         | 
| 31 | 
            +
                                },
         | 
| 32 | 
            +
                                move: {
         | 
| 33 | 
            +
                                    enable: true,
         | 
| 34 | 
            +
                                    speed: options.speed ?? 0.5,
         | 
| 35 | 
            +
                                },
         | 
| 36 | 
            +
                                number: {
         | 
| 37 | 
            +
                                    value: options.maxParticles ?? 100,
         | 
| 38 | 
            +
                                },
         | 
| 39 | 
            +
                                size: {
         | 
| 40 | 
            +
                                    value: { min: 1, max: options.sizeVariations ?? 3 },
         | 
| 41 | 
            +
                                },
         | 
| 42 | 
            +
                            },
         | 
| 43 | 
            +
                            responsive: options.responsive?.map((responsive) => ({
         | 
| 44 | 
            +
                                maxWidth: responsive.breakpoint,
         | 
| 45 | 
            +
                                options: {
         | 
| 46 | 
            +
                                    particles: {
         | 
| 47 | 
            +
                                        color: {
         | 
| 48 | 
            +
                                            value: responsive.options?.color,
         | 
| 49 | 
            +
                                        },
         | 
| 50 | 
            +
                                        links: {
         | 
| 51 | 
            +
                                            distance: responsive.options?.minDistance,
         | 
| 52 | 
            +
                                            enable: responsive.options?.connectParticles,
         | 
| 53 | 
            +
                                        },
         | 
| 54 | 
            +
                                        number: {
         | 
| 55 | 
            +
                                            value: options.maxParticles,
         | 
| 56 | 
            +
                                        },
         | 
| 57 | 
            +
                                        move: {
         | 
| 58 | 
            +
                                            enable: true,
         | 
| 59 | 
            +
                                            speed: responsive.options?.speed,
         | 
| 60 | 
            +
                                        },
         | 
| 61 | 
            +
                                        size: {
         | 
| 62 | 
            +
                                            value: responsive.options?.sizeVariations,
         | 
| 63 | 
            +
                                        },
         | 
| 64 | 
            +
                                    },
         | 
| 65 | 
            +
                                },
         | 
| 66 | 
            +
                            })),
         | 
| 67 | 
            +
                        },
         | 
| 68 | 
            +
                    })
         | 
| 69 | 
            +
                        .then((container) => {
         | 
| 70 | 
            +
                        particles._container = container;
         | 
| 71 | 
            +
                    });
         | 
| 72 | 
            +
                    return particles;
         | 
| 73 | 
            +
                }
         | 
| 74 | 
            +
                destroy() {
         | 
| 75 | 
            +
                    const container = this._container;
         | 
| 76 | 
            +
                    container && container.destroy();
         | 
| 77 | 
            +
                }
         | 
| 78 | 
            +
                pauseAnimation() {
         | 
| 79 | 
            +
                    const container = this._container;
         | 
| 80 | 
            +
                    container && container.pause();
         | 
| 81 | 
            +
                }
         | 
| 82 | 
            +
                resumeAnimation() {
         | 
| 83 | 
            +
                    const container = this._container;
         | 
| 84 | 
            +
                    container && container.play();
         | 
| 85 | 
            +
                }
         | 
| 86 | 
            +
            }
         | 
| 87 | 
            +
            exports.Particles = Particles;
         | 
    
        package/cjs/package.json
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            { "type": "commonjs" }
         | 
| @@ -0,0 +1,271 @@ | |
| 1 | 
            +
            import { deepExtend } from "@tsparticles/engine";
         | 
| 2 | 
            +
            const defaultPjsOptions = {
         | 
| 3 | 
            +
                particles: {
         | 
| 4 | 
            +
                    number: {
         | 
| 5 | 
            +
                        value: 400,
         | 
| 6 | 
            +
                        density: {
         | 
| 7 | 
            +
                            enable: true,
         | 
| 8 | 
            +
                            value_area: 800,
         | 
| 9 | 
            +
                        },
         | 
| 10 | 
            +
                    },
         | 
| 11 | 
            +
                    color: {
         | 
| 12 | 
            +
                        value: "#fff",
         | 
| 13 | 
            +
                    },
         | 
| 14 | 
            +
                    shape: {
         | 
| 15 | 
            +
                        type: "circle",
         | 
| 16 | 
            +
                        stroke: {
         | 
| 17 | 
            +
                            width: 0,
         | 
| 18 | 
            +
                            color: "#ff0000",
         | 
| 19 | 
            +
                        },
         | 
| 20 | 
            +
                        polygon: {
         | 
| 21 | 
            +
                            nb_sides: 5,
         | 
| 22 | 
            +
                        },
         | 
| 23 | 
            +
                        image: {
         | 
| 24 | 
            +
                            src: "",
         | 
| 25 | 
            +
                            width: 100,
         | 
| 26 | 
            +
                            height: 100,
         | 
| 27 | 
            +
                        },
         | 
| 28 | 
            +
                    },
         | 
| 29 | 
            +
                    opacity: {
         | 
| 30 | 
            +
                        value: 1,
         | 
| 31 | 
            +
                        random: false,
         | 
| 32 | 
            +
                        anim: {
         | 
| 33 | 
            +
                            enable: false,
         | 
| 34 | 
            +
                            speed: 2,
         | 
| 35 | 
            +
                            opacity_min: 0,
         | 
| 36 | 
            +
                            sync: false,
         | 
| 37 | 
            +
                        },
         | 
| 38 | 
            +
                    },
         | 
| 39 | 
            +
                    size: {
         | 
| 40 | 
            +
                        value: 20,
         | 
| 41 | 
            +
                        random: false,
         | 
| 42 | 
            +
                        anim: {
         | 
| 43 | 
            +
                            enable: false,
         | 
| 44 | 
            +
                            speed: 20,
         | 
| 45 | 
            +
                            size_min: 0,
         | 
| 46 | 
            +
                            sync: false,
         | 
| 47 | 
            +
                        },
         | 
| 48 | 
            +
                    },
         | 
| 49 | 
            +
                    line_linked: {
         | 
| 50 | 
            +
                        enable: true,
         | 
| 51 | 
            +
                        distance: 100,
         | 
| 52 | 
            +
                        color: "#fff",
         | 
| 53 | 
            +
                        opacity: 1,
         | 
| 54 | 
            +
                        width: 1,
         | 
| 55 | 
            +
                    },
         | 
| 56 | 
            +
                    move: {
         | 
| 57 | 
            +
                        enable: true,
         | 
| 58 | 
            +
                        speed: 2,
         | 
| 59 | 
            +
                        direction: "none",
         | 
| 60 | 
            +
                        random: false,
         | 
| 61 | 
            +
                        straight: false,
         | 
| 62 | 
            +
                        out_mode: "out",
         | 
| 63 | 
            +
                        bounce: false,
         | 
| 64 | 
            +
                        attract: {
         | 
| 65 | 
            +
                            enable: false,
         | 
| 66 | 
            +
                            rotateX: 3000,
         | 
| 67 | 
            +
                            rotateY: 3000,
         | 
| 68 | 
            +
                        },
         | 
| 69 | 
            +
                    },
         | 
| 70 | 
            +
                },
         | 
| 71 | 
            +
                interactivity: {
         | 
| 72 | 
            +
                    detect_on: "canvas",
         | 
| 73 | 
            +
                    events: {
         | 
| 74 | 
            +
                        onhover: {
         | 
| 75 | 
            +
                            enable: true,
         | 
| 76 | 
            +
                            mode: "grab",
         | 
| 77 | 
            +
                        },
         | 
| 78 | 
            +
                        onclick: {
         | 
| 79 | 
            +
                            enable: true,
         | 
| 80 | 
            +
                            mode: "push",
         | 
| 81 | 
            +
                        },
         | 
| 82 | 
            +
                        resize: true,
         | 
| 83 | 
            +
                    },
         | 
| 84 | 
            +
                    modes: {
         | 
| 85 | 
            +
                        grab: {
         | 
| 86 | 
            +
                            distance: 100,
         | 
| 87 | 
            +
                            line_linked: {
         | 
| 88 | 
            +
                                opacity: 1,
         | 
| 89 | 
            +
                            },
         | 
| 90 | 
            +
                        },
         | 
| 91 | 
            +
                        bubble: {
         | 
| 92 | 
            +
                            distance: 200,
         | 
| 93 | 
            +
                            size: 80,
         | 
| 94 | 
            +
                            duration: 0.4,
         | 
| 95 | 
            +
                            opacity: 1,
         | 
| 96 | 
            +
                            speed: 3,
         | 
| 97 | 
            +
                        },
         | 
| 98 | 
            +
                        repulse: {
         | 
| 99 | 
            +
                            distance: 200,
         | 
| 100 | 
            +
                            duration: 0.4,
         | 
| 101 | 
            +
                        },
         | 
| 102 | 
            +
                        push: {
         | 
| 103 | 
            +
                            particles_nb: 4,
         | 
| 104 | 
            +
                        },
         | 
| 105 | 
            +
                        remove: {
         | 
| 106 | 
            +
                            particles_nb: 2,
         | 
| 107 | 
            +
                        },
         | 
| 108 | 
            +
                    },
         | 
| 109 | 
            +
                },
         | 
| 110 | 
            +
                retina_detect: false,
         | 
| 111 | 
            +
            };
         | 
| 112 | 
            +
            const initParticlesJS = (engine) => {
         | 
| 113 | 
            +
                const particlesJS = (tagId, options) => {
         | 
| 114 | 
            +
                    const fixedOptions = deepExtend(defaultPjsOptions, options);
         | 
| 115 | 
            +
                    return engine.load({
         | 
| 116 | 
            +
                        id: tagId,
         | 
| 117 | 
            +
                        options: {
         | 
| 118 | 
            +
                            fullScreen: {
         | 
| 119 | 
            +
                                enable: false,
         | 
| 120 | 
            +
                            },
         | 
| 121 | 
            +
                            detectRetina: fixedOptions.retina_detect,
         | 
| 122 | 
            +
                            smooth: true,
         | 
| 123 | 
            +
                            interactivity: {
         | 
| 124 | 
            +
                                detectsOn: fixedOptions.interactivity.detect_on,
         | 
| 125 | 
            +
                                events: {
         | 
| 126 | 
            +
                                    onHover: {
         | 
| 127 | 
            +
                                        enable: fixedOptions.interactivity.events.onhover.enable,
         | 
| 128 | 
            +
                                        mode: fixedOptions.interactivity.events.onhover.mode,
         | 
| 129 | 
            +
                                    },
         | 
| 130 | 
            +
                                    onClick: {
         | 
| 131 | 
            +
                                        enable: fixedOptions.interactivity.events.onclick.enable,
         | 
| 132 | 
            +
                                        mode: fixedOptions.interactivity.events.onclick.mode,
         | 
| 133 | 
            +
                                    },
         | 
| 134 | 
            +
                                    resize: {
         | 
| 135 | 
            +
                                        enable: fixedOptions.interactivity.events.resize,
         | 
| 136 | 
            +
                                    },
         | 
| 137 | 
            +
                                },
         | 
| 138 | 
            +
                                modes: {
         | 
| 139 | 
            +
                                    grab: {
         | 
| 140 | 
            +
                                        distance: fixedOptions.interactivity.modes.grab.distance,
         | 
| 141 | 
            +
                                        links: {
         | 
| 142 | 
            +
                                            opacity: fixedOptions.interactivity.modes.grab.line_linked.opacity,
         | 
| 143 | 
            +
                                        },
         | 
| 144 | 
            +
                                    },
         | 
| 145 | 
            +
                                    bubble: {
         | 
| 146 | 
            +
                                        distance: fixedOptions.interactivity.modes.bubble.distance,
         | 
| 147 | 
            +
                                        size: fixedOptions.interactivity.modes.bubble.size,
         | 
| 148 | 
            +
                                        duration: fixedOptions.interactivity.modes.bubble.duration,
         | 
| 149 | 
            +
                                        opacity: fixedOptions.interactivity.modes.bubble.opacity,
         | 
| 150 | 
            +
                                        speed: fixedOptions.interactivity.modes.bubble.speed,
         | 
| 151 | 
            +
                                    },
         | 
| 152 | 
            +
                                    repulse: {
         | 
| 153 | 
            +
                                        distance: fixedOptions.interactivity.modes.repulse.distance,
         | 
| 154 | 
            +
                                        duration: fixedOptions.interactivity.modes.repulse.duration,
         | 
| 155 | 
            +
                                    },
         | 
| 156 | 
            +
                                    push: {
         | 
| 157 | 
            +
                                        quantity: fixedOptions.interactivity.modes.push.particles_nb,
         | 
| 158 | 
            +
                                    },
         | 
| 159 | 
            +
                                    remove: {
         | 
| 160 | 
            +
                                        quantity: fixedOptions.interactivity.modes.remove.particles_nb,
         | 
| 161 | 
            +
                                    },
         | 
| 162 | 
            +
                                },
         | 
| 163 | 
            +
                            },
         | 
| 164 | 
            +
                            particles: {
         | 
| 165 | 
            +
                                collisions: {
         | 
| 166 | 
            +
                                    enable: fixedOptions.particles.move.bounce,
         | 
| 167 | 
            +
                                },
         | 
| 168 | 
            +
                                number: {
         | 
| 169 | 
            +
                                    value: fixedOptions.particles.number.value,
         | 
| 170 | 
            +
                                    density: {
         | 
| 171 | 
            +
                                        enable: fixedOptions.particles.number.density.enable,
         | 
| 172 | 
            +
                                        width: fixedOptions.particles.number.density.value_area,
         | 
| 173 | 
            +
                                    },
         | 
| 174 | 
            +
                                },
         | 
| 175 | 
            +
                                color: {
         | 
| 176 | 
            +
                                    value: fixedOptions.particles.color.value,
         | 
| 177 | 
            +
                                },
         | 
| 178 | 
            +
                                stroke: {
         | 
| 179 | 
            +
                                    width: fixedOptions.particles.shape.stroke.width,
         | 
| 180 | 
            +
                                    color: {
         | 
| 181 | 
            +
                                        value: fixedOptions.particles.shape.stroke.color,
         | 
| 182 | 
            +
                                    },
         | 
| 183 | 
            +
                                },
         | 
| 184 | 
            +
                                shape: {
         | 
| 185 | 
            +
                                    type: fixedOptions.particles.shape.type,
         | 
| 186 | 
            +
                                    options: {
         | 
| 187 | 
            +
                                        polygon: {
         | 
| 188 | 
            +
                                            sides: fixedOptions.particles.shape.polygon.nb_sides,
         | 
| 189 | 
            +
                                        },
         | 
| 190 | 
            +
                                        image: {
         | 
| 191 | 
            +
                                            src: fixedOptions.particles.shape.image.src,
         | 
| 192 | 
            +
                                            width: fixedOptions.particles.shape.image.width,
         | 
| 193 | 
            +
                                            height: fixedOptions.particles.shape.image.height,
         | 
| 194 | 
            +
                                        },
         | 
| 195 | 
            +
                                    },
         | 
| 196 | 
            +
                                },
         | 
| 197 | 
            +
                                opacity: {
         | 
| 198 | 
            +
                                    value: fixedOptions.particles.opacity.random
         | 
| 199 | 
            +
                                        ? {
         | 
| 200 | 
            +
                                            min: fixedOptions.particles.opacity.anim.enable
         | 
| 201 | 
            +
                                                ? fixedOptions.particles.opacity.anim.opacity_min
         | 
| 202 | 
            +
                                                : 0,
         | 
| 203 | 
            +
                                            max: fixedOptions.particles.opacity.value,
         | 
| 204 | 
            +
                                        }
         | 
| 205 | 
            +
                                        : fixedOptions.particles.opacity.value,
         | 
| 206 | 
            +
                                    animation: {
         | 
| 207 | 
            +
                                        enable: fixedOptions.particles.opacity.anim.enable,
         | 
| 208 | 
            +
                                        speed: fixedOptions.particles.opacity.anim.speed,
         | 
| 209 | 
            +
                                        sync: fixedOptions.particles.opacity.anim.sync,
         | 
| 210 | 
            +
                                    },
         | 
| 211 | 
            +
                                },
         | 
| 212 | 
            +
                                size: {
         | 
| 213 | 
            +
                                    value: fixedOptions.particles.size.random
         | 
| 214 | 
            +
                                        ? {
         | 
| 215 | 
            +
                                            min: fixedOptions.particles.size.anim.enable
         | 
| 216 | 
            +
                                                ? fixedOptions.particles.size.anim.size_min
         | 
| 217 | 
            +
                                                : 0,
         | 
| 218 | 
            +
                                            max: fixedOptions.particles.size.value,
         | 
| 219 | 
            +
                                        }
         | 
| 220 | 
            +
                                        : fixedOptions.particles.size.value,
         | 
| 221 | 
            +
                                    animation: {
         | 
| 222 | 
            +
                                        enable: fixedOptions.particles.size.anim.enable,
         | 
| 223 | 
            +
                                        speed: fixedOptions.particles.size.anim.speed,
         | 
| 224 | 
            +
                                        sync: fixedOptions.particles.size.anim.sync,
         | 
| 225 | 
            +
                                    },
         | 
| 226 | 
            +
                                },
         | 
| 227 | 
            +
                                links: {
         | 
| 228 | 
            +
                                    enable: fixedOptions.particles.line_linked.enable,
         | 
| 229 | 
            +
                                    distance: fixedOptions.particles.line_linked.distance,
         | 
| 230 | 
            +
                                    color: fixedOptions.particles.line_linked.color,
         | 
| 231 | 
            +
                                    opacity: fixedOptions.particles.line_linked.opacity,
         | 
| 232 | 
            +
                                    width: fixedOptions.particles.line_linked.width,
         | 
| 233 | 
            +
                                },
         | 
| 234 | 
            +
                                move: {
         | 
| 235 | 
            +
                                    enable: fixedOptions.particles.move.enable,
         | 
| 236 | 
            +
                                    speed: fixedOptions.particles.move.speed / 3,
         | 
| 237 | 
            +
                                    direction: fixedOptions.particles.move.direction,
         | 
| 238 | 
            +
                                    random: fixedOptions.particles.move.random,
         | 
| 239 | 
            +
                                    straight: fixedOptions.particles.move.straight,
         | 
| 240 | 
            +
                                    outModes: fixedOptions.particles.move.out_mode,
         | 
| 241 | 
            +
                                    attract: {
         | 
| 242 | 
            +
                                        enable: fixedOptions.particles.move.attract.enable,
         | 
| 243 | 
            +
                                        rotate: {
         | 
| 244 | 
            +
                                            x: fixedOptions.particles.move.attract.rotateX,
         | 
| 245 | 
            +
                                            y: fixedOptions.particles.move.attract.rotateY,
         | 
| 246 | 
            +
                                        },
         | 
| 247 | 
            +
                                    },
         | 
| 248 | 
            +
                                },
         | 
| 249 | 
            +
                            },
         | 
| 250 | 
            +
                        },
         | 
| 251 | 
            +
                    });
         | 
| 252 | 
            +
                };
         | 
| 253 | 
            +
                particlesJS.load = (tagId, pathConfigJson, callback) => {
         | 
| 254 | 
            +
                    engine
         | 
| 255 | 
            +
                        .load({ id: tagId, url: pathConfigJson })
         | 
| 256 | 
            +
                        .then((container) => {
         | 
| 257 | 
            +
                        if (container) {
         | 
| 258 | 
            +
                            callback(container);
         | 
| 259 | 
            +
                        }
         | 
| 260 | 
            +
                    })
         | 
| 261 | 
            +
                        .catch(() => {
         | 
| 262 | 
            +
                        callback(undefined);
         | 
| 263 | 
            +
                    });
         | 
| 264 | 
            +
                };
         | 
| 265 | 
            +
                particlesJS.setOnClickHandler = (callback) => {
         | 
| 266 | 
            +
                    engine.setOnClickHandler(callback);
         | 
| 267 | 
            +
                };
         | 
| 268 | 
            +
                const pJSDom = engine.dom();
         | 
| 269 | 
            +
                return { particlesJS, pJSDom };
         | 
| 270 | 
            +
            };
         | 
| 271 | 
            +
            export { initParticlesJS };
         | 
    
        package/esm/bundle.js
    CHANGED
    
    | @@ -1,5 +1,5 @@ | |
| 1 1 | 
             
            import { initPjs } from ".";
         | 
| 2 2 | 
             
            import { tsParticles } from "@tsparticles/engine";
         | 
| 3 | 
            -
            const { particlesJS, pJSDom } = initPjs(tsParticles);
         | 
| 3 | 
            +
            const { particlesJS, pJSDom, Particles } = initPjs(tsParticles);
         | 
| 4 4 | 
             
            export * from "@tsparticles/engine";
         | 
| 5 | 
            -
            export { particlesJS, pJSDom };
         | 
| 5 | 
            +
            export { particlesJS, pJSDom, Particles };
         |