@lobb-js/lobb-ext-reports 0.1.29 → 0.1.30
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 +8 -0
- package/package.json +2 -2
- package/src/index.ts +2 -2
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.30 - 2026-02-19
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- fixing the issue of the reports extension - (5e8c2d2) - Malik Najjar
|
|
8
|
+
#### Miscellaneous Chores
|
|
9
|
+
- (**version**) 0.12.1 - (c548105) - Cocogitto Bot
|
|
10
|
+
|
|
11
|
+
- - -
|
|
12
|
+
|
|
5
13
|
## reports-ext-studio@0.1.29 - 2026-02-19
|
|
6
14
|
#### Bug Fixes
|
|
7
15
|
- making the reports work - (1b87561) - Malik Najjar
|
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.30",
|
|
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.2.
|
|
18
|
+
"@lobb-js/studio": "0.2.12",
|
|
19
19
|
"chart.js": "^4.4.8",
|
|
20
20
|
"lodash-es": "^4.17.21"
|
|
21
21
|
},
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Extension, ExtensionUtils } from "@lobb-js/studio";
|
|
2
|
-
import Reports from "
|
|
3
|
-
import QueryAiButton from "
|
|
2
|
+
import Reports from "./lib/components/pages/reports/index.svelte";
|
|
3
|
+
import QueryAiButton from "./lib/components/dv_fields_buttons/query_ai_button/index.svelte";
|
|
4
4
|
|
|
5
5
|
export function extension(utils: ExtensionUtils): Extension {
|
|
6
6
|
return {
|