@stackmango/graff 0.1.0

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 (108) hide show
  1. package/README.md +73 -0
  2. package/dist/js/graff.css +1 -0
  3. package/dist/js/index.cjs +213 -0
  4. package/dist/js/index.js +43125 -0
  5. package/dist/js/vite.svg +1 -0
  6. package/dist/types/App.d.ts +1 -0
  7. package/dist/types/App.d.ts.map +1 -0
  8. package/dist/types/Document/Document.d.ts +7 -0
  9. package/dist/types/Document/Document.d.ts.map +1 -0
  10. package/dist/types/Document/index.d.ts +3 -0
  11. package/dist/types/Document/index.d.ts.map +1 -0
  12. package/dist/types/Utils/Connection.d.ts +5 -0
  13. package/dist/types/Utils/Connection.d.ts.map +1 -0
  14. package/dist/types/Utils/Draggable.d.ts +13 -0
  15. package/dist/types/Utils/Draggable.d.ts.map +1 -0
  16. package/dist/types/Utils/Form.d.ts +4 -0
  17. package/dist/types/Utils/Form.d.ts.map +1 -0
  18. package/dist/types/Utils/index.d.ts +6 -0
  19. package/dist/types/Utils/index.d.ts.map +1 -0
  20. package/dist/types/Utils/misc.d.ts +9 -0
  21. package/dist/types/Utils/misc.d.ts.map +1 -0
  22. package/dist/types/Workspace/Workspace.d.ts +4 -0
  23. package/dist/types/Workspace/Workspace.d.ts.map +1 -0
  24. package/dist/types/Workspace/index.d.ts +3 -0
  25. package/dist/types/Workspace/index.d.ts.map +1 -0
  26. package/dist/types/components/Document/Document.d.ts +7 -0
  27. package/dist/types/components/Document/Document.d.ts.map +1 -0
  28. package/dist/types/components/Document/index.d.ts +3 -0
  29. package/dist/types/components/Document/index.d.ts.map +1 -0
  30. package/dist/types/components/UIElements/Dropdown.d.ts +4 -0
  31. package/dist/types/components/UIElements/Dropdown.d.ts.map +1 -0
  32. package/dist/types/components/UIElements/Textbox.d.ts +4 -0
  33. package/dist/types/components/UIElements/Textbox.d.ts.map +1 -0
  34. package/dist/types/components/UIElements/Toggle.d.ts +4 -0
  35. package/dist/types/components/UIElements/Toggle.d.ts.map +1 -0
  36. package/dist/types/components/UIElements/index.d.ts +5 -0
  37. package/dist/types/components/UIElements/index.d.ts.map +1 -0
  38. package/dist/types/components/Utils/Connection.d.ts +5 -0
  39. package/dist/types/components/Utils/Connection.d.ts.map +1 -0
  40. package/dist/types/components/Utils/Draggable.d.ts +13 -0
  41. package/dist/types/components/Utils/Draggable.d.ts.map +1 -0
  42. package/dist/types/components/Utils/Form.d.ts +4 -0
  43. package/dist/types/components/Utils/Form.d.ts.map +1 -0
  44. package/dist/types/components/Utils/index.d.ts +6 -0
  45. package/dist/types/components/Utils/index.d.ts.map +1 -0
  46. package/dist/types/components/Utils/misc.d.ts +9 -0
  47. package/dist/types/components/Utils/misc.d.ts.map +1 -0
  48. package/dist/types/components/Workspace/Workspace.d.ts +4 -0
  49. package/dist/types/components/Workspace/Workspace.d.ts.map +1 -0
  50. package/dist/types/components/Workspace/index.d.ts +3 -0
  51. package/dist/types/components/Workspace/index.d.ts.map +1 -0
  52. package/dist/types/components/index.d.ts +11 -0
  53. package/dist/types/components/index.d.ts.map +1 -0
  54. package/dist/types/components/type.d.ts +5 -0
  55. package/dist/types/components/type.d.ts.map +1 -0
  56. package/dist/types/contexts/Formcontext.d.ts +32 -0
  57. package/dist/types/contexts/Formcontext.d.ts.map +1 -0
  58. package/dist/types/contexts/Graphcontext.d.ts +3 -0
  59. package/dist/types/contexts/Graphcontext.d.ts.map +1 -0
  60. package/dist/types/hooks/useForm.d.ts +3 -0
  61. package/dist/types/hooks/useForm.d.ts.map +1 -0
  62. package/dist/types/hooks/useGraph.d.ts +1 -0
  63. package/dist/types/hooks/useGraph.d.ts.map +1 -0
  64. package/dist/types/hooks/useWorkspace.d.ts +37 -0
  65. package/dist/types/hooks/useWorkspace.d.ts.map +1 -0
  66. package/dist/types/index.d.ts +5 -0
  67. package/dist/types/index.d.ts.map +1 -0
  68. package/dist/types/library/Input.d.ts +77 -0
  69. package/dist/types/library/Input.d.ts.map +1 -0
  70. package/dist/types/library/JSONForms.d.ts +233 -0
  71. package/dist/types/library/JSONForms.d.ts.map +1 -0
  72. package/dist/types/library/NodeTemplates.d.ts +41 -0
  73. package/dist/types/library/NodeTemplates.d.ts.map +1 -0
  74. package/dist/types/library/coordinateSystemUtils.d.ts +29 -0
  75. package/dist/types/library/coordinateSystemUtils.d.ts.map +1 -0
  76. package/dist/types/library/form.d.ts +66 -0
  77. package/dist/types/library/form.d.ts.map +1 -0
  78. package/dist/types/library/misc.d.ts +47 -0
  79. package/dist/types/library/misc.d.ts.map +1 -0
  80. package/dist/types/library/utils.d.ts +104 -0
  81. package/dist/types/library/utils.d.ts.map +1 -0
  82. package/dist/types/library/vectorApi.d.ts +31 -0
  83. package/dist/types/library/vectorApi.d.ts.map +1 -0
  84. package/dist/types/main.d.ts +1 -0
  85. package/dist/types/main.d.ts.map +1 -0
  86. package/dist/types/reducers/form.d.ts +14 -0
  87. package/dist/types/reducers/form.d.ts.map +1 -0
  88. package/dist/types/reducers/graph.d.ts +90 -0
  89. package/dist/types/reducers/graph.d.ts.map +1 -0
  90. package/dist/types/reducers/graph_data.d.ts +1 -0
  91. package/dist/types/reducers/graph_data.d.ts.map +1 -0
  92. package/dist/types/reducers/uiElements.d.ts +5 -0
  93. package/dist/types/reducers/uiElements.d.ts.map +1 -0
  94. package/dist/types/type.d.ts +5 -0
  95. package/dist/types/type.d.ts.map +1 -0
  96. package/dist/types/types/Dataflow.d.ts +1 -0
  97. package/dist/types/types/Dataflow.d.ts.map +1 -0
  98. package/dist/types/types/Execution.d.ts +24 -0
  99. package/dist/types/types/Execution.d.ts.map +1 -0
  100. package/dist/types/types/Form.d.ts +115 -0
  101. package/dist/types/types/Form.d.ts.map +1 -0
  102. package/dist/types/types/Schema.d.ts +23 -0
  103. package/dist/types/types/Schema.d.ts.map +1 -0
  104. package/dist/types/types/UIElements.d.ts +55 -0
  105. package/dist/types/types/UIElements.d.ts.map +1 -0
  106. package/dist/types/types/index.d.ts +564 -0
  107. package/dist/types/types/index.d.ts.map +1 -0
  108. package/package.json +56 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=App.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../src/App.tsx"],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import type { Document_Config } from "../../types/index";
2
+ declare const Document: (props: {
3
+ id: string;
4
+ config: Document_Config<any>;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export default Document;
7
+ //# sourceMappingURL=Document.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Document.d.ts","sourceRoot":"","sources":["../../../src/Document/Document.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAOzD,QAAA,MAAM,QAAQ,GAAE,OAAM;IAAC,EAAE,EAAC,MAAM,CAAC;IAAA,MAAM,EAAC,eAAe,CAAC,GAAG,CAAC,CAAA;CAAC,4CAsJ5D,CAAA;AAED,eAAe,QAAQ,CAAA"}
@@ -0,0 +1,3 @@
1
+ import Document from "./Document";
2
+ export { Document };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Document/index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,OAAO,EAAC,QAAQ,EAAC,CAAA"}
@@ -0,0 +1,5 @@
1
+ import '../../styles/graph.css';
2
+ import type { Connection_Props } from '../../types/index';
3
+ declare const Connection: (props: Connection_Props) => import("react/jsx-runtime").JSX.Element;
4
+ export default Connection;
5
+ //# sourceMappingURL=Connection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../src/Utils/Connection.tsx"],"names":[],"mappings":"AACA,OAAO,wBAAwB,CAAA;AAC/B,OAAO,KAAK,EAAE,gBAAgB,EAAC,MAAM,mBAAmB,CAAC;AAEzD,QAAA,MAAM,UAAU,GAAE,OAAM,gBAAgB,4CAqEvC,CAAA;AAED,eAAe,UAAU,CAAA"}
@@ -0,0 +1,13 @@
1
+ declare const Draggable: (props: {
2
+ dragItem: {
3
+ id: string;
4
+ type: string;
5
+ } | null;
6
+ dragSetter: any;
7
+ excludeChildren?: boolean;
8
+ class?: string;
9
+ style?: any;
10
+ children: any;
11
+ }) => import("react/jsx-runtime").JSX.Element;
12
+ export default Draggable;
13
+ //# sourceMappingURL=Draggable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Draggable.d.ts","sourceRoot":"","sources":["../../../src/Utils/Draggable.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS,GAAE,OAAM;IAAC,QAAQ,EAAC;QAAC,EAAE,EAAC,MAAM,CAAC;QAAA,IAAI,EAAC,MAAM,CAAA;KAAC,GAAC,IAAI,CAAC;IAAA,UAAU,EAAC,GAAG,CAAC;IAAA,eAAe,CAAC,EAAC,OAAO,CAAC;IAAA,KAAK,CAAC,EAAC,MAAM,CAAC;IAAA,KAAK,CAAC,EAAC,GAAG,CAAC;IAAA,QAAQ,EAAC,GAAG,CAAA;CAAC,4CA8B3I,CAAA;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { Form_Props } from "../../types/Form";
2
+ declare const Form: (props: Form_Props) => import("react/jsx-runtime").JSX.Element;
3
+ export default Form;
4
+ //# sourceMappingURL=Form.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../src/Utils/Form.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAMjD,QAAA,MAAM,IAAI,GAAE,OAAM,UAAU,4CA2C3B,CAAA;AA2DD,eAAe,IAAI,CAAA"}
@@ -0,0 +1,6 @@
1
+ import Draggable from './Draggable';
2
+ import Form from './Form';
3
+ import Connection from './Connection';
4
+ export { Draggable, Form, Connection };
5
+ export * from './misc';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,IAAI,MAAM,QAAQ,CAAA;AACzB,OAAO,UAAU,MAAM,cAAc,CAAA;AAErC,OAAO,EAAC,SAAS,EAAC,IAAI,EAAC,UAAU,EAAC,CAAA;AAClC,cAAc,QAAQ,CAAA"}
@@ -0,0 +1,9 @@
1
+ export { AssetsReducer, InteractionReducer, ViewReducer } from "../../../src/reducers/graph";
2
+ export { getSchemaNode } from "../../../src/library/NodeTemplates";
3
+ export { VectorApi } from "../../../src/library/vectorApi";
4
+ export { useWorkspace } from "../../../src/hooks/useWorkspace";
5
+ export { NodeUtils, UIDCreator, schemaNodeExporter } from "../../../src/library/utils";
6
+ export { UiElementsRegistry_Standard } from "../../../src/library/form";
7
+ export { JSONForms } from "../../../src/library/JSONForms";
8
+ export { Context_Workspace } from "../../../src/contexts/Graphcontext";
9
+ //# sourceMappingURL=misc.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"misc.d.ts","sourceRoot":"","sources":["../../../src/Utils/misc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAC,WAAW,EAAC,MAAM,6BAA6B,CAAA;AAC1F,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAA;AAClE,OAAO,EAAC,SAAS,EAAC,MAAM,gCAAgC,CAAA;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAC9D,OAAO,EAAE,SAAS,EAAC,UAAU,EAAC,kBAAkB,EAAE,MAAM,4BAA4B,CAAA;AACpF,OAAO,EAAE,2BAA2B,EAAE,MAAM,2BAA2B,CAAA;AACvE,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAA;AAC1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { Workspace_Props } from "../../types/index";
2
+ declare const Workspace: (props: Workspace_Props<any>) => import("react/jsx-runtime").JSX.Element;
3
+ export default Workspace;
4
+ //# sourceMappingURL=Workspace.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Workspace.d.ts","sourceRoot":"","sources":["../../../src/Workspace/Workspace.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAA2B,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAMlF,QAAA,MAAM,SAAS,GAAE,OAAM,eAAe,CAAC,GAAG,CAAC,4CA+Z1C,CAAA;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,3 @@
1
+ import Workspace from "./Workspace";
2
+ export { Workspace };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Workspace/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,OAAO,EAAC,SAAS,EAAC,CAAA"}
@@ -0,0 +1,7 @@
1
+ import type { Document_Config } from "../../types/index";
2
+ declare const Document: (props: {
3
+ id: string;
4
+ config: Document_Config<any>;
5
+ }) => import("react/jsx-runtime").JSX.Element;
6
+ export default Document;
7
+ //# sourceMappingURL=Document.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Document.d.ts","sourceRoot":"","sources":["../../../../src/components/Document/Document.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAOzD,QAAA,MAAM,QAAQ,GAAE,OAAM;IAAC,EAAE,EAAC,MAAM,CAAC;IAAA,MAAM,EAAC,eAAe,CAAC,GAAG,CAAC,CAAA;CAAC,4CAsJ5D,CAAA;AAED,eAAe,QAAQ,CAAA"}
@@ -0,0 +1,3 @@
1
+ import Document from "./Document";
2
+ export { Document };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Document/index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,OAAO,EAAC,QAAQ,EAAC,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { UIElement_Dropdown } from "../../types/UIElements";
2
+ declare const Dropdown: (props: UIElement_Dropdown) => import("react/jsx-runtime").JSX.Element;
3
+ export default Dropdown;
4
+ //# sourceMappingURL=Dropdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../src/components/UIElements/Dropdown.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAKjE,QAAA,MAAM,QAAQ,GAAE,OAAM,kBAAkB,4CAuBvC,CAAA;AAED,eAAe,QAAQ,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { UIElement_Textbox } from "../../types/UIElements";
2
+ declare const Textbox: (props: UIElement_Textbox) => import("react/jsx-runtime").JSX.Element;
3
+ export default Textbox;
4
+ //# sourceMappingURL=Textbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Textbox.d.ts","sourceRoot":"","sources":["../../../../src/components/UIElements/Textbox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAGhE,QAAA,MAAM,OAAO,GAAE,OAAM,iBAAiB,4CAmBrC,CAAA;AAED,eAAe,OAAO,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { UIElement_Toggle } from "../../types/UIElements";
2
+ declare const Toggle: (props: UIElement_Toggle) => import("react/jsx-runtime").JSX.Element;
3
+ export default Toggle;
4
+ //# sourceMappingURL=Toggle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Toggle.d.ts","sourceRoot":"","sources":["../../../../src/components/UIElements/Toggle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,QAAA,MAAM,MAAM,GAAE,OAAM,gBAAgB,4CAUnC,CAAA;AAED,eAAe,MAAM,CAAA"}
@@ -0,0 +1,5 @@
1
+ import Dropdown from "./Dropdown";
2
+ import Textbox from "./Textbox";
3
+ import Toggle from "./Toggle";
4
+ export { Dropdown, Textbox, Toggle };
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/UIElements/index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAClC,OAAO,OAAO,MAAM,WAAW,CAAC;AAChC,OAAO,MAAM,MAAM,UAAU,CAAC;AAE9B,OAAO,EAAC,QAAQ,EAAC,OAAO,EAAC,MAAM,EAAC,CAAA"}
@@ -0,0 +1,5 @@
1
+ import '../../styles/graph.css';
2
+ import type { Connection_Props } from '../../types/index';
3
+ declare const Connection: (props: Connection_Props) => import("react/jsx-runtime").JSX.Element;
4
+ export default Connection;
5
+ //# sourceMappingURL=Connection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../../src/components/Utils/Connection.tsx"],"names":[],"mappings":"AACA,OAAO,wBAAwB,CAAA;AAC/B,OAAO,KAAK,EAAE,gBAAgB,EAAC,MAAM,mBAAmB,CAAC;AAEzD,QAAA,MAAM,UAAU,GAAE,OAAM,gBAAgB,4CAqEvC,CAAA;AAED,eAAe,UAAU,CAAA"}
@@ -0,0 +1,13 @@
1
+ declare const Draggable: (props: {
2
+ dragItem: {
3
+ id: string;
4
+ type: string;
5
+ } | null;
6
+ dragSetter: any;
7
+ excludeChildren?: boolean;
8
+ class?: string;
9
+ style?: any;
10
+ children: any;
11
+ }) => import("react/jsx-runtime").JSX.Element;
12
+ export default Draggable;
13
+ //# sourceMappingURL=Draggable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Draggable.d.ts","sourceRoot":"","sources":["../../../../src/components/Utils/Draggable.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,SAAS,GAAE,OAAM;IAAC,QAAQ,EAAC;QAAC,EAAE,EAAC,MAAM,CAAC;QAAA,IAAI,EAAC,MAAM,CAAA;KAAC,GAAC,IAAI,CAAC;IAAA,UAAU,EAAC,GAAG,CAAC;IAAA,eAAe,CAAC,EAAC,OAAO,CAAC;IAAA,KAAK,CAAC,EAAC,MAAM,CAAC;IAAA,KAAK,CAAC,EAAC,GAAG,CAAC;IAAA,QAAQ,EAAC,GAAG,CAAA;CAAC,4CA8B3I,CAAA;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { Form_Props } from "../../types/Form";
2
+ declare const Form: (props: Form_Props) => import("react/jsx-runtime").JSX.Element;
3
+ export default Form;
4
+ //# sourceMappingURL=Form.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../../src/components/Utils/Form.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAMjD,QAAA,MAAM,IAAI,GAAE,OAAM,UAAU,4CA2C3B,CAAA;AA2DD,eAAe,IAAI,CAAA"}
@@ -0,0 +1,6 @@
1
+ import Draggable from './Draggable';
2
+ import Form from './Form';
3
+ import Connection from './Connection';
4
+ export { Draggable, Form, Connection };
5
+ export * from './misc';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,IAAI,MAAM,QAAQ,CAAA;AACzB,OAAO,UAAU,MAAM,cAAc,CAAA;AAErC,OAAO,EAAC,SAAS,EAAC,IAAI,EAAC,UAAU,EAAC,CAAA;AAClC,cAAc,QAAQ,CAAA"}
@@ -0,0 +1,9 @@
1
+ export { AssetsReducer, InteractionReducer, ViewReducer } from "../../../src/reducers/graph";
2
+ export { getSchemaNode } from "../../../src/library/NodeTemplates";
3
+ export { VectorApi } from "../../../src/library/vectorApi";
4
+ export { useWorkspace } from "../../../src/hooks/useWorkspace";
5
+ export { NodeUtils, UIDCreator, schemaNodeExporter } from "../../../src/library/utils";
6
+ export { UiElementsRegistry_Standard } from "../../../src/library/form";
7
+ export { JSONForms } from "../../../src/library/JSONForms";
8
+ export { Context_Workspace } from "../../../src/contexts/Graphcontext";
9
+ //# sourceMappingURL=misc.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"misc.d.ts","sourceRoot":"","sources":["../../../../src/components/Utils/misc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAC,WAAW,EAAC,MAAM,6BAA6B,CAAA;AAC1F,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAA;AAClE,OAAO,EAAC,SAAS,EAAC,MAAM,gCAAgC,CAAA;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAA;AAC9D,OAAO,EAAE,SAAS,EAAC,UAAU,EAAC,kBAAkB,EAAE,MAAM,4BAA4B,CAAA;AACpF,OAAO,EAAE,2BAA2B,EAAE,MAAM,2BAA2B,CAAA;AACvE,OAAO,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAA;AAC1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAA"}
@@ -0,0 +1,4 @@
1
+ import type { Workspace_Props } from "../../types/index";
2
+ declare const Workspace: (props: Workspace_Props<any>) => import("react/jsx-runtime").JSX.Element;
3
+ export default Workspace;
4
+ //# sourceMappingURL=Workspace.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Workspace.d.ts","sourceRoot":"","sources":["../../../../src/components/Workspace/Workspace.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAA2B,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAMlF,QAAA,MAAM,SAAS,GAAE,OAAM,eAAe,CAAC,GAAG,CAAC,4CA+Z1C,CAAA;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,3 @@
1
+ import Workspace from "./Workspace";
2
+ export { Workspace };
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Workspace/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,OAAO,EAAC,SAAS,EAAC,CAAA"}
@@ -0,0 +1,11 @@
1
+ declare const FormInputElements: {
2
+ Dropdown: (props: import("./type").UIElement_Dropdown) => import("react/jsx-runtime").JSX.Element;
3
+ Textbox: (props: import("./type").UIElement_Textbox) => import("react/jsx-runtime").JSX.Element;
4
+ Toggle: (props: import("./type").UIElement_Toggle) => import("react/jsx-runtime").JSX.Element;
5
+ };
6
+ export { FormInputElements };
7
+ export { Document } from './Document';
8
+ export { Workspace } from './Workspace';
9
+ export * from './Utils';
10
+ export * from './type';
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,iBAAiB;;;;CAA0B,CAAC;AAElD,OAAO,EAAC,iBAAiB,EAAC,CAAA;AAC1B,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAA;AACnC,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAA;AACrC,cAAc,SAAS,CAAA;AACvB,cAAc,QAAQ,CAAA"}
@@ -0,0 +1,5 @@
1
+ export * from '../types/Form';
2
+ export * from '../types/Schema';
3
+ export * from '../types/UIElements';
4
+ export * from '../types/index';
5
+ //# sourceMappingURL=type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../src/components/type.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import type { Asset_Form, Asset_Form_action, Config_Form, Preferences_Form, Runtime_Form, Runtime_Form_action, Schema_Form, View_Form } from "../types/Form";
3
+ import type { UIElement } from "../types/UIElements";
4
+ import type { PayloadAction } from "@reduxjs/toolkit";
5
+ export type Context_Form = {
6
+ schema: {
7
+ data: Schema_Form;
8
+ };
9
+ asset: {
10
+ data: Asset_Form;
11
+ dispatch: React.Dispatch<Asset_Form_action>;
12
+ };
13
+ view: {
14
+ data: View_Form;
15
+ };
16
+ runtime: {
17
+ data: Runtime_Form;
18
+ dispatch: React.Dispatch<Runtime_Form_action>;
19
+ };
20
+ config: {
21
+ data: Config_Form | null;
22
+ };
23
+ preference: {
24
+ data: Preferences_Form | null;
25
+ };
26
+ uiElementsRegistry: Record<string, {
27
+ component: React.FC<UIElement<any, any, any, any, any, any>>;
28
+ reducer: (state: any, action: PayloadAction) => any;
29
+ }>;
30
+ } | null;
31
+ export declare const Context_Form: React.Context<Context_Form>;
32
+ //# sourceMappingURL=Formcontext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Formcontext.d.ts","sourceRoot":"","sources":["../../../src/contexts/Formcontext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAwB,MAAM,OAAO,CAAA;AAC5C,OAAO,KAAK,EAAE,UAAU,EAAE,iBAAiB,EAAE,WAAW,EAAE,gBAAgB,EAAE,YAAY,EAAE,mBAAmB,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAC5J,OAAO,KAAK,EAAE,SAAS,EAAC,MAAM,qBAAqB,CAAA;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAErD,MAAM,MAAM,YAAY,GAAC;IACrB,MAAM,EAAC;QACH,IAAI,EAAC,WAAW,CAAC;KAEpB,CAAC;IACF,KAAK,EAAC;QACF,IAAI,EAAC,UAAU,CAAC;QAChB,QAAQ,EAAC,KAAK,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAA;KAC7C,CAAC;IACF,IAAI,EAAC;QACD,IAAI,EAAC,SAAS,CAAC;KAElB,CAAC;IACF,OAAO,EAAC;QACJ,IAAI,EAAC,YAAY,CAAC;QAClB,QAAQ,EAAC,KAAK,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAA;KAC/C,CAAC;IACF,MAAM,EAAC;QACH,IAAI,EAAC,WAAW,GAAC,IAAI,CAAC;KAEzB,CAAC;IACF,UAAU,EAAC;QACP,IAAI,EAAC,gBAAgB,GAAC,IAAI,CAAC;KAE9B,CAAC;IACF,kBAAkB,EAAC,MAAM,CAAC,MAAM,EAAC;QAC7B,SAAS,EAAC,KAAK,CAAC,EAAE,CAAC,SAAS,CAAC,GAAG,EAAC,GAAG,EAAC,GAAG,EAAC,GAAG,EAAC,GAAG,EAAC,GAAG,CAAC,CAAC,CAAC;QACvD,OAAO,EAAC,CAAC,KAAK,EAAC,GAAG,EAAC,MAAM,EAAC,aAAa,KAAG,GAAG,CAAA;KAChD,CAAC,CAAA;CACL,GAAC,IAAI,CAAA;AAEN,eAAO,MAAM,YAAY,6BAAkC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { Context_Workspace_Generic } from "../types/index";
2
+ export declare const Context_Workspace: import("react").Context<Context_Workspace_Generic<any>>;
3
+ //# sourceMappingURL=Graphcontext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Graphcontext.d.ts","sourceRoot":"","sources":["../../../src/contexts/Graphcontext.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,yBAAyB,EAAC,MAAM,gBAAgB,CAAA;AAE9D,eAAO,MAAM,iBAAiB,yDAAoD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Context_Form } from "../contexts/Formcontext";
2
+ export declare const useForm: () => Context_Form;
3
+ //# sourceMappingURL=useForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useForm.d.ts","sourceRoot":"","sources":["../../../src/hooks/useForm.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAA;AAEtD,eAAO,MAAM,OAAO,oBAGnB,CAAA"}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=useGraph.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useGraph.d.ts","sourceRoot":"","sources":["../../../src/hooks/useGraph.tsx"],"names":[],"mappings":""}
@@ -0,0 +1,37 @@
1
+ import type { Asset_Generic, Config, Connection_Design_Action, Connection_Skeleton_Action, Document_Action, FreeConnectionsAction, Interaction, Node_Generic_Design_Action, Node_Generic_Skeleton_Action, SelectionBox_Action, View_Generic, Viewport_Action } from "../types/index";
2
+ type UseWorkspace_Config<node_core> = {
3
+ Assets: {
4
+ initialState: Asset_Generic<node_core>;
5
+ reducer: React.Reducer<Asset_Generic<node_core>, Node_Generic_Skeleton_Action<node_core> | Connection_Skeleton_Action>;
6
+ };
7
+ View: {
8
+ initialState: View_Generic;
9
+ reducer: React.Reducer<View_Generic, Node_Generic_Design_Action | Connection_Design_Action | Document_Action | Viewport_Action>;
10
+ };
11
+ Config: {
12
+ initialState: Config;
13
+ };
14
+ Interaction: {
15
+ initialState: Interaction;
16
+ reducer: React.Reducer<Interaction, FreeConnectionsAction | SelectionBox_Action>;
17
+ };
18
+ };
19
+ export declare const useWorkspace: <NodeCore>(workspaceConfig: UseWorkspace_Config<NodeCore>) => {
20
+ assets: {
21
+ data: Asset_Generic<NodeCore>;
22
+ dispatch: import("react").ActionDispatch<[action: Connection_Skeleton_Action | Node_Generic_Skeleton_Action<NodeCore>]>;
23
+ };
24
+ view: {
25
+ data: View_Generic;
26
+ dispatch: import("react").ActionDispatch<[action: Node_Generic_Design_Action | Connection_Design_Action | Viewport_Action | Document_Action]>;
27
+ };
28
+ interaction: {
29
+ data: Interaction;
30
+ dispatch: import("react").ActionDispatch<[action: FreeConnectionsAction | SelectionBox_Action]>;
31
+ };
32
+ config: {
33
+ data: Config;
34
+ };
35
+ };
36
+ export {};
37
+ //# sourceMappingURL=useWorkspace.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useWorkspace.d.ts","sourceRoot":"","sources":["../../../src/hooks/useWorkspace.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,wBAAwB,EAAE,0BAA0B,EAAE,eAAe,EAAE,qBAAqB,EAAE,WAAW,EAAE,0BAA0B,EAAE,4BAA4B,EAAE,mBAAmB,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAEpR,KAAK,mBAAmB,CAAC,SAAS,IAAE;IAChC,MAAM,EAAC;QACH,YAAY,EAAC,aAAa,CAAC,SAAS,CAAC,CAAC;QACtC,OAAO,EAAC,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,SAAS,CAAC,EAAC,4BAA4B,CAAC,SAAS,CAAC,GAAC,0BAA0B,CAAC,CAAA;KACrH,CAAC;IACF,IAAI,EAAC;QACD,YAAY,EAAC,YAAY,CAAC;QAC1B,OAAO,EAAC,KAAK,CAAC,OAAO,CAAC,YAAY,EAAC,0BAA0B,GAAC,wBAAwB,GAAC,eAAe,GAAC,eAAe,CAAC,CAAA;KAC1H,CAAC;IACF,MAAM,EAAC;QACH,YAAY,EAAC,MAAM,CAAC;KAEvB,CAAC;IACF,WAAW,EAAC;QACR,YAAY,EAAC,WAAW,CAAC;QACzB,OAAO,EAAC,KAAK,CAAC,OAAO,CAAC,WAAW,EAAC,qBAAqB,GAAC,mBAAmB,CAAC,CAAA;KAC/E,CAAA;CACJ,CAAA;AAED,eAAO,MAAM,YAAY,GAAE,QAAQ,EAC/B,iBAAiB,mBAAmB,CAAC,QAAQ,CAAC;;;;;;;;;;;;;;;;CAuBjD,CAAA"}
@@ -0,0 +1,5 @@
1
+ export { Document } from './Document';
2
+ export { Workspace } from './Workspace';
3
+ export * from './Utils';
4
+ export * from './type';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAA;AACnC,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAA;AACrC,cAAc,SAAS,CAAA;AACvB,cAAc,QAAQ,CAAA"}
@@ -0,0 +1,77 @@
1
+ import { type DesignUnit, type ServerResponse, type alphanumeric, type DateConfig, type TextStyles, type Listitem } from "@stackmango/formact";
2
+ export declare const InputUiElements: {
3
+ dropdown: {
4
+ field: (props: DesignUnit<null, null, null, {
5
+ fieldIcon?: {
6
+ src: string;
7
+ opacity?: number;
8
+ };
9
+ options: Listitem[];
10
+ placement?: "bottom" | "top";
11
+ selectType: "single" | "multi";
12
+ placeholder?: string;
13
+ boundingWrapperId?: string;
14
+ fieldLabel: string;
15
+ validator?: (value: any) => ServerResponse;
16
+ }, string[], null, null, {
17
+ fieldLabel?: DesignUnit<"wrapper", "input", null, null, string, "field-input-child", TextStyles, null>;
18
+ selectedLabel?: DesignUnit<"wrapper", "input", null, null, string, "field-input-child", TextStyles, null>;
19
+ }>) => import("react/jsx-runtime").JSX.Element;
20
+ component: (props: DesignUnit<null, null, null, {
21
+ options: Listitem[];
22
+ placement?: "bottom" | "top";
23
+ selectType: "single" | "multi";
24
+ placeholder?: string;
25
+ validator?: (value: any) => ServerResponse;
26
+ }, string[], null, null, any>) => import("react/jsx-runtime").JSX.Element;
27
+ };
28
+ textbox: {
29
+ field: (props: DesignUnit<null, null, null, {
30
+ fieldIcon?: {
31
+ src: string;
32
+ opacity?: number;
33
+ };
34
+ fieldLabel: string;
35
+ validator?: (value: any) => ServerResponse;
36
+ dataType: "int" | "float" | "alphanumeric";
37
+ placeholder?: alphanumeric;
38
+ showCopyButton: boolean;
39
+ }, alphanumeric, null, null, {
40
+ fieldLabel: DesignUnit<"wrapper", "input", null, null, string, "field-input-child", TextStyles, null>;
41
+ }>) => import("react/jsx-runtime").JSX.Element;
42
+ component: (props: DesignUnit<null, null, null, {
43
+ fieldIcon?: {
44
+ src: string;
45
+ opacity?: number;
46
+ };
47
+ fieldLabel: string;
48
+ validator?: (value: any) => ServerResponse;
49
+ dataType: "int" | "float" | "alphanumeric";
50
+ placeholder?: alphanumeric;
51
+ showCopyButton: boolean;
52
+ }, alphanumeric, null, null, null>) => import("react/jsx-runtime").JSX.Element;
53
+ };
54
+ textarea: {
55
+ component: (props: DesignUnit<null, null, null, {
56
+ fieldIcon?: {
57
+ src: string;
58
+ opacity?: number;
59
+ };
60
+ fieldLabel: string;
61
+ validator?: (value: any) => ServerResponse;
62
+ dataType: "int" | "float" | "alphanumeric";
63
+ placeholder?: alphanumeric;
64
+ showCopyButton: boolean;
65
+ }, alphanumeric, null, null, null>) => import("react/jsx-runtime").JSX.Element;
66
+ };
67
+ date: {
68
+ field: (props: DesignUnit<null, null, null, DateConfig & {
69
+ fieldLabel: string;
70
+ showErrors?: boolean;
71
+ }, string, null, null, {
72
+ fieldLabel: DesignUnit<"wrapper", "input", null, null, string, "field-input-child", TextStyles, null>;
73
+ }>) => import("react/jsx-runtime").JSX.Element;
74
+ component: (props: DesignUnit<null, null, null, DateConfig, alphanumeric, null, null, null>) => import("react/jsx-runtime").JSX.Element;
75
+ };
76
+ };
77
+ //# sourceMappingURL=Input.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/library/Input.tsx"],"names":[],"mappings":"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"}