@tsparticles/palette-ice-triad 4.0.0-alpha.5 → 4.0.0-beta.12

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/264.min.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(this.webpackChunk_tsparticles_palette_ice_triad=this.webpackChunk_tsparticles_palette_ice_triad||[]).push([[264],{264(e,a,t){t.d(a,{options:()=>i});let i={name:"Ice Triad",background:"#0a0d1a",blendMode:"source-over",colors:{fill:{enable:!0,value:["#ffffff","#aaddff","#88bbff"]}}}}}]);
package/README.md CHANGED
@@ -10,14 +10,58 @@
10
10
 
11
11
  [![tsParticles Product Hunt](https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=186113&theme=light)](https://www.producthunt.com/posts/tsparticles?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tsparticles") <a href="https://www.buymeacoffee.com/matteobruni"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a beer&emoji=🍺&slug=matteobruni&button_colour=5F7FFF&font_colour=ffffff&font_family=Arial&outline_colour=000000&coffee_colour=FFDD00"></a>
12
12
 
13
+ ## Sample
14
+
15
+ [![demo](https://raw.githubusercontent.com/tsparticles/palettes/main/palettes/iceTriad/images/sample.png)](https://particles.js.org/samples/palettes/ice-triad)
16
+
13
17
  ## Colors
14
18
 
19
+ <table>
20
+ <tbody>
21
+ <tr>
22
+ <td align="center">
23
+ <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="#ffffff"><rect width="32" height="32" fill="#ffffff" /></svg><br />
24
+ <code>#ffffff</code>
25
+ </td>
26
+ <td align="center">
27
+ <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="#aaddff"><rect width="32" height="32" fill="#aaddff" /></svg><br />
28
+ <code>#aaddff</code>
29
+ </td>
30
+ <td align="center">
31
+ <svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="#88bbff"><rect width="32" height="32" fill="#88bbff" /></svg><br />
32
+ <code>#88bbff</code>
33
+ </td>
34
+ </tr>
35
+ <tr>
36
+ <td colspan="3" align="center">
37
+ <svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="#0a0d1a"><rect width="40" height="40" fill="#0a0d1a" /></svg><br />
38
+ <strong>Background</strong><br />
39
+ <code>#0a0d1a</code>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <td colspan="3" align="center">
44
+ <strong>Blend mode:</strong> <code>source-over</code> | <strong>Fill:</strong> <code>true</code>
45
+ </td>
46
+ </tr>
47
+ </tbody>
48
+ </table>
49
+
50
+ ## Quick checklist
51
+
52
+ 1. Install `@tsparticles/engine` (or use the CDN bundle below)
53
+ 2. Load a base package (for example `@tsparticles/basic`) and call `loadIceTriadPalette` before `tsParticles.load(...)`
54
+ 3. Apply the palette plus a minimal particles configuration in your options
55
+
56
+ A palette defines colors, not complete behavior, so pair it with a runtime package and particle options.
57
+
15
58
  ## How to use it
16
59
 
17
60
  ### CDN / Vanilla JS / jQuery
18
61
 
19
62
  ```html
20
- <script src="https://cdn.jsdelivr.net/npm/@tsparticles/palette-ice-triad@3/tsparticles.palette.ice-triad.bundle.min.js"></script>
63
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/basic@4/tsparticles.basic.bundle.min.js"></script>
64
+ <script src="https://cdn.jsdelivr.net/npm/@tsparticles/palette-ice-triad@4/tsparticles.palette.ice-triad.min.js"></script>
21
65
  ```
22
66
 
23
67
  ### Usage
@@ -25,16 +69,28 @@
25
69
  Once the scripts are loaded you can set up `tsParticles` like this:
26
70
 
27
71
  ```javascript
28
- (async () => {
29
- await loadIceTriadPalette(tsParticles);
72
+ (async engine => {
73
+ await loadBasic(engine);
74
+ await loadIceTriadPalette(engine);
30
75
 
31
- await tsParticles.load({
32
- id: "tsparticles",
33
- options: {
34
- palette: "ice-triad",
76
+ const options = {
77
+ particles: {
78
+ number: { value: 200 },
79
+ shape: { type: "circle" },
80
+ size: { value: { min: 10, max: 15 } },
81
+ move: {
82
+ enable: true,
83
+ speed: 2,
84
+ },
35
85
  },
86
+ palette: "ice-triad",
87
+ };
88
+
89
+ await engine.load({
90
+ id: "tsparticles",
91
+ options,
36
92
  });
37
- })();
93
+ })(tsParticles);
38
94
  ```
39
95
 
40
96
  #### Customization
@@ -64,6 +120,17 @@ Checkout the documentation in the component library repository and call the `loa
64
120
 
65
121
  The options shown above are valid for all the component libraries.
66
122
 
123
+ ## Common pitfalls
124
+
125
+ - Calling `tsParticles.load(...)` before `loadIceTriadPalette(...)`
126
+ - Verify required peer packages before enabling advanced options
127
+ - Change one option group at a time to isolate regressions quickly
128
+
129
+ ## Related docs
130
+
131
+ - Presets and palettes catalog: <https://github.com/tsparticles/palettes>
132
+ - Main docs: <https://particles.js.org/docs/>
133
+
67
134
  ---
68
135
 
69
136
  ```mermaid
@@ -2,6 +2,14 @@ export const options = {
2
2
  name: "Ice Triad",
3
3
  background: "#0a0d1a",
4
4
  blendMode: "source-over",
5
- colors: ["#ffffff", "#aaddff", "#88bbff"],
6
- fill: true,
5
+ colors: {
6
+ fill: {
7
+ enable: true,
8
+ value: [
9
+ "#ffffff",
10
+ "#aaddff",
11
+ "#88bbff",
12
+ ],
13
+ },
14
+ },
7
15
  };
package/cjs/options.js CHANGED
@@ -2,6 +2,14 @@ export const options = {
2
2
  name: "Ice Triad",
3
3
  background: "#0a0d1a",
4
4
  blendMode: "source-over",
5
- colors: ["#ffffff", "#aaddff", "#88bbff"],
6
- fill: true,
5
+ colors: {
6
+ fill: {
7
+ enable: true,
8
+ value: [
9
+ "#ffffff",
10
+ "#aaddff",
11
+ "#88bbff",
12
+ ],
13
+ },
14
+ },
7
15
  };
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-alpha.5
7
+ * v4.0.0-beta.12
8
8
  */
9
9
  "use strict";
10
10
  /*
@@ -23,7 +23,7 @@
23
23
  \*********************************/
24
24
  (__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
25
25
 
26
- eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ options: () => (/* binding */ options)\n/* harmony export */ });\nconst options = {\n name: \"Ice Triad\",\n background: \"#0a0d1a\",\n blendMode: \"source-over\",\n colors: [\n \"#ffffff\",\n \"#aaddff\",\n \"#88bbff\"\n ],\n fill: true\n};\n\n\n//# sourceURL=webpack://@tsparticles/palette-ice-triad/./dist/browser/options.js?\n}");
26
+ eval("{__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ options: () => (/* binding */ options)\n/* harmony export */ });\nconst options = {\n name: \"Ice Triad\",\n background: \"#0a0d1a\",\n blendMode: \"source-over\",\n colors: {\n fill: {\n enable: true,\n value: [\n \"#ffffff\",\n \"#aaddff\",\n \"#88bbff\"\n ]\n }\n }\n};\n\n\n//# sourceURL=webpack://@tsparticles/palette-ice-triad/./dist/browser/options.js?\n}");
27
27
 
28
28
  /***/ }
29
29
 
package/esm/options.js CHANGED
@@ -2,6 +2,14 @@ export const options = {
2
2
  name: "Ice Triad",
3
3
  background: "#0a0d1a",
4
4
  blendMode: "source-over",
5
- colors: ["#ffffff", "#aaddff", "#88bbff"],
6
- fill: true,
5
+ colors: {
6
+ fill: {
7
+ enable: true,
8
+ value: [
9
+ "#ffffff",
10
+ "#aaddff",
11
+ "#88bbff",
12
+ ],
13
+ },
14
+ },
7
15
  };
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@tsparticles/palette-ice-triad",
3
- "version": "4.0.0-alpha.5",
3
+ "version": "4.0.0-beta.12",
4
4
  "description": "tsParticles ice triad palette",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/tsparticles/presets.git",
9
- "directory": "palettes/iceTriad"
8
+ "url": "git+https://github.com/tsparticles/tsparticles.git",
9
+ "directory": "palettes/fantasy/iceTriad"
10
10
  },
11
11
  "keywords": [
12
12
  "front-end",
@@ -65,7 +65,7 @@
65
65
  "author": "Matteo Bruni <matteo.bruni@me.com>",
66
66
  "license": "MIT",
67
67
  "bugs": {
68
- "url": "https://github.com/tsparticles/presets/issues"
68
+ "url": "https://github.com/tsparticles/palettes/issues"
69
69
  },
70
70
  "funding": [
71
71
  {
@@ -99,7 +99,7 @@
99
99
  "./package.json": "./package.json"
100
100
  },
101
101
  "dependencies": {
102
- "@tsparticles/engine": "^4.0.0-beta.1"
102
+ "@tsparticles/engine": "4.0.0-beta.12"
103
103
  },
104
104
  "publishConfig": {
105
105
  "access": "public"
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1" />
6
- <title>@tsparticles/palette-ice-triad [31 Mar 2026 at 10:18]</title>
6
+ <title>@tsparticles/palette-ice-triad [15 Apr 2026 at 17:15]</title>
7
7
  <link
8
8
  rel="shortcut icon"
9
9
  href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII="
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v4.0.0-alpha.5
7
+ * v4.0.0-beta.12
8
8
  */
9
9
  /*
10
10
  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
@@ -1,2 +1,2 @@
1
1
  !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,()=>(()=>{"use strict";var e,t,r,o={},i={};function a(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return o[e](r,r.exports,a),r.exports}a.m=o,a.d=(e,t)=>{for(var r in t)a.o(t,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},a.f={},a.e=e=>Promise.all(Object.keys(a.f).reduce((t,r)=>(a.f[r](e,t),t),[])),a.u=e=>""+e+".min.js",a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n={},a.l=(e,t,r,o)=>{if(n[e])return void n[e].push(t);if(void 0!==r)for(var i,c,l=document.getElementsByTagName("script"),s=0;s<l.length;s++){var p=l[s];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")=="@tsparticles/palette-ice-triad:"+r){i=p;break}}i||(c=!0,(i=document.createElement("script")).charset="utf-8",a.nc&&i.setAttribute("nonce",a.nc),i.setAttribute("data-webpack","@tsparticles/palette-ice-triad:"+r),i.src=e),n[e]=[t];var u=(t,r)=>{i.onerror=i.onload=null,clearTimeout(d);var o=n[e];if(delete n[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach(e=>e(r)),t)return t(r)},d=setTimeout(u.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=u.bind(null,i.onerror),i.onload=u.bind(null,i.onload),c&&document.head.appendChild(i)},a.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.g.importScripts&&(c=a.g.location+"");var n,c,l=a.g.document;if(!c&&l&&(l.currentScript&&"SCRIPT"===l.currentScript.tagName.toUpperCase()&&(c=l.currentScript.src),!c)){var s=l.getElementsByTagName("script");if(s.length)for(var p=s.length-1;p>-1&&(!c||!/^http(s?):/.test(c));)c=s[p--].src}if(!c)throw Error("Automatic publicPath is not supported in this browser");a.p=c=c.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e={286:0},a.f.j=(t,r)=>{var o=a.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else{var i=new Promise((r,i)=>o=e[t]=[r,i]);r.push(o[2]=i);var n=a.p+a.u(t),c=Error();a.l(n,r=>{if(a.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var i=r&&("load"===r.type?"missing":r.type),n=r&&r.target&&r.target.src;c.message="Loading chunk "+t+` failed.
2
- (`+i+": "+n+")",c.name="ChunkLoadError",c.type=i,c.request=n,o[1](c)}},"chunk-"+t,t)}},t=(t,r)=>{var o,i,[n,c,l]=r,s=0;if(n.some(t=>0!==e[t])){for(o in c)a.o(c,o)&&(a.m[o]=c[o]);l&&l(a)}for(t&&t(r);s<n.length;s++)i=n[s],a.o(e,i)&&e[i]&&e[i][0](),e[i]=0},(r=this.webpackChunk_tsparticles_palette_ice_triad=this.webpackChunk_tsparticles_palette_ice_triad||[]).forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r));var u={};async function d(e){await e.pluginManager.register(async e=>{let{options:t}=await a.e(28).then(a.bind(a,28));e.pluginManager.addPalette("ice-triad",t)})}return a.r(u),a.d(u,{loadIceTriadPalette:()=>d}),u})());
2
+ (`+i+": "+n+")",c.name="ChunkLoadError",c.type=i,c.request=n,o[1](c)}},"chunk-"+t,t)}},t=(t,r)=>{var o,i,[n,c,l]=r,s=0;if(n.some(t=>0!==e[t])){for(o in c)a.o(c,o)&&(a.m[o]=c[o]);l&&l(a)}for(t&&t(r);s<n.length;s++)i=n[s],a.o(e,i)&&e[i]&&e[i][0](),e[i]=0},(r=this.webpackChunk_tsparticles_palette_ice_triad=this.webpackChunk_tsparticles_palette_ice_triad||[]).forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r));var u={};async function d(e){await e.pluginManager.register(async e=>{let{options:t}=await a.e(264).then(a.bind(a,264));e.pluginManager.addPalette("ice-triad",t)})}return a.r(u),a.d(u,{loadIceTriadPalette:()=>d}),u})());
package/28.min.js DELETED
@@ -1 +0,0 @@
1
- "use strict";(this.webpackChunk_tsparticles_palette_ice_triad=this.webpackChunk_tsparticles_palette_ice_triad||[]).push([[28],{28(e,t,a){a.d(t,{options:()=>i});let i={name:"Ice Triad",background:"#0a0d1a",blendMode:"source-over",colors:["#ffffff","#aaddff","#88bbff"],fill:!0}}}]);
package/umd/index.js DELETED
@@ -1,54 +0,0 @@
1
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
2
- if (k2 === undefined) k2 = k;
3
- var desc = Object.getOwnPropertyDescriptor(m, k);
4
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
5
- desc = { enumerable: true, get: function() { return m[k]; } };
6
- }
7
- Object.defineProperty(o, k2, desc);
8
- }) : (function(o, m, k, k2) {
9
- if (k2 === undefined) k2 = k;
10
- o[k2] = m[k];
11
- }));
12
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
13
- Object.defineProperty(o, "default", { enumerable: true, value: v });
14
- }) : function(o, v) {
15
- o["default"] = v;
16
- });
17
- var __importStar = (this && this.__importStar) || (function () {
18
- var ownKeys = function(o) {
19
- ownKeys = Object.getOwnPropertyNames || function (o) {
20
- var ar = [];
21
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
22
- return ar;
23
- };
24
- return ownKeys(o);
25
- };
26
- return function (mod) {
27
- if (mod && mod.__esModule) return mod;
28
- var result = {};
29
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
30
- __setModuleDefault(result, mod);
31
- return result;
32
- };
33
- })();
34
- (function (factory) {
35
- if (typeof module === "object" && typeof module.exports === "object") {
36
- var v = factory(require, exports);
37
- if (v !== undefined) module.exports = v;
38
- }
39
- else if (typeof define === "function" && define.amd) {
40
- define(["require", "exports"], factory);
41
- }
42
- })(function (require, exports) {
43
- "use strict";
44
- var __syncRequire = typeof module === "object" && typeof module.exports === "object";
45
- Object.defineProperty(exports, "__esModule", { value: true });
46
- exports.loadIceTriadPalette = loadIceTriadPalette;
47
- const paletteName = "ice-triad";
48
- async function loadIceTriadPalette(engine) {
49
- await engine.pluginManager.register(async (e) => {
50
- const { options } = await (__syncRequire ? Promise.resolve().then(() => __importStar(require("./options.js"))) : new Promise((resolve_1, reject_1) => { require(["./options.js"], resolve_1, reject_1); }).then(__importStar));
51
- e.pluginManager.addPalette(paletteName, options);
52
- });
53
- }
54
- });
package/umd/options.js DELETED
@@ -1,20 +0,0 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.options = void 0;
13
- exports.options = {
14
- name: "Ice Triad",
15
- background: "#0a0d1a",
16
- blendMode: "source-over",
17
- colors: ["#ffffff", "#aaddff", "#88bbff"],
18
- fill: true,
19
- };
20
- });