{"version":3,"file":"Spinner.674f6edc.js","sources":["../../../node_modules/@fluentui/react-spinner/lib/contexts/SpinnerContext.js","../../../node_modules/@fluentui/react-spinner/lib/components/Spinner/useSpinner.js","../../../node_modules/@fluentui/react-spinner/lib/components/Spinner/renderSpinner.js","../../../node_modules/@fluentui/react-spinner/lib/components/Spinner/useSpinnerStyles.styles.js","../../../node_modules/@fluentui/react-spinner/lib/components/Spinner/Spinner.js"],"sourcesContent":["import * as React from 'react';\nconst SpinnerContext = React.createContext(undefined);\nconst SpinnerContextDefaultValue = {};\n/**\n * @internal\n */ export const SpinnerContextProvider = SpinnerContext.Provider;\n/**\n * @internal\n */ export const useSpinnerContext = ()=>{\n var _React_useContext;\n return (_React_useContext = React.useContext(SpinnerContext)) !== null && _React_useContext !== void 0 ? _React_useContext : SpinnerContextDefaultValue;\n};\n","import * as React from 'react';\nimport { getIntrinsicElementProps, useId, useTimeout, slot } from '@fluentui/react-utilities';\nimport { Label } from '@fluentui/react-label';\nimport { useSpinnerContext } from '../../contexts/SpinnerContext';\n/**\n * Create the state required to render Spinner.\n *\n * The returned state can be modified with hooks such as useSpinnerStyles_unstable,\n * before being passed to renderSpinner_unstable.\n *\n * @param props - props from this instance of Spinner\n * @param ref - reference to root HTMLElement of Spinner\n */ export const useSpinner_unstable = (props, ref)=>{\n // Props\n const { size: contextSize } = useSpinnerContext();\n const { appearance = 'primary', labelPosition = 'after', size = contextSize !== null && contextSize !== void 0 ? contextSize : 'medium', delay = 0 } = props;\n const baseId = useId('spinner');\n const { role = 'progressbar', ...rest } = props;\n const nativeRoot = slot.always(getIntrinsicElementProps('div', {\n // FIXME:\n // `ref` is wrongly assigned to be `HTMLElement` instead of `HTMLDivElement`\n // but since it would be a breaking change to fix it, we are casting ref to it's proper type\n ref: ref,\n role,\n ...rest\n }, [\n 'size'\n ]), {\n elementType: 'div'\n });\n const [isShownAfterDelay, setIsShownAfterDelay] = React.useState(false);\n const [setDelayTimeout, clearDelayTimeout] = useTimeout();\n React.useEffect(()=>{\n if (delay <= 0) {\n return;\n }\n setDelayTimeout(()=>{\n setIsShownAfterDelay(true);\n }, delay);\n return ()=>{\n clearDelayTimeout();\n };\n }, [\n setDelayTimeout,\n clearDelayTimeout,\n delay\n ]);\n const labelShorthand = slot.optional(props.label, {\n defaultProps: {\n id: baseId\n },\n renderByDefault: false,\n elementType: Label\n });\n const spinnerShortHand = slot.optional(props.spinner, {\n renderByDefault: true,\n elementType: 'span'\n });\n if (labelShorthand && nativeRoot && !nativeRoot['aria-labelledby']) {\n nativeRoot['aria-labelledby'] = labelShorthand.id;\n }\n const state = {\n appearance,\n delay,\n labelPosition,\n size,\n shouldRenderSpinner: !delay || isShownAfterDelay,\n components: {\n root: 'div',\n spinner: 'span',\n spinnerTail: 'span',\n label: Label\n },\n root: nativeRoot,\n spinner: spinnerShortHand,\n spinnerTail: slot.always(props.spinnerTail, {\n elementType: 'span'\n }),\n label: labelShorthand\n };\n return state;\n};\n"," import { jsx as _jsx, jsxs as _jsxs } from \"@fluentui/react-jsx-runtime/jsx-runtime\";\nimport { assertSlots } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of Spinner\n */ export const renderSpinner_unstable = (state)=>{\n assertSlots(state);\n const { labelPosition, shouldRenderSpinner } = state;\n return /*#__PURE__*/ _jsxs(state.root, {\n children: [\n state.label && shouldRenderSpinner && (labelPosition === 'above' || labelPosition === 'before') && /*#__PURE__*/ _jsx(state.label, {}),\n state.spinner && shouldRenderSpinner && /*#__PURE__*/ _jsx(state.spinner, {\n children: state.spinnerTail && /*#__PURE__*/ _jsx(state.spinnerTail, {})\n }),\n state.label && shouldRenderSpinner && (labelPosition === 'below' || labelPosition === 'after') && /*#__PURE__*/ _jsx(state.label, {})\n ]\n });\n};\n","import { useFluent_unstable as useFluent } from '@fluentui/react-shared-contexts';\nimport { tokens, typographyStyles } from '@fluentui/react-theme';\nimport { __resetStyles, __styles, mergeClasses } from '@griffel/react';\nexport const spinnerClassNames = {\n root: 'fui-Spinner',\n spinner: 'fui-Spinner__spinner',\n spinnerTail: 'fui-Spinner__spinnerTail',\n label: 'fui-Spinner__label'\n};\n/**\n * CSS variables used internally by Spinner\n */\nconst vars = {\n strokeWidth: '--fui-Spinner--strokeWidth'\n};\nconst useRootBaseClassName = /*#__PURE__*/__resetStyles(\"r82apo5\", null, [\".r82apo5{display:flex;align-items:center;justify-content:center;line-height:0;gap:8px;overflow:hidden;}\"]);\nconst useRootStyles = /*#__PURE__*/__styles({\n vertical: {\n Beiy3e4: \"f1vx9l62\"\n }\n}, {\n d: [\".f1vx9l62{flex-direction:column;}\"]\n});\nconst useSpinnerBaseClassName = /*#__PURE__*/__resetStyles(\"rvgcg50\", \"r15nd2jo\", {\n r: [\".rvgcg50{position:relative;flex-shrink:0;-webkit-mask-image:radial-gradient(closest-side, transparent calc(100% - var(--fui-Spinner--strokeWidth) - 1px), white calc(100% - var(--fui-Spinner--strokeWidth)) calc(100% - 1px), transparent 100%);mask-image:radial-gradient(closest-side, transparent calc(100% - var(--fui-Spinner--strokeWidth) - 1px), white calc(100% - var(--fui-Spinner--strokeWidth)) calc(100% - 1px), transparent 100%);background-color:var(--colorBrandStroke2Contrast);color:var(--colorBrandStroke1);animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:rb7n1on;}\", \"@keyframes rb7n1on{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}\", \".r15nd2jo{position:relative;flex-shrink:0;-webkit-mask-image:radial-gradient(closest-side, transparent calc(100% - var(--fui-Spinner--strokeWidth) - 1px), white calc(100% - var(--fui-Spinner--strokeWidth)) calc(100% - 1px), transparent 100%);mask-image:radial-gradient(closest-side, transparent calc(100% - var(--fui-Spinner--strokeWidth) - 1px), white calc(100% - var(--fui-Spinner--strokeWidth)) calc(100% - 1px), transparent 100%);background-color:var(--colorBrandStroke2Contrast);color:var(--colorBrandStroke1);animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:r1gx3jof;}\", \"@keyframes r1gx3jof{0%{transform:rotate(0deg);}100%{transform:rotate(-360deg);}}\"],\n s: [\"@media screen and (forced-colors: active){.rvgcg50{background-color:HighlightText;color:Highlight;forced-color-adjust:none;}}\", \"@media screen and (prefers-reduced-motion: reduce){.rvgcg50{animation-duration:1.8s;}}\", \"@media screen and (forced-colors: active){.r15nd2jo{background-color:HighlightText;color:Highlight;forced-color-adjust:none;}}\", \"@media screen and (prefers-reduced-motion: reduce){.r15nd2jo{animation-duration:1.8s;}}\"]\n});\n// The spinner tail is rendered using two 135deg arc segments, behind a 105deg arc mask.\n// The segments are rotated out from behind the mask to expand the visible arc from\n// 30deg (min) to 255deg (max), and then back behind the mask again to shrink the arc.\n// The tail and spinner itself also have 360deg rotation animations for the spin.\nconst useSpinnerTailBaseClassName = /*#__PURE__*/__resetStyles(\"rxov3xa\", \"r1o544mv\", {\n r: [\".rxov3xa{position:absolute;display:block;width:100%;height:100%;-webkit-mask-image:conic-gradient(transparent 105deg, white 105deg);mask-image:conic-gradient(transparent 105deg, white 105deg);animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:var(--curveEasyEase);animation-name:r15mim6k;}\", \".rxov3xa::before,.rxov3xa::after{content:\\\"\\\";position:absolute;display:block;width:100%;height:100%;animation:inherit;background-image:conic-gradient(currentcolor 135deg, transparent 135deg);}\", \"@keyframes r15mim6k{0%{transform:rotate(-135deg);}50%{transform:rotate(0deg);}100%{transform:rotate(225deg);}}\", \".rxov3xa::before{animation-name:r18vhmn8;}\", \"@keyframes r18vhmn8{0%{transform:rotate(0deg);}50%{transform:rotate(105deg);}100%{transform:rotate(0deg);}}\", \".rxov3xa::after{animation-name:rkgrvoi;}\", \"@keyframes rkgrvoi{0%{transform:rotate(0deg);}50%{transform:rotate(225deg);}100%{transform:rotate(0deg);}}\", \".r1o544mv{position:absolute;display:block;width:100%;height:100%;-webkit-mask-image:conic-gradient(transparent 105deg, white 105deg);mask-image:conic-gradient(transparent 105deg, white 105deg);animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:var(--curveEasyEase);animation-name:r109gmi5;}\", \".r1o544mv::before,.r1o544mv::after{content:\\\"\\\";position:absolute;display:block;width:100%;height:100%;animation:inherit;background-image:conic-gradient(currentcolor 135deg, transparent 135deg);}\", \"@keyframes r109gmi5{0%{transform:rotate(135deg);}50%{transform:rotate(0deg);}100%{transform:rotate(-225deg);}}\", \".r1o544mv::before{animation-name:r17whflh;}\", \"@keyframes r17whflh{0%{transform:rotate(0deg);}50%{transform:rotate(-105deg);}100%{transform:rotate(0deg);}}\", \".r1o544mv::after{animation-name:re4odhl;}\", \"@keyframes re4odhl{0%{transform:rotate(0deg);}50%{transform:rotate(-225deg);}100%{transform:rotate(0deg);}}\"],\n s: [\"@media screen and (prefers-reduced-motion: reduce){.rxov3xa{animation-iteration-count:0;background-image:conic-gradient(transparent 120deg, currentcolor 360deg);}.rxov3xa::before,.rxov3xa::after{content:none;}}\", \"@media screen and (prefers-reduced-motion: reduce){.r1o544mv{animation-iteration-count:0;background-image:conic-gradient(transparent 120deg, currentcolor 360deg);}.r1o544mv::before,.r1o544mv::after{content:none;}}\"]\n});\nconst useSpinnerStyles = /*#__PURE__*/__styles({\n inverted: {\n De3pzq: \"fr407j0\",\n sj55zd: \"f1f7voed\"\n },\n rtlTail: {\n btxmck: \"f179dep3\",\n gb5jj2: \"fbz9ihp\",\n Br2kee7: \"f1wkkxo7\"\n },\n \"extra-tiny\": {\n Bqenvij: \"fd461yt\",\n a9b677: \"fjw5fx7\",\n qmp6fs: \"f1v3ph3m\"\n },\n tiny: {\n Bqenvij: \"fjamq6b\",\n a9b677: \"f64fuq3\",\n qmp6fs: \"f1v3ph3m\"\n },\n \"extra-small\": {\n Bqenvij: \"frvgh55\",\n a9b677: \"fq4mcun\",\n qmp6fs: \"f1v3ph3m\"\n },\n small: {\n Bqenvij: \"fxldao9\",\n a9b677: \"f1w9dchk\",\n qmp6fs: \"f1v3ph3m\"\n },\n medium: {\n Bqenvij: \"f1d2rq10\",\n a9b677: \"f1szoe96\",\n qmp6fs: \"fb52u90\"\n },\n large: {\n Bqenvij: \"f8ljn23\",\n a9b677: \"fpdz1er\",\n qmp6fs: \"fb52u90\"\n },\n \"extra-large\": {\n Bqenvij: \"fbhnoac\",\n a9b677: \"feqmc2u\",\n qmp6fs: \"fb52u90\"\n },\n huge: {\n Bqenvij: \"f1ft4266\",\n a9b677: \"fksc0bp\",\n qmp6fs: \"fa3u9ii\"\n }\n}, {\n d: [\".fr407j0{background-color:var(--colorNeutralStrokeAlpha2);}\", \".f1f7voed{color:var(--colorNeutralStrokeOnBrand2);}\", \".f179dep3{-webkit-mask-image:conic-gradient(white 255deg, transparent 255deg);mask-image:conic-gradient(white 255deg, transparent 255deg);}\", \".fbz9ihp::before,.fbz9ihp::after{background-image:conic-gradient(transparent 225deg, currentcolor 225deg);}\", \".fd461yt{height:16px;}\", \".fjw5fx7{width:16px;}\", \".f1v3ph3m{--fui-Spinner--strokeWidth:var(--strokeWidthThick);}\", \".fjamq6b{height:20px;}\", \".f64fuq3{width:20px;}\", \".frvgh55{height:24px;}\", \".fq4mcun{width:24px;}\", \".fxldao9{height:28px;}\", \".f1w9dchk{width:28px;}\", \".f1d2rq10{height:32px;}\", \".f1szoe96{width:32px;}\", \".fb52u90{--fui-Spinner--strokeWidth:var(--strokeWidthThicker);}\", \".f8ljn23{height:36px;}\", \".fpdz1er{width:36px;}\", \".fbhnoac{height:40px;}\", \".feqmc2u{width:40px;}\", \".f1ft4266{height:44px;}\", \".fksc0bp{width:44px;}\", \".fa3u9ii{--fui-Spinner--strokeWidth:var(--strokeWidthThickest);}\"],\n m: [[\"@media screen and (prefers-reduced-motion: reduce){.f1wkkxo7{background-image:conic-gradient(currentcolor 0deg, transparent 240deg);}}\", {\n m: \"screen and (prefers-reduced-motion: reduce)\"\n }]]\n});\nconst useLabelStyles = /*#__PURE__*/__styles({\n inverted: {\n sj55zd: \"fonrgv7\"\n },\n \"extra-tiny\": {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\"\n },\n tiny: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\"\n },\n \"extra-small\": {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\"\n },\n small: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fkhj508\",\n Bhrd7zp: \"figsok6\",\n Bg96gwp: \"f1i3iumi\"\n },\n medium: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fod5ikn\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"faaz57k\"\n },\n large: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fod5ikn\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"faaz57k\"\n },\n \"extra-large\": {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"fod5ikn\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"faaz57k\"\n },\n huge: {\n Bahqtrf: \"fk6fouc\",\n Be2twd7: \"f1pp30po\",\n Bhrd7zp: \"fl43uef\",\n Bg96gwp: \"f106mvju\"\n }\n}, {\n d: [\".fonrgv7{color:var(--colorNeutralForegroundStaticInverted);}\", \".fk6fouc{font-family:var(--fontFamilyBase);}\", \".fkhj508{font-size:var(--fontSizeBase300);}\", \".figsok6{font-weight:var(--fontWeightRegular);}\", \".f1i3iumi{line-height:var(--lineHeightBase300);}\", \".fod5ikn{font-size:var(--fontSizeBase400);}\", \".fl43uef{font-weight:var(--fontWeightSemibold);}\", \".faaz57k{line-height:var(--lineHeightBase400);}\", \".f1pp30po{font-size:var(--fontSizeBase500);}\", \".f106mvju{line-height:var(--lineHeightBase500);}\"]\n});\n/**\n * Apply styling to the Spinner slots based on the state\n */\nexport const useSpinnerStyles_unstable = state => {\n 'use no memo';\n\n const {\n labelPosition,\n size,\n appearance\n } = state;\n const {\n dir\n } = useFluent();\n const rootBaseClassName = useRootBaseClassName();\n const rootStyles = useRootStyles();\n const spinnerBaseClassName = useSpinnerBaseClassName();\n const spinnerStyles = useSpinnerStyles();\n const spinnerTailBaseClassName = useSpinnerTailBaseClassName();\n const labelStyles = useLabelStyles();\n state.root.className = mergeClasses(spinnerClassNames.root, rootBaseClassName, (labelPosition === 'above' || labelPosition === 'below') && rootStyles.vertical, state.root.className);\n if (state.spinner) {\n state.spinner.className = mergeClasses(spinnerClassNames.spinner, spinnerBaseClassName, spinnerStyles[size], appearance === 'inverted' && spinnerStyles.inverted, state.spinner.className);\n }\n if (state.spinnerTail) {\n state.spinnerTail.className = mergeClasses(spinnerClassNames.spinnerTail, spinnerTailBaseClassName, dir === 'rtl' && spinnerStyles.rtlTail, state.spinnerTail.className);\n }\n if (state.label) {\n state.label.className = mergeClasses(spinnerClassNames.label, labelStyles[size], appearance === 'inverted' && labelStyles.inverted, state.label.className);\n }\n return state;\n};","import * as React from 'react';\nimport { useSpinner_unstable } from './useSpinner';\nimport { renderSpinner_unstable } from './renderSpinner';\nimport { useSpinnerStyles_unstable } from './useSpinnerStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * Converged Spinner component for the fluentui repo\n */ export const Spinner = /*#__PURE__*/ React.forwardRef((props, ref)=>{\n const state = useSpinner_unstable(props, ref);\n useSpinnerStyles_unstable(state);\n useCustomStyleHook_unstable('useSpinnerStyles_unstable')(state);\n return renderSpinner_unstable(state);\n});\nSpinner.displayName = 'Spinner';\n"],"names":["SpinnerContext","React.createContext","SpinnerContextDefaultValue","useSpinnerContext","_React_useContext","React.useContext","useSpinner_unstable","props","ref","contextSize","appearance","labelPosition","size","delay","baseId","useId","role","rest","nativeRoot","slot.always","getIntrinsicElementProps","isShownAfterDelay","setIsShownAfterDelay","React.useState","setDelayTimeout","clearDelayTimeout","useTimeout","React.useEffect","labelShorthand","slot.optional","Label","spinnerShortHand","renderSpinner_unstable","state","shouldRenderSpinner","_jsxs","_jsx","spinnerClassNames","useRootBaseClassName","__resetStyles","useRootStyles","__styles","useSpinnerBaseClassName","useSpinnerTailBaseClassName","useSpinnerStyles","useLabelStyles","useSpinnerStyles_unstable","dir","useFluent","rootBaseClassName","rootStyles","spinnerBaseClassName","spinnerStyles","spinnerTailBaseClassName","labelStyles","mergeClasses","Spinner","React.forwardRef","useCustomStyleHook_unstable"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}