@dxos/react-ui-editor 0.4.8-main.6d7437e → 0.4.8-main.8cb190e

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.
@@ -2233,9 +2233,6 @@ var createBasicExtensions = (_props) => {
2233
2233
  var defaultSlots = {
2234
2234
  editor: {
2235
2235
  className: "w-full bs-full"
2236
- },
2237
- content: {
2238
- className: "!p-2"
2239
2236
  }
2240
2237
  };
2241
2238
  var createThemeExtensions = ({ theme, themeMode, slots: _slots } = {}) => {
@@ -2563,7 +2560,7 @@ var CheckboxWidget = class extends WidgetType3 {
2563
2560
  }
2564
2561
  toDOM(view) {
2565
2562
  const input = document.createElement("input");
2566
- input.className = "cm-task-checkbox";
2563
+ input.className = "cm-task-checkbox ch-checkbox ch-focus-ring -mbs-0.5";
2567
2564
  input.type = "checkbox";
2568
2565
  input.checked = this._checked;
2569
2566
  if (view.state.readOnly) {