diff --git a/components/lib/orderlist/OrderList.d.ts b/components/lib/orderlist/OrderList.d.ts index 59f7f29a2..0d276f0fb 100755 --- a/components/lib/orderlist/OrderList.d.ts +++ b/components/lib/orderlist/OrderList.d.ts @@ -19,7 +19,6 @@ export declare type OrderListPassThroughOptionType = OrderListPassThroughAttribu export interface OrderListPassThroughMethodOptions { props: OrderListProps; state: OrderListState; - context: OrderListState; } /** @@ -134,22 +133,6 @@ export interface OrderListState { focusedOptionIndex: number; } -/** - * Defines current inline state in OrderList component. - */ -export interface OrderListState { - /** - * Current active state of the item as a boolean. - * @defaultValue false - */ - active: boolean; - /** - * Current focus state of the item as a boolean. - * @defaultValue false - */ - focused: boolean; -} - /** * Defines valid properties in OrderList component. */ @@ -223,6 +206,11 @@ export interface OrderListProps { * Identifier of the underlying list element. */ 'aria-labelledby'?: string | undefined; + /** + * Uses to pass attributes to DOM elements inside the component. + * @type {OrderListPassThroughOptions} + */ + pt?: OrderListPassThroughOptions; } /**