satis 2.2.0 → 2.2.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.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/app/assets/config/satis_manifest.js +0 -1
- data/app/assets/fontawesome/regular.js +2 -2
- data/app/components/satis/card/component.css +8 -0
- data/app/components/satis/card/component.html.slim +20 -13
- data/app/components/satis/card/component.rb +49 -2
- data/app/components/satis/card/component_controller.js +78 -0
- data/app/components/satis/dropdown/component.html.slim +3 -3
- data/app/components/satis/dropdown/component.rb +31 -1
- data/app/components/satis/dropdown/component_controller.js +7 -5
- data/app/components/satis/sidebar/component.css +52 -74
- data/app/components/satis/sidebar_menu_item/component.css +94 -115
- data/app/components/satis/sidebar_menu_item/component_controller.js +113 -9
- data/app/javascript/satis/controllers/fields_for_controller.js +1 -1
- data/app/javascript/satis/controllers/index.js +3 -0
- data/app/javascript/satis/utility_controllers/show_hide_controller.js +1 -1
- data/flake.lock +109 -0
- data/flake.nix +98 -0
- data/lib/satis/version.rb +1 -1
- metadata +5 -5
- data/app/assets/fontawesome/brands.js +0 -6
- data/app/assets/fontawesome/fontawesome.js +0 -6
- data/app/assets/fontawesome/solid.js +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a216f52695555dd93f0a81cd4bccbfd12a2a35e4c66d27ecb9b9d47a13230ab
|
|
4
|
+
data.tar.gz: 2c91093bfbdf423497d7be8cd3f369a7532576b2df54fcacd1819db96c1b24f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e5993a3ddbad93c31e40f16020d5fa449414124c8eb2cdd8340d171798a36591d348bd58e431667771e085b7e7163e362840eeb566fa6e40b0fa2a7bd8562ad
|
|
7
|
+
data.tar.gz: faf38d6365356096841ac530334082d83bd1088190da0c1560800c174af553fc5ffe8591dfee14d2c3f81c35cd5cd96e10150c538fc44286bcb6030d2f2ebeb9
|
data/README.md
CHANGED
|
@@ -5,11 +5,15 @@ We use:
|
|
|
5
5
|
|
|
6
6
|
- [TailwindCSS](https://tailwindcss.com)
|
|
7
7
|
- [TailwindUI](https://tailwindui.com)
|
|
8
|
-
- [FontAwesome
|
|
8
|
+
- [FontAwesome 7](https://fontawesome.com/v7.0/)
|
|
9
9
|
- [ViewComponent](https://viewcomponent.org)
|
|
10
10
|
- [HotWired](https://hotwired.dev)
|
|
11
11
|
- [BEM](https://cssguidelin.es/#bem-like-naming)
|
|
12
12
|
|
|
13
|
+
## Upgrade
|
|
14
|
+
|
|
15
|
+
* From 2.3.0 onwards, we will no longer ship Fontawesome free. It conflicts with Fontawesome Pro. You can easily add the javascript files, you can download them from here: https://fontawesome.com/download. Use the files from the `js` folder. Put these in a folder which is in your manifest and it should just work.
|
|
16
|
+
|
|
13
17
|
## Installation
|
|
14
18
|
|
|
15
19
|
Your main app needs to have at least the following config/postcss.config.js:
|