UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

1,130 lines (1,121 loc) 49.9 kB
import { moveItemInArray, DragDropModule } from '@angular/cdk/drag-drop'; import * as i1 from '@angular/common'; import { isPlatformBrowser, CommonModule } from '@angular/common'; import * as i0 from '@angular/core'; import { Injectable, EventEmitter, inject, booleanAttribute, numberAttribute, ContentChildren, ContentChild, ViewChild, Output, Input, ViewEncapsulation, ChangeDetectionStrategy, Component, NgModule } from '@angular/core'; import * as i2 from '@angular/forms'; import { FormsModule } from '@angular/forms'; import { uuid, find, scrollInView, findIndexInList, insertIntoOrderedArray, findSingle, hasClass, isHidden, setAttribute } from '@primeuix/utils'; import { FilterService, SharedModule, PrimeTemplate } from 'primeng/api'; import { BaseComponent } from 'primeng/basecomponent'; import { ButtonDirective } from 'primeng/button'; import { AngleDoubleDownIcon, AngleDoubleUpIcon, AngleUpIcon, AngleDownIcon } from 'primeng/icons'; import { Listbox } from 'primeng/listbox'; import { Ripple } from 'primeng/ripple'; import { BaseStyle } from 'primeng/base'; const theme = ({ dt }) => ` .p-orderlist { display: flex; gap: ${dt('orderlist.gap')}; } .p-orderlist-controls { display: flex; flex-direction: column; justify-content: center; gap: ${dt('orderlist.controls.gap')}; } `; const classes = { root: 'p-orderlist p-component', controls: 'p-orderlist-controls' }; class OrderListStyle extends BaseStyle { name = 'orderlist'; theme = theme; classes = classes; static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderListStyle, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderListStyle }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderListStyle, decorators: [{ type: Injectable }] }); /** * * OrderList is used to maneged the order of a collection. * * [Live Demo](https://primeng.org/orderlist) * * @module orderliststyle * */ var OrderListClasses; (function (OrderListClasses) { /** * Class name of the root element */ OrderListClasses["root"] = "p-orderlist"; /** * Class name of the controls element */ OrderListClasses["controls"] = "p-orderlist-controls"; })(OrderListClasses || (OrderListClasses = {})); /** * OrderList is used to manage the order of a collection. * @group Components */ class OrderList extends BaseComponent { /** * Text for the caption. * @group Props */ header; /** * Inline style of the component. * @group Props */ style; /** * Style class of the component. * @group Props */ styleClass; /** * Index of the element in tabbing order. * @group Props */ tabindex; /** * Defines a string that labels the input for accessibility. * @group Props */ ariaLabel; /** * Specifies one or more IDs in the DOM that labels the input field. * @group Props */ ariaLabelledBy; /** * Inline style of the list element. * @group Props */ listStyle; /** * A boolean value that indicates whether the component should be responsive. * @group Props */ responsive; /** * When specified displays an input field to filter the items on keyup and decides which fields to search against. * @group Props */ filterBy; /** * Placeholder of the filter input. * @group Props */ filterPlaceholder; /** * Locale to use in filtering. The default locale is the host environment's current locale. * @group Props */ filterLocale; /** * 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. * @group Props */ metaKeySelection = false; /** * Whether to enable dragdrop based reordering. * @group Props */ dragdrop = false; /** * Defines the location of the buttons with respect to the list. * @group Props */ controlsPosition = 'left'; /** * Defines a string that labels the filter input. * @group Props */ ariaFilterLabel; /** * Defines how the items are filtered. * @group Props */ filterMatchMode = 'contains'; /** * Indicates the width of the screen at which the component should change its behavior. * @group Props */ breakpoint = '960px'; /** * Whether to displays rows with alternating colors. * @group Props */ stripedRows; /** * When present, it specifies that the component should be disabled. * @group Props */ disabled = false; /** * Function to optimize the dom operations by delegating to ngForTrackBy, default algorithm checks for object identity. * @group Props */ trackBy = (index, item) => item; /** * Height of the viewport, a scrollbar is defined if height of list exceeds this value. * @group Props */ scrollHeight = '14rem'; /** * Whether to focus on the first visible or selected element. * @group Props */ autoOptionFocus = true; /** * A list of values that are currently selected. * @group Props */ set selection(val) { this.d_selection = val; } get selection() { return this.d_selection; } /** * Array of values to be displayed in the component. * It represents the data source for the list of items. * @group Props */ set value(val) { this._value = val; if (this.filterValue) { this.filter(); } } get value() { return this._value; } /** * Used to pass all properties of the ButtonProps to the Button component. * @group Props */ buttonProps = { severity: 'secondary' }; /** * Used to pass all properties of the ButtonProps to the move up button inside the component. * @group Props */ moveUpButtonProps; /** * Used to pass all properties of the ButtonProps to the move top button inside the component. * @group Props */ moveTopButtonProps; /** * Used to pass all properties of the ButtonProps to the move down button inside the component. * @group Props */ moveDownButtonProps; /** * Used to pass all properties of the ButtonProps to the move bottom button inside the component. * @group Props */ moveBottomButtonProps; /** * Callback to invoke on selection change. * @param {*} any - selection instance. * @group Emits */ selectionChange = new EventEmitter(); /** * Callback to invoke when list is reordered. * @param {*} any - list instance. * @group Emits */ onReorder = new EventEmitter(); /** * Callback to invoke when selection changes. * @param {OrderListSelectionChangeEvent} event - Custom change event. * @group Emits */ onSelectionChange = new EventEmitter(); /** * Callback to invoke when filtering occurs. * @param {OrderListFilterEvent} event - Custom filter event. * @group Emits */ onFilterEvent = new EventEmitter(); /** * Callback to invoke when the list is focused * @param {Event} event - Browser event. * @group Emits */ onFocus = new EventEmitter(); /** * Callback to invoke when the list is blurred * @param {Event} event - Browser event. * @group Emits */ onBlur = new EventEmitter(); listViewChild; filterViewChild; /** * Custom item template. * @group Templates */ itemTemplate; /** * Custom empty template. * @group Templates */ emptyMessageTemplate; /** * Custom empty filter template. * @group Templates */ emptyFilterMessageTemplate; /** * Custom filter template. * @group Templates */ filterTemplate; /** * Custom header template. * @group Templates */ headerTemplate; /** * Custom move up icon template. * @group Templates */ moveUpIconTemplate; /** * Custom move top icon template. * @group Templates */ moveTopIconTemplate; /** * Custom move down icon template. * @group Templates */ moveDownIconTemplate; /** * Custom move bottom icon template. * @group Templates */ moveBottomIconTemplate; /** * Custom filter icon template. * @group Templates */ filterIconTemplate; get moveUpAriaLabel() { return this.config.translation.aria ? this.config.translation.aria.moveUp : undefined; } get moveTopAriaLabel() { return this.config.translation.aria ? this.config.translation.aria.moveTop : undefined; } get moveDownAriaLabel() { return this.config.translation.aria ? this.config.translation.aria.moveDown : undefined; } get moveBottomAriaLabel() { return this.config.translation.aria ? this.config.translation.aria.moveBottom : undefined; } _componentStyle = inject(OrderListStyle); filterOptions; d_selection = []; movedUp; movedDown; itemTouched; styleElement; id = uuid('pn_id_'); focused = false; focusedOptionIndex = -1; focusedOption; filterValue; visibleOptions; _value; filterService = inject(FilterService); getButtonProps(direction) { switch (direction) { case 'up': return { ...this.buttonProps, ...this.moveUpButtonProps }; case 'top': return { ...this.buttonProps, ...this.moveTopButtonProps }; case 'down': return { ...this.buttonProps, ...this.moveDownButtonProps }; case 'bottom': return { ...this.buttonProps, ...this.moveBottomButtonProps }; default: return this.buttonProps; } } ngOnInit() { super.ngOnInit(); if (this.responsive) { this.createStyle(); } if (this.filterBy) { this.filterOptions = { filter: (value) => this.onFilterKeyup(value), reset: () => this.resetFilter() }; } } ngAfterViewChecked() { if (this.movedUp || this.movedDown) { let listItems = find(this.listViewChild?.el.nativeElement, 'li.p-listbox-option-selected'); let listItem; if (listItems.length > 0) { if (this.movedUp) listItem = listItems[0]; else listItem = listItems[listItems.length - 1]; scrollInView(this.listViewChild?.el.nativeElement, listItem); } this.movedUp = false; this.movedDown = false; } } templates; _itemTemplate; _emptyMessageTemplate; _emptyFilterMessageTemplate; _filterTemplate; _headerTemplate; _moveUpIconTemplate; _moveTopIconTemplate; _moveDownIconTemplate; _moveBottomIconTemplate; _filterIconTemplate; ngAfterContentInit() { this.templates.forEach((item) => { switch (item.getType()) { case 'item': this._itemTemplate = item.template; break; case 'empty': this._emptyMessageTemplate = item.template; break; case 'emptyfilter': this._emptyFilterMessageTemplate = item.template; break; case 'filter': this._filterTemplate = item.template; break; case 'header': this._headerTemplate = item.template; break; case 'moveupicon': this._moveUpIconTemplate = item.template; break; case 'movetopicon': this._moveTopIconTemplate = item.template; break; case 'movedownicon': this._moveDownIconTemplate = item.template; break; case 'movebottomicon': this._moveBottomIconTemplate = item.template; break; case 'filtericon': this._filterIconTemplate = item.template; break; default: this._itemTemplate = item.template; break; } }); } onItemClick(event, item, index, selectedId) { this.itemTouched = false; let focusedIndex = index ? index : findIndexInList(this.focusedOption, this.value); let selectedIndex = findIndexInList(item, this.d_selection); let selected = selectedIndex !== -1; let metaSelection = this.itemTouched ? false : this.metaKeySelection; if (selectedId) { this.focusedOptionIndex = selectedId; } if (metaSelection) { let metaKey = event.metaKey || event.ctrlKey; if (selected && metaKey) { this.d_selection = this.d_selection.filter((val, focusedIndex) => focusedIndex !== selectedIndex); } else { this.d_selection = metaKey ? (this.d_selection ? [...this.d_selection] : []) : []; insertIntoOrderedArray(item, focusedIndex, this.d_selection, this.value); } } else { if (selected) { this.d_selection = this.d_selection.filter((val, focusedIndex) => focusedIndex !== selectedIndex); } else { this.d_selection = this.d_selection ? [...this.d_selection] : []; insertIntoOrderedArray(item, focusedIndex, this.d_selection, this.value); } } //binding this.selectionChange.emit(this.d_selection); //event this.onSelectionChange.emit({ originalEvent: event, value: this.d_selection }); } onFilterKeyup(event) { this.filterValue = event.target.value.trim().toLocaleLowerCase(this.filterLocale); this.filter(); this.onFilterEvent.emit({ originalEvent: event, value: this.visibleOptions }); } filter() { let searchFields = this.filterBy.split(','); this.visibleOptions = this.filterService.filter(this.value, searchFields, this.filterValue, this.filterMatchMode, this.filterLocale); } /** * Callback to invoke on filter reset. * @group Method */ resetFilter() { this.filterValue = null; this.filterViewChild && (this.filterViewChild.nativeElement.value = ''); } isItemVisible(item) { if (this.filterValue && this.filterValue.trim().length) { for (let i = 0; i < this.visibleOptions.length; i++) { if (item == this.visibleOptions[i]) { return true; } } } else { return true; } } onItemTouchEnd() { this.itemTouched = true; } isSelected(item) { return findIndexInList(item, this.d_selection) !== -1; } isEmpty() { return this.filterValue ? !this.visibleOptions || this.visibleOptions.length === 0 : !this.value || this.value.length === 0; } moveUp() { if (this.selection) { for (let i = 0; i < this.selection.length; i++) { let selectedItem = this.selection[i]; let selectedItemIndex = findIndexInList(selectedItem, this.value); if (selectedItemIndex != 0 && this.value instanceof Array) { let movedItem = this.value[selectedItemIndex]; let temp = this.value[selectedItemIndex - 1]; this.value[selectedItemIndex - 1] = movedItem; this.value[selectedItemIndex] = temp; } else { break; } } if (this.dragdrop && this.filterValue) this.filter(); this.movedUp = true; this.onReorder.emit(this.selection); } this.listViewChild?.cd?.markForCheck(); } moveTop() { if (this.selection) { for (let i = this.selection.length - 1; i >= 0; i--) { let selectedItem = this.selection[i]; let selectedItemIndex = findIndexInList(selectedItem, this.value); if (selectedItemIndex != 0 && this.value instanceof Array) { let movedItem = this.value.splice(selectedItemIndex, 1)[0]; this.value.unshift(movedItem); } else { break; } } if (this.dragdrop && this.filterValue) this.filter(); this.onReorder.emit(this.selection); setTimeout(() => { this.listViewChild.scrollInView(0); }); } this.listViewChild?.cd?.markForCheck(); } moveDown() { if (this.selection) { for (let i = this.selection.length - 1; i >= 0; i--) { let selectedItem = this.selection[i]; let selectedItemIndex = findIndexInList(selectedItem, this.value); if (this.value instanceof Array && selectedItemIndex != this.value.length - 1) { let movedItem = this.value[selectedItemIndex]; let temp = this.value[selectedItemIndex + 1]; this.value[selectedItemIndex + 1] = movedItem; this.value[selectedItemIndex] = temp; } else { break; } } if (this.dragdrop && this.filterValue) this.filter(); this.movedDown = true; this.onReorder.emit(this.selection); } this.listViewChild?.cd?.markForCheck(); } moveBottom() { if (this.selection) { for (let i = 0; i < this.selection.length; i++) { let selectedItem = this.selection[i]; let selectedItemIndex = findIndexInList(selectedItem, this.value); if (this.value instanceof Array && selectedItemIndex != this.value.length - 1) { let movedItem = this.value.splice(selectedItemIndex, 1)[0]; this.value.push(movedItem); } else { break; } } if (this.dragdrop && this.filterValue) this.filter(); this.onReorder.emit(this.selection); this.listViewChild.scrollInView(this.value?.length - 1); } this.listViewChild?.cd?.markForCheck(); } onDrop(event) { let previousIndex = event.previousIndex; let currentIndex = event.currentIndex; if (previousIndex !== currentIndex) { if (this.visibleOptions) { if (this.filterValue) { previousIndex = findIndexInList(event.item.data, this.value); currentIndex = findIndexInList(this.visibleOptions[currentIndex], this.value); } moveItemInArray(this.visibleOptions, event.previousIndex, event.currentIndex); } moveItemInArray(this.value, previousIndex, currentIndex); this.changeFocusedOptionIndex(currentIndex); this.onReorder.emit([event.item.data]); } } onListFocus(event) { const focusableEl = findSingle(this.listViewChild.el.nativeElement, '[data-p-highlight="true"]') || findSingle(this.listViewChild.el.nativeElement, '[data-pc-section="item"]'); if (focusableEl) { const findIndex = findIndexInList(focusableEl, this.listViewChild.el.nativeElement.children); this.focused = true; const index = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : focusableEl ? findIndex : -1; this.changeFocusedOptionIndex(index); } this.onFocus.emit(event); } onListBlur(event) { this.focused = false; this.focusedOption = null; this.focusedOptionIndex = -1; this.onBlur.emit(event); } onItemKeydown(event) { switch (event.code) { case 'ArrowDown': this.onArrowDownKey(event); break; case 'ArrowUp': this.onArrowUpKey(event); break; case 'Home': this.onHomeKey(event); break; case 'End': this.onEndKey(event); break; case 'Enter': this.onEnterKey(event); break; case 'Space': this.onSpaceKey(event); break; case 'KeyA': if (event.ctrlKey) { this.d_selection = [...this.value]; this.selectionChange.emit(this.d_selection); } default: break; } } onOptionMouseDown(index) { this.focused = true; this.focusedOptionIndex = index; } onArrowDownKey(event) { const optionIndex = this.findNextOptionIndex(this.focusedOptionIndex); this.changeFocusedOptionIndex(optionIndex); if (event.shiftKey) { this.onEnterKey(event); } event.preventDefault(); } onArrowUpKey(event) { const optionIndex = this.findPrevOptionIndex(this.focusedOptionIndex); this.changeFocusedOptionIndex(optionIndex); if (event.shiftKey) { this.onEnterKey(event); } event.preventDefault(); } onHomeKey(event) { if (event.ctrlKey && event.shiftKey) { let visibleOptions = this.getVisibleOptions(); let focusedIndex = findIndexInList(this.focusedOption, visibleOptions); this.d_selection = [...this.value].slice(0, focusedIndex + 1); this.selectionChange.emit(this.d_selection); } else { this.changeFocusedOptionIndex(0); } event.preventDefault(); } onEndKey(event) { if (event.ctrlKey && event.shiftKey) { let visibleOptions = this.getVisibleOptions(); let focusedIndex = findIndexInList(this.focusedOption, visibleOptions); this.d_selection = [...this.value].slice(focusedIndex, visibleOptions.length - 1); this.selectionChange.emit(this.d_selection); } else { this.changeFocusedOptionIndex(find(this.listViewChild.el.nativeElement, '[data-pc-section="item"]').length - 1); } event.preventDefault(); } onEnterKey(event) { this.onItemClick(event, this.focusedOption); event.preventDefault(); } onSpaceKey(event) { event.preventDefault(); if (event.shiftKey && this.selection && this.selection.length > 0) { let visibleOptions = this.getVisibleOptions(); let lastSelectedIndex = this.getLatestSelectedVisibleOptionIndex(visibleOptions); if (lastSelectedIndex !== -1) { let focusedIndex = findIndexInList(this.focusedOption, visibleOptions); this.d_selection = [...visibleOptions.slice(Math.min(lastSelectedIndex, focusedIndex), Math.max(lastSelectedIndex, focusedIndex) + 1)]; this.selectionChange.emit(this.d_selection); this.onSelectionChange.emit({ originalEvent: event, value: this.d_selection }); return; } } this.onEnterKey(event); } findNextOptionIndex(index) { const items = find(this.listViewChild.el.nativeElement, '[data-pc-section="item"]'); const matchedOptionIndex = [...items].findIndex((link) => link.id === index); return matchedOptionIndex > -1 ? matchedOptionIndex + 1 : 0; } findPrevOptionIndex(index) { const items = find(this.listViewChild.el.nativeElement, '[data-pc-section="item"]'); const matchedOptionIndex = [...items].findIndex((link) => link.id === index); return matchedOptionIndex > -1 ? matchedOptionIndex - 1 : 0; } getLatestSelectedVisibleOptionIndex(visibleOptions) { const latestSelectedItem = [...this.d_selection].reverse().find((item) => visibleOptions.includes(item)); return latestSelectedItem !== undefined ? visibleOptions.indexOf(latestSelectedItem) : -1; } getVisibleOptions() { return this.visibleOptions && this.visibleOptions.length > 0 ? this.visibleOptions : this.value && this.value.length > 0 ? this.value : null; } getFocusedOption(index) { if (index === -1) return null; return this.visibleOptions && this.visibleOptions.length ? this.visibleOptions[index] : this.value && this.value.length ? this.value[index] : null; } changeFocusedOptionIndex(index) { const items = find(this.listViewChild.el.nativeElement, '[data-pc-section="item"]'); let order = index >= items.length ? items.length - 1 : index < 0 ? 0 : index; this.focusedOptionIndex = items[order] ? items[order].getAttribute('id') : -1; this.focusedOption = this.getFocusedOption(order); this.scrollInView(this.focusedOptionIndex); } scrollInView(id) { const element = findSingle(this.listViewChild.el.nativeElement, `[data-pc-section="item"][id="${id}"]`); if (element) { element.scrollIntoView && element.scrollIntoView({ block: 'nearest', inline: 'nearest' }); } } findNextItem(item) { let nextItem = item.nextElementSibling; if (nextItem) return !hasClass(nextItem, 'p-orderlist-item') || isHidden(nextItem) ? this.findNextItem(nextItem) : nextItem; else return null; } findPrevItem(item) { let prevItem = item.previousElementSibling; if (prevItem) return !hasClass(prevItem, 'p-orderlist-item') || isHidden(prevItem) ? this.findPrevItem(prevItem) : prevItem; else return null; } moveDisabled() { if (this.disabled || !this.selection.length) { return true; } } focusedOptionId() { return this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : null; } createStyle() { if (isPlatformBrowser(this.platformId)) { if (!this.styleElement) { this.renderer.setAttribute(this.el.nativeElement.children[0], this.id, ''); this.styleElement = this.renderer.createElement('style'); this.renderer.setAttribute(this.styleElement, 'type', 'text/css'); this.renderer.appendChild(this.document.head, this.styleElement); let innerHTML = ` @media screen and (max-width: ${this.breakpoint}) { .p-orderlist[${this.id}] { flex-direction: column; } .p-orderlist[${this.id}] .p-orderlist-controls { padding: var(--content-padding); flex-direction: row; } .p-orderlist[${this.id}] .p-orderlist-controls .p-button { margin-right: var(--inline-spacing); margin-bottom: 0; } .p-orderlist[${this.id}] .p-orderlist-controls .p-button:last-child { margin-right: 0; } } `; this.renderer.setProperty(this.styleElement, 'innerHTML', innerHTML); setAttribute(this.styleElement, 'nonce', this.config?.csp()?.nonce); } } } destroyStyle() { if (isPlatformBrowser(this.platformId)) { if (this.styleElement) { this.renderer.removeChild(this.document, this.styleElement); this.styleElement = null; ``; } } } ngOnDestroy() { this.destroyStyle(); super.ngOnDestroy(); } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderList, deps: null, target: i0.ɵɵFactoryTarget.Component }); static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.2", type: OrderList, isStandalone: true, selector: "p-orderList, p-orderlist, p-order-list", inputs: { header: "header", style: "style", styleClass: "styleClass", tabindex: ["tabindex", "tabindex", numberAttribute], ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", listStyle: "listStyle", responsive: ["responsive", "responsive", booleanAttribute], filterBy: "filterBy", filterPlaceholder: "filterPlaceholder", filterLocale: "filterLocale", metaKeySelection: ["metaKeySelection", "metaKeySelection", booleanAttribute], dragdrop: ["dragdrop", "dragdrop", booleanAttribute], controlsPosition: "controlsPosition", ariaFilterLabel: "ariaFilterLabel", filterMatchMode: "filterMatchMode", breakpoint: "breakpoint", stripedRows: ["stripedRows", "stripedRows", booleanAttribute], disabled: ["disabled", "disabled", booleanAttribute], trackBy: "trackBy", scrollHeight: "scrollHeight", autoOptionFocus: ["autoOptionFocus", "autoOptionFocus", booleanAttribute], selection: "selection", value: "value", buttonProps: "buttonProps", moveUpButtonProps: "moveUpButtonProps", moveTopButtonProps: "moveTopButtonProps", moveDownButtonProps: "moveDownButtonProps", moveBottomButtonProps: "moveBottomButtonProps" }, outputs: { selectionChange: "selectionChange", onReorder: "onReorder", onSelectionChange: "onSelectionChange", onFilterEvent: "onFilterEvent", onFocus: "onFocus", onBlur: "onBlur" }, providers: [OrderListStyle], queries: [{ propertyName: "itemTemplate", first: true, predicate: ["item"] }, { propertyName: "emptyMessageTemplate", first: true, predicate: ["empty"] }, { propertyName: "emptyFilterMessageTemplate", first: true, predicate: ["emptyfilter"] }, { propertyName: "filterTemplate", first: true, predicate: ["filter"] }, { propertyName: "headerTemplate", first: true, predicate: ["header"] }, { propertyName: "moveUpIconTemplate", first: true, predicate: ["moveupicon"] }, { propertyName: "moveTopIconTemplate", first: true, predicate: ["movetopicon"] }, { propertyName: "moveDownIconTemplate", first: true, predicate: ["movedownicon"] }, { propertyName: "moveBottomIconTemplate", first: true, predicate: ["movebottomicon"] }, { propertyName: "filterIconTemplate", first: true, predicate: ["filtericon"] }, { propertyName: "templates", predicate: PrimeTemplate }], viewQueries: [{ propertyName: "listViewChild", first: true, predicate: ["listelement"], descendants: true }, { propertyName: "filterViewChild", first: true, predicate: ["filter"], descendants: true }], usesInheritance: true, ngImport: i0, template: ` <div [ngClass]="{ 'p-orderlist p-component': true, 'p-orderlist-striped': stripedRows, 'p-orderlist-controls-left': controlsPosition === 'left', 'p-orderlist-controls-right': controlsPosition === 'right' }" [ngStyle]="style" [class]="styleClass" [attr.data-pc-section]="'root'" > <div class="p-orderlist-controls" [attr.data-pc-section]="'controls'"> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveUp()" [attr.aria-label]="moveUpAriaLabel" [attr.data-pc-section]="'moveUpButton'" [buttonProps]="getButtonProps('up')"> <AngleUpIcon *ngIf="!moveUpIconTemplate && !_moveUpIconTemplate" [attr.data-pc-section]="'moveupicon'" /> <ng-template *ngTemplateOutlet="moveUpIconTemplate || _moveUpIconTemplate"></ng-template> </button> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveTop()" [attr.aria-label]="moveTopAriaLabel" [attr.data-pc-section]="'moveTopButton'" [buttonProps]="getButtonProps('top')"> <AngleDoubleUpIcon *ngIf="!moveTopIconTemplate && !_moveTopIconTemplate" [attr.data-pc-section]="'movetopicon'" /> <ng-template *ngTemplateOutlet="moveTopIconTemplate || _moveTopIconTemplate"></ng-template> </button> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveDown()" [attr.aria-label]="moveDownAriaLabel" [attr.data-pc-section]="'moveDownButton'" [buttonProps]="getButtonProps('down')"> <AngleDownIcon *ngIf="!moveDownIconTemplate && !_moveDownIconTemplate" [attr.data-pc-section]="'movedownicon'" /> <ng-template *ngTemplateOutlet="moveDownIconTemplate || _moveDownIconTemplate"></ng-template> </button> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveBottom()" [attr.aria-label]="moveBottomAriaLabel" [attr.data-pc-section]="'moveBottomButton'" [buttonProps]="getButtonProps('bottom')" > <AngleDoubleDownIcon *ngIf="!moveBottomIconTemplate && !_moveBottomIconTemplate" [attr.data-pc-section]="'movebottomicon'" /> <ng-template *ngTemplateOutlet="moveBottomIconTemplate || _moveBottomIconTemplate"></ng-template> </button> </div> <div class="p-orderlist-list-container" [attr.data-pc-section]="'container'"> <p-listbox #listelement [multiple]="true" [options]="value" [(ngModel)]="d_selection" optionLabel="name" [id]="id + '_list'" [listStyle]="listStyle" [striped]="stripedRows" [tabindex]="tabindex" (onFocus)="onListFocus($event)" (onBlur)="onListBlur($event)" (keydown)="onItemKeydown($event)" [ariaLabel]="ariaLabel" [disabled]="disabled" [metaKeySelection]="metaKeySelection" [scrollHeight]="scrollHeight" [autoOptionFocus]="autoOptionFocus" [filter]="filterBy" [filterBy]="filterBy" [filterLocale]="filterLocale" [filterPlaceHolder]="filterPlaceholder" [dragdrop]="dragdrop" (onDrop)="onDrop($event)" > <ng-container *ngIf="headerTemplate || _headerTemplate"> <ng-template #header> <ng-template *ngTemplateOutlet="headerTemplate || _headerTemplate"></ng-template> </ng-template> </ng-container> <ng-container *ngIf="itemTemplate || _itemTemplate"> <ng-template #item let-option let-selected="selected" let-index="index"> <ng-template *ngTemplateOutlet="itemTemplate || _itemTemplate; context: { $implicit: option, selected: selected, index: index }"></ng-template> </ng-template> </ng-container> </p-listbox> </div> </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "loading", "severity", "raised", "rounded", "text", "outlined", "size", "plain", "fluid", "label", "icon", "buttonProps"] }, { kind: "directive", type: Ripple, selector: "[pRipple]" }, { kind: "ngmodule", type: DragDropModule }, { kind: "component", type: AngleDoubleDownIcon, selector: "AngleDoubleDownIcon" }, { kind: "component", type: AngleDoubleUpIcon, selector: "AngleDoubleUpIcon" }, { kind: "component", type: AngleUpIcon, selector: "AngleUpIcon" }, { kind: "component", type: AngleDownIcon, selector: "AngleDownIcon" }, { kind: "component", type: Listbox, selector: "p-listbox, p-listBox, p-list-box", inputs: ["id", "searchMessage", "emptySelectionMessage", "selectionMessage", "autoOptionFocus", "ariaLabel", "selectOnFocus", "searchLocale", "focusOnHover", "filterMessage", "filterFields", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "scrollHeight", "tabindex", "multiple", "style", "styleClass", "listStyle", "listStyleClass", "readonly", "disabled", "checkbox", "filter", "filterBy", "filterMatchMode", "filterLocale", "metaKeySelection", "dataKey", "showToggleAll", "optionLabel", "optionValue", "optionGroupChildren", "optionGroupLabel", "optionDisabled", "ariaFilterLabel", "filterPlaceHolder", "emptyFilterMessage", "emptyMessage", "group", "options", "filterValue", "selectAll", "striped", "highlightOnSelect", "checkmark", "dragdrop"], outputs: ["onChange", "onClick", "onDblClick", "onFilter", "onFocus", "onBlur", "onSelectAllChange", "onLazyLoad", "onDrop"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: SharedModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderList, decorators: [{ type: Component, args: [{ selector: 'p-orderList, p-orderlist, p-order-list', standalone: true, imports: [CommonModule, ButtonDirective, Ripple, DragDropModule, AngleDoubleDownIcon, AngleDoubleUpIcon, AngleUpIcon, AngleDownIcon, Listbox, FormsModule, SharedModule], template: ` <div [ngClass]="{ 'p-orderlist p-component': true, 'p-orderlist-striped': stripedRows, 'p-orderlist-controls-left': controlsPosition === 'left', 'p-orderlist-controls-right': controlsPosition === 'right' }" [ngStyle]="style" [class]="styleClass" [attr.data-pc-section]="'root'" > <div class="p-orderlist-controls" [attr.data-pc-section]="'controls'"> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveUp()" [attr.aria-label]="moveUpAriaLabel" [attr.data-pc-section]="'moveUpButton'" [buttonProps]="getButtonProps('up')"> <AngleUpIcon *ngIf="!moveUpIconTemplate && !_moveUpIconTemplate" [attr.data-pc-section]="'moveupicon'" /> <ng-template *ngTemplateOutlet="moveUpIconTemplate || _moveUpIconTemplate"></ng-template> </button> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveTop()" [attr.aria-label]="moveTopAriaLabel" [attr.data-pc-section]="'moveTopButton'" [buttonProps]="getButtonProps('top')"> <AngleDoubleUpIcon *ngIf="!moveTopIconTemplate && !_moveTopIconTemplate" [attr.data-pc-section]="'movetopicon'" /> <ng-template *ngTemplateOutlet="moveTopIconTemplate || _moveTopIconTemplate"></ng-template> </button> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveDown()" [attr.aria-label]="moveDownAriaLabel" [attr.data-pc-section]="'moveDownButton'" [buttonProps]="getButtonProps('down')"> <AngleDownIcon *ngIf="!moveDownIconTemplate && !_moveDownIconTemplate" [attr.data-pc-section]="'movedownicon'" /> <ng-template *ngTemplateOutlet="moveDownIconTemplate || _moveDownIconTemplate"></ng-template> </button> <button type="button" [disabled]="moveDisabled()" pButton pRipple class="p-button-icon-only" (click)="moveBottom()" [attr.aria-label]="moveBottomAriaLabel" [attr.data-pc-section]="'moveBottomButton'" [buttonProps]="getButtonProps('bottom')" > <AngleDoubleDownIcon *ngIf="!moveBottomIconTemplate && !_moveBottomIconTemplate" [attr.data-pc-section]="'movebottomicon'" /> <ng-template *ngTemplateOutlet="moveBottomIconTemplate || _moveBottomIconTemplate"></ng-template> </button> </div> <div class="p-orderlist-list-container" [attr.data-pc-section]="'container'"> <p-listbox #listelement [multiple]="true" [options]="value" [(ngModel)]="d_selection" optionLabel="name" [id]="id + '_list'" [listStyle]="listStyle" [striped]="stripedRows" [tabindex]="tabindex" (onFocus)="onListFocus($event)" (onBlur)="onListBlur($event)" (keydown)="onItemKeydown($event)" [ariaLabel]="ariaLabel" [disabled]="disabled" [metaKeySelection]="metaKeySelection" [scrollHeight]="scrollHeight" [autoOptionFocus]="autoOptionFocus" [filter]="filterBy" [filterBy]="filterBy" [filterLocale]="filterLocale" [filterPlaceHolder]="filterPlaceholder" [dragdrop]="dragdrop" (onDrop)="onDrop($event)" > <ng-container *ngIf="headerTemplate || _headerTemplate"> <ng-template #header> <ng-template *ngTemplateOutlet="headerTemplate || _headerTemplate"></ng-template> </ng-template> </ng-container> <ng-container *ngIf="itemTemplate || _itemTemplate"> <ng-template #item let-option let-selected="selected" let-index="index"> <ng-template *ngTemplateOutlet="itemTemplate || _itemTemplate; context: { $implicit: option, selected: selected, index: index }"></ng-template> </ng-template> </ng-container> </p-listbox> </div> </div> `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, providers: [OrderListStyle] }] }], propDecorators: { header: [{ type: Input }], style: [{ type: Input }], styleClass: [{ type: Input }], tabindex: [{ type: Input, args: [{ transform: numberAttribute }] }], ariaLabel: [{ type: Input }], ariaLabelledBy: [{ type: Input }], listStyle: [{ type: Input }], responsive: [{ type: Input, args: [{ transform: booleanAttribute }] }], filterBy: [{ type: Input }], filterPlaceholder: [{ type: Input }], filterLocale: [{ type: Input }], metaKeySelection: [{ type: Input, args: [{ transform: booleanAttribute }] }], dragdrop: [{ type: Input, args: [{ transform: booleanAttribute }] }], controlsPosition: [{ type: Input }], ariaFilterLabel: [{ type: Input }], filterMatchMode: [{ type: Input }], breakpoint: [{ type: Input }], stripedRows: [{ type: Input, args: [{ transform: booleanAttribute }] }], disabled: [{ type: Input, args: [{ transform: booleanAttribute }] }], trackBy: [{ type: Input }], scrollHeight: [{ type: Input }], autoOptionFocus: [{ type: Input, args: [{ transform: booleanAttribute }] }], selection: [{ type: Input }], value: [{ type: Input }], buttonProps: [{ type: Input }], moveUpButtonProps: [{ type: Input }], moveTopButtonProps: [{ type: Input }], moveDownButtonProps: [{ type: Input }], moveBottomButtonProps: [{ type: Input }], selectionChange: [{ type: Output }], onReorder: [{ type: Output }], onSelectionChange: [{ type: Output }], onFilterEvent: [{ type: Output }], onFocus: [{ type: Output }], onBlur: [{ type: Output }], listViewChild: [{ type: ViewChild, args: ['listelement'] }], filterViewChild: [{ type: ViewChild, args: ['filter'] }], itemTemplate: [{ type: ContentChild, args: ['item', { descendants: false }] }], emptyMessageTemplate: [{ type: ContentChild, args: ['empty', { descendants: false }] }], emptyFilterMessageTemplate: [{ type: ContentChild, args: ['emptyfilter', { descendants: false }] }], filterTemplate: [{ type: ContentChild, args: ['filter', { descendants: false }] }], headerTemplate: [{ type: ContentChild, args: ['header', { descendants: false }] }], moveUpIconTemplate: [{ type: ContentChild, args: ['moveupicon', { descendants: false }] }], moveTopIconTemplate: [{ type: ContentChild, args: ['movetopicon', { descendants: false }] }], moveDownIconTemplate: [{ type: ContentChild, args: ['movedownicon', { descendants: false }] }], moveBottomIconTemplate: [{ type: ContentChild, args: ['movebottomicon', { descendants: false }] }], filterIconTemplate: [{ type: ContentChild, args: ['filtericon', { descendants: false }] }], templates: [{ type: ContentChildren, args: [PrimeTemplate] }] } }); class OrderListModule { static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.2", ngImport: i0, type: OrderListModule, imports: [OrderList, SharedModule], exports: [OrderList, SharedModule] }); static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderListModule, imports: [OrderList, SharedModule, SharedModule] }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: OrderListModule, decorators: [{ type: NgModule, args: [{ imports: [OrderList, SharedModule], exports: [OrderList, SharedModule] }] }] }); /** * Generated bundle index. Do not edit. */ export { OrderList, OrderListClasses, OrderListModule, OrderListStyle }; //# sourceMappingURL=primeng-orderlist.mjs.map