@progress/kendo-vue-grid 3.0.9-dev.202202281506 → 3.0.9-dev.202203011321

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
@@ -1254,6 +1254,7 @@ var GridVue2 = {
1254
1254
  field: column.field || '',
1255
1255
  editor: column.editor,
1256
1256
  format: column.format,
1257
+ readFormat: column.readFormat,
1257
1258
  type: column.type,
1258
1259
  className: className,
1259
1260
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1273,6 +1274,7 @@ var GridVue2 = {
1273
1274
  field: column.field || '',
1274
1275
  editor: column.editor,
1275
1276
  format: column.format,
1277
+ readFormat: column.readFormat,
1276
1278
  type: column.type,
1277
1279
  className: className,
1278
1280
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1322,6 +1324,7 @@ var GridVue2 = {
1322
1324
  ,
1323
1325
  editor: column.editor,
1324
1326
  format: column.format,
1327
+ readFormat: column.readFormat,
1325
1328
  type: column.type,
1326
1329
  className: className,
1327
1330
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1340,6 +1343,7 @@ var GridVue2 = {
1340
1343
  field: column.field || '',
1341
1344
  editor: column.editor,
1342
1345
  format: column.format,
1346
+ readFormat: column.readFormat,
1343
1347
  type: column.type,
1344
1348
  className: className,
1345
1349
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1379,6 +1383,7 @@ var GridVue2 = {
1379
1383
  ,
1380
1384
  editor: column.editor,
1381
1385
  format: column.format,
1386
+ readFormat: column.readFormat,
1382
1387
  type: column.type,
1383
1388
  className: className,
1384
1389
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1396,6 +1401,7 @@ var GridVue2 = {
1396
1401
  field: column.field || '',
1397
1402
  editor: column.editor,
1398
1403
  format: column.format,
1404
+ readFormat: column.readFormat,
1399
1405
  type: column.type,
1400
1406
  className: className,
1401
1407
  render: columnCellRenderFunction || cellRenderFunction,
@@ -23,6 +23,7 @@ var GridCellVue2 = {
23
23
  field: String,
24
24
  dataItem: Object,
25
25
  format: String,
26
+ readFormat: String,
26
27
  className: String,
27
28
  colSpan: Number,
28
29
  columnIndex: Number,
@@ -102,7 +103,7 @@ var GridCellVue2 = {
102
103
  var dataAsString = '';
103
104
 
104
105
  if (data !== undefined && data !== null) {
105
- dataAsString = this.$props.format ? this.$props.type ? this._intl.format(this.$props.format, parsers[this.$props.type](data, this._intl, this.$props.format)) : this._intl.format(this.$props.format, data) : data.toString();
106
+ dataAsString = this.$props.format ? this.$props.type ? this._intl.format(this.$props.format, parsers[this.$props.type](data, this._intl, this.$props.readFormat)) : this._intl.format(this.$props.format, data) : data.toString();
106
107
  }
107
108
 
108
109
  defaultRendering = h("td", {
@@ -37,6 +37,10 @@ export interface GridCellProps {
37
37
  * refer to the [kendo-intl](https://github.com/telerik/kendo-intl/blob/develop/docs/index.md) documentation.
38
38
  */
39
39
  format?: string;
40
+ /**
41
+ * The data Item read format.
42
+ */
43
+ readFormat?: string;
40
44
  /**
41
45
  * The custom CSS classes of the cells.
42
46
  */
@@ -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: 1646060493,
8
+ publishDate: 1646140568,
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
@@ -1290,6 +1290,7 @@ var GridVue2 = {
1290
1290
  field: column.field || '',
1291
1291
  editor: column.editor,
1292
1292
  format: column.format,
1293
+ readFormat: column.readFormat,
1293
1294
  type: column.type,
1294
1295
  className: className,
1295
1296
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1309,6 +1310,7 @@ var GridVue2 = {
1309
1310
  field: column.field || '',
1310
1311
  editor: column.editor,
1311
1312
  format: column.format,
1313
+ readFormat: column.readFormat,
1312
1314
  type: column.type,
1313
1315
  className: className,
1314
1316
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1358,6 +1360,7 @@ var GridVue2 = {
1358
1360
  ,
1359
1361
  editor: column.editor,
1360
1362
  format: column.format,
1363
+ readFormat: column.readFormat,
1361
1364
  type: column.type,
1362
1365
  className: className,
1363
1366
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1376,6 +1379,7 @@ var GridVue2 = {
1376
1379
  field: column.field || '',
1377
1380
  editor: column.editor,
1378
1381
  format: column.format,
1382
+ readFormat: column.readFormat,
1379
1383
  type: column.type,
1380
1384
  className: className,
1381
1385
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1415,6 +1419,7 @@ var GridVue2 = {
1415
1419
  ,
1416
1420
  editor: column.editor,
1417
1421
  format: column.format,
1422
+ readFormat: column.readFormat,
1418
1423
  type: column.type,
1419
1424
  className: className,
1420
1425
  render: columnCellRenderFunction || cellRenderFunction,
@@ -1432,6 +1437,7 @@ var GridVue2 = {
1432
1437
  field: column.field || '',
1433
1438
  editor: column.editor,
1434
1439
  format: column.format,
1440
+ readFormat: column.readFormat,
1435
1441
  type: column.type,
1436
1442
  className: className,
1437
1443
  render: columnCellRenderFunction || cellRenderFunction,
@@ -35,6 +35,7 @@ var GridCellVue2 = {
35
35
  field: String,
36
36
  dataItem: Object,
37
37
  format: String,
38
+ readFormat: String,
38
39
  className: String,
39
40
  colSpan: Number,
40
41
  columnIndex: Number,
@@ -114,7 +115,7 @@ var GridCellVue2 = {
114
115
  var dataAsString = '';
115
116
 
116
117
  if (data !== undefined && data !== null) {
117
- dataAsString = this.$props.format ? this.$props.type ? this._intl.format(this.$props.format, utils_1.parsers[this.$props.type](data, this._intl, this.$props.format)) : this._intl.format(this.$props.format, data) : data.toString();
118
+ dataAsString = this.$props.format ? this.$props.type ? this._intl.format(this.$props.format, utils_1.parsers[this.$props.type](data, this._intl, this.$props.readFormat)) : this._intl.format(this.$props.format, data) : data.toString();
118
119
  }
119
120
 
120
121
  defaultRendering = h("td", {
@@ -37,6 +37,10 @@ export interface GridCellProps {
37
37
  * refer to the [kendo-intl](https://github.com/telerik/kendo-intl/blob/develop/docs/index.md) documentation.
38
38
  */
39
39
  format?: string;
40
+ /**
41
+ * The data Item read format.
42
+ */
43
+ readFormat?: string;
40
44
  /**
41
45
  * The custom CSS classes of the cells.
42
46
  */
@@ -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: 1646060493,
11
+ publishDate: 1646140568,
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.0.9-dev.202202281506",
3
+ "version": "3.0.9-dev.202203011321",
4
4
  "description": "Kendo UI for Vue Grid package",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,23 +34,23 @@
34
34
  "vue": "^2.6.12 || ^3.0.2"
35
35
  },
36
36
  "dependencies": {
37
- "@progress/kendo-vue-common": "3.0.9-dev.202202281506"
37
+ "@progress/kendo-vue-common": "3.0.9-dev.202203011321"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@progress/kendo-data-query": "^1.5.4",
41
41
  "@progress/kendo-drawing": "^1.9.3",
42
42
  "@progress/kendo-licensing": "^1.1.0",
43
- "@progress/kendo-vue-animation": "3.0.9-dev.202202281506",
44
- "@progress/kendo-vue-buttons": "3.0.9-dev.202202281506",
45
- "@progress/kendo-vue-charts": "3.0.9-dev.202202281506",
46
- "@progress/kendo-vue-data-tools": "3.0.9-dev.202202281506",
47
- "@progress/kendo-vue-dateinputs": "3.0.9-dev.202202281506",
48
- "@progress/kendo-vue-dropdowns": "3.0.9-dev.202202281506",
49
- "@progress/kendo-vue-excel-export": "3.0.9-dev.202202281506",
50
- "@progress/kendo-vue-inputs": "3.0.9-dev.202202281506",
51
- "@progress/kendo-vue-intl": "3.0.9-dev.202202281506",
52
- "@progress/kendo-vue-pdf": "3.0.9-dev.202202281506",
53
- "@progress/kendo-vue-popup": "3.0.9-dev.202202281506",
43
+ "@progress/kendo-vue-animation": "3.0.9-dev.202203011321",
44
+ "@progress/kendo-vue-buttons": "3.0.9-dev.202203011321",
45
+ "@progress/kendo-vue-charts": "3.0.9-dev.202203011321",
46
+ "@progress/kendo-vue-data-tools": "3.0.9-dev.202203011321",
47
+ "@progress/kendo-vue-dateinputs": "3.0.9-dev.202203011321",
48
+ "@progress/kendo-vue-dropdowns": "3.0.9-dev.202203011321",
49
+ "@progress/kendo-vue-excel-export": "3.0.9-dev.202203011321",
50
+ "@progress/kendo-vue-inputs": "3.0.9-dev.202203011321",
51
+ "@progress/kendo-vue-intl": "3.0.9-dev.202203011321",
52
+ "@progress/kendo-vue-pdf": "3.0.9-dev.202203011321",
53
+ "@progress/kendo-vue-popup": "3.0.9-dev.202203011321",
54
54
  "cldr-core": "^34.0.0",
55
55
  "cldr-dates-full": "^34.0.0",
56
56
  "cldr-numbers-full": "^34.0.0",