@progress/kendo-vue-grid 3.6.5-dev.202210181442 → 3.7.0-dev.202210251512

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/es/Grid.js CHANGED
@@ -1594,9 +1594,9 @@ var GridVue2 = {
1594
1594
  return h("col", {
1595
1595
  key: index.toString(),
1596
1596
  "class": sorted(column.field) ? 'k-sorted' : undefined,
1597
- width: column.width !== undefined ? Math.floor(parseFloat(column.width.toString())) + 'px' : undefined,
1597
+ width: column.width !== undefined ? column.width.toString().indexOf('%') !== -1 ? column.width : Math.floor(parseFloat(column.width.toString())) + 'px' : undefined,
1598
1598
  attrs: this.v3 ? undefined : {
1599
- width: column.width !== undefined ? Math.floor(parseFloat(column.width.toString())) + 'px' : undefined
1599
+ width: column.width !== undefined ? column.width.toString().indexOf('%') !== -1 ? column.width : Math.floor(parseFloat(column.width.toString())) + 'px' : undefined
1600
1600
  }
1601
1601
  });
1602
1602
  }, this)]);
@@ -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: 1666103784,
8
+ publishDate: 1666710339,
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
  };
package/dist/esm/Grid.js CHANGED
@@ -1594,9 +1594,9 @@ var GridVue2 = {
1594
1594
  return h("col", {
1595
1595
  key: index.toString(),
1596
1596
  "class": sorted(column.field) ? 'k-sorted' : undefined,
1597
- width: column.width !== undefined ? Math.floor(parseFloat(column.width.toString())) + 'px' : undefined,
1597
+ width: column.width !== undefined ? column.width.toString().indexOf('%') !== -1 ? column.width : Math.floor(parseFloat(column.width.toString())) + 'px' : undefined,
1598
1598
  attrs: this.v3 ? undefined : {
1599
- width: column.width !== undefined ? Math.floor(parseFloat(column.width.toString())) + 'px' : undefined
1599
+ width: column.width !== undefined ? column.width.toString().indexOf('%') !== -1 ? column.width : Math.floor(parseFloat(column.width.toString())) + 'px' : undefined
1600
1600
  }
1601
1601
  });
1602
1602
  }, this)]);
@@ -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: 1666103784,
8
+ publishDate: 1666710339,
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
  };
package/dist/npm/Grid.js CHANGED
@@ -1600,9 +1600,9 @@ var GridVue2 = {
1600
1600
  return h("col", {
1601
1601
  key: index.toString(),
1602
1602
  "class": sorted(column.field) ? 'k-sorted' : undefined,
1603
- width: column.width !== undefined ? Math.floor(parseFloat(column.width.toString())) + 'px' : undefined,
1603
+ width: column.width !== undefined ? column.width.toString().indexOf('%') !== -1 ? column.width : Math.floor(parseFloat(column.width.toString())) + 'px' : undefined,
1604
1604
  attrs: this.v3 ? undefined : {
1605
- width: column.width !== undefined ? Math.floor(parseFloat(column.width.toString())) + 'px' : undefined
1605
+ width: column.width !== undefined ? column.width.toString().indexOf('%') !== -1 ? column.width : Math.floor(parseFloat(column.width.toString())) + 'px' : undefined
1606
1606
  }
1607
1607
  });
1608
1608
  }, this)]);
@@ -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: 1666103784,
11
+ publishDate: 1666710339,
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": "3.6.5-dev.202210181442",
3
+ "version": "3.7.0-dev.202210251512",
4
4
  "description": "Kendo UI for Vue Grid package",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,24 +41,24 @@
41
41
  "vue": "^2.6.12 || ^3.0.2"
42
42
  },
43
43
  "dependencies": {
44
- "@progress/kendo-vue-common": "3.6.5-dev.202210181442"
44
+ "@progress/kendo-vue-common": "3.7.0-dev.202210251512"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@progress/kendo-data-query": "^1.5.4",
48
48
  "@progress/kendo-drawing": "^1.9.3",
49
49
  "@progress/kendo-licensing": "^1.1.0",
50
- "@progress/kendo-vue-animation": "3.6.5-dev.202210181442",
51
- "@progress/kendo-vue-buttons": "3.6.5-dev.202210181442",
52
- "@progress/kendo-vue-charts": "3.6.5-dev.202210181442",
53
- "@progress/kendo-vue-data-tools": "3.6.5-dev.202210181442",
54
- "@progress/kendo-vue-dateinputs": "3.6.5-dev.202210181442",
55
- "@progress/kendo-vue-dropdowns": "3.6.5-dev.202210181442",
56
- "@progress/kendo-vue-excel-export": "3.6.5-dev.202210181442",
57
- "@progress/kendo-vue-indicators": "3.6.5-dev.202210181442",
58
- "@progress/kendo-vue-inputs": "3.6.5-dev.202210181442",
59
- "@progress/kendo-vue-intl": "3.6.5-dev.202210181442",
60
- "@progress/kendo-vue-pdf": "3.6.5-dev.202210181442",
61
- "@progress/kendo-vue-popup": "3.6.5-dev.202210181442",
50
+ "@progress/kendo-vue-animation": "3.7.0-dev.202210251512",
51
+ "@progress/kendo-vue-buttons": "3.7.0-dev.202210251512",
52
+ "@progress/kendo-vue-charts": "3.7.0-dev.202210251512",
53
+ "@progress/kendo-vue-data-tools": "3.7.0-dev.202210251512",
54
+ "@progress/kendo-vue-dateinputs": "3.7.0-dev.202210251512",
55
+ "@progress/kendo-vue-dropdowns": "3.7.0-dev.202210251512",
56
+ "@progress/kendo-vue-excel-export": "3.7.0-dev.202210251512",
57
+ "@progress/kendo-vue-indicators": "3.7.0-dev.202210251512",
58
+ "@progress/kendo-vue-inputs": "3.7.0-dev.202210251512",
59
+ "@progress/kendo-vue-intl": "3.7.0-dev.202210251512",
60
+ "@progress/kendo-vue-pdf": "3.7.0-dev.202210251512",
61
+ "@progress/kendo-vue-popup": "3.7.0-dev.202210251512",
62
62
  "cldr-core": "^41.0.0",
63
63
  "cldr-dates-full": "^41.0.0",
64
64
  "cldr-numbers-full": "^41.0.0",