@startlibs/form 1.0.0-alpha-10b → 1.0.0-alpha-10c

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -5521,7 +5521,7 @@ var RichText = function RichText(_ref5) {
5521
5521
 
5522
5522
  var keydownHandler = function keydownHandler(e) {
5523
5523
  if (containerFocused.isOpen === 2) {
5524
- if (e.key === "k" && e.ctrlKey) {
5524
+ if (e.key === "k" && e.ctrlKey || e.key === "k" && e.metaKey) {
5525
5525
  e.preventDefault();
5526
5526
  execCommand(null, 'link');
5527
5527
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startlibs/form",
3
- "version": "1.0.0-alpha-10b",
3
+ "version": "1.0.0-alpha-10c",
4
4
  "description": "Startlibs Form",
5
5
  "main": "lib/index.js",
6
6
  "sideEffects": false,