@lobb-js/lobb-ext-reports 0.1.31 → 0.1.32
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
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
3
3
|
|
|
4
4
|
- - -
|
|
5
|
+
## reports-ext-studio@0.1.32 - 2026-02-22
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- adding a studio prefix for the studio app - (6607b5a) - malik ben
|
|
8
|
+
#### Miscellaneous Chores
|
|
9
|
+
- (**version**) 0.14.2 - (6ecdc1d) - Cocogitto Bot
|
|
10
|
+
|
|
11
|
+
- - -
|
|
12
|
+
|
|
5
13
|
## reports-ext-studio@0.1.31 - 2026-02-21
|
|
6
14
|
#### Bug Fixes
|
|
7
15
|
- using default export instead of named export for extensions - (37dd485) - malik ben
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobb-js/lobb-ext-reports",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@lobb-js/studio": "0.3.
|
|
18
|
+
"@lobb-js/studio": "0.3.2",
|
|
19
19
|
"chart.js": "^4.4.8",
|
|
20
20
|
"lodash-es": "^4.17.21"
|
|
21
21
|
},
|
package/src/index.ts
CHANGED
|
@@ -12,7 +12,7 @@ export default function extension(utils: ExtensionUtils): Extension {
|
|
|
12
12
|
dashboardNavs: {
|
|
13
13
|
middle: [
|
|
14
14
|
{
|
|
15
|
-
href: "/extensions/reports/analytics",
|
|
15
|
+
href: "/studio/extensions/reports/analytics",
|
|
16
16
|
icon: utils.components.Icons.ChartNoAxesCombined,
|
|
17
17
|
label: "Analytics",
|
|
18
18
|
},
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
const { utils, ...props }: ExtensionProps = $props();
|
|
7
7
|
|
|
8
|
-
let extensionPagePath = "/extensions/reports/analytics";
|
|
8
|
+
let extensionPagePath = "/studio/extensions/reports/analytics";
|
|
9
9
|
let reportId: string | null = $derived(getReportID(utils.location));
|
|
10
10
|
let sideBarData: any = $state(null);
|
|
11
11
|
const {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
function getReportID(location: Location) {
|
|
60
|
-
return location.url.pathname.split("/")[
|
|
60
|
+
return location.url.pathname.split("/")[5];
|
|
61
61
|
}
|
|
62
62
|
</script>
|
|
63
63
|
|