@ckeditor/ckeditor5-ui 46.0.1-alpha.4 → 46.0.1-alpha.6
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/colorpicker/colorpickerview.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-ui",
|
3
|
-
"version": "46.0.1-alpha.
|
3
|
+
"version": "46.0.1-alpha.6",
|
4
4
|
"description": "The UI framework and standard UI library of CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -17,11 +17,11 @@
|
|
17
17
|
"type": "module",
|
18
18
|
"main": "src/index.js",
|
19
19
|
"dependencies": {
|
20
|
-
"@ckeditor/ckeditor5-core": "46.0.1-alpha.
|
21
|
-
"@ckeditor/ckeditor5-editor-multi-root": "46.0.1-alpha.
|
22
|
-
"@ckeditor/ckeditor5-engine": "46.0.1-alpha.
|
23
|
-
"@ckeditor/ckeditor5-icons": "46.0.1-alpha.
|
24
|
-
"@ckeditor/ckeditor5-utils": "46.0.1-alpha.
|
20
|
+
"@ckeditor/ckeditor5-core": "46.0.1-alpha.6",
|
21
|
+
"@ckeditor/ckeditor5-editor-multi-root": "46.0.1-alpha.6",
|
22
|
+
"@ckeditor/ckeditor5-engine": "46.0.1-alpha.6",
|
23
|
+
"@ckeditor/ckeditor5-icons": "46.0.1-alpha.6",
|
24
|
+
"@ckeditor/ckeditor5-utils": "46.0.1-alpha.6",
|
25
25
|
"@types/color-convert": "2.0.4",
|
26
26
|
"color-convert": "3.1.0",
|
27
27
|
"color-parse": "2.0.2",
|
@@ -138,8 +138,8 @@ export class ColorPickerView extends View {
|
|
138
138
|
// In FF, after selecting the color via slider, it instantly moves back to the previous color.
|
139
139
|
// In all iOS browsers and desktop Safari, once the saturation slider is moved for the first time,
|
140
140
|
// editor collapses the selection and doesn't apply the color change.
|
141
|
-
// See: https://github.com/
|
142
|
-
// https://github.com/
|
141
|
+
// See: https://github.com/ckeditor/ckeditor5-internal/issues/3245, https://github.com/ckeditor/ckeditor5/issues/14119,
|
142
|
+
// https://github.com/ckeditor/ckeditor5-internal/issues/3268.
|
143
143
|
/* istanbul ignore next -- @preserve */
|
144
144
|
if (!this._config.hideInput && (env.isGecko || env.isiOS || env.isSafari || env.isBlink)) {
|
145
145
|
const input = this.hexInputRow.children.get(1);
|