@kubex/zinc 1.1.31 → 1.1.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubex/zinc",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
4
4
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
5
5
  "keywords": [
6
6
  "web components",
@@ -3,7 +3,6 @@ import {deepQuerySelectorAll} from "../../utilities/query";
3
3
  import {FormControlController} from '../../internal/form';
4
4
  import {on} from "../../utilities/on";
5
5
  import {property, query} from 'lit/decorators.js';
6
- import {trim} from "lodash";
7
6
  import Attachment from "./modules/attachment/attachment";
8
7
  import ContextMenu from "./modules/context-menu/context-menu";
9
8
  import DatePicker from "./modules/date-picker/date-picker";
@@ -456,7 +455,7 @@ export default class ZnEditor extends ZincElement implements ZincFormControl {
456
455
  }
457
456
  if (!content || content === '') return;
458
457
 
459
- this._content = trim(content);
458
+ this._content = content.trim();
460
459
 
461
460
  if (editorMode === 'replace') {
462
461
  this._replaceTextAtSelection();