@equinor/fusion-framework-react-app 15.0.0-next.0 → 15.0.0-next.2
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 +34 -0
- package/dist/esm/ag-grid/community.js +12 -0
- package/dist/esm/ag-grid/community.js.map +1 -0
- package/dist/esm/ag-grid/enterprise.js +12 -0
- package/dist/esm/ag-grid/enterprise.js.map +1 -0
- package/dist/esm/ag-grid/react.js +12 -0
- package/dist/esm/ag-grid/react.js.map +1 -0
- package/dist/esm/ag-grid/testing.js +19 -0
- package/dist/esm/ag-grid/testing.js.map +1 -0
- package/dist/esm/ag-grid/theme.js +13 -0
- package/dist/esm/ag-grid/theme.js.map +1 -0
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/ag-grid/community.d.ts +11 -0
- package/dist/types/ag-grid/enterprise.d.ts +11 -0
- package/dist/types/ag-grid/react.d.ts +11 -0
- package/dist/types/ag-grid/testing.d.ts +18 -0
- package/dist/types/ag-grid/theme.d.ts +13 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +60 -16
- package/src/ag-grid/community.ts +11 -0
- package/src/ag-grid/enterprise.ts +11 -0
- package/src/ag-grid/react.ts +11 -0
- package/src/ag-grid/testing.ts +19 -0
- package/src/ag-grid/theme.ts +17 -0
- package/src/version.ts +1 -1
- package/tsconfig.json +3 -0
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
|
@@ -0,0 +1,18 @@
|
|
|
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';
|
|
@@ -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 type { Theme } from '@equinor/fusion-framework-module-ag-grid/themes';
|
|
13
|
+
export { useTheme } from './useTheme';
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "15.0.0-next.
|
|
1
|
+
export declare const version = "15.0.0-next.2";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-react-app",
|
|
3
|
-
"version": "15.0.0-next.
|
|
3
|
+
"version": "15.0.0-next.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/esm/index.js",
|
|
@@ -69,6 +69,26 @@
|
|
|
69
69
|
"./routing": {
|
|
70
70
|
"types": "./dist/types/routing/index.d.ts",
|
|
71
71
|
"import": "./dist/esm/routing/index.js"
|
|
72
|
+
},
|
|
73
|
+
"./ag-grid": {
|
|
74
|
+
"types": "./dist/types/ag-grid/react.d.ts",
|
|
75
|
+
"import": "./dist/esm/ag-grid/react.js"
|
|
76
|
+
},
|
|
77
|
+
"./ag-grid/community": {
|
|
78
|
+
"types": "./dist/types/ag-grid/community.d.ts",
|
|
79
|
+
"import": "./dist/esm/ag-grid/community.js"
|
|
80
|
+
},
|
|
81
|
+
"./ag-grid/enterprise": {
|
|
82
|
+
"types": "./dist/types/ag-grid/enterprise.d.ts",
|
|
83
|
+
"import": "./dist/esm/ag-grid/enterprise.js"
|
|
84
|
+
},
|
|
85
|
+
"./ag-grid/theme": {
|
|
86
|
+
"types": "./dist/types/ag-grid/theme.d.ts",
|
|
87
|
+
"import": "./dist/esm/ag-grid/theme.js"
|
|
88
|
+
},
|
|
89
|
+
"./ag-grid/testing": {
|
|
90
|
+
"types": "./dist/types/ag-grid/testing.d.ts",
|
|
91
|
+
"import": "./dist/esm/ag-grid/testing.js"
|
|
72
92
|
}
|
|
73
93
|
},
|
|
74
94
|
"typesVersions": {
|
|
@@ -117,6 +137,21 @@
|
|
|
117
137
|
],
|
|
118
138
|
"routing": [
|
|
119
139
|
"dist/types/routing/index.d.ts"
|
|
140
|
+
],
|
|
141
|
+
"ag-grid": [
|
|
142
|
+
"dist/types/ag-grid/react.d.ts"
|
|
143
|
+
],
|
|
144
|
+
"ag-grid/community": [
|
|
145
|
+
"dist/types/ag-grid/community.d.ts"
|
|
146
|
+
],
|
|
147
|
+
"ag-grid/enterprise": [
|
|
148
|
+
"dist/types/ag-grid/enterprise.d.ts"
|
|
149
|
+
],
|
|
150
|
+
"ag-grid/theme": [
|
|
151
|
+
"dist/types/ag-grid/theme.d.ts"
|
|
152
|
+
],
|
|
153
|
+
"ag-grid/testing": [
|
|
154
|
+
"dist/types/ag-grid/testing.d.ts"
|
|
120
155
|
]
|
|
121
156
|
}
|
|
122
157
|
},
|
|
@@ -132,15 +167,15 @@
|
|
|
132
167
|
"directory": "packages/react"
|
|
133
168
|
},
|
|
134
169
|
"dependencies": {
|
|
135
|
-
"@equinor/fusion-framework": "8.1.0-next.0",
|
|
136
170
|
"@equinor/fusion-framework-module": "6.1.3-next.0",
|
|
171
|
+
"@equinor/fusion-framework-app": "14.0.0-next.1",
|
|
172
|
+
"@equinor/fusion-framework-module-app": "8.1.0-next.0",
|
|
137
173
|
"@equinor/fusion-framework-module-http": "8.1.0-next.0",
|
|
174
|
+
"@equinor/fusion-framework-react-module": "4.0.3-next.0",
|
|
138
175
|
"@equinor/fusion-framework-module-navigation": "7.0.8-next.0",
|
|
139
176
|
"@equinor/fusion-framework-react": "9.0.0-next.0",
|
|
140
|
-
"@equinor/fusion-framework-
|
|
141
|
-
"@equinor/fusion-framework
|
|
142
|
-
"@equinor/fusion-framework-module-app": "8.1.0-next.0",
|
|
143
|
-
"@equinor/fusion-framework-react-module-http": "12.0.0-next.0"
|
|
177
|
+
"@equinor/fusion-framework-react-module-http": "12.0.0-next.0",
|
|
178
|
+
"@equinor/fusion-framework": "8.1.0-next.1"
|
|
144
179
|
},
|
|
145
180
|
"devDependencies": {
|
|
146
181
|
"@remix-run/router": "^1.23.3",
|
|
@@ -154,31 +189,40 @@
|
|
|
154
189
|
"typescript": "^7.0.2",
|
|
155
190
|
"vitest": "^4.1.10",
|
|
156
191
|
"vitest-browser-react": "^2.2.0",
|
|
157
|
-
"@equinor/fusion-framework-module-ag-grid": "37.0
|
|
158
|
-
"@equinor/fusion-framework-
|
|
159
|
-
"@equinor/fusion-framework-module-
|
|
192
|
+
"@equinor/fusion-framework-module-ag-grid": "37.1.0-next.1",
|
|
193
|
+
"@equinor/fusion-framework-react-ag-grid": "37.1.0-next.1",
|
|
194
|
+
"@equinor/fusion-framework-module-analytics": "3.1.0-next.1",
|
|
160
195
|
"@equinor/fusion-framework-module-context": "9.0.0-next.0",
|
|
161
|
-
"@equinor/fusion-framework-module-event": "6.1.0-next.0",
|
|
162
196
|
"@equinor/fusion-framework-module-feature-flag": "2.1.0-next.0",
|
|
197
|
+
"@equinor/fusion-framework-module-bookmark": "4.1.0-next.0",
|
|
198
|
+
"@equinor/fusion-framework-module-state": "^2.0.1-next.0",
|
|
163
199
|
"@equinor/fusion-framework-module-msal": "11.0.0-next.0",
|
|
164
|
-
"@equinor/fusion-framework-module-
|
|
200
|
+
"@equinor/fusion-framework-module-event": "6.1.0-next.0",
|
|
165
201
|
"@equinor/fusion-framework-react-module-bookmark": "7.0.0-next.0",
|
|
166
|
-
"@equinor/fusion-framework-module-state": "^2.0.1-next.0",
|
|
167
|
-
"@equinor/fusion-framework-react-module-context": "7.0.3-next.0",
|
|
168
|
-
"@equinor/fusion-observable": "9.1.2-next.0",
|
|
169
202
|
"@equinor/fusion-framework-react-router": "2.4.1-next.0",
|
|
170
|
-
"@equinor/fusion-framework-
|
|
203
|
+
"@equinor/fusion-framework-react-module-context": "7.0.3-next.0",
|
|
204
|
+
"@equinor/fusion-framework-vitest-plugin-react-app": "0.2.0-next.3",
|
|
205
|
+
"@equinor/fusion-framework-module-telemetry": "8.0.0-next.1",
|
|
206
|
+
"@equinor/fusion-observable": "9.1.2-next.1"
|
|
171
207
|
},
|
|
172
208
|
"peerDependencies": {
|
|
173
209
|
"@types/react": "^18.0.0 || ^19.0.0",
|
|
174
210
|
"react": "^18.0.0 || ^19.0.0",
|
|
175
211
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
176
212
|
"rxjs": "^7.0.0",
|
|
213
|
+
"@equinor/fusion-framework-module-ag-grid": "^37.1.0-next.1",
|
|
214
|
+
"@equinor/fusion-framework-react-router": "^2.4.1-next.0",
|
|
177
215
|
"@equinor/fusion-framework-module-msal": "^11.0.0-next.0",
|
|
178
216
|
"@equinor/fusion-framework-module-state": "^2.0.1-next.0",
|
|
179
|
-
"@equinor/fusion-framework-react-
|
|
217
|
+
"@equinor/fusion-framework-react-ag-grid": "^37.1.0-next.1"
|
|
180
218
|
},
|
|
181
219
|
"peerDependenciesMeta": {
|
|
220
|
+
"@equinor/fusion-framework-module-ag-grid": {
|
|
221
|
+
"optional": true
|
|
222
|
+
},
|
|
223
|
+
"@equinor/fusion-framework-react-ag-grid": {
|
|
224
|
+
"optional": true
|
|
225
|
+
},
|
|
182
226
|
"@equinor/fusion-framework-react-module-ag-grid": {
|
|
183
227
|
"optional": true
|
|
184
228
|
},
|
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
|
@@ -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
|
+
/**
|
|
14
|
+
* Silences AG Grid Enterprise's unlicensed "License Key Not Found" banner on
|
|
15
|
+
* `console.error` so it doesn't bury real failures in test output.
|
|
16
|
+
*
|
|
17
|
+
* @returns A function that restores the original `console.error`.
|
|
18
|
+
*/
|
|
19
|
+
export { suppressAgGridLicenseBanner } from '@equinor/fusion-framework-module-ag-grid/testing';
|
|
@@ -0,0 +1,17 @@
|
|
|
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 {
|
|
12
|
+
fusionTheme,
|
|
13
|
+
createThemeFromTheme,
|
|
14
|
+
createTheme,
|
|
15
|
+
} from '@equinor/fusion-framework-module-ag-grid/themes';
|
|
16
|
+
export type { Theme } from '@equinor/fusion-framework-module-ag-grid/themes';
|
|
17
|
+
export { useTheme } from './useTheme';
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '15.0.0-next.
|
|
2
|
+
export const version = '15.0.0-next.2';
|