Skip to content

Commit 32c2508

Browse files
author
odinr[bot]
committed
Version Packages
1 parent 7c57951 commit 32c2508

File tree

12 files changed

+68
-53
lines changed

12 files changed

+68
-53
lines changed

.changeset/cookbook-app-react-ag-grid_test-theme-override.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/cookbook-app-react-charts_update-charts-import.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/module-ag-grid_theme-function.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.changeset/react-ag-grid_add-charts-export.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

cookbooks/app-react-ag-grid/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## 1.0.5
4+
5+
### Patch Changes
6+
7+
- [#3816](https://github.com/equinor/fusion-framework/pull/3816) [`7c57951`](https://github.com/equinor/fusion-framework/commit/7c57951c57763f567a1284e81f903dd892a023ed) Thanks [@odinr](https://github.com/odinr)! - Add test theme override example in cookbook configuration.
8+
9+
Demonstrates how to use the theme function API with custom theme parameters.
10+
11+
- Updated dependencies [[`7c57951`](https://github.com/equinor/fusion-framework/commit/7c57951c57763f567a1284e81f903dd892a023ed)]:
12+
- @equinor/fusion-framework-react-ag-grid@34.4.0
13+
314
## 1.0.4
415

516
### Patch Changes

cookbooks/app-react-ag-grid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/fusion-framework-cookbook-app-react-ag-grid",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Setup AG-grid with fusion-framework",
55
"private": true,
66
"type": "module",

cookbooks/app-react-charts/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 1.2.2
4+
5+
### Patch Changes
6+
7+
- [#3816](https://github.com/equinor/fusion-framework/pull/3816) [`7c57951`](https://github.com/equinor/fusion-framework/commit/7c57951c57763f567a1284e81f903dd892a023ed) Thanks [@odinr](https://github.com/odinr)! - Update AG Charts imports to use new `@equinor/fusion-framework-react-ag-grid/charts` export path.
8+
9+
Migrate from direct `ag-charts-react` imports to the framework's unified charts export.
10+
311
## 1.2.1
412

513
### Patch Changes

cookbooks/app-react-charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/fusion-framework-cookbook-app-react-charts",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "",
55
"private": true,
66
"type": "module",

packages/modules/ag-grid/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Change Log
22

3+
## 34.4.0
4+
5+
### Minor Changes
6+
7+
- [#3816](https://github.com/equinor/fusion-framework/pull/3816) [`7c57951`](https://github.com/equinor/fusion-framework/commit/7c57951c57763f567a1284e81f903dd892a023ed) Thanks [@odinr](https://github.com/odinr)! - Internal: `theme` config property now expects a function `() => Theme` for lazy evaluation, but consumer APIs remain backward compatible.
8+
9+
Most consumers using `builder.setTheme()` do not need to migrate; it still accepts both `Theme` objects and functions. Only direct construction of `AgGridConfig` requires the function wrapper.
10+
11+
```typescript
12+
// Internal API change (rare, direct config construction)
13+
const config: AgGridConfig = {
14+
theme: () => myTheme
15+
};
16+
17+
// Builder API remains backward compatible
18+
builder.setTheme(myTheme); // still works
19+
builder.setTheme((theme) => theme.withParams({...})); // also works
20+
```
21+
22+
Fixes: https://github.com/equinor/fusion-framework/issues/747
23+
324
## 34.3.0
425

526
### Minor Changes

packages/modules/ag-grid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/fusion-framework-module-ag-grid",
3-
"version": "34.3.0",
3+
"version": "34.4.0",
44
"description": "Fusion module for using AG Grid",
55
"main": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",

0 commit comments

Comments
 (0)