{"ast":null,"code":"\"use client\";\n\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) t[p] = s[p];\n  if (s != null && typeof Object.getOwnPropertySymbols === \"function\") 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])) t[p[i]] = s[p[i]];\n  }\n  return t;\n};\nimport * as React from 'react';\nimport { useRef, useState } from 'react';\nimport EyeInvisibleOutlined from \"@ant-design/icons/es/icons/EyeInvisibleOutlined\";\nimport EyeOutlined from \"@ant-design/icons/es/icons/EyeOutlined\";\nimport classNames from 'classnames';\nimport omit from \"rc-util/es/omit\";\nimport { composeRef } from \"rc-util/es/ref\";\nimport { ConfigContext } from '../config-provider';\nimport useRemovePasswordTimeout from './hooks/useRemovePasswordTimeout';\nimport Input from './Input';\nconst defaultIconRender = visible => visible ? /*#__PURE__*/React.createElement(EyeOutlined, null) : /*#__PURE__*/React.createElement(EyeInvisibleOutlined, null);\nconst actionMap = {\n  click: 'onClick',\n  hover: 'onMouseOver'\n};\nconst Password = /*#__PURE__*/React.forwardRef((props, ref) => {\n  const {\n    visibilityToggle = true\n  } = props;\n  const visibilityControlled = typeof visibilityToggle === 'object' && visibilityToggle.visible !== undefined;\n  const [visible, setVisible] = useState(() => visibilityControlled ? visibilityToggle.visible : false);\n  const inputRef = useRef(null);\n  React.useEffect(() => {\n    if (visibilityControlled) {\n      setVisible(visibilityToggle.visible);\n    }\n  }, [visibilityControlled, visibilityToggle]);\n  // Remove Password value\n  const removePasswordTimeout = useRemovePasswordTimeout(inputRef);\n  const onVisibleChange = () => {\n    const {\n      disabled\n    } = props;\n    if (disabled) {\n      return;\n    }\n    if (visible) {\n      removePasswordTimeout();\n    }\n    setVisible(prevState => {\n      var _a;\n      const newState = !prevState;\n      if (typeof visibilityToggle === 'object') {\n        (_a = visibilityToggle.onVisibleChange) === null || _a === void 0 ? void 0 : _a.call(visibilityToggle, newState);\n      }\n      return newState;\n    });\n  };\n  const getIcon = prefixCls => {\n    const {\n      action = 'click',\n      iconRender = defaultIconRender\n    } = props;\n    const iconTrigger = actionMap[action] || '';\n    const icon = iconRender(visible);\n    const iconProps = {\n      [iconTrigger]: onVisibleChange,\n      className: `${prefixCls}-icon`,\n      key: 'passwordIcon',\n      onMouseDown: e => {\n        // Prevent focused state lost\n        // https://github.com/ant-design/ant-design/issues/15173\n        e.preventDefault();\n      },\n      onMouseUp: e => {\n        // Prevent caret position change\n        // https://github.com/ant-design/ant-design/issues/23524\n        e.preventDefault();\n      }\n    };\n    return /*#__PURE__*/React.cloneElement( /*#__PURE__*/React.isValidElement(icon) ? icon : /*#__PURE__*/React.createElement(\"span\", null, icon), iconProps);\n  };\n  const {\n      className,\n      prefixCls: customizePrefixCls,\n      inputPrefixCls: customizeInputPrefixCls,\n      size\n    } = props,\n    restProps = __rest(props, [\"className\", \"prefixCls\", \"inputPrefixCls\", \"size\"]);\n  const {\n    getPrefixCls\n  } = React.useContext(ConfigContext);\n  const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);\n  const prefixCls = getPrefixCls('input-password', customizePrefixCls);\n  const suffixIcon = visibilityToggle && getIcon(prefixCls);\n  const inputClassName = classNames(prefixCls, className, {\n    [`${prefixCls}-${size}`]: !!size\n  });\n  const omittedProps = Object.assign(Object.assign({}, omit(restProps, ['suffix', 'iconRender', 'visibilityToggle'])), {\n    type: visible ? 'text' : 'password',\n    className: inputClassName,\n    prefixCls: inputPrefixCls,\n    suffix: suffixIcon\n  });\n  if (size) {\n    omittedProps.size = size;\n  }\n  return /*#__PURE__*/React.createElement(Input, Object.assign({\n    ref: composeRef(ref, inputRef)\n  }, omittedProps));\n});\nif (process.env.NODE_ENV !== 'production') {\n  Password.displayName = 'Input.Password';\n}\nexport default Password;","map":{"version":3,"names":["__rest","s","e","t","p","Object","prototype","hasOwnProperty","call","indexOf","getOwnPropertySymbols","i","length","propertyIsEnumerable","React","useRef","useState","EyeInvisibleOutlined","EyeOutlined","classNames","omit","composeRef","ConfigContext","useRemovePasswordTimeout","Input","defaultIconRender","visible","createElement","actionMap","click","hover","Password","forwardRef","props","ref","visibilityToggle","visibilityControlled","undefined","setVisible","inputRef","useEffect","removePasswordTimeout","onVisibleChange","disabled","prevState","_a","newState","getIcon","prefixCls","action","iconRender","iconTrigger","icon","iconProps","className","key","onMouseDown","preventDefault","onMouseUp","cloneElement","isValidElement","customizePrefixCls","inputPrefixCls","customizeInputPrefixCls","size","restProps","getPrefixCls","useContext","suffixIcon","inputClassName","omittedProps","assign","type","suffix","process","env","NODE_ENV","displayName"],"sources":["/Users/shanyi/Desktop/Projects/UC_Trains_Voice/react-demo/node_modules/antd/es/input/Password.js"],"sourcesContent":["\"use client\";\n\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) t[p] = s[p];\n  if (s != null && typeof Object.getOwnPropertySymbols === \"function\") 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])) t[p[i]] = s[p[i]];\n  }\n  return t;\n};\nimport * as React from 'react';\nimport { useRef, useState } from 'react';\nimport EyeInvisibleOutlined from \"@ant-design/icons/es/icons/EyeInvisibleOutlined\";\nimport EyeOutlined from \"@ant-design/icons/es/icons/EyeOutlined\";\nimport classNames from 'classnames';\nimport omit from \"rc-util/es/omit\";\nimport { composeRef } from \"rc-util/es/ref\";\nimport { ConfigContext } from '../config-provider';\nimport useRemovePasswordTimeout from './hooks/useRemovePasswordTimeout';\nimport Input from './Input';\nconst defaultIconRender = visible => visible ? /*#__PURE__*/React.createElement(EyeOutlined, null) : /*#__PURE__*/React.createElement(EyeInvisibleOutlined, null);\nconst actionMap = {\n  click: 'onClick',\n  hover: 'onMouseOver'\n};\nconst Password = /*#__PURE__*/React.forwardRef((props, ref) => {\n  const {\n    visibilityToggle = true\n  } = props;\n  const visibilityControlled = typeof visibilityToggle === 'object' && visibilityToggle.visible !== undefined;\n  const [visible, setVisible] = useState(() => visibilityControlled ? visibilityToggle.visible : false);\n  const inputRef = useRef(null);\n  React.useEffect(() => {\n    if (visibilityControlled) {\n      setVisible(visibilityToggle.visible);\n    }\n  }, [visibilityControlled, visibilityToggle]);\n  // Remove Password value\n  const removePasswordTimeout = useRemovePasswordTimeout(inputRef);\n  const onVisibleChange = () => {\n    const {\n      disabled\n    } = props;\n    if (disabled) {\n      return;\n    }\n    if (visible) {\n      removePasswordTimeout();\n    }\n    setVisible(prevState => {\n      var _a;\n      const newState = !prevState;\n      if (typeof visibilityToggle === 'object') {\n        (_a = visibilityToggle.onVisibleChange) === null || _a === void 0 ? void 0 : _a.call(visibilityToggle, newState);\n      }\n      return newState;\n    });\n  };\n  const getIcon = prefixCls => {\n    const {\n      action = 'click',\n      iconRender = defaultIconRender\n    } = props;\n    const iconTrigger = actionMap[action] || '';\n    const icon = iconRender(visible);\n    const iconProps = {\n      [iconTrigger]: onVisibleChange,\n      className: `${prefixCls}-icon`,\n      key: 'passwordIcon',\n      onMouseDown: e => {\n        // Prevent focused state lost\n        // https://github.com/ant-design/ant-design/issues/15173\n        e.preventDefault();\n      },\n      onMouseUp: e => {\n        // Prevent caret position change\n        // https://github.com/ant-design/ant-design/issues/23524\n        e.preventDefault();\n      }\n    };\n    return /*#__PURE__*/React.cloneElement( /*#__PURE__*/React.isValidElement(icon) ? icon : /*#__PURE__*/React.createElement(\"span\", null, icon), iconProps);\n  };\n  const {\n      className,\n      prefixCls: customizePrefixCls,\n      inputPrefixCls: customizeInputPrefixCls,\n      size\n    } = props,\n    restProps = __rest(props, [\"className\", \"prefixCls\", \"inputPrefixCls\", \"size\"]);\n  const {\n    getPrefixCls\n  } = React.useContext(ConfigContext);\n  const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls);\n  const prefixCls = getPrefixCls('input-password', customizePrefixCls);\n  const suffixIcon = visibilityToggle && getIcon(prefixCls);\n  const inputClassName = classNames(prefixCls, className, {\n    [`${prefixCls}-${size}`]: !!size\n  });\n  const omittedProps = Object.assign(Object.assign({}, omit(restProps, ['suffix', 'iconRender', 'visibilityToggle'])), {\n    type: visible ? 'text' : 'password',\n    className: inputClassName,\n    prefixCls: inputPrefixCls,\n    suffix: suffixIcon\n  });\n  if (size) {\n    omittedProps.size = size;\n  }\n  return /*#__PURE__*/React.createElement(Input, Object.assign({\n    ref: composeRef(ref, inputRef)\n  }, omittedProps));\n});\nif (process.env.NODE_ENV !== 'production') {\n  Password.displayName = 'Input.Password';\n}\nexport default Password;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}