prlg-ui 1.8.244 → 1.8.246
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/prlg-ui.css +1 -1
- package/dist/reka-ui/index.cjs.js +4 -4
- package/dist/reka-ui/index.es.js +3307 -3189
- package/dist/rekaUI.d.ts +292 -1
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ import { ComponentOptionsBase } from 'vue';
|
|
|
31
31
|
import { ComponentOptionsMixin } from 'vue';
|
|
32
32
|
import { ComponentProvideOptions } from 'vue';
|
|
33
33
|
import { ComponentPublicInstance } from 'vue';
|
|
34
|
+
import { ComputedOptions } from 'vue';
|
|
34
35
|
import { ComputedRef } from 'vue';
|
|
35
36
|
import { ConfigType } from 'dayjs';
|
|
36
37
|
import { createColumnHelper } from '@tanstack/vue-table';
|
|
@@ -83,6 +84,7 @@ import { DialogRootProps } from 'reka-ui';
|
|
|
83
84
|
import { DialogTitleProps } from 'reka-ui';
|
|
84
85
|
import { DialogTrigger } from 'reka-ui';
|
|
85
86
|
import { DialogTriggerProps } from 'reka-ui';
|
|
87
|
+
import { Directive } from 'vue';
|
|
86
88
|
import { DropdownMenuArrowProps } from 'reka-ui';
|
|
87
89
|
import { DropdownMenuCheckboxItem } from 'reka-ui';
|
|
88
90
|
import { DropdownMenuContentProps } from 'reka-ui';
|
|
@@ -100,10 +102,15 @@ import { DropdownMenuSubContentProps } from 'reka-ui';
|
|
|
100
102
|
import { DropdownMenuSubTriggerProps } from 'reka-ui';
|
|
101
103
|
import { DropdownMenuTrigger } from 'reka-ui';
|
|
102
104
|
import { FocusOutsideEvent } from 'reka-ui';
|
|
105
|
+
import { FunctionalComponent } from 'vue';
|
|
103
106
|
import { GlobalComponents } from 'vue';
|
|
104
107
|
import { GlobalDirectives } from 'vue';
|
|
105
108
|
import { LabelProps } from 'reka-ui';
|
|
109
|
+
import { LooseRequired } from '@vue/shared';
|
|
106
110
|
import { MaybeRefOrGetter } from 'vue';
|
|
111
|
+
import { MethodOptions } from 'vue';
|
|
112
|
+
import { NavigationGuard } from 'vue-router';
|
|
113
|
+
import { NavigationGuardWithThis } from 'vue-router';
|
|
107
114
|
import { nextTick } from 'vue';
|
|
108
115
|
import { ObjectDirective } from 'vue';
|
|
109
116
|
import { OnCleanup } from '@vue/reactivity';
|
|
@@ -172,8 +179,10 @@ import { TooltipPortal } from 'reka-ui';
|
|
|
172
179
|
import { TooltipProvider } from 'reka-ui';
|
|
173
180
|
import { TooltipRoot } from 'reka-ui';
|
|
174
181
|
import { TooltipTrigger } from 'reka-ui';
|
|
182
|
+
import { TypesConfig } from 'vue-router';
|
|
175
183
|
import { VNode } from 'vue';
|
|
176
184
|
import { VNodeProps } from 'vue';
|
|
185
|
+
import { WatchCallback } from 'vue';
|
|
177
186
|
import { WatchOptions } from 'vue';
|
|
178
187
|
import { WatchStopHandle } from 'vue';
|
|
179
188
|
|
|
@@ -2461,8 +2470,9 @@ declare interface ISpinnerProps {
|
|
|
2461
2470
|
size?: number;
|
|
2462
2471
|
}
|
|
2463
2472
|
|
|
2464
|
-
declare interface IToastRootProps extends ToastRootProps {
|
|
2473
|
+
export declare interface IToastRootProps extends ToastRootProps {
|
|
2465
2474
|
variant?: ToastVariant;
|
|
2475
|
+
onOpenChange?: ((value: boolean) => void) | undefined;
|
|
2466
2476
|
}
|
|
2467
2477
|
|
|
2468
2478
|
declare interface ITooltipContentProps extends TooltipContentProps {
|
|
@@ -2571,6 +2581,8 @@ export declare const SelectViewport: __VLS_WithTemplateSlots_64<typeof __VLS_com
|
|
|
2571
2581
|
|
|
2572
2582
|
export declare const Spinner: DefineComponent<ISpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ISpinnerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2573
2583
|
|
|
2584
|
+
declare type StringOrVNode = string | VNode | (() => VNode);
|
|
2585
|
+
|
|
2574
2586
|
export declare const SwitchRoot: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
|
|
2575
2587
|
|
|
2576
2588
|
export declare const SwitchThumb: DefineComponent<SwitchThumbProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SwitchThumbProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -2613,12 +2625,29 @@ onFocusOut?: ((value: FocusEvent) => any) | undefined;
|
|
|
2613
2625
|
textareaRef: HTMLTextAreaElement;
|
|
2614
2626
|
}, HTMLDivElement>;
|
|
2615
2627
|
|
|
2628
|
+
declare type Toast = Omit<ToasterToast, "id">;
|
|
2629
|
+
|
|
2630
|
+
declare function toast(props: Toast): {
|
|
2631
|
+
id: string;
|
|
2632
|
+
dismiss: () => void;
|
|
2633
|
+
update: (props: ToasterToast) => void;
|
|
2634
|
+
};
|
|
2635
|
+
|
|
2616
2636
|
export { ToastAction }
|
|
2617
2637
|
|
|
2618
2638
|
export declare const ToastClose: DefineComponent<ToastCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ToastCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2619
2639
|
|
|
2620
2640
|
export declare const ToastDescription: __VLS_WithTemplateSlots_55<typeof __VLS_component_55, __VLS_TemplateResult_55["slots"]>;
|
|
2621
2641
|
|
|
2642
|
+
export declare const Toaster: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2643
|
+
|
|
2644
|
+
declare type ToasterToast = IToastRootProps & {
|
|
2645
|
+
id: string;
|
|
2646
|
+
title?: string;
|
|
2647
|
+
description?: StringOrVNode;
|
|
2648
|
+
action?: Component;
|
|
2649
|
+
};
|
|
2650
|
+
|
|
2622
2651
|
export { ToastPortal }
|
|
2623
2652
|
|
|
2624
2653
|
export declare const ToastProvider: __VLS_WithTemplateSlots_56<typeof __VLS_component_56, __VLS_TemplateResult_56["slots"]>;
|
|
@@ -2641,6 +2670,268 @@ export { TooltipRoot }
|
|
|
2641
2670
|
|
|
2642
2671
|
export { TooltipTrigger }
|
|
2643
2672
|
|
|
2673
|
+
export declare function useToast(): {
|
|
2674
|
+
toasts: ComputedRef< {
|
|
2675
|
+
variant?: ToastVariant | undefined;
|
|
2676
|
+
onOpenChange?: ((value: boolean) => void) | undefined | undefined;
|
|
2677
|
+
defaultOpen?: boolean | undefined;
|
|
2678
|
+
forceMount?: boolean | undefined;
|
|
2679
|
+
type?: "foreground" | "background" | undefined;
|
|
2680
|
+
open?: boolean | undefined;
|
|
2681
|
+
duration?: number | undefined;
|
|
2682
|
+
asChild?: boolean | undefined;
|
|
2683
|
+
as?: FunctionalComponent<any, {}, any, {}> | {
|
|
2684
|
+
new (...args: any[]): any;
|
|
2685
|
+
__isFragment?: never;
|
|
2686
|
+
__isTeleport?: never;
|
|
2687
|
+
__isSuspense?: never;
|
|
2688
|
+
} | {
|
|
2689
|
+
[x: string]: any;
|
|
2690
|
+
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
2691
|
+
attrs: {
|
|
2692
|
+
[x: string]: unknown;
|
|
2693
|
+
};
|
|
2694
|
+
slots: Readonly<{
|
|
2695
|
+
[name: string]: Slot<any> | undefined;
|
|
2696
|
+
}>;
|
|
2697
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
2698
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
2699
|
+
}) => any) | undefined;
|
|
2700
|
+
name?: string | undefined;
|
|
2701
|
+
template?: string | object | undefined;
|
|
2702
|
+
render?: Function | undefined;
|
|
2703
|
+
components?: Record<string, Component<any, any, any, ComputedOptions, MethodOptions, {}, any>> | undefined;
|
|
2704
|
+
directives?: Record<string, Directive<any, any, string, string>> | undefined;
|
|
2705
|
+
inheritAttrs?: boolean | undefined;
|
|
2706
|
+
emits?: any;
|
|
2707
|
+
slots?: {} | undefined;
|
|
2708
|
+
expose?: string[] | undefined;
|
|
2709
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
2710
|
+
compilerOptions?: {
|
|
2711
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
2712
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
2713
|
+
comments?: boolean | undefined;
|
|
2714
|
+
delimiters?: [string, string] | undefined;
|
|
2715
|
+
} | undefined;
|
|
2716
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
2717
|
+
__isFragment?: never | undefined;
|
|
2718
|
+
__isTeleport?: never | undefined;
|
|
2719
|
+
__isSuspense?: never | undefined;
|
|
2720
|
+
__defaults?: {} | undefined;
|
|
2721
|
+
compatConfig?: {
|
|
2722
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
2723
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
2724
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
2725
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
2726
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
2727
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
2728
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
2729
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
2730
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
2731
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
2732
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
2733
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
2734
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
2735
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
2736
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
2737
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
2738
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
2739
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
2740
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
2741
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
2742
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
2743
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
2744
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
2745
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
2746
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
2747
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
2748
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
2749
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
2750
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
2751
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
2752
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
2753
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
2754
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
2755
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
2756
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
2757
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
2758
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
2759
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
2760
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
2761
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
2762
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
2763
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
2764
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
2765
|
+
} | undefined;
|
|
2766
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
2767
|
+
computed?: ComputedOptions | undefined;
|
|
2768
|
+
methods?: MethodOptions | undefined;
|
|
2769
|
+
watch?: {
|
|
2770
|
+
[x: string]: (string | WatchCallback | ({
|
|
2771
|
+
handler: WatchCallback | string;
|
|
2772
|
+
} & WatchOptions<boolean>)) | (string | WatchCallback | ({
|
|
2773
|
+
handler: WatchCallback | string;
|
|
2774
|
+
} & WatchOptions<boolean>))[];
|
|
2775
|
+
} | undefined;
|
|
2776
|
+
provide?: ComponentProvideOptions | undefined;
|
|
2777
|
+
inject?: {} | string[] | undefined;
|
|
2778
|
+
filters?: Record<string, Function> | undefined;
|
|
2779
|
+
mixins?: any[] | undefined;
|
|
2780
|
+
extends?: any;
|
|
2781
|
+
beforeCreate?: (() => any) | undefined;
|
|
2782
|
+
created?: (() => any) | undefined;
|
|
2783
|
+
beforeMount?: (() => any) | undefined;
|
|
2784
|
+
mounted?: (() => any) | undefined;
|
|
2785
|
+
beforeUpdate?: (() => any) | undefined;
|
|
2786
|
+
updated?: (() => any) | undefined;
|
|
2787
|
+
activated?: (() => any) | undefined;
|
|
2788
|
+
deactivated?: (() => any) | undefined;
|
|
2789
|
+
beforeDestroy?: (() => any) | undefined;
|
|
2790
|
+
beforeUnmount?: (() => any) | undefined;
|
|
2791
|
+
destroyed?: (() => any) | undefined;
|
|
2792
|
+
unmounted?: (() => any) | undefined;
|
|
2793
|
+
renderTracked?: ((e: DebuggerEvent) => void) | undefined;
|
|
2794
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | undefined;
|
|
2795
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
2796
|
+
delimiters?: [string, string] | undefined;
|
|
2797
|
+
__differentiator?: string | number | symbol | undefined;
|
|
2798
|
+
__isBuiltIn?: boolean | undefined;
|
|
2799
|
+
__file?: string | undefined;
|
|
2800
|
+
__name?: string | undefined;
|
|
2801
|
+
beforeRouteEnter?: (TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : NavigationGuardWithThis<undefined>) | undefined;
|
|
2802
|
+
beforeRouteUpdate?: (TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : NavigationGuard) | undefined;
|
|
2803
|
+
beforeRouteLeave?: (TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : NavigationGuard) | undefined;
|
|
2804
|
+
} | AsTag | undefined;
|
|
2805
|
+
id: string;
|
|
2806
|
+
title?: string | undefined;
|
|
2807
|
+
description?: StringOrVNode | undefined;
|
|
2808
|
+
action?: FunctionalComponent<any, {}, any, {}> | {
|
|
2809
|
+
new (...args: any[]): any;
|
|
2810
|
+
__isFragment?: never;
|
|
2811
|
+
__isTeleport?: never;
|
|
2812
|
+
__isSuspense?: never;
|
|
2813
|
+
} | {
|
|
2814
|
+
[x: string]: any;
|
|
2815
|
+
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
2816
|
+
attrs: {
|
|
2817
|
+
[x: string]: unknown;
|
|
2818
|
+
};
|
|
2819
|
+
slots: Readonly<{
|
|
2820
|
+
[name: string]: Slot<any> | undefined;
|
|
2821
|
+
}>;
|
|
2822
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
2823
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
2824
|
+
}) => any) | undefined;
|
|
2825
|
+
name?: string | undefined;
|
|
2826
|
+
template?: string | object | undefined;
|
|
2827
|
+
render?: Function | undefined;
|
|
2828
|
+
components?: Record<string, Component<any, any, any, ComputedOptions, MethodOptions, {}, any>> | undefined;
|
|
2829
|
+
directives?: Record<string, Directive<any, any, string, string>> | undefined;
|
|
2830
|
+
inheritAttrs?: boolean | undefined;
|
|
2831
|
+
emits?: any;
|
|
2832
|
+
slots?: {} | undefined;
|
|
2833
|
+
expose?: string[] | undefined;
|
|
2834
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
2835
|
+
compilerOptions?: {
|
|
2836
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
2837
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
2838
|
+
comments?: boolean | undefined;
|
|
2839
|
+
delimiters?: [string, string] | undefined;
|
|
2840
|
+
} | undefined;
|
|
2841
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
2842
|
+
__isFragment?: never | undefined;
|
|
2843
|
+
__isTeleport?: never | undefined;
|
|
2844
|
+
__isSuspense?: never | undefined;
|
|
2845
|
+
__defaults?: {} | undefined;
|
|
2846
|
+
compatConfig?: {
|
|
2847
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
2848
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
2849
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
2850
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
2851
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
2852
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
2853
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
2854
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
2855
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
2856
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
2857
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
2858
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
2859
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
2860
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
2861
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
2862
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
2863
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
2864
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
2865
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
2866
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
2867
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
2868
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
2869
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
2870
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
2871
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
2872
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
2873
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
2874
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
2875
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
2876
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
2877
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
2878
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
2879
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
2880
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
2881
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
2882
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
2883
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
2884
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
2885
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
2886
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
2887
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
2888
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
2889
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
2890
|
+
} | undefined;
|
|
2891
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
2892
|
+
computed?: ComputedOptions | undefined;
|
|
2893
|
+
methods?: MethodOptions | undefined;
|
|
2894
|
+
watch?: {
|
|
2895
|
+
[x: string]: (string | WatchCallback | ({
|
|
2896
|
+
handler: WatchCallback | string;
|
|
2897
|
+
} & WatchOptions<boolean>)) | (string | WatchCallback | ({
|
|
2898
|
+
handler: WatchCallback | string;
|
|
2899
|
+
} & WatchOptions<boolean>))[];
|
|
2900
|
+
} | undefined;
|
|
2901
|
+
provide?: ComponentProvideOptions | undefined;
|
|
2902
|
+
inject?: {} | string[] | undefined;
|
|
2903
|
+
filters?: Record<string, Function> | undefined;
|
|
2904
|
+
mixins?: any[] | undefined;
|
|
2905
|
+
extends?: any;
|
|
2906
|
+
beforeCreate?: (() => any) | undefined;
|
|
2907
|
+
created?: (() => any) | undefined;
|
|
2908
|
+
beforeMount?: (() => any) | undefined;
|
|
2909
|
+
mounted?: (() => any) | undefined;
|
|
2910
|
+
beforeUpdate?: (() => any) | undefined;
|
|
2911
|
+
updated?: (() => any) | undefined;
|
|
2912
|
+
activated?: (() => any) | undefined;
|
|
2913
|
+
deactivated?: (() => any) | undefined;
|
|
2914
|
+
beforeDestroy?: (() => any) | undefined;
|
|
2915
|
+
beforeUnmount?: (() => any) | undefined;
|
|
2916
|
+
destroyed?: (() => any) | undefined;
|
|
2917
|
+
unmounted?: (() => any) | undefined;
|
|
2918
|
+
renderTracked?: ((e: DebuggerEvent) => void) | undefined;
|
|
2919
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | undefined;
|
|
2920
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
2921
|
+
delimiters?: [string, string] | undefined;
|
|
2922
|
+
__differentiator?: string | number | symbol | undefined;
|
|
2923
|
+
__isBuiltIn?: boolean | undefined;
|
|
2924
|
+
__file?: string | undefined;
|
|
2925
|
+
__name?: string | undefined;
|
|
2926
|
+
beforeRouteEnter?: (TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : NavigationGuardWithThis<undefined>) | undefined;
|
|
2927
|
+
beforeRouteUpdate?: (TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : NavigationGuard) | undefined;
|
|
2928
|
+
beforeRouteLeave?: (TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : NavigationGuard) | undefined;
|
|
2929
|
+
} | undefined;
|
|
2930
|
+
}[]>;
|
|
2931
|
+
toast: typeof toast;
|
|
2932
|
+
dismiss: (toastId?: string) => void;
|
|
2933
|
+
};
|
|
2934
|
+
|
|
2644
2935
|
export declare const vLoading: ObjectDirective<LoadingElement, boolean>;
|
|
2645
2936
|
|
|
2646
2937
|
export { }
|