-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Norman Rusch
committed
Sep 22, 2021
1 parent
778a827
commit f42862d
Showing
27 changed files
with
442 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { IFeature, IProxy, UpdateData } from '../../types'; | ||
export declare type Configuration = { | ||
enabled: boolean; | ||
className: string; | ||
tagName: string; | ||
}; | ||
/** | ||
* The feature to enable/disabled mask and scrollbar features. This feature will | ||
* be added by default to each carousel. Use this feature to customize the default behaviour. | ||
*/ | ||
export declare class Mask implements IFeature { | ||
constructor(options?: Partial<Configuration>); | ||
get name(): string; | ||
get el(): Element | null; | ||
init(proxy: IProxy): void; | ||
destroy(): void; | ||
update(data: UpdateData): void; | ||
private _render; | ||
private _remove; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { IFeature, IProxy, UpdateData } from '../../types'; | ||
/** | ||
* Feature to enable mouse controls | ||
* @hidden | ||
*/ | ||
export declare class Mouse implements IFeature { | ||
get name(): string; | ||
init(proxy: IProxy): void; | ||
destroy(): void; | ||
update(data: UpdateData): void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.