lexxy 0.7.6.beta → 0.8.2.beta
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 +7 -1
- data/Rakefile +6 -0
- data/app/assets/javascript/lexxy.js +3378 -1894
- data/app/assets/javascript/lexxy.js.br +0 -0
- data/app/assets/javascript/lexxy.js.gz +0 -0
- data/app/assets/javascript/lexxy.js.map +1 -1
- data/app/assets/javascript/lexxy.min.js +2 -2
- data/app/assets/javascript/lexxy.min.js.br +0 -0
- data/app/assets/javascript/lexxy.min.js.gz +0 -0
- data/app/assets/stylesheets/lexxy-content.css +177 -140
- data/app/assets/stylesheets/lexxy-editor.css +404 -201
- data/config/ci.rb +3 -0
- data/ext/Rakefile +31 -0
- data/lib/lexxy/rich_text_area_tag.rb +0 -1
- data/lib/lexxy/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb219286204cb2ff3821b1ff3946c1171ed1ed31068fd6806499a2a31274fba6
|
|
4
|
+
data.tar.gz: '0524893bac9c780433954d22344380894e744a29b462710a82e4c2adf2c8ed44'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39ed051a72c18d7e1cc94562c5368883b44493e1f554f6396141ecdb965abb68ab2ae37402b1ad4157f2bbd7cfdaa318c312466893eee8fad1b7be32c98b9817
|
|
7
|
+
data.tar.gz: 5faa5512ba3446b4bb5de082318671839515caf7004b99c12f6e772db2c6bba1fa4aa34f597ff68eba41f5a9edc1891e0b402b916d4f1cedb3b42d8e99e28efd
|
data/README.md
CHANGED
|
@@ -5,6 +5,8 @@ A modern rich text editor for Rails.
|
|
|
5
5
|
> [!IMPORTANT]
|
|
6
6
|
> This is an early beta. It hasn't been battle-tested yet. Please try it out and report any issues you find.
|
|
7
7
|
|
|
8
|
+
**[Try it out!](https://basecamp.github.io/lexxy/try-it)**
|
|
9
|
+
|
|
8
10
|
## Features
|
|
9
11
|
|
|
10
12
|
- Built on top of [Lexical](https://lexical.dev), the powerful text editor framework from Meta.
|
|
@@ -32,7 +34,7 @@ This is an early beta. Here's what's coming next:
|
|
|
32
34
|
- [x] Text highlighting
|
|
33
35
|
- [x] Configuration hooks.
|
|
34
36
|
- [x] Standalone JS package: to use in non-Rails environments.
|
|
35
|
-
- [
|
|
37
|
+
- [x] Image galleries: The only remaining feature for full Action Text compatibility
|
|
36
38
|
- [ ] Install task that generates the necessary JS and adds stylesheets.
|
|
37
39
|
|
|
38
40
|
## Contributing
|
|
@@ -43,3 +45,7 @@ This is an early beta. Here's what's coming next:
|
|
|
43
45
|
## License
|
|
44
46
|
|
|
45
47
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
[](https://github.com/basecamp/lexxy/actions/workflows/ci.yml)
|