plutonium 0.18.0 → 0.18.1
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.
- checksums.yaml +4 -4
- data/app/assets/plutonium.css +1 -9
- data/lib/generators/pu/core/assets/assets_generator.rb +7 -1
- data/lib/plutonium/ui/layout/base.rb +23 -0
- data/lib/plutonium/version.rb +1 -1
- data/package-lock.json +2 -2
- data/package.json +1 -1
- data/src/css/plutonium.css +0 -3
- metadata +1 -1
@@ -29,7 +29,13 @@ module Pu
|
|
29
29
|
end
|
30
30
|
|
31
31
|
def install_dependencies
|
32
|
-
|
32
|
+
[
|
33
|
+
"@radioactive-labs/plutonium",
|
34
|
+
"@tailwindcss/forms", "@tailwindcss/typography", "flowbite-typography",
|
35
|
+
"postcss-cli", "cssnano marked"
|
36
|
+
].each do |package|
|
37
|
+
run "yarn add #{package}"
|
38
|
+
end
|
33
39
|
end
|
34
40
|
|
35
41
|
def configure_application
|
@@ -138,6 +138,29 @@ module Plutonium
|
|
138
138
|
integrity: "sha384-oE0RVGDyNw9goP8V3wYWC9+3GYojVc/LhhKmLT9J5k+L+oGHPa1gRF3FomvOCOFs",
|
139
139
|
crossorigin: "anonymous"
|
140
140
|
)
|
141
|
+
link(
|
142
|
+
rel: "stylesheet",
|
143
|
+
href: "https://cdn.jsdelivr.net/npm/@uppy/core@4.3.1/dist/style.min.css",
|
144
|
+
integrity:
|
145
|
+
"sha384-duO7yazRrDcRaU8fsOcR3nRyiE7zYi14hncnPBJwqwtTNIaOSMoedatlLJgOcuWC",
|
146
|
+
crossorigin: "anonymous"
|
147
|
+
)
|
148
|
+
link(
|
149
|
+
rel: "stylesheet",
|
150
|
+
href:
|
151
|
+
"https://cdn.jsdelivr.net/npm/@uppy/dashboard@4.1.3/dist/style.min.css",
|
152
|
+
integrity:
|
153
|
+
"sha384-zhtN/7sNIm7zP9ccJ0oz4Bhoe1iy2gZM9y37fMgGqWDSY5AIeGoPzAfnqbW6bYII",
|
154
|
+
crossorigin: "anonymous"
|
155
|
+
)
|
156
|
+
link(
|
157
|
+
rel: "stylesheet",
|
158
|
+
href:
|
159
|
+
"https://cdn.jsdelivr.net/npm/@uppy/image-editor@3.2.1/dist/style.min.css",
|
160
|
+
integrity:
|
161
|
+
"sha384-Wk0+fOnKCX5R8Clls7c6jbYFLDZe43o6j9HFR9AUmOrc+TQZH6B4DFnXhvwhNPyG",
|
162
|
+
crossorigin: "anonymous"
|
163
|
+
)
|
141
164
|
end
|
142
165
|
|
143
166
|
def render_scripts
|
data/lib/plutonium/version.rb
CHANGED
data/package-lock.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@radioactive-labs/plutonium",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.1",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@radioactive-labs/plutonium",
|
9
|
-
"version": "0.3.
|
9
|
+
"version": "0.3.1",
|
10
10
|
"license": "MIT",
|
11
11
|
"dependencies": {
|
12
12
|
"@hotwired/stimulus": "^3.2.2",
|
data/package.json
CHANGED
data/src/css/plutonium.css
CHANGED