Skip to content

Commit

Permalink
Box/ResponsiveBox baseSize option - Add string to accepted type (#25923)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderPolosatov authored Nov 1, 2023
1 parent cb25247 commit c436908
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/ui/box.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export interface dxBoxItem<TKey = any> extends CollectionWidgetItem {
* @default 0
* @public
*/
baseSize?: number | Mode;
baseSize?: number | string;
/**
* @docid
* @default undefined
Expand Down
4 changes: 2 additions & 2 deletions js/ui/responsive_box.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export interface dxResponsiveBoxOptions<
* @docid
* @default 0
*/
baseSize?: number | Mode;
baseSize?: number | string;
/**
* @docid
* @default 1
Expand Down Expand Up @@ -152,7 +152,7 @@ export interface dxResponsiveBoxOptions<
* @docid
* @default 0
*/
baseSize?: number | Mode;
baseSize?: number | string;
/**
* @docid
* @default 1
Expand Down
6 changes: 3 additions & 3 deletions ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8947,7 +8947,7 @@ declare module DevExpress.ui {
/**
* [descr:dxBoxItem.baseSize]
*/
baseSize?: number | DevExpress.common.Mode;
baseSize?: number | string;
/**
* [descr:dxBoxItem.box]
*/
Expand Down Expand Up @@ -23346,7 +23346,7 @@ declare module DevExpress.ui {
/**
* [descr:dxResponsiveBoxOptions.cols.baseSize]
*/
baseSize?: number | DevExpress.common.Mode;
baseSize?: number | string;
/**
* [descr:dxResponsiveBoxOptions.cols.ratio]
*/
Expand Down Expand Up @@ -23379,7 +23379,7 @@ declare module DevExpress.ui {
/**
* [descr:dxResponsiveBoxOptions.rows.baseSize]
*/
baseSize?: number | DevExpress.common.Mode;
baseSize?: number | string;
/**
* [descr:dxResponsiveBoxOptions.rows.ratio]
*/
Expand Down

0 comments on commit c436908

Please sign in to comment.