@radioactive-labs/plutonium 0.50.0 → 0.51.0
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 +10 -10
- package/src/css/slim_select.css +4 -0
- package/src/dist/css/plutonium.css +1 -11
- package/src/dist/js/plutonium.js +1009 -1214
- package/src/dist/js/plutonium.js.map +3 -3
- package/src/dist/js/plutonium.min.js +52 -51
- package/src/dist/js/plutonium.min.js.map +3 -3
- package/src/js/controllers/slim_select_controller.js +61 -0
- package/src/js/turbo/turbo_actions.js +33 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@radioactive-labs/plutonium",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.51.0",
|
|
4
4
|
"description": "Build production-ready Rails apps in minutes, not days. Convention-driven, fully customizable, AI-ready.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/js/core.js",
|
|
@@ -25,27 +25,27 @@
|
|
|
25
25
|
"@uppy/dashboard": "^4.1.3",
|
|
26
26
|
"@uppy/image-editor": "^3.2.1",
|
|
27
27
|
"@uppy/xhr-upload": "^4.2.3",
|
|
28
|
-
"dompurify": "^3.
|
|
28
|
+
"dompurify": "^3.4.3",
|
|
29
29
|
"lodash.debounce": "^4.0.8",
|
|
30
30
|
"marked": "^15.0.3"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@tailwindcss/forms": "^0.5.10",
|
|
34
|
-
"@tailwindcss/postcss": "^4.0
|
|
34
|
+
"@tailwindcss/postcss": "^4.3.0",
|
|
35
35
|
"@tailwindcss/typography": "^0.5.16",
|
|
36
36
|
"chokidar-cli": "^3.0.0",
|
|
37
37
|
"concurrently": "^8.2.2",
|
|
38
38
|
"cssnano": "^7.0.2",
|
|
39
|
-
"esbuild": "^0.
|
|
39
|
+
"esbuild": "^0.28.0",
|
|
40
40
|
"esbuild-plugin-manifest": "^1.0.3",
|
|
41
41
|
"flowbite-typography": "^1.0.5",
|
|
42
|
-
"mermaid": "^11.
|
|
43
|
-
"postcss": "^8.
|
|
44
|
-
"postcss-cli": "^11.0.
|
|
42
|
+
"mermaid": "^11.15.0",
|
|
43
|
+
"postcss": "^8.5.14",
|
|
44
|
+
"postcss-cli": "^11.0.1",
|
|
45
45
|
"postcss-hash": "^3.0.0",
|
|
46
|
-
"postcss-import": "^16.1.
|
|
47
|
-
"tailwindcss": "^4.0
|
|
48
|
-
"vitepress": "^1.4
|
|
46
|
+
"postcss-import": "^16.1.1",
|
|
47
|
+
"tailwindcss": "^4.3.0",
|
|
48
|
+
"vitepress": "^1.6.4",
|
|
49
49
|
"vitepress-plugin-mermaid": "^2.0.17"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
package/src/css/slim_select.css
CHANGED
|
@@ -151,6 +151,10 @@
|
|
|
151
151
|
@apply absolute flex h-auto flex-col w-auto max-h-72 border transition-all duration-200 opacity-0 z-[10000] overflow-hidden;
|
|
152
152
|
background-color: var(--pu-surface);
|
|
153
153
|
border-color: var(--pu-border);
|
|
154
|
+
/* Default text color for everything inside the panel — covers the
|
|
155
|
+
"No Results" text and any other slim-select chrome that doesn't
|
|
156
|
+
declare its own color rule. Specific rules below still win. */
|
|
157
|
+
color: var(--pu-text);
|
|
154
158
|
box-shadow: var(--pu-shadow-md);
|
|
155
159
|
transform: scaleY(0);
|
|
156
160
|
transform-origin: top;
|