@dxos/react-ui-editor 0.4.8-main.7ef1486 → 0.4.8-main.852fab3

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.
@@ -2216,7 +2216,6 @@ var defaults = {
2216
2216
  drawSelection: true,
2217
2217
  editable: true,
2218
2218
  history: true,
2219
- standardKeymap: true,
2220
2219
  lineWrapping: true,
2221
2220
  search: true
2222
2221
  };
@@ -2227,7 +2226,7 @@ var createBasicExtensions = (_props) => {
2227
2226
  EditorView10.exceptionSink.of((err) => {
2228
2227
  log7.catch(err, void 0, {
2229
2228
  F: __dxlog_file9,
2230
- L: 85,
2229
+ L: 83,
2231
2230
  S: void 0,
2232
2231
  C: (f, a) => f(...a)
2233
2232
  });
@@ -2253,11 +2252,9 @@ var createBasicExtensions = (_props) => {
2253
2252
  // https://codemirror.net/docs/ref/#view.KeyBinding
2254
2253
  keymap5.of([
2255
2254
  // https://codemirror.net/docs/ref/#commands.standardKeymap
2256
- ...props.standardKeymap ? standardKeymap : [],
2255
+ ...standardKeymap,
2257
2256
  // https://codemirror.net/docs/ref/#commands.indentWithTab
2258
- ...props.indentWithTab ? [
2259
- indentWithTab
2260
- ] : [],
2257
+ props.indentWithTab && indentWithTab,
2261
2258
  // https://codemirror.net/docs/ref/#autocomplete.closeBracketsKeymap
2262
2259
  ...props.closeBrackets ? closeBracketsKeymap : [],
2263
2260
  // https://codemirror.net/docs/ref/#commands.historyKeymap