@@ -1947,6 +1947,13 @@ var control = (function(){
19471947func : function ( ) {
19481948render . class ( ) ;
19491949}
1950+ } , {
1951+ element : helper . e ( ".control-link-item-shadow-show" ) ,
1952+ path : "link.item.shadow.show" ,
1953+ type : "checkbox" ,
1954+ func : function ( ) {
1955+ render . class ( ) ;
1956+ }
19501957} , {
19511958element : helper . e ( ".control-link-item-name-show" ) ,
19521959path : "link.item.name.show" ,
@@ -2531,6 +2538,7 @@ var control = (function(){
25312538helper . removeClass ( html , "is-link-display-alignment-bottomright" ) ;
25322539helper . removeClass ( html , "is-link-item-url-show" ) ;
25332540helper . removeClass ( html , "is-link-item-line-show" ) ;
2541+ helper . removeClass ( html , "is-link-item-shadow-show" ) ;
25342542helper . removeClass ( html , "is-link-item-hoverscale" ) ;
25352543helper . removeClass ( html , "is-link-item-alignment-left" ) ;
25362544helper . removeClass ( html , "is-link-item-alignment-center" ) ;
@@ -2559,6 +2567,9 @@ var control = (function(){
25592567if ( state . get ( ) . link . item . line . show ) {
25602568helper . addClass ( html , "is-link-item-line-show" ) ;
25612569} ;
2570+ if ( state . get ( ) . link . item . shadow . show ) {
2571+ helper . addClass ( html , "is-link-item-shadow-show" ) ;
2572+ } ;
25622573if ( state . get ( ) . link . item . hoverScale ) {
25632574helper . addClass ( html , "is-link-item-hoverscale" ) ;
25642575} ;
@@ -2969,6 +2980,7 @@ var control = (function(){
29692980_disable . element ( ".control-link-item-order-namedisplay-helper" , true ) ;
29702981_disable . input ( ".control-link-item-url-show" , true ) ;
29712982_disable . input ( ".control-link-item-line-show" , true ) ;
2983+ _disable . input ( ".control-link-item-shadow-show" , true ) ;
29722984_disable . input ( ".control-link-item-hoverscale" , true ) ;
29732985_disable . element ( ".control-link-item-display-alignment-grid" , true ) ;
29742986_disable . element ( ".control-link-item-display-alignment-label" , true ) ;
@@ -3015,6 +3027,7 @@ var control = (function(){
30153027_disable . input ( ".control-link-item-name-show" , false ) ;
30163028_disable . input ( ".control-link-item-url-show" , false ) ;
30173029_disable . input ( ".control-link-item-line-show" , false ) ;
3030+ _disable . input ( ".control-link-item-shadow-show" , false ) ;
30183031_disable . input ( ".control-link-item-hoverscale" , false ) ;
30193032_disable . input ( ".control-link-newtab" , false ) ;
30203033_disable . input ( ".control-link-style-block" , false ) ;
0 commit comments