* fix: #5903 * renaming GlobalComponentConstructor https://github.com/primefaces/primevue/pull/6088#issuecomment-2374917228 * Delete package-lock.json * Update how component types are definedpull/6546/head
parent
9d9ae356d0
commit
1500542e62
|
@ -1,4 +1,4 @@
|
|||
import { AllowedComponentProps, ComponentCustomProps, MethodOptions, ObjectEmitsOptions, SlotsType, VNode, VNodeProps, DefineComponent as _DefineComponent } from 'vue';
|
||||
import { AllowedComponentProps, ComponentCustomProps, ObjectEmitsOptions, VNode, VNodeProps } from 'vue';
|
||||
|
||||
declare type PublicProps = VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
||||
|
||||
|
@ -14,9 +14,7 @@ export declare type EmitFn<Options = ObjectEmitsOptions, Event extends keyof Opt
|
|||
}[Event]
|
||||
>;
|
||||
|
||||
export type DefineComponent<P = {}, S = {}, E = {}, M = {}> = _DefineComponent<P, {}, {}, {}, M & MethodOptions, {}, {}, E & ObjectEmitsOptions, string, {}, {}, {}, S & SlotsType>;
|
||||
|
||||
export type GlobalComponentConstructor<P = {}, S = {}, E = {}, M = {}> = {
|
||||
export type DefineComponent<P = {}, S = {}, E = {}, M = {}> = {
|
||||
new (): {
|
||||
$props: P & PublicProps;
|
||||
$slots: S;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleDoubleDownIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleDownIcon: GlobalComponentConstructor<AngleDoubleDownIcon>;
|
||||
AngleDoubleDownIcon: DefineComponent<AngleDoubleDownIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleDoubleLeftIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleLeftIcon: GlobalComponentConstructor<AngleDoubleLeftIcon>;
|
||||
AngleDoubleLeftIcon: DefineComponent<AngleDoubleLeftIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleDoubleRightIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleRightIcon: GlobalComponentConstructor<AngleDoubleRightIcon>;
|
||||
AngleDoubleRightIcon: DefineComponent<AngleDoubleRightIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleDoubleUpIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDoubleUpIcon: GlobalComponentConstructor<AngleDoubleUpIcon>;
|
||||
AngleDoubleUpIcon: DefineComponent<AngleDoubleUpIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleDownIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleDownIcon: GlobalComponentConstructor<AngleDownIcon>;
|
||||
AngleDownIcon: DefineComponent<AngleDownIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleLeftIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleLeftIcon: GlobalComponentConstructor<AngleLeftIcon>;
|
||||
AngleLeftIcon: DefineComponent<AngleLeftIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleRightIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleRightIcon: GlobalComponentConstructor<AngleRightIcon>;
|
||||
AngleRightIcon: DefineComponent<AngleRightIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class AngleUpIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AngleUpIcon: GlobalComponentConstructor<AngleUpIcon>;
|
||||
AngleUpIcon: DefineComponent<AngleUpIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ArrowDownIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ArrowDownIcon: GlobalComponentConstructor<ArrowDownIcon>;
|
||||
ArrowDownIcon: DefineComponent<ArrowDownIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ArrowUpIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ArrowUpIcon: GlobalComponentConstructor<ArrowUpIcon>;
|
||||
ArrowUpIcon: DefineComponent<ArrowUpIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class BanIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BanIcon: GlobalComponentConstructor<BanIcon>;
|
||||
BanIcon: DefineComponent<BanIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class BarsIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BarsIcon: GlobalComponentConstructor<BarsIcon>;
|
||||
BarsIcon: DefineComponent<BarsIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class BlankIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BlankIcon: GlobalComponentConstructor<BlankIcon>;
|
||||
BlankIcon: DefineComponent<BlankIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class CalendarIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
CalendarIcon: GlobalComponentConstructor<CalendarIcon>;
|
||||
CalendarIcon: DefineComponent<CalendarIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class CheckIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
CheckIcon: GlobalComponentConstructor<CheckIcon>;
|
||||
CheckIcon: DefineComponent<CheckIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ChevronDownIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronDownIcon: GlobalComponentConstructor<ChevronDownIcon>;
|
||||
ChevronDownIcon: DefineComponent<ChevronDownIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ChevronLeftIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronLeftIcon: GlobalComponentConstructor<ChevronLeftIcon>;
|
||||
ChevronLeftIcon: DefineComponent<ChevronLeftIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ChevronRightIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronRightIcon: GlobalComponentConstructor<ChevronRightIcon>;
|
||||
ChevronRightIcon: DefineComponent<ChevronRightIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ChevronUpIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ChevronUpIcon: GlobalComponentConstructor<ChevronUpIcon>;
|
||||
ChevronUpIcon: DefineComponent<ChevronUpIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ExclamationTriangleIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ExclamationTriangleIcon: GlobalComponentConstructor<ExclamationTriangleIcon>;
|
||||
ExclamationTriangleIcon: DefineComponent<ExclamationTriangleIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class EyeIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
EyeIcon: GlobalComponentConstructor<EyeIcon>;
|
||||
EyeIcon: DefineComponent<EyeIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class EyeSlashIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
EyeSlashIcon: GlobalComponentConstructor<EyeSlashIcon>;
|
||||
EyeSlashIcon: DefineComponent<EyeSlashIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class FilterIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FilterIcon: GlobalComponentConstructor<FilterIcon>;
|
||||
FilterIcon: DefineComponent<FilterIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class FilterSlashIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FilterSlashIcon: GlobalComponentConstructor<FilterSlashIcon>;
|
||||
FilterSlashIcon: DefineComponent<FilterSlashIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { DefineComponent, EmitFn } from '@primevue/core';
|
||||
import type { EmitFn } from '@primevue/core';
|
||||
|
||||
export interface IconProps {
|
||||
label?: string | undefined;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class InfoCircleIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InfoCircleIcon: GlobalComponentConstructor<InfoCircleIcon>;
|
||||
InfoCircleIcon: DefineComponent<InfoCircleIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class MinusIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
MinusIcon: GlobalComponentConstructor<MinusIcon>;
|
||||
MinusIcon: DefineComponent<MinusIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class PencilIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
PencilIcon: GlobalComponentConstructor<PencilIcon>;
|
||||
PencilIcon: DefineComponent<PencilIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class PlusIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
PlusIcon: GlobalComponentConstructor<PlusIcon>;
|
||||
PlusIcon: DefineComponent<PlusIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class RefreshIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
RefreshIcon: GlobalComponentConstructor<RefreshIcon>;
|
||||
RefreshIcon: DefineComponent<RefreshIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SearchIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SearchIcon: GlobalComponentConstructor<SearchIcon>;
|
||||
SearchIcon: DefineComponent<SearchIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SearchMinusIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SearchMinusIcon: GlobalComponentConstructor<SearchMinusIcon>;
|
||||
SearchMinusIcon: DefineComponent<SearchMinusIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SearchPlusIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SearchPlusIcon: GlobalComponentConstructor<SearchPlusIcon>;
|
||||
SearchPlusIcon: DefineComponent<SearchPlusIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SortAltIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SortAltIcon: GlobalComponentConstructor<SortAltIcon>;
|
||||
SortAltIcon: DefineComponent<SortAltIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SortAmountDownIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SortAmountDownIcon: GlobalComponentConstructor<SortAmountDownIcon>;
|
||||
SortAmountDownIcon: DefineComponent<SortAmountDownIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SortAmountUpAltIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SortAmountUpAltIcon: GlobalComponentConstructor<SortAmountUpAltIcon>;
|
||||
SortAmountUpAltIcon: DefineComponent<SortAmountUpAltIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class SpinnerIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
SpinnerIcon: GlobalComponentConstructor<SpinnerIcon>;
|
||||
SpinnerIcon: DefineComponent<SpinnerIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class StarIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
StarIcon: GlobalComponentConstructor<StarIcon>;
|
||||
StarIcon: DefineComponent<StarIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class StarFillIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
StarFillIcon: GlobalComponentConstructor<StarFillIcon>;
|
||||
StarFillIcon: DefineComponent<StarFillIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class ThLargeIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ThLargeIcon: GlobalComponentConstructor<ThLargeIcon>;
|
||||
ThLargeIcon: DefineComponent<ThLargeIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class TimesIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
TimesIcon: GlobalComponentConstructor<TimesIcon>;
|
||||
TimesIcon: DefineComponent<TimesIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class TimesCircleIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
TimesCircleIcon: GlobalComponentConstructor<TimesCircleIcon>;
|
||||
TimesCircleIcon: DefineComponent<TimesCircleIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class TrashIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
TrashIcon: GlobalComponentConstructor<TrashIcon>;
|
||||
TrashIcon: DefineComponent<TrashIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class UndoIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
UndoIcon: GlobalComponentConstructor<UndoIcon>;
|
||||
UndoIcon: DefineComponent<UndoIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class UploadIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
UploadIcon: GlobalComponentConstructor<UploadIcon>;
|
||||
UploadIcon: DefineComponent<UploadIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class WindowMaximizeIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
WindowMaximizeIcon: GlobalComponentConstructor<WindowMaximizeIcon>;
|
||||
WindowMaximizeIcon: DefineComponent<WindowMaximizeIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import type { GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent } from '@primevue/core';
|
||||
import type { Icon } from '@primevue/icons';
|
||||
|
||||
declare class WindowMinimizeIcon extends Icon {}
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
WindowMinimizeIcon: GlobalComponentConstructor<WindowMinimizeIcon>;
|
||||
WindowMinimizeIcon: DefineComponent<WindowMinimizeIcon>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module accordion
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -245,7 +245,7 @@ declare const Accordion: DefineComponent<AccordionProps, AccordionSlots, Accordi
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Accordion: GlobalComponentConstructor<AccordionProps, AccordionSlots, AccordionEmits>;
|
||||
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module accordioncontent
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import type { Component, VNode } from 'vue';
|
||||
|
@ -142,7 +142,7 @@ declare const AccordionContent: DefineComponent<AccordionContentProps, Accordion
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AccordionContent: GlobalComponentConstructor<AccordionContentProps, AccordionContentSlots, AccordionContentEmits>;
|
||||
AccordionContent: DefineComponent<AccordionContentProps, AccordionContentSlots, AccordionContentEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module accordionheader
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import type { Component, VNode } from 'vue';
|
||||
|
@ -142,7 +142,7 @@ declare const AccordionHeader: DefineComponent<AccordionHeaderProps, AccordionHe
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AccordionHeader: GlobalComponentConstructor<AccordionHeaderProps, AccordionHeaderSlots, AccordionHeaderEmits>;
|
||||
AccordionHeader: DefineComponent<AccordionHeaderProps, AccordionHeaderSlots, AccordionHeaderEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module accordionpanel
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import type { Component, VNode } from 'vue';
|
||||
|
@ -140,7 +140,7 @@ declare const AccordionPanel: DefineComponent<AccordionPanelProps, AccordionPane
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AccordionPanel: GlobalComponentConstructor<AccordionPanelProps, AccordionPanelSlots, AccordionPanelEmits>;
|
||||
AccordionPanel: DefineComponent<AccordionPanelProps, AccordionPanelSlots, AccordionPanelEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* @module accordiontab
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { AnchorHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
|
||||
|
||||
|
@ -229,7 +229,7 @@ declare const AccordionTab: DefineComponent<AccordionTabProps, AccordionTabSlots
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AccordionTab: GlobalComponentConstructor<AccordionTabProps, AccordionTabSlots, AccordionTabEmits>;
|
||||
AccordionTab: DefineComponent<AccordionTabProps, AccordionTabSlots, AccordionTabEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module autocomplete
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, Nullable, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, Nullable, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ChipPassThroughOptions } from 'primevue/chip';
|
||||
import type { InputTextPassThroughOptions } from 'primevue/inputtext';
|
||||
|
@ -835,7 +835,7 @@ declare const AutoComplete: DefineComponent<AutoCompleteProps, AutoCompleteSlots
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AutoComplete: GlobalComponentConstructor<AutoCompleteProps, AutoCompleteSlots, AutoCompleteEmits>;
|
||||
AutoComplete: DefineComponent<AutoCompleteProps, AutoCompleteSlots, AutoCompleteEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* @module avatar
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -171,7 +171,7 @@ declare const Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Avatar: GlobalComponentConstructor<AvatarProps, AvatarSlots, AvatarEmits>;
|
||||
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module avatargroup
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -121,7 +121,7 @@ declare const AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots, A
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
AvatarGroup: GlobalComponentConstructor<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits>;
|
||||
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots, AvatarGroupEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module badge
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -129,7 +129,7 @@ declare const Badge: DefineComponent<BadgeProps, BadgeSlots, BadgeEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Badge: GlobalComponentConstructor<BadgeProps, BadgeSlots, BadgeEmits>;
|
||||
Badge: DefineComponent<BadgeProps, BadgeSlots, BadgeEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module blockui
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -169,7 +169,7 @@ declare const BlockUI: DefineComponent<BlockUIProps, BlockUISlots, BlockUIEmits>
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
BlockUI: GlobalComponentConstructor<BlockUIProps, BlockUISlots, BlockUIEmits>;
|
||||
BlockUI: DefineComponent<BlockUIProps, BlockUISlots, BlockUIEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module breadcrumb
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { MenuItem } from 'primevue/menuitem';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -234,7 +234,7 @@ declare const Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, Brea
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Breadcrumb: GlobalComponentConstructor<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
||||
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module button
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import type { ButtonHTMLAttributes, Component, VNode } from 'vue';
|
||||
|
@ -267,7 +267,7 @@ declare const Button: DefineComponent<ButtonProps, ButtonSlots, ButtonEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Button: GlobalComponentConstructor<ButtonProps, ButtonSlots, ButtonEmits>;
|
||||
Button: DefineComponent<ButtonProps, ButtonSlots, ButtonEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module buttongroup
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -113,7 +113,7 @@ declare const ButtonGroup: DefineComponent<ButtonGroupProps, ButtonGroupSlots, B
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ButtonGroup: GlobalComponentConstructor<ButtonGroupProps, ButtonGroupSlots, ButtonGroupEmits>;
|
||||
ButtonGroup: DefineComponent<ButtonGroupProps, ButtonGroupSlots, ButtonGroupEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module calendar
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, EmitFn, GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent, EmitFn } from '@primevue/core';
|
||||
import * as DatePicker from 'primevue/datepicker';
|
||||
import 'vue';
|
||||
|
||||
|
@ -120,7 +120,7 @@ declare const Calendar: DefineComponent<CalendarProps, CalendarSlots, CalendarEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Calendar: GlobalComponentConstructor<CalendarProps, CalendarSlots, CalendarEmits>;
|
||||
Calendar: DefineComponent<CalendarProps, CalendarSlots, CalendarEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module card
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -161,7 +161,7 @@ declare const Card: DefineComponent<CardProps, CardSlots, CardEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Card: GlobalComponentConstructor<CardProps, CardSlots, CardEmits>;
|
||||
Card: DefineComponent<CardProps, CardSlots, CardEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module carousel
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ButtonPassThroughOptions } from 'primevue/button';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -415,7 +415,7 @@ declare const Carousel: DefineComponent<CarouselProps, CarouselSlots, CarouselEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Carousel: GlobalComponentConstructor<CarouselProps, CarouselSlots, CarouselEmits>;
|
||||
Carousel: DefineComponent<CarouselProps, CarouselSlots, CarouselEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module cascadeselect
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { HTMLAttributes, InputHTMLAttributes, TransitionProps, VNode } from 'vue';
|
||||
|
@ -609,7 +609,7 @@ declare const CascadeSelect: DefineComponent<CascadeSelectProps, CascadeSelectSl
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
CascadeSelect: GlobalComponentConstructor<CascadeSelectProps, CascadeSelectSlots, CascadeSelectEmits>;
|
||||
CascadeSelect: DefineComponent<CascadeSelectProps, CascadeSelectSlots, CascadeSelectEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module chart
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { CanvasHTMLAttributes } from 'vue';
|
||||
|
@ -204,7 +204,7 @@ declare const Chart: DefineComponent<ChartProps, ChartSlots, ChartEmits, ChartMe
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Chart: GlobalComponentConstructor<ChartProps, ChartSlots, ChartEmits, ChartMethods>;
|
||||
Chart: DefineComponent<ChartProps, ChartSlots, ChartEmits, ChartMethods>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module checkbox
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -285,7 +285,7 @@ declare const Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Checkbox: GlobalComponentConstructor<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
||||
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module chip
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -199,7 +199,7 @@ declare const Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Chip: GlobalComponentConstructor<ChipProps, ChipSlots, ChipEmits>;
|
||||
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module chips
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, EmitFn, GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent, EmitFn } from '@primevue/core';
|
||||
import * as InputChips from 'primevue/inputchips';
|
||||
import 'vue';
|
||||
|
||||
|
@ -83,7 +83,7 @@ declare const Chips: DefineComponent<ChipsProps, ChipsSlots, ChipsEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Chips: GlobalComponentConstructor<ChipsProps, ChipsSlots, ChipsEmits>;
|
||||
Chips: DefineComponent<ChipsProps, ChipsSlots, ChipsEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module colorpicker
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { TransitionProps } from 'vue';
|
||||
|
@ -256,7 +256,7 @@ declare const ColorPicker: DefineComponent<ColorPickerProps, ColorPickerSlots, C
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ColorPicker: GlobalComponentConstructor<ColorPickerProps, ColorPickerSlots, ColorPickerEmits>;
|
||||
ColorPicker: DefineComponent<ColorPickerProps, ColorPickerSlots, ColorPickerEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* @module column
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { BadgePassThroughOptions } from 'primevue/badge';
|
||||
import type { ButtonPassThroughOptions } from 'primevue/button';
|
||||
|
@ -1039,7 +1039,7 @@ export type ColumnNode = { props: ColumnProps };
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Column: GlobalComponentConstructor<ColumnProps, ColumnSlots, ColumnEmits>;
|
||||
Column: DefineComponent<ColumnProps, ColumnSlots, ColumnEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module columngroup
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
||||
|
@ -138,7 +138,7 @@ declare const ColumnGroup: DefineComponent<ColumnGroupProps, ColumnGroupSlots, C
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ColumnGroup: GlobalComponentConstructor<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits>;
|
||||
ColumnGroup: DefineComponent<ColumnGroupProps, ColumnGroupSlots, ColumnGroupEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module confirmdialog
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ButtonPassThroughOptions } from 'primevue/button';
|
||||
import type { ConfirmationOptions } from 'primevue/confirmationoptions';
|
||||
|
@ -280,7 +280,7 @@ declare const ConfirmDialog: DefineComponent<ConfirmDialogProps, ConfirmDialogSl
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ConfirmDialog: GlobalComponentConstructor<ConfirmDialogProps, ConfirmDialogSlots, ConfirmDialogEmits>;
|
||||
ConfirmDialog: DefineComponent<ConfirmDialogProps, ConfirmDialogSlots, ConfirmDialogEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module confirmpopup
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import { ButtonPassThroughOptions } from 'primevue/button';
|
||||
import { ConfirmationOptions } from 'primevue/confirmationoptions';
|
||||
|
@ -234,7 +234,7 @@ declare const ConfirmPopup: DefineComponent<ConfirmPopupProps, ConfirmPopupSlots
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ConfirmPopup: GlobalComponentConstructor<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits>;
|
||||
ConfirmPopup: DefineComponent<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* @module contextmenu
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { MenuItem } from 'primevue/menuitem';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -411,7 +411,7 @@ declare const ContextMenu: DefineComponent<ContextMenuProps, ContextMenuSlots, C
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ContextMenu: GlobalComponentConstructor<ContextMenuProps, ContextMenuSlots, ContextMenuEmits, ContextMenuMethods>;
|
||||
ContextMenu: DefineComponent<ContextMenuProps, ContextMenuSlots, ContextMenuEmits, ContextMenuMethods>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module datatable
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, Nullable, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, Nullable, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ButtonProps } from 'primevue/button';
|
||||
import type { ColumnPassThroughOptionType } from 'primevue/column';
|
||||
|
@ -1637,7 +1637,7 @@ declare const DataTable: DefineComponent<DataTableProps, DataTableSlots, DataTab
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DataTable: GlobalComponentConstructor<DataTableProps, DataTableSlots, DataTableEmits>;
|
||||
DataTable: DefineComponent<DataTableProps, DataTableSlots, DataTableEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module dataview
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PaginatorPassThroughOptionType } from 'primevue/paginator';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -349,7 +349,7 @@ declare const DataView: DefineComponent<DataViewProps, DataViewSlots, DataViewEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DataView: GlobalComponentConstructor<DataViewProps, DataViewSlots, DataViewEmits>;
|
||||
DataView: DefineComponent<DataViewProps, DataViewSlots, DataViewEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module datepicker
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ButtonPassThroughOptions, ButtonProps } from 'primevue/button';
|
||||
import type { InputTextPassThroughOptions } from 'primevue/inputtext';
|
||||
|
@ -1037,7 +1037,7 @@ declare const DatePicker: DefineComponent<DatePickerProps, DatePickerSlots, Date
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DatePicker: GlobalComponentConstructor<DatePickerProps, DatePickerSlots, DatePickerEmits>;
|
||||
DatePicker: DefineComponent<DatePickerProps, DatePickerSlots, DatePickerEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module deferredcontent
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -141,7 +141,7 @@ declare const DeferredContent: DefineComponent<DeferredContentProps, DeferredCon
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DeferredContent: GlobalComponentConstructor<DeferredContentProps, DeferredContentSlots, DeferredContentEmits>;
|
||||
DeferredContent: DefineComponent<DeferredContentProps, DeferredContentSlots, DeferredContentEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module dialog
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ButtonPassThroughOptions, ButtonProps } from 'primevue/button';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -431,7 +431,7 @@ declare const Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Dialog: GlobalComponentConstructor<DialogProps, DialogSlots, DialogEmits>;
|
||||
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module divider
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -136,7 +136,7 @@ declare const Divider: DefineComponent<DividerProps, DividerSlots, DividerEmits>
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Divider: GlobalComponentConstructor<DividerProps, DividerSlots, DividerEmits>;
|
||||
Divider: DefineComponent<DividerProps, DividerSlots, DividerEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module dock
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { MenuItem } from 'primevue/menuitem';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -324,7 +324,7 @@ declare const Dock: DefineComponent<DockProps, DockSlots, DockEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Dock: GlobalComponentConstructor<DockProps, DockSlots, DockEmits>;
|
||||
Dock: DefineComponent<DockProps, DockSlots, DockEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module drawer
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ButtonPassThroughOptions } from 'primevue/button';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -283,7 +283,7 @@ declare const Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Drawer: GlobalComponentConstructor<DrawerProps, DrawerSlots, DrawerEmits>;
|
||||
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module dropdown
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, EmitFn, GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent, EmitFn } from '@primevue/core';
|
||||
import * as Select from 'primevue/select';
|
||||
import 'vue';
|
||||
|
||||
|
@ -101,7 +101,7 @@ declare const Dropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Dropdown: GlobalComponentConstructor<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
||||
Dropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module dynamicdialog
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, EmitFn, GlobalComponentConstructor } from '@primevue/core';
|
||||
import type { DefineComponent, EmitFn } from '@primevue/core';
|
||||
|
||||
/**
|
||||
* Defines valid properties in DynamicDialog component.
|
||||
|
@ -48,7 +48,7 @@ declare const DynamicDialog: DefineComponent<DynamicDialogProps, DynamicDialogSl
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
DynamicDialog: GlobalComponentConstructor<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits>;
|
||||
DynamicDialog: DefineComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module editor
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -313,7 +313,7 @@ declare const Editor: DefineComponent<EditorProps, EditorSlots, EditorEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Editor: GlobalComponentConstructor<EditorProps, EditorSlots, EditorEmits>;
|
||||
Editor: DefineComponent<EditorProps, EditorSlots, EditorEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module fieldset
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { AnchorHTMLAttributes, TransitionProps, VNode } from 'vue';
|
||||
|
@ -250,7 +250,7 @@ declare const Fieldset: DefineComponent<FieldsetProps, FieldsetSlots, FieldsetEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Fieldset: GlobalComponentConstructor<FieldsetProps, FieldsetSlots, FieldsetEmits>;
|
||||
Fieldset: DefineComponent<FieldsetProps, FieldsetSlots, FieldsetEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module fileupload
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { BadgePassThroughOptions } from 'primevue/badge';
|
||||
import type { ButtonPassThroughOptions } from 'primevue/button';
|
||||
|
@ -653,7 +653,7 @@ declare const FileUpload: DefineComponent<FileUploadProps, FileUploadSlots, File
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FileUpload: GlobalComponentConstructor<FileUploadProps, FileUploadSlots, FileUploadEmits>;
|
||||
FileUpload: DefineComponent<FileUploadProps, FileUploadSlots, FileUploadEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module floatlabel
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { TransitionProps, VNode } from 'vue';
|
||||
|
@ -128,7 +128,7 @@ declare const FloatLabel: DefineComponent<FloatLabelProps, FloatLabelSlots, Floa
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
FloatLabel: GlobalComponentConstructor<FloatLabelProps, FloatLabelSlots, FloatLabelEmits>;
|
||||
FloatLabel: DefineComponent<FloatLabelProps, FloatLabelSlots, FloatLabelEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module fluid
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { TransitionProps, VNode } from 'vue';
|
||||
|
@ -123,7 +123,7 @@ declare const Fluid: DefineComponent<FluidProps, FluidSlots, FluidEmits>;
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Fluid: GlobalComponentConstructor<FluidProps, FluidSlots, FluidEmits>;
|
||||
Fluid: DefineComponent<FluidProps, FluidSlots, FluidEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module galleria
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { ButtonHTMLAttributes, HTMLAttributes, TransitionProps, VNode } from 'vue';
|
||||
|
@ -534,7 +534,7 @@ declare const Galleria: DefineComponent<GalleriaProps, GalleriaSlots, GalleriaEm
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Galleria: GlobalComponentConstructor<GalleriaProps, GalleriaSlots, GalleriaEmits>;
|
||||
Galleria: DefineComponent<GalleriaProps, GalleriaSlots, GalleriaEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module iconfield
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -121,7 +121,7 @@ declare const IconField: DefineComponent<IconFieldProps, IconFieldSlots, IconFie
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
IconField: GlobalComponentConstructor<IconFieldProps, IconFieldSlots, IconFieldEmits>;
|
||||
IconField: DefineComponent<IconFieldProps, IconFieldSlots, IconFieldEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module iftalabel
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { TransitionProps, VNode } from 'vue';
|
||||
|
@ -123,7 +123,7 @@ declare const IftaLabel: DefineComponent<IftaLabelProps, IftaLabelSlots, IftaLab
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
IftaLabel: GlobalComponentConstructor<IftaLabelProps, IftaLabelSlots, IftaLabelEmits>;
|
||||
IftaLabel: DefineComponent<IftaLabelProps, IftaLabelSlots, IftaLabelEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module image
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { TransitionProps, VNode } from 'vue';
|
||||
|
@ -355,7 +355,7 @@ declare const Image: DefineComponent<ImageProps, ImageSlots, ImageEmits, ImageMe
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Image: GlobalComponentConstructor<ImageProps, ImageSlots, ImageEmits, ImageMethods>;
|
||||
Image: DefineComponent<ImageProps, ImageSlots, ImageEmits, ImageMethods>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module imagecompare
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -142,7 +142,7 @@ declare const ImageCompare: DefineComponent<ImageCompareProps, ImageCompareSlots
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
ImageCompare: GlobalComponentConstructor<ImageCompareProps, ImageCompareSlots, ImageCompareEmits>;
|
||||
ImageCompare: DefineComponent<ImageCompareProps, ImageCompareSlots, ImageCompareEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module inlinemessage
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -155,7 +155,7 @@ declare const InlineMessage: DefineComponent<InlineMessageProps, InlineMessageSl
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InlineMessage: GlobalComponentConstructor<InlineMessageProps, InlineMessageSlots, InlineMessageEmits>;
|
||||
InlineMessage: DefineComponent<InlineMessageProps, InlineMessageSlots, InlineMessageEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module inplace
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { HTMLAttributes, VNode } from 'vue';
|
||||
|
@ -202,7 +202,7 @@ declare const Inplace: DefineComponent<InplaceProps, InplaceSlots, InplaceEmits>
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Inplace: GlobalComponentConstructor<InplaceProps, InplaceSlots, InplaceEmits>;
|
||||
Inplace: DefineComponent<InplaceProps, InplaceSlots, InplaceEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module inputchips
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { ChipPassThroughOptions } from 'primevue/chip';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
|
@ -342,7 +342,7 @@ declare const InputChips: DefineComponent<InputChipsProps, InputChipsSlots, Inpu
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputChips: GlobalComponentConstructor<InputChipsProps, InputChipsSlots, InputChipsEmits>;
|
||||
InputChips: DefineComponent<InputChipsProps, InputChipsSlots, InputChipsEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module inputgroup
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -126,7 +126,7 @@ declare const InputGroup: DefineComponent<InputGroupProps, InputGroupSlots, Inpu
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputGroup: GlobalComponentConstructor<InputGroupProps, InputGroupSlots, InputGroupEmits>;
|
||||
InputGroup: DefineComponent<InputGroupProps, InputGroupSlots, InputGroupEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* @module inputgroupaddon
|
||||
*
|
||||
*/
|
||||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '@primevue/core';
|
||||
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { VNode } from 'vue';
|
||||
|
@ -122,7 +122,7 @@ declare const InputGroupAddon: DefineComponent<InputGroupAddonProps, InputGroupA
|
|||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
InputGroupAddon: GlobalComponentConstructor<InputGroupAddonProps, InputGroupAddonSlots, InputGroupAddonEmits>;
|
||||
InputGroupAddon: DefineComponent<InputGroupAddonProps, InputGroupAddonSlots, InputGroupAddonEmits>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue