From d43ea029570bb0f56df5627c2dabfdbd7e526a72 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 31 Jan 2024 11:01:02 +0300 Subject: [PATCH] Update api-generator --- api-generator/components/autocomplete.js | 12 ++++++++++++ api-generator/components/calendar.js | 12 ++++++++++++ api-generator/components/cascadeselect.js | 12 ++++++++++++ api-generator/components/checkbox.js | 12 ++++++++++++ api-generator/components/chips.js | 12 ++++++++++++ api-generator/components/dropdown.js | 12 ++++++++++++ api-generator/components/inputmask.js | 12 ++++++++++++ api-generator/components/inputnumber.js | 12 ++++++++++++ api-generator/components/inputtext.js | 12 ++++++++++++ api-generator/components/listbox.js | 6 ++++++ api-generator/components/multiselect.js | 12 ++++++++++++ api-generator/components/password.js | 12 ++++++++++++ api-generator/components/radiobutton.js | 12 ++++++++++++ api-generator/components/selectbutton.js | 6 ++++++ api-generator/components/textarea.js | 12 ++++++++++++ api-generator/components/togglebutton.js | 6 ++++++ api-generator/components/treeselect.js | 12 ++++++++++++ api-generator/components/tristatecheckbox.js | 12 ++++++++++++ 18 files changed, 198 insertions(+) diff --git a/api-generator/components/autocomplete.js b/api-generator/components/autocomplete.js index 818b326d3..03fc195fd 100644 --- a/api-generator/components/autocomplete.js +++ b/api-generator/components/autocomplete.js @@ -89,6 +89,18 @@ const AutoCompleteProps = [ default: 'false', description: 'When present, it specifies that the component should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'dataKey', type: 'string', diff --git a/api-generator/components/calendar.js b/api-generator/components/calendar.js index 90804b932..ae30c8641 100644 --- a/api-generator/components/calendar.js +++ b/api-generator/components/calendar.js @@ -257,6 +257,18 @@ const CalendarProps = [ default: 'false', description: 'When present, it specifies that the element should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'readonly', type: 'boolean', diff --git a/api-generator/components/cascadeselect.js b/api-generator/components/cascadeselect.js index 091b7ed39..7e31629bf 100644 --- a/api-generator/components/cascadeselect.js +++ b/api-generator/components/cascadeselect.js @@ -53,6 +53,18 @@ const CascadeSelectProps = [ default: 'false', description: 'When present, it specifies that the component should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'dataKey', type: 'string', diff --git a/api-generator/components/checkbox.js b/api-generator/components/checkbox.js index 263a375a5..a3e3137ee 100644 --- a/api-generator/components/checkbox.js +++ b/api-generator/components/checkbox.js @@ -23,6 +23,18 @@ const CheckboxProps = [ default: 'false', description: 'When present, it specifies that the element should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'readonly', type: 'boolean', diff --git a/api-generator/components/chips.js b/api-generator/components/chips.js index 842680ba6..48df4a83d 100644 --- a/api-generator/components/chips.js +++ b/api-generator/components/chips.js @@ -35,6 +35,18 @@ const ChipsProps = [ default: 'false', description: 'When present, it specifies that the element should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'placeholder', type: 'string', diff --git a/api-generator/components/dropdown.js b/api-generator/components/dropdown.js index 79f8f1da0..b90c06c1c 100644 --- a/api-generator/components/dropdown.js +++ b/api-generator/components/dropdown.js @@ -95,6 +95,18 @@ const DropdownProps = [ default: 'false', description: 'When present, it specifies that the component should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'dataKey', type: 'string', diff --git a/api-generator/components/inputmask.js b/api-generator/components/inputmask.js index e054affbd..320a432fe 100644 --- a/api-generator/components/inputmask.js +++ b/api-generator/components/inputmask.js @@ -29,6 +29,18 @@ const InputMaskProps = [ default: 'false', description: 'Defines if model sets the raw unmasked value to bound value or the formatted mask value.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'pt', type: 'any', diff --git a/api-generator/components/inputnumber.js b/api-generator/components/inputnumber.js index d72871f55..2c5ad7c84 100644 --- a/api-generator/components/inputnumber.js +++ b/api-generator/components/inputnumber.js @@ -147,6 +147,18 @@ const InputNumberProps = [ default: 'null', description: 'Placeholder text for the input.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'inputId', type: 'string', diff --git a/api-generator/components/inputtext.js b/api-generator/components/inputtext.js index a69775455..6e1415113 100644 --- a/api-generator/components/inputtext.js +++ b/api-generator/components/inputtext.js @@ -11,6 +11,18 @@ const InputTextProps = [ default: 'null', description: 'Defines the size of the component, valid values are "small" and "large".' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'pt', type: 'any', diff --git a/api-generator/components/listbox.js b/api-generator/components/listbox.js index 3385d2724..006761e9c 100644 --- a/api-generator/components/listbox.js +++ b/api-generator/components/listbox.js @@ -53,6 +53,12 @@ const ListboxProps = [ default: 'false', description: 'When specified, disables the component.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, { name: 'dataKey', type: 'string', diff --git a/api-generator/components/multiselect.js b/api-generator/components/multiselect.js index 2f0409df9..7cef2ac67 100644 --- a/api-generator/components/multiselect.js +++ b/api-generator/components/multiselect.js @@ -59,6 +59,18 @@ const MultiSelectProps = [ default: 'false', description: 'When present, it specifies that the component should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'inputId', type: 'string', diff --git a/api-generator/components/password.js b/api-generator/components/password.js index 8fc8b489f..a521013ad 100644 --- a/api-generator/components/password.js +++ b/api-generator/components/password.js @@ -83,6 +83,18 @@ const PasswordProps = [ default: 'null', description: 'Placeholder text for the input.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'required', type: 'boolean', diff --git a/api-generator/components/radiobutton.js b/api-generator/components/radiobutton.js index a13f8c25f..daf5a2a78 100644 --- a/api-generator/components/radiobutton.js +++ b/api-generator/components/radiobutton.js @@ -23,6 +23,18 @@ const RadioButtonProps = [ default: 'false', description: 'When present, it specifies that the element should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'inputId', type: 'string', diff --git a/api-generator/components/selectbutton.js b/api-generator/components/selectbutton.js index 6dd55ad81..30659dd50 100644 --- a/api-generator/components/selectbutton.js +++ b/api-generator/components/selectbutton.js @@ -41,6 +41,12 @@ const SelectButtonProps = [ default: 'false', description: 'When present, it specifies that the element should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, { name: 'dataKey', type: 'string', diff --git a/api-generator/components/textarea.js b/api-generator/components/textarea.js index 7b20070d0..96d460ee2 100644 --- a/api-generator/components/textarea.js +++ b/api-generator/components/textarea.js @@ -11,6 +11,18 @@ const TextareaProps = [ default: 'false', description: 'When present, height of textarea changes as being typed.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'pt', type: 'any', diff --git a/api-generator/components/togglebutton.js b/api-generator/components/togglebutton.js index 4ec7b3f2c..1f4d6a3ef 100644 --- a/api-generator/components/togglebutton.js +++ b/api-generator/components/togglebutton.js @@ -47,6 +47,12 @@ const ToggleButtonProps = [ default: 'false', description: 'When present, it specifies that the element should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, { name: 'inputId', type: 'string', diff --git a/api-generator/components/treeselect.js b/api-generator/components/treeselect.js index f5747b6a2..155e70a39 100644 --- a/api-generator/components/treeselect.js +++ b/api-generator/components/treeselect.js @@ -29,6 +29,18 @@ const TreeSelectProps = [ default: 'false', description: 'When present, it specifies that the component should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'tabindex', type: 'string', diff --git a/api-generator/components/tristatecheckbox.js b/api-generator/components/tristatecheckbox.js index 8ecd7762d..92e1b39c7 100644 --- a/api-generator/components/tristatecheckbox.js +++ b/api-generator/components/tristatecheckbox.js @@ -11,6 +11,18 @@ const TriStateCheckboxProps = [ default: 'false', description: 'When present, it specifies that the component should be disabled.' }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'outlined', + description: 'Specifies the input variant of the component.' + }, { name: 'tabindex', type: 'string',