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