@dile/editor 3.0.17 → 3.0.18
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 +3 -3
- package/src/DileEditor.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dile/editor",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.18",
|
|
4
4
|
"description": "Flexible Web Component for rich text editing with WYSIWYG and Markdown support. Easy to integrate, customizable UI, powered by ProseMirror.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@dile/icons": "^2.5.1",
|
|
34
|
-
"@dile/ui": "^3.4.
|
|
34
|
+
"@dile/ui": "^3.4.5",
|
|
35
35
|
"lit": "^2.7.0 || ^3.0.0",
|
|
36
36
|
"prosemirror-commands": "^1.6.2",
|
|
37
37
|
"prosemirror-example-setup": "^1.2.3",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"prosemirror-state": "^1.4.3",
|
|
43
43
|
"prosemirror-view": "^1.37.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "31136286663cc7482a95a8813d845e73c3f6c57d"
|
|
46
46
|
}
|
package/src/DileEditor.js
CHANGED
|
@@ -167,7 +167,7 @@ export class DileEditor extends DileI18nMixin(DileEmmitChange(LitElement)) {
|
|
|
167
167
|
value: { type: String },
|
|
168
168
|
|
|
169
169
|
/** Name for this editor form field */
|
|
170
|
-
name: { type: String },
|
|
170
|
+
name: { type: String, reflect: true },
|
|
171
171
|
|
|
172
172
|
/** Label to the element */
|
|
173
173
|
label: { type: String },
|