mistercrunch commented on issue #33441:
URL: https://github.com/apache/superset/issues/33441#issuecomment-2920582126

   Thinking more in terms of frontend package architecture and how it could be 
structured ...
   
   ```mermaid
   flowchart TD
     dfasf
     %% External apps
     third_party["3rd Party Apps"]
   
     %% Superset Monorepo container
     subgraph superset_repo["Superset Repo"]
       direction TB
   
       superset["superset-frontend/"]
   
       subgraph Public ["Public"]
         direction TB
   
         subgraph sdks ["SDKs"]
           direction TB
           sdk1["sdk-embed/"]
           sdk2["sdk-visualization/"]
         end
       end
   
       subgraph Private ["Private"]
         direction TB
   
         core["superset-ui/core/"]
   
         subgraph plugins ["Plugins"]
           direction TB
           plugin_echarts["plugin-chart-echarts/"]
           plugin_table["plugin-chart-table/"]
           plugin_more["..."]
         end
   
         controls["superset-ui-chart/controls/"]
         switchboard["superset-ui-switchboard/"]
       end
   
       %% Internal app dependencies
       superset --> core
       superset --> controls
       superset --> plugins
       superset --> sdks
       superset --> switchboard
   
       %% SDK and internal deps
       sdks --> core
       plugins --> core
       controls --> core
       switchboard --> core
     end
   
     %% External usage
     third_party --> sdks
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to