We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i notice in the docs it just shows transition options in the option object?
const masonryOptions = { transitionDuration: 0 };
Do you guys have more options or does any thing can go inside of it.
The text was updated successfully, but these errors were encountered:
Hi @Code4Zelda those options should be the same as the options you'd pass into Masonry. https://masonry.desandro.com/options.html
Sorry, something went wrong.
`export interface MasonryOptions { columnWidth?: number | string | HTMLElement | null; itemSelector?: string; gutter?: number | string; percentPosition?: boolean; horizontalOrder?: boolean; stamp?: string; fitWidth?: boolean; originLeft?: boolean; originTop?: boolean; containerStyle?: Object; transitionDuration?: number | string; resize?: boolean; initLayout?: boolean; }
export interface MasonryPropTypes { enableResizableChildren?: boolean; disableImagesLoaded?: boolean; updateOnEachImageLoad?: boolean; onImagesLoaded?: (instance: any) => void; options?: MasonryOptions; className?: string; elementType?: string; style?: Object; onLayoutComplete?: (instance: any) => void; onRemoveComplete?: (instance: any) => void; } `
No branches or pull requests
i notice in the docs it just shows transition options in the option object?
const masonryOptions = {
transitionDuration: 0
};
Do you guys have more options or does any thing can go inside of it.
The text was updated successfully, but these errors were encountered: