File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
client/packages/lowcoder/src/comps Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ let TourBasicComp = (function() {
52
52
arrow : step . arrow || true ,
53
53
placement : step . placement as PlacementType ,
54
54
mask : step . mask ,
55
+ cover : step . cover ? ( < img src = { step . cover } /> ) : undefined ,
55
56
type : step . type || "default" ,
56
57
} ;
57
58
} ) ;
Original file line number Diff line number Diff line change @@ -409,6 +409,7 @@ let TourStep = new MultiCompBuilder(
409
409
placement : dropdownControl ( PlacementOptions , "bottom" ) ,
410
410
hidden : BoolCodeControl ,
411
411
mask : MaskControl ,
412
+ cover : StringControl ,
412
413
type : dropdownControl ( TypeOptions , "default" ) ,
413
414
} ,
414
415
( props ) => props
@@ -438,6 +439,9 @@ TourStep = class extends TourStep implements TourStepCompProperty {
438
439
label : "Arrow" ,
439
440
} ) }
440
441
{ hiddenPropertyView ( this . children ) }
442
+ { this . children . cover . propertyView ( {
443
+ label : "Cover Image Url"
444
+ } ) }
441
445
{ this . children . mask . propertyView ( {
442
446
label : "Mask" ,
443
447
tooltip : TourStepMaskTooltip ,
You can’t perform that action at this time.
0 commit comments