@power-maverick/tool-erd-generator 1.0.0 → 1.0.1

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 (3) hide show
  1. package/README.md +14 -5
  2. package/dist/index.js +19 -18
  3. package/package.json +6 -1
package/README.md CHANGED
@@ -8,8 +8,8 @@ A PowerPlatform ToolBox tool for generating Entity Relationship Diagrams (ERD) f
8
8
  - ✅ Vite for fast development and building
9
9
  - ✅ Access to ToolBox API via `window.toolboxAPI`
10
10
  - ✅ Dataverse connection and authentication
11
- - ✅ Multiple ERD formats: Mermaid, PlantUML, Graphviz
12
- - ✅ Visual Mermaid diagram rendering
11
+ - ✅ Multiple ERD formats: Mermaid, PlantUML, Graphviz, Draw.io
12
+ - ✅ Visual diagram rendering (Mermaid, PlantUML, Draw.io)
13
13
  - ✅ Configurable output (attributes, relationships, table limits)
14
14
  - ✅ Export diagrams (download source files or copy to clipboard)
15
15
  - ✅ Interactive UI with solution selection
@@ -114,11 +114,12 @@ The tool demonstrates:
114
114
 
115
115
  ### ERD Generation
116
116
 
117
- Supports three formats:
117
+ Supports four formats:
118
118
 
119
119
  1. **Mermaid** - Visual diagrams with interactive rendering
120
120
  2. **PlantUML** - Text-based UML diagrams
121
121
  3. **Graphviz** - DOT language for graph visualization
122
+ 4. **Draw.io** - XML format for diagrams.net/draw.io
122
123
 
123
124
  Configuration options:
124
125
  - Include/exclude attributes
@@ -153,14 +154,14 @@ The tool:
153
154
  2. Lists available solutions
154
155
  3. Fetches solution metadata (tables, attributes, relationships)
155
156
  4. Generates diagram in selected format
156
- 5. Renders visual preview (Mermaid) or shows source code
157
+ 5. Renders visual preview (Mermaid, PlantUML, Draw.io) or shows source code
157
158
  6. Allows export via download or clipboard
158
159
 
159
160
  ## Configuration Options
160
161
 
161
162
  The tool provides several configuration options:
162
163
 
163
- - **Output Format**: Choose between Mermaid, PlantUML, or Graphviz
164
+ - **Output Format**: Choose between Mermaid, PlantUML, Graphviz, or Draw.io
164
165
  - **Include Attributes**: Show/hide table columns in the diagram
165
166
  - **Include Relationships**: Show/hide relationships between tables
166
167
  - **Max Attributes**: Limit the number of attributes shown per table (0 = show all)
@@ -182,6 +183,14 @@ The tool provides several configuration options:
182
183
  - Powerful layout engines
183
184
  - Flexible customization options
184
185
 
186
+ ### Draw.io
187
+ - Native diagrams.net/draw.io XML format
188
+ - Visual preview using embedded draw.io viewer
189
+ - Can be opened directly in draw.io web or desktop app
190
+ - mxGraph-based format with entity-relationship notation
191
+ - Tables displayed with attributes and relationships
192
+ - Entities positioned in an organized grid layout
193
+
185
194
  ## Troubleshooting
186
195
 
187
196
  ### Build Issues