Rezi
    Preparing search index...

    Function shouldShowFocusRing

    • Determine if focus ring should be shown based on focus state and config.

      Parameters

      • state: FocusState
      • Optionalconfig: Readonly<
            {
                animation?: FocusAnimation;
                contentStyle?: Readonly<
                    {
                        bg?: Readonly<{ b: number; g: number; r: number }>;
                        bold?: boolean;
                        dim?: boolean;
                        fg?: Readonly<{ b: number; g: number; r: number }>;
                        inverse?: boolean;
                        italic?: boolean;
                        underline?: boolean;
                    },
                >;
                hintText?: string;
                indicator?: FocusIndicatorType;
                ringVariant?: FocusRingVariant;
                showHint?: boolean;
                style?: Readonly<
                    {
                        bg?: Readonly<{ b: number; g: number; r: number }>;
                        bold?: boolean;
                        dim?: boolean;
                        fg?: Readonly<{ b: number; g: number; r: number }>;
                        inverse?: boolean;
                        italic?: boolean;
                        underline?: boolean;
                    },
                >;
            },
        >

      Returns boolean