@vaadin/rich-text-editor 25.2.0-alpha10 → 25.2.0-alpha12
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": "@vaadin/rich-text-editor",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha12",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,23 +35,22 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.2.0-
|
|
39
|
-
"@vaadin/button": "25.2.0-
|
|
40
|
-
"@vaadin/component-base": "25.2.0-
|
|
41
|
-
"@vaadin/confirm-dialog": "25.2.0-
|
|
42
|
-
"@vaadin/overlay": "25.2.0-
|
|
43
|
-
"@vaadin/text-field": "25.2.0-
|
|
44
|
-
"@vaadin/tooltip": "25.2.0-
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.2.0-alpha12",
|
|
39
|
+
"@vaadin/button": "25.2.0-alpha12",
|
|
40
|
+
"@vaadin/component-base": "25.2.0-alpha12",
|
|
41
|
+
"@vaadin/confirm-dialog": "25.2.0-alpha12",
|
|
42
|
+
"@vaadin/overlay": "25.2.0-alpha12",
|
|
43
|
+
"@vaadin/text-field": "25.2.0-alpha12",
|
|
44
|
+
"@vaadin/tooltip": "25.2.0-alpha12",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha12",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/
|
|
50
|
-
"@vaadin/
|
|
51
|
-
"@vaadin/
|
|
52
|
-
"@vaadin/test-runner-commands": "25.2.0-alpha10",
|
|
49
|
+
"@vaadin/aura": "25.2.0-alpha12",
|
|
50
|
+
"@vaadin/chai-plugins": "25.2.0-alpha12",
|
|
51
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha12",
|
|
53
52
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
54
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
53
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha12",
|
|
55
54
|
"sinon": "^21.0.2"
|
|
56
55
|
},
|
|
57
56
|
"cvdlName": "vaadin-rich-text-editor",
|
|
@@ -60,5 +59,5 @@
|
|
|
60
59
|
"web-types.json",
|
|
61
60
|
"web-types.lit.json"
|
|
62
61
|
],
|
|
63
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "ae1e4373aec3653d63a45b6be18eee36f4b245a1"
|
|
64
63
|
}
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
7
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
8
|
* license.
|
|
10
9
|
*/
|
|
@@ -96,11 +95,8 @@ const DEFAULT_I18N = {
|
|
|
96
95
|
remove: 'Remove',
|
|
97
96
|
};
|
|
98
97
|
|
|
99
|
-
/**
|
|
100
|
-
* @polymerMixin
|
|
101
|
-
*/
|
|
102
98
|
export const RichTextEditorMixin = (superClass) =>
|
|
103
|
-
class RichTextEditorMixinClass extends I18nMixin(
|
|
99
|
+
class RichTextEditorMixinClass extends I18nMixin(superClass) {
|
|
104
100
|
static get properties() {
|
|
105
101
|
return {
|
|
106
102
|
/**
|
|
@@ -245,6 +241,10 @@ export const RichTextEditorMixin = (superClass) =>
|
|
|
245
241
|
return ['_valueChanged(value, _editor)', '_disabledChanged(disabled, readonly, _editor)'];
|
|
246
242
|
}
|
|
247
243
|
|
|
244
|
+
static get defaultI18n() {
|
|
245
|
+
return DEFAULT_I18N;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
248
|
/**
|
|
249
249
|
* The object used to localize this component. To change the default
|
|
250
250
|
* localization, replace this with an object that provides all properties, or
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
7
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
8
|
* license.
|
|
10
9
|
*/
|
|
@@ -137,10 +136,6 @@ export { RichTextEditorPopup };
|
|
|
137
136
|
*
|
|
138
137
|
* @customElement vaadin-rich-text-editor-popup-overlay
|
|
139
138
|
* @extends HTMLElement
|
|
140
|
-
* @mixes DirMixin
|
|
141
|
-
* @mixes ThemableMixin
|
|
142
|
-
* @mixes OverlayMixin
|
|
143
|
-
* @mixes PositionMixin
|
|
144
139
|
* @private
|
|
145
140
|
*/
|
|
146
141
|
class RichTextEditorPopupOverlay extends PositionMixin(
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
7
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
8
|
* license.
|
|
10
9
|
*/
|
|
@@ -118,9 +117,6 @@ import { RichTextEditorMixin } from './vaadin-rich-text-editor-mixin.js';
|
|
|
118
117
|
*
|
|
119
118
|
* @customElement vaadin-rich-text-editor
|
|
120
119
|
* @extends HTMLElement
|
|
121
|
-
* @mixes ElementMixin
|
|
122
|
-
* @mixes RichTextEditorMixin
|
|
123
|
-
* @mixes ThemableMixin
|
|
124
120
|
*/
|
|
125
121
|
class RichTextEditor extends RichTextEditorMixin(
|
|
126
122
|
ElementMixin(ThemableMixin(PolylitMixin(LumoInjectionMixin(LitElement)))),
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED