mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-24 08:20:31 +08:00
fix: improve LDAP page UI (#1749)
* refactor: improve LDAP sync page * refactor: update anted version * chore: i18
This commit is contained in:
parent
df741805cd
commit
903745c540
@ -89,7 +89,7 @@ func (c *ApiController) GetLdapUsers() {
|
||||
uuids = append(uuids, user.Uuid)
|
||||
}
|
||||
|
||||
existUuids := object.CheckLdapUuidExist(ldapServer.Owner, uuids)
|
||||
existUuids := object.GetExistUuids(ldapServer.Owner, uuids)
|
||||
|
||||
c.ResponseOk(resp, existUuids)
|
||||
}
|
||||
|
@ -268,7 +268,7 @@ func SyncLdapUsers(owner string, respUsers []LdapRespUser, ldapId string) (*[]Ld
|
||||
uuids = append(uuids, user.Uuid)
|
||||
}
|
||||
|
||||
existUuids := CheckLdapUuidExist(owner, uuids)
|
||||
existUuids := GetExistUuids(owner, uuids)
|
||||
|
||||
organization := getOrganization("admin", owner)
|
||||
ldap := GetLdap(ldapId)
|
||||
@ -327,18 +327,18 @@ func SyncLdapUsers(owner string, respUsers []LdapRespUser, ldapId string) (*[]Ld
|
||||
return &existUsers, &failedUsers
|
||||
}
|
||||
|
||||
func CheckLdapUuidExist(owner string, uuids []string) []string {
|
||||
var results []User
|
||||
func GetExistUuids(owner string, uuids []string) []string {
|
||||
var users []User
|
||||
var existUuids []string
|
||||
existUuidSet := make(map[string]struct{})
|
||||
|
||||
err := adapter.Engine.Where(fmt.Sprintf("ldap IN (%s) AND owner = ?", "'"+strings.Join(uuids, "','")+"'"), owner).Find(&results)
|
||||
err := adapter.Engine.Where(fmt.Sprintf("ldap IN (%s) AND owner = ?", "'"+strings.Join(uuids, "','")+"'"), owner).Find(&users)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
if len(results) > 0 {
|
||||
for _, result := range results {
|
||||
if len(users) > 0 {
|
||||
for _, result := range users {
|
||||
existUuidSet[result.Ldap] = struct{}{}
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@ant-design/cssinjs": "^1.5.6",
|
||||
"@ant-design/cssinjs": "^1.8.1",
|
||||
"@ant-design/icons": "^4.7.0",
|
||||
"@craco/craco": "^6.4.5",
|
||||
"@crowdin/cli": "^3.7.10",
|
||||
@ -12,7 +12,7 @@
|
||||
"@testing-library/jest-dom": "^4.2.4",
|
||||
"@testing-library/react": "^9.3.2",
|
||||
"@testing-library/user-event": "^7.1.2",
|
||||
"antd": "5.1.6",
|
||||
"antd": "5.4.2",
|
||||
"antd-token-previewer": "^1.1.0-22",
|
||||
"codemirror": "^5.61.1",
|
||||
"copy-to-clipboard": "^3.3.1",
|
||||
|
@ -13,10 +13,11 @@
|
||||
// limitations under the License.
|
||||
|
||||
import React from "react";
|
||||
import {Button, Col, Popconfirm, Row, Table} from "antd";
|
||||
import {Button, Popconfirm, Table} from "antd";
|
||||
import * as Setting from "./Setting";
|
||||
import * as LdapBackend from "./backend/LdapBackend";
|
||||
import i18next from "i18next";
|
||||
import {Link} from "react-router-dom";
|
||||
|
||||
class LdapSyncPage extends React.Component {
|
||||
constructor(props) {
|
||||
@ -77,9 +78,8 @@ class LdapSyncPage extends React.Component {
|
||||
LdapBackend.getLdap(this.state.organizationName, this.state.ldapId)
|
||||
.then((res) => {
|
||||
if (res.status === "ok") {
|
||||
this.setState((prevState) => {
|
||||
prevState.ldap = res.data;
|
||||
return prevState;
|
||||
this.setState({
|
||||
ldap: res.data,
|
||||
});
|
||||
this.getLdapUser();
|
||||
} else {
|
||||
@ -139,22 +139,46 @@ class LdapSyncPage extends React.Component {
|
||||
dataIndex: "cn",
|
||||
key: "cn",
|
||||
sorter: (a, b) => a.cn.localeCompare(b.cn),
|
||||
render: (text, record, index) => {
|
||||
return (<div style={{display: "flex", justifyContent: "space-between"}}>
|
||||
<div>
|
||||
{text}
|
||||
</div>
|
||||
{this.state.existUuids.includes(record.uuid) ?
|
||||
Setting.getTag("green", i18next.t("ldap:synced")) :
|
||||
Setting.getTag("red", i18next.t("ldap:unsynced"))
|
||||
}
|
||||
</div>);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: i18next.t("ldap:UidNumber / Uid"),
|
||||
title: "Uid",
|
||||
dataIndex: "uid",
|
||||
key: "uid",
|
||||
sorter: (a, b) => a.uid.localeCompare(b.uid),
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
this.state.existUuids.includes(record.uuid) ?
|
||||
<Link to={`/users/${this.state.organizationName}/${text}`}>
|
||||
{text}
|
||||
</Link> :
|
||||
text
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "UidNumber",
|
||||
dataIndex: "uidNumber",
|
||||
key: "uidNumber",
|
||||
width: "200px",
|
||||
sorter: (a, b) => a.uidNumber.localeCompare(b.uidNumber),
|
||||
render: (text, record, index) => {
|
||||
return `${text} / ${record.uid}`;
|
||||
return text;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: i18next.t("ldap:Group ID"),
|
||||
dataIndex: "groupId",
|
||||
key: "groupId",
|
||||
width: "140px",
|
||||
sorter: (a, b) => a.groupId.localeCompare(b.groupId),
|
||||
filters: this.buildFilter(this.state.users, "groupId"),
|
||||
onFilter: (value, record) => record.groupId.indexOf(value) === 0,
|
||||
@ -163,14 +187,12 @@ class LdapSyncPage extends React.Component {
|
||||
title: i18next.t("general:Email"),
|
||||
dataIndex: "email",
|
||||
key: "email",
|
||||
width: "240px",
|
||||
sorter: (a, b) => a.email.localeCompare(b.email),
|
||||
},
|
||||
{
|
||||
title: i18next.t("general:Phone"),
|
||||
dataIndex: "phone",
|
||||
key: "phone",
|
||||
width: "160px",
|
||||
sorter: (a, b) => a.phone.localeCompare(b.phone),
|
||||
},
|
||||
{
|
||||
@ -183,9 +205,8 @@ class LdapSyncPage extends React.Component {
|
||||
|
||||
const rowSelection = {
|
||||
onChange: (selectedRowKeys, selectedRows) => {
|
||||
this.setState(prevState => {
|
||||
prevState.selectedUsers = selectedRows;
|
||||
return prevState;
|
||||
this.setState({
|
||||
selectedUsers: selectedRows,
|
||||
});
|
||||
},
|
||||
getCheckboxProps: record => ({
|
||||
@ -194,42 +215,36 @@ class LdapSyncPage extends React.Component {
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<Table rowSelection={rowSelection} columns={columns} dataSource={users} rowKey="uuid" bordered
|
||||
pagination={{defaultPageSize: 10, showQuickJumper: true, showSizeChanger: true}}
|
||||
title={() => (
|
||||
<div>
|
||||
<span>{this.state.ldap?.serverName}</span>
|
||||
<Popconfirm placement={"right"}
|
||||
title={"Please confirm to sync selected users"}
|
||||
onConfirm={() => this.syncUsers()}
|
||||
>
|
||||
<Button type="primary" style={{marginLeft: "10px"}}>
|
||||
{i18next.t("general:Sync")}
|
||||
</Button>
|
||||
</Popconfirm>
|
||||
<Button style={{marginLeft: "20px"}}
|
||||
onClick={() => Setting.goToLink(`/ldap/${this.state.organizationName}/${this.state.ldapId}`)}>
|
||||
{i18next.t("general:Edit")} LDAP
|
||||
<Table rowSelection={rowSelection} columns={columns} dataSource={users} rowKey="uuid" bordered size="small"
|
||||
pagination={{defaultPageSize: 10, showQuickJumper: true, showSizeChanger: true}}
|
||||
title={() => (
|
||||
<div>
|
||||
{this.state.ldap?.serverName}
|
||||
<Popconfirm placement={"right"} disabled={this.state.selectedUsers.length === 0}
|
||||
title={"Please confirm to sync selected users"}
|
||||
onConfirm={() => this.syncUsers()}
|
||||
>
|
||||
<Button type="primary" style={{marginLeft: "10px"}} disabled={this.state.selectedUsers.length === 0}>
|
||||
{i18next.t("general:Sync")}
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
loading={users === null}
|
||||
/>
|
||||
</div>
|
||||
</Popconfirm>
|
||||
<Button style={{marginLeft: "20px"}}
|
||||
onClick={() => Setting.goToLink(`/ldap/${this.state.organizationName}/${this.state.ldapId}`)}>
|
||||
{i18next.t("general:Edit")} LDAP
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
loading={users === null}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<Row style={{width: "100%", justifyContent: "center"}}>
|
||||
<Col span={22}>
|
||||
{
|
||||
this.renderTable(this.state.users)
|
||||
}
|
||||
</Col>
|
||||
</Row>
|
||||
{
|
||||
this.renderTable(this.state.users)
|
||||
}
|
||||
<div style={{marginTop: "20px", marginLeft: "40px"}}>
|
||||
<Button style={{marginLeft: "20px"}} type="primary" size="large" onClick={() => {
|
||||
this.props.history.push(`/organizations/${this.state.organizationName}`);
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Server-Port",
|
||||
"Server port - Tooltip": "LDAP-Server-Port",
|
||||
"The Auto Sync option will sync all users to specify organization": "Die Option \"Auto Sync\" synchronisiert alle Benutzer mit der angegebenen Organisation",
|
||||
"UidNumber / Uid": "UidNumber / Uid"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Automatische Anmeldung",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Arbeitgeber, wie Firmenname oder Organisationsname",
|
||||
"Bio": "Bio",
|
||||
"Bio - Tooltip": "Selbstvorstellung des Nutzers",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "Captcha-Überprüfung fehlgeschlagen",
|
||||
"Captcha Verify Success": "Captcha-Verifizierung Erfolgreich",
|
||||
"Country code": "Ländercode",
|
||||
"Country/Region": "Land/Region",
|
||||
"Country/Region - Tooltip": "Land oder Region",
|
||||
"Edit User": "Benutzer bearbeiten",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "E-Mail darf nicht leer sein",
|
||||
"Email/phone reset successfully": "E-Mail-/Telefon-Zurücksetzung erfolgreich durchgeführt",
|
||||
"Empty input!": "Leere Eingabe!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Startseite des Benutzers",
|
||||
"Homepage - Tooltip": "Homepage-URL des Benutzers",
|
||||
"ID card": "Ausweis",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Geben Sie Ihre E-Mail-Adresse ein",
|
||||
"Input your phone number": "Geben Sie Ihre Telefonnummer ein",
|
||||
"Is admin": "Ist Admin",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "Verbotene Benutzer können sich nicht mehr einloggen",
|
||||
"Is global admin": "Ist globaler Administrator",
|
||||
"Is global admin - Tooltip": "Ist ein Administrator von Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Keys",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Link",
|
||||
"Location": "Ort",
|
||||
"Location - Tooltip": "Stadt des Wohnsitzes",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Bitte wählen Sie einen Avatar aus den Ressourcen aus",
|
||||
"Properties": "Eigenschaften",
|
||||
"Properties - Tooltip": "Eigenschaften des Benutzers",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Neueingabe wiederholen",
|
||||
"Reset Email...": "E-Mail zurücksetzen...",
|
||||
"Reset Phone...": "Telefon zurücksetzen...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Wählen Sie ein Foto aus...",
|
||||
"Set Password": "Passwort festlegen",
|
||||
"Set new profile picture": "Neues Profilbild festlegen",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Server port",
|
||||
"Server port - Tooltip": "LDAP server port",
|
||||
"The Auto Sync option will sync all users to specify organization": "The Auto Sync option will sync all users to specify organization",
|
||||
"UidNumber / Uid": "UidNumber / Uid"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Auto sign in",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Employer, such as company name or organization name",
|
||||
"Bio": "Bio",
|
||||
"Bio - Tooltip": "Self introduction of the user",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "Captcha Verify Failed",
|
||||
"Captcha Verify Success": "Captcha Verify Success",
|
||||
"Country code": "Country code",
|
||||
"Country/Region": "Country/Region",
|
||||
"Country/Region - Tooltip": "Country or region",
|
||||
"Edit User": "Edit User",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "Email cannot be empty",
|
||||
"Email/phone reset successfully": "Email/phone reset successfully",
|
||||
"Empty input!": "Empty input!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Homepage",
|
||||
"Homepage - Tooltip": "Homepage URL of the user",
|
||||
"ID card": "ID card",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Input your email",
|
||||
"Input your phone number": "Input your phone number",
|
||||
"Is admin": "Is admin",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "Forbidden users cannot log in any more",
|
||||
"Is global admin": "Is global admin",
|
||||
"Is global admin - Tooltip": "Is an administrator of Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Keys",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Link",
|
||||
"Location": "Location",
|
||||
"Location - Tooltip": "City of residence",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Please select avatar from resources",
|
||||
"Properties": "Properties",
|
||||
"Properties - Tooltip": "Properties of the user",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Re-enter New",
|
||||
"Reset Email...": "Reset Email...",
|
||||
"Reset Phone...": "Reset Phone...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Select a photo...",
|
||||
"Set Password": "Set Password",
|
||||
"Set new profile picture": "Set new profile picture",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Puerto del servidor",
|
||||
"Server port - Tooltip": "Puerto del servidor LDAP",
|
||||
"The Auto Sync option will sync all users to specify organization": "La opción Auto Sync sincronizará a todos los usuarios con la organización especificada",
|
||||
"UidNumber / Uid": "UidNumber / Uid"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Inicio de sesión automático",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Empleador, como el nombre de una empresa u organización",
|
||||
"Bio": "Bio - Biografía",
|
||||
"Bio - Tooltip": "Introducción personal del usuario",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "Validación de Captcha fallida",
|
||||
"Captcha Verify Success": "Verificación de Captcha Exitosa",
|
||||
"Country code": "Código de país",
|
||||
"Country/Region": "País/Región",
|
||||
"Country/Region - Tooltip": "País o región",
|
||||
"Edit User": "Editar usuario",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "El correo electrónico no puede estar vacío",
|
||||
"Email/phone reset successfully": "Restablecimiento de correo electrónico/teléfono exitoso",
|
||||
"Empty input!": "¡Entrada vacía!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Página de inicio del usuario",
|
||||
"Homepage - Tooltip": "URL de la página de inicio del usuario",
|
||||
"ID card": "Tarjeta de identificación",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Introduce tu correo electrónico",
|
||||
"Input your phone number": "Ingrese su número de teléfono",
|
||||
"Is admin": "Es el administrador",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "Los usuarios bloqueados ya no pueden iniciar sesión",
|
||||
"Is global admin": "¿Es administrador global?",
|
||||
"Is global admin - Tooltip": "Es un administrador de Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Claves",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Enlace",
|
||||
"Location": "Ubicación",
|
||||
"Location - Tooltip": "Ciudad de residencia",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Por favor, selecciona un avatar de los recursos disponibles",
|
||||
"Properties": "Propiedades",
|
||||
"Properties - Tooltip": "Propiedades del usuario",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Volver a ingresar Nueva",
|
||||
"Reset Email...": "Restablecer Correo Electrónico...",
|
||||
"Reset Phone...": "Reiniciar teléfono...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Selecciona una foto...",
|
||||
"Set Password": "Establecer contraseña",
|
||||
"Set new profile picture": "Establecer nueva foto de perfil",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Port du serveur",
|
||||
"Server port - Tooltip": "Port du serveur LDAP",
|
||||
"The Auto Sync option will sync all users to specify organization": "L'option de synchronisation automatique synchronisera tous les utilisateurs vers l'organisation spécifiée",
|
||||
"UidNumber / Uid": "NuméroUID / UID"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Connexion automatique",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Employeur, tel que le nom de l'entreprise ou de l'organisation",
|
||||
"Bio": "Bio",
|
||||
"Bio - Tooltip": "Présentation de l'utilisateur",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "La vérification Captcha a échoué",
|
||||
"Captcha Verify Success": "Succès de vérification de Captcha",
|
||||
"Country code": "Code pays",
|
||||
"Country/Region": "Pays/Région",
|
||||
"Country/Region - Tooltip": "Pays ou région",
|
||||
"Edit User": "Modifier l'utilisateur",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "L'e-mail ne peut pas être vide",
|
||||
"Email/phone reset successfully": "Réinitialisation de l'email/du téléphone réussie",
|
||||
"Empty input!": "Entrée vide !",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Page d'accueil de l'utilisateur",
|
||||
"Homepage - Tooltip": "Adresse URL de la page d'accueil de l'utilisateur",
|
||||
"ID card": "carte d'identité",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Entrez votre adresse e-mail",
|
||||
"Input your phone number": "Saisissez votre numéro de téléphone",
|
||||
"Is admin": "Est l'administrateur",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "Les utilisateurs interdits ne peuvent plus se connecter",
|
||||
"Is global admin": "Est l'administrateur global",
|
||||
"Is global admin - Tooltip": "Est un administrateur de Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Clés",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Lien",
|
||||
"Location": "Location",
|
||||
"Location - Tooltip": "Ville de résidence",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Veuillez sélectionner un avatar à partir des ressources",
|
||||
"Properties": "Propriétés",
|
||||
"Properties - Tooltip": "Propriétés de l'utilisateur",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Entrer de nouveau dans le nouveau",
|
||||
"Reset Email...": "Réinitialisation de l'e-mail...",
|
||||
"Reset Phone...": "Réinitialiser le téléphone...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Sélectionnez une photo...",
|
||||
"Set Password": "Définir un mot de passe",
|
||||
"Set new profile picture": "Changer la photo de profil",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Port server",
|
||||
"Server port - Tooltip": "Port server LDAP",
|
||||
"The Auto Sync option will sync all users to specify organization": "Opsi Auto Sync akan menyinkronkan semua pengguna ke organisasi tertentu",
|
||||
"UidNumber / Uid": "NomorUID / UID"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Masuk otomatis",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Pemberi Kerja, seperti nama perusahaan atau nama organisasi",
|
||||
"Bio": "Bio: Biografi",
|
||||
"Bio - Tooltip": "Pengenalan diri dari pengguna",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "Gagal memverifikasi Captcha",
|
||||
"Captcha Verify Success": "Captcha Verifikasi Berhasil",
|
||||
"Country code": "Kode negara",
|
||||
"Country/Region": "Negara/daerah",
|
||||
"Country/Region - Tooltip": "Negara atau wilayah",
|
||||
"Edit User": "Edit Pengguna",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "Email tidak boleh kosong",
|
||||
"Email/phone reset successfully": "Email/telepon berhasil diatur ulang",
|
||||
"Empty input!": "Masukan kosong!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Homepage",
|
||||
"Homepage - Tooltip": "URL halaman depan pengguna",
|
||||
"ID card": "Kartu identitas",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Masukkan alamat email Anda",
|
||||
"Input your phone number": "Masukkan nomor telepon Anda",
|
||||
"Is admin": "Apakah admin?",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "User yang dilarang tidak dapat masuk lagi",
|
||||
"Is global admin": "Apakah global admin",
|
||||
"Is global admin - Tooltip": "Adalah seorang administrator Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Kunci",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Tautan",
|
||||
"Location": "Lokasi",
|
||||
"Location - Tooltip": "Kota tempat tinggal",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Silakan pilih avatar dari sumber daya",
|
||||
"Properties": "Properti",
|
||||
"Properties - Tooltip": "Properti dari pengguna",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Masukkan kembali baru",
|
||||
"Reset Email...": "Atur Ulang Email...",
|
||||
"Reset Phone...": "Atur Ulang Telepon...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Pilih foto...",
|
||||
"Set Password": "Atur Kata Sandi",
|
||||
"Set new profile picture": "Mengatur gambar profil baru",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "サーバーポート",
|
||||
"Server port - Tooltip": "LDAPサーバーポート",
|
||||
"The Auto Sync option will sync all users to specify organization": "オート同期オプションは、特定の組織に全ユーザーを同期します",
|
||||
"UidNumber / Uid": "Uid番号 / Uid"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "自動サインイン",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "企業名や団体名などの雇用主",
|
||||
"Bio": "バイオ技術",
|
||||
"Bio - Tooltip": "ユーザーの自己紹介\n\n私は○○です。私は○○(国、都市、職業など)出身で、現在は○○(国、都市、職業など)に住んでいます。私は○○(趣味、特技、興味など)が好きで、空き時間にはよくそれをしています。よろしくお願いします",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "キャプチャ検証に失敗しました",
|
||||
"Captcha Verify Success": "キャプチャを確認しました。成功しました",
|
||||
"Country code": "国番号",
|
||||
"Country/Region": "国/地域",
|
||||
"Country/Region - Tooltip": "国または地域",
|
||||
"Edit User": "ユーザーの編集",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "電子メールは空にできません",
|
||||
"Email/phone reset successfully": "メール/電話のリセットが成功しました",
|
||||
"Empty input!": "空の入力!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "ユーザーのホームページ",
|
||||
"Homepage - Tooltip": "ユーザーのホームページのURL",
|
||||
"ID card": "IDカード",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "あなたのメールアドレスを入力してください",
|
||||
"Input your phone number": "電話番号を入力してください",
|
||||
"Is admin": "管理者ですか?",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "禁止されたユーザーはこれ以上ログインできません",
|
||||
"Is global admin": "グローバル管理者です",
|
||||
"Is global admin - Tooltip": "Casdoorの管理者です",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "鍵",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "リンク",
|
||||
"Location": "場所",
|
||||
"Location - Tooltip": "居住都市",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "リソースからアバターを選択してください",
|
||||
"Properties": "特性",
|
||||
"Properties - Tooltip": "ユーザーのプロパティー",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "新しく入り直す",
|
||||
"Reset Email...": "リセットメール...",
|
||||
"Reset Phone...": "リセットします...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "写真を選択してください...",
|
||||
"Set Password": "パスワードを設定する",
|
||||
"Set new profile picture": "新しいプロフィール写真を設定する",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "서버 포트",
|
||||
"Server port - Tooltip": "LDAP 서버 포트",
|
||||
"The Auto Sync option will sync all users to specify organization": "오토 동기화 옵션은 모든 사용자를 지정된 조직에 동기화합니다",
|
||||
"UidNumber / Uid": "식별자 번호 / 식별자"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "자동 로그인",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "고용주, 회사명 또는 조직명",
|
||||
"Bio": "바이오",
|
||||
"Bio - Tooltip": "사용자의 자기소개\n\n안녕하세요, 저는 [이름]입니다. 한국을 포함한 여러 나라에서 살아본 적이 있습니다. 저는 [직업/전공]을 공부하고 있으며 [취미/관심사]에 대해 깊게 알고 있습니다. 이 채팅 서비스를 사용하여 새로운 사람들과 함께 대화를 나누기를 원합니다. 감사합니다",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "캡차 검증 실패",
|
||||
"Captcha Verify Success": "캡차 검증 성공",
|
||||
"Country code": "국가 코드",
|
||||
"Country/Region": "국가 / 지역",
|
||||
"Country/Region - Tooltip": "국가 또는 지역",
|
||||
"Edit User": "사용자 편집",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "이메일은 비어 있을 수 없습니다",
|
||||
"Email/phone reset successfully": "이메일/전화 초기화가 성공적으로 완료되었습니다",
|
||||
"Empty input!": "빈 입력!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "사용자의 홈페이지",
|
||||
"Homepage - Tooltip": "사용자의 홈페이지 URL",
|
||||
"ID card": "ID 카드",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "이메일을 입력하세요",
|
||||
"Input your phone number": "전화번호를 입력하세요",
|
||||
"Is admin": "어드민인가요?",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "금지된 사용자는 더 이상 로그인할 수 없습니다",
|
||||
"Is global admin": "전세계 관리자입니까?",
|
||||
"Is global admin - Tooltip": "캐스도어의 관리자입니다",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "열쇠",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "링크",
|
||||
"Location": "장소",
|
||||
"Location - Tooltip": "거주 도시",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "자원에서 아바타를 선택해주세요",
|
||||
"Properties": "특성",
|
||||
"Properties - Tooltip": "사용자의 속성",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "재진입 새로운",
|
||||
"Reset Email...": "이메일 리셋...",
|
||||
"Reset Phone...": "폰 초기화...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "사진을 선택하세요.",
|
||||
"Set Password": "비밀번호 설정",
|
||||
"Set new profile picture": "새로운 프로필 사진을 설정하세요",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Порт сервера",
|
||||
"Server port - Tooltip": "Port сервера LDAP",
|
||||
"The Auto Sync option will sync all users to specify organization": "Опция \"Авто-синхронизация\" синхронизирует всех пользователей с указанной организацией",
|
||||
"UidNumber / Uid": "НомерUid / Uid"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Автоматическая авторизация",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Работодатель, такой как название компании или организации",
|
||||
"Bio": "Био",
|
||||
"Bio - Tooltip": "Само представление пользователя",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "Ошибка верификации Captcha",
|
||||
"Captcha Verify Success": "Успешно прошли проверку Captcha",
|
||||
"Country code": "Код страны",
|
||||
"Country/Region": "Страна/регион",
|
||||
"Country/Region - Tooltip": "Страна или регион",
|
||||
"Edit User": "Редактировать пользователь",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "Email не может быть пустым",
|
||||
"Email/phone reset successfully": "Электронная почта / номер телефона успешно сброшены",
|
||||
"Empty input!": "Пустой ввод!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Главная страница пользователя",
|
||||
"Homepage - Tooltip": "URL домашней страницы пользователя",
|
||||
"ID card": "ID-карта",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Введите свой адрес электронной почты",
|
||||
"Input your phone number": "Введите ваш номер телефона",
|
||||
"Is admin": "Это администратор",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "Запрещенные пользователи больше не могут выполнять вход в систему",
|
||||
"Is global admin": "Является глобальным администратором",
|
||||
"Is global admin - Tooltip": "Является администратором Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Ключи",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Ссылка",
|
||||
"Location": "Местоположение",
|
||||
"Location - Tooltip": "Город проживания",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Пожалуйста, выберите аватар из ресурсов",
|
||||
"Properties": "Свойства",
|
||||
"Properties - Tooltip": "Свойства пользователя",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Войдите снова Новый",
|
||||
"Reset Email...": "Сбросить электронное письмо...",
|
||||
"Reset Phone...": "Сбросить телефон...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Выберите фотографию...",
|
||||
"Set Password": "Установить пароль",
|
||||
"Set new profile picture": "Установить новое фото профиля",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "Cổng máy chủ",
|
||||
"Server port - Tooltip": "Cổng máy chủ LDAP",
|
||||
"The Auto Sync option will sync all users to specify organization": "Tùy chọn Auto Sync sẽ đồng bộ tất cả người dùng vào tổ chức cụ thể",
|
||||
"UidNumber / Uid": "Số UID / UID"
|
||||
"synced": "synced",
|
||||
"unsynced": "unsynced"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "Tự động đăng nhập",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "Nhà tuyển dụng, chẳng hạn như tên công ty hoặc tổ chức",
|
||||
"Bio": "bản vẻ đời sống",
|
||||
"Bio - Tooltip": "Tự giới thiệu của người dùng",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "Xác thực Captcha không thành công",
|
||||
"Captcha Verify Success": "Xác thực Captcha Thành công",
|
||||
"Country code": "Mã quốc gia",
|
||||
"Country/Region": "Quốc gia / Vùng miền",
|
||||
"Country/Region - Tooltip": "Quốc gia hoặc khu vực",
|
||||
"Edit User": "Chỉnh sửa người dùng",
|
||||
"Education": "Education",
|
||||
"Education - Tooltip": "Education - Tooltip",
|
||||
"Email cannot be empty": "Email không được để trống",
|
||||
"Email/phone reset successfully": "Đặt lại email/điện thoại thành công",
|
||||
"Empty input!": "Đầu vào trống!",
|
||||
"Gender": "Gender",
|
||||
"Gender - Tooltip": "Gender - Tooltip",
|
||||
"Homepage": "Trang chủ của người dùng",
|
||||
"Homepage - Tooltip": "Địa chỉ URL của trang chủ của người dùng",
|
||||
"ID card": "Thẻ căn cước dân sự",
|
||||
"ID card - Tooltip": "ID card - Tooltip",
|
||||
"ID card type": "ID card type",
|
||||
"ID card type - Tooltip": "ID card type - Tooltip",
|
||||
"Input your email": "Nhập địa chỉ email của bạn",
|
||||
"Input your phone number": "Nhập số điện thoại của bạn",
|
||||
"Is admin": "Là quản trị viên",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "Người dùng bị cấm không thể đăng nhập nữa",
|
||||
"Is global admin": "Là quản trị viên toàn cầu",
|
||||
"Is global admin - Tooltip": "Là một quản trị viên của Casdoor",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "Chìa khóa",
|
||||
"Language": "Language",
|
||||
"Language - Tooltip": "Language - Tooltip",
|
||||
"Link": "Liên kết",
|
||||
"Location": "Vị trí",
|
||||
"Location - Tooltip": "Thành phố cư trú",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "Vui lòng chọn avatar từ tài nguyên",
|
||||
"Properties": "Đặc tính",
|
||||
"Properties - Tooltip": "Các thuộc tính của người dùng",
|
||||
"Ranking": "Ranking",
|
||||
"Ranking - Tooltip": "Ranking - Tooltip",
|
||||
"Re-enter New": "Nhập lại New",
|
||||
"Reset Email...": "Thiết lập lại Email...",
|
||||
"Reset Phone...": "Đặt lại điện thoại...",
|
||||
"Score": "Score",
|
||||
"Score - Tooltip": "Score - Tooltip",
|
||||
"Select a photo...": "Chọn một bức ảnh...",
|
||||
"Set Password": "Đặt mật khẩu",
|
||||
"Set new profile picture": "Đặt hình đại diện mới",
|
||||
|
@ -324,7 +324,8 @@
|
||||
"Server port": "端口",
|
||||
"Server port - Tooltip": "LDAP服务器端口号",
|
||||
"The Auto Sync option will sync all users to specify organization": "自动同步选项将同步所有用户以指定组织",
|
||||
"UidNumber / Uid": "Uid号码 / Uid"
|
||||
"synced": "已同步",
|
||||
"unsynced": "未同步"
|
||||
},
|
||||
"login": {
|
||||
"Auto sign in": "下次自动登录",
|
||||
@ -740,18 +741,27 @@
|
||||
"Affiliation - Tooltip": "工作单位,如公司、组织名称",
|
||||
"Bio": "自我介绍",
|
||||
"Bio - Tooltip": "用户的自我介绍",
|
||||
"Birthday": "Birthday",
|
||||
"Birthday - Tooltip": "Birthday - Tooltip",
|
||||
"Captcha Verify Failed": "验证码校验失败",
|
||||
"Captcha Verify Success": "验证码校验成功",
|
||||
"Country code": "国家代码",
|
||||
"Country/Region": "国家/地区",
|
||||
"Country/Region - Tooltip": "国家或地区",
|
||||
"Edit User": "编辑用户",
|
||||
"Education": "教育",
|
||||
"Education - Tooltip": "教育 - Tooltip",
|
||||
"Email cannot be empty": "邮箱不能为空",
|
||||
"Email/phone reset successfully": "邮箱或手机号重置成功",
|
||||
"Empty input!": "输入为空!",
|
||||
"Gender": "性别",
|
||||
"Gender - Tooltip": "性别 - Tooltip",
|
||||
"Homepage": "个人主页",
|
||||
"Homepage - Tooltip": "个人主页链接",
|
||||
"ID card": "身份证号",
|
||||
"ID card - Tooltip": "身份证号 - Tooltip",
|
||||
"ID card type": "身份证类型",
|
||||
"ID card type - Tooltip": "身份证类型 - Tooltip",
|
||||
"Input your email": "请输入邮箱",
|
||||
"Input your phone number": "输入手机号",
|
||||
"Is admin": "是组织管理员",
|
||||
@ -762,7 +772,12 @@
|
||||
"Is forbidden - Tooltip": "被禁用的用户无法再登录",
|
||||
"Is global admin": "是全局管理员",
|
||||
"Is global admin - Tooltip": "是Casdoor平台的管理员",
|
||||
"Is online": "Is online",
|
||||
"Karma": "Karma",
|
||||
"Karma - Tooltip": "Karma - Tooltip",
|
||||
"Keys": "键",
|
||||
"Language": "语言",
|
||||
"Language - Tooltip": "语言 - Tooltip",
|
||||
"Link": "绑定",
|
||||
"Location": "城市",
|
||||
"Location - Tooltip": "居住地址所在的城市",
|
||||
@ -778,9 +793,13 @@
|
||||
"Please select avatar from resources": "从资源中选择...",
|
||||
"Properties": "属性",
|
||||
"Properties - Tooltip": "用户的属性",
|
||||
"Ranking": "排名",
|
||||
"Ranking - Tooltip": "排名 - Tooltip",
|
||||
"Re-enter New": "重复新密码",
|
||||
"Reset Email...": "重置邮箱...",
|
||||
"Reset Phone...": "重置手机号...",
|
||||
"Score": "积分",
|
||||
"Score - Tooltip": "积分 - Tooltip",
|
||||
"Select a photo...": "选择图片...",
|
||||
"Set Password": "设置密码",
|
||||
"Set new profile picture": "设置新头像",
|
||||
|
343
web/yarn.lock
343
web/yarn.lock
@ -37,6 +37,19 @@
|
||||
rc-util "^5.27.0"
|
||||
stylis "^4.0.13"
|
||||
|
||||
"@ant-design/cssinjs@^1.7.1", "@ant-design/cssinjs@^1.8.1":
|
||||
version "1.8.1"
|
||||
resolved "https://registry.yarnpkg.com/@ant-design/cssinjs/-/cssinjs-1.8.1.tgz#326682e779f5cd074668391a6698b50342a07d92"
|
||||
integrity sha512-pOQJV9H9viB6qB9u7hkpKEOIQGx4dd8zjpwzF1v8YNwjffbZTlyUNQYln56gwpFF7SFskpYpnSfgoqTK4sFE/Q==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.11.1"
|
||||
"@emotion/hash" "^0.8.0"
|
||||
"@emotion/unitless" "^0.7.5"
|
||||
classnames "^2.3.1"
|
||||
csstype "^3.0.10"
|
||||
rc-util "^5.27.0"
|
||||
stylis "^4.0.13"
|
||||
|
||||
"@ant-design/icons-svg@^4.2.1":
|
||||
version "4.2.1"
|
||||
resolved "https://registry.yarnpkg.com/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz#8630da8eb4471a4aabdaed7d1ff6a97dcb2cf05a"
|
||||
@ -1557,6 +1570,13 @@
|
||||
dependencies:
|
||||
regenerator-runtime "^0.13.4"
|
||||
|
||||
"@babel/runtime@^7.20.7":
|
||||
version "7.21.0"
|
||||
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
|
||||
integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
|
||||
dependencies:
|
||||
regenerator-runtime "^0.13.11"
|
||||
|
||||
"@babel/template@^7.18.10":
|
||||
version "7.18.10"
|
||||
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
|
||||
@ -1807,6 +1827,11 @@
|
||||
resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.5.0.tgz#6e52b3d1c38d13130101771821e09cdd414a16bc"
|
||||
integrity sha512-tlJpwF40DEQcfR/QF+wNMVyGMaO9FQp6Z1Wahj4Gk3CJQYHwA2xVG7iKDFdW6zuxZY9XWOpGcfNCTsX4McOsOg==
|
||||
|
||||
"@ctrl/tinycolor@^3.6.0":
|
||||
version "3.6.0"
|
||||
resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz#53fa5fe9c34faee89469e48f91d51a3766108bc8"
|
||||
integrity sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==
|
||||
|
||||
"@cypress/request@^2.88.10":
|
||||
version "2.88.11"
|
||||
resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047"
|
||||
@ -2372,6 +2397,15 @@
|
||||
classnames "^2.3.2"
|
||||
rc-util "^5.24.4"
|
||||
|
||||
"@rc-component/portal@^1.1.0":
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/@rc-component/portal/-/portal-1.1.1.tgz#1a30ffe51c240b54360cba8e8bfc5d1f559325c4"
|
||||
integrity sha512-m8w3dFXX0H6UkJ4wtfrSwhe2/6M08uz24HHrF8pWfAXPwA9hwCuTE5per/C86KwNLouRpwFGcr7LfpHaa1F38g==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.18.0"
|
||||
classnames "^2.3.2"
|
||||
rc-util "^5.24.4"
|
||||
|
||||
"@rc-component/tour@~1.1.0":
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/@rc-component/tour/-/tour-1.1.0.tgz#17b43b5c0bdfb6a8ab3027b1977d960952616d9e"
|
||||
@ -2383,6 +2417,30 @@
|
||||
rc-trigger "^5.3.4"
|
||||
rc-util "^5.24.4"
|
||||
|
||||
"@rc-component/tour@~1.8.0":
|
||||
version "1.8.0"
|
||||
resolved "https://registry.yarnpkg.com/@rc-component/tour/-/tour-1.8.0.tgz#fda8b533e36db1d4254e3ffbcefe3395c346eb1c"
|
||||
integrity sha512-rrRGioHTLQlGca27G2+lw7QpRb3uuMYCUIJjj31/B44VCJS0P2tqYhOgtzvWQmaLMlWH3ZlpzotkKX13NT4XEA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.18.0"
|
||||
"@rc-component/portal" "^1.0.0-9"
|
||||
"@rc-component/trigger" "^1.3.6"
|
||||
classnames "^2.3.2"
|
||||
rc-util "^5.24.4"
|
||||
|
||||
"@rc-component/trigger@^1.0.4", "@rc-component/trigger@^1.3.6", "@rc-component/trigger@^1.5.0", "@rc-component/trigger@^1.7.0":
|
||||
version "1.9.0"
|
||||
resolved "https://registry.yarnpkg.com/@rc-component/trigger/-/trigger-1.9.0.tgz#3857b945c98f9e025dfc2b8c4e7a1efc4eab5cb3"
|
||||
integrity sha512-zrs356TGiHb0+JT3ToJPybAwbTkFYZnxfSbGAQZ71BuwavN0+C/HPQ1hr4c80ybjjfdoE9OWpO9PPik5ZjxZag==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.18.3"
|
||||
"@rc-component/portal" "^1.1.0"
|
||||
classnames "^2.3.2"
|
||||
rc-align "^4.0.0"
|
||||
rc-motion "^2.0.0"
|
||||
rc-resize-observer "^1.3.1"
|
||||
rc-util "^5.29.2"
|
||||
|
||||
"@rollup/plugin-babel@^5.2.0":
|
||||
version "5.3.1"
|
||||
resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
|
||||
@ -3445,7 +3503,61 @@ antd-token-previewer@^1.1.0-22:
|
||||
tinycolor2 "^1.4.2"
|
||||
use-debouncy "^4.3.0"
|
||||
|
||||
antd@5.1.6, antd@^5:
|
||||
antd@5.4.2:
|
||||
version "5.4.2"
|
||||
resolved "https://registry.yarnpkg.com/antd/-/antd-5.4.2.tgz#3923b96da76fc7276992e9fc0286ebb3a638e016"
|
||||
integrity sha512-OxXZ7joFf6Um4zeXm07tyJ9WV6eMwUw1KUmewfM/BDceUFVtJVf7YbBTBfX3JTl+jOuSpMSb4naFhOCgVwtyFw==
|
||||
dependencies:
|
||||
"@ant-design/colors" "^7.0.0"
|
||||
"@ant-design/cssinjs" "^1.7.1"
|
||||
"@ant-design/icons" "^5.0.0"
|
||||
"@ant-design/react-slick" "~1.0.0"
|
||||
"@babel/runtime" "^7.18.3"
|
||||
"@ctrl/tinycolor" "^3.6.0"
|
||||
"@rc-component/mutate-observer" "^1.0.0"
|
||||
"@rc-component/tour" "~1.8.0"
|
||||
"@rc-component/trigger" "^1.7.0"
|
||||
classnames "^2.2.6"
|
||||
copy-to-clipboard "^3.2.0"
|
||||
dayjs "^1.11.1"
|
||||
qrcode.react "^3.1.0"
|
||||
rc-cascader "~3.10.0"
|
||||
rc-checkbox "~3.0.0"
|
||||
rc-collapse "~3.5.2"
|
||||
rc-dialog "~9.1.0"
|
||||
rc-drawer "~6.1.1"
|
||||
rc-dropdown "~4.0.0"
|
||||
rc-field-form "~1.29.0"
|
||||
rc-image "~5.16.0"
|
||||
rc-input "~1.0.4"
|
||||
rc-input-number "~7.4.0"
|
||||
rc-mentions "~2.2.0"
|
||||
rc-menu "~9.8.3"
|
||||
rc-motion "^2.6.1"
|
||||
rc-notification "~5.0.0"
|
||||
rc-pagination "~3.3.1"
|
||||
rc-picker "~3.6.1"
|
||||
rc-progress "~3.4.1"
|
||||
rc-rate "~2.10.0"
|
||||
rc-resize-observer "^1.2.0"
|
||||
rc-segmented "~2.1.2"
|
||||
rc-select "~14.4.3"
|
||||
rc-slider "~10.1.0"
|
||||
rc-steps "~6.0.0"
|
||||
rc-switch "~4.0.0"
|
||||
rc-table "~7.31.0"
|
||||
rc-tabs "~12.5.6"
|
||||
rc-textarea "~1.2.2"
|
||||
rc-tooltip "~6.0.0"
|
||||
rc-tree "~5.7.0"
|
||||
rc-tree-select "~5.8.0"
|
||||
rc-trigger "^5.3.4"
|
||||
rc-upload "~4.3.0"
|
||||
rc-util "^5.27.0"
|
||||
scroll-into-view-if-needed "^3.0.3"
|
||||
throttle-debounce "^5.0.0"
|
||||
|
||||
antd@^5:
|
||||
version "5.1.6"
|
||||
resolved "https://registry.yarnpkg.com/antd/-/antd-5.1.6.tgz#9ac912279f9f8e571674b3220b668897b4ffb0b3"
|
||||
integrity sha512-9bn2B4rZ1c7IXtn5U95aNGJXmLOZyL1V5TiGq3pk3S3bGD13BA2eynSI//e3c2FAslZlqQlQEGV+NHms9ygAVA==
|
||||
@ -9619,6 +9731,18 @@ rc-align@^4.0.0:
|
||||
rc-util "^5.3.0"
|
||||
resize-observer-polyfill "^1.5.1"
|
||||
|
||||
rc-cascader@~3.10.0:
|
||||
version "3.10.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-cascader/-/rc-cascader-3.10.2.tgz#9e75e6b7bdd6e531d1f986cda2b68755e21e5b9e"
|
||||
integrity sha512-llKIxAAJZW10BkvhqdNsOSy2AOubj0xGEJFcdo/FP09DrhVI764skhCeBH9WfIhv4X40t9/goDwTsXE8Gul9zA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.12.5"
|
||||
array-tree-filter "^2.1.0"
|
||||
classnames "^2.3.1"
|
||||
rc-select "~14.4.0"
|
||||
rc-tree "~5.7.0"
|
||||
rc-util "^5.6.1"
|
||||
|
||||
rc-cascader@~3.8.0:
|
||||
version "3.8.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-cascader/-/rc-cascader-3.8.0.tgz#5eaca8998b2e3f5692d13f16bfe2346eccc87c6a"
|
||||
@ -9639,6 +9763,15 @@ rc-checkbox@~2.3.0:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.2.1"
|
||||
|
||||
rc-checkbox@~3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-checkbox/-/rc-checkbox-3.0.0.tgz#6b426d16c7d2ed9fee219a1dfb14d2c504a45300"
|
||||
integrity sha512-tOEs1+wWDUei7DuP2EsJCZfam5vxMjKTCGcZdXVgsiOcNszc41Esycbo31P0/jFwUAPmd5oPYFWkcnFUCTLZxA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.3.2"
|
||||
rc-util "^5.25.2"
|
||||
|
||||
rc-collapse@~3.4.2:
|
||||
version "3.4.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-collapse/-/rc-collapse-3.4.2.tgz#1310be7ad4cd0dcfc622c45f6c3b5ffdee403ad7"
|
||||
@ -9650,6 +9783,16 @@ rc-collapse@~3.4.2:
|
||||
rc-util "^5.2.1"
|
||||
shallowequal "^1.1.0"
|
||||
|
||||
rc-collapse@~3.5.2:
|
||||
version "3.5.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-collapse/-/rc-collapse-3.5.2.tgz#abb7d144ad55bd9cbd201fa95bc5b271da2aa7c3"
|
||||
integrity sha512-/TNiT3DW1t3sUCiVD/DPUYooJZ3BLA93/2rZsB3eM2bGJCCla2X9D2E4tgm7LGMQGy5Atb2lMUn2FQuvQNvavQ==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "2.x"
|
||||
rc-motion "^2.3.4"
|
||||
rc-util "^5.27.0"
|
||||
|
||||
rc-dialog@~9.0.0, rc-dialog@~9.0.2:
|
||||
version "9.0.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-dialog/-/rc-dialog-9.0.2.tgz#aadfebdeba145f256c1fac9b9f509f893cdbb5b8"
|
||||
@ -9661,6 +9804,17 @@ rc-dialog@~9.0.0, rc-dialog@~9.0.2:
|
||||
rc-motion "^2.3.0"
|
||||
rc-util "^5.21.0"
|
||||
|
||||
rc-dialog@~9.1.0:
|
||||
version "9.1.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-dialog/-/rc-dialog-9.1.0.tgz#6bf6fcc0453503b7643e54a5a445e835e3850649"
|
||||
integrity sha512-5ry+JABAWEbaKyYsmITtrJbZbJys8CtMyzV8Xn4LYuXMeUx5XVHNyJRoqLFE4AzBuXXzOWeaC49cg+XkxK6kHA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
"@rc-component/portal" "^1.0.0-8"
|
||||
classnames "^2.2.6"
|
||||
rc-motion "^2.3.0"
|
||||
rc-util "^5.21.0"
|
||||
|
||||
rc-drawer@~6.1.1:
|
||||
version "6.1.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-drawer/-/rc-drawer-6.1.2.tgz#032918a21bfa8a7d9e52ada1e7b8ed08c0ae6346"
|
||||
@ -9691,6 +9845,15 @@ rc-field-form@~1.27.0:
|
||||
async-validator "^4.1.0"
|
||||
rc-util "^5.8.0"
|
||||
|
||||
rc-field-form@~1.29.0:
|
||||
version "1.29.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-field-form/-/rc-field-form-1.29.2.tgz#1c07f29eb88c13e2987fd0bd1e977dfea9e789a7"
|
||||
integrity sha512-gXNkthHMUjJ7gDKYmD/lJWJrpMqAjiEPQE4QmlOuZoiHF51LybCL/y+iAmLXpdEjPfJ41WtZBH5hZMUEnEnHXA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.18.0"
|
||||
async-validator "^4.1.0"
|
||||
rc-util "^5.8.0"
|
||||
|
||||
rc-image@~5.13.0:
|
||||
version "5.13.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-image/-/rc-image-5.13.0.tgz#1ed9b852a40b5eff34786ba7d2f0e9d26eeab874"
|
||||
@ -9703,6 +9866,18 @@ rc-image@~5.13.0:
|
||||
rc-motion "^2.6.2"
|
||||
rc-util "^5.0.6"
|
||||
|
||||
rc-image@~5.16.0:
|
||||
version "5.16.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-image/-/rc-image-5.16.0.tgz#79d5864bc1c5d66c4620176cc131d34cd4f4bea8"
|
||||
integrity sha512-11DOye57IgTXh2yTsmxFNynZJG3tdx8RZnnaqb38eYWrBPPyhVHIuURxyiSZ8B68lEUAggR7SBA0Zb95KP/CyQ==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.11.2"
|
||||
"@rc-component/portal" "^1.0.2"
|
||||
classnames "^2.2.6"
|
||||
rc-dialog "~9.1.0"
|
||||
rc-motion "^2.6.2"
|
||||
rc-util "^5.0.6"
|
||||
|
||||
rc-input-number@~7.4.0:
|
||||
version "7.4.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-7.4.0.tgz#b8b4ffa8bbc04198e79ce8b9611756d046d128ec"
|
||||
@ -9722,6 +9897,15 @@ rc-input@~0.1.4:
|
||||
classnames "^2.2.1"
|
||||
rc-util "^5.18.1"
|
||||
|
||||
rc-input@~1.0.0, rc-input@~1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/rc-input/-/rc-input-1.0.4.tgz#2f2c73c884f41e80685bb2eb7b9d5533e8540a77"
|
||||
integrity sha512-clY4oneVHRtKHYf/HCxT/MO+4BGzCIywSNLosXWOm7fcQAS0jQW7n0an8Raa8JMB8kpxc8m28p7SNwFZmlMj6g==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.11.1"
|
||||
classnames "^2.2.1"
|
||||
rc-util "^5.18.1"
|
||||
|
||||
rc-mentions@~1.13.1:
|
||||
version "1.13.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-1.13.1.tgz#c884b70e1505a197f1b32a7c6b39090db6992a72"
|
||||
@ -9734,6 +9918,19 @@ rc-mentions@~1.13.1:
|
||||
rc-trigger "^5.0.4"
|
||||
rc-util "^5.22.5"
|
||||
|
||||
rc-mentions@~2.2.0:
|
||||
version "2.2.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-2.2.0.tgz#27900ec04d067c58205309897efd190f5d8f4ac8"
|
||||
integrity sha512-R7ncCldr02uKgJBBPlXdtnOGQIjZ9C3uoIMi4fabU3CPFdmefYlNF6QM4u2AzgcGt8V0KkoHTN5T6HPdUpet8g==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
"@rc-component/trigger" "^1.5.0"
|
||||
classnames "^2.2.6"
|
||||
rc-input "~1.0.0"
|
||||
rc-menu "~9.8.0"
|
||||
rc-textarea "~1.2.0"
|
||||
rc-util "^5.22.5"
|
||||
|
||||
rc-menu@~9.8.0:
|
||||
version "9.8.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-9.8.0.tgz#d3d820f52ec37e27c5aec42b3cc68bbcfcaba1f7"
|
||||
@ -9759,6 +9956,18 @@ rc-menu@~9.8.2:
|
||||
rc-trigger "^5.1.2"
|
||||
rc-util "^5.27.0"
|
||||
|
||||
rc-menu@~9.8.3:
|
||||
version "9.8.4"
|
||||
resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-9.8.4.tgz#58bf19d471e3c74ff4bcfdb0f02a3826ebe2553b"
|
||||
integrity sha512-lmw2j8I2fhdIzHmC9ajfImfckt0WDb2KVJJBBRIsxPEw2kGkEfjLMUoB1NgiNT/Q5cC8PdjGOGQjHJIJMwyNMw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "2.x"
|
||||
rc-motion "^2.4.3"
|
||||
rc-overflow "^1.2.8"
|
||||
rc-trigger "^5.1.2"
|
||||
rc-util "^5.27.0"
|
||||
|
||||
rc-motion@^2.0.0, rc-motion@^2.0.1, rc-motion@^2.3.0, rc-motion@^2.3.4, rc-motion@^2.4.3, rc-motion@^2.4.4:
|
||||
version "2.6.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-motion/-/rc-motion-2.6.0.tgz#c60c3e7f15257f55a8cd7794a539f0e2cc751399"
|
||||
@ -9815,6 +10024,14 @@ rc-pagination@~3.2.0:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.2.1"
|
||||
|
||||
rc-pagination@~3.3.1:
|
||||
version "3.3.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-pagination/-/rc-pagination-3.3.1.tgz#38e364674adf2a753a4fa26e0d9d88ebe523ed0f"
|
||||
integrity sha512-eI4dSeB3OrFxll7KzWa3ZH63LV2tHxt0AUmZmDwuI6vc3CK5lZhaKUYq0fRowb5586hN+L26j5WZoSz9cwEfjg==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.2.1"
|
||||
|
||||
rc-picker@~3.1.1:
|
||||
version "3.1.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-picker/-/rc-picker-3.1.2.tgz#fac85964007bdc906d33a8400f53798744ab440f"
|
||||
@ -9826,6 +10043,16 @@ rc-picker@~3.1.1:
|
||||
rc-util "^5.4.0"
|
||||
shallowequal "^1.1.0"
|
||||
|
||||
rc-picker@~3.6.1:
|
||||
version "3.6.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-picker/-/rc-picker-3.6.2.tgz#68d13af7d240e792769a306ed6447e66e47040aa"
|
||||
integrity sha512-acLNCi2WTNAuvTtcEzKp72mU15ni0sqrIKVlEcj04KgLZxhlVPMabCS+Sc8VuOCPJbOcW0XeOydbNnJbWTvzxg==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
"@rc-component/trigger" "^1.5.0"
|
||||
classnames "^2.2.1"
|
||||
rc-util "^5.27.0"
|
||||
|
||||
rc-progress@~3.4.1:
|
||||
version "3.4.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-progress/-/rc-progress-3.4.1.tgz#a9ffe099e88a4fc03afb09d8603162bf0760d743"
|
||||
@ -9835,6 +10062,15 @@ rc-progress@~3.4.1:
|
||||
classnames "^2.2.6"
|
||||
rc-util "^5.16.1"
|
||||
|
||||
rc-rate@~2.10.0:
|
||||
version "2.10.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-rate/-/rc-rate-2.10.0.tgz#b16fd906c13bfc26b4776e27a14d13d06d50c635"
|
||||
integrity sha512-TCjEpKPeN1m0EnGDDbb1KyxjNTJRzoReiPdtbrBJEey4Ryf/UGOQ6vqmz2yC6DJdYVDVUoZPdoz043ryh0t/nQ==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.2.5"
|
||||
rc-util "^5.0.1"
|
||||
|
||||
rc-rate@~2.9.0:
|
||||
version "2.9.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-rate/-/rc-rate-2.9.2.tgz#4a58965d1ecf91896ebae01d458b59056df0b4ea"
|
||||
@ -9854,6 +10090,16 @@ rc-resize-observer@^1.0.0, rc-resize-observer@^1.1.0, rc-resize-observer@^1.2.0:
|
||||
rc-util "^5.15.0"
|
||||
resize-observer-polyfill "^1.5.1"
|
||||
|
||||
rc-resize-observer@^1.3.1:
|
||||
version "1.3.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-resize-observer/-/rc-resize-observer-1.3.1.tgz#b61b9f27048001243617b81f95e53d7d7d7a6a3d"
|
||||
integrity sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.20.7"
|
||||
classnames "^2.2.1"
|
||||
rc-util "^5.27.0"
|
||||
resize-observer-polyfill "^1.5.1"
|
||||
|
||||
rc-segmented@~2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-segmented/-/rc-segmented-2.1.0.tgz#0e0afe646c1a0e44a0e18785f518c42633ec8efc"
|
||||
@ -9864,6 +10110,16 @@ rc-segmented@~2.1.0:
|
||||
rc-motion "^2.4.4"
|
||||
rc-util "^5.17.0"
|
||||
|
||||
rc-segmented@~2.1.2:
|
||||
version "2.1.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-segmented/-/rc-segmented-2.1.2.tgz#14c9077a1dae9c2ccb2ef5fbc5662c1c48c7ce8e"
|
||||
integrity sha512-qGo1bCr83ESXpXVOCXjFe1QJlCAQXyi9KCiy8eX3rIMYlTeJr/ftySIaTnYsitL18SvWf5ZEHsfqIWoX0EMfFQ==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.11.1"
|
||||
classnames "^2.2.1"
|
||||
rc-motion "^2.4.4"
|
||||
rc-util "^5.17.0"
|
||||
|
||||
rc-select@~14.2.0:
|
||||
version "14.2.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-14.2.0.tgz#60e83a7d5a5dae7fd9e3918d9b209074ea2c92d4"
|
||||
@ -9877,6 +10133,19 @@ rc-select@~14.2.0:
|
||||
rc-util "^5.16.1"
|
||||
rc-virtual-list "^3.4.13"
|
||||
|
||||
rc-select@~14.4.0, rc-select@~14.4.3:
|
||||
version "14.4.3"
|
||||
resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-14.4.3.tgz#68d7f1b6bcb41543f69901951facd5e097fb835d"
|
||||
integrity sha512-qoz4gNqm3SN+4dYKSCRiRkxKSEEdbS3jC6gdFYoYwEjDZ9sdQFo5jHlfQbF+hhai01HOoj1Hf8Gq6tpUvU+Gmw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
"@rc-component/trigger" "^1.5.0"
|
||||
classnames "2.x"
|
||||
rc-motion "^2.0.1"
|
||||
rc-overflow "^1.0.0"
|
||||
rc-util "^5.16.1"
|
||||
rc-virtual-list "^3.4.13"
|
||||
|
||||
rc-slider@~10.0.0:
|
||||
version "10.0.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-10.0.0.tgz#8ffe1dd3c8799c9d1f81ac808976f18af3dca206"
|
||||
@ -9888,6 +10157,15 @@ rc-slider@~10.0.0:
|
||||
rc-util "^5.18.1"
|
||||
shallowequal "^1.1.0"
|
||||
|
||||
rc-slider@~10.1.0:
|
||||
version "10.1.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-10.1.1.tgz#5e82036e60b61021aba3ea0e353744dd7c74e104"
|
||||
integrity sha512-gn8oXazZISEhnmRinI89Z/JD/joAaM35jp+gDtIVSTD/JJMCCBqThqLk1SVJmvtfeiEF/kKaFY0+qt4SDHFUDw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.2.5"
|
||||
rc-util "^5.27.0"
|
||||
|
||||
rc-steps@~6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-steps/-/rc-steps-6.0.0.tgz#f7148f8097d5d135f19b96c1b4f4b50ad6093753"
|
||||
@ -9917,6 +10195,17 @@ rc-table@~7.30.2:
|
||||
rc-resize-observer "^1.1.0"
|
||||
rc-util "^5.27.1"
|
||||
|
||||
rc-table@~7.31.0:
|
||||
version "7.31.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-table/-/rc-table-7.31.1.tgz#85487b25d98559d6e684b3348e893da1d1f48232"
|
||||
integrity sha512-KZPi35aGpv2VaL1Jbc58FBJo063HtKyVjhOFWX4AkBV7tjHHQokMdUoua5E+GPJh6QZUpK/a8PjKa9IZzPLIEA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
"@rc-component/context" "^1.3.0"
|
||||
classnames "^2.2.5"
|
||||
rc-resize-observer "^1.1.0"
|
||||
rc-util "^5.27.1"
|
||||
|
||||
rc-tabs@~12.5.1:
|
||||
version "12.5.5"
|
||||
resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-12.5.5.tgz#8b34c2ea58f7d9fe141de252f24e69b26df34221"
|
||||
@ -9930,6 +10219,19 @@ rc-tabs@~12.5.1:
|
||||
rc-resize-observer "^1.0.0"
|
||||
rc-util "^5.16.0"
|
||||
|
||||
rc-tabs@~12.5.6:
|
||||
version "12.5.10"
|
||||
resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-12.5.10.tgz#0e41c723fac66c4f0bcad3271429fff6653b0721"
|
||||
integrity sha512-Ay0l0jtd4eXepFH9vWBvinBjqOpqzcsJTerBGwJy435P2S90Uu38q8U/mvc1sxUEVOXX5ZCFbxcWPnfG3dH+tQ==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.11.2"
|
||||
classnames "2.x"
|
||||
rc-dropdown "~4.0.0"
|
||||
rc-menu "~9.8.0"
|
||||
rc-motion "^2.6.2"
|
||||
rc-resize-observer "^1.0.0"
|
||||
rc-util "^5.16.0"
|
||||
|
||||
rc-textarea@^0.4.0, rc-textarea@~0.4.5:
|
||||
version "0.4.7"
|
||||
resolved "https://registry.yarnpkg.com/rc-textarea/-/rc-textarea-0.4.7.tgz#627f662d46f99e0059d1c1ebc8db40c65339fe90"
|
||||
@ -9941,6 +10243,17 @@ rc-textarea@^0.4.0, rc-textarea@~0.4.5:
|
||||
rc-util "^5.24.4"
|
||||
shallowequal "^1.1.0"
|
||||
|
||||
rc-textarea@~1.2.0, rc-textarea@~1.2.2:
|
||||
version "1.2.2"
|
||||
resolved "https://registry.yarnpkg.com/rc-textarea/-/rc-textarea-1.2.2.tgz#111fa90fcedba6d244bc94615b7971b8d8f68815"
|
||||
integrity sha512-S9fkiek5VezfwJe2McEs/NH63xgnnZ4iDh6a8n01mIfzyNJj0HkS0Uz6boyR3/eONYjmKaqhrpuJJuEClRDEBw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "^2.2.1"
|
||||
rc-input "~1.0.4"
|
||||
rc-resize-observer "^1.0.0"
|
||||
rc-util "^5.27.0"
|
||||
|
||||
rc-tooltip@^5.0.1:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-tooltip/-/rc-tooltip-5.1.1.tgz#94178ed162d0252bc4993b725f5dc2ac0fccf154"
|
||||
@ -9958,6 +10271,15 @@ rc-tooltip@~5.2.0:
|
||||
classnames "^2.3.1"
|
||||
rc-trigger "^5.0.0"
|
||||
|
||||
rc-tooltip@~6.0.0:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-tooltip/-/rc-tooltip-6.0.1.tgz#6a5e33bd6c3f6afe8851ea90e7af43e5c26b3cc6"
|
||||
integrity sha512-MdvPlsD1fDSxKp9+HjXrc/CxLmA/s11QYIh1R7aExxfodKP7CZA++DG1AjrW80F8IUdHYcR43HAm0Y2BYPelHA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.11.2"
|
||||
"@rc-component/trigger" "^1.0.4"
|
||||
classnames "^2.3.1"
|
||||
|
||||
rc-tree-select@~5.6.0:
|
||||
version "5.6.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-tree-select/-/rc-tree-select-5.6.0.tgz#f34147f4c14341430bcece481804496d0abd3371"
|
||||
@ -9969,6 +10291,17 @@ rc-tree-select@~5.6.0:
|
||||
rc-tree "~5.7.0"
|
||||
rc-util "^5.16.1"
|
||||
|
||||
rc-tree-select@~5.8.0:
|
||||
version "5.8.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-tree-select/-/rc-tree-select-5.8.0.tgz#b3d861b7b2111d3a96b56040b851d5e280d71c95"
|
||||
integrity sha512-NozrkVLR8k3cpx8R5/YFmJMptgOacR5zEQHZGMQg31bD6jEgGiJeOn2cGRI6x0Xdyvi1CSqCbUsIoqiej74wzw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.10.1"
|
||||
classnames "2.x"
|
||||
rc-select "~14.4.0"
|
||||
rc-tree "~5.7.0"
|
||||
rc-util "^5.16.1"
|
||||
|
||||
rc-tree@~5.7.0:
|
||||
version "5.7.1"
|
||||
resolved "https://registry.yarnpkg.com/rc-tree/-/rc-tree-5.7.1.tgz#c642b80ad35fef3bf5c63c35382209c84600187e"
|
||||
@ -10046,6 +10379,14 @@ rc-util@^5.21.5, rc-util@^5.27.0, rc-util@^5.27.1:
|
||||
"@babel/runtime" "^7.18.3"
|
||||
react-is "^16.12.0"
|
||||
|
||||
rc-util@^5.25.2, rc-util@^5.29.2:
|
||||
version "5.30.0"
|
||||
resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-5.30.0.tgz#76ae9019ff72a5b519ce51465cd77b2e451207e3"
|
||||
integrity sha512-uaWpF/CZGyXuhQG71MWxkU+0bWkPEgqZUxEv251Cu7p3kpHDNm5+Ygu/U8ux0a/zbfGW8PsKcJL0XVBOMrlIZg==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.18.3"
|
||||
react-is "^16.12.0"
|
||||
|
||||
rc-virtual-list@^3.4.13:
|
||||
version "3.4.13"
|
||||
resolved "https://registry.yarnpkg.com/rc-virtual-list/-/rc-virtual-list-3.4.13.tgz#20acc934b263abcf7b7c161f50ef82281b2f7e8d"
|
||||
|
Loading…
x
Reference in New Issue
Block a user