Form components api generator updates

pull/3938/head
Bahadır Sofuoğlu 2023-05-08 15:18:27 +03:00
parent 633ee73228
commit 5920b444a8
5 changed files with 30 additions and 0 deletions

View File

@ -46,6 +46,12 @@ const RatingProps = [
type: 'string', type: 'string',
default: 'null', default: 'null',
description: 'Icon for the cancelable state.' description: 'Icon for the cancelable state.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
} }
]; ];

View File

@ -58,6 +58,12 @@ const SelectButtonProps = [
type: 'string', type: 'string',
default: 'null', default: 'null',
description: 'Identifier of the underlying element.' description: 'Identifier of the underlying element.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
} }
]; ];

View File

@ -58,6 +58,12 @@ const SliderProps = [
type: 'string', type: 'string',
default: 'null', default: 'null',
description: 'Used to define a string that labels the element.' description: 'Used to define a string that labels the element.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
} }
]; ];

View File

@ -70,6 +70,12 @@ const ToggleButtonProps = [
type: 'object', type: 'object',
default: 'null', default: 'null',
description: 'Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.' description: 'Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
} }
]; ];

View File

@ -40,6 +40,12 @@ const TriStateCheckboxProps = [
type: 'string', type: 'string',
default: 'null', default: 'null',
description: 'Used to define a string that labels the element.' description: 'Used to define a string that labels the element.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
} }
]; ];