Skip to content

Commit

Permalink
fix: rename to PagerBase
Browse files Browse the repository at this point in the history
pomahtri committed Oct 9, 2024
1 parent ee3b475 commit b7a6d1c
Showing 8 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion packages/devextreme-angular/src/common/index.ts
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ export {
Orientation,
PageLoadMode,
PageOrientation,
PagerBaseProperties,
PagerBase,
PatternRule,
Position,
PositionAlignment,
12 changes: 6 additions & 6 deletions packages/devextreme-angular/src/ui/pagination/index.ts
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ export class DxPaginationComponent extends DxComponent implements OnDestroy, OnC


/**
* [descr:PagerBaseProperties.displayMode]
* [descr:PagerBase.displayMode]
*/
@Input()
@@ -188,7 +188,7 @@ export class DxPaginationComponent extends DxComponent implements OnDestroy, OnC


/**
* [descr:PagerBaseProperties.infoText]
* [descr:PagerBase.infoText]
*/
@Input()
@@ -214,7 +214,7 @@ export class DxPaginationComponent extends DxComponent implements OnDestroy, OnC


/**
* [descr:PagerBaseProperties.label]
* [descr:PagerBase.label]
*/
@Input()
@@ -266,7 +266,7 @@ export class DxPaginationComponent extends DxComponent implements OnDestroy, OnC


/**
* [descr:PagerBaseProperties.showInfo]
* [descr:PagerBase.showInfo]
*/
@Input()
@@ -279,7 +279,7 @@ export class DxPaginationComponent extends DxComponent implements OnDestroy, OnC


/**
* [descr:PagerBaseProperties.showNavigationButtons]
* [descr:PagerBase.showNavigationButtons]
*/
@Input()
@@ -292,7 +292,7 @@ export class DxPaginationComponent extends DxComponent implements OnDestroy, OnC


/**
* [descr:PagerBaseProperties.showPageSizeSelector]
* [descr:PagerBase.showPageSizeSelector]
*/
@Input()
2 changes: 1 addition & 1 deletion packages/devextreme-react/src/common/index.ts
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ export {
Orientation,
PageLoadMode,
PageOrientation,
PagerBaseProperties,
PagerBase,
PatternRule,
Position,
PositionAlignment,
2 changes: 1 addition & 1 deletion packages/devextreme-vue/src/common/index.ts
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ export {
Orientation,
PageLoadMode,
PageOrientation,
PagerBaseProperties,
PagerBase,
PatternRule,
Position,
PositionAlignment,
2 changes: 1 addition & 1 deletion packages/devextreme/js/common.d.ts
Original file line number Diff line number Diff line change
@@ -849,7 +849,7 @@ export type DisplayMode = 'adaptive' | 'compact' | 'full';
* @hidden
* @namespace DevExpress.common
*/
export type PagerBaseProperties = {
export type PagerBase = {
/**
* @docid
* @public
6 changes: 3 additions & 3 deletions packages/devextreme/js/common/grids.d.ts
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ import {
Sortable,
SortOrder,
ValidationRule,
PagerBaseProperties,
PagerBase,
} from '../common';

import {
@@ -2495,10 +2495,10 @@ export type NewRowPosition = 'first' | 'last' | 'pageBottom' | 'pageTop' | 'view
/**
* @docid
* @public
* @inherits PagerBaseProperties
* @inherits PagerBase
* @namespace DevExpress.common.grids
*/
export type Pager = PagerBaseProperties & {
export type Pager = PagerBase & {
/**
* @docid
* @public
6 changes: 3 additions & 3 deletions packages/devextreme/js/ui/pager.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Widget, { WidgetOptions } from './widget/ui.widget';
import {
PagerBaseProperties,
PagerBase,
} from '../common';

export {
@@ -17,9 +17,9 @@ export type PageSize = number | 'all';
* @namespace DevExpress.ui
* @public
* @docid
* @inherits PagerBaseProperties
* @inherits PagerBase
*/
export interface dxPaginationOptions extends PagerBaseProperties, WidgetOptions<dxPagination> {
export interface dxPaginationOptions extends PagerBase, WidgetOptions<dxPagination> {
/**
* @docid
* @fires Properties.onOptionChanged
20 changes: 10 additions & 10 deletions packages/devextreme/ts/dx.all.d.ts
Original file line number Diff line number Diff line change
@@ -1659,32 +1659,32 @@ declare module DevExpress.common {
export type PageLoadMode = 'nextButton' | 'scrollBottom';
export type PageOrientation = 'portrait' | 'landscape';
/**
* [descr:PagerBaseProperties]
* [descr:PagerBase]
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export type PagerBaseProperties = {
export type PagerBase = {
/**
* [descr:PagerBaseProperties.displayMode]
* [descr:PagerBase.displayMode]
*/
displayMode?: DisplayMode;
/**
* [descr:PagerBaseProperties.infoText]
* [descr:PagerBase.infoText]
*/
infoText?: string;
/**
* [descr:PagerBaseProperties.showInfo]
* [descr:PagerBase.showInfo]
*/
showInfo?: boolean;
/**
* [descr:PagerBaseProperties.showNavigationButtons]
* [descr:PagerBase.showNavigationButtons]
*/
showNavigationButtons?: boolean;
/**
* [descr:PagerBaseProperties.showPageSizeSelector]
* [descr:PagerBase.showPageSizeSelector]
*/
showPageSizeSelector?: boolean;
/**
* [descr:PagerBaseProperties.label]
* [descr:PagerBase.label]
*/
label?: string;
};
@@ -4320,7 +4320,7 @@ declare module DevExpress.common.grids {
/**
* [descr:Pager]
*/
export type Pager = PagerBaseProperties & {
export type Pager = PagerBase & {
/**
* [descr:Pager.allowedPageSizes]
*/
@@ -21791,7 +21791,7 @@ declare module DevExpress.ui {
* @deprecated [depNote:dxPaginationOptions]
*/
export interface dxPaginationOptions
extends DevExpress.common.PagerBaseProperties,
extends DevExpress.common.PagerBase,
WidgetOptions<dxPagination> {
/**
* [descr:dxPaginationOptions.pageIndex]

0 comments on commit b7a6d1c

Please sign in to comment.