Merge branch 'master' of https://github.com/primefaces/primevue
commit
bc3655b82a
|
@ -31,7 +31,7 @@ const CascadeSelectProps = [
|
|||
},
|
||||
{
|
||||
name: "optionGroupChildren",
|
||||
type: "string",
|
||||
type: "array",
|
||||
default: "null",
|
||||
description: "Property name or getter function to retrieve the items of a group."
|
||||
},
|
||||
|
|
|
@ -6,7 +6,7 @@ interface CascadeSelectProps {
|
|||
optionLabel?: string;
|
||||
optionValue?: any;
|
||||
optionGroupLabel?: string;
|
||||
optionGroupChildren?: string;
|
||||
optionGroupChildren?: string[];
|
||||
placeholder?: string;
|
||||
disabled?: boolean;
|
||||
dataKey?: string;
|
||||
|
|
|
@ -66,7 +66,7 @@ export default {
|
|||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
inputClass: toString,
|
||||
inputClass: String,
|
||||
inputStyle: null,
|
||||
style: null,
|
||||
class: String,
|
||||
|
|
|
@ -167,7 +167,7 @@ data() {
|
|||
</tr>
|
||||
<tr>
|
||||
<td>optionGroupChildren</td>
|
||||
<td>string</td>
|
||||
<td>array</td>
|
||||
<td>null</td>
|
||||
<td>Property name or getter function to retrieve the items of a group.</td>
|
||||
</tr>
|
||||
|
@ -609,4 +609,4 @@ img {
|
|||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue