@equinor/fusion-framework-cli 10.4.0-bookmark-preview-53d7010af49af3f3128a5ca800f7cfc796dc6089 → 10.4.1-msal-v4-preview-4113a03adbbeaf888ca8bbe55cb89589b5f736ba

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,16 +1,28 @@
1
1
  # Change Log
2
2
 
3
- ## 10.4.0-bookmark-preview-53d7010af49af3f3128a5ca800f7cfc796dc6089
3
+ ## 10.4.1-msal-v4-preview-4113a03adbbeaf888ca8bbe55cb89589b5f736ba
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2501](https://github.com/equinor/fusion-framework/pull/2501) [`4113a03`](https://github.com/equinor/fusion-framework/commit/4113a03adbbeaf888ca8bbe55cb89589b5f736ba) Thanks [@dependabot](https://github.com/apps/dependabot)! - pre-release
8
+
9
+ ## 10.4.0
4
10
 
5
11
  ### Minor Changes
6
12
 
7
- - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`238ebf7`](https://github.com/equinor/fusion-framework/commit/238ebf709fde3b2512c5e4b7a1956dc97fa189ed) Thanks [@odinr](https://github.com/odinr)! - Refactored dev-portal bookmark sidesheet to use component context
13
+ - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - Refactored dev-portal bookmark sidesheet to use component context
8
14
 
9
15
  ### Patch Changes
10
16
 
11
- - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`09a34e7`](https://github.com/equinor/fusion-framework/commit/09a34e7d13ef9cad5ab69c860c91312d8918f1e8) Thanks [@odinr](https://github.com/odinr)! - updated bookmark component for dev portal
17
+ - [#2748](https://github.com/equinor/fusion-framework/pull/2748) [`81a8e9b`](https://github.com/equinor/fusion-framework/commit/81a8e9b2201be89801eddfc8f84f989c3cab26cc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @equinor/fusion-react-context-selector from 0.6.6 to 0.6.8
18
+
19
+ - [#2715](https://github.com/equinor/fusion-framework/pull/2715) [`a567179`](https://github.com/equinor/fusion-framework/commit/a567179009e1e2f710acb3bf707be0b1f3d7d02b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @equinor/fusion-react-context-selector from 0.6.6 to 0.6.8
20
+
21
+ - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - updated bookmark component for dev portal
22
+
23
+ - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - improved markup for bookmark
12
24
 
13
- - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`b615865`](https://github.com/equinor/fusion-framework/commit/b615865469c8a9ac0c59abfe1ce213726a2f9005) Thanks [@odinr](https://github.com/odinr)! - improved markup for bookmark
25
+ - [#2712](https://github.com/equinor/fusion-framework/pull/2712) [`a466c37`](https://github.com/equinor/fusion-framework/commit/a466c371a47d47b6d7a037dd5343bb71972dfc70) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @remix-run/router from 1.18.0 to 1.21.0
14
26
 
15
27
  - [#2696](https://github.com/equinor/fusion-framework/pull/2696) [`7897219`](https://github.com/equinor/fusion-framework/commit/789721988959ea21a4ebe769128d5a92de90a678) Thanks [@AndrejNikolicEq](https://github.com/AndrejNikolicEq)! - wc-person component update from 3.1.0 to 3.1.1
16
28
 
@@ -1,7 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { add, menu, tag } from '@equinor/eds-icons';
2
+ import { tag } from '@equinor/eds-icons';
3
3
  import { Button, Icon, TopBar } from '@equinor/eds-core-react';
4
- Icon.add({ menu, add, tag });
5
4
  import PersonAvatarElement from '@equinor/fusion-wc-person/avatar';
6
5
  PersonAvatarElement;
7
6
  import { useBookmarkComponentContext } from '@equinor/fusion-framework-react-components-bookmark';
@@ -10,6 +9,6 @@ export const HeaderActions = (props) => {
10
9
  const bookmarkContext = useBookmarkComponentContext();
11
10
  return (_jsxs(TopBar.Actions, { style: { minWidth: 48, minHeight: 48 }, children: [_jsx(Button, { onClick: () => toggleBookmark((x) => !x), variant: "ghost_icon", disabled: !bookmarkContext.provider, title: bookmarkContext.provider
12
11
  ? 'Bookmarks'
13
- : 'Bookmarks not available, enable in app', children: _jsx(Icon, { name: "tag" }) }), _jsx(Button, { onClick: () => togglePerson((x) => !x), variant: "ghost_icon", children: _jsx("fwc-person-avatar", { size: "small", azureId: userAzureId, clickable: false }) })] }));
12
+ : 'Bookmarks not available, enable in app', children: _jsx(Icon, { data: tag }) }), _jsx(Button, { onClick: () => togglePerson((x) => !x), variant: "ghost_icon", children: _jsx("fwc-person-avatar", { size: "small", azureId: userAzureId, clickable: false }) })] }));
14
13
  };
15
14
  //# sourceMappingURL=Header.Actions.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Header.Actions.js","sourceRoot":"","sources":["../../../src/bin/dev-portal/Header.Actions.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAC/D,IAAI,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;AAE7B,OAAO,mBAAmB,MAAM,kCAAkC,CAAC;AACnE,mBAAmB,CAAC;AAEpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,qDAAqD,CAAC;AAQlG,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwB,EAAE,EAAE;IACtD,MAAM,EAAE,cAAc,EAAE,YAAY,EAAE,WAAW,EAAE,GAAG,KAAK,CAAC;IAE5D,MAAM,eAAe,GAAG,2BAA2B,EAAE,CAAC;IAEtD,OAAO,CACH,MAAC,MAAM,CAAC,OAAO,IAAC,KAAK,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,aAClD,KAAC,MAAM,IACH,OAAO,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EACxC,OAAO,EAAC,YAAY,EACpB,QAAQ,EAAE,CAAC,eAAe,CAAC,QAAQ,EACnC,KAAK,EACD,eAAe,CAAC,QAAQ;oBACpB,CAAC,CAAC,WAAW;oBACb,CAAC,CAAC,wCAAwC,YAGlD,KAAC,IAAI,IAAC,IAAI,EAAC,KAAK,GAAG,GACd,EACT,KAAC,MAAM,IAAC,OAAO,EAAE,GAAG,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,EAAC,YAAY,YAChE,4BACI,IAAI,EAAC,OAAO,EACZ,OAAO,EAAE,WAAW,EACpB,SAAS,EAAE,KAAK,GACC,GAChB,IACI,CACpB,CAAC;AACN,CAAC,CAAC"}
1
+ {"version":3,"file":"Header.Actions.js","sourceRoot":"","sources":["../../../src/bin/dev-portal/Header.Actions.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,oBAAoB,CAAC;AACzC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAE/D,OAAO,mBAAmB,MAAM,kCAAkC,CAAC;AACnE,mBAAmB,CAAC;AAEpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,qDAAqD,CAAC;AAQlG,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwB,EAAE,EAAE;IACtD,MAAM,EAAE,cAAc,EAAE,YAAY,EAAE,WAAW,EAAE,GAAG,KAAK,CAAC;IAE5D,MAAM,eAAe,GAAG,2BAA2B,EAAE,CAAC;IAEtD,OAAO,CACH,MAAC,MAAM,CAAC,OAAO,IAAC,KAAK,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,aAClD,KAAC,MAAM,IACH,OAAO,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EACxC,OAAO,EAAC,YAAY,EACpB,QAAQ,EAAE,CAAC,eAAe,CAAC,QAAQ,EACnC,KAAK,EACD,eAAe,CAAC,QAAQ;oBACpB,CAAC,CAAC,WAAW;oBACb,CAAC,CAAC,wCAAwC,YAGlD,KAAC,IAAI,IAAC,IAAI,EAAE,GAAG,GAAI,GACd,EACT,KAAC,MAAM,IAAC,OAAO,EAAE,GAAG,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,EAAC,YAAY,YAChE,4BACI,IAAI,EAAC,OAAO,EACZ,OAAO,EAAE,WAAW,EACpB,SAAS,EAAE,KAAK,GACC,GAChB,IACI,CACpB,CAAC;AACN,CAAC,CAAC"}