pull/1375/head
Tuğçe Küçükoğlu 2021-07-14 17:12:17 +03:00
parent e8738455d0
commit 519e9d70bf
4 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ const AutoCompleteProps = [
{ {
name: "completeOnFocus", name: "completeOnFocus",
type: "boolean", type: "boolean",
default: false, default: "false",
description: "Whether to run a query when input receives focus." description: "Whether to run a query when input receives focus."
}, },
{ {

View File

@ -244,7 +244,7 @@ const CalendarProps = [
name: "style", name: "style",
type: "any", type: "any",
default: "null", default: "null",
description: "Inline of the component." description: "Inline style of the component."
} }
]; ];

View File

@ -232,12 +232,12 @@ const FileUploadEvents = [
description: "Callback to invoke when a singe file is removed from the list.", description: "Callback to invoke when a singe file is removed from the list.",
arguments: [ arguments: [
{ {
file: "event.file", name: "event.file",
type: "object", type: "object",
description: "Removed file." description: "Removed file."
}, },
{ {
file: "event.files", name: "event.files",
type: "object", type: "object",
description: "Remaining files to be uploaded." description: "Remaining files to be uploaded."
} }

View File

@ -8,7 +8,7 @@ const TabMenuProps = [
{ {
name: "exact", name: "exact",
type: "boolean", type: "boolean",
default: true, default: "true",
description: "Defines if active route highlight should match the exact route path." description: "Defines if active route highlight should match the exact route path."
} }
]; ];