diff --git a/packages/primevue/src/orderlist/OrderList.d.ts b/packages/primevue/src/orderlist/OrderList.d.ts index 9c8810616..921038aa8 100755 --- a/packages/primevue/src/orderlist/OrderList.d.ts +++ b/packages/primevue/src/orderlist/OrderList.d.ts @@ -129,15 +129,11 @@ export interface OrderListPassThroughOptions { * @see {@link ButtonPassThroughOptions} */ pcMoveBottomButton?: ButtonPassThroughOptions; - /** - * Used to pass attributes to the container's DOM element. - */ - container?: OrderListPassThroughOptionType; /** * Used to pass attributes to the Listbox component. * @see {@link ListboxPassThroughOptions} */ - pcList?: ListboxPassThroughOptions; + pcListbox?: ListboxPassThroughOptions; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} diff --git a/packages/primevue/src/orderlist/OrderList.vue b/packages/primevue/src/orderlist/OrderList.vue index b869bfa19..719d3e897 100755 --- a/packages/primevue/src/orderlist/OrderList.vue +++ b/packages/primevue/src/orderlist/OrderList.vue @@ -49,7 +49,7 @@ :disabled="disabled" :ariaLabel="ariaLabel" :ariaLabelledby="ariaLabelledby" - :pt="ptm('pcList')" + :pt="ptm('pcListbox')" :unstyled="unstyled" @focus="onListFocus" @blur="onListBlur" @@ -67,9 +67,9 @@