@solfacil/girassol 0.59.0 → 0.59.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.
|
@@ -22,11 +22,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
22
|
unselectAll: () => void;
|
|
23
23
|
selectAll: () => void;
|
|
24
24
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
-
"listitem:click": (item: Data) => void;
|
|
25
|
+
"listitem:click": (item: Data, event: MouseEvent) => void;
|
|
26
26
|
} & {
|
|
27
27
|
"listitem:selected": (item: Data) => void;
|
|
28
28
|
} & {
|
|
29
|
-
"listitem:contextmenu": (
|
|
29
|
+
"listitem:contextmenu": (item: Data, event: MouseEvent) => void;
|
|
30
30
|
} & {
|
|
31
31
|
"update:selected": (selected: Data | Data[]) => void;
|
|
32
32
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -50,8 +50,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
50
50
|
};
|
|
51
51
|
}>>> & {
|
|
52
52
|
"onUpdate:selected"?: ((selected: Data | Data[]) => any) | undefined;
|
|
53
|
-
"onListitem:click"?: ((item: Data) => any) | undefined;
|
|
54
|
-
"onListitem:contextmenu"?: ((
|
|
53
|
+
"onListitem:click"?: ((item: Data, event: MouseEvent) => any) | undefined;
|
|
54
|
+
"onListitem:contextmenu"?: ((item: Data, event: MouseEvent) => any) | undefined;
|
|
55
55
|
"onListitem:selected"?: ((item: Data) => any) | undefined;
|
|
56
56
|
}, {
|
|
57
57
|
loading: boolean;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3648,8 +3648,8 @@ export declare const components: {
|
|
|
3648
3648
|
};
|
|
3649
3649
|
}>> & {
|
|
3650
3650
|
"onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
|
|
3651
|
-
"onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3652
|
-
"onListitem:contextmenu"?: ((
|
|
3651
|
+
"onListitem:click"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3652
|
+
"onListitem:contextmenu"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3653
3653
|
"onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3654
3654
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "ariaLabel" | "fallbackValue" | "dataIdentifier">;
|
|
3655
3655
|
$attrs: {
|
|
@@ -3663,7 +3663,7 @@ export declare const components: {
|
|
|
3663
3663
|
}>;
|
|
3664
3664
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
3665
3665
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
3666
|
-
$emit: ((event: "update:selected", selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void) & ((event: "listitem:click", item: import("./components/list/types").Data) => void) & ((event: "listitem:contextmenu",
|
|
3666
|
+
$emit: ((event: "update:selected", selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void) & ((event: "listitem:click", item: import("./components/list/types").Data, event: MouseEvent) => void) & ((event: "listitem:contextmenu", item: import("./components/list/types").Data, event: MouseEvent) => void) & ((event: "listitem:selected", item: import("./components/list/types").Data) => void);
|
|
3667
3667
|
$el: any;
|
|
3668
3668
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3669
3669
|
id: {
|
|
@@ -3714,18 +3714,18 @@ export declare const components: {
|
|
|
3714
3714
|
};
|
|
3715
3715
|
}>> & {
|
|
3716
3716
|
"onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
|
|
3717
|
-
"onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3718
|
-
"onListitem:contextmenu"?: ((
|
|
3717
|
+
"onListitem:click"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3718
|
+
"onListitem:contextmenu"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3719
3719
|
"onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3720
3720
|
}, {
|
|
3721
3721
|
unselectAll: () => void;
|
|
3722
3722
|
selectAll: () => void;
|
|
3723
3723
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3724
|
-
"listitem:click": (item: import("./components/list/types").Data) => void;
|
|
3724
|
+
"listitem:click": (item: import("./components/list/types").Data, event: MouseEvent) => void;
|
|
3725
3725
|
} & {
|
|
3726
3726
|
"listitem:selected": (item: import("./components/list/types").Data) => void;
|
|
3727
3727
|
} & {
|
|
3728
|
-
"listitem:contextmenu": (
|
|
3728
|
+
"listitem:contextmenu": (item: import("./components/list/types").Data, event: MouseEvent) => void;
|
|
3729
3729
|
} & {
|
|
3730
3730
|
"update:selected": (selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void;
|
|
3731
3731
|
}, string, {
|
|
@@ -3802,8 +3802,8 @@ export declare const components: {
|
|
|
3802
3802
|
};
|
|
3803
3803
|
}>> & {
|
|
3804
3804
|
"onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
|
|
3805
|
-
"onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3806
|
-
"onListitem:contextmenu"?: ((
|
|
3805
|
+
"onListitem:click"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3806
|
+
"onListitem:contextmenu"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3807
3807
|
"onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3808
3808
|
} & import("vue").ShallowUnwrapRef<{
|
|
3809
3809
|
unselectAll: () => void;
|
|
@@ -3861,18 +3861,18 @@ export declare const components: {
|
|
|
3861
3861
|
};
|
|
3862
3862
|
}>> & {
|
|
3863
3863
|
"onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
|
|
3864
|
-
"onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3865
|
-
"onListitem:contextmenu"?: ((
|
|
3864
|
+
"onListitem:click"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3865
|
+
"onListitem:contextmenu"?: ((item: import("./components/list/types").Data, event: MouseEvent) => any) | undefined;
|
|
3866
3866
|
"onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
|
|
3867
3867
|
}, {
|
|
3868
3868
|
unselectAll: () => void;
|
|
3869
3869
|
selectAll: () => void;
|
|
3870
3870
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3871
|
-
"listitem:click": (item: import("./components/list/types").Data) => void;
|
|
3871
|
+
"listitem:click": (item: import("./components/list/types").Data, event: MouseEvent) => void;
|
|
3872
3872
|
} & {
|
|
3873
3873
|
"listitem:selected": (item: import("./components/list/types").Data) => void;
|
|
3874
3874
|
} & {
|
|
3875
|
-
"listitem:contextmenu": (
|
|
3875
|
+
"listitem:contextmenu": (item: import("./components/list/types").Data, event: MouseEvent) => void;
|
|
3876
3876
|
} & {
|
|
3877
3877
|
"update:selected": (selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void;
|
|
3878
3878
|
}, string, {
|