@radioactive-labs/plutonium 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radioactive-labs/plutonium",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Core assets for the Plutonium gem",
5
5
  "type": "module",
6
6
  "main": "src/js/core.js",
@@ -20,7 +20,8 @@
20
20
  "dependencies": {
21
21
  "@hotwired/stimulus": "^3.2.2",
22
22
  "lodash.debounce": "^4.0.8",
23
- "@hotwired/turbo": "^8.0.4"
23
+ "@hotwired/turbo": "^8.0.4",
24
+ "flowbite": "^2.3.0"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@tailwindcss/forms": "^0.5.7",
@@ -28,7 +29,6 @@
28
29
  "concurrently": "^8.2.2",
29
30
  "esbuild": "^0.20.1",
30
31
  "esbuild-plugin-manifest": "^1.0.3",
31
- "flowbite": "^2.3.0",
32
32
  "postcss": "^8.4.35",
33
33
  "postcss-cli": "^11.0.0",
34
34
  "postcss-hash": "^3.0.0",
@@ -12371,7 +12371,7 @@
12371
12371
  start2();
12372
12372
 
12373
12373
  // src/js/turbo/turbo_debug.js
12374
- eventNames = [
12374
+ [
12375
12375
  "turbo:click",
12376
12376
  "turbo:before-visit",
12377
12377
  "turbo:visit",
@@ -12395,8 +12395,7 @@
12395
12395
  "turbo:before-morph-element",
12396
12396
  "turbo:morph-attribute",
12397
12397
  "turbo:morph"
12398
- ];
12399
- eventNames.forEach((eventName) => {
12398
+ ].forEach((eventName) => {
12400
12399
  document.addEventListener(eventName, (event) => {
12401
12400
  console.log(event.type, event);
12402
12401
  });