@progress/kendo-vue-grid 8.0.0-develop.2 → 8.0.0-develop.4
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/Grid.js +1 -1
- package/Grid.mjs +147 -147
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/index.d.mts +22 -2
- package/index.d.ts +22 -2
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
package/index.d.mts
CHANGED
|
@@ -53,6 +53,7 @@ import { SVGIcon } from '@progress/kendo-vue-common';
|
|
|
53
53
|
import { SVGIcon as SVGIcon_2 } from '@progress/kendo-svg-icons';
|
|
54
54
|
import { SvgIconAll } from '@progress/kendo-vue-common';
|
|
55
55
|
import { TableExpandableSettings } from '@progress/kendo-vue-data-tools';
|
|
56
|
+
import { TableGroupExpandableSettings } from '@progress/kendo-vue-data-tools';
|
|
56
57
|
import { TextBoxChangeEvent } from '@progress/kendo-vue-inputs';
|
|
57
58
|
import { TextBoxProps } from '@progress/kendo-vue-inputs';
|
|
58
59
|
|
|
@@ -2069,6 +2070,10 @@ export declare interface GridGroupableSettings {
|
|
|
2069
2070
|
* Determines if the group footer row is visible when the group is collapsed. Defaults to `false`.
|
|
2070
2071
|
*/
|
|
2071
2072
|
footer?: 'always' | 'visible' | 'none';
|
|
2073
|
+
/**
|
|
2074
|
+
* The group expandable settings.
|
|
2075
|
+
*/
|
|
2076
|
+
expandable?: boolean | GridGroupExpandableSettings;
|
|
2072
2077
|
}
|
|
2073
2078
|
|
|
2074
2079
|
/**
|
|
@@ -2141,6 +2146,21 @@ export declare interface GridGroupChangeEvent extends GridEvent {
|
|
|
2141
2146
|
group: GroupDescriptor[];
|
|
2142
2147
|
}
|
|
2143
2148
|
|
|
2149
|
+
/**
|
|
2150
|
+
* Represents the Grid group expandable settings.
|
|
2151
|
+
*/
|
|
2152
|
+
declare interface GridGroupExpandableSettings extends TableGroupExpandableSettings {
|
|
2153
|
+
/**
|
|
2154
|
+
* Determines the default expand state for groups.
|
|
2155
|
+
* When set to `true`, all groups are expanded by default.
|
|
2156
|
+
*/
|
|
2157
|
+
defaultExpand?: boolean;
|
|
2158
|
+
/**
|
|
2159
|
+
* Determines if group expanding functionality is enabled.
|
|
2160
|
+
*/
|
|
2161
|
+
enabled?: boolean;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2144
2164
|
/**
|
|
2145
2165
|
* Represents the object of the `onGroupExpandChange` Grid event.
|
|
2146
2166
|
*/
|
|
@@ -2695,7 +2715,7 @@ export declare interface GridProps {
|
|
|
2695
2715
|
fixedScroll?: boolean;
|
|
2696
2716
|
/**
|
|
2697
2717
|
*
|
|
2698
|
-
* `obsolete` Will be removed in the next major release.
|
|
2718
|
+
* `obsolete` Will be removed in the next major release. Set `dataItemKey` property instead.
|
|
2699
2719
|
*
|
|
2700
2720
|
* Specifies the name of the field which will provide a Boolean representation
|
|
2701
2721
|
* of the expanded state of the item ([see example]({% slug detailrow_grid %}).
|
|
@@ -2817,7 +2837,7 @@ export declare interface GridProps {
|
|
|
2817
2837
|
* Specifies a custom rendering that will be cloned and rendered inside the detail rows
|
|
2818
2838
|
* of the currently expanded items ([see example]({% slug master_detail_grid %}).
|
|
2819
2839
|
* Accepts a Vue component, a `render` function, or a slot name.
|
|
2820
|
-
*
|
|
2840
|
+
* The expand will be active if the `dataItemKey` is set.
|
|
2821
2841
|
*/
|
|
2822
2842
|
detail?: null | any;
|
|
2823
2843
|
/**
|
package/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ import { SVGIcon } from '@progress/kendo-vue-common';
|
|
|
53
53
|
import { SVGIcon as SVGIcon_2 } from '@progress/kendo-svg-icons';
|
|
54
54
|
import { SvgIconAll } from '@progress/kendo-vue-common';
|
|
55
55
|
import { TableExpandableSettings } from '@progress/kendo-vue-data-tools';
|
|
56
|
+
import { TableGroupExpandableSettings } from '@progress/kendo-vue-data-tools';
|
|
56
57
|
import { TextBoxChangeEvent } from '@progress/kendo-vue-inputs';
|
|
57
58
|
import { TextBoxProps } from '@progress/kendo-vue-inputs';
|
|
58
59
|
|
|
@@ -2069,6 +2070,10 @@ export declare interface GridGroupableSettings {
|
|
|
2069
2070
|
* Determines if the group footer row is visible when the group is collapsed. Defaults to `false`.
|
|
2070
2071
|
*/
|
|
2071
2072
|
footer?: 'always' | 'visible' | 'none';
|
|
2073
|
+
/**
|
|
2074
|
+
* The group expandable settings.
|
|
2075
|
+
*/
|
|
2076
|
+
expandable?: boolean | GridGroupExpandableSettings;
|
|
2072
2077
|
}
|
|
2073
2078
|
|
|
2074
2079
|
/**
|
|
@@ -2141,6 +2146,21 @@ export declare interface GridGroupChangeEvent extends GridEvent {
|
|
|
2141
2146
|
group: GroupDescriptor[];
|
|
2142
2147
|
}
|
|
2143
2148
|
|
|
2149
|
+
/**
|
|
2150
|
+
* Represents the Grid group expandable settings.
|
|
2151
|
+
*/
|
|
2152
|
+
declare interface GridGroupExpandableSettings extends TableGroupExpandableSettings {
|
|
2153
|
+
/**
|
|
2154
|
+
* Determines the default expand state for groups.
|
|
2155
|
+
* When set to `true`, all groups are expanded by default.
|
|
2156
|
+
*/
|
|
2157
|
+
defaultExpand?: boolean;
|
|
2158
|
+
/**
|
|
2159
|
+
* Determines if group expanding functionality is enabled.
|
|
2160
|
+
*/
|
|
2161
|
+
enabled?: boolean;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2144
2164
|
/**
|
|
2145
2165
|
* Represents the object of the `onGroupExpandChange` Grid event.
|
|
2146
2166
|
*/
|
|
@@ -2695,7 +2715,7 @@ export declare interface GridProps {
|
|
|
2695
2715
|
fixedScroll?: boolean;
|
|
2696
2716
|
/**
|
|
2697
2717
|
*
|
|
2698
|
-
* `obsolete` Will be removed in the next major release.
|
|
2718
|
+
* `obsolete` Will be removed in the next major release. Set `dataItemKey` property instead.
|
|
2699
2719
|
*
|
|
2700
2720
|
* Specifies the name of the field which will provide a Boolean representation
|
|
2701
2721
|
* of the expanded state of the item ([see example]({% slug detailrow_grid %}).
|
|
@@ -2817,7 +2837,7 @@ export declare interface GridProps {
|
|
|
2817
2837
|
* Specifies a custom rendering that will be cloned and rendered inside the detail rows
|
|
2818
2838
|
* of the currently expanded items ([see example]({% slug master_detail_grid %}).
|
|
2819
2839
|
* Accepts a Vue component, a `render` function, or a slot name.
|
|
2820
|
-
*
|
|
2840
|
+
* The expand will be active if the `dataItemKey` is set.
|
|
2821
2841
|
*/
|
|
2822
2842
|
detail?: null | any;
|
|
2823
2843
|
/**
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1770724795,version:"8.0.0-develop.4",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "8.0.0-develop.
|
|
13
|
+
publishDate: 1770724795,
|
|
14
|
+
version: "8.0.0-develop.4",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "8.0.0-develop.
|
|
3
|
+
"version": "8.0.0-develop.4",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@progress/kendo-data-query": "^1.7.0",
|
|
22
22
|
"@progress/kendo-drawing": "^1.21.1",
|
|
23
23
|
"@progress/kendo-licensing": "^1.7.2",
|
|
24
|
-
"@progress/kendo-vue-animation": "8.0.0-develop.
|
|
25
|
-
"@progress/kendo-vue-buttons": "8.0.0-develop.
|
|
26
|
-
"@progress/kendo-vue-common": "8.0.0-develop.
|
|
27
|
-
"@progress/kendo-vue-data-tools": "8.0.0-develop.
|
|
28
|
-
"@progress/kendo-vue-dateinputs": "8.0.0-develop.
|
|
29
|
-
"@progress/kendo-vue-indicators": "8.0.0-develop.
|
|
30
|
-
"@progress/kendo-vue-dropdowns": "8.0.0-develop.
|
|
31
|
-
"@progress/kendo-vue-inputs": "8.0.0-develop.
|
|
32
|
-
"@progress/kendo-vue-intl": "8.0.0-develop.
|
|
33
|
-
"@progress/kendo-vue-popup": "8.0.0-develop.
|
|
24
|
+
"@progress/kendo-vue-animation": "8.0.0-develop.4",
|
|
25
|
+
"@progress/kendo-vue-buttons": "8.0.0-develop.4",
|
|
26
|
+
"@progress/kendo-vue-common": "8.0.0-develop.4",
|
|
27
|
+
"@progress/kendo-vue-data-tools": "8.0.0-develop.4",
|
|
28
|
+
"@progress/kendo-vue-dateinputs": "8.0.0-develop.4",
|
|
29
|
+
"@progress/kendo-vue-indicators": "8.0.0-develop.4",
|
|
30
|
+
"@progress/kendo-vue-dropdowns": "8.0.0-develop.4",
|
|
31
|
+
"@progress/kendo-vue-inputs": "8.0.0-develop.4",
|
|
32
|
+
"@progress/kendo-vue-intl": "8.0.0-develop.4",
|
|
33
|
+
"@progress/kendo-vue-popup": "8.0.0-develop.4",
|
|
34
34
|
"@progress/kendo-svg-icons": "^4.4.0",
|
|
35
35
|
"vue": "^3.0.2"
|
|
36
36
|
},
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"package": {
|
|
52
52
|
"productName": "Kendo UI for Vue",
|
|
53
53
|
"productCode": "KENDOUIVUE",
|
|
54
|
-
"publishDate":
|
|
54
|
+
"publishDate": 1770724795,
|
|
55
55
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
56
56
|
}
|
|
57
57
|
},
|