Fixed #1836 - For PickList

pull/1846/head
mertsincan 2021-12-01 17:08:47 +03:00
parent c222aa74e6
commit af2749c868
1 changed files with 199 additions and 32 deletions

View File

@ -1,42 +1,209 @@
import { VNode } from 'vue'; import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
interface PickListProps { export interface PickListReorderEvent {
modelValue?: any[][]; /**
selection?: any[][]; * Browser event
dataKey?: string; */
metaKeySelection?: boolean; originalEvent: Event;
listStyle?: any; /**
responsive?: boolean; * Ordered list
breakpoint?: string; */
value: any[];
/**
* Direction of the change; "up", "down", "bottom", "top"
*/
direction: string;
/**
* Index of the list that is ordered, 0 represents the source and 1 represents the target list.
*/
listIndex: number;
} }
interface PickListItemSlotInterface { export interface PickListSelectionChangeEvent {
/**
* Browser event
*/
originalEvent: Event;
/**
* Selected item
*/
value: any[];
}
export interface PickListMoveToTargetEvent {
/**
* Browser event
*/
originalEvent: Event;
/**
* Moved items
*/
items: any[];
}
/**
* @extends PickListMoveToTargetEvent
*/
export interface PickListMoveAllToTargetEvent extends PickListMoveToTargetEvent { }
/**
* @extends PickListMoveToTargetEvent
*/
export interface PickListMoveToSourceEvent extends PickListMoveToTargetEvent { }
/**
* @extends PickListMoveToTargetEvent
*/
export interface PickListMoveAllToSourceEvent extends PickListMoveToTargetEvent { }
export interface PickListProps {
/**
* Value of the component as a multidimensional array.
*/
modelValue?: any[][] | undefined;
/**
* Selected items in the list as a multidimensional array.
*/
selection?: any[][] | undefined;
/**
* Name of the field that uniquely identifies the a record in the data.
*/
dataKey?: string | undefined;
/**
* Defines whether metaKey is requred or not for the selection.
* When true metaKey needs to be pressed to select or unselect an item and
* when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.
* Default value is true.
*/
metaKeySelection?: boolean | undefined;
/**
* Inline style of the the list element.
*/
listStyle?: any | undefined;
/**
* Whether the list optimizes layout based on screen size.
* Default value is true.
*/
responsive?: boolean | undefined;
/**
* The breakpoint to define the maximum width boundary when responsiveness is enabled.
* Default value is '960px'.
*/
breakpoint?: string | undefined;
}
export interface PickListSlots {
/**
* Custom header template.
*/
header: () => VNode[];
/**
* Custom item template.
* @param {Object} scope - item slot's params.
*/
item: (scope: {
/**
* Item of the component
*/
item: any; item: any;
/**
* Index of the item
*/
index: number; index: number;
}) => VNode[];
/**
* Custom source header template.
*/
sourceheader: () => VNode[];
/**
* Custom target header template.
*/
targetheader: () => VNode[];
/**
* Custom source controls start template.
*/
sourcecontrolsstart: () => VNode[];
/**
* Custom source controls end template.
*/
sourcecontrolsend: () => VNode[];
/**
* Custom move controls start template.
*/
movecontrolsstart: () => VNode[];
/**
* Custom move controls end template.
*/
movecontrolsend: () => VNode[];
/**
* Custom target controls start template.
*/
targetcontrolsstart: () => VNode[];
/**
* Custom target controls end template.
*/
targetcontrolsend: () => VNode[];
} }
declare class PickList { export declare type PickListEmits = {
$props: PickListProps; /**
$emit(eventName: 'update:modelValue', value: any[]): this; * Emitted when the value changes.
$emit(eventName: 'update:selection', value: any[]): this; * @param {*} value - New value.
$emit(eventName: 'reorder', e: { originalEvent: Event, value: any[]; direction: string, listIndex: number}): this; */
$emit(eventName: 'selection-change', e: { originalEvent: Event, value: any[]}): this; 'update:modelValue': (value: any[][]) => void;
$emit(eventName: 'move-to-target', e: { originalEvent: Event, items: [] }): this; /**
$emit(eventName: 'move-all-to-target', e: { originalEvent: Event, items: [] }): this; * Emitted when the selection changes.
$emit(eventName: 'move-to-source', e: { originalEvent: Event, items: [] }): this; * @param {*} value - New value.
$emit(eventName: 'move-all-tou-source', e: { originalEvent: Event, items: [] }): this; */
$slots: { 'update:selection': (value: any[][]) => void;
header: VNode[]; /**
item: PickListItemSlotInterface; * Callback to invoke when the list is reordered.
sourceheader: VNode[]; * @param {PickListReorderEvent} event - Custom reorder event.
targetheader: VNode[]; */
sourcecontrolsstart: VNode[]; 'reorder': (event: PickListReorderEvent) => void;
sourcecontrolsend: VNode[]; /**
movecontrolsstart: VNode[]; * Callback to invoke when one or more items are moved to the other list.
movecontrolsend: VNode[]; * @param {PickListSelectionChangeEvent} event - Custom selection change event.
targetcontrolsstart: VNode[]; */
targetcontrolsend: VNode[]; 'selection-change': (event: PickListSelectionChangeEvent) => void;
/**
* Callback to invoke when one or more items are moved to the target list.
* @param {PickListMoveToTargetEvent} event - Custom move to target event.
*/
'move-to-target': (event: PickListMoveToTargetEvent) => void;
/**
* Callback to invoke when all items are moved to the target list.
* @param {PickListMoveAllToTargetEvent} event - Custom move all to target event.
*/
'move-all-to-target': (event: PickListMoveAllToTargetEvent) => void;
/**
* Callback to invoke when one or more items are moved to the source list.
* @param {PickListMoveToSourceEvent} event - Custom move to source event.
*/
'move-to-source': (event: PickListMoveToSourceEvent) => void;
/**
* Callback to invoke when all items are moved to the source list.
* @param {PickListMoveAllToSourceEvent} event - Custom move all to source event.
*/
'move-all-to-source': (event: PickListMoveAllToSourceEvent) => void;
}
declare class PickList extends ClassComponent<PickListProps, PickListSlots, PickListEmits> { }
declare module '@vue/runtime-core' {
interface GlobalComponents {
PickList: GlobalComponentConstructor<PickList>
} }
} }
/**
*
* PickList is used to reorder items between different lists.
*
* Demos:
*
* - [PickList](https://www.primefaces.org/primevue/showcase/#/picklist)
*
*/
export default PickList; export default PickList;