Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ interface TourGuideZoneProps {
borderRadius?: number // round corner when rectangle
keepTooltipPosition?: boolean
tooltipBottomOffset?: number
tooltipLeftOffset?: number
children: React.ReactNode
}

Expand Down
1 change: 1 addition & 0 deletions src/components/Step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ interface Props {
children: React.ReactNode
keepTooltipPosition?: boolean
tooltipBottomOffset?: number
tooltipLeftOffset?: number
borderRadiusObject?: BorderRadiusObject
}

Expand Down
3 changes: 3 additions & 0 deletions src/components/TourGuideZone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export interface TourGuideZoneProps {
style?: StyleProp<ViewStyle>
keepTooltipPosition?: boolean
tooltipBottomOffset?: number
tooltipLeftOffset?: number
borderRadiusObject?: BorderRadiusObject
}

Expand All @@ -31,6 +32,7 @@ export const TourGuideZone = ({
style,
keepTooltipPosition,
tooltipBottomOffset,
tooltipLeftOffset,
borderRadiusObject,
}: TourGuideZoneProps) => {
if (!isTourGuide) {
Expand All @@ -49,6 +51,7 @@ export const TourGuideZone = ({
borderRadius,
keepTooltipPosition,
tooltipBottomOffset,
tooltipLeftOffset,
borderRadiusObject,
}}
>
Expand Down