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