@radioactive-labs/plutonium 0.4.2 → 0.4.4

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.4.2",
3
+ "version": "0.4.4",
4
4
  "description": "Core assets for the Plutonium gem",
5
5
  "type": "module",
6
6
  "main": "src/js/core.js",
package/src/css/core.css CHANGED
@@ -1,13 +1,16 @@
1
- @layer components {
2
- .pu-color-input::-webkit-color-swatch-wrapper {
3
- @apply p-0;
4
- }
1
+ /**
2
+ * Color Input Styles for Tailwind v4
3
+ * Converted from @layer components to work with v4
4
+ */
5
5
 
6
- .pu-color-input::-webkit-color-swatch {
7
- @apply border-none rounded-lg;
8
- }
6
+ .pu-color-input::-webkit-color-swatch-wrapper {
7
+ @apply p-0;
8
+ }
9
+
10
+ .pu-color-input::-webkit-color-swatch {
11
+ @apply border-none rounded-lg;
12
+ }
9
13
 
10
- .pu-color-input::-moz-color-swatch {
11
- @apply border-none rounded-lg;
12
- }
14
+ .pu-color-input::-moz-color-swatch {
15
+ @apply border-none rounded-lg;
13
16
  }