Skip to content

Commit

Permalink
Fix #5854: Galleria onShow/onHide warnings (#5856)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jan 30, 2024
1 parent 17ba99b commit ad59eb0
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions components/lib/galleria/GalleriaBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,42 +380,44 @@ const inlineStyles = {
export const GalleriaBase = ComponentBase.extend({
defaultProps: {
__TYPE: 'Galleria',
id: null,
value: null,
activeIndex: 0,
fullScreen: false,
item: null,
thumbnail: null,
indicator: null,
autoPlay: false,
baseZIndex: 0,
caption: null,
changeItemOnIndicatorHover: false,
children: undefined,
circular: false,
className: null,
closeIcon: null,
style: null,
header: null,
footer: null,
numVisible: 3,
responsiveOptions: null,
showItemNavigators: false,
showThumbnailNavigators: true,
showItemNavigatorsOnHover: false,
changeItemOnIndicatorHover: false,
circular: false,
autoPlay: false,
transitionInterval: 4000,
showThumbnails: true,
fullScreen: false,
header: null,
id: null,
indicator: null,
indicatorsPosition: 'bottom',
item: null,
itemNextIcon: null,
itemPrevIcon: null,
nextThumbnailIcon: null,
numVisible: 3,
onHide: null,
onItemChange: null,
onShow: null,
prevThumbnailIcon: null,
thumbnailsPosition: 'bottom',
verticalThumbnailViewPortHeight: '300px',
responsiveOptions: null,
showIndicators: false,
showIndicatorsOnItem: false,
indicatorsPosition: 'bottom',
baseZIndex: 0,
showItemNavigators: false,
showItemNavigatorsOnHover: false,
showThumbnailNavigators: true,
showThumbnails: true,
style: null,
thumbnail: null,
thumbnailsPosition: 'bottom',
transitionInterval: 4000,
transitionOptions: null,
onItemChange: null,
children: undefined
value: null,
verticalThumbnailViewPortHeight: '300px'
},
css: {
classes,
Expand Down

0 comments on commit ad59eb0

Please sign in to comment.