Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DocGen 23_2 [09/08/23] #5553

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: dxCalendar.Options.value
type: Date | Number | String
type: Date | Number | String | Array<Date, Number, String>
default: null
---
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row insertion.
**false** or a Promise resolved with **false** or **undefined** continues row insertion.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row removal.
**false** or a Promise resolved with **false** or **undefined** continues row removal.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row updating.
**false** or a Promise resolved with **false** or **undefined** continues row updating.

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
id: dxTabs.Options.stylingMode
type: Enums.TabsStyle
default: 'primary'
---
---
##### shortDescription
<!-- Description goes here -->

---
<!-- Description goes here -->
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row insertion.
**false** or a Promise resolved with **false** or **undefined** continues row insertion.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row removal.
**false** or a Promise resolved with **false** or **undefined** continues row removal.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row updating.
**false** or a Promise resolved with **false** or **undefined** continues row updating.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: RowInsertingInfo.cancel
type: Promise<void>
type: Boolean | Promise<Boolean> | Promise<void>
---
---
##### shortDescription
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: RowRemovingInfo.cancel
type: Boolean | Promise<void>
type: Boolean | Promise<Boolean> | Promise<void>
---
---
##### shortDescription
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: RowUpdatingInfo.cancel
type: Boolean | Promise<void>
type: Boolean | Promise<Boolean> | Promise<void>
---
---
##### shortDescription
Expand Down
13 changes: 13 additions & 0 deletions api-reference/_hidden/Enums/TabsStyle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
id: Enums.TabsStyle
acceptValues: 'primary' | 'secondary'
type: Union
---
---
##### shortDescription
<!-- Description goes here -->

---
<!--
dxTabsOptions.stylingMode(/api-reference/10 UI Components/dxTabs/1 Configuration/stylingMode.md)(common.d.ts)
-->
6 changes: 6 additions & 0 deletions metadata/syntax-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -17244,6 +17244,9 @@
"dxTabsOptions.showNavButtons": {
"vue": "show-nav-buttons"
},
"dxTabsOptions.stylingMode": {
"vue": "styling-mode"
},
"dxTagBox": {
"angular": "dx-tag-box",
"react": "TagBox",
Expand Down Expand Up @@ -19524,6 +19527,9 @@
"enums.TabsIconPosition": {
"vue": "tabs-icon-position"
},
"enums.TabsStyle": {
"vue": "tabs-style"
},
"enums.TextBoxPredefinedButton": {
"vue": "text-box-predefined-button"
},
Expand Down