This commit is contained in:
Tuğçe Küçükoğlu 2022-07-22 21:55:07 +03:00
parent de236bdf6c
commit e1b9982b22
4 changed files with 43 additions and 9 deletions

View file

@ -29,6 +29,12 @@ const ChipsProps = [
default: "false",
description: "Whether to allow duplicate values or not."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the element should be disabled."
},
{
name: "inputId",
type: "string",
@ -36,10 +42,16 @@ const ChipsProps = [
description: "Identifier of the focus input to match a label defined for the chips."
},
{
name: "disabled",
type: "boolean",
default: "false",
description: "When present, it specifies that the element should be disabled."
name: "inputClass",
type: "string",
default: "null",
description: "Style class of the input field."
},
{
name: "inputStyle",
type: "any",
default: "null",
description: "Inline style of the input field."
},
{
name: "'aria-labelledby'",