Diagrams #17

Merged
MartinKavik merged 18 commits from diagrams into main 2024-11-08 20:35:07 +00:00
MartinKavik commented 2024-10-13 16:52:44 +00:00 (Migrated from github.com)

Typed Excalidraw integration + default configuration + exposed JS API to draw elements + JS bundles minification

video_diagrams

Notes:

  • The diagram is stored in test_files/basic_diagram.excalidraw
  • The JS script:
FW.draw_diagram_element({id: 'my_rectangle', type: 'rectangle', x: 1000,  y: 250, strokeColor: 'black', backgroundColor: 'lightblue', fillStyle: 'solid', strokeWidth: 5, strokeStyle: 'solid', roundness: null, roughness: 0, opacity: 100, width: 100, height: 50, angle: 0, seed: 0, version: 0, versionNonce: 0, isDeleted: false, groupIds: [], frameId: null, boundElements: null, updated: 0, link: null, locked: false, customData: {}})
Typed Excalidraw integration + default configuration + exposed JS API to draw elements + JS bundles minification ![video_diagrams](https://github.com/user-attachments/assets/bd165068-2be4-491e-9579-830b0a7c4d9d) Notes: - The diagram is stored in `test_files/basic_diagram.excalidraw` - The JS script: ```js FW.draw_diagram_element({id: 'my_rectangle', type: 'rectangle', x: 1000, y: 250, strokeColor: 'black', backgroundColor: 'lightblue', fillStyle: 'solid', strokeWidth: 5, strokeStyle: 'solid', roundness: null, roughness: 0, opacity: 100, width: 100, height: 50, angle: 0, seed: 0, version: 0, versionNonce: 0, isDeleted: false, groupIds: [], frameId: null, boundElements: null, updated: 0, link: null, locked: false, customData: {}}) ```
Sign in to join this conversation.
No description provided.