Update PrimeVue.d.ts
parent
feef66b9af
commit
28f38f9a87
|
@ -3,6 +3,7 @@ import { AccordionPassThroughOptions } from '../accordion';
|
|||
import { AccordionTabPassThroughOptions } from '../accordiontab';
|
||||
import { AutoCompletePassThroughOptions } from '../autocomplete';
|
||||
import { AvatarPassThroughOptions } from '../avatar';
|
||||
import { AvatarGroupPassThroughOptions } from '../avatargroup';
|
||||
import { BadgePassThroughOptions } from '../badge';
|
||||
import { BadgeDirectivePassThroughOptions } from '../badgedirective';
|
||||
import { BlockUIPassThroughOptions } from '../blockui';
|
||||
|
@ -17,6 +18,7 @@ import { CheckboxPassThroughOptions } from '../checkbox';
|
|||
import { ChipPassThroughOptions } from '../chip';
|
||||
import { ChipsPassThroughOptions } from '../chips';
|
||||
import { ColorPickerPassThroughOptions } from '../colorpicker';
|
||||
import { ColumnPassThroughOptions } from '../column';
|
||||
import { ColumnGroupPassThroughOptions } from '../columngroup';
|
||||
import { ConfirmDialogPassThroughOptions } from '../confirmdialog';
|
||||
import { ConfirmPopupPassThroughOptions } from '../confirmpopup';
|
||||
|
@ -59,6 +61,7 @@ import { PickListPassThroughOptions } from '../picklist';
|
|||
import { ProgressBarPassThroughOptions } from '../progressbar';
|
||||
import { ProgressSpinnerPassThroughOptions } from '../progressspinner';
|
||||
import { RadioButtonPassThroughOptions } from '../radiobutton';
|
||||
import { RatingPassThroughOptions } from '../rating';
|
||||
import { RippleDirectivePassThroughOptions } from '../ripple';
|
||||
import { RowPassThroughOptions } from '../row';
|
||||
import { ScrollPanelPassThroughOptions } from '../scrollpanel';
|
||||
|
@ -66,9 +69,11 @@ import { ScrollTopPassThroughOptions } from '../scrolltop';
|
|||
import { SelectButtonPassThroughOptions } from '../selectbutton';
|
||||
import { SidebarPassThroughOptions } from '../sidebar';
|
||||
import { SkeletonPassThroughOptions } from '../skeleton';
|
||||
import { SliderPassThroughOptions } from '../slider';
|
||||
import { SpeedDialPassThroughOptions } from '../speeddial';
|
||||
import { SplitButtonPassThroughOptions } from '../splitbutton';
|
||||
import { SplitterPassThroughOptions } from '../splitter';
|
||||
import { SplitterPanelPassThroughOptions } from '../splitterpanel';
|
||||
import { StepsPassThroughOptions } from '../steps';
|
||||
import { StyleClassDirectivePassThroughOptions } from '../styleclass';
|
||||
import { TabMenuPassThroughOptions } from '../tabmenu';
|
||||
|
@ -80,11 +85,13 @@ import { TextareaPassThroughOptions } from '../textarea';
|
|||
import { TieredMenuPassThroughOptions } from '../tieredmenu';
|
||||
import { TimelinePassThroughOptions } from '../timeline';
|
||||
import { ToastPassThroughOptions } from '../toast';
|
||||
import { ToggleButtonPassThroughOptions } from '../togglebutton';
|
||||
import { ToolbarPassThroughOptions } from '../toolbar';
|
||||
import { TooltipDirectivePassThroughOptions } from '../tooltip';
|
||||
import { TreePassThroughOptions } from '../tree';
|
||||
import { TreeSelectPassThroughOptions } from '../treeselect';
|
||||
import { TreeTablePassThroughOptions } from '../treetable';
|
||||
import { TriStateCheckboxPassThroughOptions } from '../tristatecheckbox';
|
||||
import { DefaultPTOptions } from '../ts-helpers';
|
||||
import { VirtualScrollerPassThroughOptions } from '../virtualscroller';
|
||||
|
||||
|
@ -110,6 +117,7 @@ export interface PrimeVuePTOptions {
|
|||
accordiontab?: DefaultPTOptions<AccordionTabPassThroughOptions>;
|
||||
autocomplete?: DefaultPTOptions<AutoCompletePassThroughOptions>;
|
||||
avatar?: DefaultPTOptions<AvatarPassThroughOptions>;
|
||||
avatargroup?: DefaultPTOptions<AvatarGroupPassThroughOptions>;
|
||||
badge?: DefaultPTOptions<BadgePassThroughOptions>;
|
||||
blockui?: DefaultPTOptions<BlockUIPassThroughOptions>;
|
||||
breadcrumb?: DefaultPTOptions<BreadcrumbPassThroughOptions>;
|
||||
|
@ -123,6 +131,7 @@ export interface PrimeVuePTOptions {
|
|||
chip?: DefaultPTOptions<ChipPassThroughOptions>;
|
||||
chips?: DefaultPTOptions<ChipsPassThroughOptions>;
|
||||
colorpicker?: DefaultPTOptions<ColorPickerPassThroughOptions>;
|
||||
column?: DefaultPTOptions<ColumnPassThroughOptions>;
|
||||
columngroup?: DefaultPTOptions<ColumnGroupPassThroughOptions>;
|
||||
confirmdialog?: DefaultPTOptions<ConfirmDialogPassThroughOptions>;
|
||||
confirmpopup?: DefaultPTOptions<ConfirmPopupPassThroughOptions>;
|
||||
|
@ -165,15 +174,18 @@ export interface PrimeVuePTOptions {
|
|||
progressbar?: DefaultPTOptions<ProgressBarPassThroughOptions>;
|
||||
progressspinner?: DefaultPTOptions<ProgressSpinnerPassThroughOptions>;
|
||||
radiobutton?: DefaultPTOptions<RadioButtonPassThroughOptions>;
|
||||
rating?: DefaultPTOptions<RatingPassThroughOptions>;
|
||||
row?: DefaultPTOptions<RowPassThroughOptions>;
|
||||
scrollpanel?: DefaultPTOptions<ScrollPanelPassThroughOptions>;
|
||||
scrolltop?: DefaultPTOptions<ScrollTopPassThroughOptions>;
|
||||
sidebar?: DefaultPTOptions<SidebarPassThroughOptions>;
|
||||
skeleton?: DefaultPTOptions<SkeletonPassThroughOptions>;
|
||||
slider?: DefaultPTOptions<SliderPassThroughOptions>;
|
||||
speeddial?: DefaultPTOptions<SpeedDialPassThroughOptions>;
|
||||
selectbutton?: DefaultPTOptions<SelectButtonPassThroughOptions>;
|
||||
splitbutton?: DefaultPTOptions<SplitButtonPassThroughOptions>;
|
||||
splitter?: DefaultPTOptions<SplitterPassThroughOptions>;
|
||||
splitterpanel?: DefaultPTOptions<SplitterPanelPassThroughOptions>;
|
||||
steps?: DefaultPTOptions<StepsPassThroughOptions>;
|
||||
tabmenu?: DefaultPTOptions<TabMenuPassThroughOptions>;
|
||||
tabpanel?: DefaultPTOptions<TabPanelPassThroughOptions>;
|
||||
|
@ -184,9 +196,11 @@ export interface PrimeVuePTOptions {
|
|||
tieredmenu?: DefaultPTOptions<TieredMenuPassThroughOptions>;
|
||||
timeline?: DefaultPTOptions<TimelinePassThroughOptions>;
|
||||
toast?: DefaultPTOptions<ToastPassThroughOptions>;
|
||||
togglebutton?: DefaultPTOptions<ToggleButtonPassThroughOptions>;
|
||||
toolbar?: DefaultPTOptions<ToolbarPassThroughOptions>;
|
||||
tree?: DefaultPTOptions<TreePassThroughOptions>;
|
||||
treeselect?: DefaultPTOptions<TreeSelectPassThroughOptions>;
|
||||
tristatecheckbox?: DefaultPTOptions<TriStateCheckboxPassThroughOptions>;
|
||||
treetable?: DefaultPTOptions<TreeTablePassThroughOptions>;
|
||||
virtualscroller?: DefaultPTOptions<VirtualScrollerPassThroughOptions>;
|
||||
directives?: {
|
||||
|
|
Loading…
Reference in New Issue