Merge branch 'primefaces:master' into patch-1

pull/1954/head
BenjaminMINK 2022-01-10 11:26:02 +01:00 committed by GitHub
commit 82554e8a3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with 45 additions and 45 deletions

View File

@ -134,7 +134,7 @@ export interface AutoCompleteProps {
/**
* Style class of the overlay panel.
*/
panelClass?: string;
panelClass?: any;
/**
* Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.
* @see VirtualScroller.VirtualScrollerProps

View File

@ -11,7 +11,7 @@ export interface ButtonProps extends ButtonHTMLAttributes {
/**
* Style class of the button.
*/
class?: string | undefined;
class?: any;
/**
* Text of the button.
*/

View File

@ -122,7 +122,7 @@ export interface CalendarProps {
/**
* Style class of the datetimepicker panel.
*/
panelClass?: string | undefined;
panelClass?: any;
/**
* The minimum selectable date.
*/
@ -228,7 +228,7 @@ export interface CalendarProps {
/**
* Style class of the input field.
*/
inputClass?: string | undefined;
inputClass?: any;
/**
* Inline style of the component.
*/
@ -236,7 +236,7 @@ export interface CalendarProps {
/**
* Style class of the component.
*/
class?: string | undefined;
class?: any;
/**
* Keep invalid value when input blur.
*/

View File

@ -57,15 +57,15 @@ export interface CarouselProps {
/**
* Style class of the viewport container.
*/
containerClass?: string | undefined;
containerClass?: any;
/**
* Style class of main content.
*/
contentClass?: string | undefined;
contentClass?: any;
/**
* Style class of the indicator items.
*/
indicatorsContentClass?: string | undefined;
indicatorsContentClass?: any;
/**
* Defines if scrolling would be infinite.
*/

View File

@ -87,7 +87,7 @@ export interface CascadeSelectProps {
/**
* Style class of the overlay panel.
*/
panelClass?: string | undefined;
panelClass?: any;
/**
* Whether the dropdown is in loading state.
*/

View File

@ -16,7 +16,7 @@ export interface CheckboxProps {
/**
* Style class of the component input field.
*/
class?: string;
class?: any;
/**
* Inline style of the component.
*/

View File

@ -42,7 +42,7 @@ export interface ChipsProps {
/**
* Style class of the component input field.
*/
class?: string | undefined;
class?: any;
/**
* Inline style of the component.
*/

View File

@ -60,7 +60,7 @@ export interface ColorPickerProps {
/**
* Style class of the overlay panel.
*/
panelClass?: string | undefined;
panelClass?: any;
/**
* A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are 'body' for document body and 'self' for the element itself.
* Default value is 'body'.

View File

@ -97,7 +97,7 @@ export interface ColumnProps {
/**
* Style class of header, body and footer cells.
*/
class?: string | undefined;
class?: any;
/**
* Inline style of the column header.
*/
@ -105,7 +105,7 @@ export interface ColumnProps {
/**
* Style class of the column header.
*/
headerClass?: string | undefined;
headerClass?: any;
/**
* Inline style of the column body.
*/
@ -113,7 +113,7 @@ export interface ColumnProps {
/**
* Style class of the column body.
*/
bodyClass?: string | undefined;
bodyClass?: any;
/**
* Inline style of the column footer.
*/
@ -121,7 +121,7 @@ export interface ColumnProps {
/**
* Style class of the column footer.
*/
footerClass?: string | undefined;
footerClass?: any;
/**
* Whether to display the filter overlay.
* Default value is true.
@ -172,7 +172,7 @@ export interface ColumnProps {
/**
* Style class of the column filter header in row filter display.
*/
filterHeaderClass?: string | undefined;
filterHeaderClass?: any;
/**
* Inline style of the column filter overlay.
*/
@ -180,7 +180,7 @@ export interface ColumnProps {
/**
* Style class of the column filter overlay.
*/
filterMenuClass?: string | undefined;
filterMenuClass?: any;
/**
* Defines column based selection mode, options are 'single' and 'multiple'.
* @see ColumnSelectionModeType

View File

@ -772,7 +772,7 @@ export interface DataTableProps {
/**
* Style class of the table element.
*/
tableClass?: string | undefined;
tableClass?: any;
}
export interface DataTableSlots {

View File

@ -44,11 +44,11 @@ export interface DialogProps {
/**
* Style of the content section.
*/
contentStyle?: any | undefined;
contentStyle?: any;
/**
* Style class of the content section.
*/
contentClass?: string | undefined;
contentClass?: any;
/**
* When enabled dialog is displayed in RTL direction.
*/

View File

@ -38,7 +38,7 @@ export interface DockProps {
/**
* Style class of the element.
*/
class?: string | undefined;
class?: any;
/**
* Inline style of the element.
*/

View File

@ -148,7 +148,7 @@ export interface DropdownProps {
/**
* Style class of the overlay panel.
*/
panelClass?: string | undefined;
panelClass?: any;
/**
* Whether the dropdown is in loading state.
*/

View File

@ -185,7 +185,7 @@ export interface FileUploadProps {
/**
* Style class of the component.
*/
class?: string | undefined;
class?: any;
}
export interface FileUploadSlots {

View File

@ -123,7 +123,7 @@ export interface GalleriaProps {
/**
* Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used.
*/
containerClass?: string | undefined;
containerClass?: any;
}
export interface GalleriaSlots {

View File

@ -13,7 +13,7 @@ export interface ImageProps {
/**
* Style class of the image element.
*/
imageClass?: string | undefined;
imageClass?: any;
}
export interface ImageSlots {

View File

@ -8,7 +8,7 @@ export interface InputSwitchProps {
/**
* Inline style of the component.
*/
class?: string | undefined;
class?: any;
/**
* Style class of the component input field.
*/

View File

@ -68,7 +68,7 @@ export interface MenuItem {
/**
* Style class of the menuitem.
*/
class?: string | undefined;
class?: any;
/**
* Unique identifier of an item.
*/

View File

@ -154,7 +154,7 @@ export interface MultiSelectProps {
/**
* Style class of the overlay panel.
*/
panelClass?: string | undefined;
panelClass?: any;
/**
* Label to display after exceeding max selected labels.
* Default value is '{0} items selected'.

View File

@ -66,7 +66,7 @@ export interface PasswordProps extends InputHTMLAttributes {
/**
* Style class of the input field.
*/
inputClass?: string | undefined;
inputClass?: any;
/**
* Inline style of the component.
*/
@ -74,11 +74,11 @@ export interface PasswordProps extends InputHTMLAttributes {
/**
* Style class of the component input field.
*/
class?: string | undefined;
class?: any;
/**
* Style class of the overlay panel.
*/
panelClass?: string | undefined;
panelClass?: any;
}
export interface PasswordSlots {

View File

@ -12,7 +12,7 @@ export interface RadioButtonProps {
/**
* Style class of the component input field.
*/
class?: string;
class?: any;
/**
* Inline style of the component.
*/

View File

@ -75,7 +75,7 @@ export interface SpeedDialProps {
/**
* Style class of the button element.
*/
buttonClass?: string | undefined;
buttonClass?: any;
/**
* Inline style of the mask element.
*/
@ -101,7 +101,7 @@ export interface SpeedDialProps {
/**
* Style class of the element.
*/
class?: string | undefined;
class?: any;
/**
* Inline style of the element.
*/

View File

@ -35,7 +35,7 @@ export interface SplitButtonProps {
/**
* Style class of the component.
*/
class?: string | undefined;
class?: any;
/**
* Inline style of the component.
*/

View File

@ -37,11 +37,11 @@ export interface ToastMessageOptions {
/**
* Style class of the message.
*/
styleClass?: string | undefined;
styleClass?: any;
/**
* Style class of the content.
*/
contentStyleClass?: string | undefined;
contentStyleClass?: any;
}
export interface ToastBreakpointsType {

View File

@ -50,7 +50,7 @@ export interface TreeSelectProps {
/**
* Style class of the overlay panel.
*/
panelClass?: string | undefined;
panelClass?: any;
/**
* A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are 'body' for document body and 'self' for the element itself.
* @see TreeSelectAppendToType

View File

@ -12,7 +12,7 @@ export interface TriStateCheckboxProps {
/**
* Style class of the component.
*/
class?: string;
class?: any;
}
export interface TriStateCheckboxSlots {

View File

@ -94,7 +94,7 @@ export interface VirtualScrollerProps {
/**
* Style class of the component.
*/
class?: string | undefined;
class?: any;
/**
* An array of objects to display.
*/