@plone/volto-slate 19.0.0-alpha.13 → 19.0.0-alpha.14

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.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 19.0.0-alpha.14 (2026-04-09)
12
+
13
+ ### Breaking
14
+
15
+ - Change hotkey for strikethrough text to Ctrl+Shift+X / Cmd+Shift+X. @MAX-786 [#4196](https://github.com/plone/volto/issues/4196)
16
+
17
+ ### Bugfix
18
+
19
+ - fix LinkEditor not opening from SlateEditor @CannedShroud [#4130](https://github.com/plone/volto/issues/4130)
20
+
21
+ ### Internal
22
+
23
+ - Update devDependency: release-it 19.2.4. @davisagli
24
+
11
25
  ## 19.0.0-alpha.13 (2026-03-31)
12
26
 
13
27
  ### Internal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plone/volto-slate",
3
- "version": "19.0.0-alpha.13",
3
+ "version": "19.0.0-alpha.14",
4
4
  "description": "Slate.js integration with Volto",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -42,7 +42,7 @@
42
42
  "devDependencies": {
43
43
  "@testing-library/react": "14.3.1",
44
44
  "jsdom": "^28.1.0",
45
- "release-it": "^19.0.5"
45
+ "release-it": "^19.2.4"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": "^18.2.0",
@@ -207,7 +207,7 @@ export const hotkeys = {
207
207
  'mod+b': { format: 'strong', type: 'inline' },
208
208
  'mod+i': { format: 'em', type: 'inline' },
209
209
  'mod+u': { format: 'u', type: 'inline' },
210
- 'mod+s': { format: 'del', type: 'inline' },
210
+ 'mod+shift+x': { format: 'del', type: 'inline' },
211
211
  // 'mod+`': { format: 'code', type: 'inline' },
212
212
  // TODO: more hotkeys, including from plugins!
213
213
  };
@@ -91,7 +91,6 @@ const LinkEditor = (props) => {
91
91
  }}
92
92
  onOverrideContent={(c) => {
93
93
  dispatch(setPluginOptions(pid, { show_sidebar_editor: false }));
94
- savedPosition.current = null;
95
94
  }}
96
95
  />
97
96
  </PositionedToolbar>