-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SERVICES-2371: simplify implementation
- Loading branch information
1 parent
3ce1b36
commit 3620bab
Showing
7 changed files
with
80 additions
and
81 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
export * from './no.cache'; | ||
export * from './scrollable'; |
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
export class ScrollableOptions { | ||
collection: string = ''; | ||
|
||
constructor(init?: Partial<ScrollableOptions>) { | ||
Object.assign(this, init); | ||
} | ||
} | ||
|
||
export class ScrollableCreateOptions extends ScrollableOptions { | ||
create: boolean = false; | ||
|
||
constructor(init?: Partial<ScrollableCreateOptions>) { | ||
super(init); | ||
Object.assign(this, init); | ||
} | ||
} | ||
|
||
export class ScrollableAfterOptions extends ScrollableOptions { | ||
after: any; | ||
ids: any[] = []; | ||
|
||
constructor(init?: Partial<ScrollableAfterOptions>) { | ||
super(init); | ||
Object.assign(this, init); | ||
} | ||
} |
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