Fixed #6435 - OrderList
parent
318b489496
commit
ae99c9e137
|
@ -129,15 +129,11 @@ export interface OrderListPassThroughOptions {
|
||||||
* @see {@link ButtonPassThroughOptions}
|
* @see {@link ButtonPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcMoveBottomButton?: ButtonPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
|
pcMoveBottomButton?: ButtonPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
|
||||||
/**
|
|
||||||
* Used to pass attributes to the container's DOM element.
|
|
||||||
*/
|
|
||||||
container?: OrderListPassThroughOptionType;
|
|
||||||
/**
|
/**
|
||||||
* Used to pass attributes to the Listbox component.
|
* Used to pass attributes to the Listbox component.
|
||||||
* @see {@link ListboxPassThroughOptions}
|
* @see {@link ListboxPassThroughOptions}
|
||||||
*/
|
*/
|
||||||
pcList?: ListboxPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
|
pcListbox?: ListboxPassThroughOptions<OrderListSharedPassThroughMethodOptions>;
|
||||||
/**
|
/**
|
||||||
* Used to manage all lifecycle hooks.
|
* Used to manage all lifecycle hooks.
|
||||||
* @see {@link BaseComponent.ComponentHooks}
|
* @see {@link BaseComponent.ComponentHooks}
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:ariaLabel="ariaLabel"
|
:ariaLabel="ariaLabel"
|
||||||
:ariaLabelledby="ariaLabelledby"
|
:ariaLabelledby="ariaLabelledby"
|
||||||
:pt="ptm('pcList')"
|
:pt="ptm('pcListbox')"
|
||||||
:unstyled="unstyled"
|
:unstyled="unstyled"
|
||||||
@focus="onListFocus"
|
@focus="onListFocus"
|
||||||
@blur="onListBlur"
|
@blur="onListBlur"
|
||||||
|
@ -67,9 +67,9 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { UniqueComponentId } from '@primevue/core/utils';
|
|
||||||
import { find, findSingle, scrollInView, setAttribute } from '@primeuix/utils/dom';
|
import { find, findSingle, scrollInView, setAttribute } from '@primeuix/utils/dom';
|
||||||
import { findIndexInList, isNotEmpty } from '@primeuix/utils/object';
|
import { findIndexInList, isNotEmpty } from '@primeuix/utils/object';
|
||||||
|
import { UniqueComponentId } from '@primevue/core/utils';
|
||||||
import AngleDoubleDownIcon from '@primevue/icons/angledoubledown';
|
import AngleDoubleDownIcon from '@primevue/icons/angledoubledown';
|
||||||
import AngleDoubleUpIcon from '@primevue/icons/angledoubleup';
|
import AngleDoubleUpIcon from '@primevue/icons/angledoubleup';
|
||||||
import AngleDownIcon from '@primevue/icons/angledown';
|
import AngleDownIcon from '@primevue/icons/angledown';
|
||||||
|
|
Loading…
Reference in New Issue