@@ -1419,6 +1419,13 @@ var control = (function(){
14191419func : function ( ) {
14201420render ( ) ;
14211421}
1422+ } , {
1423+ element : helper . e ( ".control-link-item-line-show" ) ,
1424+ path : "link.item.line.show" ,
1425+ type : "checkbox" ,
1426+ func : function ( ) {
1427+ render ( ) ;
1428+ }
14221429} , {
14231430element : helper . e ( ".control-link-area-gap" ) ,
14241431path : "link.area.gap" ,
@@ -1849,6 +1856,7 @@ var control = (function(){
18491856helper . removeClass ( html , "is-link-url-show" ) ;
18501857helper . removeClass ( html , "is-link-url-style-light" ) ;
18511858helper . removeClass ( html , "is-link-url-style-dark" ) ;
1859+ helper . removeClass ( html , "is-link-item-line-show" ) ;
18521860helper . removeClass ( html , "is-link-item-alignment-horizontal-left" ) ;
18531861helper . removeClass ( html , "is-link-item-alignment-horizontal-center" ) ;
18541862helper . removeClass ( html , "is-link-item-alignment-horizontal-right" ) ;
@@ -1872,6 +1880,9 @@ var control = (function(){
18721880if ( state . get ( ) . link . item . url . show ) {
18731881helper . addClass ( html , "is-link-url-show" ) ;
18741882} ;
1883+ if ( state . get ( ) . link . item . line . show ) {
1884+ helper . addClass ( html , "is-link-item-line-show" ) ;
1885+ } ;
18751886if ( state . get ( ) . link . edit ) {
18761887helper . addClass ( html , "is-link-edit" ) ;
18771888link . render . tabIndex ( ) ;
@@ -2200,6 +2211,7 @@ var control = (function(){
22002211helper . e ( ".control-link-item-url-show" ) . disabled = true ;
22012212helper . e ( ".control-link-item-url-style-dark" ) . disabled = true ;
22022213helper . e ( ".control-link-item-url-style-light" ) . disabled = true ;
2214+ helper . e ( ".control-link-item-line-show" ) . disabled = true ;
22032215helper . e ( "[for=control-link-area-gap]" ) . setAttribute ( "disabled" , "" ) ;
22042216helper . e ( ".control-link-area-gap" ) . disabled = true ;
22052217helper . e ( ".control-link-item-display-alignment-horizontal-label" ) . setAttribute ( "disabled" , "" ) ;
@@ -2231,6 +2243,7 @@ var control = (function(){
22312243helper . e ( ".control-link-item-display-show" ) . disabled = false ;
22322244helper . e ( ".control-link-item-name-show" ) . disabled = false ;
22332245helper . e ( ".control-link-item-url-show" ) . disabled = false ;
2246+ helper . e ( ".control-link-item-line-show" ) . disabled = false ;
22342247helper . e ( "[for=control-link-area-gap]" ) . removeAttribute ( "disabled" ) ;
22352248helper . e ( ".control-link-area-gap" ) . disabled = false ;
22362249helper . e ( ".control-link-new-tab" ) . disabled = false ;
0 commit comments