如何使用 fabric ui react 创建密码输入?

How to create a password input with fabric ui react?

fabric ui 中有一个 TextField 输入,但我还没有找到为登录表单创建密码字段的方法。

编辑:

我尝试使用 'type' 属性,但出现错误。

Property 'type' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes<TextField> & Readonly<{ children?: ReactNode; }>

这些是来自package.json的相关包:

"office-ui-fabric-react": "^4.21.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"typescript": "^2.4.2"

这个问题似乎与我的相似:https://github.com/OfficeDev/office-ui-fabric-react/issues/2203 - 我尝试降级到 TypeScript 2.2.2,但如果这样做,我会从 node_modules 文件夹中收到大量错误。

更新:问题现已解决。更新了软件包,它不再存在。

设置type="password"

<TextField type="password" />

另见 TextField type="password" · Issue #490 · OfficeDev/office-ui-fabric-react · GitHub

你试过了吗:

<TextField defaultValue='foo' name='bar' type='password' />

看到这个问题:https://github.com/OfficeDev/office-ui-fabric-react/issues/1127

而这个问题:https://github.com/OfficeDev/office-ui-fabric-react/issues/574

更新我对 github 问题的回复:

Go to my issue

micahgodbolt:

这似乎是前一段时间修复的。我没问题:

<TextField type='password' label='Default TextField'  />

得到这个:

如果是打字稿问题,我们正在解决最新版本 TS 的一些错误。确保您已更新到最新版本的 Fabric。 IE。它与文本字段和输入密码无关。