Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(app-react-cookbook): update [email protected] #1357

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/happy-moose-wave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@equinor/fusion-framework-cookbook-app-react-ag-grid': patch
---

update ag-grid cookbook
8 changes: 4 additions & 4 deletions cookbooks/app-react-ag-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"typescript": "^5.1.3"
},
"dependencies": {
"@ag-grid-community/client-side-row-model": "~30.1.0",
"@ag-grid-community/core": "~30.1.0",
"@ag-grid-community/react": "~30.1.0",
"@equinor/fusion-framework-module-ag-grid": "^30.1.0",
"@ag-grid-community/client-side-row-model": "~30.2.0",
"@ag-grid-community/core": "~30.2.0",
"@ag-grid-community/react": "~30.2.0",
"@equinor/fusion-framework-module-ag-grid": "workspace:^",
"@equinor/fusion-react-ag-grid-styles": "^29.3.9"
}
}
9 changes: 5 additions & 4 deletions cookbooks/app-react-ag-grid/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ export const App = (): JSX.Element => {
<h4>Hello Fusion-framework Ag-Grid</h4>
<button onClick={addRow}>Add Row</button>
</div>
<div className={styles.root}>
<div className="ag-theme-alpine-fusion" style={{ height: 400, width: 600 }}>
<AgGridReact rowData={rowData} columnDefs={columnDefs}></AgGridReact>
</div>
<div
className={[styles.root, 'ag-theme-alpine-fusion'].join(' ')}
style={{ height: 500 }}
>
<AgGridReact rowData={rowData} columnDefs={columnDefs}></AgGridReact>
</div>
</>
);
Expand Down
74 changes: 38 additions & 36 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading