fix doc and api-gen

This commit is contained in:
Tuğçe Küçükoğlu 2021-12-07 09:21:20 +03:00
parent 52e2b79a92
commit b97a34f9ac
7 changed files with 26 additions and 26 deletions

View file

@ -13,25 +13,25 @@ const CascadeSelectProps = [
},
{
name: "optionLabel",
type: "string",
type: "string | function",
default: "null",
description: "Property name or getter function to use as the label of an option."
},
{
name: "optionValue",
type: "string",
type: "string | function",
default: "null",
description: "Property name or getter function to use as the value of an option, defaults to the option itself when not defined."
},
{
name: "optionGroupLabel",
type: "string",
type: "string | function",
default: "null",
description: "Property name or getter function to use as the label of an option group."
},
{
name: "optionGroupChildren",
type: "array",
type: "array | function",
default: "null",
description: "Property name or getter function to retrieve the items of a group."
},