@progress/kendo-vue-editor 2.8.0-dev.202201111325 → 2.8.0-dev.202201121019

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.
@@ -138,7 +138,7 @@ var FindAndReplaceDialogVue2 = {
138
138
  var checkboxes = h("div", {
139
139
  "class": "k-search-options"
140
140
  }, [h("span", [h("input", {
141
- "class": "k-checkbox",
141
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
142
142
  type: "checkbox",
143
143
  attrs: this.v3 ? undefined : {
144
144
  type: "checkbox",
@@ -160,7 +160,7 @@ var FindAndReplaceDialogVue2 = {
160
160
  },
161
161
  "class": "k-checkbox-label"
162
162
  }, [localization.toLanguageString(findReplaceMatchCase, messages[findReplaceMatchCase])])]), h("span", [h("input", {
163
- "class": "k-checkbox",
163
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
164
164
  type: "checkbox",
165
165
  attrs: this.v3 ? undefined : {
166
166
  type: "checkbox",
@@ -182,7 +182,7 @@ var FindAndReplaceDialogVue2 = {
182
182
  },
183
183
  "class": "k-checkbox-label"
184
184
  }, [localization.toLanguageString(findReplaceMatchWord, messages[findReplaceMatchWord])])]), h("span", [h("input", {
185
- "class": "k-checkbox",
185
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
186
186
  type: "checkbox",
187
187
  attrs: this.v3 ? undefined : {
188
188
  type: "checkbox",
@@ -204,7 +204,7 @@ var FindAndReplaceDialogVue2 = {
204
204
  },
205
205
  "class": "k-checkbox-label"
206
206
  }, [localization.toLanguageString(findReplaceMatchCyclic, messages[findReplaceMatchCyclic])])]), h("span", [h("input", {
207
- "class": "k-checkbox",
207
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
208
208
  type: "checkbox",
209
209
  attrs: this.v3 ? undefined : {
210
210
  type: "checkbox",
@@ -275,6 +275,8 @@ var FindAndReplaceDialogVue2 = {
275
275
  }, [localization.toLanguageString(findReplaceFindWhat, messages[findReplaceFindWhat])])]);
276
276
  var findWhat = h("div", {
277
277
  "class": "k-edit-field"
278
+ }, [h("span", {
279
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
278
280
  }, [h("input", {
279
281
  id: "findWhat",
280
282
  attrs: this.v3 ? undefined : {
@@ -283,7 +285,7 @@ var FindAndReplaceDialogVue2 = {
283
285
  autoFocus: true
284
286
  },
285
287
  type: "text",
286
- "class": "k-input",
288
+ "class": "k-input-inner",
287
289
  value: this.v3 ? searchText : null,
288
290
  domProps: this.v3 ? undefined : {
289
291
  "value": searchText
@@ -297,7 +299,7 @@ var FindAndReplaceDialogVue2 = {
297
299
  onFocus: this.onSearchChange,
298
300
  onKeydown: this.onKeyDown,
299
301
  autoFocus: true
300
- })]);
302
+ })])]);
301
303
  var replaceWithLabel = h("div", {
302
304
  "class": "k-edit-label"
303
305
  }, [h("label", {
@@ -308,13 +310,15 @@ var FindAndReplaceDialogVue2 = {
308
310
  }, [localization.toLanguageString(findReplaceReplaceWith, messages[findReplaceReplaceWith])])]);
309
311
  var replaceWith = h("div", {
310
312
  "class": "k-edit-field"
313
+ }, [h("span", {
314
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
311
315
  }, [h("input", {
312
316
  id: "replaceWith",
313
317
  attrs: this.v3 ? undefined : {
314
318
  id: "replaceWith",
315
319
  type: "text"
316
320
  },
317
- "class": "k-input",
321
+ "class": "k-input-inner",
318
322
  type: "text",
319
323
  value: this.v3 ? replaceText : null,
320
324
  domProps: this.v3 ? undefined : {
@@ -324,7 +328,7 @@ var FindAndReplaceDialogVue2 = {
324
328
  on: this.v3 ? undefined : {
325
329
  "input": this.onReplaceChange
326
330
  }
327
- })]);
331
+ })])]);
328
332
  return (// @ts-ignore function children
329
333
  h(Window, {
330
334
  title: localization.toLanguageString(findReplaceDialogTitle, messages[findReplaceDialogTitle]),
@@ -73,6 +73,8 @@ var InsertImageDialogVue2 = {
73
73
  }
74
74
  }, [localization.toLanguageString(insertImageAddress, messages[insertImageAddress])])]), h("div", {
75
75
  "class": "k-edit-field"
76
+ }, [h("span", {
77
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
76
78
  }, [h("input", {
77
79
  type: "text",
78
80
  attrs: this.v3 ? undefined : {
@@ -80,7 +82,7 @@ var InsertImageDialogVue2 = {
80
82
  id: "k-editor-image-url",
81
83
  autoFocus: true
82
84
  },
83
- "class": "k-input",
85
+ "class": "k-input-inner",
84
86
  id: "k-editor-image-url",
85
87
  value: this.v3 ? attrs.src : null,
86
88
  domProps: this.v3 ? undefined : {
@@ -90,7 +92,7 @@ var InsertImageDialogVue2 = {
90
92
  _this.srcRef = el;
91
93
  } : 'src',
92
94
  autoFocus: true
93
- })]), h("div", {
95
+ })])]), h("div", {
94
96
  "class": "k-edit-label"
95
97
  }, [h("label", {
96
98
  "for": "k-editor-image-alt",
@@ -99,13 +101,15 @@ var InsertImageDialogVue2 = {
99
101
  }
100
102
  }, [localization.toLanguageString(insertImageAltText, messages[insertImageAltText])])]), h("div", {
101
103
  "class": "k-edit-field"
104
+ }, [h("span", {
105
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
102
106
  }, [h("input", {
103
107
  type: "text",
104
108
  attrs: this.v3 ? undefined : {
105
109
  type: "text",
106
110
  id: "k-editor-image-alt"
107
111
  },
108
- "class": "k-input",
112
+ "class": "k-input-inner",
109
113
  id: "k-editor-image-alt",
110
114
  value: this.v3 ? attrs.alt : null,
111
115
  domProps: this.v3 ? undefined : {
@@ -114,7 +118,7 @@ var InsertImageDialogVue2 = {
114
118
  ref: this.v3 ? function (el) {
115
119
  _this.altTextRef = el;
116
120
  } : 'altText'
117
- })]), h("div", {
121
+ })])]), h("div", {
118
122
  "class": "k-edit-label"
119
123
  }, [h("label", {
120
124
  "for": "k-editor-image-title",
@@ -123,13 +127,15 @@ var InsertImageDialogVue2 = {
123
127
  }
124
128
  }, [localization.toLanguageString(insertImageTitle, messages[insertImageTitle])])]), h("div", {
125
129
  "class": "k-edit-field"
130
+ }, [h("span", {
131
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
126
132
  }, [h("input", {
127
133
  type: "text",
128
134
  attrs: this.v3 ? undefined : {
129
135
  type: "text",
130
136
  id: "k-editor-image-title"
131
137
  },
132
- "class": "k-input",
138
+ "class": "k-input-inner",
133
139
  id: "k-editor-image-title",
134
140
  value: this.v3 ? attrs.title : null,
135
141
  domProps: this.v3 ? undefined : {
@@ -138,7 +144,7 @@ var InsertImageDialogVue2 = {
138
144
  ref: this.v3 ? function (el) {
139
145
  _this.titleRef = el;
140
146
  } : 'title'
141
- })]), h("div", {
147
+ })])]), h("div", {
142
148
  "class": "k-edit-label"
143
149
  }, [h("label", {
144
150
  "for": "k-editor-image-width",
@@ -147,13 +153,15 @@ var InsertImageDialogVue2 = {
147
153
  }
148
154
  }, [localization.toLanguageString(insertImageWidth, messages[insertImageWidth])])]), h("div", {
149
155
  "class": "k-edit-field"
156
+ }, [h("span", {
157
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
150
158
  }, [h("input", {
151
159
  type: "text",
152
160
  attrs: this.v3 ? undefined : {
153
161
  type: "text",
154
162
  id: "k-editor-image-width"
155
163
  },
156
- "class": "k-input",
164
+ "class": "k-input-inner",
157
165
  id: "k-editor-image-width",
158
166
  value: this.v3 ? attrs.width : null,
159
167
  domProps: this.v3 ? undefined : {
@@ -162,7 +170,7 @@ var InsertImageDialogVue2 = {
162
170
  ref: this.v3 ? function (el) {
163
171
  _this.widthRef = el;
164
172
  } : 'width'
165
- })]), h("div", {
173
+ })])]), h("div", {
166
174
  "class": "k-edit-label"
167
175
  }, [h("label", {
168
176
  "for": "k-editor-image-height",
@@ -171,13 +179,15 @@ var InsertImageDialogVue2 = {
171
179
  }
172
180
  }, [localization.toLanguageString(insertImageHeight, messages[insertImageHeight])])]), h("div", {
173
181
  "class": "k-edit-field"
182
+ }, [h("span", {
183
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
174
184
  }, [h("input", {
175
185
  type: "text",
176
186
  attrs: this.v3 ? undefined : {
177
187
  type: "text",
178
188
  id: "k-editor-image-height"
179
189
  },
180
- "class": "k-input",
190
+ "class": "k-input-inner",
181
191
  id: "k-editor-image-height",
182
192
  value: this.v3 ? attrs.height : null,
183
193
  domProps: this.v3 ? undefined : {
@@ -186,7 +196,7 @@ var InsertImageDialogVue2 = {
186
196
  ref: this.v3 ? function (el) {
187
197
  _this.heightRef = el;
188
198
  } : 'height'
189
- })])]);
199
+ })])])]);
190
200
  var actionButtons = [// @ts-ignore function children
191
201
  h(KButton, {
192
202
  onClick: this.onClose,
@@ -63,6 +63,8 @@ var InsertLinkDialogVue2 = {
63
63
  }
64
64
  }, [localization.toLanguageString(insertHyperlinkAddress, messages[insertHyperlinkAddress])])]), h("div", {
65
65
  "class": "k-edit-field"
66
+ }, [h("span", {
67
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
66
68
  }, [h("input", {
67
69
  type: "text",
68
70
  attrs: this.v3 ? undefined : {
@@ -70,7 +72,7 @@ var InsertLinkDialogVue2 = {
70
72
  id: "k-editor-link-url",
71
73
  autoFocus: true
72
74
  },
73
- "class": "k-input",
75
+ "class": "k-input-inner",
74
76
  ref: this.v3 ? function (el) {
75
77
  _this.hrefRef = el;
76
78
  } : 'href',
@@ -80,7 +82,7 @@ var InsertLinkDialogVue2 = {
80
82
  "value": linkMark && linkMark.attrs.href || undefined
81
83
  },
82
84
  autoFocus: true
83
- })]), h("div", {
85
+ })])]), h("div", {
84
86
  "class": "k-edit-label k-editor-link-text-row"
85
87
  }, [h("label", {
86
88
  "for": "k-editor-link-text",
@@ -89,13 +91,15 @@ var InsertLinkDialogVue2 = {
89
91
  }
90
92
  }, [localization.toLanguageString(insertHyperlinkTitle, messages[insertHyperlinkTitle])])]), h("div", {
91
93
  "class": "k-edit-field k-editor-link-text-row"
94
+ }, [h("span", {
95
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
92
96
  }, [h("input", {
93
97
  type: "text",
94
98
  attrs: this.v3 ? undefined : {
95
99
  type: "text",
96
100
  id: "k-editor-link-text"
97
101
  },
98
- "class": "k-input",
102
+ "class": "k-input-inner",
99
103
  id: "k-editor-link-text",
100
104
  ref: this.v3 ? function (el) {
101
105
  _this.titleRef = el;
@@ -104,7 +108,7 @@ var InsertLinkDialogVue2 = {
104
108
  domProps: this.v3 ? undefined : {
105
109
  "value": linkMark && linkMark.attrs.title || undefined
106
110
  }
107
- })]), settings.linkTarget !== false && h("div", {
111
+ })])]), settings.linkTarget !== false && h("div", {
108
112
  "class": "k-edit-field"
109
113
  }, [h("input", {
110
114
  type: "checkbox",
@@ -112,7 +116,7 @@ var InsertLinkDialogVue2 = {
112
116
  type: "checkbox",
113
117
  id: "k-editor-link-target"
114
118
  },
115
- "class": "k-checkbox",
119
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
116
120
  id: "k-editor-link-target",
117
121
  ref: this.v3 ? function (el) {
118
122
  _this.targetRef = el;
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-editor',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1641906930,
8
+ publishDate: 1641982194,
9
9
  version: '',
10
10
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
11
11
  };
@@ -154,7 +154,7 @@ var FindAndReplaceDialogVue2 = {
154
154
  var checkboxes = h("div", {
155
155
  "class": "k-search-options"
156
156
  }, [h("span", [h("input", {
157
- "class": "k-checkbox",
157
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
158
158
  type: "checkbox",
159
159
  attrs: this.v3 ? undefined : {
160
160
  type: "checkbox",
@@ -176,7 +176,7 @@ var FindAndReplaceDialogVue2 = {
176
176
  },
177
177
  "class": "k-checkbox-label"
178
178
  }, [localization.toLanguageString(findReplaceMatchCase, messages_1.messages[findReplaceMatchCase])])]), h("span", [h("input", {
179
- "class": "k-checkbox",
179
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
180
180
  type: "checkbox",
181
181
  attrs: this.v3 ? undefined : {
182
182
  type: "checkbox",
@@ -198,7 +198,7 @@ var FindAndReplaceDialogVue2 = {
198
198
  },
199
199
  "class": "k-checkbox-label"
200
200
  }, [localization.toLanguageString(findReplaceMatchWord, messages_1.messages[findReplaceMatchWord])])]), h("span", [h("input", {
201
- "class": "k-checkbox",
201
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
202
202
  type: "checkbox",
203
203
  attrs: this.v3 ? undefined : {
204
204
  type: "checkbox",
@@ -220,7 +220,7 @@ var FindAndReplaceDialogVue2 = {
220
220
  },
221
221
  "class": "k-checkbox-label"
222
222
  }, [localization.toLanguageString(findReplaceMatchCyclic, messages_1.messages[findReplaceMatchCyclic])])]), h("span", [h("input", {
223
- "class": "k-checkbox",
223
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
224
224
  type: "checkbox",
225
225
  attrs: this.v3 ? undefined : {
226
226
  type: "checkbox",
@@ -291,6 +291,8 @@ var FindAndReplaceDialogVue2 = {
291
291
  }, [localization.toLanguageString(findReplaceFindWhat, messages_1.messages[findReplaceFindWhat])])]);
292
292
  var findWhat = h("div", {
293
293
  "class": "k-edit-field"
294
+ }, [h("span", {
295
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
294
296
  }, [h("input", {
295
297
  id: "findWhat",
296
298
  attrs: this.v3 ? undefined : {
@@ -299,7 +301,7 @@ var FindAndReplaceDialogVue2 = {
299
301
  autoFocus: true
300
302
  },
301
303
  type: "text",
302
- "class": "k-input",
304
+ "class": "k-input-inner",
303
305
  value: this.v3 ? searchText : null,
304
306
  domProps: this.v3 ? undefined : {
305
307
  "value": searchText
@@ -313,7 +315,7 @@ var FindAndReplaceDialogVue2 = {
313
315
  onFocus: this.onSearchChange,
314
316
  onKeydown: this.onKeyDown,
315
317
  autoFocus: true
316
- })]);
318
+ })])]);
317
319
  var replaceWithLabel = h("div", {
318
320
  "class": "k-edit-label"
319
321
  }, [h("label", {
@@ -324,13 +326,15 @@ var FindAndReplaceDialogVue2 = {
324
326
  }, [localization.toLanguageString(findReplaceReplaceWith, messages_1.messages[findReplaceReplaceWith])])]);
325
327
  var replaceWith = h("div", {
326
328
  "class": "k-edit-field"
329
+ }, [h("span", {
330
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
327
331
  }, [h("input", {
328
332
  id: "replaceWith",
329
333
  attrs: this.v3 ? undefined : {
330
334
  id: "replaceWith",
331
335
  type: "text"
332
336
  },
333
- "class": "k-input",
337
+ "class": "k-input-inner",
334
338
  type: "text",
335
339
  value: this.v3 ? replaceText : null,
336
340
  domProps: this.v3 ? undefined : {
@@ -340,7 +344,7 @@ var FindAndReplaceDialogVue2 = {
340
344
  on: this.v3 ? undefined : {
341
345
  "input": this.onReplaceChange
342
346
  }
343
- })]);
347
+ })])]);
344
348
  return (// @ts-ignore function children
345
349
  h(kendo_vue_dialogs_1.Window, {
346
350
  title: localization.toLanguageString(findReplaceDialogTitle, messages_1.messages[findReplaceDialogTitle]),
@@ -86,6 +86,8 @@ var InsertImageDialogVue2 = {
86
86
  }
87
87
  }, [localization.toLanguageString(insertImageAddress, messages_1.messages[insertImageAddress])])]), h("div", {
88
88
  "class": "k-edit-field"
89
+ }, [h("span", {
90
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
89
91
  }, [h("input", {
90
92
  type: "text",
91
93
  attrs: this.v3 ? undefined : {
@@ -93,7 +95,7 @@ var InsertImageDialogVue2 = {
93
95
  id: "k-editor-image-url",
94
96
  autoFocus: true
95
97
  },
96
- "class": "k-input",
98
+ "class": "k-input-inner",
97
99
  id: "k-editor-image-url",
98
100
  value: this.v3 ? attrs.src : null,
99
101
  domProps: this.v3 ? undefined : {
@@ -103,7 +105,7 @@ var InsertImageDialogVue2 = {
103
105
  _this.srcRef = el;
104
106
  } : 'src',
105
107
  autoFocus: true
106
- })]), h("div", {
108
+ })])]), h("div", {
107
109
  "class": "k-edit-label"
108
110
  }, [h("label", {
109
111
  "for": "k-editor-image-alt",
@@ -112,13 +114,15 @@ var InsertImageDialogVue2 = {
112
114
  }
113
115
  }, [localization.toLanguageString(insertImageAltText, messages_1.messages[insertImageAltText])])]), h("div", {
114
116
  "class": "k-edit-field"
117
+ }, [h("span", {
118
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
115
119
  }, [h("input", {
116
120
  type: "text",
117
121
  attrs: this.v3 ? undefined : {
118
122
  type: "text",
119
123
  id: "k-editor-image-alt"
120
124
  },
121
- "class": "k-input",
125
+ "class": "k-input-inner",
122
126
  id: "k-editor-image-alt",
123
127
  value: this.v3 ? attrs.alt : null,
124
128
  domProps: this.v3 ? undefined : {
@@ -127,7 +131,7 @@ var InsertImageDialogVue2 = {
127
131
  ref: this.v3 ? function (el) {
128
132
  _this.altTextRef = el;
129
133
  } : 'altText'
130
- })]), h("div", {
134
+ })])]), h("div", {
131
135
  "class": "k-edit-label"
132
136
  }, [h("label", {
133
137
  "for": "k-editor-image-title",
@@ -136,13 +140,15 @@ var InsertImageDialogVue2 = {
136
140
  }
137
141
  }, [localization.toLanguageString(insertImageTitle, messages_1.messages[insertImageTitle])])]), h("div", {
138
142
  "class": "k-edit-field"
143
+ }, [h("span", {
144
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
139
145
  }, [h("input", {
140
146
  type: "text",
141
147
  attrs: this.v3 ? undefined : {
142
148
  type: "text",
143
149
  id: "k-editor-image-title"
144
150
  },
145
- "class": "k-input",
151
+ "class": "k-input-inner",
146
152
  id: "k-editor-image-title",
147
153
  value: this.v3 ? attrs.title : null,
148
154
  domProps: this.v3 ? undefined : {
@@ -151,7 +157,7 @@ var InsertImageDialogVue2 = {
151
157
  ref: this.v3 ? function (el) {
152
158
  _this.titleRef = el;
153
159
  } : 'title'
154
- })]), h("div", {
160
+ })])]), h("div", {
155
161
  "class": "k-edit-label"
156
162
  }, [h("label", {
157
163
  "for": "k-editor-image-width",
@@ -160,13 +166,15 @@ var InsertImageDialogVue2 = {
160
166
  }
161
167
  }, [localization.toLanguageString(insertImageWidth, messages_1.messages[insertImageWidth])])]), h("div", {
162
168
  "class": "k-edit-field"
169
+ }, [h("span", {
170
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
163
171
  }, [h("input", {
164
172
  type: "text",
165
173
  attrs: this.v3 ? undefined : {
166
174
  type: "text",
167
175
  id: "k-editor-image-width"
168
176
  },
169
- "class": "k-input",
177
+ "class": "k-input-inner",
170
178
  id: "k-editor-image-width",
171
179
  value: this.v3 ? attrs.width : null,
172
180
  domProps: this.v3 ? undefined : {
@@ -175,7 +183,7 @@ var InsertImageDialogVue2 = {
175
183
  ref: this.v3 ? function (el) {
176
184
  _this.widthRef = el;
177
185
  } : 'width'
178
- })]), h("div", {
186
+ })])]), h("div", {
179
187
  "class": "k-edit-label"
180
188
  }, [h("label", {
181
189
  "for": "k-editor-image-height",
@@ -184,13 +192,15 @@ var InsertImageDialogVue2 = {
184
192
  }
185
193
  }, [localization.toLanguageString(insertImageHeight, messages_1.messages[insertImageHeight])])]), h("div", {
186
194
  "class": "k-edit-field"
195
+ }, [h("span", {
196
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
187
197
  }, [h("input", {
188
198
  type: "text",
189
199
  attrs: this.v3 ? undefined : {
190
200
  type: "text",
191
201
  id: "k-editor-image-height"
192
202
  },
193
- "class": "k-input",
203
+ "class": "k-input-inner",
194
204
  id: "k-editor-image-height",
195
205
  value: this.v3 ? attrs.height : null,
196
206
  domProps: this.v3 ? undefined : {
@@ -199,7 +209,7 @@ var InsertImageDialogVue2 = {
199
209
  ref: this.v3 ? function (el) {
200
210
  _this.heightRef = el;
201
211
  } : 'height'
202
- })])]);
212
+ })])])]);
203
213
  var actionButtons = [// @ts-ignore function children
204
214
  h(kendo_vue_buttons_1.Button, {
205
215
  onClick: this.onClose,
@@ -76,6 +76,8 @@ var InsertLinkDialogVue2 = {
76
76
  }
77
77
  }, [localization.toLanguageString(insertHyperlinkAddress, messages_1.messages[insertHyperlinkAddress])])]), h("div", {
78
78
  "class": "k-edit-field"
79
+ }, [h("span", {
80
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
79
81
  }, [h("input", {
80
82
  type: "text",
81
83
  attrs: this.v3 ? undefined : {
@@ -83,7 +85,7 @@ var InsertLinkDialogVue2 = {
83
85
  id: "k-editor-link-url",
84
86
  autoFocus: true
85
87
  },
86
- "class": "k-input",
88
+ "class": "k-input-inner",
87
89
  ref: this.v3 ? function (el) {
88
90
  _this.hrefRef = el;
89
91
  } : 'href',
@@ -93,7 +95,7 @@ var InsertLinkDialogVue2 = {
93
95
  "value": linkMark && linkMark.attrs.href || undefined
94
96
  },
95
97
  autoFocus: true
96
- })]), h("div", {
98
+ })])]), h("div", {
97
99
  "class": "k-edit-label k-editor-link-text-row"
98
100
  }, [h("label", {
99
101
  "for": "k-editor-link-text",
@@ -102,13 +104,15 @@ var InsertLinkDialogVue2 = {
102
104
  }
103
105
  }, [localization.toLanguageString(insertHyperlinkTitle, messages_1.messages[insertHyperlinkTitle])])]), h("div", {
104
106
  "class": "k-edit-field k-editor-link-text-row"
107
+ }, [h("span", {
108
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
105
109
  }, [h("input", {
106
110
  type: "text",
107
111
  attrs: this.v3 ? undefined : {
108
112
  type: "text",
109
113
  id: "k-editor-link-text"
110
114
  },
111
- "class": "k-input",
115
+ "class": "k-input-inner",
112
116
  id: "k-editor-link-text",
113
117
  ref: this.v3 ? function (el) {
114
118
  _this.titleRef = el;
@@ -117,7 +121,7 @@ var InsertLinkDialogVue2 = {
117
121
  domProps: this.v3 ? undefined : {
118
122
  "value": linkMark && linkMark.attrs.title || undefined
119
123
  }
120
- })]), settings.linkTarget !== false && h("div", {
124
+ })])]), settings.linkTarget !== false && h("div", {
121
125
  "class": "k-edit-field"
122
126
  }, [h("input", {
123
127
  type: "checkbox",
@@ -125,7 +129,7 @@ var InsertLinkDialogVue2 = {
125
129
  type: "checkbox",
126
130
  id: "k-editor-link-target"
127
131
  },
128
- "class": "k-checkbox",
132
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
129
133
  id: "k-editor-link-target",
130
134
  ref: this.v3 ? function (el) {
131
135
  _this.targetRef = el;
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-editor',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1641906930,
11
+ publishDate: 1641982194,
12
12
  version: '',
13
13
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
14
14
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-editor",
3
3
  "description": "Kendo UI for Vue Editor package",
4
- "version": "2.8.0-dev.202201111325",
4
+ "version": "2.8.0-dev.202201121019",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -43,21 +43,21 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@progress/kendo-editor-common": "1.6.0",
46
- "@progress/kendo-vue-common": "2.8.0-dev.202201111325"
46
+ "@progress/kendo-vue-common": "2.8.0-dev.202201121019"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@progress/kendo-drawing": "^1.8.0",
50
50
  "@progress/kendo-licensing": "^1.0.1",
51
- "@progress/kendo-vue-buttons": "2.8.0-dev.202201111325",
52
- "@progress/kendo-vue-dialogs": "2.8.0-dev.202201111325",
53
- "@progress/kendo-vue-dropdowns": "2.8.0-dev.202201111325",
54
- "@progress/kendo-vue-form": "2.8.0-dev.202201111325",
55
- "@progress/kendo-vue-inputs": "2.8.0-dev.202201111325",
56
- "@progress/kendo-vue-intl": "2.8.0-dev.202201111325",
57
- "@progress/kendo-vue-layout": "2.8.0-dev.202201111325",
58
- "@progress/kendo-vue-pdf": "2.8.0-dev.202201111325",
59
- "@progress/kendo-vue-popup": "2.8.0-dev.202201111325",
60
- "@progress/kendo-vue-upload": "2.8.0-dev.202201111325"
51
+ "@progress/kendo-vue-buttons": "2.8.0-dev.202201121019",
52
+ "@progress/kendo-vue-dialogs": "2.8.0-dev.202201121019",
53
+ "@progress/kendo-vue-dropdowns": "2.8.0-dev.202201121019",
54
+ "@progress/kendo-vue-form": "2.8.0-dev.202201121019",
55
+ "@progress/kendo-vue-inputs": "2.8.0-dev.202201121019",
56
+ "@progress/kendo-vue-intl": "2.8.0-dev.202201121019",
57
+ "@progress/kendo-vue-layout": "2.8.0-dev.202201121019",
58
+ "@progress/kendo-vue-pdf": "2.8.0-dev.202201121019",
59
+ "@progress/kendo-vue-popup": "2.8.0-dev.202201121019",
60
+ "@progress/kendo-vue-upload": "2.8.0-dev.202201121019"
61
61
  },
62
62
  "@progress": {
63
63
  "friendlyName": "Editor",