Skip to content

Releases: equinor/fusion-framework

@equinor/[email protected]

18 Dec 13:15
f52b552

Choose a tag to compare

Patch Changes

@equinor/[email protected]

18 Dec 13:15
f52b552

Choose a tag to compare

Patch Changes

@equinor/[email protected]

18 Dec 13:15
f52b552

Choose a tag to compare

Patch Changes

@equinor/[email protected]

18 Dec 13:15
f52b552

Choose a tag to compare

Patch Changes

@equinor/[email protected]

18 Dec 13:15
f52b552

Choose a tag to compare

Patch Changes

@equinor/[email protected]

04 Dec 10:02
60755b2

Choose a tag to compare

Minor Changes

  • #3816 7c57951 Thanks @odinr! - Add new ./charts export path for AG Charts React components and enterprise module.

    The package now exports AgCharts and AgChartsEnterpriseModule from a dedicated ./charts export path. This provides a cleaner separation from the enterprise exports.

    import {
      AgCharts,
      AgChartsEnterpriseModule,
    } from "@equinor/fusion-framework-react-ag-grid/charts";

    Note: Charts exports are still available from ./enterprise for backward compatibility but will be removed in a future minor release.

    Fixes: #747

Patch Changes

@equinor/[email protected]

04 Dec 10:02
60755b2

Choose a tag to compare

Minor Changes

  • #3816 7c57951 Thanks @odinr! - Internal: theme config property now expects a function () => Theme for lazy evaluation, but consumer APIs remain backward compatible.

    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.

    // Internal API change (rare, direct config construction)
    const config: AgGridConfig = {
      theme: () => myTheme
    };
    
    // Builder API remains backward compatible
    builder.setTheme(myTheme); // still works
    builder.setTheme((theme) => theme.withParams({...})); // also works

    Fixes: #747

@equinor/[email protected]

27 Nov 10:23
22dcec9

Choose a tag to compare

Patch Changes

  • 41f8e9b Thanks @odinr! - Internal: upgrade build tooling dependency esbuild to 0.27.0 in @equinor/fusion-imports. No public API changes and no runtime impact to consumers.

@equinor/[email protected]

27 Nov 10:23
22dcec9

Choose a tag to compare

Patch Changes

@equinor/[email protected]

27 Nov 10:23
22dcec9

Choose a tag to compare

Minor Changes

  • #3639 31f94be Thanks @dependabot! - Upgrade AG Grid to 34.3.1 and ag-charts-enterprise to 12.3.1.

    Highlights in AG Grid 34.3.x:

    • Performance and stability improvements in community and enterprise
    • Minor feature refinements; no breaking API changes noted
    • React bindings remain compatible (React 18/19)

    Release notes: https://github.com/ag-grid/ag-grid/releases/tag/v34.3.1

    Consumer impact: dependency upgrades with improved stability/features; public APIs unchanged.

    Related PR: #3639

Patch Changes