Merge branch 'primefaces:master' into master

pull/4873/head
Kadir Boylu 2023-11-23 12:53:25 +03:00 committed by GitHub
commit 7e9b406fdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 53 additions and 2 deletions

View File

@ -31,6 +31,10 @@ export default {
type: Boolean,
default: false
},
iconDisplay: {
type: String,
default: 'button'
},
icon: {
type: String,
default: undefined

View File

@ -479,6 +479,11 @@ export interface CalendarProps {
* @defaultValue false
*/
showIcon?: boolean | undefined;
/**
* Icon position of the component. This only applies if the showIcon option is set to true.
* @defaultValue 'button'
*/
iconDisplay?: 'button' | 'input' | undefined;
/**
* Icon of the calendar button.
* @deprecated since v3.27.0. Use 'dropdownicon' slot.
@ -784,6 +789,16 @@ export interface CalendarSlots {
*/
class: any;
}): VNode[];
/**
* Custom input icon template.
* @param {Object} scope - input icon slot's params.
*/
inputicon(scope: {
/**
* Style class of the input icon
*/
class: any;
}): VNode[];
/**
* Custom previous icon template.
* @param {Object} scope - previous icon slot's params.

View File

@ -28,7 +28,7 @@
v-bind="{ ...inputProps, ...ptm('input') }"
/>
<CalendarButton
v-if="showIcon"
v-if="showIcon && iconDisplay === 'button'"
:class="cx('dropdownButton')"
:disabled="disabled"
@click="onButtonClick"
@ -47,6 +47,11 @@
</slot>
</template>
</CalendarButton>
<template v-else-if="showIcon && iconDisplay === 'input'">
<slot name="inputicon" :class="cx('inputIcon')">
<component :is="icon ? 'i' : 'CalendarIcon'" :class="[icon, cx('inputIcon')]" @click="onButtonClick" v-bind="ptm('inputicon')" />
</slot>
</template>
<Portal :appendTo="appendTo" :disabled="inline">
<transition name="p-connected-overlay" @enter="onOverlayEnter($event)" @after-enter="onOverlayEnterComplete" @after-leave="onOverlayAfterLeave" @leave="onOverlayLeave" v-bind="ptm('transition')">
<div

View File

@ -22,6 +22,10 @@ const css = `
border-bottom-left-radius: 0;
}
.p-calendar .p-datepicker-trigger-icon {
cursor: pointer;
}
/* Fluid */
.p-fluid .p-calendar {
display: flex;
@ -158,7 +162,8 @@ const classes = {
root: ({ props, state }) => [
'p-calendar p-component p-inputwrapper',
{
'p-calendar-w-btn': props.showIcon,
'p-calendar-w-btn': props.showIcon && props.iconDisplay === 'button',
'p-input-icon-right': props.showIcon && props.iconDisplay === 'input',
'p-calendar-timeonly': props.timeOnly,
'p-calendar-disabled': props.disabled,
'p-inputwrapper-filled': props.modelValue,
@ -168,6 +173,7 @@ const classes = {
],
input: 'p-inputtext p-component',
dropdownButton: 'p-datepicker-trigger',
inputIcon: 'p-datepicker-trigger-icon',
panel: ({ instance, props, state }) => [
'p-datepicker p-component',
{

View File

@ -7593,6 +7593,14 @@
"default": "false",
"description": "When enabled, displays a button with icon next to input."
},
{
"name": "iconDisplay",
"optional": true,
"readonly": false,
"type": "\"input\" | \"button\"",
"default": "'button'",
"description": "Icon position of the component. This only applies if the showIcon option is set to true."
},
{
"name": "icon",
"optional": true,
@ -8093,6 +8101,19 @@
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
"description": "Custom dropdown icon template."
},
{
"name": "inputicon",
"parameters": [
{
"name": "scope",
"optional": false,
"type": "{\n \t <span class=\"ml-3 text-primary-700\">class</span>: <span class=\"text-primary-500\">any</span>, <span class=\"text-primary-300\">// Style class of the input icon</span>\n }",
"description": "input icon slot's params."
}
],
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
"description": "Custom input icon template."
},
{
"name": "previousicon",
"parameters": [