Skip to content
New issue

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

Fixed typos and improved clarity in documentation #5621

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export interface ResponsiveType {
breakpoint: { max: number; min: number };
items: number;
partialVisibilityGutter?: number; // back-ward compatible, because previously there has been a typo
paritialVisibilityGutter?: number;
slidesToSlide?: number;
};
}
Expand Down Expand Up @@ -49,14 +48,13 @@ export interface CarouselProps {
// partialVisible has to be used in conjunction with the responsive props, details are in documentation.
// it shows the next set of items partially, different from centerMode as it shows both.
partialVisible?: boolean;
partialVisbile?: boolean; // old typo - deprecated (will be remove in 3.0)
customTransition?: string;
transitionDuration?: number;
// if you are using customTransition, make sure to put the duration here.
// for example, customTransition="all .5" then put transitionDuration as 500.
// this is needed for the resizing to work.
focusOnSelect?: boolean;
additionalTransfrom?: number; // this is only used if you want to add additional transform to the current transform
additionalTransform?: number; // this is only used if you want to add additional transform to the current transform
pauseOnHover?: boolean;
shouldResetAutoplay?: boolean;
rewind?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion libs/remix-ui/plugin-manager/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export interface RemixUiPluginManagerProps {
**/
declare class PluginLoader {
get currentLoader(): any
donotAutoReload: string[]
doNotAutoReload: string[]
loaders: Record<any, any>
current: string
set(plugin: any, actives: any): void
Expand Down