/* eslint-disable @typescript-eslint/no-deprecated */ 'use client'; import { tokens } from '@fluentui/react-theme'; import { makeStyles, mergeClasses } from '@griffel/react'; /** * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead */ export const infoLabelClassNames = { root: 'fui-InfoLabel', label: 'fui-InfoLabel__label', infoButton: 'fui-InfoLabel__infoButton' }; const useLabelStyles = makeStyles({ base: { verticalAlign: 'top', cursor: 'inherit', color: 'inherit' } }); const useInfoButtonStyles = makeStyles({ base: { verticalAlign: 'top', // Negative margin to align with the text marginTop: `calc(0px - ${tokens.spacingVerticalXXS})`, marginBottom: `calc(0px - ${tokens.spacingVerticalXXS})` }, large: { // Negative margin to align with the text marginTop: '-1px', marginBottom: '-1px' } }); /** * Apply styling to the InfoLabel slots based on the state * * @deprecated use {@link @fluentui/react-components#InfoLabel} from `\@fluentui/react-components` or `\@fluentui/react-infolabel` instead */ export const useInfoLabelStyles_unstable = (state)=>{ // eslint-disable-next-line react-compiler/react-compiler state.root.className = mergeClasses(infoLabelClassNames.root, state.root.className); const labelStyles = useLabelStyles(); state.label.className = mergeClasses(infoLabelClassNames.label, labelStyles.base, state.label.className); const infoButtonStyles = useInfoButtonStyles(); if (state.infoButton) { state.infoButton.className = mergeClasses(infoLabelClassNames.infoButton, infoButtonStyles.base, state.size === 'large' && infoButtonStyles.large, state.infoButton.className); } return state; };