@@ -353,7 +353,12 @@ function CllToggleDemo() {
353353 }
354354 label = "Column-Level Lineage"
355355 />
356- < Typography variant = "body2" color = "text.secondary" >
356+ < Typography
357+ variant = "body2"
358+ sx = { {
359+ color : "text.secondary" ,
360+ } }
361+ >
357362 { cllEnabled
358363 ? "CLL enabled - columns visible inside nodes"
359364 : "CLL disabled - positions should be preserved" }
@@ -524,12 +529,16 @@ function ColumnClickingReflowDemo() {
524529 >
525530 < Typography variant = "h6" > Column Clicking Reflow</ Typography >
526531 { reflowDetected && (
527- < Typography variant = "body2" color = "error.contrastText" >
532+ < Typography
533+ variant = "body2"
534+ sx = { {
535+ color : "error.contrastText" ,
536+ } }
537+ >
528538 ⚠️ REFLOW DETECTED! Count: { reflowCount }
529539 </ Typography >
530540 ) }
531541 </ Box >
532-
533542 { /* Main content */ }
534543 < Box sx = { { flex : 1 , display : "flex" , minHeight : 0 } } >
535544 { /* Lineage Canvas */ }
@@ -557,10 +566,20 @@ function ColumnClickingReflowDemo() {
557566 } }
558567 >
559568 < Box sx = { { p : 2 , borderBottom : 1 , borderColor : "divider" } } >
560- < Typography variant = "subtitle1" fontWeight = "bold" >
569+ < Typography
570+ variant = "subtitle1"
571+ sx = { {
572+ fontWeight : "bold" ,
573+ } }
574+ >
561575 stg_orders
562576 </ Typography >
563- < Typography variant = "caption" color = "text.secondary" >
577+ < Typography
578+ variant = "caption"
579+ sx = { {
580+ color : "text.secondary" ,
581+ } }
582+ >
564583 Click columns to view their lineage
565584 </ Typography >
566585 </ Box >
@@ -572,7 +591,12 @@ function ColumnClickingReflowDemo() {
572591 onClick = { handleClearSelection }
573592 style = { { cursor : "pointer" } }
574593 >
575- < Typography variant = "body2" color = "text.secondary" >
594+ < Typography
595+ variant = "body2"
596+ sx = { {
597+ color : "text.secondary" ,
598+ } }
599+ >
576600 Clear selection
577601 </ Typography >
578602 </ Box >
@@ -607,13 +631,20 @@ function ColumnClickingReflowDemo() {
607631 < Box >
608632 < Typography
609633 variant = "body2"
610- fontWeight = { isSelected ? "bold" : "normal" }
634+ sx = { {
635+ fontWeight : isSelected ? "bold" : "normal" ,
636+ } }
611637 >
612638 { index + 1 } . { columnName }
613639 { ! isClickable && " (no CLL data)" }
614640 </ Typography >
615641 </ Box >
616- < Typography variant = "caption" color = "text.secondary" >
642+ < Typography
643+ variant = "caption"
644+ sx = { {
645+ color : "text.secondary" ,
646+ } }
647+ >
617648 { columnName === "order_id"
618649 ? "BIGINT"
619650 : columnName === "customer_id"
@@ -629,7 +660,12 @@ function ColumnClickingReflowDemo() {
629660
630661 { /* Instructions */ }
631662 < Box sx = { { p : 2 , borderTop : 1 , borderColor : "divider" } } >
632- < Typography variant = "body2" color = "text.secondary" >
663+ < Typography
664+ variant = "body2"
665+ sx = { {
666+ color : "text.secondary" ,
667+ } }
668+ >
633669 < strong > How to reproduce:</ strong >
634670 < br />
635671 1. Click on "customer_id" column
@@ -800,12 +836,16 @@ function LargeGraphReflowDemo() {
800836 >
801837 < Typography variant = "h6" > Large Graph Reflow</ Typography >
802838 { reflowDetected && (
803- < Typography variant = "body2" color = "error.contrastText" >
839+ < Typography
840+ variant = "body2"
841+ sx = { {
842+ color : "error.contrastText" ,
843+ } }
844+ >
804845 ⚠️ REFLOW DETECTED! Count: { reflowCount }
805846 </ Typography >
806847 ) }
807848 </ Box >
808-
809849 { /* Main content */ }
810850 < Box sx = { { flex : 1 , display : "flex" , minHeight : 0 } } >
811851 { /* Lineage Canvas */ }
@@ -833,10 +873,20 @@ function LargeGraphReflowDemo() {
833873 } }
834874 >
835875 < Box sx = { { p : 2 , borderBottom : 1 , borderColor : "divider" } } >
836- < Typography variant = "subtitle1" fontWeight = "bold" >
876+ < Typography
877+ variant = "subtitle1"
878+ sx = { {
879+ fontWeight : "bold" ,
880+ } }
881+ >
837882 order_items
838883 </ Typography >
839- < Typography variant = "caption" color = "text.secondary" >
884+ < Typography
885+ variant = "caption"
886+ sx = { {
887+ color : "text.secondary" ,
888+ } }
889+ >
840890 Click columns to view their lineage
841891 </ Typography >
842892 </ Box >
@@ -848,7 +898,12 @@ function LargeGraphReflowDemo() {
848898 onClick = { handleClearSelection }
849899 style = { { cursor : "pointer" } }
850900 >
851- < Typography variant = "body2" color = "text.secondary" >
901+ < Typography
902+ variant = "body2"
903+ sx = { {
904+ color : "text.secondary" ,
905+ } }
906+ >
852907 Clear selection
853908 </ Typography >
854909 </ Box >
@@ -884,13 +939,20 @@ function LargeGraphReflowDemo() {
884939 < Box >
885940 < Typography
886941 variant = "body2"
887- fontWeight = { isSelected ? "bold" : "normal" }
942+ sx = { {
943+ fontWeight : isSelected ? "bold" : "normal" ,
944+ } }
888945 >
889946 { index + 1 } . { columnName }
890947 { ! isClickable && " (no CLL data)" }
891948 </ Typography >
892949 </ Box >
893- < Typography variant = "caption" color = "text.secondary" >
950+ < Typography
951+ variant = "caption"
952+ sx = { {
953+ color : "text.secondary" ,
954+ } }
955+ >
894956 TEXT
895957 </ Typography >
896958 </ Box >
@@ -900,7 +962,12 @@ function LargeGraphReflowDemo() {
900962
901963 { /* Instructions */ }
902964 < Box sx = { { p : 2 , borderTop : 1 , borderColor : "divider" } } >
903- < Typography variant = "body2" color = "text.secondary" >
965+ < Typography
966+ variant = "body2"
967+ sx = { {
968+ color : "text.secondary" ,
969+ } }
970+ >
904971 < strong > How to reproduce:</ strong >
905972 < br />
906973 1. Click on "ORDER_ID" column
0 commit comments