Skip to content

Commit

Permalink
DocGen 23_2 result
Browse files Browse the repository at this point in the history
  • Loading branch information
dxrobot committed Sep 8, 2023
1 parent 1aaa769 commit 6d701bd
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 10 deletions.
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

0 comments on commit 6d701bd

Please sign in to comment.