diff --git a/api-generator/components/rating.js b/api-generator/components/rating.js index 117fe5adb..a1014cbe2 100644 --- a/api-generator/components/rating.js +++ b/api-generator/components/rating.js @@ -46,6 +46,12 @@ const RatingProps = [ type: 'string', default: 'null', description: 'Icon for the cancelable state.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Uses to pass attributes to DOM elements inside the component.' } ]; diff --git a/api-generator/components/selectbutton.js b/api-generator/components/selectbutton.js index 4621fd151..483b4541f 100644 --- a/api-generator/components/selectbutton.js +++ b/api-generator/components/selectbutton.js @@ -58,6 +58,12 @@ const SelectButtonProps = [ type: 'string', default: 'null', description: 'Identifier of the underlying element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Uses to pass attributes to DOM elements inside the component.' } ]; diff --git a/api-generator/components/slider.js b/api-generator/components/slider.js index 15ae0a7a5..5d6a3f816 100644 --- a/api-generator/components/slider.js +++ b/api-generator/components/slider.js @@ -58,6 +58,12 @@ const SliderProps = [ type: 'string', default: 'null', 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.' } ]; diff --git a/api-generator/components/togglebutton.js b/api-generator/components/togglebutton.js index 481071984..e35bca1f0 100644 --- a/api-generator/components/togglebutton.js +++ b/api-generator/components/togglebutton.js @@ -70,6 +70,12 @@ const ToggleButtonProps = [ type: 'object', default: 'null', 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.' } ]; diff --git a/api-generator/components/tristatecheckbox.js b/api-generator/components/tristatecheckbox.js index ea0e6b0c5..ce4779741 100644 --- a/api-generator/components/tristatecheckbox.js +++ b/api-generator/components/tristatecheckbox.js @@ -40,6 +40,12 @@ const TriStateCheckboxProps = [ type: 'string', default: 'null', 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.' } ];