rme 0.2.5 → 0.2.6

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/dist/index.mjs CHANGED
@@ -12073,9 +12073,11 @@ var createWysiwygDelegate = (options = {}) => {
12073
12073
  toggleDelete: "mod-shift-s"
12074
12074
  };
12075
12075
  const overrideShortcutMap = {
12076
- ...defaultOverrideShortcutMap,
12077
12076
  ...options.overrideShortcutMap || {}
12078
12077
  };
12078
+ if (!options.disableAllBuildInShortcuts) {
12079
+ Object.assign(overrideShortcutMap, defaultOverrideShortcutMap);
12080
+ }
12079
12081
  const manager = createReactManager2(
12080
12082
  () => {
12081
12083
  return [...extensions_default(options)];