@turquoisehealth/pit-viper 2.183.1-dev.0 → 2.183.1-dev.1

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.
@@ -1,21 +1,84 @@
1
1
  import { ColDef } from 'ag-grid-community';
2
- import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, Ref, VNode } from 'vue';
3
- export interface FilterGroupMenuProps<T> {
4
- filterColDef: ColDef<T>;
2
+ import { nextTick, DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, CSSProperties, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ComponentCustomProperties } from 'vue';
3
+ import { PvPopoverProps } from '../../../base/PvPopover/PvPopover.vue';
4
+ import { OnCleanup } from '@vue/reactivity';
5
+ export interface FilterGroupMenuProps {
6
+ filterColDef: ColDef;
5
7
  }
6
- declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
7
- props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & FilterGroupMenuProps<T> & Partial<{}>> & PublicProps;
8
- expose(exposed: ShallowUnwrapRef<{
9
- openForTest: () => void;
10
- selectedValues: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
11
- }>): void;
12
- attrs: any;
13
- slots: {};
14
- emit: {};
15
- }>) => VNode & {
16
- __ctx?: Awaited<typeof __VLS_setup>;
17
- };
8
+ declare const _default: DefineComponent<FilterGroupMenuProps, {
9
+ openForTest: () => void;
10
+ selectedValues: Ref<Set<string> & Omit<Set<string>, keyof Set<any>>, Set<string> | (Set<string> & Omit<Set<string>, keyof Set<any>>)>;
11
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FilterGroupMenuProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
12
+ triggerWrapper: HTMLDivElement;
13
+ popoverRef: ({
14
+ $: ComponentInternalInstance;
15
+ $data: {};
16
+ $props: {
17
+ readonly alignment?: "top" | "right" | "top right" | undefined | undefined;
18
+ readonly cssCustomProperties?: CSSProperties | undefined;
19
+ readonly cssCustomListProperties?: CSSProperties | undefined;
20
+ readonly isList?: boolean | undefined;
21
+ readonly isSortable?: boolean | undefined;
22
+ readonly "onList-order-updated"?: ((value: string[]) => any) | undefined;
23
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
24
+ $attrs: Attrs;
25
+ $refs: {
26
+ [x: string]: unknown;
27
+ } & {
28
+ popoverRoot: HTMLDivElement;
29
+ popoverList: HTMLUListElement;
30
+ };
31
+ $slots: Readonly<{
32
+ [name: string]: Slot<any> | undefined;
33
+ }>;
34
+ $root: ComponentPublicInstance | null;
35
+ $parent: ComponentPublicInstance | null;
36
+ $host: Element | null;
37
+ $emit: (event: "list-order-updated", value: string[]) => void;
38
+ $el: HTMLDivElement;
39
+ $options: ComponentOptionsBase<Readonly< PvPopoverProps> & Readonly<{
40
+ "onList-order-updated"?: ((value: string[]) => any) | undefined;
41
+ }>, {
42
+ popoverRoot: Ref<HTMLElement | null, HTMLElement | null>;
43
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
44
+ "list-order-updated": (value: string[]) => any;
45
+ }, string, {
46
+ alignment: "top" | "right" | "top right";
47
+ cssCustomProperties: CSSProperties;
48
+ isList: boolean;
49
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
50
+ beforeCreate?: (() => void) | (() => void)[];
51
+ created?: (() => void) | (() => void)[];
52
+ beforeMount?: (() => void) | (() => void)[];
53
+ mounted?: (() => void) | (() => void)[];
54
+ beforeUpdate?: (() => void) | (() => void)[];
55
+ updated?: (() => void) | (() => void)[];
56
+ activated?: (() => void) | (() => void)[];
57
+ deactivated?: (() => void) | (() => void)[];
58
+ beforeDestroy?: (() => void) | (() => void)[];
59
+ beforeUnmount?: (() => void) | (() => void)[];
60
+ destroyed?: (() => void) | (() => void)[];
61
+ unmounted?: (() => void) | (() => void)[];
62
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
63
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
64
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
65
+ };
66
+ $forceUpdate: () => void;
67
+ $nextTick: typeof nextTick;
68
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
69
+ } & Readonly<{
70
+ alignment: "top" | "right" | "top right";
71
+ cssCustomProperties: CSSProperties;
72
+ isList: boolean;
73
+ }> & Omit<Readonly< PvPopoverProps> & Readonly<{
74
+ "onList-order-updated"?: ((value: string[]) => any) | undefined;
75
+ }>, "popoverRoot" | ("alignment" | "cssCustomProperties" | "isList")> & {
76
+ popoverRoot: HTMLElement | null;
77
+ } & {} & ComponentCustomProperties & {} & {
78
+ $slots: {
79
+ default?(_: {}): any;
80
+ default?(_: {}): any;
81
+ };
82
+ }) | null;
83
+ }, HTMLDivElement>;
18
84
  export default _default;
19
- type __VLS_PrettifyLocal<T> = {
20
- [K in keyof T]: T[K];
21
- } & {};