@vaadin/rich-text-editor 25.2.0-alpha10 → 25.2.0-alpha11

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-alpha10",
3
+ "version": "25.2.0-alpha11",
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-alpha10",
39
- "@vaadin/button": "25.2.0-alpha10",
40
- "@vaadin/component-base": "25.2.0-alpha10",
41
- "@vaadin/confirm-dialog": "25.2.0-alpha10",
42
- "@vaadin/overlay": "25.2.0-alpha10",
43
- "@vaadin/text-field": "25.2.0-alpha10",
44
- "@vaadin/tooltip": "25.2.0-alpha10",
45
- "@vaadin/vaadin-themable-mixin": "25.2.0-alpha10",
38
+ "@vaadin/a11y-base": "25.2.0-alpha11",
39
+ "@vaadin/button": "25.2.0-alpha11",
40
+ "@vaadin/component-base": "25.2.0-alpha11",
41
+ "@vaadin/confirm-dialog": "25.2.0-alpha11",
42
+ "@vaadin/overlay": "25.2.0-alpha11",
43
+ "@vaadin/text-field": "25.2.0-alpha11",
44
+ "@vaadin/tooltip": "25.2.0-alpha11",
45
+ "@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
46
46
  "lit": "^3.0.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@vaadin/a11y-base": "25.1.0-beta2",
50
- "@vaadin/aura": "25.2.0-alpha10",
51
- "@vaadin/chai-plugins": "25.2.0-alpha10",
52
- "@vaadin/test-runner-commands": "25.2.0-alpha10",
49
+ "@vaadin/aura": "25.2.0-alpha11",
50
+ "@vaadin/chai-plugins": "25.2.0-alpha11",
51
+ "@vaadin/test-runner-commands": "25.2.0-alpha11",
53
52
  "@vaadin/testing-helpers": "^2.0.0",
54
- "@vaadin/vaadin-lumo-styles": "25.2.0-alpha10",
53
+ "@vaadin/vaadin-lumo-styles": "25.2.0-alpha11",
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": "1303b6a3eeecb44a9d26f2b53cb56d9e906febdf"
62
+ "gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
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(DEFAULT_I18N, superClass) {
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/rich-text-editor",
4
- "version": "25.2.0-alpha10",
4
+ "version": "25.2.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/rich-text-editor",
4
- "version": "25.2.0-alpha10",
4
+ "version": "25.2.0-alpha11",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {