Fixed #6435 - OrderList
parent
318b489496
commit
ae99c9e137
|
@ -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}
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue