diff --git a/libs/remix-ui/home-tab/src/lib/components/types/carouselTypes.ts b/libs/remix-ui/home-tab/src/lib/components/types/carouselTypes.ts index d65054171dd..d2e6948062f 100644 --- a/libs/remix-ui/home-tab/src/lib/components/types/carouselTypes.ts +++ b/libs/remix-ui/home-tab/src/lib/components/types/carouselTypes.ts @@ -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; }; } @@ -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; diff --git a/libs/remix-ui/plugin-manager/src/types.d.ts b/libs/remix-ui/plugin-manager/src/types.d.ts index 12ca50195e2..ffc9231d2b5 100644 --- a/libs/remix-ui/plugin-manager/src/types.d.ts +++ b/libs/remix-ui/plugin-manager/src/types.d.ts @@ -148,7 +148,7 @@ export interface RemixUiPluginManagerProps { **/ declare class PluginLoader { get currentLoader(): any - donotAutoReload: string[] + doNotAutoReload: string[] loaders: Record current: string set(plugin: any, actives: any): void