@equinor/fusion-framework-react-app 15.0.0-next.0 → 15.0.0-next.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/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Change Log
2
2
 
3
+ ## 15.0.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - e13cfa4: Add AG Grid sub-path entry-points:
8
+
9
+ - `@equinor/fusion-framework-react-app/ag-grid` — `AgGridReact`, `enableAgGrid`, and related types, forwarded from `@equinor/fusion-framework-react-ag-grid/react`.
10
+ - `@equinor/fusion-framework-react-app/ag-grid/community` — forwards `@equinor/fusion-framework-react-ag-grid/community` (`ag-grid-community`).
11
+ - `@equinor/fusion-framework-react-app/ag-grid/enterprise` — forwards `@equinor/fusion-framework-react-ag-grid/enterprise` (`ag-grid-enterprise`).
12
+ - `@equinor/fusion-framework-react-app/ag-grid/theme` — Fusion theme utilities (`fusionTheme`, `createTheme`, `createThemeFromTheme`, `Theme`) plus the application-scoped `useTheme` hook.
13
+ - `@equinor/fusion-framework-react-app/ag-grid/testing` — `suppressAgGridLicenseBanner`, forwarded from `@equinor/fusion-framework-module-ag-grid/testing`.
14
+
15
+ ```typescript
16
+ import { AgGridReact } from "@equinor/fusion-framework-react-app/ag-grid";
17
+ import { useTheme } from "@equinor/fusion-framework-react-app/ag-grid/theme";
18
+ import { suppressAgGridLicenseBanner } from "@equinor/fusion-framework-react-app/ag-grid/testing";
19
+ ```
20
+
21
+ `@equinor/fusion-framework-module-ag-grid` and `@equinor/fusion-framework-react-ag-grid` are now optional peer dependencies of `@equinor/fusion-framework-react-app`.
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [e13cfa4]
26
+ - Updated dependencies [e13cfa4]
27
+ - @equinor/fusion-framework-module-ag-grid@37.1.0-next.1
28
+ - @equinor/fusion-framework-react-ag-grid@37.1.0-next.1
29
+
3
30
  ## 15.0.0-next.0
4
31
 
5
32
  ### Patch Changes
@@ -0,0 +1,12 @@
1
+ /**
2
+ * AG Grid community-tier sub-path entry-point.
3
+ *
4
+ * @remarks
5
+ * Re-exports every public symbol from
6
+ * `@equinor/fusion-framework-react-ag-grid/community` so the application
7
+ * resolves a single shared copy of `ag-grid-community`.
8
+ *
9
+ * @packageDocumentation
10
+ */
11
+ export * from '@equinor/fusion-framework-react-ag-grid/community';
12
+ //# sourceMappingURL=community.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"community.js","sourceRoot":"","sources":["../../../src/ag-grid/community.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,cAAc,mDAAmD,CAAC"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * AG Grid enterprise-tier sub-path entry-point.
3
+ *
4
+ * @remarks
5
+ * Re-exports every public symbol from
6
+ * `@equinor/fusion-framework-react-ag-grid/enterprise` so the application
7
+ * resolves a single shared copy of `ag-grid-enterprise`.
8
+ *
9
+ * @packageDocumentation
10
+ */
11
+ export * from '@equinor/fusion-framework-react-ag-grid/enterprise';
12
+ //# sourceMappingURL=enterprise.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enterprise.js","sourceRoot":"","sources":["../../../src/ag-grid/enterprise.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,cAAc,oDAAoD,CAAC"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * AG Grid React component sub-path entry-point.
3
+ *
4
+ * @remarks
5
+ * Re-exports the AG Grid React bindings from
6
+ * `@equinor/fusion-framework-react-ag-grid/react`, including the
7
+ * `AgGridReact` component, `enableAgGrid`, and their associated types.
8
+ *
9
+ * @packageDocumentation
10
+ */
11
+ export * from '@equinor/fusion-framework-react-ag-grid/react';
12
+ //# sourceMappingURL=react.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.js","sourceRoot":"","sources":["../../../src/ag-grid/react.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,cAAc,+CAA+C,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * AG Grid test helpers sub-path entry-point.
3
+ *
4
+ * @remarks
5
+ * Re-exports the AG Grid test helpers from
6
+ * `@equinor/fusion-framework-module-ag-grid/testing`. Import from test setup
7
+ * files only — these helpers patch global state and are not meant for
8
+ * application runtime code.
9
+ *
10
+ * @packageDocumentation
11
+ */
12
+ /**
13
+ * Silences AG Grid Enterprise's unlicensed "License Key Not Found" banner on
14
+ * `console.error` so it doesn't bury real failures in test output.
15
+ *
16
+ * @returns A function that restores the original `console.error`.
17
+ */
18
+ export { suppressAgGridLicenseBanner } from '@equinor/fusion-framework-module-ag-grid/testing';
19
+ //# sourceMappingURL=testing.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testing.js","sourceRoot":"","sources":["../../../src/ag-grid/testing.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH;;;;;GAKG;AACH,OAAO,EAAE,2BAA2B,EAAE,MAAM,kDAAkD,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * AG Grid theme sub-path entry-point.
3
+ *
4
+ * @remarks
5
+ * Re-exports the Fusion AG Grid theme utilities from
6
+ * `@equinor/fusion-framework-module-ag-grid/themes`, together with the
7
+ * application-scoped {@link useTheme} hook.
8
+ *
9
+ * @packageDocumentation
10
+ */
11
+ export { fusionTheme, createThemeFromTheme, createTheme, } from '@equinor/fusion-framework-module-ag-grid/themes';
12
+ export { useTheme } from './useTheme';
13
+ //# sourceMappingURL=theme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme.js","sourceRoot":"","sources":["../../../src/ag-grid/theme.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,OAAO,EACL,WAAW,EACX,oBAAoB,EACpB,WAAW,GACZ,MAAM,iDAAiD,CAAC;AAEzD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC"}
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '15.0.0-next.0';
2
+ export const version = '15.0.0-next.1';
3
3
  //# sourceMappingURL=version.js.map