Api generator updates

pull/5677/head
tugcekucukoglu 2024-04-18 17:37:42 +03:00
parent c40b3203fd
commit fa9145b45d
3 changed files with 69 additions and 3 deletions

View File

@ -131,11 +131,13 @@ import ConfirmationService from 'primevue/confirmationservice';
import ContextMenu from 'primevue/contextmenu'; import ContextMenu from 'primevue/contextmenu';
import DataTable from 'primevue/datatable'; import DataTable from 'primevue/datatable';
import DataView from 'primevue/dataview'; import DataView from 'primevue/dataview';
import DatePicker from 'primevue/datepicker;
import DeferredContent from 'primevue/deferredcontent'; import DeferredContent from 'primevue/deferredcontent';
import Dialog from 'primevue/dialog'; import Dialog from 'primevue/dialog';
import DialogService from 'primevue/dialogservice' import DialogService from 'primevue/dialogservice'
import Divider from 'primevue/divider'; import Divider from 'primevue/divider';
import Dock from 'primevue/dock'; import Dock from 'primevue/dock';
import Drawer from 'primevue/drawer';
import Dropdown from 'primevue/dropdown'; import Dropdown from 'primevue/dropdown';
import DynamicDialog from 'primevue/dynamicdialog'; import DynamicDialog from 'primevue/dynamicdialog';
import Fieldset from 'primevue/fieldset'; import Fieldset from 'primevue/fieldset';
@ -148,6 +150,7 @@ import InputIcon from 'primevue/inputicon';
import Image from 'primevue/image'; import Image from 'primevue/image';
import InlineMessage from 'primevue/inlinemessage'; import InlineMessage from 'primevue/inlinemessage';
import Inplace from 'primevue/inplace'; import Inplace from 'primevue/inplace';
import InputChips from 'primevue/inputchips';
import InputGroup from 'primevue/inputgroup'; import InputGroup from 'primevue/inputgroup';
import InputGroupAddon from 'primevue/inputgroupaddon'; import InputGroupAddon from 'primevue/inputgroupaddon';
import InputMask from 'primevue/inputmask'; import InputMask from 'primevue/inputmask';
@ -171,15 +174,17 @@ import Panel from 'primevue/panel';
import PanelMenu from 'primevue/panelmenu'; import PanelMenu from 'primevue/panelmenu';
import Password from 'primevue/password'; import Password from 'primevue/password';
import PickList from 'primevue/picklist'; import PickList from 'primevue/picklist';
import Popover from 'primevue/popover';
import ProgressBar from 'primevue/progressbar'; import ProgressBar from 'primevue/progressbar';
import ProgressSpinner from 'primevue/progressspinner'; import ProgressSpinner from 'primevue/progressspinner';
import Rating from 'primevue/rating'; import Rating from 'primevue/rating';
import RadioButton from 'primevue/radiobutton'; import RadioButton from 'primevue/radiobutton';
import Ripple from 'primevue/ripple'; import Ripple from 'primevue/ripple';
import Row from 'primevue/row'; import Row from 'primevue/row';
import SelectButton from 'primevue/selectbutton';
import ScrollPanel from 'primevue/scrollpanel'; import ScrollPanel from 'primevue/scrollpanel';
import ScrollTop from 'primevue/scrolltop'; import ScrollTop from 'primevue/scrolltop';
import Select from 'primevue/select';
import SelectButton from 'primevue/selectbutton';
import Skeleton from 'primevue/skeleton'; import Skeleton from 'primevue/skeleton';
import Slider from 'primevue/slider'; import Slider from 'primevue/slider';
import Sidebar from 'primevue/sidebar'; import Sidebar from 'primevue/sidebar';
@ -203,6 +208,7 @@ import Tag from 'primevue/tag';
import Terminal from 'primevue/terminal'; import Terminal from 'primevue/terminal';
import Timeline from 'primevue/timeline'; import Timeline from 'primevue/timeline';
import ToggleButton from 'primevue/togglebutton'; import ToggleButton from 'primevue/togglebutton';
import ToggleSwitch from 'primevue/toggleswitch';
import Tooltip from 'primevue/tooltip'; import Tooltip from 'primevue/tooltip';
import Tree from 'primevue/tree'; import Tree from 'primevue/tree';
import TreeSelect from 'primevue/treeselect'; import TreeSelect from 'primevue/treeselect';
@ -250,10 +256,12 @@ app.component('ConfirmPopup', ConfirmPopup);
app.component('ContextMenu', ContextMenu); app.component('ContextMenu', ContextMenu);
app.component('DataTable', DataTable); app.component('DataTable', DataTable);
app.component('DataView', DataView); app.component('DataView', DataView);
app.component('DatePicker', DatePicker);
app.component('DeferredContent', DeferredContent); app.component('DeferredContent', DeferredContent);
app.component('Dialog', Dialog); app.component('Dialog', Dialog);
app.component('Divider', Divider); app.component('Divider', Divider);
app.component('Dock', Dock); app.component('Dock', Dock);
app.component('Drawer', Drawer);
app.component('Dropdown', Dropdown); app.component('Dropdown', Dropdown);
app.component('DynamicDialog', DynamicDialog); app.component('DynamicDialog', DynamicDialog);
app.component('Fieldset', Fieldset); app.component('Fieldset', Fieldset);
@ -264,6 +272,7 @@ app.component('IconField', IconField);
app.component('Image', Image); app.component('Image', Image);
app.component('InlineMessage', InlineMessage); app.component('InlineMessage', InlineMessage);
app.component('Inplace', Inplace); app.component('Inplace', Inplace);
app.component('InputChips', InputChips);
app.component('InputGroup', InputGroup); app.component('InputGroup', InputGroup);
app.component('InputGroupAddon', InputGroupAddon); app.component('InputGroupAddon', InputGroupAddon);
app.component('InputIcon', InputIcon); app.component('InputIcon', InputIcon);
@ -288,14 +297,16 @@ app.component('Panel', Panel);
app.component('PanelMenu', PanelMenu); app.component('PanelMenu', PanelMenu);
app.component('Password', Password); app.component('Password', Password);
app.component('PickList', PickList); app.component('PickList', PickList);
app.component('Popover', Popover);
app.component('ProgressBar', ProgressBar); app.component('ProgressBar', ProgressBar);
app.component('ProgressSpinner', ProgressSpinner); app.component('ProgressSpinner', ProgressSpinner);
app.component('RadioButton', RadioButton); app.component('RadioButton', RadioButton);
app.component('Rating', Rating); app.component('Rating', Rating);
app.component('Row', Row); app.component('Row', Row);
app.component('SelectButton', SelectButton);
app.component('ScrollPanel', ScrollPanel); app.component('ScrollPanel', ScrollPanel);
app.component('ScrollTop', ScrollTop); app.component('ScrollTop', ScrollTop);
app.component('Select', Select);
app.component('SelectButton', SelectButton);
app.component('Slider', Slider); app.component('Slider', Slider);
app.component('Sidebar', Sidebar); app.component('Sidebar', Sidebar);
app.component('Skeleton', Skeleton); app.component('Skeleton', Skeleton);
@ -317,6 +328,7 @@ app.component('Timeline', Timeline);
app.component('Toast', Toast); app.component('Toast', Toast);
app.component('Toolbar', Toolbar); app.component('Toolbar', Toolbar);
app.component('ToggleButton', ToggleButton); app.component('ToggleButton', ToggleButton);
app.component('ToggleSwitch', ToggleSwitch);
app.component('Tree', Tree); app.component('Tree', Tree);
app.component('TreeSelect', TreeSelect); app.component('TreeSelect', TreeSelect);
app.component('TreeTable', TreeTable); app.component('TreeTable', TreeTable);

View File

@ -26,10 +26,12 @@ import { ConfirmPopupPassThroughOptions } from '../confirmpopup';
import { ContextMenuPassThroughOptions } from '../contextmenu'; import { ContextMenuPassThroughOptions } from '../contextmenu';
import { DataTablePassThroughOptions } from '../datatable'; import { DataTablePassThroughOptions } from '../datatable';
import { DataViewPassThroughOptions } from '../dataview'; import { DataViewPassThroughOptions } from '../dataview';
import { DatePickerPassThroughOptions } from '../datepicker';
import { DeferredContentPassThroughOptions } from '../deferredcontent'; import { DeferredContentPassThroughOptions } from '../deferredcontent';
import { DialogPassThroughOptions } from '../dialog'; import { DialogPassThroughOptions } from '../dialog';
import { DividerPassThroughOptions } from '../divider'; import { DividerPassThroughOptions } from '../divider';
import { DockPassThroughOptions } from '../dock'; import { DockPassThroughOptions } from '../dock';
import { DrawerPassThroughOptions } from '../drawer';
import { DropdownPassThroughOptions } from '../dropdown'; import { DropdownPassThroughOptions } from '../dropdown';
import { EditorPassThroughOptions } from '../editor'; import { EditorPassThroughOptions } from '../editor';
import { FieldsetPassThroughOptions } from '../fieldset'; import { FieldsetPassThroughOptions } from '../fieldset';
@ -39,6 +41,7 @@ import { GalleriaPassThroughOptions } from '../galleria';
import { ImagePassThroughOptions } from '../image'; import { ImagePassThroughOptions } from '../image';
import { InlineMessagePassThroughOptions } from '../inlinemessage'; import { InlineMessagePassThroughOptions } from '../inlinemessage';
import { InplacePassThroughOptions } from '../inplace'; import { InplacePassThroughOptions } from '../inplace';
import { InputChipsPassThroughOptions } from '../inputchips';
import { InputMaskPassThroughOptions } from '../inputmask'; import { InputMaskPassThroughOptions } from '../inputmask';
import { InputNumberPassThroughOptions } from '../inputnumber'; import { InputNumberPassThroughOptions } from '../inputnumber';
import { InputSwitchPassThroughOptions } from '../inputswitch'; import { InputSwitchPassThroughOptions } from '../inputswitch';
@ -59,6 +62,7 @@ import { PanelMenuPassThroughOptions } from '../panelmenu';
import { PassThroughOptions } from '../passthrough'; import { PassThroughOptions } from '../passthrough';
import { PasswordPassThroughOptions } from '../password'; import { PasswordPassThroughOptions } from '../password';
import { PickListPassThroughOptions } from '../picklist'; import { PickListPassThroughOptions } from '../picklist';
import { PopoverPassThroughOptions } from '../popover';
import { ProgressBarPassThroughOptions } from '../progressbar'; import { ProgressBarPassThroughOptions } from '../progressbar';
import { ProgressSpinnerPassThroughOptions } from '../progressspinner'; import { ProgressSpinnerPassThroughOptions } from '../progressspinner';
import { RadioButtonPassThroughOptions } from '../radiobutton'; import { RadioButtonPassThroughOptions } from '../radiobutton';
@ -67,6 +71,7 @@ import { RippleDirectivePassThroughOptions } from '../ripple';
import { RowPassThroughOptions } from '../row'; import { RowPassThroughOptions } from '../row';
import { ScrollPanelPassThroughOptions } from '../scrollpanel'; import { ScrollPanelPassThroughOptions } from '../scrollpanel';
import { ScrollTopPassThroughOptions } from '../scrolltop'; import { ScrollTopPassThroughOptions } from '../scrolltop';
import { SelectPassThroughOptions } from '../select';
import { SelectButtonPassThroughOptions } from '../selectbutton'; import { SelectButtonPassThroughOptions } from '../selectbutton';
import { SidebarPassThroughOptions } from '../sidebar'; import { SidebarPassThroughOptions } from '../sidebar';
import { SkeletonPassThroughOptions } from '../skeleton'; import { SkeletonPassThroughOptions } from '../skeleton';
@ -87,6 +92,7 @@ import { TieredMenuPassThroughOptions } from '../tieredmenu';
import { TimelinePassThroughOptions } from '../timeline'; import { TimelinePassThroughOptions } from '../timeline';
import { ToastPassThroughOptions } from '../toast'; import { ToastPassThroughOptions } from '../toast';
import { ToggleButtonPassThroughOptions } from '../togglebutton'; import { ToggleButtonPassThroughOptions } from '../togglebutton';
import { ToggleSwitchPassThroughOptions } from '../toggleswitch';
import { ToolbarPassThroughOptions } from '../toolbar'; import { ToolbarPassThroughOptions } from '../toolbar';
import { TooltipDirectivePassThroughOptions } from '../tooltip'; import { TooltipDirectivePassThroughOptions } from '../tooltip';
import { TreePassThroughOptions } from '../tree'; import { TreePassThroughOptions } from '../tree';
@ -147,10 +153,12 @@ export interface PrimeVuePTOptions {
contextmenu?: DefaultPassThrough<ContextMenuPassThroughOptions>; contextmenu?: DefaultPassThrough<ContextMenuPassThroughOptions>;
datatable?: DefaultPassThrough<DataTablePassThroughOptions>; datatable?: DefaultPassThrough<DataTablePassThroughOptions>;
dataview?: DefaultPassThrough<DataViewPassThroughOptions>; dataview?: DefaultPassThrough<DataViewPassThroughOptions>;
datepicker?: DefaultPassThrough<DatePickerPassThroughOptions>;
deferredcontent?: DefaultPassThrough<DeferredContentPassThroughOptions>; deferredcontent?: DefaultPassThrough<DeferredContentPassThroughOptions>;
divider?: DefaultPassThrough<DividerPassThroughOptions>; divider?: DefaultPassThrough<DividerPassThroughOptions>;
dialog?: DefaultPassThrough<DialogPassThroughOptions>; dialog?: DefaultPassThrough<DialogPassThroughOptions>;
dock?: DefaultPassThrough<DockPassThroughOptions>; dock?: DefaultPassThrough<DockPassThroughOptions>;
drawer?: DefaultPassThrough<DrawerPassThroughOptions>;
dropdown?: DefaultPassThrough<DropdownPassThroughOptions>; dropdown?: DefaultPassThrough<DropdownPassThroughOptions>;
dynamicdialog?: DefaultPassThrough<DialogPassThroughOptions>; dynamicdialog?: DefaultPassThrough<DialogPassThroughOptions>;
editor?: DefaultPassThrough<EditorPassThroughOptions>; editor?: DefaultPassThrough<EditorPassThroughOptions>;
@ -160,6 +168,7 @@ export interface PrimeVuePTOptions {
image?: DefaultPassThrough<ImagePassThroughOptions>; image?: DefaultPassThrough<ImagePassThroughOptions>;
inlinemessage?: DefaultPassThrough<InlineMessagePassThroughOptions>; inlinemessage?: DefaultPassThrough<InlineMessagePassThroughOptions>;
inplace?: DefaultPassThrough<InplacePassThroughOptions>; inplace?: DefaultPassThrough<InplacePassThroughOptions>;
inputchips?: DefaultPassThrough<InputChipsPassThroughOptions>;
inputmask?: DefaultPassThrough<InputMaskPassThroughOptions>; inputmask?: DefaultPassThrough<InputMaskPassThroughOptions>;
inputnumber?: DefaultPassThrough<InputNumberPassThroughOptions>; inputnumber?: DefaultPassThrough<InputNumberPassThroughOptions>;
inputswitch?: DefaultPassThrough<InputSwitchPassThroughOptions>; inputswitch?: DefaultPassThrough<InputSwitchPassThroughOptions>;
@ -179,6 +188,7 @@ export interface PrimeVuePTOptions {
panelmenu?: DefaultPassThrough<PanelMenuPassThroughOptions>; panelmenu?: DefaultPassThrough<PanelMenuPassThroughOptions>;
password?: DefaultPassThrough<PasswordPassThroughOptions>; password?: DefaultPassThrough<PasswordPassThroughOptions>;
picklist?: DefaultPassThrough<PickListPassThroughOptions>; picklist?: DefaultPassThrough<PickListPassThroughOptions>;
popover?: DefaultPassThrough<PopoverPassThroughOptions>;
progressbar?: DefaultPassThrough<ProgressBarPassThroughOptions>; progressbar?: DefaultPassThrough<ProgressBarPassThroughOptions>;
progressspinner?: DefaultPassThrough<ProgressSpinnerPassThroughOptions>; progressspinner?: DefaultPassThrough<ProgressSpinnerPassThroughOptions>;
radiobutton?: DefaultPassThrough<RadioButtonPassThroughOptions>; radiobutton?: DefaultPassThrough<RadioButtonPassThroughOptions>;
@ -191,6 +201,7 @@ export interface PrimeVuePTOptions {
slider?: DefaultPassThrough<SliderPassThroughOptions>; slider?: DefaultPassThrough<SliderPassThroughOptions>;
speeddial?: DefaultPassThrough<SpeedDialPassThroughOptions>; speeddial?: DefaultPassThrough<SpeedDialPassThroughOptions>;
selectbutton?: DefaultPassThrough<SelectButtonPassThroughOptions>; selectbutton?: DefaultPassThrough<SelectButtonPassThroughOptions>;
select?: DefaultPassThrough<SelectPassThroughOptions>;
splitbutton?: DefaultPassThrough<SplitButtonPassThroughOptions>; splitbutton?: DefaultPassThrough<SplitButtonPassThroughOptions>;
splitter?: DefaultPassThrough<SplitterPassThroughOptions>; splitter?: DefaultPassThrough<SplitterPassThroughOptions>;
splitterpanel?: DefaultPassThrough<SplitterPanelPassThroughOptions>; splitterpanel?: DefaultPassThrough<SplitterPanelPassThroughOptions>;
@ -205,6 +216,7 @@ export interface PrimeVuePTOptions {
timeline?: DefaultPassThrough<TimelinePassThroughOptions>; timeline?: DefaultPassThrough<TimelinePassThroughOptions>;
toast?: DefaultPassThrough<ToastPassThroughOptions>; toast?: DefaultPassThrough<ToastPassThroughOptions>;
togglebutton?: DefaultPassThrough<ToggleButtonPassThroughOptions>; togglebutton?: DefaultPassThrough<ToggleButtonPassThroughOptions>;
toggleswitch?: DefaultPassThrough<ToggleSwitchPassThroughOptions>;
toolbar?: DefaultPassThrough<ToolbarPassThroughOptions>; toolbar?: DefaultPassThrough<ToolbarPassThroughOptions>;
tree?: DefaultPassThrough<TreePassThroughOptions>; tree?: DefaultPassThrough<TreePassThroughOptions>;
treeselect?: DefaultPassThrough<TreeSelectPassThroughOptions>; treeselect?: DefaultPassThrough<TreeSelectPassThroughOptions>;

View File

@ -15427,6 +15427,13 @@
"type": "DefaultPassThrough<DataViewPassThroughOptions>", "type": "DefaultPassThrough<DataViewPassThroughOptions>",
"default": "" "default": ""
}, },
{
"name": "datepicker",
"optional": true,
"readonly": false,
"type": "DefaultPassThrough<DatePickerPassThroughOptions>",
"default": ""
},
{ {
"name": "deferredcontent", "name": "deferredcontent",
"optional": true, "optional": true,
@ -15455,6 +15462,13 @@
"type": "DefaultPassThrough<DockPassThroughOptions>", "type": "DefaultPassThrough<DockPassThroughOptions>",
"default": "" "default": ""
}, },
{
"name": "drawer",
"optional": true,
"readonly": false,
"type": "DefaultPassThrough<DrawerPassThroughOptions>",
"default": ""
},
{ {
"name": "dropdown", "name": "dropdown",
"optional": true, "optional": true,
@ -15518,6 +15532,13 @@
"type": "DefaultPassThrough<InplacePassThroughOptions>", "type": "DefaultPassThrough<InplacePassThroughOptions>",
"default": "" "default": ""
}, },
{
"name": "inputchips",
"optional": true,
"readonly": false,
"type": "DefaultPassThrough<InputChipsPassThroughOptions>",
"default": ""
},
{ {
"name": "inputmask", "name": "inputmask",
"optional": true, "optional": true,
@ -15613,7 +15634,7 @@
"name": "overlaypanel", "name": "overlaypanel",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "DefaultPassThrough<PopoverPassThroughOptions>", "type": "DefaultPassThrough<OverlayPanelPassThroughOptions>",
"default": "" "default": ""
}, },
{ {
@ -15651,6 +15672,13 @@
"type": "DefaultPassThrough<PickListPassThroughOptions>", "type": "DefaultPassThrough<PickListPassThroughOptions>",
"default": "" "default": ""
}, },
{
"name": "popover",
"optional": true,
"readonly": false,
"type": "DefaultPassThrough<PopoverPassThroughOptions>",
"default": ""
},
{ {
"name": "progressbar", "name": "progressbar",
"optional": true, "optional": true,
@ -15735,6 +15763,13 @@
"type": "DefaultPassThrough<SelectButtonPassThroughOptions>", "type": "DefaultPassThrough<SelectButtonPassThroughOptions>",
"default": "" "default": ""
}, },
{
"name": "select",
"optional": true,
"readonly": false,
"type": "DefaultPassThrough<SelectPassThroughOptions<any>>",
"default": ""
},
{ {
"name": "splitbutton", "name": "splitbutton",
"optional": true, "optional": true,
@ -15833,6 +15868,13 @@
"type": "DefaultPassThrough<ToggleButtonPassThroughOptions<any>>", "type": "DefaultPassThrough<ToggleButtonPassThroughOptions<any>>",
"default": "" "default": ""
}, },
{
"name": "toggleswitch",
"optional": true,
"readonly": false,
"type": "DefaultPassThrough<ToggleSwitchPassThroughOptions>",
"default": ""
},
{ {
"name": "toolbar", "name": "toolbar",
"optional": true, "optional": true,