@equinor/fusion-framework-react-app 5.5.0 → 5.5.3
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 +23 -0
- package/dist/esm/ag-grid/useTheme.js +9 -0
- package/dist/esm/ag-grid/useTheme.js.map +1 -0
- package/dist/esm/bookmark/useBookmark.js +1 -1
- package/dist/esm/bookmark/useBookmark.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/ag-grid/useTheme.d.ts +2 -0
- package/dist/types/bookmark/useBookmark.d.ts +2 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +10 -6
- package/src/ag-grid/useTheme.ts +13 -0
- package/src/bookmark/useBookmark.ts +5 -2
- package/src/version.ts +1 -1
- package/tsconfig.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2687](https://github.com/equinor/fusion-framework/pull/2687) [`22219ab`](https://github.com/equinor/fusion-framework/commit/22219ab3c07b5578c48a012632fe16d9a823a3bf) Thanks [@odinr](https://github.com/odinr)! - - Added hook for using theme in ag-grid
|
|
8
|
+
- Fixed issue with export types of bookmarks
|
|
9
|
+
|
|
10
|
+
## 5.5.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`50a8966`](https://github.com/equinor/fusion-framework/commit/50a8966d64544a34b386307b690e0ecbf8baaead)]:
|
|
15
|
+
- @equinor/fusion-framework-app@9.2.2
|
|
16
|
+
|
|
17
|
+
## 5.5.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies []:
|
|
22
|
+
- @equinor/fusion-framework-app@9.2.1
|
|
23
|
+
- @equinor/fusion-framework-module-app@6.1.3
|
|
24
|
+
- @equinor/fusion-framework-react@7.3.7
|
|
25
|
+
|
|
3
26
|
## 5.5.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useTheme.js","sourceRoot":"","sources":["../../../src/ag-grid/useTheme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAI/C,MAAM,CAAC,MAAM,QAAQ,GAAG,GAAU,EAAE;IAChC,MAAM,MAAM,GAAG,YAAY,CAAe,QAAQ,CAAC,CAAC;IAEpD,IAAI,CAAC,MAAM,EAAE,CAAC;QACV,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC,CAAC;IACtD,CAAC;IAED,OAAO,MAAM,CAAC,KAAc,CAAC;AACjC,CAAC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useBookmark as _useBookmark } from '@equinor/fusion-framework-react-module-bookmark';
|
|
1
|
+
import { useBookmark as _useBookmark, } from '@equinor/fusion-framework-react-module-bookmark';
|
|
2
2
|
/**
|
|
3
3
|
* @deprecated Use useBookmark from @equinor/fusion-framework-react-module-bookmark
|
|
4
4
|
* For application development the useCurrentBookmark should be sufficient enough
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useBookmark.js","sourceRoot":"","sources":["../../../src/bookmark/useBookmark.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"useBookmark.js","sourceRoot":"","sources":["../../../src/bookmark/useBookmark.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,WAAW,IAAI,YAAY,GAE9B,MAAM,iDAAiD,CAAC;AAEzD;;;;;;;;;;;;;;;;GAgBG;AACH,6DAA6D;AAC7D,MAAM,CAAC,MAAM,WAAW,GAAG,GAA6B,EAAE,CAAC,YAAY,EAAE,CAAC;AAE1E,eAAe,WAAW,CAAC"}
|
package/dist/esm/version.js
CHANGED