@progress/kendo-vue-grid 2.8.0-dev.202201111325 → 3.0.0-dev.202201161025

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.
@@ -229,7 +229,7 @@ var GridEditCellVue2 = {
229
229
  type: "checkbox"
230
230
  },
231
231
  type: "checkbox",
232
- "class": "k-checkbox",
232
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
233
233
  onChange: this.changeHandler,
234
234
  on: this.v3 ? undefined : {
235
235
  "change": this.changeHandler
@@ -268,11 +268,13 @@ var GridEditCellVue2 = {
268
268
  tabIndex: navAttrs.tabIndex,
269
269
  "data-keyboardnavlevel": navAttrs[KEYBOARD_NAV_DATA_LEVEL],
270
270
  "data-keyboardnavid": navAttrs[KEYBOARD_NAV_DATA_ID]
271
+ }, [h("span", {
272
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
271
273
  }, [h("input", {
272
274
  style: {
273
275
  width: '100%'
274
276
  },
275
- "class": "k-input",
277
+ "class": "k-input-inner",
276
278
  value: this.v3 ? data !== null && data !== void 0 ? data : '' : null,
277
279
  domProps: this.v3 ? undefined : {
278
280
  "value": data !== null && data !== void 0 ? data : ''
@@ -281,7 +283,7 @@ var GridEditCellVue2 = {
281
283
  on: this.v3 ? undefined : {
282
284
  "change": this.changeHandler
283
285
  }
284
- })]);
286
+ })])]);
285
287
  }
286
288
 
287
289
  return getTemplate.call(this, {
@@ -190,8 +190,10 @@ var GridFilterCellVue2 = {
190
190
  );
191
191
 
192
192
  default:
193
- return h("input", {
194
- "class": "k-textbox k-input",
193
+ return h("span", {
194
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
195
+ }, [h("input", {
196
+ "class": "k-input-inner",
195
197
  value: this.v3 ? value || '' : null,
196
198
  domProps: this.v3 ? undefined : {
197
199
  "value": value || ''
@@ -208,7 +210,7 @@ var GridFilterCellVue2 = {
208
210
  attrs: this.v3 ? undefined : {
209
211
  title: this.$props.title
210
212
  }
211
- });
213
+ })]);
212
214
  }
213
215
  };
214
216
 
@@ -105,7 +105,7 @@ var GridSelectionCellVue2 = {
105
105
  type: "checkbox"
106
106
  },
107
107
  type: "checkbox",
108
- "class": "k-checkbox",
108
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
109
109
  onChange: this.handleOnChange,
110
110
  on: this.v3 ? undefined : {
111
111
  "change": this.handleOnChange
@@ -168,7 +168,8 @@ var ColumnMenuVue2 = {
168
168
  },
169
169
  onFocusin: _this2.focus,
170
170
  style: {
171
- outline: 'none'
171
+ outline: 'none',
172
+ width: '230px'
172
173
  }
173
174
  }, [// @ts-ignore
174
175
  h(ColumnMenuContent, {
@@ -213,7 +214,8 @@ var ColumnMenuVue2 = {
213
214
  },
214
215
  onFocusin: _this2.focus,
215
216
  style: {
216
- outline: 'none'
217
+ outline: 'none',
218
+ width: '230px'
217
219
  }
218
220
  }, [h(ColumnMenuContent, {
219
221
  column: _this2.$props.column,
@@ -163,13 +163,15 @@ var GridColumnMenuCheckboxFilterVue2 = {
163
163
  var searchBox = function searchBox() {
164
164
  return this.$props.searchBox && h("span", {
165
165
  "class": "k-list-filter"
166
+ }, [h("span", {
167
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
166
168
  }, [h("input", {
167
169
  ref: 'searchBox',
168
170
  placeholder: localizationService.toLanguageString(searchPlaceholder, messages[searchPlaceholder]),
169
171
  attrs: this.v3 ? undefined : {
170
172
  placeholder: localizationService.toLanguageString(searchPlaceholder, messages[searchPlaceholder])
171
173
  },
172
- "class": "k-input",
174
+ "class": "k-input-inner",
173
175
  value: this.v3 ? this.currentValue : null,
174
176
  domProps: this.v3 ? undefined : {
175
177
  "value": this.currentValue
@@ -178,7 +180,7 @@ var GridColumnMenuCheckboxFilterVue2 = {
178
180
  on: this.v3 ? undefined : {
179
181
  "input": this.handleSearchChange
180
182
  }
181
- }), h("span", {
183
+ })]), h("span", {
182
184
  "class": "k-icon k-i-search"
183
185
  })]);
184
186
  };
@@ -128,8 +128,10 @@ var GridColumnMenuFilterCellVue2 = {
128
128
  );
129
129
 
130
130
  default:
131
- return h("input", {
132
- "class": "k-input",
131
+ return h("span", {
132
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
133
+ }, [h("input", {
134
+ "class": "k-input-inner",
133
135
  value: this.v3 ? value || '' : null,
134
136
  domProps: this.v3 ? undefined : {
135
137
  "value": value || ''
@@ -142,7 +144,7 @@ var GridColumnMenuFilterCellVue2 = {
142
144
  _this.inputChange(e.target.value, e);
143
145
  }
144
146
  }
145
- });
147
+ })]);
146
148
  }
147
149
  };
148
150
 
@@ -48,7 +48,7 @@ var GridHeaderSelectionCellVue2 = {
48
48
  type: "checkbox"
49
49
  },
50
50
  type: "checkbox",
51
- "class": "k-checkbox",
51
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
52
52
  onChange: this.changeHandle,
53
53
  on: this.v3 ? undefined : {
54
54
  "change": this.changeHandle
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-grid',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1641907198,
8
+ publishDate: 1642328390,
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
  };
@@ -242,7 +242,7 @@ var GridEditCellVue2 = {
242
242
  type: "checkbox"
243
243
  },
244
244
  type: "checkbox",
245
- "class": "k-checkbox",
245
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
246
246
  onChange: this.changeHandler,
247
247
  on: this.v3 ? undefined : {
248
248
  "change": this.changeHandler
@@ -281,11 +281,13 @@ var GridEditCellVue2 = {
281
281
  tabIndex: navAttrs.tabIndex,
282
282
  "data-keyboardnavlevel": navAttrs[kendo_vue_data_tools_1.KEYBOARD_NAV_DATA_LEVEL],
283
283
  "data-keyboardnavid": navAttrs[kendo_vue_data_tools_1.KEYBOARD_NAV_DATA_ID]
284
+ }, [h("span", {
285
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
284
286
  }, [h("input", {
285
287
  style: {
286
288
  width: '100%'
287
289
  },
288
- "class": "k-input",
290
+ "class": "k-input-inner",
289
291
  value: this.v3 ? data !== null && data !== void 0 ? data : '' : null,
290
292
  domProps: this.v3 ? undefined : {
291
293
  "value": data !== null && data !== void 0 ? data : ''
@@ -294,7 +296,7 @@ var GridEditCellVue2 = {
294
296
  on: this.v3 ? undefined : {
295
297
  "change": this.changeHandler
296
298
  }
297
- })]);
299
+ })])]);
298
300
  }
299
301
 
300
302
  return kendo_vue_common_1.getTemplate.call(this, {
@@ -206,8 +206,10 @@ var GridFilterCellVue2 = {
206
206
  );
207
207
 
208
208
  default:
209
- return h("input", {
210
- "class": "k-textbox k-input",
209
+ return h("span", {
210
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
211
+ }, [h("input", {
212
+ "class": "k-input-inner",
211
213
  value: this.v3 ? value || '' : null,
212
214
  domProps: this.v3 ? undefined : {
213
215
  "value": value || ''
@@ -224,7 +226,7 @@ var GridFilterCellVue2 = {
224
226
  attrs: this.v3 ? undefined : {
225
227
  title: this.$props.title
226
228
  }
227
- });
229
+ })]);
228
230
  }
229
231
  };
230
232
 
@@ -116,7 +116,7 @@ var GridSelectionCellVue2 = {
116
116
  type: "checkbox"
117
117
  },
118
118
  type: "checkbox",
119
- "class": "k-checkbox",
119
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
120
120
  onChange: this.handleOnChange,
121
121
  on: this.v3 ? undefined : {
122
122
  "change": this.handleOnChange
@@ -182,7 +182,8 @@ var ColumnMenuVue2 = {
182
182
  },
183
183
  onFocusin: _this2.focus,
184
184
  style: {
185
- outline: 'none'
185
+ outline: 'none',
186
+ width: '230px'
186
187
  }
187
188
  }, [// @ts-ignore
188
189
  h(ColumnMenuContent_1.ColumnMenuContent, {
@@ -227,7 +228,8 @@ var ColumnMenuVue2 = {
227
228
  },
228
229
  onFocusin: _this2.focus,
229
230
  style: {
230
- outline: 'none'
231
+ outline: 'none',
232
+ width: '230px'
231
233
  }
232
234
  }, [h(ColumnMenuContent_1.ColumnMenuContent, {
233
235
  column: _this2.$props.column,
@@ -181,13 +181,15 @@ var GridColumnMenuCheckboxFilterVue2 = {
181
181
  var searchBox = function searchBox() {
182
182
  return this.$props.searchBox && h("span", {
183
183
  "class": "k-list-filter"
184
+ }, [h("span", {
185
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
184
186
  }, [h("input", {
185
187
  ref: 'searchBox',
186
188
  placeholder: localizationService.toLanguageString(messages_1.searchPlaceholder, messages_1.messages[messages_1.searchPlaceholder]),
187
189
  attrs: this.v3 ? undefined : {
188
190
  placeholder: localizationService.toLanguageString(messages_1.searchPlaceholder, messages_1.messages[messages_1.searchPlaceholder])
189
191
  },
190
- "class": "k-input",
192
+ "class": "k-input-inner",
191
193
  value: this.v3 ? this.currentValue : null,
192
194
  domProps: this.v3 ? undefined : {
193
195
  "value": this.currentValue
@@ -196,7 +198,7 @@ var GridColumnMenuCheckboxFilterVue2 = {
196
198
  on: this.v3 ? undefined : {
197
199
  "input": this.handleSearchChange
198
200
  }
199
- }), h("span", {
201
+ })]), h("span", {
200
202
  "class": "k-icon k-i-search"
201
203
  })]);
202
204
  };
@@ -140,8 +140,10 @@ var GridColumnMenuFilterCellVue2 = {
140
140
  );
141
141
 
142
142
  default:
143
- return h("input", {
144
- "class": "k-input",
143
+ return h("span", {
144
+ "class": "k-textbox k-input k-input-md k-rounded-md k-input-solid"
145
+ }, [h("input", {
146
+ "class": "k-input-inner",
145
147
  value: this.v3 ? value || '' : null,
146
148
  domProps: this.v3 ? undefined : {
147
149
  "value": value || ''
@@ -154,7 +156,7 @@ var GridColumnMenuFilterCellVue2 = {
154
156
  _this.inputChange(e.target.value, e);
155
157
  }
156
158
  }
157
- });
159
+ })]);
158
160
  }
159
161
  };
160
162
 
@@ -57,7 +57,7 @@ var GridHeaderSelectionCellVue2 = {
57
57
  type: "checkbox"
58
58
  },
59
59
  type: "checkbox",
60
- "class": "k-checkbox",
60
+ "class": "k-checkbox k-checkbox-md k-rounded-md",
61
61
  onChange: this.changeHandle,
62
62
  on: this.v3 ? undefined : {
63
63
  "change": this.changeHandle
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-grid',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1641907198,
11
+ publishDate: 1642328390,
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-grid",
3
- "version": "2.8.0-dev.202201111325",
3
+ "version": "3.0.0-dev.202201161025",
4
4
  "description": "Kendo UI for Vue Grid package",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,6 @@
12
12
  "jsnext:main": "dist/es/main.js",
13
13
  "scripts": {
14
14
  "test": "cd ../../ && npm run test -- --testPathPattern=/packages/grid/.*",
15
- "e2e": "cd ../../ && npx jest --config jest.config.e2e.js packages/grid/e2e",
16
15
  "start": "gulp start",
17
16
  "build-package": "gulp build-package"
18
17
  },
@@ -35,23 +34,23 @@
35
34
  "vue": "^2.6.12 || ^3.0.2"
36
35
  },
37
36
  "dependencies": {
38
- "@progress/kendo-vue-common": "2.8.0-dev.202201111325"
37
+ "@progress/kendo-vue-common": "3.0.0-dev.202201161025"
39
38
  },
40
39
  "devDependencies": {
41
40
  "@progress/kendo-data-query": "^1.5.4",
42
41
  "@progress/kendo-drawing": "^1.9.3",
43
42
  "@progress/kendo-licensing": "^1.1.0",
44
- "@progress/kendo-vue-animation": "2.8.0-dev.202201111325",
45
- "@progress/kendo-vue-buttons": "2.8.0-dev.202201111325",
46
- "@progress/kendo-vue-charts": "2.8.0-dev.202201111325",
47
- "@progress/kendo-vue-data-tools": "2.8.0-dev.202201111325",
48
- "@progress/kendo-vue-dateinputs": "2.8.0-dev.202201111325",
49
- "@progress/kendo-vue-dropdowns": "2.8.0-dev.202201111325",
50
- "@progress/kendo-vue-excel-export": "2.8.0-dev.202201111325",
51
- "@progress/kendo-vue-inputs": "2.8.0-dev.202201111325",
52
- "@progress/kendo-vue-intl": "2.8.0-dev.202201111325",
53
- "@progress/kendo-vue-pdf": "2.8.0-dev.202201111325",
54
- "@progress/kendo-vue-popup": "2.8.0-dev.202201111325",
43
+ "@progress/kendo-vue-animation": "3.0.0-dev.202201161025",
44
+ "@progress/kendo-vue-buttons": "3.0.0-dev.202201161025",
45
+ "@progress/kendo-vue-charts": "3.0.0-dev.202201161025",
46
+ "@progress/kendo-vue-data-tools": "3.0.0-dev.202201161025",
47
+ "@progress/kendo-vue-dateinputs": "3.0.0-dev.202201161025",
48
+ "@progress/kendo-vue-dropdowns": "3.0.0-dev.202201161025",
49
+ "@progress/kendo-vue-excel-export": "3.0.0-dev.202201161025",
50
+ "@progress/kendo-vue-inputs": "3.0.0-dev.202201161025",
51
+ "@progress/kendo-vue-intl": "3.0.0-dev.202201161025",
52
+ "@progress/kendo-vue-pdf": "3.0.0-dev.202201161025",
53
+ "@progress/kendo-vue-popup": "3.0.0-dev.202201161025",
55
54
  "cldr-core": "^34.0.0",
56
55
  "cldr-dates-full": "^34.0.0",
57
56
  "cldr-numbers-full": "^34.0.0",