{"version":3,"file":"index-CLh2_tXw.js","sources":["../../Client/node_modules/@react-stately/form/dist/useFormValidationState.mjs","../../Client/node_modules/@react-aria/label/dist/useLabel.mjs","../../Client/node_modules/react-aria-components/dist/Form.mjs","../../Client/node_modules/react-aria-components/dist/TextArea.mjs","../../Client/node_modules/@mui/icons-material/PriorityHighOutlined.js","../../Client/webkit/internal/wrapper/index.tsx"],"sourcesContent":["import {createContext as $69F46$createContext, useMemo as $69F46$useMemo, useContext as $69F46$useContext, useState as $69F46$useState, useRef as $69F46$useRef, useEffect as $69F46$useEffect} from \"react\";\n\n/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nconst $e5be200c675c3b3a$export$aca958c65c314e6c = {\n badInput: false,\n customError: false,\n patternMismatch: false,\n rangeOverflow: false,\n rangeUnderflow: false,\n stepMismatch: false,\n tooLong: false,\n tooShort: false,\n typeMismatch: false,\n valueMissing: false,\n valid: true\n};\nconst $e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE = {\n ...$e5be200c675c3b3a$export$aca958c65c314e6c,\n customError: true,\n valid: false\n};\nconst $e5be200c675c3b3a$export$dad6ae84456c676a = {\n isInvalid: false,\n validationDetails: $e5be200c675c3b3a$export$aca958c65c314e6c,\n validationErrors: []\n};\nconst $e5be200c675c3b3a$export$571b5131b7e65c11 = (0, $69F46$createContext)({});\nconst $e5be200c675c3b3a$export$a763b9476acd3eb = '__formValidationState' + Date.now();\nfunction $e5be200c675c3b3a$export$fc1a364ae1f3ff10(props) {\n // Private prop for parent components to pass state to children.\n if (props[$e5be200c675c3b3a$export$a763b9476acd3eb]) {\n let { realtimeValidation: realtimeValidation, displayValidation: displayValidation, updateValidation: updateValidation, resetValidation: resetValidation, commitValidation: commitValidation } = props[$e5be200c675c3b3a$export$a763b9476acd3eb];\n return {\n realtimeValidation: realtimeValidation,\n displayValidation: displayValidation,\n updateValidation: updateValidation,\n resetValidation: resetValidation,\n commitValidation: commitValidation\n };\n }\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return $e5be200c675c3b3a$var$useFormValidationStateImpl(props);\n}\nfunction $e5be200c675c3b3a$var$useFormValidationStateImpl(props) {\n let { isInvalid: isInvalid, validationState: validationState, name: name, value: value, builtinValidation: builtinValidation, validate: validate, validationBehavior: validationBehavior = 'aria' } = props;\n // backward compatibility.\n if (validationState) isInvalid || (isInvalid = validationState === 'invalid');\n // If the isInvalid prop is controlled, update validation result in realtime.\n let controlledError = isInvalid !== undefined ? {\n isInvalid: isInvalid,\n validationErrors: [],\n validationDetails: $e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE\n } : null;\n // Perform custom client side validation.\n let clientError = (0, $69F46$useMemo)(()=>$e5be200c675c3b3a$var$getValidationResult($e5be200c675c3b3a$var$runValidate(validate, value)), [\n validate,\n value\n ]);\n if (builtinValidation === null || builtinValidation === void 0 ? void 0 : builtinValidation.validationDetails.valid) builtinValidation = null;\n // Get relevant server errors from the form.\n let serverErrors = (0, $69F46$useContext)($e5be200c675c3b3a$export$571b5131b7e65c11);\n let serverErrorMessages = (0, $69F46$useMemo)(()=>{\n if (name) return Array.isArray(name) ? name.flatMap((name)=>$e5be200c675c3b3a$var$asArray(serverErrors[name])) : $e5be200c675c3b3a$var$asArray(serverErrors[name]);\n return [];\n }, [\n serverErrors,\n name\n ]);\n // Show server errors when the form gets a new value, and clear when the user changes the value.\n let [lastServerErrors, setLastServerErrors] = (0, $69F46$useState)(serverErrors);\n let [isServerErrorCleared, setServerErrorCleared] = (0, $69F46$useState)(false);\n if (serverErrors !== lastServerErrors) {\n setLastServerErrors(serverErrors);\n setServerErrorCleared(false);\n }\n let serverError = (0, $69F46$useMemo)(()=>$e5be200c675c3b3a$var$getValidationResult(isServerErrorCleared ? [] : serverErrorMessages), [\n isServerErrorCleared,\n serverErrorMessages\n ]);\n // Track the next validation state in a ref until commitValidation is called.\n let nextValidation = (0, $69F46$useRef)($e5be200c675c3b3a$export$dad6ae84456c676a);\n let [currentValidity, setCurrentValidity] = (0, $69F46$useState)($e5be200c675c3b3a$export$dad6ae84456c676a);\n let lastError = (0, $69F46$useRef)($e5be200c675c3b3a$export$dad6ae84456c676a);\n let commitValidation = ()=>{\n if (!commitQueued) return;\n setCommitQueued(false);\n let error = clientError || builtinValidation || nextValidation.current;\n if (!$e5be200c675c3b3a$var$isEqualValidation(error, lastError.current)) {\n lastError.current = error;\n setCurrentValidity(error);\n }\n };\n let [commitQueued, setCommitQueued] = (0, $69F46$useState)(false);\n (0, $69F46$useEffect)(commitValidation);\n // realtimeValidation is used to update the native input element's state based on custom validation logic.\n // displayValidation is the currently displayed validation state that the user sees (e.g. on input change/form submit).\n // With validationBehavior=\"aria\", all errors are displayed in realtime rather than on submit.\n let realtimeValidation = controlledError || serverError || clientError || builtinValidation || $e5be200c675c3b3a$export$dad6ae84456c676a;\n let displayValidation = validationBehavior === 'native' ? controlledError || serverError || currentValidity : controlledError || serverError || clientError || builtinValidation || currentValidity;\n return {\n realtimeValidation: realtimeValidation,\n displayValidation: displayValidation,\n updateValidation (value) {\n // If validationBehavior is 'aria', update in realtime. Otherwise, store in a ref until commit.\n if (validationBehavior === 'aria' && !$e5be200c675c3b3a$var$isEqualValidation(currentValidity, value)) setCurrentValidity(value);\n else nextValidation.current = value;\n },\n resetValidation () {\n // Update the currently displayed validation state to valid on form reset,\n // even if the native validity says it isn't. It'll show again on the next form submit.\n let error = $e5be200c675c3b3a$export$dad6ae84456c676a;\n if (!$e5be200c675c3b3a$var$isEqualValidation(error, lastError.current)) {\n lastError.current = error;\n setCurrentValidity(error);\n }\n // Do not commit validation after the next render. This avoids a condition where\n // useSelect calls commitValidation inside an onReset handler.\n if (validationBehavior === 'native') setCommitQueued(false);\n setServerErrorCleared(true);\n },\n commitValidation () {\n // Commit validation state so the user sees it on blur/change/submit. Also clear any server errors.\n // Wait until after the next render to commit so that the latest value has been validated.\n if (validationBehavior === 'native') setCommitQueued(true);\n setServerErrorCleared(true);\n }\n };\n}\nfunction $e5be200c675c3b3a$var$asArray(v) {\n if (!v) return [];\n return Array.isArray(v) ? v : [\n v\n ];\n}\nfunction $e5be200c675c3b3a$var$runValidate(validate, value) {\n if (typeof validate === 'function') {\n let e = validate(value);\n if (e && typeof e !== 'boolean') return $e5be200c675c3b3a$var$asArray(e);\n }\n return [];\n}\nfunction $e5be200c675c3b3a$var$getValidationResult(errors) {\n return errors.length ? {\n isInvalid: true,\n validationErrors: errors,\n validationDetails: $e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE\n } : null;\n}\nfunction $e5be200c675c3b3a$var$isEqualValidation(a, b) {\n if (a === b) return true;\n return a && b && a.isInvalid === b.isInvalid && a.validationErrors.length === b.validationErrors.length && a.validationErrors.every((a, i)=>a === b.validationErrors[i]) && Object.entries(a.validationDetails).every(([k, v])=>b.validationDetails[k] === v);\n}\nfunction $e5be200c675c3b3a$export$75ee7c75d68f5b0e(...results) {\n let errors = new Set();\n let isInvalid = false;\n let validationDetails = {\n ...$e5be200c675c3b3a$export$aca958c65c314e6c\n };\n for (let v of results){\n var _validationDetails, _key;\n for (let e of v.validationErrors)errors.add(e);\n // Only these properties apply for checkboxes.\n isInvalid || (isInvalid = v.isInvalid);\n for(let key in validationDetails)(_validationDetails = validationDetails)[_key = key] || (_validationDetails[_key] = v.validationDetails[key]);\n }\n validationDetails.valid = !isInvalid;\n return {\n isInvalid: isInvalid,\n validationErrors: [\n ...errors\n ],\n validationDetails: validationDetails\n };\n}\n\n\nexport {$e5be200c675c3b3a$export$aca958c65c314e6c as VALID_VALIDITY_STATE, $e5be200c675c3b3a$export$dad6ae84456c676a as DEFAULT_VALIDATION_RESULT, $e5be200c675c3b3a$export$571b5131b7e65c11 as FormValidationContext, $e5be200c675c3b3a$export$a763b9476acd3eb as privateValidationStateProp, $e5be200c675c3b3a$export$fc1a364ae1f3ff10 as useFormValidationState, $e5be200c675c3b3a$export$75ee7c75d68f5b0e as mergeValidation};\n//# sourceMappingURL=useFormValidationState.module.js.map\n","import {useId as $83Elw$useId, useLabels as $83Elw$useLabels} from \"@react-aria/utils\";\n\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nfunction $d191a55c9702f145$export$8467354a121f1b9f(props) {\n let { id: id, label: label, 'aria-labelledby': ariaLabelledby, 'aria-label': ariaLabel, labelElementType: labelElementType = 'label' } = props;\n id = (0, $83Elw$useId)(id);\n let labelId = (0, $83Elw$useId)();\n let labelProps = {};\n if (label) {\n ariaLabelledby = ariaLabelledby ? `${labelId} ${ariaLabelledby}` : labelId;\n labelProps = {\n id: labelId,\n htmlFor: labelElementType === 'label' ? id : undefined\n };\n } else if (!ariaLabelledby && !ariaLabel) console.warn('If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility');\n let fieldProps = (0, $83Elw$useLabels)({\n id: id,\n 'aria-label': ariaLabel,\n 'aria-labelledby': ariaLabelledby\n });\n return {\n labelProps: labelProps,\n fieldProps: fieldProps\n };\n}\n\n\nexport {$d191a55c9702f145$export$8467354a121f1b9f as useLabel};\n//# sourceMappingURL=useLabel.module.js.map\n","import {useContextProps as $64fa3d84918910a7$export$29f1550f4b0d4415} from \"./utils.mjs\";\nimport {FormValidationContext as $j6ya4$FormValidationContext} from \"react-stately\";\nimport $j6ya4$react, {createContext as $j6ya4$createContext, forwardRef as $j6ya4$forwardRef} from \"react\";\n\n/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the 'License');\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \n\n\nconst $d3e0e05bdfcf66bd$export$c24727297075ec6a = /*#__PURE__*/ (0, $j6ya4$createContext)(null);\nfunction $d3e0e05bdfcf66bd$var$Form(props, ref) {\n [props, ref] = (0, $64fa3d84918910a7$export$29f1550f4b0d4415)(props, ref, $d3e0e05bdfcf66bd$export$c24727297075ec6a);\n let { validationErrors: validationErrors, validationBehavior: validationBehavior = 'native', children: children, className: className, ...domProps } = props;\n return /*#__PURE__*/ (0, $j6ya4$react).createElement(\"form\", {\n noValidate: validationBehavior !== 'native',\n ...domProps,\n ref: ref,\n className: className || 'react-aria-Form'\n }, /*#__PURE__*/ (0, $j6ya4$react).createElement($d3e0e05bdfcf66bd$export$c24727297075ec6a.Provider, {\n value: {\n ...props,\n validationBehavior: validationBehavior\n }\n }, /*#__PURE__*/ (0, $j6ya4$react).createElement((0, $j6ya4$FormValidationContext).Provider, {\n value: validationErrors !== null && validationErrors !== void 0 ? validationErrors : {}\n }, children)));\n}\n/**\n * A form is a group of inputs that allows users to submit data to a server,\n * with support for providing field validation errors.\n */ const $d3e0e05bdfcf66bd$export$a7fed597f4b8afd8 = /*#__PURE__*/ (0, $j6ya4$forwardRef)($d3e0e05bdfcf66bd$var$Form);\n\n\nexport {$d3e0e05bdfcf66bd$export$c24727297075ec6a as FormContext, $d3e0e05bdfcf66bd$export$a7fed597f4b8afd8 as Form};\n//# sourceMappingURL=Form.module.js.map\n","import {useContextProps as $64fa3d84918910a7$export$29f1550f4b0d4415, useRenderProps as $64fa3d84918910a7$export$4d86445c2cf5e3} from \"./utils.mjs\";\nimport {useHover as $9Usiy$useHover, useFocusRing as $9Usiy$useFocusRing, mergeProps as $9Usiy$mergeProps} from \"react-aria\";\nimport $9Usiy$react, {createContext as $9Usiy$createContext, forwardRef as $9Usiy$forwardRef} from \"react\";\n\n\n\n\nconst $216918bed6669f72$export$2dc6166a7e65358c = /*#__PURE__*/ (0, $9Usiy$createContext)({});\nlet $216918bed6669f72$var$filterHoverProps = (props)=>{\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n let { onHoverStart: onHoverStart, onHoverChange: onHoverChange, onHoverEnd: onHoverEnd, ...otherProps } = props;\n return otherProps;\n};\nfunction $216918bed6669f72$var$TextArea(props, ref) {\n [props, ref] = (0, $64fa3d84918910a7$export$29f1550f4b0d4415)(props, ref, $216918bed6669f72$export$2dc6166a7e65358c);\n let { hoverProps: hoverProps, isHovered: isHovered } = (0, $9Usiy$useHover)(props);\n let { isFocused: isFocused, isFocusVisible: isFocusVisible, focusProps: focusProps } = (0, $9Usiy$useFocusRing)({\n isTextInput: true,\n autoFocus: props.autoFocus\n });\n let isInvalid = !!props['aria-invalid'] && props['aria-invalid'] !== 'false';\n let renderProps = (0, $64fa3d84918910a7$export$4d86445c2cf5e3)({\n ...props,\n values: {\n isHovered: isHovered,\n isFocused: isFocused,\n isFocusVisible: isFocusVisible,\n isDisabled: props.disabled || false,\n isInvalid: isInvalid\n },\n defaultClassName: 'react-aria-TextArea'\n });\n return /*#__PURE__*/ (0, $9Usiy$react).createElement(\"textarea\", {\n ...(0, $9Usiy$mergeProps)($216918bed6669f72$var$filterHoverProps(props), focusProps, hoverProps),\n ...renderProps,\n ref: ref,\n \"data-focused\": isFocused || undefined,\n \"data-disabled\": props.disabled || undefined,\n \"data-hovered\": isHovered || undefined,\n \"data-focus-visible\": isFocusVisible || undefined,\n \"data-invalid\": isInvalid || undefined\n });\n}\n/**\n * A textarea allows a user to input mult-line text.\n */ const $216918bed6669f72$export$f5c9f3c2c4054eec = /*#__PURE__*/ (0, $9Usiy$forwardRef)($216918bed6669f72$var$TextArea);\n\n\nexport {$216918bed6669f72$export$2dc6166a7e65358c as TextAreaContext, $216918bed6669f72$export$f5c9f3c2c4054eec as TextArea};\n//# sourceMappingURL=TextArea.module.js.map\n","\"use strict\";\n\"use client\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _createSvgIcon = _interopRequireDefault(require(\"./utils/createSvgIcon\"));\nvar _jsxRuntime = require(\"react/jsx-runtime\");\nvar _default = exports.default = (0, _createSvgIcon.default)([/*#__PURE__*/(0, _jsxRuntime.jsx)(\"circle\", {\n cx: \"12\",\n cy: \"19\",\n r: \"2\"\n}, \"0\"), /*#__PURE__*/(0, _jsxRuntime.jsx)(\"path\", {\n d: \"M10 3h4v12h-4z\"\n}, \"1\")], 'PriorityHighOutlined');","import { Spinner } from '@webkit/components/spinner';\r\nimport { Tooltip } from '@webkit/components/tooltip';\r\nimport { DesignContext } from '@webkit/design/context';\r\nimport { PriorityHighIcon } from '@webkit/design/icons';\r\nimport { forwardRef, ReactNode, useContext } from 'react';\r\nimport {\r\n Button as AriaButton,\r\n Input as AriaInput,\r\n TextArea as AriaTextArea,\r\n ButtonProps,\r\n InputProps,\r\n TextAreaProps,\r\n} from 'react-aria-components';\r\nimport { tv } from 'tailwind-variants';\r\n\r\ntype Props = {\r\n // An optional icon to display to the right of the trigger's content.\r\n icon?: ReactNode;\r\n\r\n // An optional flag indicating that the provided icon should be a trigger for the component. Defaults to false.\r\n iconAsTrigger?: boolean;\r\n\r\n // An optional flag indicating whether the trigger component is disabled.\r\n isDisabled?: boolean;\r\n\r\n // An optional flag indicating whether the trigger is in a loading state.If true, a loading progress bar will be displayed at\r\n // the bottom of the trigger.\r\n isLoading?: boolean;\r\n\r\n // An optional flag indicating whether the underlying value is valid. If false, an error icon will be displayed.\r\n isValid: boolean;\r\n\r\n // An optional error message to display when the underlying value is invalid.\r\n error?: string | null;\r\n\r\n // Indicates that a prefix should be displayed before the input. Defaults to false.\r\n withPrefix?: boolean;\r\n};\r\n\r\nconst styles = {\r\n wrapper: tv({\r\n base: 'appearance-none [text-align:inherit] text-black w-full h-full rounded bg-white min-h-10 px-3 py-0 pt-[1px] relative cursor-text overflow-hidden outline-none font-sans tracking-[0.5px] transition-colors box-border placeholder-brand-gray-450 text-ellipsis [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none',\r\n variants: {\r\n isValid: {\r\n false: 'pr-8',\r\n true: 'pr-3',\r\n },\r\n isHovered: {\r\n true: '',\r\n },\r\n design: {\r\n standard:\r\n 'border border-solid border-brand-gray-350 min-h-10 rounded aria-expanded:border-brand-green-250 text-sm',\r\n landing:\r\n 'border border-solid border-brand-gray-350 min-h-12 rounded-[30px] aria-expanded:border-brand-gray-350 text-sm placeholder:italic',\r\n 'single-quote-element':\r\n 'border border-solid border-brand-purple-200 h-[42px] aria-expanded:border-brand-green-250 text-base',\r\n 'multi-quote-element':\r\n 'border-none min-h-[25px] aria-expanded:border-brand-green-250 text-base bg-transparent',\r\n },\r\n input: {\r\n text: '',\r\n button: 'cursor-pointer',\r\n },\r\n isFocused: {\r\n true: 'border-brand-green-250',\r\n },\r\n isDisabled: {\r\n true: 'cursor-not-allowed bg-brand-gray-200 text-brand-gray-450',\r\n },\r\n isMultiline: {\r\n true: 'py-3 h-auto',\r\n },\r\n withIcon: {\r\n true: 'pr-8',\r\n false: 'pr-3',\r\n },\r\n withPrefix: {\r\n true: 'pl-5',\r\n false: 'pl-3',\r\n },\r\n isLoading: {\r\n true: 'pr-9',\r\n false: 'pr-3',\r\n },\r\n },\r\n compoundVariants: [\r\n {\r\n withIcon: true,\r\n isValid: false,\r\n className: 'pr-16',\r\n },\r\n {\r\n withIcon: true,\r\n design: 'multi-quote-element',\r\n className: 'pr-3',\r\n },\r\n {\r\n isHovered: true,\r\n design: 'single-quote-element',\r\n input: 'text',\r\n className: 'border-brand-green-250',\r\n },\r\n {\r\n isFocused: true,\r\n design: 'landing',\r\n className: 'bg-brand-gray-200 border-brand-green-500',\r\n },\r\n {\r\n design: 'landing',\r\n className: 'pl-5',\r\n },\r\n {\r\n design: 'landing',\r\n withPrefix: true,\r\n className: 'pl-[32px]',\r\n },\r\n ],\r\n }),\r\n\r\n content: tv({\r\n base: 'relative overflow-hidden w-full h-full',\r\n variants: {\r\n design: {\r\n standard: '',\r\n landing: 'rounded-[30px] h-12',\r\n 'single-quote-element': '',\r\n 'multi-quote-element': '',\r\n },\r\n },\r\n }),\r\n\r\n icon: tv({\r\n base: 'absolute top-0 w-[26px] flex items-center text-xl text-black h-full p-0',\r\n variants: {\r\n isValid: {\r\n true: 'text-brand-green-250',\r\n false: 'text-brand-red-150',\r\n },\r\n isTrigger: {\r\n true: 'bg-transparent appearance-none outline-none border-none cursor-pointer',\r\n false: 'pointer-events-none',\r\n },\r\n isDisabled: {\r\n true: 'cursor-not-allowed',\r\n },\r\n design: {\r\n standard: 'right-1',\r\n landing: 'right-1',\r\n 'single-quote-element': 'right-1',\r\n 'multi-quote-element': 'right-[-8px]',\r\n },\r\n },\r\n }),\r\n\r\n validation: tv({\r\n base: 'absolute top-0 w-5 h-full flex items-center text-sm pointer-events-none right-2 transition-opacity',\r\n variants: {\r\n isValid: {\r\n true: 'opacity-0',\r\n false: 'opacity-100',\r\n },\r\n withIcon: {\r\n true: '',\r\n },\r\n },\r\n compoundVariants: [\r\n {\r\n withIcon: true,\r\n isValid: false,\r\n className: 'right-8',\r\n },\r\n ],\r\n }),\r\n};\r\n\r\nexport const TextInput = forwardRef<HTMLInputElement, Props & Omit<InputProps, 'className'>>((props, ref) => {\r\n const { isValid, isLoading, isDisabled, icon, iconAsTrigger, error, withPrefix, ...inputProps } = props,\r\n design = useContext(DesignContext);\r\n\r\n return (\r\n <Wrapper\r\n input={\r\n <AriaInput\r\n {...inputProps}\r\n disabled={props.isDisabled}\r\n aria-label={props['aria-label']}\r\n ref={ref}\r\n className={renderProps =>\r\n styles.wrapper({\r\n ...renderProps,\r\n design,\r\n input: 'text',\r\n withIcon: !!icon,\r\n isValid,\r\n withPrefix,\r\n isLoading,\r\n isDisabled,\r\n })\r\n }\r\n />\r\n }\r\n {...props}\r\n />\r\n );\r\n});\r\n\r\nexport const TextAreaInput = forwardRef<HTMLTextAreaElement, Props & Omit<TextAreaProps, 'className'>>((props, ref) => {\r\n const { isValid, isLoading, isDisabled, icon, iconAsTrigger, error, withPrefix, rows, ...inputProps } = props,\r\n design = useContext(DesignContext);\r\n\r\n return (\r\n <Wrapper\r\n input={\r\n <AriaTextArea\r\n {...inputProps}\r\n disabled={props.isDisabled}\r\n ref={ref}\r\n rows={rows}\r\n className={renderProps =>\r\n styles.wrapper({\r\n ...renderProps,\r\n design,\r\n input: 'text',\r\n withIcon: !!icon,\r\n isValid,\r\n isMultiline: true,\r\n withPrefix,\r\n isLoading,\r\n isDisabled,\r\n })\r\n }\r\n />\r\n }\r\n {...props}\r\n />\r\n );\r\n});\r\n\r\nexport const ButtonInput = forwardRef<HTMLButtonElement, Props & Omit<ButtonProps, 'className'>>((props, ref) => {\r\n const { isValid, isLoading, isDisabled, icon, iconAsTrigger, error, ...buttonProps } = props,\r\n design = useContext(DesignContext);\r\n\r\n return (\r\n <Wrapper\r\n input={\r\n <AriaButton\r\n {...buttonProps}\r\n isDisabled={props.isDisabled}\r\n ref={ref}\r\n className={renderProps =>\r\n styles.wrapper({\r\n ...renderProps,\r\n design,\r\n input: 'button',\r\n withIcon: !!icon,\r\n isValid,\r\n isLoading,\r\n isDisabled,\r\n })\r\n }\r\n />\r\n }\r\n {...props}\r\n />\r\n );\r\n});\r\n\r\nexport function Wrapper({\r\n input,\r\n icon,\r\n iconAsTrigger,\r\n error,\r\n isLoading,\r\n isDisabled,\r\n isValid,\r\n}: Props & { input: ReactNode }) {\r\n if (iconAsTrigger && !icon) throw new Error('The iconAsTrigger flag was set to true, but no icon was provided.');\r\n\r\n const design = useContext(DesignContext);\r\n return (\r\n <Tooltip message={error} isDisabled={isValid}>\r\n <div className={styles.content({ design })} role='group'>\r\n {input}\r\n\r\n {isLoading && (\r\n <div className='absolute right-0 top-0 h-full w-8 flex justify-start items-center'>\r\n <Spinner size='sm' />\r\n </div>\r\n )}\r\n {!isLoading && icon && !iconAsTrigger && (\r\n <div className={styles.icon({ isValid, isDisabled, design })}>{icon}</div>\r\n )}\r\n {!isLoading && icon && iconAsTrigger && (\r\n <AriaButton className={styles.icon({ isValid, isDisabled, isTrigger: true, design })}>\r\n {icon}\r\n </AriaButton>\r\n )}\r\n\r\n <div className={styles.validation({ isValid, withIcon: !!icon })} aria-label={error || ''}>\r\n <PriorityHighIcon fontSize='inherit' className='bg-brand-red-150 text-white rounded-full' />\r\n </div>\r\n </div>\r\n </Tooltip>\r\n );\r\n}\r\n"],"names":["$e5be200c675c3b3a$export$aca958c65c314e6c","$e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE","$e5be200c675c3b3a$export$dad6ae84456c676a","$e5be200c675c3b3a$export$571b5131b7e65c11","$69F46$createContext","$e5be200c675c3b3a$export$a763b9476acd3eb","$e5be200c675c3b3a$export$fc1a364ae1f3ff10","props","realtimeValidation","displayValidation","updateValidation","resetValidation","commitValidation","$e5be200c675c3b3a$var$useFormValidationStateImpl","isInvalid","validationState","name","value","builtinValidation","validate","validationBehavior","controlledError","clientError","$69F46$useMemo","$e5be200c675c3b3a$var$getValidationResult","$e5be200c675c3b3a$var$runValidate","serverErrors","$69F46$useContext","serverErrorMessages","$e5be200c675c3b3a$var$asArray","lastServerErrors","setLastServerErrors","$69F46$useState","isServerErrorCleared","setServerErrorCleared","serverError","nextValidation","$69F46$useRef","currentValidity","setCurrentValidity","lastError","commitQueued","setCommitQueued","error","$e5be200c675c3b3a$var$isEqualValidation","$69F46$useEffect","v","e","errors","a","b","i","k","$d191a55c9702f145$export$8467354a121f1b9f","id","label","ariaLabelledby","ariaLabel","labelElementType","$83Elw$useId","labelId","labelProps","fieldProps","$83Elw$useLabels","$d3e0e05bdfcf66bd$export$c24727297075ec6a","$j6ya4$createContext","$216918bed6669f72$export$2dc6166a7e65358c","$9Usiy$createContext","$216918bed6669f72$var$filterHoverProps","onHoverStart","onHoverChange","onHoverEnd","otherProps","$216918bed6669f72$var$TextArea","ref","$64fa3d84918910a7$export$29f1550f4b0d4415","hoverProps","isHovered","$9Usiy$useHover","isFocused","isFocusVisible","focusProps","$9Usiy$useFocusRing","renderProps","$64fa3d84918910a7$export$4d86445c2cf5e3","$9Usiy$react","$9Usiy$mergeProps","$216918bed6669f72$export$f5c9f3c2c4054eec","$9Usiy$forwardRef","_interopRequireDefault","require$$0","PriorityHighOutlined","_createSvgIcon","_jsxRuntime","require$$2","styles","tv","TextInput","forwardRef","isValid","isLoading","isDisabled","icon","iconAsTrigger","withPrefix","inputProps","design","useContext","DesignContext","jsx","Wrapper","AriaInput","TextAreaInput","rows","AriaTextArea","ButtonInput","buttonProps","AriaButton","input","Tooltip","jsxs","Spinner","PriorityHighIcon"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4]}