Fixed #6435 - OrderList

pull/6439/head
tugcekucukoglu 2024-09-19 10:57:59 +03:00
parent 318b489496
commit ae99c9e137
2 changed files with 3 additions and 7 deletions

View File

@ -129,15 +129,11 @@ export interface OrderListPassThroughOptions {
* @see {@link ButtonPassThroughOptions}
*/
pcMoveBottomButton?: ButtonPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
/**
* 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<OrderListSharedPassThroughMethodOptions>;
pcListbox?: ListboxPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
/**
* Used to manage all lifecycle hooks.
* @see {@link BaseComponent.ComponentHooks}

View File

@ -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 @@
</template>
<script>
import { UniqueComponentId } from '@primevue/core/utils';
import { find, findSingle, scrollInView, setAttribute } from '@primeuix/utils/dom';
import { findIndexInList, isNotEmpty } from '@primeuix/utils/object';
import { UniqueComponentId } from '@primevue/core/utils';
import AngleDoubleDownIcon from '@primevue/icons/angledoubledown';
import AngleDoubleUpIcon from '@primevue/icons/angledoubleup';
import AngleDownIcon from '@primevue/icons/angledown';