@vaadin/rich-text-editor 25.0.0-alpha1 → 25.0.0-alpha2
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.0.0-
|
|
3
|
+
"version": "25.0.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,21 +39,21 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
42
|
-
"@vaadin/button": "25.0.0-
|
|
43
|
-
"@vaadin/component-base": "25.0.0-
|
|
44
|
-
"@vaadin/confirm-dialog": "25.0.0-
|
|
45
|
-
"@vaadin/overlay": "25.0.0-
|
|
46
|
-
"@vaadin/text-field": "25.0.0-
|
|
47
|
-
"@vaadin/tooltip": "25.0.0-
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
49
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
42
|
+
"@vaadin/button": "25.0.0-alpha2",
|
|
43
|
+
"@vaadin/component-base": "25.0.0-alpha2",
|
|
44
|
+
"@vaadin/confirm-dialog": "25.0.0-alpha2",
|
|
45
|
+
"@vaadin/overlay": "25.0.0-alpha2",
|
|
46
|
+
"@vaadin/text-field": "25.0.0-alpha2",
|
|
47
|
+
"@vaadin/tooltip": "25.0.0-alpha2",
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha2",
|
|
49
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha2",
|
|
50
50
|
"lit": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
54
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
55
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
56
|
-
"@vaadin/testing-helpers": "^
|
|
53
|
+
"@vaadin/a11y-base": "25.0.0-alpha2",
|
|
54
|
+
"@vaadin/chai-plugins": "25.0.0-alpha2",
|
|
55
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha2",
|
|
56
|
+
"@vaadin/testing-helpers": "^2.0.0",
|
|
57
57
|
"gulp": "^5.0.0",
|
|
58
58
|
"gulp-cli": "^3.0.0",
|
|
59
59
|
"gulp-iconfont": "^11.0.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"web-types.json",
|
|
65
65
|
"web-types.lit.json"
|
|
66
66
|
],
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "67ffcd5355cf21ce1b5039c598525109fc4c164b"
|
|
68
68
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
9
|
* license.
|
|
10
10
|
*/
|
|
11
|
-
import { css
|
|
11
|
+
import { css } from 'lit';
|
|
12
12
|
|
|
13
13
|
export const contentStyles = css`
|
|
14
14
|
[part='content'] {
|
|
@@ -113,6 +113,3 @@ export const contentStyles = css`
|
|
|
113
113
|
text-align: right;
|
|
114
114
|
}
|
|
115
115
|
`;
|
|
116
|
-
|
|
117
|
-
// Register a module with ID for backwards compatibility.
|
|
118
|
-
registerStyles('', contentStyles, { moduleId: 'vaadin-rich-text-editor-content-styles' });
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
9
|
* license.
|
|
10
10
|
*/
|
|
11
|
-
import { css
|
|
11
|
+
import { css } from 'lit';
|
|
12
12
|
|
|
13
13
|
const template = document.createElement('template');
|
|
14
14
|
|
|
@@ -88,6 +88,3 @@ export const iconsStyles = css`
|
|
|
88
88
|
content: var(--vaadin-rte-icons-redo);
|
|
89
89
|
}
|
|
90
90
|
`;
|
|
91
|
-
|
|
92
|
-
// Register a module with ID for backwards compatibility.
|
|
93
|
-
registerStyles('', iconsStyles, { moduleId: 'vaadin-rich-text-editor-icons' });
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
9
|
* license.
|
|
10
10
|
*/
|
|
11
|
-
import { css
|
|
11
|
+
import { css } from 'lit';
|
|
12
12
|
import { iconsStyles } from './vaadin-rich-text-editor-icons.js';
|
|
13
13
|
|
|
14
14
|
export const buttonsStyles = css`
|
|
@@ -178,6 +178,3 @@ export const buttonsStyles = css`
|
|
|
178
178
|
`;
|
|
179
179
|
|
|
180
180
|
export const toolbarStyles = [iconsStyles, buttonsStyles];
|
|
181
|
-
|
|
182
|
-
// Register a module with ID for backwards compatibility.
|
|
183
|
-
registerStyles('', toolbarStyles, { moduleId: 'vaadin-rich-text-editor-toolbar-styles' });
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED