{"version":3,"file":"Drawer.cjs","sources":["../../common/constants/environments.js","../../common/utilities/warning.js","../../constants/classes.js","../../constants/dictionaries.js","../../constants/direction.js","../../constants/style.js","../../context/ClassNamePrefixContext.js","../../types/card.js","../../types/shared/style.js","../../types/shared/tokens.js","../../types/shared/index.js","../../utils/assert.js","../../utils/classname.js","../../utils/compose.js","../../utils/htmlReactParser.js","../../utils/mergeStyleProps.js","../../utils/ssr.js","../../utils/string.js","../../hooks/useStyleUtilities.js","../../hooks/styleProps.js","../../hooks/useIsomorphicLayoutEffect.js","../../hooks/useCancelEvent.js","../../hooks/useClassNamePrefix.js","../../hooks/useClick.js","../../hooks/useClickOutside.js","../../hooks/useDeprecationMessage.js","../../context/IconsContext.js","../../hooks/useIcon.js","../../hooks/useLastActiveFocus.js","../../hooks/useScrollControl.js","../Dialog/useDialog.js","../Dialog/Dialog.js","constants.js","DrawerContext.js","useDrawerStyleProps.js","Drawer.js","../Button/useButtonProps.js","../Button/useButtonStyleProps.js","../../context/PropsContext.js","../Icon/constants.js","../Icon/useIconBoxSize.js","../Icon/useIconStyleProps.js","../Icon/Icon.js","../Spinner/useSpinnerStyleProps.js","../Spinner/Spinner.js","../Button/Button.js","../ButtonLink/useButtonLinkProps.js","../ButtonLink/useButtonLinkStyleProps.js","../ButtonLink/ButtonLink.js","../VisuallyHidden/useVisuallyHiddenProps.js","../VisuallyHidden/VisuallyHidden.js","DrawerCloseButton.js","DrawerPanel.js"],"sourcesContent":["export const ENVIRONMENTS = {\n    DEVELOPMENT: 'development',\n    TESTING: 'testing',\n    PRODUCTION: 'production',\n};\nexport const isDevelopment = () => process.env.NODE_ENV === ENVIRONMENTS.DEVELOPMENT;\nexport const isTesting = () => process.env.NODE_ENV === ENVIRONMENTS.TESTING;\nexport const isProduction = () => process.env.NODE_ENV === ENVIRONMENTS.PRODUCTION;\n//# sourceMappingURL=environments.js.map","import { isProduction } from \"../constants/environments.js\";\nconst warning = (condition, message) => {\n    if (!isProduction()) {\n        if (condition) {\n            return;\n        }\n        const text = `Warning: ${message}`;\n        if (typeof console !== 'undefined') {\n            console.warn(text);\n        }\n        try {\n            throw Error(text);\n        }\n        catch (x) {\n        }\n    }\n};\nexport default warning;\n//# sourceMappingURL=warning.js.map","export const CLASS_NAME_OPEN = 'is-open';\n//# sourceMappingURL=classes.js.map","var __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport { componentColors, containers, emotionColors, textColors } from '@lmc-eu/spirit-design-tokens';\nfunction createUppercaseKeyDictionary(obj) {\n    return Object.fromEntries(Object.keys(obj).map((key) => [key.toUpperCase(), key]));\n}\nexport const AlignmentX = {\n    LEFT: 'left',\n    CENTER: 'center',\n    RIGHT: 'right',\n};\nexport const AlignmentXExtended = Object.assign({ SPACE_BETWEEN: 'space-between', STRETCH: 'stretch' }, AlignmentX);\nexport const AlignmentY = {\n    TOP: 'top',\n    CENTER: 'center',\n    BOTTOM: 'bottom',\n};\nexport const AlignmentYExtended = Object.assign({ BASELINE: 'baseline', STRETCH: 'stretch' }, AlignmentY);\nexport const TextAlignments = {\n    LEFT: 'left',\n    CENTER: 'center',\n    RIGHT: 'right',\n};\nexport const BorderColors = {\n    BASIC: 'basic',\n};\nexport const BorderRadii = {\n    0: '0',\n    100: '100',\n    200: '200',\n    300: '300',\n    400: '400',\n    500: '500',\n    FULL: 'full',\n};\nexport const BorderStyles = {\n    SOLID: 'solid',\n    DOTTED: 'dotted',\n    DASHED: 'dashed',\n};\nexport const BorderWidths = {\n    0: '0',\n    100: '100',\n    200: '200',\n};\nexport const BackgroundColors = {\n    PRIMARY: 'primary',\n    SECONDARY: 'secondary',\n    TERTIARY: 'tertiary',\n};\nexport const ComponentButtonColors = createUppercaseKeyDictionary(componentColors.button);\nexport const EmotionColors = createUppercaseKeyDictionary(emotionColors);\nexport const LinkColors = {\n    PRIMARY: 'primary',\n    SECONDARY: 'secondary',\n    TERTIARY: 'tertiary',\n};\nexport const TextColors = createUppercaseKeyDictionary(textColors);\nexport const Intensity = {\n    BASIC: 'basic',\n    SUBTLE: 'subtle',\n};\nexport const Emphasis = {\n    REGULAR: 'regular',\n    SEMIBOLD: 'semibold',\n    BOLD: 'bold',\n    ITALIC: 'italic',\n};\nexport const BackgroundGradients = {\n    PRIMARY: 'primary',\n    SECONDARY: 'secondary',\n};\nexport const Placements = {\n    TOP: 'top',\n    TOP_START: 'top-start',\n    TOP_END: 'top-end',\n    BOTTOM: 'bottom',\n    BOTTOM_START: 'bottom-start',\n    BOTTOM_END: 'bottom-end',\n    LEFT: 'left',\n    LEFT_START: 'left-start',\n    LEFT_END: 'left-end',\n    RIGHT: 'right',\n    RIGHT_START: 'right-start',\n    RIGHT_END: 'right-end',\n};\nexport const Sizes = {\n    SMALL: 'small',\n    MEDIUM: 'medium',\n    LARGE: 'large',\n};\nexport const SizesExtended = Object.assign(Object.assign({ XSMALL: 'xsmall' }, Sizes), { XLARGE: 'xlarge' });\nconst _a = createUppercaseKeyDictionary(containers), { MAXWIDTH, PADDING } = _a, ContainerTokenSizes = __rest(_a, [\"MAXWIDTH\", \"PADDING\"]);\nexport { ContainerTokenSizes };\nexport const ValidationStates = {\n    SUCCESS: 'success',\n    WARNING: 'warning',\n    DANGER: 'danger',\n};\nexport const FillVariants = {\n    FILL: 'fill',\n    OUTLINE: 'outline',\n};\nexport const ShapeVariants = {\n    BOX: 'box',\n    PILL: 'pill',\n};\n//# sourceMappingURL=dictionaries.js.map","export const Direction = {\n    HORIZONTAL: 'horizontal',\n    VERTICAL: 'vertical',\n};\nexport const DirectionExtended = Object.assign(Object.assign({}, Direction), { HORIZONTAL_REVERSED: 'horizontal-reversed' });\nexport var DirectionAxis;\n(function (DirectionAxis) {\n    DirectionAxis[\"X\"] = \"x\";\n    DirectionAxis[\"Y\"] = \"y\";\n})(DirectionAxis || (DirectionAxis = {}));\nexport const isDirectionHorizontal = (direction) => direction === Direction.HORIZONTAL;\n//# sourceMappingURL=direction.js.map","export const BackgroundStyleProps = {\n    backgroundGradient: 'bg-gradient',\n};\nexport const BorderRadiusStyleProps = {\n    borderRadius: 'rounded',\n};\nexport const SpacingStyleProp = {\n    margin: 'm',\n    marginTop: 'mt',\n    marginRight: 'mr',\n    marginBottom: 'mb',\n    marginLeft: 'ml',\n    marginX: 'mx',\n    marginY: 'my',\n};\nexport const PaddingStyleProps = {\n    padding: 'p',\n    paddingBottom: 'pb',\n    paddingLeft: 'pl',\n    paddingRight: 'pr',\n    paddingTop: 'pt',\n    paddingX: 'px',\n    paddingY: 'py',\n};\nexport const TextStyleProps = {\n    isTextBalanced: 'text-wrap-pretty',\n    textAlignment: 'text',\n    textHyphens: 'text-hyphens',\n    textWordBreak: 'text-word-break',\n};\nexport const HeadingStyleProps = {\n    isTextBalanced: 'text-wrap-balance',\n};\nexport const DisplayStyleProps = {\n    hideOn: 'd',\n    hideFrom: 'd',\n};\nexport const ThemeStyleProps = {\n    theme: '',\n};\n//# sourceMappingURL=style.js.map","'use client';\nimport { createContext } from 'react';\nconst defaultContext = undefined;\nconst ClassNamePrefixContext = createContext(defaultContext);\nconst ClassNamePrefixProvider = ClassNamePrefixContext.Provider;\nconst ClassNamePrefixConsumer = ClassNamePrefixContext.Consumer;\nexport default ClassNamePrefixContext;\nexport { ClassNamePrefixConsumer, ClassNamePrefixProvider };\n//# sourceMappingURL=ClassNamePrefixContext.js.map","import { Sizes } from \"../constants/index.js\";\nexport const CardSizes = Object.assign(Object.assign({}, Sizes), { AUTO: 'auto' });\n//# sourceMappingURL=card.js.map","export const STYLE_SPACING_AUTO = 'auto';\n//# sourceMappingURL=style.js.map","export const BREAKPOINT_MOBILE = 'mobile';\n//# sourceMappingURL=tokens.js.map","export * from \"./adornments.js\";\nexport * from \"./buttons.js\";\nexport * from \"./colors.js\";\nexport * from \"./columns.js\";\nexport * from \"./dialogs.js\";\nexport * from \"./dictionaries.js\";\nexport * from \"./directions.js\";\nexport * from \"./dragAndDrop.js\";\nexport * from \"./element.js\";\nexport * from \"./events.js\";\nexport * from \"./inputs.js\";\nexport * from \"./item.js\";\nexport * from \"./positions.js\";\nexport * from \"./radii.js\";\nexport * from \"./refs.js\";\nexport * from \"./responsive.js\";\nexport * from \"./rest.js\";\nexport * from \"./sizes.js\";\nexport * from \"./style.js\";\nexport * from \"./tokens.js\";\nexport var SpiritBreakpoints;\n(function (SpiritBreakpoints) {\n    SpiritBreakpoints[\"TABLET\"] = \"tablet\";\n    SpiritBreakpoints[\"DESKTOP\"] = \"desktop\";\n})(SpiritBreakpoints || (SpiritBreakpoints = {}));\n//# sourceMappingURL=index.js.map","export const isNullish = (value) => value == null;\nexport const isEmptyString = (value) => typeof value === 'string' && value.trim() === '';\nexport const isEmptyArray = (value) => Array.isArray(value) && value.length === 0;\nexport const isEmptyObject = (value) => typeof value === 'object' && value !== null && Object.keys(value).length === 0;\nexport const isEnumerable = (value) => {\n    if (typeof value === 'object' && value !== null) {\n        for (const key in value) {\n            if (Object.hasOwnProperty.call(value, key)) {\n                return true;\n            }\n        }\n    }\n    return false;\n};\nexport const isEmpty = (value) => {\n    if (isNullish(value)) {\n        return true;\n    }\n    if (isEmptyString(value)) {\n        return true;\n    }\n    if (isEmptyArray(value)) {\n        return true;\n    }\n    if (isEmptyObject(value)) {\n        return true;\n    }\n    if (isEnumerable(value)) {\n        return false;\n    }\n    return false;\n};\n//# sourceMappingURL=assert.js.map","export const applyClassNamePrefix = (prefix) => (className) => prefix != null && prefix !== '' ? `${prefix}-${className}` : className;\nexport const applyColor = (color) => (className) => `${className}--${color}`;\nexport const applySize = (size) => (className) => `${className}--${size}`;\nexport const applyTheme = (theme) => (className) => `${className}--${theme}`;\n//# sourceMappingURL=classname.js.map","export const compose = (...functions) => functions.reduceRight((prevFunction, nextFunction) => (...args) => nextFunction(prevFunction(...args)), (value) => value);\n//# sourceMappingURL=compose.js.map","import htmlDomParser from 'html-dom-parser';\nimport domToReactLib from 'html-react-parser/lib/dom-to-react';\nexport const htmlReactParser = (html) => {\n    if (typeof html !== 'string') {\n        throw new TypeError('First argument must be a string');\n    }\n    if (!html) {\n        return [];\n    }\n    const htmlToDOM = typeof htmlDomParser.default === 'function' ? htmlDomParser.default : htmlDomParser;\n    const domToReact = typeof domToReactLib.default === 'function' ? domToReactLib.default : domToReactLib;\n    return domToReact(htmlToDOM(html));\n};\n//# sourceMappingURL=htmlReactParser.js.map","export function mergeStyleProps(ElementTag, styleProps) {\n    const isSpiritComponent = typeof ElementTag !== 'string' && !!(ElementTag === null || ElementTag === void 0 ? void 0 : ElementTag.spiritComponent);\n    const isNonNullableObject = (styleProp) => typeof styleProp === 'object' && styleProp !== null;\n    const extractClassNames = (styleProp) => {\n        if (typeof styleProp === 'string') {\n            return [styleProp];\n        }\n        if (isNonNullableObject(styleProp)) {\n            return [styleProp.className, styleProp.UNSAFE_className].filter(Boolean);\n        }\n        return [];\n    };\n    const extractCssVariables = (styleProp) => isNonNullableObject(styleProp)\n        ? Object.entries(styleProp)\n            .filter(([key]) => key.startsWith('--'))\n            .reduce((extractedCssVariable, [key, value]) => (Object.assign(Object.assign({}, extractedCssVariable), { [key]: value })), {})\n        : {};\n    const extractCssStylesAndVariables = (cssProperties, styleProp) => {\n        if (!isNonNullableObject(styleProp)) {\n            return cssProperties;\n        }\n        const typedStyleProp = styleProp;\n        const styles = typedStyleProp.style || typedStyleProp.UNSAFE_style || {};\n        const cssVariables = extractCssVariables(styleProp);\n        return Object.assign(Object.assign(Object.assign({}, cssProperties), styles), cssVariables);\n    };\n    const mergedClasses = Object.values(styleProps).flatMap(extractClassNames).filter(Boolean).join(' ');\n    const mergedStyles = Object.values(styleProps)\n        .filter(isNonNullableObject)\n        .reduce(extractCssStylesAndVariables, {});\n    return isSpiritComponent\n        ? { UNSAFE_className: mergedClasses, UNSAFE_style: mergedStyles }\n        : { className: mergedClasses, style: mergedStyles };\n}\n//# sourceMappingURL=mergeStyleProps.js.map","export const isSSR = typeof window === 'undefined';\n//# sourceMappingURL=ssr.js.map","export const camelCaseToKebabCase = (input) => input.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();\nexport const kebabCaseToCamelCase = (input) => input.replace(/-([a-z])/g, (g) => g[1].toUpperCase());\nexport const kebabCaseToCamelCaseValues = (input) => {\n    if (typeof input === 'object' && input !== null) {\n        const result = {};\n        for (const [key, value] of Object.entries(input)) {\n            result[key] = typeof value === 'string' ? kebabCaseToCamelCase(value) : value;\n        }\n        return result;\n    }\n    return input;\n};\nexport const stringOrObjectKebabCaseToCamelCase = (input) => {\n    if (typeof input === 'string') {\n        return kebabCaseToCamelCase(input);\n    }\n    if (typeof input === 'object' && input !== null) {\n        return kebabCaseToCamelCaseValues(input);\n    }\n    return input;\n};\n//# sourceMappingURL=string.js.map","import { SpacingStyleProp as DefaultSpacingStyleProp, DisplayStyleProps, ThemeStyleProps } from \"../constants/index.js\";\nimport { BREAKPOINT_MOBILE, STYLE_SPACING_AUTO, } from \"../types/index.js\";\nimport { applyClassNamePrefix, camelCaseToKebabCase, isEmpty } from \"../utils/index.js\";\nconst CLASS_SEPARATOR = '-';\nconst normalizeSpacingValue = (value) => value === STYLE_SPACING_AUTO ? STYLE_SPACING_AUTO : value.replace(/[^0-9]/g, '');\nconst isSpaceToken = (value) => typeof value === 'string' && value.startsWith('space-');\nconst getUtilityValue = (value) => (isSpaceToken(value) ? normalizeSpacingValue(value) : value);\nconst isKeyIncluded = (object, key) => Object.keys(object).includes(key);\nconst processBreakpointProperties = (utilityName, propValue, prefix) => Object.keys(propValue).reduce((accumulatedBreakpointUtilities, breakpoint) => {\n    const breakpointValue = propValue[breakpoint];\n    if (typeof breakpointValue === 'string') {\n        const utilityValue = getUtilityValue(breakpointValue);\n        const infix = breakpoint === BREAKPOINT_MOBILE ? '' : `${CLASS_SEPARATOR}${breakpoint}`;\n        accumulatedBreakpointUtilities.push(applyClassNamePrefix(prefix)(`${utilityName}${infix}${CLASS_SEPARATOR}${utilityValue}`));\n    }\n    return accumulatedBreakpointUtilities;\n}, []);\nconst processHideOnProperty = (utilityName, propValue, prefix) => {\n    const breakpoints = Array.isArray(propValue) ? propValue : [propValue];\n    return breakpoints.map((breakpoint) => applyClassNamePrefix(prefix)(`${utilityName}${CLASS_SEPARATOR}only${CLASS_SEPARATOR}${breakpoint}${CLASS_SEPARATOR}none`));\n};\nconst processHideFromProperty = (utilityName, propValue, prefix) => {\n    const breakpoint = propValue;\n    const infix = breakpoint === BREAKPOINT_MOBILE ? '' : `${CLASS_SEPARATOR}${breakpoint}`;\n    return [applyClassNamePrefix(prefix)(`${utilityName}${infix}${CLASS_SEPARATOR}none`)];\n};\nconst processDisplayProperties = (utilityKey, utilityName, propValue, prefix) => {\n    switch (utilityKey) {\n        case 'hideOn':\n            return processHideOnProperty(utilityName, propValue, prefix);\n        case 'hideFrom':\n            return processHideFromProperty(utilityName, propValue, prefix);\n        default:\n            return [];\n    }\n};\nconst processProperties = (utilityKey, utilityName, propValue, prefix) => {\n    if (utilityName === ThemeStyleProps.theme) {\n        if (typeof propValue !== 'string') {\n            return [];\n        }\n        const themeClassName = camelCaseToKebabCase(propValue);\n        return [applyClassNamePrefix(prefix)(themeClassName)];\n    }\n    if (utilityKey in DisplayStyleProps) {\n        return processDisplayProperties(utilityKey, utilityName, propValue, prefix);\n    }\n    if (typeof propValue === 'boolean') {\n        return propValue ? [applyClassNamePrefix(prefix)(utilityName)] : [];\n    }\n    if (typeof propValue === 'string') {\n        return [applyClassNamePrefix(prefix)(`${utilityName}-${getUtilityValue(propValue)}`)];\n    }\n    return processBreakpointProperties(utilityName, propValue, prefix);\n};\nconst isStylePropProcessable = (styleProps, stylePropKey, stylePropValue, options = { includesKey: true }) => {\n    const isStylePropKeyIncluded = isKeyIncluded(styleProps, stylePropKey);\n    const isProcessable = (options.includesKey ? isStylePropKeyIncluded : !isStylePropKeyIncluded) && !isEmpty(stylePropValue);\n    return isProcessable;\n};\nexport const useStyleUtilities = (props, prefix = '', additionalProps = {}) => {\n    const styleProps = Object.assign(Object.assign(Object.assign(Object.assign({}, DefaultSpacingStyleProp), DisplayStyleProps), ThemeStyleProps), additionalProps);\n    const propEntries = Object.entries(props);\n    const styleUtilities = propEntries.reduce((accumulatedUtilities, [key, propValue]) => {\n        if (isStylePropProcessable(styleProps, key, propValue)) {\n            const utilityName = styleProps[key];\n            return [\n                ...accumulatedUtilities,\n                ...processProperties(key, utilityName, propValue, prefix),\n            ];\n        }\n        return accumulatedUtilities;\n    }, []);\n    const updatedProps = propEntries.reduce((accumulatedProps, [key, propValue]) => {\n        if (isStylePropProcessable(styleProps, key, propValue, { includesKey: false })) {\n            return Object.assign(Object.assign({}, accumulatedProps), { [key]: propValue });\n        }\n        return accumulatedProps;\n    }, {});\n    return {\n        styleUtilities,\n        props: updatedProps,\n    };\n};\n//# sourceMappingURL=useStyleUtilities.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport classNames from 'classnames';\nimport { useContext } from 'react';\nimport { warning } from \"../common/utilities/index.js\";\nimport { ThemeStyleProps } from \"../constants/index.js\";\nimport ClassNamePrefixContext from \"../context/ClassNamePrefixContext.js\";\nimport { useStyleUtilities } from \"./useStyleUtilities.js\";\nexport function useStyleProps(props, additionalUtilities) {\n    const classNamePrefix = useContext(ClassNamePrefixContext);\n    const { UNSAFE_className, UNSAFE_style } = props, otherProps = __rest(props, [\"UNSAFE_className\", \"UNSAFE_style\"]);\n    const styleUtilitiesConfig = Object.assign({ theme: ThemeStyleProps.theme }, (additionalUtilities !== null && additionalUtilities !== void 0 ? additionalUtilities : {}));\n    const { styleUtilities, props: modifiedProps } = useStyleUtilities(otherProps, classNamePrefix, styleUtilitiesConfig);\n    const style = Object.assign({}, UNSAFE_style);\n    if (modifiedProps.className) {\n        warning(false, 'The className prop is unsafe and is unsupported in Spirit Web React. ' +\n            'Please use style props with Spirit Design Tokens, or UNSAFE_className if you absolutely must do something custom. ' +\n            'Note that this may break in future versions due to DOM structure changes.');\n        delete modifiedProps.className;\n    }\n    if (modifiedProps.style) {\n        warning(false, 'The style prop is unsafe and is unsupported in Spirit Web React. ' +\n            'Please use style props with Spirit Design Tokens, or UNSAFE_style if you absolutely must do something custom. ' +\n            'Note that this may break in future versions due to DOM structure changes.');\n        delete modifiedProps.style;\n    }\n    const styleProps = {\n        style: Object.keys(style).length > 0 ? style : undefined,\n        className: classNames(UNSAFE_className, ...styleUtilities) || undefined,\n    };\n    return {\n        styleProps,\n        props: modifiedProps,\n    };\n}\n//# sourceMappingURL=styleProps.js.map","'use client';\nimport { useEffect, useLayoutEffect } from 'react';\nimport { isSSR } from \"../utils/index.js\";\nexport const useIsomorphicLayoutEffect = !isSSR ? useLayoutEffect : useEffect;\n//# sourceMappingURL=useIsomorphicLayoutEffect.js.map","'use client';\nimport { useCallback } from 'react';\nimport { useIsomorphicLayoutEffect } from \"./useIsomorphicLayoutEffect.js\";\nconst EVENT_CANCEL = 'cancel';\nconst EVENT_KEYDOWN = 'keydown';\nconst EVENT_KEY = 'Escape';\nexport const useCancelEvent = (ref, callback, closeOnEscapeKeyDown = true, isOpen = false) => {\n    const handleCancel = useCallback((event) => {\n        if (!ref || !callback) {\n            return;\n        }\n        if (event.defaultPrevented) {\n            return;\n        }\n        event.preventDefault();\n        if (callback && closeOnEscapeKeyDown) {\n            callback(event);\n        }\n    }, [ref, callback, closeOnEscapeKeyDown]);\n    const handleKeyDown = useCallback((event) => {\n        if (event.key === EVENT_KEY && !closeOnEscapeKeyDown && isOpen) {\n            event.preventDefault();\n        }\n    }, [closeOnEscapeKeyDown, isOpen]);\n    useIsomorphicLayoutEffect(() => {\n        const node = ref === null || ref === void 0 ? void 0 : ref.current;\n        if (node) {\n            node.addEventListener(EVENT_CANCEL, handleCancel);\n            document.addEventListener(EVENT_KEYDOWN, handleKeyDown);\n            return () => {\n                node.removeEventListener(EVENT_CANCEL, handleCancel);\n                document.removeEventListener(EVENT_KEYDOWN, handleKeyDown);\n            };\n        }\n        return () => undefined;\n    }, [ref, handleCancel]);\n    return handleCancel;\n};\n//# sourceMappingURL=useCancelEvent.js.map","'use client';\nimport { useContext } from 'react';\nimport ClassNamePrefixContext from \"../context/ClassNamePrefixContext.js\";\nimport { applyClassNamePrefix } from \"../utils/classname.js\";\nexport const useClassNamePrefix = (className) => {\n    const classNamePrefix = useContext(ClassNamePrefixContext);\n    let prefixedClassName = className;\n    if (className && classNamePrefix) {\n        prefixedClassName = applyClassNamePrefix(classNamePrefix)(className);\n    }\n    else if (classNamePrefix) {\n        prefixedClassName = classNamePrefix;\n    }\n    return prefixedClassName;\n};\n//# sourceMappingURL=useClassNamePrefix.js.map","'use client';\nimport { useCallback } from 'react';\nexport const useClick = (isDisabled, onClick) => useCallback((event) => {\n    if (isDisabled) {\n        event.preventDefault();\n        return;\n    }\n    if (onClick) {\n        onClick(event);\n    }\n}, [isDisabled, onClick]);\n//# sourceMappingURL=useClick.js.map","'use client';\nimport { useCallback, useRef } from 'react';\nimport { useIsomorphicLayoutEffect } from \"./useIsomorphicLayoutEffect.js\";\nexport const useClickOutside = ({ ref, callback }) => {\n    const stateRef = useRef({\n        mouseDownTarget: null,\n    });\n    const clickHandler = useCallback((event) => {\n        const state = stateRef.current;\n        if (!ref ||\n            !callback ||\n            event.defaultPrevented ||\n            (ref.current && ref.current.contains(state.mouseDownTarget))) {\n            return;\n        }\n        if (ref.current &&\n            !ref.current.contains(event === null || event === void 0 ? void 0 : event.target) &&\n            callback) {\n            callback(event);\n        }\n    }, [ref, callback]);\n    const onMouseDown = (event) => {\n        stateRef.current.mouseDownTarget = event.target;\n    };\n    useIsomorphicLayoutEffect(() => {\n        document.addEventListener('mousedown', onMouseDown, { capture: true });\n        document.addEventListener('click', clickHandler, { capture: true });\n        return () => {\n            document.removeEventListener('mousedown', onMouseDown, { capture: true });\n            document.removeEventListener('click', clickHandler, { capture: true });\n        };\n    }, [clickHandler]);\n};\n//# sourceMappingURL=useClickOutside.js.map","'use client';\nimport { useEffect } from 'react';\nimport { warning } from \"../common/utilities/index.js\";\nexport const useDeprecationMessage = ({ method = 'component', trigger, componentName, componentProps, propertyProps, customText, }) => {\n    let message;\n    let hasProps;\n    const messageBase = `Deprecation warning (${componentName}):`;\n    useEffect(() => {\n        const isExecutable = trigger && componentName && process.env.NODE_ENV === 'development';\n        switch (method) {\n            case 'property':\n                if (propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.delete) {\n                    message = `${messageBase} \"${propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.deprecatedName}\" property will be deleted in the next major version.`;\n                }\n                else if ((propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.deprecatedValue) && (propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.newValue) && (propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.propertyName)) {\n                    message = `${messageBase} The \"${propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.deprecatedValue}\" value for \"${propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.propertyName}\" property will be renamed to \"${propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.newValue}\" in the next major version.`;\n                }\n                else {\n                    message = `${messageBase} \"${propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.deprecatedName}\" property will be replaced in the next major version. Please use \"${propertyProps === null || propertyProps === void 0 ? void 0 : propertyProps.newName}\" instead. ♻️️`;\n                }\n                hasProps = !!propertyProps;\n                break;\n            case 'custom':\n                message = `${messageBase} ${customText}`;\n                hasProps = true;\n                break;\n            case 'component':\n            default:\n                if (componentProps === null || componentProps === void 0 ? void 0 : componentProps.delete) {\n                    message = `${messageBase} The component and its subcomponents will be deleted in the next major version.`;\n                }\n                else {\n                    message = `${messageBase} The component and its subcomponents will be renamed to \"${componentProps === null || componentProps === void 0 ? void 0 : componentProps.newName}\" in the next major version.`;\n                }\n                hasProps = !!componentProps;\n                break;\n        }\n        if (message && isExecutable && hasProps) {\n            warning(false, message);\n        }\n    }, []);\n};\n//# sourceMappingURL=useDeprecationMessage.js.map","'use client';\nimport { createContext } from 'react';\nconst defaultContext = undefined;\nconst IconsContext = createContext(defaultContext);\nconst IconsProvider = IconsContext.Provider;\nconst IconsConsumer = IconsContext.Consumer;\nexport default IconsContext;\nexport { IconsConsumer, IconsProvider };\n//# sourceMappingURL=IconsContext.js.map","'use client';\nimport { useContext } from 'react';\nimport warning from \"../common/utilities/warning.js\";\nimport IconsContext from \"../context/IconsContext.js\";\nexport const useIcon = (name) => {\n    const icons = useContext(IconsContext);\n    if (icons != null && icons[name] != null) {\n        return icons[name];\n    }\n    warning(false, `The ${name} icon is missing from your assets or icon map provided by the IconsProvider. Please make sure you have provided all icons needed by used components.`);\n    return '';\n};\n//# sourceMappingURL=useIcon.js.map","'use client';\nimport { useEffect, useRef } from 'react';\nexport const useLastActiveFocus = (isOpen) => {\n    const lastActiveElement = useRef(null);\n    useEffect(() => {\n        if (isOpen) {\n            lastActiveElement.current = document.activeElement;\n        }\n        else if (lastActiveElement === null || lastActiveElement === void 0 ? void 0 : lastActiveElement.current) {\n            lastActiveElement.current.focus();\n        }\n    }, [isOpen]);\n};\n//# sourceMappingURL=useLastActiveFocus.js.map","'use client';\nimport { useEffect } from 'react';\nconst CLASSNAME_SCROLLING_DISABLED = 'is-scrolling-disabled';\nconst disableScroll = () => {\n    const { body } = document;\n    const scrollBarWidth = window.innerWidth - body.clientWidth;\n    body.style.paddingRight = `${scrollBarWidth}px`;\n    body.classList.add(CLASSNAME_SCROLLING_DISABLED);\n};\nconst enableScroll = () => {\n    const { body } = document;\n    body.style.paddingRight = '';\n    body.classList.remove(CLASSNAME_SCROLLING_DISABLED);\n};\nexport const useScrollControl = (ref, isOpen) => {\n    useEffect(() => {\n        if (isOpen) {\n            disableScroll();\n        }\n        else if (ref.current && !ref.current.open) {\n            enableScroll();\n        }\n        return () => {\n            enableScroll();\n        };\n    }, [isOpen, ref]);\n};\n//# sourceMappingURL=useScrollControl.js.map","'use client';\nimport { useCallback, useEffect } from 'react';\nimport { CLASS_NAME_OPEN } from \"../../constants/index.js\";\nimport { useScrollControl } from \"../../hooks/index.js\";\nexport const useDialog = (ref, isOpen) => {\n    const handleTransitionEnd = useCallback((event) => {\n        const dialogNode = ref === null || ref === void 0 ? void 0 : ref.current;\n        if (dialogNode && event.target === dialogNode && !isOpen && dialogNode.open && dialogNode.close) {\n            dialogNode.close();\n        }\n    }, [isOpen, ref]);\n    useScrollControl(ref, isOpen);\n    const setOpenClass = useCallback((shouldAdd) => {\n        const dialogNode = ref === null || ref === void 0 ? void 0 : ref.current;\n        if (dialogNode === null || dialogNode === void 0 ? void 0 : dialogNode.classList) {\n            if (shouldAdd) {\n                dialogNode.classList.add(CLASS_NAME_OPEN);\n            }\n            else {\n                dialogNode.classList.remove(CLASS_NAME_OPEN);\n            }\n        }\n    }, [ref]);\n    useEffect(() => {\n        const dialogNode = ref === null || ref === void 0 ? void 0 : ref.current;\n        if (dialogNode) {\n            if (isOpen && !dialogNode.open && dialogNode.showModal) {\n                dialogNode.showModal();\n                setOpenClass(true);\n            }\n            else if (!isOpen && dialogNode.open) {\n                setOpenClass(false);\n            }\n        }\n    }, [isOpen, ref, setOpenClass]);\n    const openDialog = () => {\n        if ((ref === null || ref === void 0 ? void 0 : ref.current) && !ref.current.open) {\n            ref.current.showModal();\n            setOpenClass(true);\n        }\n    };\n    const closeDialog = () => {\n        const dialogNode = ref === null || ref === void 0 ? void 0 : ref.current;\n        if (dialogNode && dialogNode.open) {\n            setOpenClass(false);\n        }\n    };\n    return {\n        openDialog,\n        closeDialog,\n        onTransitionEnd: handleTransitionEnd,\n    };\n};\n//# sourceMappingURL=useDialog.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport React, { Children, cloneElement, forwardRef, useRef, } from 'react';\nimport { useCancelEvent, useClickOutside } from \"../../hooks/index.js\";\nimport { useDialog } from \"./useDialog.js\";\nconst Dialog = (props, ref) => {\n    const { children, isOpen, onClose, closeOnBackdropClick = true, closeOnEscapeKeyDown } = props, restProps = __rest(props, [\"children\", \"isOpen\", \"onClose\", \"closeOnBackdropClick\", \"closeOnEscapeKeyDown\"]);\n    const dialogElementRef = useRef(ref);\n    const contentElementRef = useRef(null);\n    const { closeDialog, onTransitionEnd } = useDialog(dialogElementRef, isOpen);\n    const handleClickOutside = (event) => {\n        if (closeOnBackdropClick && event.target === dialogElementRef.current) {\n            closeDialog();\n            onClose(event);\n        }\n    };\n    useClickOutside({\n        ref: contentElementRef,\n        callback: isOpen ? handleClickOutside : undefined,\n    });\n    useCancelEvent(dialogElementRef, onClose, closeOnEscapeKeyDown, isOpen);\n    const child = Children.only(children);\n    return (React.createElement(\"dialog\", Object.assign({ ref: dialogElementRef, onTransitionEnd: onTransitionEnd }, restProps), cloneElement(child, {\n        ref: (clonedElementRef) => {\n            contentElementRef.current = clonedElementRef;\n        },\n    })));\n};\nDialog.spiritComponent = 'Dialog';\nexport default forwardRef(Dialog);\n//# sourceMappingURL=Dialog.js.map","import { AlignmentX } from \"../../constants/index.js\";\nexport const DRAWER_CLOSE_BUTTON_LABEL_DEFAULT = 'Close';\nexport const DRAWER_ALIGNMENT_DEFAULT = AlignmentX.RIGHT;\n//# sourceMappingURL=constants.js.map","'use client';\nimport { createContext, useContext } from 'react';\nconst defaultContext = {\n    id: '',\n    isOpen: false,\n    onClose: () => null,\n};\nconst DrawerContext = createContext(defaultContext);\nconst DrawerProvider = DrawerContext.Provider;\nconst DrawerConsumer = DrawerContext.Consumer;\nconst useDrawerContext = () => useContext(DrawerContext);\nexport default DrawerContext;\nexport { DrawerProvider, DrawerConsumer, useDrawerContext };\n//# sourceMappingURL=DrawerContext.js.map","import classNames from 'classnames';\nimport { CLASS_NAME_OPEN } from \"../../constants/index.js\";\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nimport { DRAWER_ALIGNMENT_DEFAULT } from \"./constants.js\";\nexport const useDrawerStyleProps = (props = {}) => {\n    const { drawerAlignmentX = DRAWER_ALIGNMENT_DEFAULT, isOpen = false } = props;\n    const drawerClass = useClassNamePrefix('Drawer');\n    const drawerAlignXClasses = {\n        left: `${drawerClass}--left`,\n        right: `${drawerClass}--right`,\n    };\n    const drawerPanelClass = `${drawerClass}Panel`;\n    const drawerContentClass = `${drawerPanelClass}__content`;\n    const drawerCloseButtonClass = `${drawerClass}CloseButton`;\n    const classProps = {\n        root: classNames(drawerClass, drawerAlignXClasses[drawerAlignmentX], {\n            [CLASS_NAME_OPEN]: isOpen,\n        }),\n        panel: drawerPanelClass,\n        content: drawerContentClass,\n        closeButton: drawerCloseButtonClass,\n    };\n    return {\n        classProps,\n    };\n};\n//# sourceMappingURL=useDrawerStyleProps.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport classNames from 'classnames';\nimport React from 'react';\nimport { useLastActiveFocus, useStyleProps } from \"../../hooks/index.js\";\nimport { Dialog } from \"../Dialog/index.js\";\nimport { DRAWER_ALIGNMENT_DEFAULT } from \"./constants.js\";\nimport { DrawerProvider } from \"./DrawerContext.js\";\nimport { useDrawerStyleProps } from \"./useDrawerStyleProps.js\";\nconst Drawer = (props) => {\n    const { children, alignmentX = DRAWER_ALIGNMENT_DEFAULT, isOpen, onClose, id } = props, restProps = __rest(props, [\"children\", \"alignmentX\", \"isOpen\", \"onClose\", \"id\"]);\n    const { classProps } = useDrawerStyleProps({ drawerAlignmentX: alignmentX });\n    const { styleProps, props: otherProps } = useStyleProps(restProps);\n    const contextValue = {\n        id,\n        isOpen,\n        onClose,\n    };\n    useLastActiveFocus(isOpen);\n    return (React.createElement(DrawerProvider, { value: contextValue },\n        React.createElement(Dialog, Object.assign({}, otherProps, styleProps, { id: id, isOpen: isOpen, onClose: onClose, className: classNames(classProps.root, styleProps.className) }), children)));\n};\nDrawer.spiritComponent = 'Drawer';\nexport default Drawer;\n//# sourceMappingURL=Drawer.js.map","import { useClick } from \"../../hooks/index.js\";\nexport const useButtonProps = (props) => {\n    const { isDisabled, isLoading, onClick, type = 'button' } = props;\n    const handleClick = useClick(isDisabled, onClick);\n    const additionalProps = {\n        type,\n        disabled: isDisabled || isLoading,\n    };\n    return {\n        buttonProps: Object.assign(Object.assign({}, additionalProps), { onClick: handleClick }),\n    };\n};\n//# sourceMappingURL=useButtonProps.js.map","var __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport classNames from 'classnames';\nimport { warning } from \"../../common/utilities/index.js\";\nimport { useClassNamePrefix, useDeprecationMessage } from \"../../hooks/index.js\";\nimport { applyColor, applySize } from \"../../utils/classname.js\";\nimport { compose } from \"../../utils/compose.js\";\nconst getButtonColorClassname = (className, color) => compose(applyColor(color))(className);\nconst getButtonSizeClassname = (className, size) => compose(applySize(size))(className);\nexport function useButtonStyleProps(props) {\n    const { color, isBlock, isDisabled, isLoading, isSymmetrical, size } = props, restProps = __rest(props, [\"color\", \"isBlock\", \"isDisabled\", \"isLoading\", \"isSymmetrical\", \"size\"]);\n    useDeprecationMessage({\n        method: 'custom',\n        trigger: !!isBlock,\n        componentName: 'Button',\n        customText: \"The `isBlock` property will be deleted in the next major release. Please read component's documentation for more information.\",\n    });\n    const buttonClass = useClassNamePrefix('Button');\n    const buttonBlockClass = `${buttonClass}--block`;\n    const buttonDisabledClass = `${buttonClass}--disabled`;\n    const buttonLoadingClass = `${buttonClass}--loading`;\n    const buttonSymmetricalClass = `${buttonClass}--symmetrical`;\n    if (isBlock && isSymmetrical) {\n        warning(false, 'isBlock and isSymmetrical props are mutually exclusive');\n    }\n    const classProps = classNames(buttonClass, getButtonColorClassname(buttonClass, color), getButtonSizeClassname(buttonClass, size), {\n        [buttonBlockClass]: isBlock && !isSymmetrical,\n        [buttonDisabledClass]: isDisabled || isLoading,\n        [buttonLoadingClass]: isLoading,\n        [buttonSymmetricalClass]: isSymmetrical && !isBlock,\n    });\n    return {\n        classProps,\n        props: restProps,\n    };\n}\n//# sourceMappingURL=useButtonStyleProps.js.map","'use client';\nimport { createContext, useContext } from 'react';\nconst PropsContext = createContext(null);\nconst PropsProvider = PropsContext.Provider;\nconst PropsConsumer = PropsContext.Consumer;\nconst usePropsContext = (props = {}) => {\n    const context = useContext(PropsContext);\n    return context ? Object.assign(Object.assign({}, props), context) : props;\n};\nexport default PropsContext;\nexport { PropsConsumer, PropsProvider, usePropsContext };\n//# sourceMappingURL=PropsContext.js.map","export const DEFAULT_BOX_SIZE = 24;\n//# sourceMappingURL=constants.js.map","import { DEFAULT_BOX_SIZE } from \"./constants.js\";\nexport const useIconBoxSize = (boxSize) => { var _a; return typeof boxSize === 'object' ? ((_a = boxSize.mobile) !== null && _a !== void 0 ? _a : DEFAULT_BOX_SIZE) : (boxSize !== null && boxSize !== void 0 ? boxSize : DEFAULT_BOX_SIZE); };\n//# sourceMappingURL=useIconBoxSize.js.map","var __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport { cssVariablePrefix } from '@lmc-eu/spirit-design-tokens';\nimport classNames from 'classnames';\nimport { TextColors } from \"../../constants/index.js\";\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nconst setCustomDimension = (prefix, size) => {\n    const style = {};\n    if (typeof size === 'object') {\n        Object.entries(size).forEach(([breakpoint, breakpointSize]) => {\n            const breakpointSuffix = breakpoint === 'mobile' ? '' : `-${breakpoint}`;\n            style[`${prefix}${breakpointSuffix}`] = `${breakpointSize === null || breakpointSize === void 0 ? void 0 : breakpointSize.toString()}px`;\n        });\n    }\n    return style;\n};\nexport const useIconStyleProps = (props) => {\n    const { boxSize, color, name } = props, otherProps = __rest(props, [\"boxSize\", \"color\", \"name\"]);\n    const stylePrefix = `--${cssVariablePrefix}icon`;\n    const isDualtoneIcon = String(name).includes('-dualtone');\n    const dualtoneColorWithDefault = isDualtoneIcon && !color ? TextColors.PRIMARY : color;\n    const iconClass = useClassNamePrefix('Icon');\n    const iconDualtoneColorClass = `${iconClass}--${dualtoneColorWithDefault}`;\n    const classProps = classNames(iconClass, {\n        [iconDualtoneColorClass]: color || dualtoneColorWithDefault,\n    });\n    const customizedIconStyle = Object.assign({}, (boxSize ? setCustomDimension(`${stylePrefix}-size`, boxSize) : {}));\n    return {\n        classProps,\n        iconStyleProps: customizedIconStyle,\n        props: otherProps,\n    };\n};\n//# sourceMappingURL=useIconStyleProps.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport React, { forwardRef } from 'react';\nimport { useIcon, useStyleProps } from \"../../hooks/index.js\";\nimport { htmlReactParser, mergeStyleProps } from \"../../utils/index.js\";\nimport { DEFAULT_BOX_SIZE } from \"./constants.js\";\nimport { useIconBoxSize } from \"./useIconBoxSize.js\";\nimport { useIconStyleProps } from \"./useIconStyleProps.js\";\nconst defaultProps = {\n    ariaHidden: true,\n    boxSize: DEFAULT_BOX_SIZE,\n};\nconst _Icon = (props, ref) => {\n    const propsWithDefaults = Object.assign(Object.assign({}, defaultProps), props);\n    const { boxSize, name, title, ariaHidden } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"boxSize\", \"name\", \"title\", \"ariaHidden\"]);\n    let icon = useIcon(name);\n    const iconSize = useIconBoxSize(boxSize);\n    const { classProps, iconStyleProps, props: modifiedProps } = useIconStyleProps(Object.assign({ boxSize, name }, restProps));\n    const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n    const mergedStyleProps = mergeStyleProps('svg', {\n        classProps,\n        iconStyleProps,\n        styleProps,\n    });\n    if (title) {\n        icon = `<title>${title}</title>${icon}`;\n    }\n    return (React.createElement(\"svg\", Object.assign({}, otherProps, mergedStyleProps, { viewBox: \"0 0 24 24\", fill: \"none\", width: iconSize, height: iconSize, \"aria-hidden\": ariaHidden, ref: ref }), htmlReactParser(icon)));\n};\nconst Icon = forwardRef(_Icon);\nIcon.spiritComponent = 'Icon';\nexport default Icon;\n//# sourceMappingURL=Icon.js.map","var __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport classNames from 'classnames';\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nexport function useSpinnerStyleProps(props) {\n    const { color } = props, restProps = __rest(props, [\"color\"]);\n    const spinnerClass = useClassNamePrefix('text');\n    const spinnerColorClass = color ? `${spinnerClass}-${color}` : '';\n    const spinnerAnimation = useClassNamePrefix('animation-spin-clockwise');\n    const className = classNames(spinnerColorClass, spinnerAnimation);\n    return {\n        classProps: className,\n        props: restProps,\n    };\n}\n//# sourceMappingURL=useSpinnerStyleProps.js.map","'use client';\nimport classNames from 'classnames';\nimport React from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { Icon } from \"../Icon/index.js\";\nimport { useSpinnerStyleProps } from \"./useSpinnerStyleProps.js\";\nconst Spinner = (props) => {\n    const { classProps, props: modifiedProps } = useSpinnerStyleProps(props);\n    const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n    return (React.createElement(Icon, Object.assign({}, otherProps, { name: \"spinner\", UNSAFE_className: classNames(classProps, styleProps.className), UNSAFE_style: styleProps.style })));\n};\nSpinner.spiritComponent = 'Spinner';\nexport default Spinner;\n//# sourceMappingURL=Spinner.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport React, { forwardRef } from 'react';\nimport { usePropsContext } from \"../../context/index.js\";\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nimport { Spinner } from \"../Spinner/index.js\";\nimport { useButtonProps } from \"./useButtonProps.js\";\nimport { useButtonStyleProps } from \"./useButtonStyleProps.js\";\nconst defaultProps = {\n    color: 'primary',\n    isBlock: false,\n    isDisabled: false,\n    isLoading: false,\n    isSymmetrical: false,\n    size: 'medium',\n    type: 'button',\n    elementType: 'button',\n};\nconst _Button = (props, ref) => {\n    const propsWithContext = usePropsContext();\n    const propsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaultProps), props), propsWithContext);\n    const { elementType: ElementTag = defaultProps.elementType, children } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"elementType\", \"children\"]);\n    const { buttonProps } = useButtonProps(restProps);\n    const { classProps, props: modifiedProps } = useButtonStyleProps(restProps);\n    const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n    const mergedStyleProps = mergeStyleProps(ElementTag, { classProps, styleProps, otherProps });\n    return (React.createElement(ElementTag, Object.assign({}, otherProps, buttonProps, { ref: ref }, mergedStyleProps),\n        children,\n        restProps.isLoading && React.createElement(Spinner, null)));\n};\nconst Button = forwardRef(_Button);\nButton.spiritComponent = 'Button';\nexport default Button;\n//# sourceMappingURL=Button.js.map","import { useClick } from \"../../hooks/index.js\";\nexport const useButtonLinkProps = (props) => {\n    const { elementType, isDisabled, isLoading, onClick, href, target, rel } = props;\n    const handleClick = useClick(isDisabled, onClick);\n    const additionalProps = {\n        role: 'button',\n        href: elementType === 'a' && isDisabled ? undefined : href,\n        target: elementType === 'a' ? target : undefined,\n        disabled: isDisabled || isLoading,\n        rel: elementType === 'a' ? rel : undefined,\n    };\n    return {\n        buttonLinkProps: Object.assign(Object.assign({}, additionalProps), { onClick: handleClick }),\n    };\n};\n//# sourceMappingURL=useButtonLinkProps.js.map","var __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport classNames from 'classnames';\nimport { warning } from \"../../common/utilities/index.js\";\nimport { useClassNamePrefix, useDeprecationMessage } from \"../../hooks/index.js\";\nimport { applyColor, applySize } from \"../../utils/classname.js\";\nimport { compose } from \"../../utils/compose.js\";\nconst getButtonLinkColorClassname = (className, color) => compose(applyColor(color))(className);\nconst getButtonLinkSizeClassname = (className, size) => compose(applySize(size))(className);\nexport function useButtonLinkStyleProps(props) {\n    const { color, isBlock, isDisabled, isLoading, isSymmetrical, size } = props, restProps = __rest(props, [\"color\", \"isBlock\", \"isDisabled\", \"isLoading\", \"isSymmetrical\", \"size\"]);\n    useDeprecationMessage({\n        method: 'custom',\n        trigger: !!isBlock,\n        componentName: 'ButtonLink',\n        customText: \"The `isBlock` property will be deleted in the next major release. Please read component's documentation for more information.\",\n    });\n    const buttonClass = useClassNamePrefix('Button');\n    const buttonBlockClass = `${buttonClass}--block`;\n    const buttonDisabledClass = `${buttonClass}--disabled`;\n    const buttonLoadingClass = `${buttonClass}--loading`;\n    const buttonSymmetricalClass = `${buttonClass}--symmetrical`;\n    if (isBlock && isSymmetrical) {\n        warning(false, 'isBlock and isSymmetrical props are mutually exclusive');\n    }\n    const classProps = classNames(buttonClass, getButtonLinkColorClassname(buttonClass, color), getButtonLinkSizeClassname(buttonClass, size), {\n        [buttonBlockClass]: isBlock && !isSymmetrical,\n        [buttonDisabledClass]: isDisabled || isLoading,\n        [buttonLoadingClass]: isLoading,\n        [buttonSymmetricalClass]: isSymmetrical && !isBlock,\n    });\n    return {\n        classProps,\n        props: restProps,\n    };\n}\n//# sourceMappingURL=useButtonLinkStyleProps.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport React, { forwardRef } from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nimport { Spinner } from \"../Spinner/index.js\";\nimport { useButtonLinkProps } from \"./useButtonLinkProps.js\";\nimport { useButtonLinkStyleProps } from \"./useButtonLinkStyleProps.js\";\nconst defaultProps = {\n    color: 'primary',\n    elementType: 'a',\n    isBlock: false,\n    isDisabled: false,\n    isLoading: false,\n    isSymmetrical: false,\n    size: 'medium',\n};\nconst _ButtonLink = (props, ref) => {\n    const propsWithDefaults = Object.assign(Object.assign({}, defaultProps), props);\n    const { elementType: ElementTag = defaultProps.elementType, children } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"elementType\", \"children\"]);\n    const { buttonLinkProps } = useButtonLinkProps(propsWithDefaults);\n    const { classProps, props: modifiedProps } = useButtonLinkStyleProps(restProps);\n    const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n    const mergedStyleProps = mergeStyleProps(ElementTag, { classProps, styleProps, otherProps });\n    return (React.createElement(ElementTag, Object.assign({}, otherProps, buttonLinkProps, mergedStyleProps, { ref: ref }),\n        children,\n        restProps.isLoading && React.createElement(Spinner, null)));\n};\nconst ButtonLink = forwardRef(_ButtonLink);\nButtonLink.spiritComponent = 'ButtonLink';\nexport default ButtonLink;\n//# sourceMappingURL=ButtonLink.js.map","var __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nexport function useVisuallyHiddenProps(props) {\n    const restProps = __rest(props, []);\n    const visuallyHiddenClass = useClassNamePrefix('accessibility-hidden');\n    return {\n        classProps: visuallyHiddenClass,\n        props: restProps,\n    };\n}\n//# sourceMappingURL=useVisuallyHiddenProps.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport React from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nimport { useVisuallyHiddenProps } from \"./useVisuallyHiddenProps.js\";\nconst VisuallyHidden = (props) => {\n    const { children, elementType: ElementTag = 'span' } = props, rest = __rest(props, [\"children\", \"elementType\"]);\n    const { classProps, props: modifiedProps } = useVisuallyHiddenProps(rest);\n    const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n    const mergedStyleProps = mergeStyleProps(ElementTag, { classProps, styleProps, otherProps });\n    return (React.createElement(ElementTag, Object.assign({}, otherProps, mergedStyleProps), children));\n};\nVisuallyHidden.spiritComponent = 'VisuallyHidden';\nexport default VisuallyHidden;\n//# sourceMappingURL=VisuallyHidden.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport classNames from 'classnames';\nimport React from 'react';\nimport { ComponentButtonColors, Sizes } from \"../../constants/index.js\";\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { Button } from \"../Button/index.js\";\nimport { Icon } from \"../Icon/index.js\";\nimport { DEFAULT_BOX_SIZE } from \"../Icon/constants.js\";\nimport { VisuallyHidden } from \"../VisuallyHidden/index.js\";\nimport { DRAWER_CLOSE_BUTTON_LABEL_DEFAULT } from \"./constants.js\";\nimport { useDrawerContext } from \"./DrawerContext.js\";\nimport { useDrawerStyleProps } from \"./useDrawerStyleProps.js\";\nconst defaultProps = {\n    color: ComponentButtonColors.TERTIARY,\n    iconBoxSize: DEFAULT_BOX_SIZE,\n    label: DRAWER_CLOSE_BUTTON_LABEL_DEFAULT,\n    size: Sizes.MEDIUM,\n};\nconst DrawerCloseButton = (props) => {\n    const propsWithDefaults = Object.assign(Object.assign({}, defaultProps), props);\n    const { color, iconBoxSize, label, size } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"color\", \"iconBoxSize\", \"label\", \"size\"]);\n    const { id, isOpen, onClose } = useDrawerContext();\n    const { classProps } = useDrawerStyleProps();\n    const { styleProps, props: otherProps } = useStyleProps(restProps);\n    return (React.createElement(Button, Object.assign({}, otherProps, { \"aria-expanded\": isOpen, \"aria-controls\": id, onClick: onClose, color: color, size: size, UNSAFE_className: classNames(classProps.closeButton, styleProps.className), UNSAFE_style: styleProps.style, isSymmetrical: true }),\n        React.createElement(Icon, { name: \"close\", boxSize: iconBoxSize }),\n        React.createElement(VisuallyHidden, null, label)));\n};\nDrawerCloseButton.spiritComponent = 'DrawerCloseButton';\nexport default DrawerCloseButton;\n//# sourceMappingURL=DrawerCloseButton.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n    var t = {};\n    for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n        t[p] = s[p];\n    if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n        for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n            if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n                t[p[i]] = s[p[i]];\n        }\n    return t;\n};\nimport React, { forwardRef } from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nimport { useDrawerStyleProps } from \"./useDrawerStyleProps.js\";\nconst _DrawerPanel = (props, ref) => {\n    const { elementType: ElementTag = 'div', children } = props, restProps = __rest(props, [\"elementType\", \"children\"]);\n    const { classProps } = useDrawerStyleProps(restProps);\n    const { styleProps, props: otherProps } = useStyleProps(restProps);\n    const mergedStyleProps = mergeStyleProps(ElementTag, { classProps: classProps.panel, styleProps, otherProps });\n    return (React.createElement(ElementTag, Object.assign({}, otherProps, mergedStyleProps, { ref: ref }),\n        React.createElement(\"div\", { className: classProps.content }, children)));\n};\nconst DrawerPanel = forwardRef(_DrawerPanel);\nDrawerPanel.spiritComponent = 'DrawerPanel';\nexport default DrawerPanel;\n//# sourceMappingURL=DrawerPanel.js.map"],"names":["__rest","this","componentColors","emotionColors","textColors","containers","defaultContext","createContext","DefaultSpacingStyleProp","useContext","useLayoutEffect","useEffect","useCallback","useRef","Children","cloneElement","forwardRef","Dialog","cssVariablePrefix","defaultProps"],"mappings":"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"}