From 437818c7f22d679007520d02edd0f98d4d04ff02 Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 24 Nov 2023 15:21:54 +0300 Subject: [PATCH] Refactor #4511 --- components/lib/autocomplete/AutoComplete.d.ts | 4 ++-- components/lib/autocomplete/BaseAutoComplete.vue | 4 ++-- components/lib/avatar/Avatar.d.ts | 4 ++-- components/lib/breadcrumb/Breadcrumb.d.ts | 4 ++-- components/lib/calendar/Calendar.d.ts | 4 ++-- components/lib/cascadeselect/CascadeSelect.d.ts | 4 ++-- components/lib/checkbox/Checkbox.d.ts | 4 ++-- components/lib/chips/Chips.d.ts | 4 ++-- components/lib/contextmenu/ContextMenu.d.ts | 4 ++-- components/lib/dock/Dock.d.ts | 4 ++-- components/lib/dropdown/Dropdown.d.ts | 4 ++-- components/lib/inputnumber/InputNumber.d.ts | 4 ++-- components/lib/inputswitch/InputSwitch.d.ts | 4 ++-- components/lib/knob/Knob.d.ts | 4 ++-- components/lib/listbox/Listbox.d.ts | 4 ++-- components/lib/megamenu/MegaMenu.d.ts | 4 ++-- components/lib/menu/Menu.d.ts | 4 ++-- components/lib/menubar/Menubar.d.ts | 4 ++-- components/lib/multiselect/MultiSelect.d.ts | 4 ++-- components/lib/orderlist/OrderList.d.ts | 4 ++-- components/lib/password/Password.d.ts | 4 ++-- components/lib/radiobutton/RadioButton.d.ts | 4 ++-- components/lib/selectbutton/SelectButton.d.ts | 2 +- components/lib/slider/Slider.d.ts | 4 ++-- components/lib/speeddial/SpeedDial.d.ts | 4 ++-- components/lib/tabmenu/TabMenu.d.ts | 4 ++-- components/lib/tieredmenu/TieredMenu.d.ts | 4 ++-- components/lib/togglebutton/ToggleButton.d.ts | 4 ++-- components/lib/toolbar/Toolbar.d.ts | 2 +- components/lib/tree/Tree.d.ts | 4 ++-- components/lib/treeselect/TreeSelect.d.ts | 4 ++-- components/lib/tristatecheckbox/TriStateCheckbox.d.ts | 4 ++-- 32 files changed, 62 insertions(+), 62 deletions(-) diff --git a/components/lib/autocomplete/AutoComplete.d.ts b/components/lib/autocomplete/AutoComplete.d.ts index 4c9acf9e9..f808f8f35 100755 --- a/components/lib/autocomplete/AutoComplete.d.ts +++ b/components/lib/autocomplete/AutoComplete.d.ts @@ -455,11 +455,11 @@ export interface AutoCompleteProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {AutoCompletePassThroughOptions} diff --git a/components/lib/autocomplete/BaseAutoComplete.vue b/components/lib/autocomplete/BaseAutoComplete.vue index 9076fe5bd..8d4c825e3 100644 --- a/components/lib/autocomplete/BaseAutoComplete.vue +++ b/components/lib/autocomplete/BaseAutoComplete.vue @@ -157,11 +157,11 @@ export default { type: Number, default: 0 }, - 'aria-label': { + ariaLabel: { type: String, default: null }, - 'aria-labelledby': { + ariaLabelledby: { type: String, default: null } diff --git a/components/lib/avatar/Avatar.d.ts b/components/lib/avatar/Avatar.d.ts index ed21e61e7..c2a23cb0f 100644 --- a/components/lib/avatar/Avatar.d.ts +++ b/components/lib/avatar/Avatar.d.ts @@ -101,11 +101,11 @@ export interface AvatarProps { /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {AvatarPassThroughOptions} diff --git a/components/lib/breadcrumb/Breadcrumb.d.ts b/components/lib/breadcrumb/Breadcrumb.d.ts index f383b03c6..add4421ad 100755 --- a/components/lib/breadcrumb/Breadcrumb.d.ts +++ b/components/lib/breadcrumb/Breadcrumb.d.ts @@ -141,11 +141,11 @@ export interface BreadcrumbProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying menu element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {BreadcrumbPassThroughOptions} diff --git a/components/lib/calendar/Calendar.d.ts b/components/lib/calendar/Calendar.d.ts index 121f29c90..f2c5e06dd 100755 --- a/components/lib/calendar/Calendar.d.ts +++ b/components/lib/calendar/Calendar.d.ts @@ -713,11 +713,11 @@ export interface CalendarProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {CalendarPassThroughOptions} diff --git a/components/lib/cascadeselect/CascadeSelect.d.ts b/components/lib/cascadeselect/CascadeSelect.d.ts index 0920f7d75..79a1d3230 100644 --- a/components/lib/cascadeselect/CascadeSelect.d.ts +++ b/components/lib/cascadeselect/CascadeSelect.d.ts @@ -330,11 +330,11 @@ export interface CascadeSelectProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {CascadeSelectPassThroughOptions} diff --git a/components/lib/checkbox/Checkbox.d.ts b/components/lib/checkbox/Checkbox.d.ts index ee1f1290e..ee522b93c 100755 --- a/components/lib/checkbox/Checkbox.d.ts +++ b/components/lib/checkbox/Checkbox.d.ts @@ -159,11 +159,11 @@ export interface CheckboxProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {CheckboxPassThroughOptions} diff --git a/components/lib/chips/Chips.d.ts b/components/lib/chips/Chips.d.ts index 26b60fba4..c70d56d77 100755 --- a/components/lib/chips/Chips.d.ts +++ b/components/lib/chips/Chips.d.ts @@ -187,11 +187,11 @@ export interface ChipsProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {ChipsPassThroughOptions} diff --git a/components/lib/contextmenu/ContextMenu.d.ts b/components/lib/contextmenu/ContextMenu.d.ts index f5d1f1173..8ebc0b531 100755 --- a/components/lib/contextmenu/ContextMenu.d.ts +++ b/components/lib/contextmenu/ContextMenu.d.ts @@ -252,11 +252,11 @@ export interface ContextMenuProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying menu element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {ContextMenuPassThroughOptions} diff --git a/components/lib/dock/Dock.d.ts b/components/lib/dock/Dock.d.ts index 3bbcabb06..b7304c1a5 100644 --- a/components/lib/dock/Dock.d.ts +++ b/components/lib/dock/Dock.d.ts @@ -213,11 +213,11 @@ export interface DockProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {DockPassThroughOptions} diff --git a/components/lib/dropdown/Dropdown.d.ts b/components/lib/dropdown/Dropdown.d.ts index 1ef5c60c2..dee0b76d2 100755 --- a/components/lib/dropdown/Dropdown.d.ts +++ b/components/lib/dropdown/Dropdown.d.ts @@ -436,11 +436,11 @@ export interface DropdownProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {DropdownPassThroughOptions} diff --git a/components/lib/inputnumber/InputNumber.d.ts b/components/lib/inputnumber/InputNumber.d.ts index c88126f45..0f19ff419 100755 --- a/components/lib/inputnumber/InputNumber.d.ts +++ b/components/lib/inputnumber/InputNumber.d.ts @@ -278,11 +278,11 @@ export interface InputNumberProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {InputNumberPassThroughOptions} diff --git a/components/lib/inputswitch/InputSwitch.d.ts b/components/lib/inputswitch/InputSwitch.d.ts index 6a2cd08c2..c62b36d59 100755 --- a/components/lib/inputswitch/InputSwitch.d.ts +++ b/components/lib/inputswitch/InputSwitch.d.ts @@ -125,11 +125,11 @@ export interface InputSwitchProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {InputSwitchPassThroughOptions} diff --git a/components/lib/knob/Knob.d.ts b/components/lib/knob/Knob.d.ts index 8e867395e..f38d24312 100644 --- a/components/lib/knob/Knob.d.ts +++ b/components/lib/knob/Knob.d.ts @@ -179,11 +179,11 @@ export interface KnobProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to define a string that labels the element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {KnobPassThroughOptions} diff --git a/components/lib/listbox/Listbox.d.ts b/components/lib/listbox/Listbox.d.ts index 8d8f1292b..2760cbd1a 100755 --- a/components/lib/listbox/Listbox.d.ts +++ b/components/lib/listbox/Listbox.d.ts @@ -330,11 +330,11 @@ export interface ListboxProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {ListboxPassThroughOptions} diff --git a/components/lib/megamenu/MegaMenu.d.ts b/components/lib/megamenu/MegaMenu.d.ts index d6b64949e..f46dacd92 100755 --- a/components/lib/megamenu/MegaMenu.d.ts +++ b/components/lib/megamenu/MegaMenu.d.ts @@ -262,11 +262,11 @@ export interface MegaMenuProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying menu element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {MegaMenuPassThroughOptions} diff --git a/components/lib/menu/Menu.d.ts b/components/lib/menu/Menu.d.ts index f90fc07de..bb2e887ab 100755 --- a/components/lib/menu/Menu.d.ts +++ b/components/lib/menu/Menu.d.ts @@ -221,11 +221,11 @@ export interface MenuProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {MenuPassThroughOptions} diff --git a/components/lib/menubar/Menubar.d.ts b/components/lib/menubar/Menubar.d.ts index 97b7e1e3a..ceb32fb3a 100755 --- a/components/lib/menubar/Menubar.d.ts +++ b/components/lib/menubar/Menubar.d.ts @@ -245,11 +245,11 @@ export interface MenubarProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {MenubarPassThroughOptions} diff --git a/components/lib/multiselect/MultiSelect.d.ts b/components/lib/multiselect/MultiSelect.d.ts index 212af5128..4cc40ab23 100755 --- a/components/lib/multiselect/MultiSelect.d.ts +++ b/components/lib/multiselect/MultiSelect.d.ts @@ -518,11 +518,11 @@ export interface MultiSelectProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {MultiSelectPassThroughOptions} diff --git a/components/lib/orderlist/OrderList.d.ts b/components/lib/orderlist/OrderList.d.ts index edb60b956..e49eadc50 100755 --- a/components/lib/orderlist/OrderList.d.ts +++ b/components/lib/orderlist/OrderList.d.ts @@ -248,11 +248,11 @@ export interface OrderListProps { /** * Defines a string value that labels an interactive list element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying list element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {OrderListPassThroughOptions} diff --git a/components/lib/password/Password.d.ts b/components/lib/password/Password.d.ts index c4463e543..44e10c433 100755 --- a/components/lib/password/Password.d.ts +++ b/components/lib/password/Password.d.ts @@ -248,11 +248,11 @@ export interface PasswordProps extends InputHTMLAttributes { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {PasswordPassThroughOptions} diff --git a/components/lib/radiobutton/RadioButton.d.ts b/components/lib/radiobutton/RadioButton.d.ts index 534518c32..73fcd22c0 100755 --- a/components/lib/radiobutton/RadioButton.d.ts +++ b/components/lib/radiobutton/RadioButton.d.ts @@ -126,11 +126,11 @@ export interface RadioButtonProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {RadioButtonPassThroughOptions} diff --git a/components/lib/selectbutton/SelectButton.d.ts b/components/lib/selectbutton/SelectButton.d.ts index 4353594d0..9af837062 100755 --- a/components/lib/selectbutton/SelectButton.d.ts +++ b/components/lib/selectbutton/SelectButton.d.ts @@ -168,7 +168,7 @@ export interface SelectButtonProps { /** * Identifier of the underlying element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {SelectButtonPassThroughOptions} diff --git a/components/lib/slider/Slider.d.ts b/components/lib/slider/Slider.d.ts index 85c144af7..596acd22d 100755 --- a/components/lib/slider/Slider.d.ts +++ b/components/lib/slider/Slider.d.ts @@ -130,11 +130,11 @@ export interface SliderProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to define a string that labels the element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {SliderPassThroughOptions} diff --git a/components/lib/speeddial/SpeedDial.d.ts b/components/lib/speeddial/SpeedDial.d.ts index 96992cb06..e62b485ea 100644 --- a/components/lib/speeddial/SpeedDial.d.ts +++ b/components/lib/speeddial/SpeedDial.d.ts @@ -247,11 +247,11 @@ export interface SpeedDialProps { /** * Defines a string value that labels an interactive list element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying list element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {SpeedDialPassThroughOptions} diff --git a/components/lib/tabmenu/TabMenu.d.ts b/components/lib/tabmenu/TabMenu.d.ts index f2f5cd013..2df237603 100755 --- a/components/lib/tabmenu/TabMenu.d.ts +++ b/components/lib/tabmenu/TabMenu.d.ts @@ -168,11 +168,11 @@ export interface TabMenuProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying input element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {TabMenuPassThroughOptions} diff --git a/components/lib/tieredmenu/TieredMenu.d.ts b/components/lib/tieredmenu/TieredMenu.d.ts index 2c354cbfe..f48a55ac5 100755 --- a/components/lib/tieredmenu/TieredMenu.d.ts +++ b/components/lib/tieredmenu/TieredMenu.d.ts @@ -251,11 +251,11 @@ export interface TieredMenuProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying menu element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {TieredMenuPassThroughOptions} diff --git a/components/lib/togglebutton/ToggleButton.d.ts b/components/lib/togglebutton/ToggleButton.d.ts index d50bebe2b..40de1b34c 100755 --- a/components/lib/togglebutton/ToggleButton.d.ts +++ b/components/lib/togglebutton/ToggleButton.d.ts @@ -172,11 +172,11 @@ export interface ToggleButtonProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {ToggleButtonPassThroughOptions} diff --git a/components/lib/toolbar/Toolbar.d.ts b/components/lib/toolbar/Toolbar.d.ts index e386b14c8..3ea9e0811 100755 --- a/components/lib/toolbar/Toolbar.d.ts +++ b/components/lib/toolbar/Toolbar.d.ts @@ -74,7 +74,7 @@ export interface ToolbarProps { /** * Defines a string value that labels an interactive element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {ToolbarPassThroughOptions} diff --git a/components/lib/tree/Tree.d.ts b/components/lib/tree/Tree.d.ts index be5e23892..a45c13807 100755 --- a/components/lib/tree/Tree.d.ts +++ b/components/lib/tree/Tree.d.ts @@ -262,11 +262,11 @@ export interface TreeProps { /** * Defines a string value that labels an interactive element. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Identifier of the underlying menu element. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {TreePassThroughOptions} diff --git a/components/lib/treeselect/TreeSelect.d.ts b/components/lib/treeselect/TreeSelect.d.ts index 4a1846a64..91a427a63 100644 --- a/components/lib/treeselect/TreeSelect.d.ts +++ b/components/lib/treeselect/TreeSelect.d.ts @@ -214,11 +214,11 @@ export interface TreeSelectProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {TreeSelectPassThroughOptions} diff --git a/components/lib/tristatecheckbox/TriStateCheckbox.d.ts b/components/lib/tristatecheckbox/TriStateCheckbox.d.ts index 528c9771e..82e4a89a3 100755 --- a/components/lib/tristatecheckbox/TriStateCheckbox.d.ts +++ b/components/lib/tristatecheckbox/TriStateCheckbox.d.ts @@ -152,11 +152,11 @@ export interface TriStateCheckboxProps { /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. */ - 'aria-labelledby'?: string | undefined; + ariaLabelledby?: string | undefined; /** * Establishes a string value that labels the component. */ - 'aria-label'?: string | undefined; + ariaLabel?: string | undefined; /** * Used to pass attributes to DOM elements inside the component. * @type {TriStateCheckboxPassThroughOptions}