@squide/firefly 9.0.0 → 9.0.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,17 @@
|
|
|
1
1
|
# @squide/firefly
|
|
2
2
|
|
|
3
|
+
## 9.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#191](https://github.com/gsoft-inc/wl-squide/pull/191) [`2b62c53`](https://github.com/gsoft-inc/wl-squide/commit/2b62c539b0f3123cb47475566181e0b446ea6b40) Thanks [@patricklafrance](https://github.com/patricklafrance)! - `useNavigationItems` now accepts `useRuntimeNavigationItems` options.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`2b62c53`](https://github.com/gsoft-inc/wl-squide/commit/2b62c539b0f3123cb47475566181e0b446ea6b40)]:
|
|
10
|
+
- @squide/react-router@6.0.1
|
|
11
|
+
- @squide/core@5.0.1
|
|
12
|
+
- @squide/module-federation@6.0.1
|
|
13
|
+
- @squide/msw@3.0.1
|
|
14
|
+
|
|
3
15
|
## 9.0.0
|
|
4
16
|
|
|
5
17
|
### Major Changes
|
package/README.md
CHANGED
|
@@ -10,4 +10,4 @@ View the [contributor's documentation](../../CONTRIBUTING.md).
|
|
|
10
10
|
|
|
11
11
|
## License
|
|
12
12
|
|
|
13
|
-
Copyright ©
|
|
13
|
+
Copyright © 2024, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/workleap-license/blob/master/LICENSE.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { useAppRouterState } from './chunk-G32YX2KR.js';
|
|
2
2
|
import { useRuntimeNavigationItems } from '@squide/react-router';
|
|
3
3
|
|
|
4
|
-
function useNavigationItems() {
|
|
4
|
+
function useNavigationItems(options) {
|
|
5
5
|
useAppRouterState();
|
|
6
|
-
return useRuntimeNavigationItems();
|
|
6
|
+
return useRuntimeNavigationItems(options);
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
export { useNavigationItems };
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ export { useUpdateDeferredRegistrations } from './chunk-N2GOIQ5E.js';
|
|
|
6
6
|
export { useCanRegisterDeferredRegistrations } from './chunk-PU7MASPN.js';
|
|
7
7
|
export { useCanUpdateDeferredRegistrations } from './chunk-WVRMJZV6.js';
|
|
8
8
|
export { useIsBootstrapping } from './chunk-I6L3AYOB.js';
|
|
9
|
-
export { useNavigationItems } from './chunk-
|
|
9
|
+
export { useNavigationItems } from './chunk-GXSW4CZS.js';
|
|
10
10
|
export { useProtectedDataQueries } from './chunk-RG5N56BQ.js';
|
|
11
11
|
export { AppRouter } from './chunk-36U4TTNR.js';
|
|
12
12
|
export { useStrictRegistrationMode } from './chunk-WOPD33CM.js';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _squide_react_router from '@squide/react-router';
|
|
2
|
+
import { UseRuntimeNavigationItemsOptions } from '@squide/react-router';
|
|
2
3
|
|
|
3
|
-
declare function useNavigationItems(): _squide_react_router.RootNavigationItem[];
|
|
4
|
+
declare function useNavigationItems(options?: UseRuntimeNavigationItemsOptions): _squide_react_router.RootNavigationItem[];
|
|
4
5
|
|
|
5
6
|
export { useNavigationItems };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { useNavigationItems } from './chunk-
|
|
1
|
+
export { useNavigationItems } from './chunk-GXSW4CZS.js';
|
|
2
2
|
import './chunk-G32YX2KR.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squide/firefly",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "9.0.
|
|
4
|
+
"version": "9.0.1",
|
|
5
5
|
"description": "Helpers to facilitate the creation of an application with the Squide firefly technology stack.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"typescript": "5.5.3"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@squide/core": "5.0.
|
|
61
|
-
"@squide/module-federation": "6.0.
|
|
62
|
-
"@squide/msw": "3.0.
|
|
63
|
-
"@squide/react-router": "6.0.
|
|
60
|
+
"@squide/core": "5.0.1",
|
|
61
|
+
"@squide/module-federation": "6.0.1",
|
|
62
|
+
"@squide/msw": "3.0.1",
|
|
63
|
+
"@squide/react-router": "6.0.1"
|
|
64
64
|
},
|
|
65
65
|
"sideEffects": false,
|
|
66
66
|
"engines": {
|