@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.
- package/dist/code-graph.css +1 -11
- package/dist/code-graph.js +875 -1266
- package/dist/code-graph.umd.cjs +1 -1833
- package/dist/{lib/index.d.ts → index.d.ts} +1 -0
- package/dist/interfaceTypes/default.d.ts +8 -0
- package/dist/interfaceTypes/index.d.ts +1 -0
- package/package.json +2 -2
- /package/dist/{lib/code.d.ts → code.d.ts} +0 -0
- /package/dist/{lib/codeNode → codeNode}/codeNode.d.ts +0 -0
- /package/dist/{lib/codeNode → codeNode}/defineCodeNode.d.ts +0 -0
- /package/dist/{lib/codeNode → codeNode}/dynamicCodeNode.d.ts +0 -0
- /package/dist/{lib/codeNode → codeNode}/index.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/baseNumericInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/button/buttonInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/checkbox/checkboxInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeInput/codeInputInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeNode/CodeNodeInterface.vue.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeNode/codeNodeInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeOutput/codeOutputInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/index.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/integer/integerInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/number/numberInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/select/selectInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/slider/sliderInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/text/textInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/textInput/textInputInterface.d.ts +0 -0
- /package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/textareaInput/textareaInputInterface.d.ts +0 -0
- /package/dist/{lib/components → components}/CodeGraphEditor.vue.d.ts +0 -0
- /package/dist/{lib/components → components}/index.d.ts +0 -0
- /package/dist/{lib/components → components}/node/CodeGraphNode.vue.d.ts +0 -0
- /package/dist/{lib/components → components}/nodeInterface/CodeGraphNodeInterface.vue.d.ts +0 -0
- /package/dist/{lib/components → components}/nodePalette/CodeNodePalette.vue.d.ts +0 -0
- /package/dist/{lib/components → components}/nodePalette/PaletteEntry.vue.d.ts +0 -0
- /package/dist/{lib/components → components}/sidebar/Checkbox.vue.d.ts +0 -0
- /package/dist/{lib/components → components}/sidebar/CodeGraphSidebar.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/LayoutSidebarLeftCollapse.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/LayoutSidebarLeftExpand.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/LayoutSidebarRight.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/LayoutSidebarRightCollapse.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/LayoutSidebarRightExpand.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/Schema.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/SchemaOff.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/TrashOff.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/VerticalDots.vue.d.ts +0 -0
- /package/dist/{lib/icons → icons}/index.d.ts +0 -0
- /package/dist/{lib/settings.d.ts → settings.d.ts} +0 -0
- /package/dist/{lib/viewModel.d.ts → viewModel.d.ts} +0 -0
|
@@ -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.
|
|
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/
|
|
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
|
/package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeInput/codeInputInterface.d.ts
RENAMED
|
File without changes
|
/package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeNode/CodeNodeInterface.vue.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/codeOutput/codeOutputInterface.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{lib/codeNodeInterfaces → codeNodeInterfaces}/textInput/textInputInterface.d.ts
RENAMED
|
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
|
|
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
|