Skip to content

Commit

Permalink
fix(treeview): prop names need to be camelCase (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekosaur authored and KaelWD committed Oct 25, 2018
1 parent b6bf879 commit fadbeda
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/lang/en/components/Treeview.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@
"v-treeview": {
"activatable": "Allows user to mark a node as active by clicking on it",
"active": "Syncable prop that allows one to control which nodes are active. The array consists of the `item-key` of each active item.",
"expand-icon": "Icon used to indicate that a node can be expanded",
"expandIcon": "Icon used to indicate that a node can be expanded",
"hoverable": "Applies a hover class when mousing over nodes",
"indeterminate-icon": "Icon used when node is in an indeterminate state",
"item-children": "Property on supplied `items` that contains its children",
"item-key": "Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items.",
"item-text": "Property on supplied `items` that contains its label text",
"indeterminateIcon": "Icon used when node is in an indeterminate state",
"itemChildren": "Property on supplied `items` that contains its children",
"itemKey": "Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items.",
"itemText": "Property on supplied `items` that contains its label text",
"items": "An array of items used to build the treeview",
"load-children": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise.",
"loading-icon": "Icon used when node is in a loading state",
"multiple-active": "When `true`, allows user to have multiple active nodes at the same time",
"off-icon": "Icon used when node is not selected",
"on-icon": "Icon used when leaf node is selected or when a branch node is fully selected",
"loadChildren": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise.",
"loadingIcon": "Icon used when node is in a loading state",
"multipleActive": "When `true`, allows user to have multiple active nodes at the same time",
"offIcon": "Icon used when node is not selected",
"onIcon": "Icon used when leaf node is selected or when a branch node is fully selected",
"open": "Syncable prop that allows one to control which nodes are open. The array consists of the `item-key` of each open item.",
"open-all": "When `true` will cause all branch nodes to be opened when component is mounted",
"open-on-click": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon",
"openAll": "When `true` will cause all branch nodes to be opened when component is mounted",
"openOnClick": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon",
"selectable": "Will render a checkbox next to each node allowing them to be selected",
"selected-color": "The color of the selection checkbox",
"selectedColor": "The color of the selection checkbox",
"transition": "Applies a transition when nodes are opened and closed",
"value": "Allows one to control which nodes are selected. The array consists of the `item-key` of each selected item. Is used with `@input` event to allow for `v-model` binding."
}
Expand Down

0 comments on commit fadbeda

Please sign in to comment.