mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-03-24 03:37:51 -04:00
feat: Implement collapsible left and right panels with dynamic column spanning, updated styling, and integrated a bottom status bar in the DesignerRoot.
This commit is contained in:
@@ -67,6 +67,10 @@ export interface InspectorPanelProps {
|
||||
name: string;
|
||||
version: string;
|
||||
}>;
|
||||
/**
|
||||
* Called to clear all validation issues.
|
||||
*/
|
||||
onClearAll?: () => void;
|
||||
}
|
||||
|
||||
export function InspectorPanel({
|
||||
@@ -77,6 +81,7 @@ export function InspectorPanel({
|
||||
studyPlugins,
|
||||
collapsed,
|
||||
onCollapse,
|
||||
onClearAll,
|
||||
}: InspectorPanelProps) {
|
||||
/* ------------------------------------------------------------------------ */
|
||||
/* Store Selectors */
|
||||
@@ -323,6 +328,7 @@ export function InspectorPanel({
|
||||
>
|
||||
<ValidationPanel
|
||||
issues={validationIssues}
|
||||
onClearAll={onClearAll}
|
||||
entityLabelForId={(entityId) => {
|
||||
if (entityId.startsWith("action-")) {
|
||||
for (const s of steps) {
|
||||
|
||||
Reference in New Issue
Block a user