@scheels-softdev/kendoreact-generics 1.2.1 → 1.3.1
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/GenericDropdown.js +1 -1
- package/package.json +3 -3
package/GenericDropdown.js
CHANGED
@@ -18,7 +18,7 @@ disabled, // boolean to disable the dropdown
|
|
18
18
|
}) {
|
19
19
|
//redux state
|
20
20
|
//local state
|
21
|
-
const pageSize =
|
21
|
+
const pageSize = 100;
|
22
22
|
const [dataList, setDataList] = useState(data.map((x) => {
|
23
23
|
return Object.assign(Object.assign({}, x), { textValue: getTextValue(x, textFields.map((x) => x.toString()), separator) });
|
24
24
|
}));
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@scheels-softdev/kendoreact-generics",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.3.1",
|
4
4
|
"main": "index.js",
|
5
5
|
"scripts": {
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
7
|
-
"clean": "
|
8
|
-
"build": "npm run clean && tsc &&
|
7
|
+
"clean": "rmdir /S /Q dist && mkdir dist",
|
8
|
+
"build": "npm run clean && tsc && copy package.json .\\dist && copy README.md .\\dist "
|
9
9
|
},
|
10
10
|
"keywords": [
|
11
11
|
"kendo"
|