ultimate_turbo_modal 2.0.0 → 2.0.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/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +12 -11
- data/VERSION +1 -1
- data/javascript/package-lock.json +1114 -0
- data/javascript/package.json +1 -1
- data/javascript/scripts/release-npm.sh +3 -5
- data/javascript/scripts/update-version.js +2 -2
- data/javascript/yarn.lock +94 -94
- data/lib/phlex/deferred_render_with_main_content.rb +1 -1
- data/lib/ultimate_turbo_modal/base.rb +2 -1
- data/script/build_and_release.sh +25 -8
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5fdea054587cce77438cee439587f3ce28ca49a2b6626d1c1bacd5acf4cf5bb
|
4
|
+
data.tar.gz: 1662f021dae0bdc0a9ff9a2cc2c2a2fd29577bedddf51829249b8b3b61d35c31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76a068194d26f01d2940945237b6acb97abaa7621fbdb50ea4665b5f7cf85ddc2c6fd03f1b1486ec6f3f2d7fbb0463b6540ad5fe1865b455e407a33a83499331
|
7
|
+
data.tar.gz: e76696e1d26cb19a62bb71c41ecba7e5d0193e86b7a4c055e0094944108cbbdb75aea4c26c9648a464985e8b8698e7e3595f74525f1ebe4e220e9659b334cec3
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -22,17 +22,6 @@ $ bundle exec rails g ultimate_turbo_modal:install
|
|
22
22
|
|
23
23
|
|
24
24
|
|
25
|
-
### Upgrading from version 1.x
|
26
|
-
|
27
|
-
- Remove the two `setupUltimateTurboModal`-related lines from `app/javascript/controllers/index.js`:
|
28
|
-
|
29
|
-
- Remove anything UTMR-specific in `tailwind.config.js`.
|
30
|
-
|
31
|
-
- Remove the optional Idiomorph tweaks:
|
32
|
-
- `<script src="https://unpkg.com/idiomorph"></script>` from your HTML
|
33
|
-
- `addEventListener("turbo:before-frame-render", (event) => {...` from `application.js`
|
34
|
-
- Update the gem to the newest version and follow the installation instructions above.
|
35
|
-
|
36
25
|
## Features and capabilities
|
37
26
|
|
38
27
|
- Extremely easy to use
|
@@ -163,6 +152,18 @@ You can set a custom title and footer by passing a block. For example
|
|
163
152
|
|
164
153
|
|
165
154
|
|
155
|
+
|
156
|
+
## Upgrading from version 1.x
|
157
|
+
|
158
|
+
- Remove the two `setupUltimateTurboModal`-related lines from `app/javascript/controllers/index.js`:
|
159
|
+
|
160
|
+
- Remove anything UTMR-specific in `tailwind.config.js`.
|
161
|
+
|
162
|
+
- Remove the optional Idiomorph tweaks:
|
163
|
+
- `<script src="https://unpkg.com/idiomorph"></script>` from your HTML
|
164
|
+
- `addEventListener("turbo:before-frame-render", (event) => {...` from `application.js`
|
165
|
+
- Update the gem to the newest version and follow the installation instructions above.
|
166
|
+
|
166
167
|
## Thanks
|
167
168
|
|
168
169
|
Thanks to [@joeldrapper](https://github.com/joeldrapper) and [@konnorrogers](https://github.com/KonnorRogers) for all the help!
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.1
|