@babsey/code-graph 0.0.8 → 0.0.10

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.
Files changed (47) hide show
  1. package/dist/code-graph.css +1 -11
  2. package/dist/code-graph.js +875 -1266
  3. package/dist/code-graph.umd.cjs +1 -1833
  4. package/dist/{lib/index.d.ts → index.d.ts} +1 -0
  5. package/dist/interfaceTypes/default.d.ts +8 -0
  6. package/dist/interfaceTypes/index.d.ts +1 -0
  7. package/package.json +2 -2
  8. /package/dist/{lib/code.d.ts → code.d.ts} +0 -0
  9. /package/dist/{lib/codeNode → codeNode}/codeNode.d.ts +0 -0
  10. /package/dist/{lib/codeNode → codeNode}/defineCodeNode.d.ts +0 -0
  11. /package/dist/{lib/codeNode → codeNode}/dynamicCodeNode.d.ts +0 -0
  12. /package/dist/{lib/codeNode → codeNode}/index.d.ts +0 -0
  13. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/baseNumericInterface.d.ts +0 -0
  14. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/button/buttonInterface.d.ts +0 -0
  15. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/checkbox/checkboxInterface.d.ts +0 -0
  16. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeInput/codeInputInterface.d.ts +0 -0
  17. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeNode/CodeNodeInterface.vue.d.ts +0 -0
  18. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeNode/codeNodeInterface.d.ts +0 -0
  19. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeOutput/codeOutputInterface.d.ts +0 -0
  20. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/index.d.ts +0 -0
  21. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/integer/integerInterface.d.ts +0 -0
  22. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/number/numberInterface.d.ts +0 -0
  23. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/select/selectInterface.d.ts +0 -0
  24. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/slider/sliderInterface.d.ts +0 -0
  25. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/text/textInterface.d.ts +0 -0
  26. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/textInput/textInputInterface.d.ts +0 -0
  27. /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/textareaInput/textareaInputInterface.d.ts +0 -0
  28. /package/dist/{lib/components → components}/CodeGraphEditor.vue.d.ts +0 -0
  29. /package/dist/{lib/components → components}/index.d.ts +0 -0
  30. /package/dist/{lib/components → components}/node/CodeGraphNode.vue.d.ts +0 -0
  31. /package/dist/{lib/components → components}/nodeInterface/CodeGraphNodeInterface.vue.d.ts +0 -0
  32. /package/dist/{lib/components → components}/nodePalette/CodeNodePalette.vue.d.ts +0 -0
  33. /package/dist/{lib/components → components}/nodePalette/PaletteEntry.vue.d.ts +0 -0
  34. /package/dist/{lib/components → components}/sidebar/Checkbox.vue.d.ts +0 -0
  35. /package/dist/{lib/components → components}/sidebar/CodeGraphSidebar.vue.d.ts +0 -0
  36. /package/dist/{lib/icons → icons}/LayoutSidebarLeftCollapse.vue.d.ts +0 -0
  37. /package/dist/{lib/icons → icons}/LayoutSidebarLeftExpand.vue.d.ts +0 -0
  38. /package/dist/{lib/icons → icons}/LayoutSidebarRight.vue.d.ts +0 -0
  39. /package/dist/{lib/icons → icons}/LayoutSidebarRightCollapse.vue.d.ts +0 -0
  40. /package/dist/{lib/icons → icons}/LayoutSidebarRightExpand.vue.d.ts +0 -0
  41. /package/dist/{lib/icons → icons}/Schema.vue.d.ts +0 -0
  42. /package/dist/{lib/icons → icons}/SchemaOff.vue.d.ts +0 -0
  43. /package/dist/{lib/icons → icons}/TrashOff.vue.d.ts +0 -0
  44. /package/dist/{lib/icons → icons}/VerticalDots.vue.d.ts +0 -0
  45. /package/dist/{lib/icons → icons}/index.d.ts +0 -0
  46. /package/dist/{lib/settings.d.ts → settings.d.ts} +0 -0
  47. /package/dist/{lib/viewModel.d.ts → viewModel.d.ts} +0 -0
@@ -2,5 +2,6 @@ export * from './codeNode';
2
2
  export * from './codeNodeInterfaces';
3
3
  export * from './code';
4
4
  export * from './components';
5
+ export * from './interfaceTypes';
5
6
  export * from './viewModel';
6
7
  export * from './settings';
@@ -0,0 +1,8 @@
1
+ import { IBaklavaViewModel, NodeInterfaceType } from 'baklavajs';
2
+ export declare const booleanType: NodeInterfaceType<boolean>;
3
+ export declare const dictType: NodeInterfaceType<object>;
4
+ export declare const listType: NodeInterfaceType<object>;
5
+ export declare const nodeType: NodeInterfaceType<null>;
6
+ export declare const numberType: NodeInterfaceType<number>;
7
+ export declare const stringType: NodeInterfaceType<string>;
8
+ export declare const addDefaultTypes: (baklavaView: IBaklavaViewModel) => void;
@@ -0,0 +1 @@
1
+ export * from './default';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babsey/code-graph",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "author": "babsey <spreizer@web.de>",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -41,7 +41,7 @@
41
41
  "vue-codemirror": "~6.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@tsconfig/node22": "~22.0",
44
+ "@tsconfig/node-lts": "~22.0",
45
45
  "@types/mustache": "~4.2",
46
46
  "@types/node": "~24.5",
47
47
  "@types/toposort": "~2.0",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes