@progress/kendo-react-data-tools 10.1.0-develop.3 → 10.1.0-develop.5
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/README.md +5 -5
- package/filter/Filter.mjs +1 -2
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
> - If you're looking for free React components, check out [Get Started with KendoReact Free](https://www.telerik.com/kendo-react-ui/components/free).
|
|
10
10
|
> - If you have an active license, visit the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/components/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-datatools) to learn how to configure your KendoReact licensing.
|
|
11
11
|
> - Installing and working with this package indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-datatools).
|
|
12
|
-
> -
|
|
12
|
+
> - The 30-day free trial gives you access to all KendoReact components and their full functionality. Additionally, for the period of your trial, you can use our legendary technical support provided directly by the KendoReact dev team!
|
|
13
13
|
>
|
|
14
14
|
> [Start using KendoReact](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-datatools) and speed up your development process!
|
|
15
15
|
|
|
@@ -51,8 +51,8 @@ import { Pager, PageChangeEvent } from '@progress/kendo-react-data-tools';
|
|
|
51
51
|
...
|
|
52
52
|
/**
|
|
53
53
|
* Handle the logic for changing the page. Note that you need to update the skip and the take props.
|
|
54
|
-
*/
|
|
55
|
-
<Pager
|
|
54
|
+
*/
|
|
55
|
+
<Pager
|
|
56
56
|
skip={skip}
|
|
57
57
|
take={take}
|
|
58
58
|
total={50}
|
|
@@ -73,8 +73,8 @@ import { Filter, FilterChangeEvent } from "@progress/kendo-react-data-tools";
|
|
|
73
73
|
* Provide the data that you want to filter.
|
|
74
74
|
* Define the fields for the filter.
|
|
75
75
|
* Handle the logic when changing the filter. Note that you need to update the filter value.
|
|
76
|
-
*/
|
|
77
|
-
<Filter
|
|
76
|
+
*/
|
|
77
|
+
<Filter
|
|
78
78
|
fields={fields}
|
|
79
79
|
value={value}
|
|
80
80
|
onChange={handleFilterChange}
|
package/filter/Filter.mjs
CHANGED
|
@@ -138,8 +138,7 @@ d.propTypes = {
|
|
|
138
138
|
if (Array.isArray(t)) {
|
|
139
139
|
if (Object.keys(t.reduce((e, i) => ({ ...e, [i.name]: 1 }), {})).length !== t.length)
|
|
140
140
|
return new Error(`Property '${r}' needs to contain objects with unique 'name' field.`);
|
|
141
|
-
} else
|
|
142
|
-
return new Error(`Property '${r}' needs to be Array<FieldSettings>.`);
|
|
141
|
+
} else return new Error(`Property '${r}' needs to be Array<FieldSettings>.`);
|
|
143
142
|
return null;
|
|
144
143
|
},
|
|
145
144
|
ariaLabelGroup: u.string,
|
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-react-data-tools",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-react-data-tools",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1742303247,version:"10.1.0-develop.5",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "KendoReact",
|
|
11
11
|
productCode: "KENDOUIREACT",
|
|
12
12
|
productCodes: ["KENDOUIREACT"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "10.1.0-develop.
|
|
13
|
+
publishDate: 1742303247,
|
|
14
|
+
version: "10.1.0-develop.5",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-data-tools",
|
|
3
|
-
"version": "10.1.0-develop.
|
|
3
|
+
"version": "10.1.0-develop.5",
|
|
4
4
|
"description": "Includes React Pager & React Filter component, an intuitive interface to create complex filter descriptions. KendoReact Data Tools package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"@progress/kendo-data-query": "^1.0.0",
|
|
29
29
|
"@progress/kendo-drawing": "^1.21.2",
|
|
30
30
|
"@progress/kendo-licensing": "^1.5.1",
|
|
31
|
-
"@progress/kendo-react-animation": "10.1.0-develop.
|
|
32
|
-
"@progress/kendo-react-buttons": "10.1.0-develop.
|
|
33
|
-
"@progress/kendo-react-common": "10.1.0-develop.
|
|
34
|
-
"@progress/kendo-react-dateinputs": "10.1.0-develop.
|
|
35
|
-
"@progress/kendo-react-dropdowns": "10.1.0-develop.
|
|
36
|
-
"@progress/kendo-react-inputs": "10.1.0-develop.
|
|
37
|
-
"@progress/kendo-react-intl": "10.1.0-develop.
|
|
38
|
-
"@progress/kendo-react-popup": "10.1.0-develop.
|
|
31
|
+
"@progress/kendo-react-animation": "10.1.0-develop.5",
|
|
32
|
+
"@progress/kendo-react-buttons": "10.1.0-develop.5",
|
|
33
|
+
"@progress/kendo-react-common": "10.1.0-develop.5",
|
|
34
|
+
"@progress/kendo-react-dateinputs": "10.1.0-develop.5",
|
|
35
|
+
"@progress/kendo-react-dropdowns": "10.1.0-develop.5",
|
|
36
|
+
"@progress/kendo-react-inputs": "10.1.0-develop.5",
|
|
37
|
+
"@progress/kendo-react-intl": "10.1.0-develop.5",
|
|
38
|
+
"@progress/kendo-react-popup": "10.1.0-develop.5",
|
|
39
39
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
40
40
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
41
41
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"package": {
|
|
66
66
|
"productName": "KendoReact",
|
|
67
67
|
"productCode": "KENDOUIREACT",
|
|
68
|
-
"publishDate":
|
|
68
|
+
"publishDate": 1742303247,
|
|
69
69
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
70
70
|
}
|
|
71
71
|
},
|