@progress/kendo-vue-grid 4.3.2 → 4.3.3-dev.202404190617
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/columnMenu/ColumnMenu.js +5 -5
- package/dist/es/interfaces/GridProps.d.ts +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/columnMenu/ColumnMenu.js +5 -5
- package/dist/esm/interfaces/GridProps.d.ts +1 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/columnMenu/ColumnMenu.js +4 -4
- package/dist/npm/interfaces/GridProps.d.ts +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +14 -14
|
@@ -6,7 +6,7 @@ var isV3 = allVue.version && allVue.version[0] === '3';
|
|
|
6
6
|
var inject = allVue.inject;
|
|
7
7
|
import { guid, Icon, setRef } from '@progress/kendo-vue-common';
|
|
8
8
|
import { Popup } from '@progress/kendo-vue-popup';
|
|
9
|
-
import {
|
|
9
|
+
import { moreVerticalIcon } from '@progress/kendo-svg-icons';
|
|
10
10
|
import { ColumnMenuContent } from './ColumnMenuContent';
|
|
11
11
|
import { tableKeyboardNavigationTools } from '@progress/kendo-vue-data-tools';
|
|
12
12
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
@@ -135,12 +135,12 @@ var ColumnMenuVue2 = {
|
|
|
135
135
|
},
|
|
136
136
|
href: "#"
|
|
137
137
|
}, [h(Icon, {
|
|
138
|
-
name: '
|
|
138
|
+
name: 'more-vertical',
|
|
139
139
|
attrs: this.v3 ? undefined : {
|
|
140
|
-
name: '
|
|
141
|
-
icon:
|
|
140
|
+
name: 'more-vertical',
|
|
141
|
+
icon: moreVerticalIcon
|
|
142
142
|
},
|
|
143
|
-
icon:
|
|
143
|
+
icon: moreVerticalIcon
|
|
144
144
|
})]),
|
|
145
145
|
// @ts-ignore function children
|
|
146
146
|
h(Popup, {
|
|
@@ -271,7 +271,7 @@ export interface GridProps {
|
|
|
271
271
|
/**
|
|
272
272
|
* Defines the custom rendering of the row. Accepts a Vue component, a `render` function, or a slot name.
|
|
273
273
|
*/
|
|
274
|
-
rowRender?: string | boolean | ((h: any, defaultRendering: any | null,
|
|
274
|
+
rowRender?: string | boolean | ((h: any, defaultRendering: any | null, defaultSlots: any, props: any, listeners: any) => any);
|
|
275
275
|
/**
|
|
276
276
|
* Defines the custom rendering of the cell. Accepts a Vue component, a `render` function, or a slot name.
|
|
277
277
|
* ([see example]({% slug groupingaggregates_grid %})).
|
|
@@ -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: 1713507190,
|
|
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
|
};
|
|
@@ -6,7 +6,7 @@ var isV3 = allVue.version && allVue.version[0] === '3';
|
|
|
6
6
|
var inject = allVue.inject;
|
|
7
7
|
import { guid, Icon, setRef } from '@progress/kendo-vue-common';
|
|
8
8
|
import { Popup } from '@progress/kendo-vue-popup';
|
|
9
|
-
import {
|
|
9
|
+
import { moreVerticalIcon } from '@progress/kendo-svg-icons';
|
|
10
10
|
import { ColumnMenuContent } from './ColumnMenuContent.js';
|
|
11
11
|
import { tableKeyboardNavigationTools } from '@progress/kendo-vue-data-tools';
|
|
12
12
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
@@ -135,12 +135,12 @@ var ColumnMenuVue2 = {
|
|
|
135
135
|
},
|
|
136
136
|
href: "#"
|
|
137
137
|
}, [h(Icon, {
|
|
138
|
-
name: '
|
|
138
|
+
name: 'more-vertical',
|
|
139
139
|
attrs: this.v3 ? undefined : {
|
|
140
|
-
name: '
|
|
141
|
-
icon:
|
|
140
|
+
name: 'more-vertical',
|
|
141
|
+
icon: moreVerticalIcon
|
|
142
142
|
},
|
|
143
|
-
icon:
|
|
143
|
+
icon: moreVerticalIcon
|
|
144
144
|
})]),
|
|
145
145
|
// @ts-ignore function children
|
|
146
146
|
h(Popup, {
|
|
@@ -271,7 +271,7 @@ export interface GridProps {
|
|
|
271
271
|
/**
|
|
272
272
|
* Defines the custom rendering of the row. Accepts a Vue component, a `render` function, or a slot name.
|
|
273
273
|
*/
|
|
274
|
-
rowRender?: string | boolean | ((h: any, defaultRendering: any | null,
|
|
274
|
+
rowRender?: string | boolean | ((h: any, defaultRendering: any | null, defaultSlots: any, props: any, listeners: any) => any);
|
|
275
275
|
/**
|
|
276
276
|
* Defines the custom rendering of the cell. Accepts a Vue component, a `render` function, or a slot name.
|
|
277
277
|
* ([see example]({% slug groupingaggregates_grid %})).
|
|
@@ -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: 1713507190,
|
|
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
|
};
|
|
@@ -141,12 +141,12 @@ var ColumnMenuVue2 = {
|
|
|
141
141
|
},
|
|
142
142
|
href: "#"
|
|
143
143
|
}, [h(kendo_vue_common_1.Icon, {
|
|
144
|
-
name: '
|
|
144
|
+
name: 'more-vertical',
|
|
145
145
|
attrs: this.v3 ? undefined : {
|
|
146
|
-
name: '
|
|
147
|
-
icon: kendo_svg_icons_1.
|
|
146
|
+
name: 'more-vertical',
|
|
147
|
+
icon: kendo_svg_icons_1.moreVerticalIcon
|
|
148
148
|
},
|
|
149
|
-
icon: kendo_svg_icons_1.
|
|
149
|
+
icon: kendo_svg_icons_1.moreVerticalIcon
|
|
150
150
|
})]),
|
|
151
151
|
// @ts-ignore function children
|
|
152
152
|
h(kendo_vue_popup_1.Popup, {
|
|
@@ -271,7 +271,7 @@ export interface GridProps {
|
|
|
271
271
|
/**
|
|
272
272
|
* Defines the custom rendering of the row. Accepts a Vue component, a `render` function, or a slot name.
|
|
273
273
|
*/
|
|
274
|
-
rowRender?: string | boolean | ((h: any, defaultRendering: any | null,
|
|
274
|
+
rowRender?: string | boolean | ((h: any, defaultRendering: any | null, defaultSlots: any, props: any, listeners: any) => any);
|
|
275
275
|
/**
|
|
276
276
|
* Defines the custom rendering of the cell. Accepts a Vue component, a `render` function, or a slot name.
|
|
277
277
|
* ([see example]({% slug groupingaggregates_grid %})).
|
|
@@ -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: 1713507190,
|
|
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": "4.3.
|
|
3
|
+
"version": "4.3.3-dev.202404190617",
|
|
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": "4.3.
|
|
47
|
+
"@progress/kendo-vue-common": "4.3.3-dev.202404190617"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@progress/kendo-data-query": "^1.5.4",
|
|
51
51
|
"@progress/kendo-drawing": "^1.9.3",
|
|
52
52
|
"@progress/kendo-licensing": "^1.3.0",
|
|
53
53
|
"@progress/kendo-svg-icons": "^2.0.0",
|
|
54
|
-
"@progress/kendo-vue-animation": "4.3.
|
|
55
|
-
"@progress/kendo-vue-buttons": "4.3.
|
|
56
|
-
"@progress/kendo-vue-charts": "4.3.
|
|
57
|
-
"@progress/kendo-vue-data-tools": "4.3.
|
|
58
|
-
"@progress/kendo-vue-dateinputs": "4.3.
|
|
59
|
-
"@progress/kendo-vue-dropdowns": "4.3.
|
|
60
|
-
"@progress/kendo-vue-excel-export": "4.3.
|
|
61
|
-
"@progress/kendo-vue-indicators": "4.3.
|
|
62
|
-
"@progress/kendo-vue-inputs": "4.3.
|
|
63
|
-
"@progress/kendo-vue-intl": "4.3.
|
|
64
|
-
"@progress/kendo-vue-pdf": "4.3.
|
|
65
|
-
"@progress/kendo-vue-popup": "4.3.
|
|
54
|
+
"@progress/kendo-vue-animation": "4.3.3-dev.202404190617",
|
|
55
|
+
"@progress/kendo-vue-buttons": "4.3.3-dev.202404190617",
|
|
56
|
+
"@progress/kendo-vue-charts": "4.3.3-dev.202404190617",
|
|
57
|
+
"@progress/kendo-vue-data-tools": "4.3.3-dev.202404190617",
|
|
58
|
+
"@progress/kendo-vue-dateinputs": "4.3.3-dev.202404190617",
|
|
59
|
+
"@progress/kendo-vue-dropdowns": "4.3.3-dev.202404190617",
|
|
60
|
+
"@progress/kendo-vue-excel-export": "4.3.3-dev.202404190617",
|
|
61
|
+
"@progress/kendo-vue-indicators": "4.3.3-dev.202404190617",
|
|
62
|
+
"@progress/kendo-vue-inputs": "4.3.3-dev.202404190617",
|
|
63
|
+
"@progress/kendo-vue-intl": "4.3.3-dev.202404190617",
|
|
64
|
+
"@progress/kendo-vue-pdf": "4.3.3-dev.202404190617",
|
|
65
|
+
"@progress/kendo-vue-popup": "4.3.3-dev.202404190617",
|
|
66
66
|
"cldr-core": "^41.0.0",
|
|
67
67
|
"cldr-dates-full": "^41.0.0",
|
|
68
68
|
"cldr-numbers-full": "^41.0.0",
|