Skip to content

Commit

Permalink
feat(core): 🚚 name of the props has change
Browse files Browse the repository at this point in the history
the name of CoreList props (toolbar - enableToolbar and search - enableSearch)

Ref: #377
  • Loading branch information
arkaprota committed Oct 22, 2024
1 parent f84994f commit f72acbc
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions package/components/dataDisplay/CoreList.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ CoreList.validProps = [
},
{
description: "This helps to add toolbox to selaect the size in the corelist.",
name : "toolbar",
name : "enableToolbar",
types : [
{
default : false,
Expand All @@ -159,11 +159,17 @@ CoreList.validProps = [
},
{
description: "This helps to add Searchbar in the toolbar of corelist.",
name : "search",
types : [{ type: "object" }],
name : "enableSearch",
types : [
{
default : false,
type : "boolean",
validValues: [true, false]
}
]
},
{
description: "This helps to add Searchbar in the toolbar of corelist.",
description: "This helps to take json file of corelist.",
name : "items",
types : [{ type: "object" }],
},
Expand Down

0 comments on commit f72acbc

Please sign in to comment.