testeranto 0.233.6 → 0.233.7

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "testeranto",
3
3
  "displayName": "Testeranto",
4
4
  "description": "the Dockerized, AI powered, BDD test framework for polyglot projects",
5
- "version": "0.233.6",
5
+ "version": "0.233.7",
6
6
  "engines": {
7
7
  "node": ">=20.19.0",
8
8
  "vscode": "^1.60.0",
@@ -1,10 +1,12 @@
1
1
  import { useMemo } from 'react';
2
- import { GraphData, ProjectionConfig } from '../core/types';
2
+
3
3
  import { projectGraph } from '../core/projection';
4
+ // import type { GraphData } from '..';
5
+ // import type { ProjectionConfig } from '..';
4
6
 
5
7
  export function useProjection(
6
- data: GraphData,
7
- config: ProjectionConfig
8
+ data: any,
9
+ config: any
8
10
  ) {
9
11
  return useMemo(() => {
10
12
  return projectGraph(data, config);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "grafeovidajo",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "grafeovidajo",
9
- "version": "0.0.8",
9
+ "version": "0.0.10",
10
10
  "dependencies": {
11
11
  "@types/glob": "^9.0.0",
12
12
  "glob": "^13.0.6"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grafeovidajo",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Visualization library for Testeranto",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -374,6 +374,7 @@ window.TESTERANTO_EMBEDDED_DATA = JSON.parse(atob('${base64String}'));
374
374
  modifiedHtml = htmlContent + scriptTag;
375
375
  }
376
376
 
377
+ console.log("mark1", modifiedHtml)
377
378
  return modifiedHtml;
378
379
  } catch (error) {
379
380
  console.error("Error generating HTML with embedded data:", error);