-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: alexlavrov <[email protected]> Co-authored-by: ilyakhd <[email protected]> Co-authored-by: Roman Semenov <[email protected]>
- Loading branch information
1 parent
0998624
commit 65b5555
Showing
58 changed files
with
1,754 additions
and
735 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
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
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,70 @@ | ||
/* tslint:disable:max-line-length */ | ||
|
||
import { NestedOption } from 'devextreme-angular/core'; | ||
import { | ||
Component, | ||
} from '@angular/core'; | ||
|
||
import { DisplayMode, Mode } from 'devextreme/common'; | ||
import { PagerPageSize } from 'devextreme/common/grids'; | ||
|
||
@Component({ | ||
template: '' | ||
}) | ||
export abstract class DxoPager extends NestedOption { | ||
get allowedPageSizes(): Mode | Array<PagerPageSize | number> { | ||
return this._getOption('allowedPageSizes'); | ||
} | ||
set allowedPageSizes(value: Mode | Array<PagerPageSize | number>) { | ||
this._setOption('allowedPageSizes', value); | ||
} | ||
|
||
get displayMode(): DisplayMode { | ||
return this._getOption('displayMode'); | ||
} | ||
set displayMode(value: DisplayMode) { | ||
this._setOption('displayMode', value); | ||
} | ||
|
||
get infoText(): string { | ||
return this._getOption('infoText'); | ||
} | ||
set infoText(value: string) { | ||
this._setOption('infoText', value); | ||
} | ||
|
||
get label(): string { | ||
return this._getOption('label'); | ||
} | ||
set label(value: string) { | ||
this._setOption('label', value); | ||
} | ||
|
||
get showInfo(): boolean { | ||
return this._getOption('showInfo'); | ||
} | ||
set showInfo(value: boolean) { | ||
this._setOption('showInfo', value); | ||
} | ||
|
||
get showNavigationButtons(): boolean { | ||
return this._getOption('showNavigationButtons'); | ||
} | ||
set showNavigationButtons(value: boolean) { | ||
this._setOption('showNavigationButtons', value); | ||
} | ||
|
||
get showPageSizeSelector(): boolean { | ||
return this._getOption('showPageSizeSelector'); | ||
} | ||
set showPageSizeSelector(value: boolean) { | ||
this._setOption('showPageSizeSelector', value); | ||
} | ||
|
||
get visible(): Mode | boolean { | ||
return this._getOption('visible'); | ||
} | ||
set visible(value: Mode | boolean) { | ||
this._setOption('visible', value); | ||
} | ||
} |
Oops, something went wrong.