actiontext 7.1.1 → 7.1.3
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 +24 -0
- data/app/assets/javascripts/actiontext.esm.js +889 -0
- data/app/assets/javascripts/actiontext.js +797 -830
- data/app/assets/javascripts/trix.js +11278 -12254
- data/app/helpers/action_text/tag_helper.rb +2 -6
- data/lib/action_text/engine.rb +1 -1
- data/lib/action_text/gem_version.rb +1 -1
- data/lib/generators/action_text/install/install_generator.rb +1 -1
- data/package.json +2 -2
- metadata +14 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4313fb0db4c57a41976e0dd0d8311235e32fcd966c49c4d5da1fc76ccf3a3c19
|
|
4
|
+
data.tar.gz: 1c6f538ca06525f027cee23bfb76b301ae6ca8c5737035eac7756ac420ff82a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c9da506c6f8c7516ae80bab515e709abb29f1730ff7c8ff6e4b5d8bb14d44cd10c168e674951a48e6aeffcf8b36b6877a6e7e14a8bdeae7fdf246e560c0ea30
|
|
7
|
+
data.tar.gz: 8c30ed4e1f0df31e2296e973536f4a30712e280e4dee146d9b5eade3945c37e52078c7685db22f5e943b8c2d38a090ea61d76619392fdddb075fcde29e1cc567
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## Rails 7.1.3 (January 16, 2024) ##
|
|
2
|
+
|
|
3
|
+
* No changes.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Rails 7.1.2 (November 10, 2023) ##
|
|
7
|
+
|
|
8
|
+
* Compile ESM package that can be used directly in the browser as `actiontext.esm.js`.
|
|
9
|
+
|
|
10
|
+
*Matias Grunberg*
|
|
11
|
+
|
|
12
|
+
* Fix using actiontext.js with Sprockets.
|
|
13
|
+
|
|
14
|
+
*Matias Grunberg*
|
|
15
|
+
|
|
16
|
+
* Upgrade Trix to 2.0.7.
|
|
17
|
+
|
|
18
|
+
*Hartley McGuire*
|
|
19
|
+
|
|
20
|
+
* Fix using Trix with Sprockets.
|
|
21
|
+
|
|
22
|
+
*Hartley McGuire*
|
|
23
|
+
|
|
24
|
+
|
|
1
25
|
## Rails 7.1.1 (October 11, 2023) ##
|
|
2
26
|
|
|
3
27
|
* No changes.
|