@tsparticles/palette-confetti-winter 4.0.0-beta.0 → 4.0.0-beta.15
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 +30 -15
- package/browser/browser.js +5 -0
- package/browser/index.js +2 -2
- package/browser/index.lazy.js +7 -0
- package/cjs/browser.js +5 -0
- package/cjs/index.js +2 -2
- package/cjs/index.lazy.js +7 -0
- package/esm/browser.js +5 -0
- package/esm/index.js +2 -2
- package/esm/index.lazy.js +7 -0
- package/package.json +15 -7
- package/report.html +4949 -94
- package/tsparticles.palette.palette-winter.js +45 -0
- package/tsparticles.palette.palette-winter.min.js +1 -0
- package/types/browser.d.ts +1 -0
- package/types/index.lazy.d.ts +2 -0
- package/428.min.js +0 -1
- package/dist_browser_options_js.js +0 -30
- package/tsparticles.palette.palette-confetti-winter.js +0 -307
- package/tsparticles.palette.palette-confetti-winter.min.js +0 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[](https://particles.js.org)
|
|
2
2
|
|
|
3
|
-
# tsParticles
|
|
3
|
+
# tsParticles Winter Palette
|
|
4
4
|
|
|
5
|
-
[](https://www.jsdelivr.com/package/npm/@tsparticles/palette-winter) [](https://www.npmjs.com/package/@tsparticles/palette-winter) [](https://www.npmjs.com/package/@tsparticles/palette-winter) [](https://github.com/sponsors/matteobruni)
|
|
6
6
|
|
|
7
|
-
[tsParticles](https://github.com/tsparticles/tsparticles) palette for
|
|
7
|
+
[tsParticles](https://github.com/tsparticles/tsparticles) palette for colored smoke amber.
|
|
8
8
|
|
|
9
9
|
[](https://discord.gg/hACwv45Hme) [](https://t.me/tsparticles)
|
|
10
10
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
## Sample
|
|
14
14
|
|
|
15
|
-
[](https://particles.js.org/samples/palettes/winter)
|
|
16
16
|
|
|
17
17
|
## Colors
|
|
18
18
|
|
|
@@ -72,15 +72,18 @@
|
|
|
72
72
|
## Quick checklist
|
|
73
73
|
|
|
74
74
|
1. Install `@tsparticles/engine` (or use the CDN bundle below)
|
|
75
|
-
2.
|
|
76
|
-
3. Apply the
|
|
75
|
+
2. Load a base package (for example `@tsparticles/basic`) and call `loadWinterPalette` before `tsParticles.load(...)`
|
|
76
|
+
3. Apply the palette plus a minimal particles configuration in your options
|
|
77
|
+
|
|
78
|
+
A palette defines colors, not complete behavior, so pair it with a runtime package and particle options.
|
|
77
79
|
|
|
78
80
|
## How to use it
|
|
79
81
|
|
|
80
82
|
### CDN / Vanilla JS / jQuery
|
|
81
83
|
|
|
82
84
|
```html
|
|
83
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/
|
|
85
|
+
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/basic@4/tsparticles.basic.bundle.min.js"></script>
|
|
86
|
+
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/palette-winter@4/tsparticles.palette-coloredSmokeAmber.min.js"></script>
|
|
84
87
|
```
|
|
85
88
|
|
|
86
89
|
### Usage
|
|
@@ -88,16 +91,28 @@
|
|
|
88
91
|
Once the scripts are loaded you can set up `tsParticles` like this:
|
|
89
92
|
|
|
90
93
|
```javascript
|
|
91
|
-
(async
|
|
92
|
-
await
|
|
94
|
+
(async engine => {
|
|
95
|
+
await loadBasic(engine);
|
|
96
|
+
await loadWinterPalette(engine);
|
|
97
|
+
|
|
98
|
+
const options = {
|
|
99
|
+
particles: {
|
|
100
|
+
number: { value: 200 },
|
|
101
|
+
shape: { type: "circle" },
|
|
102
|
+
size: { value: { min: 10, max: 15 } },
|
|
103
|
+
move: {
|
|
104
|
+
enable: true,
|
|
105
|
+
speed: 2,
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
palette: "winter",
|
|
109
|
+
};
|
|
93
110
|
|
|
94
|
-
await
|
|
111
|
+
await engine.load({
|
|
95
112
|
id: "tsparticles",
|
|
96
|
-
options
|
|
97
|
-
palette: "confetti-winter",
|
|
98
|
-
},
|
|
113
|
+
options,
|
|
99
114
|
});
|
|
100
|
-
})();
|
|
115
|
+
})(tsParticles);
|
|
101
116
|
```
|
|
102
117
|
|
|
103
118
|
#### Customization
|
|
@@ -107,7 +122,7 @@ You can override all the options defining the properties like in any standard `t
|
|
|
107
122
|
|
|
108
123
|
### Frameworks with a tsParticles component library
|
|
109
124
|
|
|
110
|
-
Checkout the documentation in the component library repository and call the `
|
|
125
|
+
Checkout the documentation in the component library repository and call the `loadWinterPalette` function.
|
|
111
126
|
|
|
112
127
|
## Related docs
|
|
113
128
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { loadConfettiWinterPalette } from "./index.js";
|
|
2
|
+
const globalObject = globalThis;
|
|
3
|
+
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
4
|
+
globalObject.loadConfettiWinterPalette = loadConfettiWinterPalette;
|
|
5
|
+
export * from "./index.js";
|
package/browser/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { options } from "./options.js";
|
|
1
2
|
const paletteName = "confetti-winter";
|
|
2
3
|
export async function loadConfettiWinterPalette(engine) {
|
|
3
|
-
await engine.pluginManager.register(
|
|
4
|
-
const { options } = await import("./options.js");
|
|
4
|
+
await engine.pluginManager.register(e => {
|
|
5
5
|
e.pluginManager.addPalette(paletteName, options);
|
|
6
6
|
});
|
|
7
7
|
}
|
package/cjs/browser.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { loadConfettiWinterPalette } from "./index.js";
|
|
2
|
+
const globalObject = globalThis;
|
|
3
|
+
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
4
|
+
globalObject.loadConfettiWinterPalette = loadConfettiWinterPalette;
|
|
5
|
+
export * from "./index.js";
|
package/cjs/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { options } from "./options.js";
|
|
1
2
|
const paletteName = "confetti-winter";
|
|
2
3
|
export async function loadConfettiWinterPalette(engine) {
|
|
3
|
-
await engine.pluginManager.register(
|
|
4
|
-
const { options } = await import("./options.js");
|
|
4
|
+
await engine.pluginManager.register(e => {
|
|
5
5
|
e.pluginManager.addPalette(paletteName, options);
|
|
6
6
|
});
|
|
7
7
|
}
|
package/esm/browser.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { loadConfettiWinterPalette } from "./index.js";
|
|
2
|
+
const globalObject = globalThis;
|
|
3
|
+
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
4
|
+
globalObject.loadConfettiWinterPalette = loadConfettiWinterPalette;
|
|
5
|
+
export * from "./index.js";
|
package/esm/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { options } from "./options.js";
|
|
1
2
|
const paletteName = "confetti-winter";
|
|
2
3
|
export async function loadConfettiWinterPalette(engine) {
|
|
3
|
-
await engine.pluginManager.register(
|
|
4
|
-
const { options } = await import("./options.js");
|
|
4
|
+
await engine.pluginManager.register(e => {
|
|
5
5
|
e.pluginManager.addPalette(paletteName, options);
|
|
6
6
|
});
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/palette-confetti-winter",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.15",
|
|
4
4
|
"description": "tsParticles confetti winter palette",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/tsparticles/
|
|
9
|
-
"directory": "palettes/confetti/
|
|
8
|
+
"url": "git+https://github.com/tsparticles/tsparticles.git",
|
|
9
|
+
"directory": "palettes/confetti/winter"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"front-end",
|
|
@@ -95,14 +95,22 @@
|
|
|
95
95
|
"umd": "./umd/index.js",
|
|
96
96
|
"default": "./cjs/index.js"
|
|
97
97
|
},
|
|
98
|
-
"./package.json": "./package.json"
|
|
98
|
+
"./package.json": "./package.json",
|
|
99
|
+
"./lazy": {
|
|
100
|
+
"types": "./types/index.lazy.d.ts",
|
|
101
|
+
"browser": "./browser/index.lazy.js",
|
|
102
|
+
"import": "./esm/index.lazy.js",
|
|
103
|
+
"require": "./cjs/index.lazy.js",
|
|
104
|
+
"umd": "./umd/index.lazy.js",
|
|
105
|
+
"default": "./cjs/index.lazy.js"
|
|
106
|
+
}
|
|
99
107
|
},
|
|
100
108
|
"dependencies": {
|
|
101
|
-
"@tsparticles/engine": "
|
|
109
|
+
"@tsparticles/engine": "4.0.0-beta.15"
|
|
102
110
|
},
|
|
103
111
|
"type": "module",
|
|
104
|
-
"jsdelivr": "tsparticles.palette-
|
|
105
|
-
"unpkg": "tsparticles.palette-
|
|
112
|
+
"jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js",
|
|
113
|
+
"unpkg": "tsparticles.palette-colored-smoke-amber.min.js",
|
|
106
114
|
"publishConfig": {
|
|
107
115
|
"access": "public"
|
|
108
116
|
}
|