scrivito_editors 0.30.1 → 0.40.0.rc1
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 +10 -3
- data/app/assets/javascripts/redactor.js +6620 -6697
- data/app/assets/javascripts/scrivito_editors/binary_editor.js.coffee +49 -0
- data/app/assets/javascripts/scrivito_editors/date_editor.js.coffee +2 -2
- data/app/assets/javascripts/scrivito_editors/enum_editor.js.coffee +4 -1
- data/app/assets/javascripts/scrivito_editors/helpers/file_drop_zone.js.coffee +43 -0
- data/app/assets/javascripts/scrivito_editors/html_editor.js.coffee +96 -80
- data/app/assets/javascripts/scrivito_editors/image_editor.js.coffee +5 -39
- data/app/assets/javascripts/scrivito_editors/multienum_editor.js.coffee +4 -1
- data/app/assets/javascripts/scrivito_editors/placeholder.js.coffee +1 -0
- data/app/assets/javascripts/scrivito_editors/redactor_plugins/table.js +337 -0
- data/app/assets/javascripts/scrivito_editors/reference_editor.js.coffee +1 -1
- data/app/assets/javascripts/scrivito_editors/referencelist_editor.js.coffee +1 -1
- data/app/assets/javascripts/scrivito_editors/slider_editor.js.coffee +1 -1
- data/app/assets/javascripts/scrivito_editors/string_editor.js.coffee +1 -1
- data/app/assets/javascripts/scrivito_editors/text_editor.js.coffee +1 -1
- data/app/assets/javascripts/scrivito_editors_core.js +3 -1
- data/app/assets/stylesheets/{redactor.css.erb → redactor.css} +536 -596
- data/app/assets/stylesheets/scrivito_editors/binary_editor.css +14 -0
- data/app/assets/stylesheets/scrivito_editors/editors/html_editor.css +8 -5
- metadata +36 -34
- data/app/assets/fonts/redactor-font.eot +0 -0
- data/lib/scrivito_editors/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ee8ba53124594687ab57e326d34f7db19835e7c
|
4
|
+
data.tar.gz: 7aefd595e343fedaee934a2172c7bec4d9a4f0bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1e98b98065a156cdc4bcd2ff9e0b7db9ff05324003a1fead0dbff42f596e3eb1277ce04209c8a98e9c2d230d2ddfb3063d7f3cde00e583eb65018f97d1f98e2
|
7
|
+
data.tar.gz: f2b5ba14dff9b1e194b14dcc195774376e4e32bf86531194146c626808e1bd4c0638b1742087f3b0e3c309875e84c08fde6095223fc1624b3096d31c8cd39228
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
|
+
# v0.40.0
|
2
|
+
* Updated HTML editor to Redactor 10.0.6
|
3
|
+
* Introduced API for Redactor options, e. g.
|
4
|
+
`scrivito.editors.html_editor.redactor.options = { buttonSource: true }`
|
5
|
+
* Resolved: Markup will now stay unchanged when the editor is closed without editing.
|
6
|
+
* Resolved: Cursor will now appear at the point of clicking, if possible. Otherwise at the end.
|
7
|
+
|
1
8
|
# v0.30.1
|
2
|
-
*
|
3
|
-
*
|
4
|
-
*
|
9
|
+
* Resolved issue: Date editor keeps time when editing
|
10
|
+
* Resolved issue: Date editor saves without NaN errors in Safari and Firefox
|
11
|
+
* Resolved issue: text editor on Chrome keeps line breaks when leaving the editor
|
5
12
|
|
6
13
|
# v0.30.0
|
7
14
|
* Compatibility with https://rubygems.org/gems/scrivito 0.30.0
|