@sandlada/vue-mdc
Version:

36 lines (35 loc) • 764 B
JavaScript
/**
* @license
* Copyright 2025 Sandlada & Kai Orion
* SPDX-License-Identifier: MIT
*/
const props = {
/**
* Default is false. When inward is true, the focus-ring focuses within the element.
*
* @default false
*/
inward: {
default: false,
type: Boolean
},
shapeInherit: {
default: true,
type: Boolean
},
/**
* The target element that activates the focus-ring component.
* If this parameter is not specified, the parent element is the target element by default.
* Please make sure that the **position attribute value of the target element's CSS is relative**.
*
* @default null
*/
for: {
default: null,
type: String
}
};
export {
props
};
//# sourceMappingURL=focus-ring.definition.js.map