UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue 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 PrimeBloc

1,036 lines (1,030 loc) 55.3 kB
this.primevue = this.primevue || {}; this.primevue.picklist = (function (Button, AngleDoubleDownIcon, AngleDoubleLeftIcon, AngleDoubleRightIcon, AngleDoubleUpIcon, AngleDownIcon, AngleLeftIcon, AngleRightIcon, AngleUpIcon, Ripple, utils, BaseComponent, PickListStyle, vue) { 'use strict'; function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } var Button__default = /*#__PURE__*/_interopDefaultLegacy(Button); var AngleDoubleDownIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleDoubleDownIcon); var AngleDoubleLeftIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleDoubleLeftIcon); var AngleDoubleRightIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleDoubleRightIcon); var AngleDoubleUpIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleDoubleUpIcon); var AngleDownIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleDownIcon); var AngleLeftIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleLeftIcon); var AngleRightIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleRightIcon); var AngleUpIcon__default = /*#__PURE__*/_interopDefaultLegacy(AngleUpIcon); var Ripple__default = /*#__PURE__*/_interopDefaultLegacy(Ripple); var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent); var PickListStyle__default = /*#__PURE__*/_interopDefaultLegacy(PickListStyle); var script$1 = { name: 'BasePickList', "extends": BaseComponent__default["default"], props: { modelValue: { type: Array, "default": function _default() { return [[], []]; } }, selection: { type: Array, "default": function _default() { return [[], []]; } }, dataKey: { type: String, "default": null }, listStyle: { type: null, "default": null }, metaKeySelection: { type: Boolean, "default": false }, responsive: { type: Boolean, "default": true }, breakpoint: { type: String, "default": '960px' }, stripedRows: { type: Boolean, "default": false }, showSourceControls: { type: Boolean, "default": true }, showTargetControls: { type: Boolean, "default": true }, targetListProps: { type: null, "default": null }, sourceListProps: { type: null, "default": null }, moveUpButtonProps: { type: null, "default": null }, moveTopButtonProps: { type: null, "default": null }, moveDownButtonProps: { type: null, "default": null }, moveBottomButtonProps: { type: null, "default": null }, moveToTargetProps: { type: null, "default": null }, moveAllToTargetProps: { type: null, "default": null }, moveToSourceProps: { type: null, "default": null }, moveAllToSourceProps: { type: null, "default": null }, tabindex: { type: Number, "default": 0 } }, style: PickListStyle__default["default"], provide: function provide() { return { $parentInstance: this }; } }; function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } var script = { name: 'PickList', "extends": script$1, emits: ['update:modelValue', 'reorder', 'update:selection', 'selection-change', 'move-to-target', 'move-to-source', 'move-all-to-target', 'move-all-to-source', 'focus', 'blur'], itemTouched: false, reorderDirection: null, styleElement: null, media: null, mediaChangeListener: null, data: function data() { return { id: this.$attrs.id, d_selection: this.selection, focused: { sourceList: false, targetList: false }, focusedOptionIndex: -1, viewChanged: false }; }, watch: { '$attrs.id': function $attrsId(newValue) { this.id = newValue || utils.UniqueComponentId(); }, selection: function selection(newValue) { this.d_selection = newValue; }, breakpoint: function breakpoint(newValue) { this.destroyMedia(); this.initMedia(); } }, updated: function updated() { if (this.reorderDirection) { this.updateListScroll(this.$refs.sourceList.$el); this.updateListScroll(this.$refs.targetList.$el); this.reorderDirection = null; } }, beforeUnmount: function beforeUnmount() { this.destroyStyle(); this.destroyMedia(); }, mounted: function mounted() { this.id = this.id || utils.UniqueComponentId(); if (this.responsive) { this.createStyle(); this.initMedia(); } }, methods: { getItemKey: function getItemKey(item, index) { return this.dataKey ? utils.ObjectUtils.resolveFieldData(item, this.dataKey) : index; }, getPTOptions: function getPTOptions(item, key, id, listIndex) { return this.ptm(key, { context: { active: this.isSelected(item, listIndex), focused: id === this.focusedOptionId } }); }, isSelected: function isSelected(item, listIndex) { return utils.ObjectUtils.findIndexInList(item, this.d_selection[listIndex]) != -1; }, onListFocus: function onListFocus(event, listType) { var selectedFirstItem = utils.DomHandler.findSingle(this.$refs[listType].$el, '[data-p-highlight="true"]') || utils.DomHandler.findSingle(this.$refs[listType].$el, '[data-pc-section="item"]'); if (selectedFirstItem) { var findIndex = utils.ObjectUtils.findIndexInList(selectedFirstItem, this.$refs[listType].$el.children); this.focused[listType] = true; var index = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : selectedFirstItem ? findIndex : -1; this.changeFocusedOptionIndex(index, listType); this.$emit('focus', event); } }, onListBlur: function onListBlur(event, listType) { this.focused[listType] = false; this.focusedOptionIndex = -1; this.$emit('blur', event); }, onOptionMouseDown: function onOptionMouseDown(index, listType) { this.focused[listType] = true; this.focusedOptionIndex = index; }, moveUp: function moveUp(event, listIndex) { if (this.d_selection && this.d_selection[listIndex]) { var valueList = _toConsumableArray(this.modelValue[listIndex]); var selectionList = this.d_selection[listIndex]; for (var i = 0; i < selectionList.length; i++) { var selectedItem = selectionList[i]; var selectedItemIndex = utils.ObjectUtils.findIndexInList(selectedItem, valueList); if (selectedItemIndex !== 0) { var movedItem = valueList[selectedItemIndex]; var temp = valueList[selectedItemIndex - 1]; valueList[selectedItemIndex - 1] = movedItem; valueList[selectedItemIndex] = temp; } else { break; } } var value = _toConsumableArray(this.modelValue); value[listIndex] = valueList; this.reorderDirection = 'up'; this.$emit('update:modelValue', value); this.$emit('reorder', { originalEvent: event, value: value, direction: this.reorderDirection, listIndex: listIndex }); } }, moveTop: function moveTop(event, listIndex) { if (this.d_selection) { var valueList = _toConsumableArray(this.modelValue[listIndex]); var selectionList = this.d_selection[listIndex]; for (var i = 0; i < selectionList.length; i++) { var selectedItem = selectionList[i]; var selectedItemIndex = utils.ObjectUtils.findIndexInList(selectedItem, valueList); if (selectedItemIndex !== 0) { var movedItem = valueList.splice(selectedItemIndex, 1)[0]; valueList.unshift(movedItem); } else { break; } } var value = _toConsumableArray(this.modelValue); value[listIndex] = valueList; this.reorderDirection = 'top'; this.$emit('update:modelValue', value); this.$emit('reorder', { originalEvent: event, value: value, direction: this.reorderDirection, listIndex: listIndex }); } }, moveDown: function moveDown(event, listIndex) { if (this.d_selection) { var valueList = _toConsumableArray(this.modelValue[listIndex]); var selectionList = this.d_selection[listIndex]; for (var i = selectionList.length - 1; i >= 0; i--) { var selectedItem = selectionList[i]; var selectedItemIndex = utils.ObjectUtils.findIndexInList(selectedItem, valueList); if (selectedItemIndex !== valueList.length - 1) { var movedItem = valueList[selectedItemIndex]; var temp = valueList[selectedItemIndex + 1]; valueList[selectedItemIndex + 1] = movedItem; valueList[selectedItemIndex] = temp; } else { break; } } var value = _toConsumableArray(this.modelValue); value[listIndex] = valueList; this.reorderDirection = 'down'; this.$emit('update:modelValue', value); this.$emit('reorder', { originalEvent: event, value: value, direction: this.reorderDirection, listIndex: listIndex }); } }, moveBottom: function moveBottom(event, listIndex) { if (this.d_selection) { var valueList = _toConsumableArray(this.modelValue[listIndex]); var selectionList = this.d_selection[listIndex]; for (var i = selectionList.length - 1; i >= 0; i--) { var selectedItem = selectionList[i]; var selectedItemIndex = utils.ObjectUtils.findIndexInList(selectedItem, valueList); if (selectedItemIndex !== valueList.length - 1) { var movedItem = valueList.splice(selectedItemIndex, 1)[0]; valueList.push(movedItem); } else { break; } } var value = _toConsumableArray(this.modelValue); value[listIndex] = valueList; this.reorderDirection = 'bottom'; this.$emit('update:modelValue', value); this.$emit('reorder', { originalEvent: event, value: value, direction: this.reorderDirection, listIndex: listIndex }); } }, moveToTarget: function moveToTarget(event) { var selection = this.d_selection && this.d_selection[0] ? this.d_selection[0] : null; var sourceList = _toConsumableArray(this.modelValue[0]); var targetList = _toConsumableArray(this.modelValue[1]); if (selection) { for (var i = 0; i < selection.length; i++) { var selectedItem = selection[i]; if (utils.ObjectUtils.findIndexInList(selectedItem, targetList) == -1) { targetList.push(sourceList.splice(utils.ObjectUtils.findIndexInList(selectedItem, sourceList), 1)[0]); } } var value = _toConsumableArray(this.modelValue); value[0] = sourceList; value[1] = targetList; this.$emit('update:modelValue', value); this.$emit('move-to-target', { originalEvent: event, items: _toConsumableArray(new Set(selection)) }); this.d_selection[0] = []; this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } }, moveAllToTarget: function moveAllToTarget(event) { if (this.modelValue[0]) { var sourceList = _toConsumableArray(this.modelValue[0]); var targetList = _toConsumableArray(this.modelValue[1]); this.$emit('move-all-to-target', { originalEvent: event, items: sourceList }); targetList = [].concat(_toConsumableArray(targetList), _toConsumableArray(sourceList)); sourceList = []; var value = _toConsumableArray(this.modelValue); value[0] = sourceList; value[1] = targetList; this.$emit('update:modelValue', value); this.d_selection[0] = []; this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } }, moveToSource: function moveToSource(event) { var selection = this.d_selection && this.d_selection[1] ? this.d_selection[1] : null; var sourceList = _toConsumableArray(this.modelValue[0]); var targetList = _toConsumableArray(this.modelValue[1]); if (selection) { for (var i = 0; i < selection.length; i++) { var selectedItem = selection[i]; if (utils.ObjectUtils.findIndexInList(selectedItem, sourceList) == -1) { sourceList.push(targetList.splice(utils.ObjectUtils.findIndexInList(selectedItem, targetList), 1)[0]); } } var value = _toConsumableArray(this.modelValue); value[0] = sourceList; value[1] = targetList; this.$emit('update:modelValue', value); this.$emit('move-to-source', { originalEvent: event, items: _toConsumableArray(new Set(selection)) }); this.d_selection[1] = []; this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } }, moveAllToSource: function moveAllToSource(event) { if (this.modelValue[1]) { var sourceList = _toConsumableArray(this.modelValue[0]); var targetList = _toConsumableArray(this.modelValue[1]); this.$emit('move-all-to-source', { originalEvent: event, items: targetList }); sourceList = [].concat(_toConsumableArray(sourceList), _toConsumableArray(targetList)); targetList = []; var value = _toConsumableArray(this.modelValue); value[0] = sourceList; value[1] = targetList; this.$emit('update:modelValue', value); this.d_selection[1] = []; this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } }, onItemClick: function onItemClick(event, item, index, listIndex) { var listType = listIndex === 0 ? 'sourceList' : 'targetList'; this.itemTouched = false; var selectionList = this.d_selection[listIndex]; var selectedIndex = utils.ObjectUtils.findIndexInList(item, selectionList); var selected = selectedIndex != -1; var metaSelection = this.itemTouched ? false : this.metaKeySelection; var selectedId = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]')[index].getAttribute('id'); this.focusedOptionIndex = selectedId; var _selection; if (metaSelection) { var metaKey = event.metaKey || event.ctrlKey; if (selected && metaKey) { _selection = selectionList.filter(function (val, index) { return index !== selectedIndex; }); } else { _selection = metaKey ? selectionList ? _toConsumableArray(selectionList) : [] : []; _selection.push(item); } } else { if (selected) { _selection = selectionList.filter(function (val, index) { return index !== selectedIndex; }); } else { _selection = selectionList ? _toConsumableArray(selectionList) : []; _selection.push(item); } } var newSelection = _toConsumableArray(this.d_selection); newSelection[listIndex] = _selection; this.d_selection = newSelection; this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); }, onItemDblClick: function onItemDblClick(event, item, listIndex) { if (listIndex === 0) this.moveToTarget(event);else if (listIndex === 1) this.moveToSource(event); }, onItemTouchEnd: function onItemTouchEnd() { this.itemTouched = true; }, onItemKeyDown: function onItemKeyDown(event, listType) { switch (event.code) { case 'ArrowDown': this.onArrowDownKey(event, listType); break; case 'ArrowUp': this.onArrowUpKey(event, listType); break; case 'Home': this.onHomeKey(event, listType); break; case 'End': this.onEndKey(event, listType); break; case 'Enter': case 'NumpadEnter': this.onEnterKey(event, listType); break; case 'Space': this.onSpaceKey(event, listType); break; case 'KeyA': if (event.ctrlKey) { this.d_selection = _toConsumableArray(this.modelValue); this.$emit('update:selection', this.d_selection); event.preventDefault(); } } }, onArrowDownKey: function onArrowDownKey(event, listType) { var optionIndex = this.findNextOptionIndex(this.focusedOptionIndex, listType); this.changeFocusedOptionIndex(optionIndex, listType); if (event.shiftKey) { this.onEnterKey(event, listType); } event.preventDefault(); }, onArrowUpKey: function onArrowUpKey(event, listType) { var optionIndex = this.findPrevOptionIndex(this.focusedOptionIndex, listType); this.changeFocusedOptionIndex(optionIndex, listType); if (event.shiftKey) { this.onEnterKey(event, listType); } event.preventDefault(); }, onEnterKey: function onEnterKey(event, listType) { var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); var focusedItem = utils.DomHandler.findSingle(this.$refs[listType].$el, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]")); var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) { return item === focusedItem; }); var listId = listType === 'sourceList' ? 0 : 1; this.onItemClick(event, this.modelValue[listId][matchedOptionIndex], matchedOptionIndex, listId); event.preventDefault(); }, onSpaceKey: function onSpaceKey(event, listType) { event.preventDefault(); if (event.shiftKey && this.d_selection && this.d_selection.length > 0) { var listId = listType === 'sourceList' ? 0 : 1; var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); var selectedItemIndex = utils.ObjectUtils.findIndexInList(this.d_selection[listId][0], _toConsumableArray(this.modelValue[listId])); var focusedItem = utils.DomHandler.findSingle(this.$refs[listType].$el, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]")); var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) { return item === focusedItem; }); this.d_selection[listId] = _toConsumableArray(this.modelValue[listId]).slice(Math.min(selectedItemIndex, matchedOptionIndex), Math.max(selectedItemIndex, matchedOptionIndex) + 1); this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } else { this.onEnterKey(event, listType); } }, onHomeKey: function onHomeKey(event, listType) { if (event.ctrlKey && event.shiftKey) { var listId = listType === 'sourceList' ? 0 : 1; var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); var focusedItem = utils.DomHandler.findSingle(this.$refs[listType].$el, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]")); var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) { return item === focusedItem; }); this.d_selection[listId] = _toConsumableArray(this.modelValue[listId]).slice(0, matchedOptionIndex + 1); this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } else { this.changeFocusedOptionIndex(0, listType); } event.preventDefault(); }, onEndKey: function onEndKey(event, listType) { var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); if (event.ctrlKey && event.shiftKey) { var listId = listType === 'sourceList' ? 0 : 1; var focusedItem = utils.DomHandler.findSingle(this.$refs[listType].$el, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]")); var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) { return item === focusedItem; }); this.d_selection[listId] = _toConsumableArray(this.modelValue[listId]).slice(matchedOptionIndex, items.length); this.$emit('update:selection', this.d_selection); this.$emit('selection-change', { originalEvent: event, value: this.d_selection }); } else { this.changeFocusedOptionIndex(items.length - 1, listType); } event.preventDefault(); }, findNextOptionIndex: function findNextOptionIndex(index, listType) { var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); var matchedOptionIndex = _toConsumableArray(items).findIndex(function (link) { return link.id === index; }); return matchedOptionIndex > -1 ? matchedOptionIndex + 1 : 0; }, findPrevOptionIndex: function findPrevOptionIndex(index, listType) { var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); var matchedOptionIndex = _toConsumableArray(items).findIndex(function (link) { return link.id === index; }); return matchedOptionIndex > -1 ? matchedOptionIndex - 1 : 0; }, changeFocusedOptionIndex: function changeFocusedOptionIndex(index, listType) { var items = utils.DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]'); var order = index >= items.length ? items.length - 1 : index < 0 ? 0 : index; this.focusedOptionIndex = items[order].getAttribute('id'); this.scrollInView(items[order].getAttribute('id'), listType); }, scrollInView: function scrollInView(id, listType) { var element = utils.DomHandler.findSingle(this.$refs[listType].$el, "[data-pc-section=\"item\"][id=\"".concat(id, "\"]")); if (element) { element.scrollIntoView && element.scrollIntoView({ block: 'nearest', inline: 'start' }); } }, updateListScroll: function updateListScroll(listElement) { var listItems = utils.DomHandler.find(listElement, '[data-pc-section="item"][data-p-highlight="true"]'); if (listItems && listItems.length) { switch (this.reorderDirection) { case 'up': utils.DomHandler.scrollInView(listElement, listItems[0]); break; case 'top': listElement.scrollTop = 0; break; case 'down': utils.DomHandler.scrollInView(listElement, listItems[listItems.length - 1]); break; case 'bottom': listElement.scrollTop = listElement.scrollHeight; break; } } }, initMedia: function initMedia() { this.media = window.matchMedia("(max-width: ".concat(this.breakpoint, ")")); this.viewChanged = this.media.matches; this.bindMediaChangeListener(); }, destroyMedia: function destroyMedia() { this.unbindMediaChangeListener(); }, bindMediaChangeListener: function bindMediaChangeListener() { var _this = this; if (this.media && !this.mediaChangeListener) { this.mediaChangeListener = function (event) { _this.viewChanged = event.matches; }; this.media.addEventListener('change', this.mediaChangeListener); } }, unbindMediaChangeListener: function unbindMediaChangeListener() { if (this.media && this.mediaChangeListener) { this.media.removeEventListener('change', this.mediaChangeListener); this.mediaChangeListener = null; } }, createStyle: function createStyle() { if (!this.styleElement && !this.isUnstyled) { var _this$$primevue; this.$el.setAttribute(this.attributeSelector, ''); this.styleElement = document.createElement('style'); this.styleElement.type = 'text/css'; utils.DomHandler.setAttribute(this.styleElement, 'nonce', (_this$$primevue = this.$primevue) === null || _this$$primevue === void 0 || (_this$$primevue = _this$$primevue.config) === null || _this$$primevue === void 0 || (_this$$primevue = _this$$primevue.csp) === null || _this$$primevue === void 0 ? void 0 : _this$$primevue.nonce); document.head.appendChild(this.styleElement); var innerHTML = "\n@media screen and (max-width: ".concat(this.breakpoint, ") {\n .p-picklist[").concat(this.attributeSelector, "] {\n flex-direction: column;\n }\n\n .p-picklist[").concat(this.attributeSelector, "] .p-picklist-buttons {\n padding: var(--content-padding);\n flex-direction: row;\n }\n\n .p-picklist[").concat(this.attributeSelector, "] .p-picklist-buttons .p-button {\n margin-right: var(--inline-spacing);\n margin-bottom: 0;\n }\n\n .p-picklist[").concat(this.attributeSelector, "] .p-picklist-buttons .p-button:last-child {\n margin-right: 0;\n }\n}\n"); this.styleElement.innerHTML = innerHTML; } }, destroyStyle: function destroyStyle() { if (this.styleElement) { document.head.removeChild(this.styleElement); this.styleElement = null; } }, moveDisabled: function moveDisabled(index) { if (!this.d_selection[index] || !this.d_selection[index].length) { return true; } }, moveAllDisabled: function moveAllDisabled(list) { return utils.ObjectUtils.isEmpty(this[list]); } }, computed: { idSource: function idSource() { return "".concat(this.id, "_source"); }, idTarget: function idTarget() { return "".concat(this.id, "_target"); }, focusedOptionId: function focusedOptionId() { return this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : null; }, sourceList: function sourceList() { return this.modelValue && this.modelValue[0] ? this.modelValue[0] : null; }, targetList: function targetList() { return this.modelValue && this.modelValue[1] ? this.modelValue[1] : null; }, attributeSelector: function attributeSelector() { return utils.UniqueComponentId(); }, moveUpAriaLabel: function moveUpAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveUp : undefined; }, moveTopAriaLabel: function moveTopAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveTop : undefined; }, moveDownAriaLabel: function moveDownAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveDown : undefined; }, moveBottomAriaLabel: function moveBottomAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveBottom : undefined; }, moveToTargetAriaLabel: function moveToTargetAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveToTarget : undefined; }, moveAllToTargetAriaLabel: function moveAllToTargetAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveAllToTarget : undefined; }, moveToSourceAriaLabel: function moveToSourceAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveToSource : undefined; }, moveAllToSourceAriaLabel: function moveAllToSourceAriaLabel() { return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveAllToSource : undefined; } }, components: { PLButton: Button__default["default"], AngleRightIcon: AngleRightIcon__default["default"], AngleLeftIcon: AngleLeftIcon__default["default"], AngleDownIcon: AngleDownIcon__default["default"], AngleUpIcon: AngleUpIcon__default["default"], AngleDoubleRightIcon: AngleDoubleRightIcon__default["default"], AngleDoubleLeftIcon: AngleDoubleLeftIcon__default["default"], AngleDoubleDownIcon: AngleDoubleDownIcon__default["default"], AngleDoubleUpIcon: AngleDoubleUpIcon__default["default"] }, directives: { ripple: Ripple__default["default"] } }; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } var _hoisted_1 = ["id", "onClick", "onDblclick", "onMousedown", "aria-selected", "data-p-highlight", "data-p-focused"]; var _hoisted_2 = ["id", "onClick", "onDblclick", "onMousedown", "aria-selected", "data-p-highlight", "data-p-focused"]; function render(_ctx, _cache, $props, $setup, $data, $options) { var _component_AngleUpIcon = vue.resolveComponent("AngleUpIcon"); var _component_PLButton = vue.resolveComponent("PLButton"); var _component_AngleDoubleUpIcon = vue.resolveComponent("AngleDoubleUpIcon"); var _component_AngleDownIcon = vue.resolveComponent("AngleDownIcon"); var _component_AngleDoubleDownIcon = vue.resolveComponent("AngleDoubleDownIcon"); var _directive_ripple = vue.resolveDirective("ripple"); return vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ "class": _ctx.cx('root') }, _ctx.ptm('root')), [_ctx.showSourceControls ? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ key: 0, "class": _ctx.cx('sourceControls') }, _ctx.ptm('sourceControls'), { "data-pc-group-section": "controls" }), [vue.renderSlot(_ctx.$slots, "sourcecontrolsstart"), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveUpAriaLabel, disabled: $options.moveDisabled(0), type: "button", onClick: _cache[0] || (_cache[0] = function ($event) { return $options.moveUp($event, 0); }) }, _ctx.moveUpButtonProps, { pt: _ctx.ptm('sourceMoveUpButton'), unstyled: _ctx.unstyled, "data-pc-section": "sourcemoveupbutton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "moveupicon", {}, function () { return [vue.createVNode(_component_AngleUpIcon, vue.mergeProps(_ctx.ptm('sourceMoveUpButton')['icon'], { "data-pc-section": "moveupicon" }), null, 16)]; })]; }), _: 3 }, 16, ["aria-label", "disabled", "pt", "unstyled"]), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveTopAriaLabel, disabled: $options.moveDisabled(0), type: "button", onClick: _cache[1] || (_cache[1] = function ($event) { return $options.moveTop($event, 0); }) }, _ctx.moveTopButtonProps, { pt: _ctx.ptm('sourceMoveTopButton'), unstyled: _ctx.unstyled, "data-pc-section": "sourcemovetopbutton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movetopicon", {}, function () { return [vue.createVNode(_component_AngleDoubleUpIcon, vue.mergeProps(_ctx.ptm('sourceMoveTopButton')['icon'], { "data-pc-section": "movetopicon" }), null, 16)]; })]; }), _: 3 }, 16, ["aria-label", "disabled", "pt", "unstyled"]), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveDownAriaLabel, disabled: $options.moveDisabled(0), type: "button", onClick: _cache[2] || (_cache[2] = function ($event) { return $options.moveDown($event, 0); }) }, _ctx.moveDownButtonProps, { pt: _ctx.ptm('sourceMoveDownButton'), unstyled: _ctx.unstyled, "data-pc-section": "sourcemovedownbutton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movedownicon", {}, function () { return [vue.createVNode(_component_AngleDownIcon, vue.mergeProps(_ctx.ptm('sourceMoveDownButton')['icon'], { "data-pc-section": "movedownicon" }), null, 16)]; })]; }), _: 3 }, 16, ["aria-label", "disabled", "pt", "unstyled"]), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveBottomAriaLabel, disabled: $options.moveDisabled(0), type: "button", onClick: _cache[3] || (_cache[3] = function ($event) { return $options.moveBottom($event, 0); }) }, _ctx.moveBottomButtonProps, { pt: _ctx.ptm('sourceMoveBottomButton'), unstyled: _ctx.unstyled, "data-pc-section": "sourcemovebottombutton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movebottomicon", {}, function () { return [vue.createVNode(_component_AngleDoubleDownIcon, vue.mergeProps(_ctx.ptm('sourceMoveBottomButton')['icon'], { "data-pc-section": "movebottomicon" }), null, 16)]; })]; }), _: 3 }, 16, ["aria-label", "disabled", "pt", "unstyled"]), vue.renderSlot(_ctx.$slots, "sourcecontrolsend")], 16)) : vue.createCommentVNode("", true), vue.createElementVNode("div", vue.mergeProps({ "class": _ctx.cx('sourceWrapper') }, _ctx.ptm('sourceWrapper'), { "data-pc-group-section": "listwrapper" }), [_ctx.$slots.sourceheader ? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ key: 0, "class": _ctx.cx('sourceHeader') }, _ctx.ptm('sourceHeader'), { "data-pc-group-section": "header" }), [vue.renderSlot(_ctx.$slots, "sourceheader")], 16)) : vue.createCommentVNode("", true), vue.createVNode(vue.TransitionGroup, vue.mergeProps({ ref: "sourceList", id: $options.idSource + '_list', name: "p-picklist-flip", tag: "ul", "class": _ctx.cx('sourceList'), style: _ctx.listStyle, role: "listbox", "aria-multiselectable": "true", "aria-activedescendant": $data.focused['sourceList'] ? $options.focusedOptionId : undefined, tabindex: $options.sourceList && $options.sourceList.length > 0 ? _ctx.tabindex : -1, onFocus: _cache[5] || (_cache[5] = function ($event) { return $options.onListFocus($event, 'sourceList'); }), onBlur: _cache[6] || (_cache[6] = function ($event) { return $options.onListBlur($event, 'sourceList'); }), onKeydown: _cache[7] || (_cache[7] = function ($event) { return $options.onItemKeyDown($event, 'sourceList'); }) }, _objectSpread(_objectSpread(_objectSpread({}, _ctx.sourceListProps), _ctx.ptm('sourceList')), _ctx.ptm('transition')), { "data-pc-group-section": "list" }), { "default": vue.withCtx(function () { return [(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList($options.sourceList, function (item, i) { return vue.withDirectives((vue.openBlock(), vue.createElementBlock("li", vue.mergeProps({ key: $options.getItemKey(item, i), id: $options.idSource + '_' + i, "class": _ctx.cx('item', { item: item, id: "".concat($options.idSource, "_").concat(i), listIndex: 0 }), onClick: function onClick($event) { return $options.onItemClick($event, item, i, 0); }, onDblclick: function onDblclick($event) { return $options.onItemDblClick($event, item, 0); }, onTouchend: _cache[4] || (_cache[4] = function () { return $options.onItemTouchEnd && $options.onItemTouchEnd.apply($options, arguments); }), onMousedown: function onMousedown($event) { return $options.onOptionMouseDown(i, 'sourceList'); }, role: "option", "aria-selected": $options.isSelected(item, 0) }, $options.getPTOptions(item, 'item', "".concat($options.idSource, "_").concat(i), 0), { "data-p-highlight": $options.isSelected(item, 0), "data-p-focused": "".concat($options.idSource, "_").concat(i) === $options.focusedOptionId }), [vue.renderSlot(_ctx.$slots, "item", { item: item, index: i })], 16, _hoisted_1)), [[_directive_ripple]]); }), 128))]; }), _: 3 }, 16, ["id", "class", "style", "aria-activedescendant", "tabindex"])], 16), vue.createElementVNode("div", vue.mergeProps({ "class": _ctx.cx('buttons') }, _ctx.ptm('buttons'), { "data-pc-group-section": "controls" }), [vue.renderSlot(_ctx.$slots, "movecontrolsstart"), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveToTargetAriaLabel, type: "button", onClick: $options.moveToTarget, disabled: $options.moveDisabled(0) }, _ctx.moveToTargetProps, { pt: _ctx.ptm('moveToTargetButton'), unstyled: _ctx.unstyled, "data-pc-section": "movetotargetbuton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movetotargeticon", { viewChanged: $data.viewChanged }, function () { return [(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($data.viewChanged ? 'AngleDownIcon' : 'AngleRightIcon'), vue.mergeProps(_ctx.ptm('moveToTargetButton')['icon'], { "data-pc-section": "movetotargeticon" }), null, 16))]; })]; }), _: 3 }, 16, ["aria-label", "onClick", "disabled", "pt", "unstyled"]), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveAllToTargetAriaLabel, type: "button", onClick: $options.moveAllToTarget, disabled: $options.moveAllDisabled('sourceList') }, _ctx.moveAllToTargetProps, { pt: _ctx.ptm('moveAllToTargetButton'), unstyled: _ctx.unstyled, "data-pc-section": "movealltotargetbuton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movealltotargeticon", { viewChanged: $data.viewChanged }, function () { return [(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($data.viewChanged ? 'AngleDoubleDownIcon' : 'AngleDoubleRightIcon'), vue.mergeProps(_ctx.ptm('moveAllToTargetButton')['icon'], { "data-pc-section": "movealltotargeticon" }), null, 16))]; })]; }), _: 3 }, 16, ["aria-label", "onClick", "disabled", "pt", "unstyled"]), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveToSourceAriaLabel, type: "button", onClick: $options.moveToSource, disabled: $options.moveDisabled(1) }, _ctx.moveToSourceProps, { pt: _ctx.ptm('moveToSourceButton'), unstyled: _ctx.unstyled, "data-pc-section": "movetosourcebuton" }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movetosourceicon", { viewChanged: $data.viewChanged }, function () { return [(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($data.viewChanged ? 'AngleUpIcon' : 'AngleLeftIcon'), vue.mergeProps(_ctx.ptm('moveToSourceButton')['icon'], { "data-pc-section": "movetosourceicon" }), null, 16))]; })]; }), _: 3 }, 16, ["aria-label", "onClick", "disabled", "pt", "unstyled"]), vue.createVNode(_component_PLButton, vue.mergeProps({ "aria-label": $options.moveAllToSourceAriaLabel, type: "button", onClick: $options.moveAllToSource, disabled: $options.moveAllDisabled('targetList') }, _ctx.moveAllToSourceProps, { pt: _ctx.ptm('moveAllToSourceButton'), "data-pc-section": "movealltosourcebuton", unstyled: _ctx.unstyled }), { icon: vue.withCtx(function () { return [vue.renderSlot(_ctx.$slots, "movealltosourceicon", { viewChanged: $data.viewChanged }, function () { return [(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($data.viewChanged ? 'AngleDoubleUpIcon' : 'AngleDoubleLeftIcon'), vue.mergeProps(_ctx.ptm('moveAllToSourceButton')['icon'], { "data-pc-section": "movealltosourceicon" }), null, 16))]; })]; }), _: 3 }, 16, ["aria-label", "onClick", "disabled", "pt", "unstyled"]), vue.renderSlot(_ctx.$slots, "movecontrolsend")], 16), vue.createElementVNode("div", vue.mergeProps({ "class": _ctx.cx('targetWrapper') }, _ctx.ptm('targetWrapper'), { "data-pc-group-section": "listwrapper" }), [_ctx.$slots.targetheader ? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ key: 0, "class": _ctx.cx('targetHeader') }, _ctx.ptm('targetHeader'), { "data-pc-group-section": "header" }), [vue.renderSlot(_ctx.$slots, "targetheader")], 16)) : vue.createCommentVNode("", true), vue.createVNode(vue.TransitionGroup, vue.mergeProps({ ref: "targetList", id: $options.idTarget + '_list', name: "p-picklist-flip", tag: "ul", "class": _ctx.cx('targetList'), style: _ctx.listStyle, role: "listbox", "aria-multiselectable": "true", "aria-activedescendant": $data.focused['targetList'] ? $options.focusedOptionId : undefined, tabindex: $options.targetList && $options.targetList.length > 0 ? _ctx.tabindex : -1, onFocus: _cache[10] || (_cache[10] = function ($event) { return $options.onListFocus($event, 'targetList'); }), onBlur: _cache[11] || (_cache[11] = function ($event) { return $options.onListBlur($event, 'targetList'); }), onKeydown: _cache[12] || (_cache[12] = function ($event) { return $options.onItemKeyDown($event, 'targetList'); }) }, _objectSpread(_objectSpread(_objectSpread({}, _ctx.targetListProps), _ctx.ptm('targetList')), _ctx.ptm('transition')), { "data-pc-group-section": "list" }), { "default": vue.withCtx(function () { return [(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList($options.targetList, function (item, i) { return vue.withDirectives((vue.openBlock(), vue.createElementBlock("li", vue.mergeProps({ key: $options.getItemKey(item, i), id: $options.idTarget + '_' + i, "class": _ctx.cx('item', { item: item, id: "".concat($options.idTarget, "_").concat(i), listIndex: 1 }), onClick: function onClick($event) { return $options.onItemClick($event, item, i, 1); }, onDblclick: function onDblclick($event) { return $options.onItemDblClick($event, item, 1); }, onKeydown: _cache[8] || (_cache[8] = function ($event) { return $options.onItemKeyDown($event, 'targetList');