Refactor #5548 - For TreeSelect

pull/5677/head
tugcekucukoglu 2024-04-08 15:21:07 +03:00
parent 81383c0f0c
commit 1a6be3235d
2 changed files with 7 additions and 3 deletions

View File

@ -9,6 +9,7 @@
*/ */
import { InputHTMLAttributes, TransitionProps, VNode } from 'vue'; import { InputHTMLAttributes, TransitionProps, VNode } from 'vue';
import { ComponentHooks } from '../basecomponent'; import { ComponentHooks } from '../basecomponent';
import { ChipPassThroughOptions } from '../chip';
import { PassThroughOptions } from '../passthrough'; import { PassThroughOptions } from '../passthrough';
import { TreeExpandedKeys, TreePassThroughOptions } from '../tree'; import { TreeExpandedKeys, TreePassThroughOptions } from '../tree';
import { TreeNode } from '../treenode'; import { TreeNode } from '../treenode';
@ -84,9 +85,10 @@ export interface TreeSelectPassThroughOptions {
*/ */
token?: TreeSelectPassThroughOptionType; token?: TreeSelectPassThroughOptionType;
/** /**
* Used to pass attributes to the token label's DOM element. * Used to pass attributes to the Chip.
* @see {@link ChipPassThroughOptions}
*/ */
tokenLabel?: TreeSelectPassThroughOptionType; tokenLabel?: ChipPassThroughOptions<TreeSelectSharedPassThroughMethodOptions>;
/** /**
* Used to pass attributes to the trigger's DOM element. * Used to pass attributes to the trigger's DOM element.
*/ */

View File

@ -30,7 +30,7 @@
</template> </template>
<template v-else-if="display === 'chip'"> <template v-else-if="display === 'chip'">
<div v-for="node of selectedNodes" :key="node.key" :class="cx('token')" v-bind="ptm('token')"> <div v-for="node of selectedNodes" :key="node.key" :class="cx('token')" v-bind="ptm('token')">
<span :class="cx('tokenLabel')" v-bind="ptm('tokenLabel')">{{ node.label }}</span> <Chip :class="cx('tokenLabel')" :label="node.label" :pt="ptm('tokenLabel')" />
</div> </div>
<template v-if="emptyValue">{{ placeholder || 'empty' }}</template> <template v-if="emptyValue">{{ placeholder || 'empty' }}</template>
</template> </template>
@ -106,6 +106,7 @@
</template> </template>
<script> <script>
import Chip from 'primevue/chip';
import ChevronDownIcon from 'primevue/icons/chevrondown'; import ChevronDownIcon from 'primevue/icons/chevrondown';
import OverlayEventBus from 'primevue/overlayeventbus'; import OverlayEventBus from 'primevue/overlayeventbus';
import Portal from 'primevue/portal'; import Portal from 'primevue/portal';
@ -500,6 +501,7 @@ export default {
}, },
components: { components: {
TSTree: Tree, TSTree: Tree,
Chip,
Portal: Portal, Portal: Portal,
ChevronDownIcon: ChevronDownIcon ChevronDownIcon: ChevronDownIcon
}, },