@tsparticles/interaction-external-attract 3.0.0-beta.0 → 3.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/browser/Attractor.js +1 -1
- package/browser/index.js +3 -3
- package/browser/package.json +1 -0
- package/cjs/Attractor.js +2 -2
- package/cjs/index.js +4 -4
- package/cjs/package.json +1 -0
- package/esm/Attractor.js +1 -1
- package/esm/index.js +3 -3
- package/esm/package.json +1 -0
- package/package.json +18 -6
- package/report.html +23 -5
- package/tsparticles.interaction.external.attract.js +1 -1
- package/tsparticles.interaction.external.attract.min.js.LICENSE.txt +1 -1
- package/types/Attractor.d.ts +1 -1
- package/types/Options/Classes/Attract.d.ts +1 -1
- package/types/Options/Classes/AttractOptions.d.ts +1 -1
- package/types/Types.d.ts +3 -3
- package/types/index.d.ts +2 -2
- package/umd/Attractor.js +3 -3
- package/umd/index.js +5 -5
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://www.npmjs.com/package/@tsparticles/interaction-external-attract)
|
|
7
7
|
[](https://www.npmjs.com/package/@tsparticles/interaction-external-attract) [](https://github.com/sponsors/matteobruni)
|
|
8
8
|
|
|
9
|
-
[tsParticles](https://github.com/
|
|
9
|
+
[tsParticles](https://github.com/tsparticles/tsparticles) interaction plugin for attract effect around mouse or HTML
|
|
10
10
|
elements.
|
|
11
11
|
|
|
12
12
|
## How to use it
|
package/browser/Attractor.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Circle, ExternalInteractorBase, Vector, clamp, getDistances, getEasing, isInArray, mouseMoveEvent, } from "@tsparticles/engine";
|
|
2
|
-
import { Attract } from "./Options/Classes/Attract";
|
|
2
|
+
import { Attract } from "./Options/Classes/Attract.js";
|
|
3
3
|
export class Attractor extends ExternalInteractorBase {
|
|
4
4
|
constructor(engine, container) {
|
|
5
5
|
super(container);
|
package/browser/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Attractor } from "./Attractor";
|
|
1
|
+
import { Attractor } from "./Attractor.js";
|
|
2
2
|
export async function loadExternalAttractInteraction(engine, refresh = true) {
|
|
3
3
|
await engine.addInteractor("externalAttract", (container) => new Attractor(engine, container), refresh);
|
|
4
4
|
}
|
|
5
|
-
export * from "./Options/Classes/Attract";
|
|
6
|
-
export * from "./Options/Interfaces/IAttract";
|
|
5
|
+
export * from "./Options/Classes/Attract.js";
|
|
6
|
+
export * from "./Options/Interfaces/IAttract.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "type": "module" }
|
package/cjs/Attractor.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Attractor = void 0;
|
|
4
4
|
const engine_1 = require("@tsparticles/engine");
|
|
5
|
-
const
|
|
5
|
+
const Attract_js_1 = require("./Options/Classes/Attract.js");
|
|
6
6
|
class Attractor extends engine_1.ExternalInteractorBase {
|
|
7
7
|
constructor(engine, container) {
|
|
8
8
|
super(container);
|
|
@@ -115,7 +115,7 @@ class Attractor extends engine_1.ExternalInteractorBase {
|
|
|
115
115
|
}
|
|
116
116
|
loadModeOptions(options, ...sources) {
|
|
117
117
|
if (!options.attract) {
|
|
118
|
-
options.attract = new
|
|
118
|
+
options.attract = new Attract_js_1.Attract();
|
|
119
119
|
}
|
|
120
120
|
for (const source of sources) {
|
|
121
121
|
options.attract.load(source?.attract);
|
package/cjs/index.js
CHANGED
|
@@ -15,10 +15,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.loadExternalAttractInteraction = void 0;
|
|
18
|
-
const
|
|
18
|
+
const Attractor_js_1 = require("./Attractor.js");
|
|
19
19
|
async function loadExternalAttractInteraction(engine, refresh = true) {
|
|
20
|
-
await engine.addInteractor("externalAttract", (container) => new
|
|
20
|
+
await engine.addInteractor("externalAttract", (container) => new Attractor_js_1.Attractor(engine, container), refresh);
|
|
21
21
|
}
|
|
22
22
|
exports.loadExternalAttractInteraction = loadExternalAttractInteraction;
|
|
23
|
-
__exportStar(require("./Options/Classes/Attract"), exports);
|
|
24
|
-
__exportStar(require("./Options/Interfaces/IAttract"), exports);
|
|
23
|
+
__exportStar(require("./Options/Classes/Attract.js"), exports);
|
|
24
|
+
__exportStar(require("./Options/Interfaces/IAttract.js"), exports);
|
package/cjs/package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "type": "commonjs" }
|
package/esm/Attractor.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Circle, ExternalInteractorBase, Vector, clamp, getDistances, getEasing, isInArray, mouseMoveEvent, } from "@tsparticles/engine";
|
|
2
|
-
import { Attract } from "./Options/Classes/Attract";
|
|
2
|
+
import { Attract } from "./Options/Classes/Attract.js";
|
|
3
3
|
export class Attractor extends ExternalInteractorBase {
|
|
4
4
|
constructor(engine, container) {
|
|
5
5
|
super(container);
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Attractor } from "./Attractor";
|
|
1
|
+
import { Attractor } from "./Attractor.js";
|
|
2
2
|
export async function loadExternalAttractInteraction(engine, refresh = true) {
|
|
3
3
|
await engine.addInteractor("externalAttract", (container) => new Attractor(engine, container), refresh);
|
|
4
4
|
}
|
|
5
|
-
export * from "./Options/Classes/Attract";
|
|
6
|
-
export * from "./Options/Interfaces/IAttract";
|
|
5
|
+
export * from "./Options/Classes/Attract.js";
|
|
6
|
+
export * from "./Options/Interfaces/IAttract.js";
|
package/esm/package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "type": "module" }
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/interaction-external-attract",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.2",
|
|
4
4
|
"description": "tsParticles attract external interaction",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/tsparticles/tsparticles.git",
|
|
9
9
|
"directory": "interactions/external/attract"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
@@ -66,16 +66,28 @@
|
|
|
66
66
|
"author": "Matteo Bruni <matteo.bruni@me.com>",
|
|
67
67
|
"license": "MIT",
|
|
68
68
|
"bugs": {
|
|
69
|
-
"url": "https://github.com/
|
|
69
|
+
"url": "https://github.com/tsparticles/tsparticles/issues"
|
|
70
70
|
},
|
|
71
|
-
"
|
|
71
|
+
"sideEffects": false,
|
|
72
72
|
"jsdelivr": "tsparticles.interaction.external.attract.min.js",
|
|
73
73
|
"unpkg": "tsparticles.interaction.external.attract.min.js",
|
|
74
|
+
"browser": "browser/index.js",
|
|
75
|
+
"main": "cjs/index.js",
|
|
74
76
|
"module": "esm/index.js",
|
|
75
77
|
"types": "types/index.d.ts",
|
|
76
|
-
"
|
|
78
|
+
"exports": {
|
|
79
|
+
".": {
|
|
80
|
+
"types": "./types/index.d.ts",
|
|
81
|
+
"browser": "./browser/index.js",
|
|
82
|
+
"import": "./esm/index.js",
|
|
83
|
+
"require": "./cjs/index.js",
|
|
84
|
+
"umd": "./umd/index.js",
|
|
85
|
+
"default": "./cjs/index.js"
|
|
86
|
+
},
|
|
87
|
+
"./package.json": "./package.json"
|
|
88
|
+
},
|
|
77
89
|
"dependencies": {
|
|
78
|
-
"@tsparticles/engine": "^3.0.0-beta.
|
|
90
|
+
"@tsparticles/engine": "^3.0.0-beta.2"
|
|
79
91
|
},
|
|
80
92
|
"publishConfig": {
|
|
81
93
|
"access": "public"
|