UNPKG

@sandlada/vue-mdc

Version:

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

35 lines 1.03 kB
/** * @license * Copyright 2025 Sandlada & Kai Orion * SPDX-License-Identifier: MIT */ import type { ExtractPublicPropTypes, PropType } from 'vue'; export declare const props: { /** * Default is false. When inward is true, the focus-ring focuses within the element. * * @default false */ inward: { default: boolean; type: PropType<boolean>; }; shapeInherit: { default: boolean; type: PropType<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: PropType<string | null>; }; }; export type TFocusRingProps = ExtractPublicPropTypes<typeof props>; export type TFocusRingSlot = {}; //# sourceMappingURL=focus-ring.definition.d.ts.map