@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/dist/custom-elements.json +1 -1
- package/dist/web-types.json +1 -1
- package/dist/zn.min.js +1166 -1185
- package/package.json +1 -1
- package/src/components/editor/editor.component.ts +1 -2
- package/src/components/icon-picker/material-icons.ts +530 -10442
- package/src/components/rating/rating.component.ts +1 -2
package/package.json
CHANGED
|
@@ -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(
|
|
458
|
+
this._content = content.trim();
|
|
460
459
|
|
|
461
460
|
if (editorMode === 'replace') {
|
|
462
461
|
this._replaceTextAtSelection();
|