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.
38 lines
901 B
38 lines
901 B
|
2 years ago
|
import '../../../utils/index.mjs';
|
||
|
|
import '../../popper/index.mjs';
|
||
|
|
import '../../../hooks/index.mjs';
|
||
|
|
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
||
|
|
import { useDelayedToggleProps } from '../../../hooks/use-delayed-toggle/index.mjs';
|
||
|
|
import { popperContentProps } from '../../popper/src/content.mjs';
|
||
|
|
|
||
|
|
const useTooltipContentProps = buildProps({
|
||
|
|
...useDelayedToggleProps,
|
||
|
|
...popperContentProps,
|
||
|
|
appendTo: {
|
||
|
|
type: definePropType([String, Object])
|
||
|
|
},
|
||
|
|
content: {
|
||
|
|
type: String,
|
||
|
|
default: ""
|
||
|
|
},
|
||
|
|
rawContent: {
|
||
|
|
type: Boolean,
|
||
|
|
default: false
|
||
|
|
},
|
||
|
|
persistent: Boolean,
|
||
|
|
ariaLabel: String,
|
||
|
|
visible: {
|
||
|
|
type: definePropType(Boolean),
|
||
|
|
default: null
|
||
|
|
},
|
||
|
|
transition: String,
|
||
|
|
teleported: {
|
||
|
|
type: Boolean,
|
||
|
|
default: true
|
||
|
|
},
|
||
|
|
disabled: Boolean
|
||
|
|
});
|
||
|
|
|
||
|
|
export { useTooltipContentProps };
|
||
|
|
//# sourceMappingURL=content.mjs.map
|