@progress/kendo-vue-grid 5.3.0-dev.202408221437 → 5.3.0-dev.202409041321
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/cdn/js/kendo-vue-grid.js +1 -1
- package/dist/es/cells/GridGroupCell.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/cells/GridGroupCell.js +1 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/cells/GridGroupCell.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +14 -14
|
@@ -186,7 +186,7 @@ var GridGroupCellVue2 = {
|
|
|
186
186
|
icon: expanded ? caretAltDownIcon : !this.isRtl ? caretAltRightIcon : caretAltLeftIcon
|
|
187
187
|
},
|
|
188
188
|
icon: expanded ? caretAltDownIcon : !this.isRtl ? caretAltRightIcon : caretAltLeftIcon
|
|
189
|
-
})]), dataItem[field].toString()])]);
|
|
189
|
+
})]), dataItem[field] ? dataItem[field].toString() : ''])]);
|
|
190
190
|
}
|
|
191
191
|
return getTemplate.call(this, {
|
|
192
192
|
h: h,
|
|
@@ -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:
|
|
8
|
+
publishDate: 1725455796,
|
|
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
|
};
|
|
@@ -186,7 +186,7 @@ var GridGroupCellVue2 = {
|
|
|
186
186
|
icon: expanded ? caretAltDownIcon : !this.isRtl ? caretAltRightIcon : caretAltLeftIcon
|
|
187
187
|
},
|
|
188
188
|
icon: expanded ? caretAltDownIcon : !this.isRtl ? caretAltRightIcon : caretAltLeftIcon
|
|
189
|
-
})]), dataItem[field].toString()])]);
|
|
189
|
+
})]), dataItem[field] ? dataItem[field].toString() : ''])]);
|
|
190
190
|
}
|
|
191
191
|
return getTemplate.call(this, {
|
|
192
192
|
h: h,
|
|
@@ -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:
|
|
8
|
+
publishDate: 1725455796,
|
|
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
|
};
|
|
@@ -192,7 +192,7 @@ var GridGroupCellVue2 = {
|
|
|
192
192
|
icon: expanded ? kendo_svg_icons_1.caretAltDownIcon : !this.isRtl ? kendo_svg_icons_1.caretAltRightIcon : kendo_svg_icons_1.caretAltLeftIcon
|
|
193
193
|
},
|
|
194
194
|
icon: expanded ? kendo_svg_icons_1.caretAltDownIcon : !this.isRtl ? kendo_svg_icons_1.caretAltRightIcon : kendo_svg_icons_1.caretAltLeftIcon
|
|
195
|
-
})]), dataItem[field].toString()])]);
|
|
195
|
+
})]), dataItem[field] ? dataItem[field].toString() : ''])]);
|
|
196
196
|
}
|
|
197
197
|
return kendo_vue_common_1.getTemplate.call(this, {
|
|
198
198
|
h: h,
|
|
@@ -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:
|
|
11
|
+
publishDate: 1725455796,
|
|
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": "5.3.0-dev.
|
|
3
|
+
"version": "5.3.0-dev.202409041321",
|
|
4
4
|
"description": "Kendo UI for Vue Grid package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -44,25 +44,25 @@
|
|
|
44
44
|
"vue": "^2.6.12 || ^3.0.2"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@progress/kendo-vue-common": "5.3.0-dev.
|
|
47
|
+
"@progress/kendo-vue-common": "5.3.0-dev.202409041321"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@progress/kendo-data-query": "^1.7.0",
|
|
51
51
|
"@progress/kendo-drawing": "^1.20.1",
|
|
52
52
|
"@progress/kendo-licensing": "^1.3.0",
|
|
53
53
|
"@progress/kendo-svg-icons": "^3.0.0",
|
|
54
|
-
"@progress/kendo-vue-animation": "5.3.0-dev.
|
|
55
|
-
"@progress/kendo-vue-buttons": "5.3.0-dev.
|
|
56
|
-
"@progress/kendo-vue-charts": "5.3.0-dev.
|
|
57
|
-
"@progress/kendo-vue-data-tools": "5.3.0-dev.
|
|
58
|
-
"@progress/kendo-vue-dateinputs": "5.3.0-dev.
|
|
59
|
-
"@progress/kendo-vue-dropdowns": "5.3.0-dev.
|
|
60
|
-
"@progress/kendo-vue-excel-export": "5.3.0-dev.
|
|
61
|
-
"@progress/kendo-vue-indicators": "5.3.0-dev.
|
|
62
|
-
"@progress/kendo-vue-inputs": "5.3.0-dev.
|
|
63
|
-
"@progress/kendo-vue-intl": "5.3.0-dev.
|
|
64
|
-
"@progress/kendo-vue-pdf": "5.3.0-dev.
|
|
65
|
-
"@progress/kendo-vue-popup": "5.3.0-dev.
|
|
54
|
+
"@progress/kendo-vue-animation": "5.3.0-dev.202409041321",
|
|
55
|
+
"@progress/kendo-vue-buttons": "5.3.0-dev.202409041321",
|
|
56
|
+
"@progress/kendo-vue-charts": "5.3.0-dev.202409041321",
|
|
57
|
+
"@progress/kendo-vue-data-tools": "5.3.0-dev.202409041321",
|
|
58
|
+
"@progress/kendo-vue-dateinputs": "5.3.0-dev.202409041321",
|
|
59
|
+
"@progress/kendo-vue-dropdowns": "5.3.0-dev.202409041321",
|
|
60
|
+
"@progress/kendo-vue-excel-export": "5.3.0-dev.202409041321",
|
|
61
|
+
"@progress/kendo-vue-indicators": "5.3.0-dev.202409041321",
|
|
62
|
+
"@progress/kendo-vue-inputs": "5.3.0-dev.202409041321",
|
|
63
|
+
"@progress/kendo-vue-intl": "5.3.0-dev.202409041321",
|
|
64
|
+
"@progress/kendo-vue-pdf": "5.3.0-dev.202409041321",
|
|
65
|
+
"@progress/kendo-vue-popup": "5.3.0-dev.202409041321",
|
|
66
66
|
"cldr-core": "^41.0.0",
|
|
67
67
|
"cldr-dates-full": "^41.0.0",
|
|
68
68
|
"cldr-numbers-full": "^41.0.0"
|