@rocketui/vue 0.2.39-alpha.6 → 0.2.39-alpha.8
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/rocket-ui-vue.d.ts +3 -2
- package/dist/rocket-ui-vue.js +1095 -1085
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -734,7 +734,7 @@ declare function handleToggle(): void;
|
|
|
734
734
|
|
|
735
735
|
declare function handleUpdate(extraData?: any): void;
|
|
736
736
|
|
|
737
|
-
declare function hideTooltip(): void;
|
|
737
|
+
declare function hideTooltip(e?: Event | null): void;
|
|
738
738
|
|
|
739
739
|
declare interface IProps {
|
|
740
740
|
/**
|
|
@@ -1429,7 +1429,7 @@ declare interface ModalProps {
|
|
|
1429
1429
|
allowBodyScroll?: boolean;
|
|
1430
1430
|
}
|
|
1431
1431
|
|
|
1432
|
-
declare function onClick(): void;
|
|
1432
|
+
declare function onClick(e: MouseEvent): void;
|
|
1433
1433
|
|
|
1434
1434
|
declare function onMouseEnter(): void;
|
|
1435
1435
|
|
|
@@ -2934,6 +2934,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
2934
2934
|
mouseleave: typeof onMouseLeave;
|
|
2935
2935
|
mousemove: typeof onMouseMove;
|
|
2936
2936
|
};
|
|
2937
|
+
tooltipId: string;
|
|
2937
2938
|
updatePosition: typeof handleUpdate;
|
|
2938
2939
|
}): any;
|
|
2939
2940
|
content?(_: {
|