UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

45 lines (44 loc) 720 B
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ import { ETooltipPosition } from "./tooltip-controller.js"; const props = { supportingText: { type: String, default: null }, position: { type: String, default: ETooltipPosition.Below }, visibility: { type: Boolean, default: false }, disabled: { type: Boolean, default: false }, showDelay: { type: Number, default: 500 }, hideDelay: { type: Number, default: 200 }, anchor: { type: String, default: null }, disableElevation: { type: Boolean, default: false } }; export { props }; //# sourceMappingURL=plain-tooltip.definition.js.map