com-angel-authorization 1.0.31 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/react/index.cjs +16 -7
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +16 -7
- package/dist/react/index.js.map +1 -1
- package/dist/vue/index.cjs +16 -11
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.js +16 -11
- package/dist/vue/index.js.map +1 -1
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -3553,7 +3553,10 @@ function UserManager({
|
|
|
3553
3553
|
/* @__PURE__ */ jsxs4("form", { style: styles4.form, onSubmit: (e) => void handleSubmit(e), children: [
|
|
3554
3554
|
formError ? /* @__PURE__ */ jsx5("div", { style: styles4.error, children: formError }) : null,
|
|
3555
3555
|
/* @__PURE__ */ jsxs4("label", { style: styles4.field, children: [
|
|
3556
|
-
/* @__PURE__ */
|
|
3556
|
+
/* @__PURE__ */ jsxs4("span", { style: styles4.label, children: [
|
|
3557
|
+
"\u8D26\u53F7 ",
|
|
3558
|
+
/* @__PURE__ */ jsx5("span", { style: styles4.required, children: "*" })
|
|
3559
|
+
] }),
|
|
3557
3560
|
/* @__PURE__ */ jsx5(
|
|
3558
3561
|
"input",
|
|
3559
3562
|
{
|
|
@@ -3566,7 +3569,10 @@ function UserManager({
|
|
|
3566
3569
|
)
|
|
3567
3570
|
] }),
|
|
3568
3571
|
/* @__PURE__ */ jsxs4("label", { style: styles4.field, children: [
|
|
3569
|
-
/* @__PURE__ */
|
|
3572
|
+
/* @__PURE__ */ jsxs4("span", { style: styles4.label, children: [
|
|
3573
|
+
"\u7528\u6237\u540D ",
|
|
3574
|
+
/* @__PURE__ */ jsx5("span", { style: styles4.required, children: "*" })
|
|
3575
|
+
] }),
|
|
3570
3576
|
/* @__PURE__ */ jsx5(
|
|
3571
3577
|
"input",
|
|
3572
3578
|
{
|
|
@@ -3578,8 +3584,11 @@ function UserManager({
|
|
|
3578
3584
|
}
|
|
3579
3585
|
)
|
|
3580
3586
|
] }),
|
|
3581
|
-
/* @__PURE__ */ jsxs4("label", { style: styles4.field, children: [
|
|
3582
|
-
/* @__PURE__ */
|
|
3587
|
+
!editing ? /* @__PURE__ */ jsxs4("label", { style: styles4.field, children: [
|
|
3588
|
+
/* @__PURE__ */ jsxs4("span", { style: styles4.label, children: [
|
|
3589
|
+
"\u521D\u59CB\u5BC6\u7801 ",
|
|
3590
|
+
/* @__PURE__ */ jsx5("span", { style: styles4.required, children: "*" })
|
|
3591
|
+
] }),
|
|
3583
3592
|
/* @__PURE__ */ jsx5(
|
|
3584
3593
|
"input",
|
|
3585
3594
|
{
|
|
@@ -3587,12 +3596,12 @@ function UserManager({
|
|
|
3587
3596
|
type: "password",
|
|
3588
3597
|
value: form.password,
|
|
3589
3598
|
onChange: (e) => setForm((prev) => ({ ...prev, password: e.target.value })),
|
|
3590
|
-
placeholder:
|
|
3591
|
-
required:
|
|
3599
|
+
placeholder: "\u8BF7\u8F93\u5165\u521D\u59CB\u5BC6\u7801",
|
|
3600
|
+
required: true,
|
|
3592
3601
|
autoComplete: "new-password"
|
|
3593
3602
|
}
|
|
3594
3603
|
)
|
|
3595
|
-
] }),
|
|
3604
|
+
] }) : null,
|
|
3596
3605
|
/* @__PURE__ */ jsxs4("fieldset", { style: styles4.fieldset, children: [
|
|
3597
3606
|
/* @__PURE__ */ jsxs4("legend", { style: styles4.label, children: [
|
|
3598
3607
|
"\u5F52\u5C5E\u90E8\u95E8 ",
|