You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
756 B
27 lines
756 B
import '../../../utils/index.mjs';
|
|
import { tooltipV2RootProps } from './root.mjs';
|
|
import { tooltipV2TriggerProps } from './trigger.mjs';
|
|
import { tooltipV2ArrowProps } from './arrow.mjs';
|
|
import { tooltipV2ContentProps } from './content.mjs';
|
|
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
|
|
|
const tooltipV2Props = buildProps({
|
|
...tooltipV2RootProps,
|
|
...tooltipV2ArrowProps,
|
|
...tooltipV2TriggerProps,
|
|
...tooltipV2ContentProps,
|
|
alwaysOn: Boolean,
|
|
fullTransition: Boolean,
|
|
transitionProps: {
|
|
type: definePropType(Object),
|
|
default: null
|
|
},
|
|
teleported: Boolean,
|
|
to: {
|
|
type: definePropType(String),
|
|
default: "body"
|
|
}
|
|
});
|
|
|
|
export { tooltipV2Props };
|
|
//# sourceMappingURL=tooltip.mjs.map
|
|
|