@squide/firefly 9.1.1 → 9.2.0
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 +27 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @squide/firefly
|
|
2
2
|
|
|
3
|
+
## 9.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#204](https://github.com/gsoft-inc/wl-squide/pull/204) [`d3f7b9c`](https://github.com/gsoft-inc/wl-squide/commit/d3f7b9c6aa80249cd898916f6315ea27c4526812) Thanks [@patricklafrance](https://github.com/patricklafrance)! - The `registerNavigationItem` function now accepts a `sectionId` option to nest the item under a specific navigation section:
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
runtime.registerNavigationItem(
|
|
11
|
+
{
|
|
12
|
+
$id: "link",
|
|
13
|
+
$label: "Link",
|
|
14
|
+
to: "/link",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
sectionId: "some-section",
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`d3f7b9c`](https://github.com/gsoft-inc/wl-squide/commit/d3f7b9c6aa80249cd898916f6315ea27c4526812)]:
|
|
25
|
+
- @squide/module-federation@6.1.0
|
|
26
|
+
- @squide/react-router@6.2.0
|
|
27
|
+
- @squide/core@5.2.0
|
|
28
|
+
- @squide/msw@3.1.0
|
|
29
|
+
|
|
3
30
|
## 9.1.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squide/firefly",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.2.0",
|
|
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": {
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"react-router-dom": "*"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@swc/core": "1.7.
|
|
37
|
+
"@swc/core": "1.7.26",
|
|
38
38
|
"@swc/jest": "0.2.36",
|
|
39
|
-
"@testing-library/jest-dom": "6.
|
|
40
|
-
"@testing-library/react": "16.0.
|
|
41
|
-
"@types/jest": "29.5.
|
|
42
|
-
"@types/react": "18.3.
|
|
39
|
+
"@testing-library/jest-dom": "6.5.0",
|
|
40
|
+
"@testing-library/react": "16.0.1",
|
|
41
|
+
"@types/jest": "29.5.13",
|
|
42
|
+
"@types/react": "18.3.8",
|
|
43
43
|
"@types/react-dom": "18.3.0",
|
|
44
44
|
"@workleap/eslint-plugin": "3.2.2",
|
|
45
45
|
"@workleap/swc-configs": "2.2.3",
|
|
@@ -48,19 +48,19 @@
|
|
|
48
48
|
"eslint": "8.57.0",
|
|
49
49
|
"jest": "29.7.0",
|
|
50
50
|
"jest-environment-jsdom": "29.7.0",
|
|
51
|
-
"msw": "2.
|
|
51
|
+
"msw": "2.4.9",
|
|
52
52
|
"react": "18.3.1",
|
|
53
53
|
"react-dom": "18.3.1",
|
|
54
|
-
"react-router-dom": "6.
|
|
55
|
-
"ts-jest": "29.2.
|
|
56
|
-
"tsup": "8.
|
|
57
|
-
"typescript": "5.5.
|
|
54
|
+
"react-router-dom": "6.26.2",
|
|
55
|
+
"ts-jest": "29.2.5",
|
|
56
|
+
"tsup": "8.3.0",
|
|
57
|
+
"typescript": "5.5.4"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@squide/core": "5.
|
|
61
|
-
"@squide/module-federation": "6.0
|
|
62
|
-
"@squide/msw": "3.0
|
|
63
|
-
"@squide/react-router": "6.
|
|
60
|
+
"@squide/core": "5.2.0",
|
|
61
|
+
"@squide/module-federation": "6.1.0",
|
|
62
|
+
"@squide/msw": "3.1.0",
|
|
63
|
+
"@squide/react-router": "6.2.0"
|
|
64
64
|
},
|
|
65
65
|
"sideEffects": false,
|
|
66
66
|
"engines": {
|