Skip to content

Commit 344df1a

Browse files
committed
chore: bump version
1 parent dd81769 commit 344df1a

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

examples/kendo-react-grid-performance/package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@progress/kendo-react-grid": "7.1.0",
7-
"@progress/kendo-data-query": "1.7.0",
8-
"@progress/kendo-drawing": "1.19.0",
9-
"@progress/kendo-licensing": "1.3.5",
10-
"@progress/kendo-svg-icons": "2.1.0",
11-
"@progress/kendo-react-common": "7.1.0",
12-
"@progress/kendo-react-animation": "7.1.0",
6+
"@progress/kendo-react-grid": "11.0.0",
7+
"@progress/kendo-data-query": "1.7.1",
8+
"@progress/kendo-drawing": "1.21.2",
9+
"@progress/kendo-licensing": "1.6.0",
10+
"@progress/kendo-svg-icons": "4.3.0",
11+
"@progress/kendo-react-common": "11.0.0",
12+
"@progress/kendo-react-animation": "11.0.0",
1313
"@progress/kendo-popup-common": "1.9.2",
14-
"@progress/kendo-react-popup": "7.1.0",
15-
"@progress/kendo-react-buttons": "7.1.0",
16-
"@progress/kendo-date-math": "1.5.12",
14+
"@progress/kendo-react-popup": "11.0.0",
15+
"@progress/kendo-react-buttons": "11.0.0",
16+
"@progress/kendo-date-math": "1.5.14",
1717
"@progress/kendo-intl": "3.1.2",
18-
"@progress/kendo-react-intl": "7.1.0",
19-
"@progress/kendo-react-labels": "7.1.0",
20-
"@progress/kendo-react-progressbars": "7.1.0",
21-
"@progress/kendo-react-layout": "7.1.0",
22-
"@progress/kendo-react-dateinputs": "7.1.0",
23-
"@progress/kendo-inputs-common": "3.1.0",
24-
"@progress/kendo-react-dialogs": "7.1.0",
25-
"@progress/kendo-react-form": "7.1.0",
26-
"@progress/kendo-react-inputs": "7.1.0",
27-
"@progress/kendo-react-treeview": "7.1.0",
28-
"@progress/kendo-react-dropdowns": "7.1.0",
29-
"@progress/kendo-react-data-tools": "7.1.0",
30-
"@progress/kendo-theme-default": "^7.2.0",
18+
"@progress/kendo-react-intl": "11.0.0",
19+
"@progress/kendo-react-labels": "11.0.0",
20+
"@progress/kendo-react-progressbars": "11.0.0",
21+
"@progress/kendo-react-layout": "11.0.0",
22+
"@progress/kendo-react-dateinputs": "11.0.0",
23+
"@progress/kendo-inputs-common": "3.1.1",
24+
"@progress/kendo-react-dialogs": "11.0.0",
25+
"@progress/kendo-react-form": "11.0.0",
26+
"@progress/kendo-react-inputs": "11.0.0",
27+
"@progress/kendo-react-treeview": "11.0.0",
28+
"@progress/kendo-react-dropdowns": "11.0.0",
29+
"@progress/kendo-react-data-tools": "11.0.0",
30+
"@progress/kendo-theme-default": "^11.0.2",
3131
"react": "^18.2.0",
3232
"react-dom": "^18.2.0",
3333
"react-scripts": "^5.0.1",

examples/kendo-react-grid-performance/src/KendoGrid/index.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ export const KendoGrid = (props) => {
274274
>
275275
<GridColumn field={'Stock'} width={110} />
276276
<GridColumn field={'Open Price'} width={120} filter={'numeric'} format="{0:c4}" />
277-
<GridColumn field={'Price'} width={130} filter={'numeric'} cell={PriceCell} />
278-
<GridColumn field={'Change'} width={90} className={'numeric change'} filter={'numeric'} headerClassName={'headerAlignStyle'} cell={ChangeCell} />
279-
<GridColumn field={'Change(%)'} width={90} className={'numeric change'} filter={'numeric'} cell={ChangePercentCell} />
277+
<GridColumn field={'Price'} width={130} filter={'numeric'} cells={{ data: PriceCell }} />
278+
<GridColumn field={'Change'} width={90} className={'numeric change'} filter={'numeric'} headerClassName={'headerAlignStyle'} cells={{ data: ChangeCell }} />
279+
<GridColumn field={'Change(%)'} width={90} className={'numeric change'} filter={'numeric'} cells={{ data: ChangePercentCell }} />
280280
<GridColumn field={'Buy'} width={110} filter={'numeric'} format={'{0:c4}'} />
281281
<GridColumn field={'Sell'} width={110} filter={'numeric'} format={'{0:c4}'} />
282282
<GridColumn field={'Spread'} width={110} filter={'numeric'} format={'{0:c4}'} />
@@ -286,7 +286,7 @@ export const KendoGrid = (props) => {
286286
<GridColumn field={'High(Y)'} width={110} filter={'numeric'} format={'{0:c4}'} />
287287
<GridColumn field={'Low(Y)'} width={110} filter={'numeric'} format={'{0:c4}'} />
288288
<GridColumn field={'Start(Y)'} width={110} filter={'numeric'} format={'{0:c4}'} />
289-
<GridColumn field={'Chart'} width={60} className={'center-text'} cell={ChartCell} />
289+
<GridColumn field={'Chart'} width={60} className={'center-text'} cells={{ data: ChartCell }} />
290290
<GridColumn field={'Country'} width={110} />
291291
<GridColumn field={'City'} width={100} />
292292
<GridColumn field={'Category'} width={120} />

0 commit comments

Comments
 (0)