@ckeditor/ckeditor5-link 0.0.0-nightly-20240519.0 → 0.0.0-nightly-20240521.0

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": "@ckeditor/ckeditor5-link",
3
- "version": "0.0.0-nightly-20240519.0",
3
+ "version": "0.0.0-nightly-20240521.0",
4
4
  "description": "Link feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,8 +13,8 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20240519.0",
17
- "ckeditor5": "0.0.0-nightly-20240519.0",
16
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20240521.0",
17
+ "ckeditor5": "0.0.0-nightly-20240521.0",
18
18
  "lodash-es": "4.17.21"
19
19
  },
20
20
  "author": "CKSource (http://cksource.com/)",
@@ -159,6 +159,7 @@ export default class LinkFormView extends View {
159
159
  _createUrlInput() {
160
160
  const t = this.locale.t;
161
161
  const labeledInput = new LabeledFieldView(this.locale, createLabeledInputText);
162
+ labeledInput.fieldView.inputMode = 'url';
162
163
  labeledInput.label = t('Link URL');
163
164
  return labeledInput;
164
165
  }