You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-18Lines changed: 20 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,8 @@ The data passed to the treeview should be an array of nodes, where each node has
119
119
expanded:true,
120
120
selected:false,
121
121
input: {
122
-
value:false
122
+
value:false,
123
+
disabled:false
123
124
}
124
125
},
125
126
children: []
@@ -137,28 +138,29 @@ The data passed to the treeview should be an array of nodes, where each node has
137
138
state: {
138
139
expanded:true,
139
140
selected:false
140
-
// No input state here; to let complex radio button groupings work, state is bound to a tree-level property
141
+
// No input state here; to let complex radio button groupings work, state value is bound to a tree-level property. disabled, however, is valid here for radio buttons.
141
142
},
142
143
children: []
143
144
}
144
145
```
145
146
146
-
| Prop | Type | Description | Default value | Required |
Copy file name to clipboardExpand all lines: appveyor.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ deploy_script:
33
33
if ($env:APPVEYOR_REPO_TAG -eq "true")
34
34
{
35
35
# npm_auth_token defined in the appveyor project on the site. https://www.appveyor.com/docs/lang/nodejs-iojs/#authenticating-npm-for-publishing-packages
0 commit comments