+
{isRunning && !outputs && (
)}
{!isRunning && error && (
-
+
{error}
)}
- {!isRunning && !outputs && !error && (
+ {!isRunning && !outputs && !error && !allFiles?.length && (
{t('runLog.resultEmpty.title')}
@@ -49,18 +48,25 @@ const ResultText: FC
= ({
)}
- {outputs && (
-
-
- {!!allFiles?.length && (
-
+ {(outputs || !!allFiles?.length) && (
+ <>
+ {outputs && (
+
+
+
)}
-
+ {!!allFiles?.length && allFiles.map(item => (
+
+ ))}
+ >
)}
)
diff --git a/web/i18n/auto-gen-i18n.js b/web/i18n/auto-gen-i18n.js
index c51bc53af31dc8..6b9c5e52f77c90 100644
--- a/web/i18n/auto-gen-i18n.js
+++ b/web/i18n/auto-gen-i18n.js
@@ -29,9 +29,17 @@ async function translateMissingKeyDeeply(sourceObj, targetObject, toLanguage) {
await translateMissingKeyDeeply(sourceObj[key], targetObject[key], toLanguage)
}
else {
- const { translation } = await translate(sourceObj[key], null, languageKeyMap[toLanguage])
- targetObject[key] = translation
- // console.log(translation)
+ try {
+ if (!sourceObj[key]) {
+ targetObject[key] = ''
+ return
+ }
+ const { translation } = await translate(sourceObj[key], null, languageKeyMap[toLanguage])
+ targetObject[key] = translation
+ }
+ catch (e) {
+ console.error(`Error translating ${sourceObj[key]}(${key}) to ${toLanguage}`)
+ }
}
}
else if (typeof sourceObj[key] === 'object') {
diff --git a/web/i18n/de-DE/app-log.ts b/web/i18n/de-DE/app-log.ts
index 0a0e740578bdef..9ddab6ad600a95 100644
--- a/web/i18n/de-DE/app-log.ts
+++ b/web/i18n/de-DE/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Konversationsprotokoll',
workflowTitle: 'Protokolldetail',
+ fileListLabel: 'Details zur Datei',
+ fileListDetail: 'Detail',
},
promptLog: 'Prompt-Protokoll',
agentLog: 'Agentenprotokoll',
diff --git a/web/i18n/de-DE/dataset-creation.ts b/web/i18n/de-DE/dataset-creation.ts
index 18f08814cb93ad..b27a732d1877c3 100644
--- a/web/i18n/de-DE/dataset-creation.ts
+++ b/web/i18n/de-DE/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
websiteSource: 'Preprocess-Website',
webpageUnit: 'Seiten',
separatorTip: 'Ein Trennzeichen ist das Zeichen, das zum Trennen von Text verwendet wird. \\n\\n und \\n sind häufig verwendete Trennzeichen zum Trennen von Absätzen und Zeilen. In Kombination mit Kommas (\\n\\n,\\n) werden Absätze nach Zeilen segmentiert, wenn die maximale Blocklänge überschritten wird. Sie können auch spezielle, von Ihnen selbst definierte Trennzeichen verwenden (z. B. ***).',
- maxLengthCheck: 'Die maximale Stücklänge sollte weniger als 4000 betragen',
+ maxLengthCheck: 'Die maximale Stücklänge sollte weniger als {{limit}} betragen',
},
stepThree: {
creationTitle: '🎉 Wissen erstellt',
diff --git a/web/i18n/de-DE/explore.ts b/web/i18n/de-DE/explore.ts
index 1e6f8c80d7c3ba..366726d3d1045b 100644
--- a/web/i18n/de-DE/explore.ts
+++ b/web/i18n/de-DE/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Übersetzen',
Programming: 'Programmieren',
HR: 'Personalwesen',
+ Agent: 'Agent',
+ Workflow: 'Arbeitsablauf',
},
}
diff --git a/web/i18n/de-DE/workflow.ts b/web/i18n/de-DE/workflow.ts
index 01b6cc653f071a..55d758b7abb291 100644
--- a/web/i18n/de-DE/workflow.ts
+++ b/web/i18n/de-DE/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Löschen',
'setVariable': 'Variable setzen',
'variable': 'Variable',
+ 'operations': {
+ 'title': 'Operation',
+ 'clear': 'Klar',
+ 'over-write': 'Überschreiben',
+ 'set': 'Garnitur',
+ '-=': '-=',
+ '+=': '+=',
+ '/=': '/=',
+ 'append': 'Anfügen',
+ 'extend': 'Ausdehnen',
+ '*=': '*=',
+ 'overwrite': 'Überschreiben',
+ },
+ 'setParameter': 'Parameter setzen...',
+ 'noVarTip': 'Klicken Sie auf die Schaltfläche "+", um Variablen hinzuzufügen',
+ 'variables': 'Variablen',
+ 'noAssignedVars': 'Keine verfügbaren zugewiesenen Variablen',
+ 'selectAssignedVariable': 'Zugewiesene Variable auswählen...',
+ 'varNotSet': 'Variable NICHT gesetzt',
+ 'assignedVarsDescription': 'Zugewiesene Variablen müssen beschreibbare Variablen sein, z. B. Konversationsvariablen.',
},
tool: {
toAuthorize: 'Autorisieren',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Gestoppt von {{user}}',
},
+ variableReference: {
+ noAvailableVars: 'Keine verfügbaren Variablen',
+ conversationVars: 'Konversations-Variablen',
+ noAssignedVars: 'Keine verfügbaren zugewiesenen Variablen',
+ noVarsForOperation: 'Es stehen keine Variablen für die Zuweisung mit der ausgewählten Operation zur Verfügung.',
+ assignedVarsDescription: 'Zugewiesene Variablen müssen beschreibbare Variablen sein, z. B.',
+ },
}
export default translation
diff --git a/web/i18n/en-US/app-log.ts b/web/i18n/en-US/app-log.ts
index a53da966bed39f..587c305e8da26b 100644
--- a/web/i18n/en-US/app-log.ts
+++ b/web/i18n/en-US/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Conversation Log',
workflowTitle: 'Log Detail',
+ fileListLabel: 'File Details',
+ fileListDetail: 'Detail',
},
promptLog: 'Prompt Log',
agentLog: 'Agent Log',
diff --git a/web/i18n/en-US/app.ts b/web/i18n/en-US/app.ts
index 704f37bf521c83..c23767af72cdfd 100644
--- a/web/i18n/en-US/app.ts
+++ b/web/i18n/en-US/app.ts
@@ -8,6 +8,10 @@ const translation = {
completion: 'Completion',
},
duplicate: 'Duplicate',
+ mermaid: {
+ handDrawn: 'Hand Drawn',
+ classic: 'Classic',
+ },
duplicateTitle: 'Duplicate App',
export: 'Export DSL',
exportFailed: 'Export DSL failed.',
@@ -97,6 +101,7 @@ const translation = {
switchLabel: 'The app copy to be created',
removeOriginal: 'Delete the original app',
switchStart: 'Start switch',
+ openInExplore: 'Open in Explore',
typeSelector: {
all: 'ALL Types',
chatbot: 'Chatbot',
diff --git a/web/i18n/en-US/dataset-creation.ts b/web/i18n/en-US/dataset-creation.ts
index de885671a7bff6..6caf0056f81eb0 100644
--- a/web/i18n/en-US/dataset-creation.ts
+++ b/web/i18n/en-US/dataset-creation.ts
@@ -103,7 +103,7 @@ const translation = {
separatorTip: 'A delimiter is the character used to separate text. \\n\\n and \\n are commonly used delimiters for separating paragraphs and lines. Combined with commas (\\n\\n,\\n), paragraphs will be segmented by lines when exceeding the maximum chunk length. You can also use special delimiters defined by yourself (e.g. ***).',
separatorPlaceholder: '\\n\\n for separating paragraphs; \\n for separating lines',
maxLength: 'Maximum chunk length',
- maxLengthCheck: 'Maximum chunk length should be less than 4000',
+ maxLengthCheck: 'Maximum chunk length should be less than {{limit}}',
overlap: 'Chunk overlap',
overlapTip: 'Setting the chunk overlap can maintain the semantic relevance between them, enhancing the retrieve effect. It is recommended to set 10%-25% of the maximum chunk size.',
overlapCheck: 'chunk overlap should not bigger than maximum chunk length',
diff --git a/web/i18n/en-US/explore.ts b/web/i18n/en-US/explore.ts
index c996f51820f5db..d4368fb171438d 100644
--- a/web/i18n/en-US/explore.ts
+++ b/web/i18n/en-US/explore.ts
@@ -30,11 +30,13 @@ const translation = {
nameRequired: 'App name is required',
},
category: {
+ Agent: 'Agent',
Assistant: 'Assistant',
Writing: 'Writing',
Translate: 'Translate',
Programming: 'Programming',
HR: 'HR',
+ Workflow: 'Workflow',
},
}
diff --git a/web/i18n/en-US/workflow.ts b/web/i18n/en-US/workflow.ts
index 4ed9fa88ad2d3b..b386fb2d2b7695 100644
--- a/web/i18n/en-US/workflow.ts
+++ b/web/i18n/en-US/workflow.ts
@@ -32,6 +32,7 @@ const translation = {
restore: 'Restore',
runApp: 'Run App',
batchRunApp: 'Batch Run App',
+ openInExplore: 'Open in Explore',
accessAPIReference: 'Access API Reference',
embedIntoSite: 'Embed Into Site',
addTitle: 'Add title...',
@@ -260,6 +261,13 @@ const translation = {
zoomTo100: 'Zoom to 100%',
zoomToFit: 'Zoom to Fit',
},
+ variableReference: {
+ noAvailableVars: 'No available variables',
+ noVarsForOperation: 'There are no variables available for assignment with the selected operation.',
+ noAssignedVars: 'No available assigned variables',
+ assignedVarsDescription: 'Assigned variables must be writable variables, such as ',
+ conversationVars: 'conversation variables',
+ },
panel: {
userInputField: 'User Input Field',
changeBlock: 'Change Block',
@@ -491,6 +499,9 @@ const translation = {
},
assigner: {
'assignedVariable': 'Assigned Variable',
+ 'varNotSet': 'Variable NOT Set',
+ 'variables': 'Variables',
+ 'noVarTip': 'Click the "+" button to add variables',
'writeMode': 'Write Mode',
'writeModeTip': 'Append mode: Available for array variables only.',
'over-write': 'Overwrite',
@@ -498,7 +509,24 @@ const translation = {
'plus': 'Plus',
'clear': 'Clear',
'setVariable': 'Set Variable',
+ 'selectAssignedVariable': 'Select assigned variable...',
+ 'setParameter': 'Set parameter...',
+ 'operations': {
+ 'title': 'Operation',
+ 'over-write': 'Overwrite',
+ 'overwrite': 'Overwrite',
+ 'set': 'Set',
+ 'clear': 'Clear',
+ 'extend': 'Extend',
+ 'append': 'Append',
+ '+=': '+=',
+ '-=': '-=',
+ '*=': '*=',
+ '/=': '/=',
+ },
'variable': 'Variable',
+ 'noAssignedVars': 'No available assigned variables',
+ 'assignedVarsDescription': 'Assigned variables must be writable variables, such as conversation variables.',
},
tool: {
toAuthorize: 'To authorize',
diff --git a/web/i18n/es-ES/app-log.ts b/web/i18n/es-ES/app-log.ts
index 59da13baeec5cb..84b6d1c6a5c17e 100644
--- a/web/i18n/es-ES/app-log.ts
+++ b/web/i18n/es-ES/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Registro de Conversación',
workflowTitle: 'Detalle del Registro',
+ fileListLabel: 'Detalles del archivo',
+ fileListDetail: 'Detalle',
},
promptLog: 'Registro de Indicación',
agentLog: 'Registro de Agente',
diff --git a/web/i18n/es-ES/dataset-creation.ts b/web/i18n/es-ES/dataset-creation.ts
index 02415b4359e533..2b6cac1b0ee0ad 100644
--- a/web/i18n/es-ES/dataset-creation.ts
+++ b/web/i18n/es-ES/dataset-creation.ts
@@ -147,7 +147,7 @@ const translation = {
retrievalSettingTip: 'Para cambiar el método de índice, por favor ve a la ',
datasetSettingLink: 'configuración del conocimiento.',
separatorTip: 'Un delimitador es el carácter que se utiliza para separar el texto. \\n\\n y \\n son delimitadores comúnmente utilizados para separar párrafos y líneas. Combinado con comas (\\n\\n,\\n), los párrafos se segmentarán por líneas cuando excedan la longitud máxima del fragmento. También puede utilizar delimitadores especiales definidos por usted mismo (por ejemplo, ***).',
- maxLengthCheck: 'La longitud máxima del fragmento debe ser inferior a 4000',
+ maxLengthCheck: 'La longitud máxima del fragmento debe ser inferior a {{limit}}',
},
stepThree: {
creationTitle: '🎉 Conocimiento creado',
diff --git a/web/i18n/es-ES/explore.ts b/web/i18n/es-ES/explore.ts
index 5f85d423629bf0..74274d4699dec8 100644
--- a/web/i18n/es-ES/explore.ts
+++ b/web/i18n/es-ES/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Traducción',
Programming: 'Programación',
HR: 'Recursos Humanos',
+ Agent: 'Agente',
+ Workflow: 'Flujo de trabajo',
},
}
diff --git a/web/i18n/es-ES/workflow.ts b/web/i18n/es-ES/workflow.ts
index 1772d4c2e81702..7f4eb724a8c163 100644
--- a/web/i18n/es-ES/workflow.ts
+++ b/web/i18n/es-ES/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Limpiar',
'setVariable': 'Establecer Variable',
'variable': 'Variable',
+ 'operations': {
+ 'clear': 'Claro',
+ '*=': '*=',
+ '-=': '-=',
+ 'title': 'Operación',
+ 'extend': 'Extender',
+ 'append': 'Añadir',
+ '+=': '+=',
+ 'over-write': 'Sobrescribir',
+ 'overwrite': 'Sobrescribir',
+ '/=': '/=',
+ 'set': 'Poner',
+ },
+ 'variables': 'Variables',
+ 'setParameter': 'Establecer parámetro...',
+ 'noVarTip': 'Haga clic en el botón "+" para agregar variables',
+ 'varNotSet': 'Variable NO establecida',
+ 'noAssignedVars': 'No hay variables asignadas disponibles',
+ 'selectAssignedVariable': 'Seleccione la variable asignada...',
+ 'assignedVarsDescription': 'Las variables asignadas deben ser variables grabables, como las variables de conversación.',
},
tool: {
toAuthorize: 'Para autorizar',
@@ -634,6 +654,13 @@ const translation = {
tracing: {
stopBy: 'Pásate por {{usuario}}',
},
+ variableReference: {
+ noAvailableVars: 'No hay variables disponibles',
+ assignedVarsDescription: 'Las variables asignadas deben ser variables grabables, como',
+ noVarsForOperation: 'No hay variables disponibles para la asignación con la operación seleccionada.',
+ noAssignedVars: 'No hay variables asignadas disponibles',
+ conversationVars: 'Variables de conversación',
+ },
}
export default translation
diff --git a/web/i18n/fa-IR/app-log.ts b/web/i18n/fa-IR/app-log.ts
index 85ad79cabff137..8c70c6a1c05964 100644
--- a/web/i18n/fa-IR/app-log.ts
+++ b/web/i18n/fa-IR/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'لاگ مکالمه',
workflowTitle: 'جزئیات لاگ',
+ fileListLabel: 'جزئیات فایل',
+ fileListDetail: 'جزئیات',
},
promptLog: 'لاگ درخواست',
agentLog: 'لاگ عامل',
diff --git a/web/i18n/fa-IR/dataset-creation.ts b/web/i18n/fa-IR/dataset-creation.ts
index 195d968228d250..0b5f42827eb1d0 100644
--- a/web/i18n/fa-IR/dataset-creation.ts
+++ b/web/i18n/fa-IR/dataset-creation.ts
@@ -147,7 +147,7 @@ const translation = {
retrievalSettingTip: 'برای تغییر روش شاخص، لطفاً به',
datasetSettingLink: 'تنظیمات دانش بروید.',
separatorTip: 'جداکننده نویسه ای است که برای جداسازی متن استفاده می شود. \\n\\n و \\n معمولا برای جداسازی پاراگراف ها و خطوط استفاده می شوند. همراه با کاما (\\n\\n,\\n)، پاراگراف ها زمانی که از حداکثر طول تکه فراتر می روند، با خطوط تقسیم بندی می شوند. همچنین می توانید از جداکننده های خاصی که توسط خودتان تعریف شده اند استفاده کنید (مثلا ***).',
- maxLengthCheck: 'حداکثر طول تکه باید کمتر از 4000 باشد',
+ maxLengthCheck: 'حداکثر طول تکه باید کمتر از {{limit}} باشد',
},
stepThree: {
creationTitle: ' دانش ایجاد شد',
diff --git a/web/i18n/fa-IR/explore.ts b/web/i18n/fa-IR/explore.ts
index 404a9f2593c27b..f127e5cc62cd4a 100644
--- a/web/i18n/fa-IR/explore.ts
+++ b/web/i18n/fa-IR/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'ترجمه',
Programming: 'برنامهنویسی',
HR: 'منابع انسانی',
+ Agent: 'عامل',
+ Workflow: 'گردش',
},
}
diff --git a/web/i18n/fa-IR/workflow.ts b/web/i18n/fa-IR/workflow.ts
index 1ffb9c856c91c7..e44a0729f01f76 100644
--- a/web/i18n/fa-IR/workflow.ts
+++ b/web/i18n/fa-IR/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'پاک کردن',
'setVariable': 'تنظیم متغیر',
'variable': 'متغیر',
+ 'operations': {
+ 'clear': 'روشن',
+ 'over-write': 'بازنویسی',
+ 'set': 'مجموعه',
+ '*=': '*=',
+ 'overwrite': 'بازنویسی',
+ '+=': '+=',
+ 'title': 'عملیات',
+ 'extend': 'گسترش',
+ '-=': '-=',
+ 'append': 'الحاق',
+ '/=': '/=',
+ },
+ 'noVarTip': 'برای افزودن متغیرها روی دکمه "+" کلیک کنید',
+ 'selectAssignedVariable': 'متغیر اختصاص داده شده را انتخاب کنید...',
+ 'noAssignedVars': 'هیچ متغیر اختصاص داده شده در دسترس نیست',
+ 'setParameter': 'پارامتر را تنظیم کنید...',
+ 'assignedVarsDescription': 'متغیرهای اختصاص داده شده باید متغیرهای قابل نوشتن مانند متغیرهای مکالمه باشند.',
+ 'variables': 'متغیرهای',
+ 'varNotSet': 'متغیر NOT Set',
},
tool: {
toAuthorize: 'برای مجوز دادن',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'متوقف شده توسط {{user}}',
},
+ variableReference: {
+ noAvailableVars: 'هیچ متغیری در دسترس نیست',
+ conversationVars: 'متغیرهای مکالمه',
+ noVarsForOperation: 'هیچ متغیری برای تخصیص با عملیات انتخاب شده در دسترس نیست.',
+ assignedVarsDescription: 'متغیرهای اختصاص داده شده باید متغیرهای قابل نوشتن باشند، مانند',
+ noAssignedVars: 'هیچ متغیر اختصاص داده شده در دسترس نیست',
+ },
}
export default translation
diff --git a/web/i18n/fr-FR/app-log.ts b/web/i18n/fr-FR/app-log.ts
index ffff7a1b28c6ab..ca375a288fec3f 100644
--- a/web/i18n/fr-FR/app-log.ts
+++ b/web/i18n/fr-FR/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Journal de conversation',
workflowTitle: 'Détail du journal',
+ fileListDetail: 'Détail',
+ fileListLabel: 'Détails du fichier',
},
promptLog: 'Journal de consigne',
agentLog: 'Journal des agents',
diff --git a/web/i18n/fr-FR/dataset-creation.ts b/web/i18n/fr-FR/dataset-creation.ts
index 0c866d51e6f94c..c777af4fbecaca 100644
--- a/web/i18n/fr-FR/dataset-creation.ts
+++ b/web/i18n/fr-FR/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
webpageUnit: 'Pages',
websiteSource: 'Site web de prétraitement',
separatorTip: 'Un délimiteur est le caractère utilisé pour séparer le texte. \\n\\n et \\n sont des délimiteurs couramment utilisés pour séparer les paragraphes et les lignes. Combiné à des virgules (\\n\\n,\\n), les paragraphes seront segmentés par des lignes lorsqu’ils dépasseront la longueur maximale des morceaux. Vous pouvez également utiliser des délimiteurs spéciaux définis par vous-même (par exemple ***).',
- maxLengthCheck: 'La longueur maximale des morceaux doit être inférieure à 4000',
+ maxLengthCheck: 'La longueur maximale des morceaux doit être inférieure à {{limit}}',
},
stepThree: {
creationTitle: '🎉 Connaissance créée',
diff --git a/web/i18n/fr-FR/explore.ts b/web/i18n/fr-FR/explore.ts
index fe65bea75b073c..627ed03e88c3c3 100644
--- a/web/i18n/fr-FR/explore.ts
+++ b/web/i18n/fr-FR/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Traduire',
Programming: 'Programmation',
HR: 'RH',
+ Agent: 'Agent',
+ Workflow: 'Flux de travail',
},
}
diff --git a/web/i18n/fr-FR/workflow.ts b/web/i18n/fr-FR/workflow.ts
index 85b0ad0db17076..eeed6cc4454c32 100644
--- a/web/i18n/fr-FR/workflow.ts
+++ b/web/i18n/fr-FR/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Effacer',
'setVariable': 'Définir Variable',
'variable': 'Variable',
+ 'operations': {
+ 'clear': 'Clair',
+ '*=': '*=',
+ '-=': '-=',
+ 'extend': 'Étendre',
+ '+=': '+=',
+ 'over-write': 'Écraser',
+ 'set': 'Poser',
+ 'append': 'Ajouter',
+ 'title': 'Opération',
+ '/=': '/=',
+ 'overwrite': 'Écraser',
+ },
+ 'assignedVarsDescription': 'Les variables affectées doivent être accessibles en écriture, telles que des variables de conversation.',
+ 'noVarTip': 'Cliquez sur le bouton « + » pour ajouter des variables',
+ 'variables': 'Variables',
+ 'setParameter': 'Définir le paramètre...',
+ 'noAssignedVars': 'Aucune variable affectée disponible',
+ 'varNotSet': 'Variable NON définie',
+ 'selectAssignedVariable': 'Sélectionner la variable affectée...',
},
tool: {
toAuthorize: 'Autoriser',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Arrêté par {{user}}',
},
+ variableReference: {
+ noAssignedVars: 'Aucune variable affectée disponible',
+ noVarsForOperation: 'Aucune variable n’est disponible pour l’affectation avec l’opération sélectionnée.',
+ noAvailableVars: 'Aucune variable disponible',
+ assignedVarsDescription: 'Les variables affectées doivent être des variables accessibles en écriture, telles que',
+ conversationVars: 'Variables de conversation',
+ },
}
export default translation
diff --git a/web/i18n/hi-IN/app-log.ts b/web/i18n/hi-IN/app-log.ts
index 668ae12d65beca..4bb441e0093d9f 100644
--- a/web/i18n/hi-IN/app-log.ts
+++ b/web/i18n/hi-IN/app-log.ts
@@ -81,6 +81,8 @@ const translation = {
runDetail: {
title: 'बातचीत लॉग',
workflowTitle: 'लॉग विवरण',
+ fileListDetail: 'विस्तार',
+ fileListLabel: 'फ़ाइल विवरण',
},
promptLog: 'प्रॉम्प्ट लॉग',
agentLog: 'एजेंट लॉग',
diff --git a/web/i18n/hi-IN/dataset-creation.ts b/web/i18n/hi-IN/dataset-creation.ts
index a242eebb24c9e3..51063dcb143f1a 100644
--- a/web/i18n/hi-IN/dataset-creation.ts
+++ b/web/i18n/hi-IN/dataset-creation.ts
@@ -164,7 +164,7 @@ const translation = {
retrievalSettingTip: 'इंडेक्स विधि बदलने के लिए, कृपया जाएं ',
datasetSettingLink: 'ज्ञान सेटिंग्स।',
separatorTip: 'एक सीमांकक पाठ को अलग करने के लिए उपयोग किया जाने वाला वर्ण है। \\n\\n और \\n आमतौर पर पैराग्राफ और लाइनों को अलग करने के लिए उपयोग किए जाने वाले सीमांकक हैं। अल्पविराम (\\n\\n,\\n) के साथ संयुक्त, अधिकतम खंड लंबाई से अधिक होने पर अनुच्छेदों को पंक्तियों द्वारा खंडित किया जाएगा। आप स्वयं द्वारा परिभाषित विशेष सीमांकक का भी उपयोग कर सकते हैं (उदा. ***).',
- maxLengthCheck: 'अधिकतम चंक लंबाई 4000 से कम होनी चाहिए',
+ maxLengthCheck: 'अधिकतम चंक लंबाई {{limit}} से कम होनी चाहिए',
},
stepThree: {
creationTitle: '🎉 ज्ञान बनाया गया',
diff --git a/web/i18n/hi-IN/explore.ts b/web/i18n/hi-IN/explore.ts
index 53475d81bf568d..145c4e0e4f1bda 100644
--- a/web/i18n/hi-IN/explore.ts
+++ b/web/i18n/hi-IN/explore.ts
@@ -36,6 +36,8 @@ const translation = {
Translate: 'अनुवाद',
Programming: 'प्रोग्रामिंग',
HR: 'मानव संसाधन',
+ Workflow: 'कार्यप्रवाह',
+ Agent: 'आढ़तिया',
},
}
diff --git a/web/i18n/hi-IN/workflow.ts b/web/i18n/hi-IN/workflow.ts
index cf4475e990596d..d8ceae2fe9e04c 100644
--- a/web/i18n/hi-IN/workflow.ts
+++ b/web/i18n/hi-IN/workflow.ts
@@ -516,6 +516,26 @@ const translation = {
'clear': 'साफ़ करें',
'setVariable': 'चर सेट करें',
'variable': 'चर',
+ 'operations': {
+ 'clear': 'स्पष्ट',
+ '/=': '/=',
+ '*=': '*=',
+ 'over-write': 'अधिलेखित',
+ 'title': 'परिचालन',
+ '+=': '+=',
+ 'overwrite': 'अधिलेखित',
+ 'set': 'अस्त हो',
+ 'extend': 'पसार',
+ '-=': '-=',
+ 'append': 'संलग्न',
+ },
+ 'setParameter': 'पैरामीटर सेट करें...',
+ 'noVarTip': 'चर जोड़ने के लिए "+" बटन पर क्लिक करें',
+ 'variables': 'चर',
+ 'selectAssignedVariable': 'असाइन किए गए चर का चयन करें...',
+ 'varNotSet': 'चर सेट नहीं',
+ 'assignedVarsDescription': 'असाइन किए गए चर लिखने योग्य चर होने चाहिए, जैसे वार्तालाप चर।',
+ 'noAssignedVars': 'कोई उपलब्ध असाइन किए गए चर नहीं',
},
tool: {
toAuthorize: 'अधिकृत करने के लिए',
@@ -651,6 +671,13 @@ const translation = {
tracing: {
stopBy: '{{user}} द्वारा रोका गया',
},
+ variableReference: {
+ conversationVars: 'बातचीत चर',
+ noAvailableVars: 'कोई उपलब्ध चर नहीं',
+ assignedVarsDescription: 'असाइन किए गए चर लिखने योग्य चर होने चाहिए, जैसे',
+ noVarsForOperation: 'चयनित कार्रवाई के साथ असाइनमेंट के लिए कोई चर उपलब्ध नहीं हैं.',
+ noAssignedVars: 'कोई उपलब्ध असाइन किए गए चर नहीं',
+ },
}
export default translation
diff --git a/web/i18n/it-IT/app-log.ts b/web/i18n/it-IT/app-log.ts
index bc96ea0180eb02..29971c313d38d3 100644
--- a/web/i18n/it-IT/app-log.ts
+++ b/web/i18n/it-IT/app-log.ts
@@ -83,6 +83,8 @@ const translation = {
runDetail: {
title: 'Registro Conversazione',
workflowTitle: 'Dettagli Registro',
+ fileListDetail: 'Dettaglio',
+ fileListLabel: 'Dettagli del file',
},
promptLog: 'Registro Prompt',
agentLog: 'Registro Agente',
diff --git a/web/i18n/it-IT/dataset-creation.ts b/web/i18n/it-IT/dataset-creation.ts
index ebbe34f143ef93..af174ce41f1dee 100644
--- a/web/i18n/it-IT/dataset-creation.ts
+++ b/web/i18n/it-IT/dataset-creation.ts
@@ -167,7 +167,7 @@ const translation = {
retrievalSettingTip: 'Per cambiare il metodo di indicizzazione, vai alle ',
datasetSettingLink: 'impostazioni della Conoscenza.',
separatorTip: 'Un delimitatore è il carattere utilizzato per separare il testo. \\n\\n e \\n sono delimitatori comunemente usati per separare paragrafi e righe. In combinazione con le virgole (\\n\\n,\\n), i paragrafi verranno segmentati per righe quando superano la lunghezza massima del blocco. È inoltre possibile utilizzare delimitatori speciali definiti dall\'utente (ad es. ***).',
- maxLengthCheck: 'La lunghezza massima del blocco deve essere inferiore a 4000',
+ maxLengthCheck: 'La lunghezza massima del blocco deve essere inferiore a {{limit}}',
},
stepThree: {
creationTitle: '🎉 Conoscenza creata',
diff --git a/web/i18n/it-IT/explore.ts b/web/i18n/it-IT/explore.ts
index d96adbc85e8fb2..60508028a19eae 100644
--- a/web/i18n/it-IT/explore.ts
+++ b/web/i18n/it-IT/explore.ts
@@ -36,6 +36,8 @@ const translation = {
Translate: 'Traduzione',
Programming: 'Programmazione',
HR: 'Risorse Umane',
+ Workflow: 'Flusso di lavoro',
+ Agent: 'Agente',
},
}
diff --git a/web/i18n/it-IT/workflow.ts b/web/i18n/it-IT/workflow.ts
index a142b5b348b9aa..9798b60cf1f9c2 100644
--- a/web/i18n/it-IT/workflow.ts
+++ b/web/i18n/it-IT/workflow.ts
@@ -520,6 +520,26 @@ const translation = {
'clear': 'Cancellare',
'setVariable': 'Imposta Variabile',
'variable': 'Variabile',
+ 'operations': {
+ '-=': '-=',
+ 'overwrite': 'Sovrascrivere',
+ '+=': '+=',
+ '*=': '*=',
+ 'append': 'Aggiungere',
+ 'set': 'Mettere',
+ 'title': 'Operazione',
+ '/=': '/=',
+ 'over-write': 'Sovrascrivere',
+ 'extend': 'Estendere',
+ 'clear': 'Chiaro',
+ },
+ 'setParameter': 'Imposta parametro...',
+ 'variables': 'Variabili',
+ 'noAssignedVars': 'Nessuna variabile assegnata disponibile',
+ 'assignedVarsDescription': 'Le variabili assegnate devono essere variabili scrivibili, ad esempio variabili di conversazione.',
+ 'varNotSet': 'Variabile NON impostata',
+ 'selectAssignedVariable': 'Seleziona variabile assegnata...',
+ 'noVarTip': 'Fare clic sul pulsante "+" per aggiungere variabili',
},
tool: {
toAuthorize: 'Per autorizzare',
@@ -658,6 +678,13 @@ const translation = {
tracing: {
stopBy: 'Interrotto da {{user}}',
},
+ variableReference: {
+ noAvailableVars: 'Nessuna variabile disponibile',
+ noAssignedVars: 'Nessuna variabile assegnata disponibile',
+ noVarsForOperation: 'Non ci sono variabili disponibili per l\'assegnazione con l\'operazione selezionata.',
+ assignedVarsDescription: 'Le variabili assegnate devono essere variabili scrivibili, ad esempio',
+ conversationVars: 'Variabili di conversazione',
+ },
}
export default translation
diff --git a/web/i18n/ja-JP/app-log.ts b/web/i18n/ja-JP/app-log.ts
index a11d0e81af488d..233d70f8e3e38a 100644
--- a/web/i18n/ja-JP/app-log.ts
+++ b/web/i18n/ja-JP/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: '会話ログ',
workflowTitle: 'ログの詳細',
+ fileListLabel: 'ファイルの詳細',
+ fileListDetail: '詳細',
},
promptLog: 'プロンプトログ',
agentLog: 'エージェントログ',
diff --git a/web/i18n/ja-JP/app.ts b/web/i18n/ja-JP/app.ts
index 81b1bf44a4adf3..ecce0b3b50f6ff 100644
--- a/web/i18n/ja-JP/app.ts
+++ b/web/i18n/ja-JP/app.ts
@@ -93,6 +93,7 @@ const translation = {
switchLabel: '作成されるアプリのコピー',
removeOriginal: '元のアプリを削除する',
switchStart: '切り替えを開始する',
+ openInExplore: '"探索" で開く',
typeSelector: {
all: 'すべてのタイプ',
chatbot: 'チャットボット',
diff --git a/web/i18n/ja-JP/dataset-creation.ts b/web/i18n/ja-JP/dataset-creation.ts
index 597ec5f8f1d5c5..9ae6c4e7374401 100644
--- a/web/i18n/ja-JP/dataset-creation.ts
+++ b/web/i18n/ja-JP/dataset-creation.ts
@@ -147,7 +147,7 @@ const translation = {
retrievalSettingTip: '検索方法を変更するには、',
datasetSettingLink: 'ナレッジ設定',
separatorTip: '区切り文字は、テキストを区切るために使用される文字です。\\n\\n と \\n は、段落と行を区切るために一般的に使用される区切り記号です。カンマ (\\n\\n,\\n) と組み合わせると、最大チャンク長を超えると、段落は行で区切られます。自分で定義した特別な区切り文字を使用することもできます(例:***)。',
- maxLengthCheck: 'チャンクの最大長は 4000 未満にする必要があります',
+ maxLengthCheck: 'チャンクの最大長は {{limit}} 未満にする必要があります',
},
stepThree: {
creationTitle: '🎉 ナレッジが作成されました',
diff --git a/web/i18n/ja-JP/explore.ts b/web/i18n/ja-JP/explore.ts
index 5ae673d21b5992..0fafe088f0d133 100644
--- a/web/i18n/ja-JP/explore.ts
+++ b/web/i18n/ja-JP/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: '翻訳',
Programming: 'プログラミング',
HR: '人事',
+ Workflow: 'ワークフロー',
+ Agent: 'エージェント',
},
}
diff --git a/web/i18n/ja-JP/workflow.ts b/web/i18n/ja-JP/workflow.ts
index 998b0b78294b18..98108e9735070d 100644
--- a/web/i18n/ja-JP/workflow.ts
+++ b/web/i18n/ja-JP/workflow.ts
@@ -32,6 +32,7 @@ const translation = {
restore: '復元',
runApp: 'アプリを実行',
batchRunApp: 'バッチでアプリを実行',
+ openInExplore: '"探索" で開く',
accessAPIReference: 'APIリファレンスにアクセス',
embedIntoSite: 'サイトに埋め込む',
addTitle: 'タイトルを追加...',
@@ -501,6 +502,26 @@ const translation = {
'clear': 'クリア',
'setVariable': '変数を設定する',
'variable': '変数',
+ 'operations': {
+ 'title': '操作',
+ 'set': 'セット',
+ 'clear': 'クリア',
+ 'overwrite': '上書き',
+ 'append': '追加',
+ '-=': '-=',
+ '/=': '/=',
+ '+=': '+=',
+ 'over-write': '上書き',
+ 'extend': '延ばす',
+ '*=': '*=',
+ },
+ 'setParameter': 'パラメータを設定...',
+ 'selectAssignedVariable': '代入変数を選択...',
+ 'varNotSet': '変数が設定されていません',
+ 'variables': '変数',
+ 'noVarTip': '「+」ボタンをクリックして変数を追加します',
+ 'noAssignedVars': '使用可能な代入変数がありません',
+ 'assignedVarsDescription': '代入される変数は、会話変数などの書き込み可能な変数である必要があります。',
},
tool: {
toAuthorize: '承認するには',
@@ -632,6 +653,13 @@ const translation = {
tracing: {
stopBy: '{{user}}によって停止',
},
+ variableReference: {
+ noVarsForOperation: '選択した操作で代入できる変数はありません。',
+ noAvailableVars: '使用可能な変数がありません',
+ noAssignedVars: '使用可能な代入変数がありません',
+ assignedVarsDescription: '代入変数は、次のような書き込み可能な変数である必要があります。',
+ conversationVars: '会話変数',
+ },
}
export default translation
diff --git a/web/i18n/ko-KR/app-log.ts b/web/i18n/ko-KR/app-log.ts
index acc2b53531f5f1..c17bfca8c77d4c 100644
--- a/web/i18n/ko-KR/app-log.ts
+++ b/web/i18n/ko-KR/app-log.ts
@@ -80,6 +80,8 @@ const translation = {
runDetail: {
title: '대화 로그',
workflowTitle: '로그 세부 정보',
+ fileListDetail: '세부',
+ fileListLabel: '파일 세부 정보',
},
promptLog: '프롬프트 로그',
agentLog: '에이전트 로그',
diff --git a/web/i18n/ko-KR/dataset-creation.ts b/web/i18n/ko-KR/dataset-creation.ts
index 52f7aff75da808..ee5abb5189b408 100644
--- a/web/i18n/ko-KR/dataset-creation.ts
+++ b/web/i18n/ko-KR/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
webpageUnit: '페이지',
websiteSource: '웹 사이트 전처리',
separatorTip: '구분 기호는 텍스트를 구분하는 데 사용되는 문자입니다. \\n\\n 및 \\n은 단락과 줄을 구분하는 데 일반적으로 사용되는 구분 기호입니다. 쉼표(\\n\\n,\\n)와 함께 사용하면 최대 청크 길이를 초과할 경우 단락이 줄로 분할됩니다. 직접 정의한 특수 구분 기호(예: ***)를 사용할 수도 있습니다.',
- maxLengthCheck: '최대 청크 길이는 4000 미만이어야 합니다.',
+ maxLengthCheck: '최대 청크 길이는 {{limit}} 미만이어야 합니다.',
},
stepThree: {
creationTitle: '🎉 지식이 생성되었습니다',
diff --git a/web/i18n/ko-KR/workflow.ts b/web/i18n/ko-KR/workflow.ts
index e5db1e4b3a5731..7287564601d947 100644
--- a/web/i18n/ko-KR/workflow.ts
+++ b/web/i18n/ko-KR/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': '지우기',
'setVariable': '변수 설정',
'variable': '변수',
+ 'operations': {
+ '*=': '*=',
+ 'overwrite': '덮어쓸',
+ '-=': '-=',
+ 'append': '덧붙이다',
+ 'over-write': '덮어쓸',
+ '+=': '+=',
+ 'title': '수술',
+ 'extend': '뻗치다',
+ 'clear': '맑다',
+ '/=': '/=',
+ 'set': '집합',
+ },
+ 'variables': '변수',
+ 'noAssignedVars': '사용 가능한 할당된 변수가 없습니다.',
+ 'noVarTip': '"+" 버튼을 클릭하여 변수를 추가합니다.',
+ 'setParameter': '매개 변수 설정...',
+ 'assignedVarsDescription': '할당된 변수는 대화 변수와 같은 쓰기 가능한 변수여야 합니다.',
+ 'selectAssignedVariable': '할당된 변수 선택...',
+ 'varNotSet': '변수가 설정되지 않음',
},
tool: {
toAuthorize: '승인하기',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: '{{user}}에 의해 중지됨',
},
+ variableReference: {
+ noAvailableVars: '사용 가능한 변수 없음',
+ conversationVars: '대화 변수',
+ noVarsForOperation: '선택한 작업에 할당할 수 있는 변수가 없습니다.',
+ noAssignedVars: '사용 가능한 할당된 변수가 없습니다.',
+ assignedVarsDescription: '할당된 변수는 다음과 같이 쓰기 가능한 변수여야 합니다.',
+ },
}
export default translation
diff --git a/web/i18n/pl-PL/app-log.ts b/web/i18n/pl-PL/app-log.ts
index 378bea0fb16dfc..202207331f4471 100644
--- a/web/i18n/pl-PL/app-log.ts
+++ b/web/i18n/pl-PL/app-log.ts
@@ -83,6 +83,8 @@ const translation = {
runDetail: {
title: 'Dziennik rozmowy',
workflowTitle: 'Szczegół dziennika',
+ fileListDetail: 'Detal',
+ fileListLabel: 'Szczegóły pliku',
},
promptLog: 'Dziennik monitów',
agentLog: 'Dziennik agenta',
diff --git a/web/i18n/pl-PL/dataset-creation.ts b/web/i18n/pl-PL/dataset-creation.ts
index 81adff63367f12..c12ed662786371 100644
--- a/web/i18n/pl-PL/dataset-creation.ts
+++ b/web/i18n/pl-PL/dataset-creation.ts
@@ -155,7 +155,7 @@ const translation = {
webpageUnit: 'Stron',
websiteSource: 'Witryna internetowa przetwarzania wstępnego',
separatorTip: 'Ogranicznik to znak używany do oddzielania tekstu. \\n\\n i \\n są powszechnie używanymi ogranicznikami do oddzielania akapitów i wierszy. W połączeniu z przecinkami (\\n\\n,\\n), akapity będą segmentowane wierszami po przekroczeniu maksymalnej długości fragmentu. Możesz również skorzystać ze zdefiniowanych przez siebie specjalnych ograniczników (np. ***).',
- maxLengthCheck: 'Maksymalna długość porcji powinna być mniejsza niż 4000',
+ maxLengthCheck: 'Maksymalna długość porcji powinna być mniejsza niż {{limit}}',
},
stepThree: {
creationTitle: '🎉 Utworzono Wiedzę',
diff --git a/web/i18n/pl-PL/explore.ts b/web/i18n/pl-PL/explore.ts
index 052eb303bd6f72..58c691119c0e21 100644
--- a/web/i18n/pl-PL/explore.ts
+++ b/web/i18n/pl-PL/explore.ts
@@ -36,6 +36,8 @@ const translation = {
Translate: 'Tłumaczenie',
Programming: 'Programowanie',
HR: 'HR',
+ Agent: 'Agent',
+ Workflow: 'Przepływ pracy',
},
}
diff --git a/web/i18n/pl-PL/workflow.ts b/web/i18n/pl-PL/workflow.ts
index 086389c18027f1..760d45ad7a3b20 100644
--- a/web/i18n/pl-PL/workflow.ts
+++ b/web/i18n/pl-PL/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Wyczyść',
'setVariable': 'Ustaw Zmienną',
'variable': 'Zmienna',
+ 'operations': {
+ 'over-write': 'Zastąpić',
+ 'set': 'Zbiór',
+ 'title': 'Operacja',
+ 'overwrite': 'Zastąpić',
+ '*=': '*=',
+ '/=': '/=',
+ '-=': '-=',
+ 'extend': 'Rozszerzyć',
+ '+=': '+=',
+ 'clear': 'Jasny',
+ 'append': 'Dołączyć',
+ },
+ 'variables': 'Zmiennych',
+ 'selectAssignedVariable': 'Wybierz przypisaną zmienną...',
+ 'varNotSet': 'Zmienna NIE jest ustawiona',
+ 'noAssignedVars': 'Brak dostępnych przypisanych zmiennych',
+ 'assignedVarsDescription': 'Przypisane zmienne muszą być zmiennymi zapisywalnymi, takimi jak zmienne konwersacji.',
+ 'setParameter': 'Ustaw parametr...',
+ 'noVarTip': 'Kliknij przycisk "+", aby dodać zmienne',
},
tool: {
toAuthorize: 'Do autoryzacji',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Zatrzymane przez {{user}}',
},
+ variableReference: {
+ conversationVars: 'Zmienne konwersacji',
+ assignedVarsDescription: 'Przypisane zmienne muszą być zmiennymi zapisywalnymi, takimi jak',
+ noVarsForOperation: 'Nie ma dostępnych zmiennych do przypisania do wybranej operacji.',
+ noAssignedVars: 'Brak dostępnych przypisanych zmiennych',
+ noAvailableVars: 'Brak dostępnych zmiennych',
+ },
}
export default translation
diff --git a/web/i18n/pt-BR/app-log.ts b/web/i18n/pt-BR/app-log.ts
index 03f5bc981fdbed..1fee398d999628 100644
--- a/web/i18n/pt-BR/app-log.ts
+++ b/web/i18n/pt-BR/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Registro de Conversa',
workflowTitle: 'Detalhes do Registro',
+ fileListLabel: 'Detalhes do arquivo',
+ fileListDetail: 'Detalhe',
},
promptLog: 'Registro de Prompt',
agentLog: 'Registro do agente',
diff --git a/web/i18n/pt-BR/dataset-creation.ts b/web/i18n/pt-BR/dataset-creation.ts
index 5ab24565625fe0..8534bdce1d3de8 100644
--- a/web/i18n/pt-BR/dataset-creation.ts
+++ b/web/i18n/pt-BR/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
websiteSource: 'Site de pré-processamento',
webpageUnit: 'Páginas',
separatorTip: 'Um delimitador é o caractere usado para separar o texto. \\n\\n e \\n são delimitadores comumente usados para separar parágrafos e linhas. Combinado com vírgulas (\\n\\n,\\n), os parágrafos serão segmentados por linhas ao exceder o comprimento máximo do bloco. Você também pode usar delimitadores especiais definidos por você (por exemplo, ***).',
- maxLengthCheck: 'O comprimento máximo do chunk deve ser inferior a 4000',
+ maxLengthCheck: 'O comprimento máximo do chunk deve ser inferior a {{limit}}',
},
stepThree: {
creationTitle: '🎉 Conhecimento criado',
diff --git a/web/i18n/pt-BR/explore.ts b/web/i18n/pt-BR/explore.ts
index 4cf990cd1fc9af..f77827b4ed5524 100644
--- a/web/i18n/pt-BR/explore.ts
+++ b/web/i18n/pt-BR/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Traduzir',
Programming: 'Programação',
HR: 'RH',
+ Workflow: 'Fluxo de trabalho',
+ Agent: 'Agente',
},
}
diff --git a/web/i18n/pt-BR/workflow.ts b/web/i18n/pt-BR/workflow.ts
index 51e4b4d5dac5d5..422c273fb78c11 100644
--- a/web/i18n/pt-BR/workflow.ts
+++ b/web/i18n/pt-BR/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Limpar',
'setVariable': 'Definir Variável',
'variable': 'Variável',
+ 'operations': {
+ 'clear': 'Claro',
+ 'title': 'Operação',
+ 'over-write': 'Sobrescrever',
+ '-=': '-=',
+ '/=': '/=',
+ '*=': '*=',
+ 'extend': 'Estender',
+ 'append': 'Acrescentar',
+ '+=': '+=',
+ 'set': 'Pôr',
+ 'overwrite': 'Sobrescrever',
+ },
+ 'selectAssignedVariable': 'Selecione a variável atribuída...',
+ 'setParameter': 'Definir parâmetro...',
+ 'noVarTip': 'Clique no botão "+" para adicionar variáveis',
+ 'assignedVarsDescription': 'As variáveis atribuídas devem ser variáveis graváveis, como variáveis de conversação.',
+ 'varNotSet': 'Variável NÃO definida',
+ 'noAssignedVars': 'Nenhuma variável atribuída disponível',
+ 'variables': 'Variáveis',
},
tool: {
toAuthorize: 'Autorizar',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Parado por {{user}}',
},
+ variableReference: {
+ noAssignedVars: 'Nenhuma variável atribuída disponível',
+ noVarsForOperation: 'Não há variáveis disponíveis para atribuição com a operação selecionada.',
+ conversationVars: 'variáveis de conversação',
+ assignedVarsDescription: 'As variáveis atribuídas devem ser variáveis graváveis, como',
+ noAvailableVars: 'Nenhuma variável disponível',
+ },
}
export default translation
diff --git a/web/i18n/ro-RO/app-log.ts b/web/i18n/ro-RO/app-log.ts
index bd72400df581ec..8c75a3162130d8 100644
--- a/web/i18n/ro-RO/app-log.ts
+++ b/web/i18n/ro-RO/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Jurnal de conversație',
workflowTitle: 'Detalii jurnal',
+ fileListDetail: 'Amănunt',
+ fileListLabel: 'Detalii fișier',
},
promptLog: 'Jurnal prompt',
agentLog: 'Jurnal agent',
diff --git a/web/i18n/ro-RO/dataset-creation.ts b/web/i18n/ro-RO/dataset-creation.ts
index 2f474f440aab77..f18b2ac5c220e0 100644
--- a/web/i18n/ro-RO/dataset-creation.ts
+++ b/web/i18n/ro-RO/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
webpageUnit: 'Pagini',
websiteSource: 'Site-ul web de preprocesare',
separatorTip: 'Un delimitator este caracterul folosit pentru a separa textul. \\n\\n și \\n sunt delimitatori utilizați în mod obișnuit pentru separarea paragrafelor și liniilor. Combinate cu virgule (\\n\\n,\\n), paragrafele vor fi segmentate pe linii atunci când depășesc lungimea maximă a bucății. De asemenea, puteți utiliza delimitatori speciali definiți de dumneavoastră (de exemplu, ***).',
- maxLengthCheck: 'Lungimea maximă a bucății trebuie să fie mai mică de 4000',
+ maxLengthCheck: 'Lungimea maximă a bucății trebuie să fie mai mică de {{limit}}',
},
stepThree: {
creationTitle: '🎉 Cunoștință creată',
diff --git a/web/i18n/ro-RO/explore.ts b/web/i18n/ro-RO/explore.ts
index 6f4ba294abb53f..75fc97b8a29218 100644
--- a/web/i18n/ro-RO/explore.ts
+++ b/web/i18n/ro-RO/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Traducere',
Programming: 'Programare',
HR: 'Resurse Umane',
+ Agent: 'Agent',
+ Workflow: 'Flux de lucru',
},
}
diff --git a/web/i18n/ro-RO/workflow.ts b/web/i18n/ro-RO/workflow.ts
index 73014df2a8cd0d..9a76e87ec2d71f 100644
--- a/web/i18n/ro-RO/workflow.ts
+++ b/web/i18n/ro-RO/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Șterge',
'setVariable': 'Setează Variabila',
'variable': 'Variabilă',
+ 'operations': {
+ 'append': 'Adăugaţi',
+ 'extend': 'Prelungi',
+ 'title': 'Operație',
+ '+=': '+=',
+ 'set': 'Apus',
+ '*=': '*=',
+ 'overwrite': 'Suprascrie',
+ 'clear': 'Clar',
+ 'over-write': 'Suprascrie',
+ '/=': '/=',
+ '-=': '-=',
+ },
+ 'selectAssignedVariable': 'Selectați variabila atribuită...',
+ 'varNotSet': 'Variabila NU este setată',
+ 'noVarTip': 'Faceți clic pe butonul "+" pentru a adăuga variabile',
+ 'noAssignedVars': 'Nu există variabile atribuite disponibile',
+ 'setParameter': 'Setați parametrul...',
+ 'assignedVarsDescription': 'Variabilele atribuite trebuie să fie variabile inscripționabile, cum ar fi variabilele de conversație.',
+ 'variables': 'Variabile',
},
tool: {
toAuthorize: 'Autorizați',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Oprit de {{user}}',
},
+ variableReference: {
+ noAvailableVars: 'Nu există variabile disponibile',
+ noVarsForOperation: 'Nu există variabile disponibile pentru atribuire cu operațiunea selectată.',
+ conversationVars: 'Variabile de conversație',
+ assignedVarsDescription: 'Variabilele atribuite trebuie să fie variabile inscripționabile, cum ar fi',
+ noAssignedVars: 'Nu există variabile atribuite disponibile',
+ },
}
export default translation
diff --git a/web/i18n/ru-RU/app-log.ts b/web/i18n/ru-RU/app-log.ts
index c6c54ef1788a87..7009a337c54798 100644
--- a/web/i18n/ru-RU/app-log.ts
+++ b/web/i18n/ru-RU/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Журнал разговоров',
workflowTitle: 'Подробная информация о журнале',
+ fileListLabel: 'Сведения о файле',
+ fileListDetail: 'Подробность',
},
promptLog: 'Журнал подсказок',
agentLog: 'Журнал агента',
diff --git a/web/i18n/ru-RU/dataset-creation.ts b/web/i18n/ru-RU/dataset-creation.ts
index 66d92bd2b4c832..ca88e093bc7e99 100644
--- a/web/i18n/ru-RU/dataset-creation.ts
+++ b/web/i18n/ru-RU/dataset-creation.ts
@@ -147,7 +147,7 @@ const translation = {
retrievalSettingTip: 'Чтобы изменить метод индексации, пожалуйста, перейдите в ',
datasetSettingLink: 'настройки базы знаний.',
separatorTip: 'Разделитель — это символ, используемый для разделения текста. \\n\\n и \\n — это часто используемые разделители для разделения абзацев и строк. В сочетании с запятыми (\\n\\n,\\n) абзацы будут сегментированы по строкам, если максимальная длина блока превышает их. Вы также можете использовать специальные разделители, определенные вами (например, ***).',
- maxLengthCheck: 'Максимальная длина блока должна быть меньше 4000',
+ maxLengthCheck: 'Максимальная длина блока должна быть меньше {{limit}}',
},
stepThree: {
creationTitle: '🎉 База знаний создана',
diff --git a/web/i18n/ru-RU/explore.ts b/web/i18n/ru-RU/explore.ts
index 6c0b41f7d4cfb1..97fad96244b01f 100644
--- a/web/i18n/ru-RU/explore.ts
+++ b/web/i18n/ru-RU/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Перевод',
Programming: 'Программирование',
HR: 'HR',
+ Agent: 'Агент',
+ Workflow: 'Рабочий процесс',
},
}
diff --git a/web/i18n/ru-RU/workflow.ts b/web/i18n/ru-RU/workflow.ts
index e56be960be157c..ce2a5992e770fd 100644
--- a/web/i18n/ru-RU/workflow.ts
+++ b/web/i18n/ru-RU/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Очистить',
'setVariable': 'Установить переменную',
'variable': 'Переменная',
+ 'operations': {
+ '-=': '-=',
+ '+=': '+=',
+ 'clear': 'Ясный',
+ 'extend': 'Вытягивать',
+ 'set': 'Набор',
+ 'overwrite': 'Перезаписать',
+ '/=': '/=',
+ '*=': '*=',
+ 'title': 'Операция',
+ 'over-write': 'Перезаписать',
+ 'append': 'Прибавлять',
+ },
+ 'variables': 'Переменные',
+ 'noAssignedVars': 'Нет доступных назначенных переменных',
+ 'noVarTip': 'Нажмите кнопку "+", чтобы добавить переменные',
+ 'setParameter': 'Установите параметр...',
+ 'assignedVarsDescription': 'Назначаемые переменные должны быть доступными для записи, например переменными беседы.',
+ 'varNotSet': 'Переменная НЕ установлена',
+ 'selectAssignedVariable': 'Выберите назначенную переменную...',
},
tool: {
toAuthorize: 'Авторизовать',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Остановлено {{user}}',
},
+ variableReference: {
+ assignedVarsDescription: 'Назначаемые переменные должны быть доступными для записи, такими как',
+ noAssignedVars: 'Нет доступных назначенных переменных',
+ noVarsForOperation: 'Переменные для присвоения выбранной операции отсутствуют.',
+ conversationVars: 'Переменные беседы',
+ noAvailableVars: 'Нет доступных переменных',
+ },
}
export default translation
diff --git a/web/i18n/sl-SI/app-log.ts b/web/i18n/sl-SI/app-log.ts
index 03efc594cab9f6..1745eb442d11ad 100644
--- a/web/i18n/sl-SI/app-log.ts
+++ b/web/i18n/sl-SI/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Dnevnik pogovora',
workflowTitle: 'Podrobnosti dnevnika',
+ fileListDetail: 'Podrobnosti',
+ fileListLabel: 'Podrobnosti o datoteki',
},
promptLog: 'Dnevnik PROMPT-ov',
agentLog: 'Dnevnik pomočnika',
diff --git a/web/i18n/sl-SI/dataset-creation.ts b/web/i18n/sl-SI/dataset-creation.ts
index 402066ad409f82..8dcfa8c3f50cb9 100644
--- a/web/i18n/sl-SI/dataset-creation.ts
+++ b/web/i18n/sl-SI/dataset-creation.ts
@@ -152,7 +152,7 @@ const translation = {
indexSettingTip: 'Če želite spremeniti način indeksiranja in model vdelave, pojdite na ',
retrievalSettingTip: 'Če želite spremeniti nastavitve iskanja, pojdite na ',
datasetSettingLink: 'nastavitve Znanja.',
- maxLengthCheck: 'Največja dolžina kosa mora biti manjša od 4000',
+ maxLengthCheck: 'Največja dolžina kosa mora biti manjša od {{limit}}',
},
stepThree: {
creationTitle: '🎉 Znanje ustvarjeno',
diff --git a/web/i18n/sl-SI/explore.ts b/web/i18n/sl-SI/explore.ts
index ea3813b488477a..5ed9519044d3fc 100644
--- a/web/i18n/sl-SI/explore.ts
+++ b/web/i18n/sl-SI/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Prevajanje',
Programming: 'Programiranje',
HR: 'Kadri',
+ Workflow: 'Potek dela',
+ Agent: 'Agent',
},
}
diff --git a/web/i18n/sl-SI/workflow.ts b/web/i18n/sl-SI/workflow.ts
index b054e9b925aa78..4783fab8de4134 100644
--- a/web/i18n/sl-SI/workflow.ts
+++ b/web/i18n/sl-SI/workflow.ts
@@ -936,6 +936,26 @@ const translation = {
'setVariable': 'Nastavi spremenljivko',
'over-write': 'Prepisati',
'writeModeTip': 'Način dodajanja: Na voljo samo za spremenljivke polja.',
+ 'operations': {
+ '+=': '+=',
+ 'overwrite': 'Prepisati',
+ '*=': '*=',
+ 'extend': 'Razširiti',
+ 'append': 'Dodaj',
+ '-=': '-=',
+ 'title': 'Operacija',
+ '/=': '/=',
+ 'set': 'Nastaviti',
+ 'clear': 'Jasen',
+ 'over-write': 'Prepisati',
+ },
+ 'variables': 'Spremenljivke',
+ 'selectAssignedVariable': 'Izberite dodeljeno spremenljivko ...',
+ 'assignedVarsDescription': 'Dodeljene spremenljivke morajo biti zapisljive, kot so spremenljivke pogovora.',
+ 'noVarTip': 'Kliknite gumb »+«, da dodate spremenljivke',
+ 'noAssignedVars': 'Ni razpoložljivih dodeljenih spremenljivk',
+ 'varNotSet': 'Spremenljivka NI nastavljena',
+ 'setParameter': 'Nastavi parameter ...',
},
tool: {
outputVars: {
@@ -1064,6 +1084,13 @@ const translation = {
filterConditionComparisonValue: 'Vrednost pogoja filtra',
},
},
+ variableReference: {
+ noVarsForOperation: 'Spremenljivk ni na voljo za dodelitev z izbrano operacijo.',
+ conversationVars: 'Spremenljivke pogovora',
+ noAssignedVars: 'Ni razpoložljivih dodeljenih spremenljivk',
+ noAvailableVars: 'Ni spremenljivk, ki so na voljo',
+ assignedVarsDescription: 'Dodeljene spremenljivke morajo biti zapisljive, kot so:',
+ },
}
export default translation
diff --git a/web/i18n/th-TH/app-log.ts b/web/i18n/th-TH/app-log.ts
index fb7600f8bf1d7e..0f4405c81dc1e8 100644
--- a/web/i18n/th-TH/app-log.ts
+++ b/web/i18n/th-TH/app-log.ts
@@ -51,6 +51,7 @@ const translation = {
},
variables: 'ตัว แปร',
uploadImages: 'รูปภาพที่อัปโหลด',
+ timeConsuming: '',
},
filter: {
period: {
@@ -78,6 +79,8 @@ const translation = {
runDetail: {
title: 'บันทึกการสนทนา',
workflowTitle: 'รายละเอียดบันทึก',
+ fileListDetail: 'รายละเอียด',
+ fileListLabel: 'รายละเอียดไฟล์',
},
promptLog: 'บันทึกพร้อมท์',
agentLog: 'บันทึกตัวแทน',
diff --git a/web/i18n/th-TH/dataset-creation.ts b/web/i18n/th-TH/dataset-creation.ts
index 850477c5688fdf..16ec1fab3e988e 100644
--- a/web/i18n/th-TH/dataset-creation.ts
+++ b/web/i18n/th-TH/dataset-creation.ts
@@ -103,7 +103,7 @@ const translation = {
separatorTip: 'ตัวคั่นคืออักขระที่ใช้ในการแยกข้อความ \\n\\n และ \\n เป็นตัวคั่นที่ใช้กันทั่วไปสําหรับการแยกย่อหน้าและบรรทัด เมื่อรวมกับเครื่องหมายจุลภาค (\\n\\n,\\n) ย่อหน้าจะถูกแบ่งตามบรรทัดเมื่อเกินความยาวของก้อนสูงสุด คุณยังสามารถใช้ตัวคั่นพิเศษที่กําหนดโดยตัวคุณเอง (เช่น ***)',
separatorPlaceholder: '\\n\\n สําหรับแยกย่อหน้า \\n สําหรับแยกเส้น',
maxLength: 'ความยาวก้อนสูงสุด',
- maxLengthCheck: 'ความยาวก้อนสูงสุดควรน้อยกว่า 4000',
+ maxLengthCheck: 'ความยาวก้อนสูงสุดควรน้อยกว่า {{limit}}',
overlap: 'การทับซ้อนกันของก้อน',
overlapTip: 'การตั้งค่าการทับซ้อนกันของกลุ่มสามารถรักษาความเกี่ยวข้องทางความหมายระหว่างกันได้ ขอแนะนําให้ตั้งค่า 10%-25% ของขนาดก้อนสูงสุด',
overlapCheck: 'การทับซ้อนกันของก้อนไม่ควรใหญ่กว่าความยาวของก้อนสูงสุด',
diff --git a/web/i18n/th-TH/explore.ts b/web/i18n/th-TH/explore.ts
index 4f2ac0ee43b6b4..aaed249194a2a4 100644
--- a/web/i18n/th-TH/explore.ts
+++ b/web/i18n/th-TH/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'แปล',
Programming: 'โปรแกรม',
HR: 'ชั่วโมง',
+ Workflow: 'เวิร์กโฟลว์',
+ Agent: 'ตัวแทน',
},
}
diff --git a/web/i18n/th-TH/share-app.ts b/web/i18n/th-TH/share-app.ts
index 97920a9165f1e7..290a8cc3f7ac59 100644
--- a/web/i18n/th-TH/share-app.ts
+++ b/web/i18n/th-TH/share-app.ts
@@ -2,6 +2,7 @@ const translation = {
common: {
appUnavailable: 'แอพไม่พร้อมใช้งาน',
appUnknownError: 'แอพไม่พร้อมใช้งาน',
+ welcome: '',
},
chat: {
newChat: 'แชทใหม่',
diff --git a/web/i18n/th-TH/workflow.ts b/web/i18n/th-TH/workflow.ts
index 71d82b98e5df63..2971591e2e1135 100644
--- a/web/i18n/th-TH/workflow.ts
+++ b/web/i18n/th-TH/workflow.ts
@@ -499,6 +499,26 @@ const translation = {
'clear': 'ใส',
'setVariable': 'ตั้งค่าตัวแปร',
'variable': 'ตัวแปร',
+ 'operations': {
+ 'set': 'ชุด',
+ 'append': 'ผนวก',
+ '-=': '-=',
+ '*=': '*=',
+ 'overwrite': 'เขียน ทับ',
+ 'extend': 'ขยาย',
+ 'title': 'การผ่าตัด',
+ 'clear': 'ใส',
+ 'over-write': 'เขียน ทับ',
+ '+=': '+=',
+ '/=': '/=',
+ },
+ 'noAssignedVars': 'ไม่มีตัวแปรที่กําหนด',
+ 'selectAssignedVariable': 'เลือกตัวแปรที่กําหนด...',
+ 'variables': 'ตัว แปร',
+ 'varNotSet': 'ตัวแปรไม่ได้ตั้งค่า',
+ 'assignedVarsDescription': 'ตัวแปรที่กําหนดต้องเป็นตัวแปรที่เขียนได้ เช่น ตัวแปรการสนทนา',
+ 'noVarTip': 'คลิกปุ่ม "+" เพื่อเพิ่มตัวแปร',
+ 'setParameter': 'ตั้งค่าพารามิเตอร์...',
},
tool: {
toAuthorize: 'เพื่ออนุญาต',
@@ -630,6 +650,13 @@ const translation = {
tracing: {
stopBy: 'แวะที่ {{user}}',
},
+ variableReference: {
+ conversationVars: 'ตัวแปรการสนทนา',
+ noVarsForOperation: 'ไม่มีตัวแปรที่พร้อมใช้งานสําหรับการกําหนดด้วยการดําเนินการที่เลือก',
+ noAvailableVars: 'ไม่มีตัวแปรที่ใช้ได้',
+ assignedVarsDescription: 'ตัวแปรที่กําหนดต้องเป็นตัวแปรที่เขียนได้ เช่น',
+ noAssignedVars: 'ไม่มีตัวแปรที่กําหนด',
+ },
}
export default translation
diff --git a/web/i18n/tr-TR/app-log.ts b/web/i18n/tr-TR/app-log.ts
index 37df50a5a5e067..cf1822cf8d0f1d 100644
--- a/web/i18n/tr-TR/app-log.ts
+++ b/web/i18n/tr-TR/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Konuşma Günlüğü',
workflowTitle: 'Günlük Detayı',
+ fileListDetail: 'Ayrıntı',
+ fileListLabel: 'Dosya Detayları',
},
promptLog: 'Prompt Günlüğü',
agentLog: 'Agent Günlüğü',
diff --git a/web/i18n/tr-TR/dataset-creation.ts b/web/i18n/tr-TR/dataset-creation.ts
index 1d5dd1963410b2..11e5789884f458 100644
--- a/web/i18n/tr-TR/dataset-creation.ts
+++ b/web/i18n/tr-TR/dataset-creation.ts
@@ -147,7 +147,7 @@ const translation = {
retrievalSettingTip: 'Dizin yöntemini değiştirmek için, lütfen',
datasetSettingLink: 'Bilgi ayarlarına gidin.',
separatorTip: 'Sınırlayıcı, metni ayırmak için kullanılan karakterdir. \\n\\n ve \\n, paragrafları ve satırları ayırmak için yaygın olarak kullanılan sınırlayıcılardır. Virgüllerle (\\n\\n,\\n) birleştirildiğinde, paragraflar maksimum öbek uzunluğunu aştığında satırlarla bölünür. Kendiniz tarafından tanımlanan özel sınırlayıcıları da kullanabilirsiniz (örn.',
- maxLengthCheck: 'Maksimum yığın uzunluğu 4000\'den az olmalıdır',
+ maxLengthCheck: 'Maksimum yığın uzunluğu {{limit}}\'den az olmalıdır',
},
stepThree: {
creationTitle: '🎉 Bilgi oluşturuldu',
diff --git a/web/i18n/tr-TR/explore.ts b/web/i18n/tr-TR/explore.ts
index 94aa2a2bfc4914..52b45c6b323883 100644
--- a/web/i18n/tr-TR/explore.ts
+++ b/web/i18n/tr-TR/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Çeviri',
Programming: 'Programlama',
HR: 'İK',
+ Agent: 'Aracı',
+ Workflow: 'İş Akışı',
},
}
diff --git a/web/i18n/tr-TR/workflow.ts b/web/i18n/tr-TR/workflow.ts
index e01e8ed4eb2ea3..f34a1b73555fe1 100644
--- a/web/i18n/tr-TR/workflow.ts
+++ b/web/i18n/tr-TR/workflow.ts
@@ -501,6 +501,26 @@ const translation = {
'clear': 'Temizle',
'setVariable': 'Değişken Ayarla',
'variable': 'Değişken',
+ 'operations': {
+ 'extend': 'Uzatmak',
+ 'overwrite': 'Üzerine',
+ 'over-write': 'Üzerine',
+ 'title': 'İşlem',
+ '+=': '+=',
+ 'clear': 'Berrak',
+ 'append': 'Ekleme',
+ '/=': '/=',
+ '-=': '-=',
+ '*=': '*=',
+ 'set': 'Ayarlamak',
+ },
+ 'variables': 'Değişken',
+ 'selectAssignedVariable': 'Atanan değişkeni seçin...',
+ 'setParameter': 'Parametreyi ayarla...',
+ 'varNotSet': 'Değişken NOT Set',
+ 'assignedVarsDescription': 'Atanan değişkenler, konuşma değişkenleri gibi yazılabilir değişkenler olmalıdır.',
+ 'noVarTip': 'Değişken eklemek için "+" düğmesini tıklayın',
+ 'noAssignedVars': 'Kullanılabilir atanmış değişken yok',
},
tool: {
toAuthorize: 'Yetkilendirmek için',
@@ -632,6 +652,13 @@ const translation = {
tracing: {
stopBy: '{{user}} tarafından durduruldu',
},
+ variableReference: {
+ assignedVarsDescription: 'Atanan değişkenler, örneğin yazılabilir değişkenler olmalıdır',
+ noAvailableVars: 'Kullanılabilir değişken yok',
+ conversationVars: 'Konuşma değişkenleri',
+ noVarsForOperation: 'Seçilen işlemle atanabilecek değişken yok.',
+ noAssignedVars: 'Kullanılabilir atanmış değişken yok',
+ },
}
export default translation
diff --git a/web/i18n/uk-UA/app-log.ts b/web/i18n/uk-UA/app-log.ts
index b67b9ea8f01951..5b15055824379b 100644
--- a/web/i18n/uk-UA/app-log.ts
+++ b/web/i18n/uk-UA/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Журнал Розмови',
workflowTitle: 'Деталі Журналу',
+ fileListDetail: 'Деталь',
+ fileListLabel: 'Подробиці файлу',
},
promptLog: 'Журнал Запитань',
agentLog: 'Журнал агента',
diff --git a/web/i18n/uk-UA/dataset-creation.ts b/web/i18n/uk-UA/dataset-creation.ts
index e78934c9e9d660..d6ee22c2d33db4 100644
--- a/web/i18n/uk-UA/dataset-creation.ts
+++ b/web/i18n/uk-UA/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
webpageUnit: 'Сторінок',
websiteSource: 'Веб-сайт попередньої обробки',
separatorTip: 'Роздільник – це символ, який використовується для поділу тексту. \\n\\n та \\n є часто використовуваними роздільниками для відокремлення абзаців та рядків. У поєднанні з комами (\\n\\n,\\n) абзаци будуть розділені лініями, якщо вони перевищують максимальну довжину фрагмента. Ви також можете використовувати спеціальні роздільники, визначені вами (наприклад, ***).',
- maxLengthCheck: 'Максимальна довжина шматка має бути меншою за 4000',
+ maxLengthCheck: 'Максимальна довжина шматка має бути меншою за {{limit}}',
},
stepThree: {
creationTitle: '🎉 Знання створено',
diff --git a/web/i18n/uk-UA/explore.ts b/web/i18n/uk-UA/explore.ts
index b6323854317052..8b2efc903e9ed3 100644
--- a/web/i18n/uk-UA/explore.ts
+++ b/web/i18n/uk-UA/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Переклад',
Programming: 'Програмування',
HR: 'HR',
+ Workflow: 'Робочий процес',
+ Agent: 'Агент',
},
}
diff --git a/web/i18n/uk-UA/workflow.ts b/web/i18n/uk-UA/workflow.ts
index 4fc074c836c0c9..d0c9fcd7676cf7 100644
--- a/web/i18n/uk-UA/workflow.ts
+++ b/web/i18n/uk-UA/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Очистити',
'setVariable': 'Встановити Змінну',
'variable': 'Змінна',
+ 'operations': {
+ 'clear': 'Ясний',
+ 'set': 'Встановити',
+ 'title': 'Операція',
+ 'append': 'Додати',
+ '-=': '-=',
+ 'over-write': 'Перезаписати',
+ 'overwrite': 'Перезаписати',
+ '/=': '/=',
+ '+=': '+=',
+ '*=': '*=',
+ 'extend': 'Розширити',
+ },
+ 'selectAssignedVariable': 'Виберіть призначену змінну...',
+ 'noAssignedVars': 'Немає доступних призначених змінних',
+ 'noVarTip': 'Натисніть кнопку «+», щоб додати змінні',
+ 'assignedVarsDescription': 'Призначені змінні мають бути доступними для запису, такими як змінні розмови.',
+ 'variables': 'Змінні',
+ 'varNotSet': 'Змінна НЕ встановлена',
+ 'setParameter': 'Встановити параметр...',
},
tool: {
toAuthorize: 'Авторизувати',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Зупинено користувачем {{user}}',
},
+ variableReference: {
+ conversationVars: 'Змінні розмови',
+ noVarsForOperation: 'Немає доступних змінних для призначення з обраною операцією.',
+ assignedVarsDescription: 'Призначені змінні мають бути доступними для запису, такими як',
+ noAssignedVars: 'Немає доступних призначених змінних',
+ noAvailableVars: 'Немає доступних змінних',
+ },
}
export default translation
diff --git a/web/i18n/vi-VN/app-log.ts b/web/i18n/vi-VN/app-log.ts
index 30a3988c12337f..75df51d1a162fd 100644
--- a/web/i18n/vi-VN/app-log.ts
+++ b/web/i18n/vi-VN/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: 'Nhật ký cuộc trò chuyện',
workflowTitle: 'Chi tiết nhật ký',
+ fileListDetail: 'Chi tiết',
+ fileListLabel: 'Chi tiết tệp',
},
promptLog: 'Nhật ký lời nhắc',
AgentLog: 'Nhật ký tác nhân',
diff --git a/web/i18n/vi-VN/dataset-creation.ts b/web/i18n/vi-VN/dataset-creation.ts
index 3dc26bee46d3b9..045f3d6ea56455 100644
--- a/web/i18n/vi-VN/dataset-creation.ts
+++ b/web/i18n/vi-VN/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
websiteSource: 'Trang web tiền xử lý',
webpageUnit: 'Trang',
separatorTip: 'Dấu phân cách là ký tự được sử dụng để phân tách văn bản. \\n\\n và \\n là dấu phân cách thường được sử dụng để tách các đoạn văn và dòng. Kết hợp với dấu phẩy (\\n\\n,\\n), các đoạn văn sẽ được phân đoạn theo các dòng khi vượt quá độ dài đoạn tối đa. Bạn cũng có thể sử dụng dấu phân cách đặc biệt do chính bạn xác định (ví dụ: ***).',
- maxLengthCheck: 'Chiều dài đoạn tối đa phải nhỏ hơn 4000',
+ maxLengthCheck: 'Chiều dài đoạn tối đa phải nhỏ hơn {{limit}}',
},
stepThree: {
creationTitle: '🎉 Kiến thức đã được tạo',
diff --git a/web/i18n/vi-VN/explore.ts b/web/i18n/vi-VN/explore.ts
index 9c5d21052e1b7c..b1254fa8cd3f22 100644
--- a/web/i18n/vi-VN/explore.ts
+++ b/web/i18n/vi-VN/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: 'Dịch thuật',
Programming: 'Lập trình',
HR: 'Nhân sự',
+ Agent: 'Người đại lý',
+ Workflow: 'Quy trình làm việc',
},
}
diff --git a/web/i18n/vi-VN/workflow.ts b/web/i18n/vi-VN/workflow.ts
index f897910ab4fc43..19d33145ffd16a 100644
--- a/web/i18n/vi-VN/workflow.ts
+++ b/web/i18n/vi-VN/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': 'Xóa',
'setVariable': 'Đặt Biến',
'variable': 'Biến',
+ 'operations': {
+ '-=': '-=',
+ 'over-write': 'Ghi đè lên',
+ 'clear': 'Trong',
+ 'append': 'Thêm',
+ 'title': 'Hoạt động',
+ '*=': '*=',
+ '/=': '/=',
+ 'extend': 'Mở rộng',
+ '+=': '+=',
+ 'set': 'Cài',
+ 'overwrite': 'Ghi đè lên',
+ },
+ 'setParameter': 'Đặt tham số...',
+ 'selectAssignedVariable': 'Chọn biến được gán...',
+ 'noVarTip': 'Nhấp vào nút "+" để thêm biến',
+ 'assignedVarsDescription': 'Các biến được gán phải là các biến có thể ghi, chẳng hạn như các biến hội thoại.',
+ 'varNotSet': 'Biến KHÔNG được đặt',
+ 'noAssignedVars': 'Không có biến được gán sẵn có',
+ 'variables': 'Biến',
},
tool: {
toAuthorize: 'Ủy quyền',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: 'Dừng bởi {{user}}',
},
+ variableReference: {
+ noAssignedVars: 'Không có biến được gán sẵn có',
+ noAvailableVars: 'Không có biến khả dụng',
+ assignedVarsDescription: 'Các biến được gán phải là các biến có thể ghi, chẳng hạn như',
+ conversationVars: 'Biến cuộc trò chuyện',
+ noVarsForOperation: 'Không có biến nào có sẵn để gán với hoạt động đã chọn.',
+ },
}
export default translation
diff --git a/web/i18n/zh-Hans/app-log.ts b/web/i18n/zh-Hans/app-log.ts
index 0d2118a6841fa6..52b93d378ce88d 100644
--- a/web/i18n/zh-Hans/app-log.ts
+++ b/web/i18n/zh-Hans/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: '对话日志',
workflowTitle: '日志详情',
+ fileListLabel: '文件详情',
+ fileListDetail: '详情',
},
promptLog: 'Prompt 日志',
agentLog: 'Agent 日志',
diff --git a/web/i18n/zh-Hans/app.ts b/web/i18n/zh-Hans/app.ts
index e4838c1eba7053..3668fbed551cb2 100644
--- a/web/i18n/zh-Hans/app.ts
+++ b/web/i18n/zh-Hans/app.ts
@@ -8,6 +8,10 @@ const translation = {
completion: '文本生成',
},
duplicate: '复制',
+ mermaid: {
+ handDrawn: '手绘',
+ classic: '经典',
+ },
duplicateTitle: '复制应用',
export: '导出 DSL',
exportFailed: '导出 DSL 失败',
diff --git a/web/i18n/zh-Hans/dataset-creation.ts b/web/i18n/zh-Hans/dataset-creation.ts
index fac809d7e23b84..e6c3aa00ba9f37 100644
--- a/web/i18n/zh-Hans/dataset-creation.ts
+++ b/web/i18n/zh-Hans/dataset-creation.ts
@@ -103,7 +103,7 @@ const translation = {
separatorTip: '分隔符是用于分隔文本的字符。\\n\\n 和 \\n 是常用于分隔段落和行的分隔符。用逗号连接分隔符(\\n\\n,\\n),当段落超过最大块长度时,会按行进行分割。你也可以使用自定义的特殊分隔符(例如 ***)。',
separatorPlaceholder: '\\n\\n 用于分段;\\n 用于分行',
maxLength: '分段最大长度',
- maxLengthCheck: '分段最大长度不能大于 4000',
+ maxLengthCheck: '分段最大长度不能大于 {{limit}}',
overlap: '分段重叠长度',
overlapTip: '设置分段之间的重叠长度可以保留分段之间的语义关系,提升召回效果。建议设置为最大分段长度的10%-25%',
overlapCheck: '分段重叠长度不能大于分段最大长度',
diff --git a/web/i18n/zh-Hans/explore.ts b/web/i18n/zh-Hans/explore.ts
index d4f40742051c12..bb7faf03966947 100644
--- a/web/i18n/zh-Hans/explore.ts
+++ b/web/i18n/zh-Hans/explore.ts
@@ -30,11 +30,13 @@ const translation = {
nameRequired: '应用程序名称不能为空',
},
category: {
+ Agent: 'Agent',
Assistant: '助手',
Writing: '写作',
Translate: '翻译',
Programming: '编程',
HR: '人力资源',
+ Workflow: '工作流',
},
}
diff --git a/web/i18n/zh-Hans/workflow.ts b/web/i18n/zh-Hans/workflow.ts
index 7d0747b0f8fd72..702c9350e91a16 100644
--- a/web/i18n/zh-Hans/workflow.ts
+++ b/web/i18n/zh-Hans/workflow.ts
@@ -225,7 +225,7 @@ const translation = {
'code': '代码执行',
'template-transform': '模板转换',
'http-request': 'HTTP 请求',
- 'variable-assigner': '变量聚合器',
+ 'variable-assigner': '变量赋值器',
'variable-aggregator': '变量聚合器',
'assigner': '变量赋值',
'iteration-start': '迭代开始',
@@ -260,6 +260,13 @@ const translation = {
zoomTo100: '放大到 100%',
zoomToFit: '自适应视图',
},
+ variableReference: {
+ noAvailableVars: '没有可用变量',
+ noVarsForOperation: '当前选择的操作没有可用的变量进行赋值。',
+ noAssignedVars: '没有可用的赋值变量',
+ assignedVarsDescription: '赋值变量必须是可写入的变量,例如:',
+ conversationVars: '会话变量',
+ },
panel: {
userInputField: '用户输入字段',
changeBlock: '更改节点',
@@ -491,6 +498,8 @@ const translation = {
},
assigner: {
'assignedVariable': '赋值的变量',
+ 'varNotSet': '未设置变量',
+ 'noVarTip': '点击 "+" 按钮添加变量',
'writeMode': '写入模式',
'writeModeTip': '使用追加模式时,赋值的变量必须是数组类型。',
'over-write': '覆盖',
@@ -498,7 +507,25 @@ const translation = {
'plus': '加',
'clear': '清空',
'setVariable': '设置变量',
+ 'selectAssignedVariable': '选择要赋值的变量...',
+ 'setParameter': '设置参数...',
+ 'operations': {
+ 'title': '操作',
+ 'over-write': '覆盖',
+ 'overwrite': '覆盖',
+ 'set': '设置',
+ 'clear': '清空',
+ 'extend': '扩展',
+ 'append': '追加',
+ '+=': '+=',
+ '-=': '-=',
+ '*=': '*=',
+ '/=': '/=',
+ },
'variable': '变量',
+ 'variables': '变量',
+ 'noAssignedVars': '没有可用的赋值变量',
+ 'assignedVarsDescription': '赋值变量必须是可写入的变量,例如会话变量。',
},
tool: {
toAuthorize: '授权',
diff --git a/web/i18n/zh-Hant/app-log.ts b/web/i18n/zh-Hant/app-log.ts
index 9804844736147d..8027836aa7e3bb 100644
--- a/web/i18n/zh-Hant/app-log.ts
+++ b/web/i18n/zh-Hant/app-log.ts
@@ -79,6 +79,8 @@ const translation = {
runDetail: {
title: '對話日誌',
workflowTitle: '日誌詳情',
+ fileListDetail: '細節',
+ fileListLabel: '檔詳細資訊',
},
promptLog: 'Prompt 日誌',
agentLog: 'Agent 日誌',
diff --git a/web/i18n/zh-Hant/dataset-creation.ts b/web/i18n/zh-Hant/dataset-creation.ts
index 02374573cf4a43..8c5673cb3f85c3 100644
--- a/web/i18n/zh-Hant/dataset-creation.ts
+++ b/web/i18n/zh-Hant/dataset-creation.ts
@@ -142,7 +142,7 @@ const translation = {
websiteSource: '預處理網站',
webpageUnit: '頁面',
separatorTip: '分隔符是用於分隔文字的字元。\\n\\n 和 \\n 是分隔段落和行的常用分隔符。與逗號 (\\n\\n,\\n) 組合使用時,當超過最大區塊長度時,段落將按行分段。您也可以使用自定義的特殊分隔符(例如 ***)。',
- maxLengthCheck: '塊最大長度應小於 4000',
+ maxLengthCheck: '塊最大長度應小於 {{limit}}',
},
stepThree: {
creationTitle: '🎉 知識庫已建立',
diff --git a/web/i18n/zh-Hant/explore.ts b/web/i18n/zh-Hant/explore.ts
index a8a5224cde48f8..80dfe095dd6647 100644
--- a/web/i18n/zh-Hant/explore.ts
+++ b/web/i18n/zh-Hant/explore.ts
@@ -35,6 +35,8 @@ const translation = {
Translate: '翻譯',
Programming: '程式設計',
HR: '人力資源',
+ Agent: '代理',
+ Workflow: '工作流',
},
}
diff --git a/web/i18n/zh-Hant/workflow.ts b/web/i18n/zh-Hant/workflow.ts
index 0598593eda5aad..4653e64258e528 100644
--- a/web/i18n/zh-Hant/workflow.ts
+++ b/web/i18n/zh-Hant/workflow.ts
@@ -500,6 +500,26 @@ const translation = {
'clear': '清除',
'setVariable': '設定變數',
'variable': '變數',
+ 'operations': {
+ 'overwrite': '改寫',
+ '/=': '/=',
+ 'title': '操作',
+ '*=': '*=',
+ 'extend': '擴展',
+ '+=': '+=',
+ 'set': '設置',
+ 'over-write': '改寫',
+ '-=': '-=',
+ 'append': '附加',
+ 'clear': '清楚',
+ },
+ 'noAssignedVars': '沒有可用的已分配變數',
+ 'variables': '變數',
+ 'selectAssignedVariable': '選擇配置的變數...',
+ 'setParameter': '設定參數...',
+ 'noVarTip': '點擊 「+」 按鈕添加變數',
+ 'assignedVarsDescription': '分配的變數必須是可寫變數,例如對話變數。',
+ 'varNotSet': '未設置變數',
},
tool: {
toAuthorize: '授權',
@@ -631,6 +651,13 @@ const translation = {
tracing: {
stopBy: '由{{user}}終止',
},
+ variableReference: {
+ noAvailableVars: '無可用變數',
+ noAssignedVars: '沒有可用的已分配變數',
+ noVarsForOperation: '所選操作沒有可用於賦值的變數。',
+ assignedVarsDescription: '分配的變數必須是可寫變數,例如',
+ conversationVars: '對話變數',
+ },
}
export default translation
diff --git a/web/models/datasets.ts b/web/models/datasets.ts
index 95c7ce45de89fa..e2fa608bae3ae6 100644
--- a/web/models/datasets.ts
+++ b/web/models/datasets.ts
@@ -175,6 +175,7 @@ export type ProcessMode = 'automatic' | 'custom'
export type ProcessRuleResponse = {
mode: ProcessMode
rules: Rules
+ limits: Limits
}
export type Rules = {
@@ -182,6 +183,10 @@ export type Rules = {
segmentation: Segmentation
}
+export type Limits = {
+ indexing_max_segmentation_tokens_length: number
+}
+
export type PreProcessingRule = {
id: string
enabled: boolean
diff --git a/web/package.json b/web/package.json
index 6ef42acd7ca6ed..65e5d4d1ffcfe8 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
{
"name": "dify-web",
- "version": "0.12.1",
+ "version": "0.13.1",
"private": true,
"engines": {
"node": ">=18.17.0"
@@ -52,6 +52,7 @@
"dayjs": "^1.11.7",
"echarts": "^5.4.1",
"echarts-for-react": "^3.0.2",
+ "elkjs": "^0.9.3",
"emoji-mart": "^5.5.2",
"fast-deep-equal": "^3.1.3",
"i18next": "^22.4.13",
@@ -64,7 +65,7 @@
"lamejs": "^1.2.1",
"lexical": "^0.16.0",
"lodash-es": "^4.17.21",
- "mermaid": "10.9.3",
+ "mermaid": "11.4.1",
"mime": "^4.0.4",
"negotiator": "^0.6.3",
"next": "^14.2.10",
@@ -144,7 +145,7 @@
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.14",
"bing-translate-api": "^4.0.2",
- "code-inspector-plugin": "^0.13.0",
+ "code-inspector-plugin": "^0.18.1",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-next": "^14.0.4",
diff --git a/web/service/explore.ts b/web/service/explore.ts
index bb608f7ee50015..e9e17416d1c1b3 100644
--- a/web/service/explore.ts
+++ b/web/service/explore.ts
@@ -12,8 +12,8 @@ export const fetchAppDetail = (id: string): Promise
=> {
return get(`/explore/apps/${id}`)
}
-export const fetchInstalledAppList = () => {
- return get('/installed-apps')
+export const fetchInstalledAppList = (app_id?: string | null) => {
+ return get(`/installed-apps${app_id ? `?app_id=${app_id}` : ''}`)
}
export const installApp = (id: string) => {
diff --git a/web/yarn.lock b/web/yarn.lock
index cf50a344fc96b5..61d4dcc1d761e6 100644
--- a/web/yarn.lock
+++ b/web/yarn.lock
@@ -80,6 +80,19 @@
jsonc-eslint-parser "^2.1.0"
yaml-eslint-parser "^1.1.0"
+"@antfu/install-pkg@^0.4.0":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-0.4.1.tgz#d1d7f3be96ecdb41581629cafe8626d1748c0cf1"
+ integrity sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==
+ dependencies:
+ package-manager-detector "^0.2.0"
+ tinyexec "^0.3.0"
+
+"@antfu/utils@^0.7.10":
+ version "0.7.10"
+ resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-0.7.10.tgz#ae829f170158e297a9b6a28f161a8e487d00814d"
+ integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==
+
"@babel/code-frame@^7.0.0":
version "7.21.4"
resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz"
@@ -1324,10 +1337,42 @@
resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-"@braintree/sanitize-url@^6.0.1":
- version "6.0.4"
- resolved "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz"
- integrity sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==
+"@braintree/sanitize-url@^7.0.1":
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-7.1.0.tgz#048e48aab4f1460e3121e22aa62459d16653dc85"
+ integrity sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==
+
+"@chevrotain/cst-dts-gen@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz#5e0863cc57dc45e204ccfee6303225d15d9d4783"
+ integrity sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==
+ dependencies:
+ "@chevrotain/gast" "11.0.3"
+ "@chevrotain/types" "11.0.3"
+ lodash-es "4.17.21"
+
+"@chevrotain/gast@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/gast/-/gast-11.0.3.tgz#e84d8880323fe8cbe792ef69ce3ffd43a936e818"
+ integrity sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==
+ dependencies:
+ "@chevrotain/types" "11.0.3"
+ lodash-es "4.17.21"
+
+"@chevrotain/regexp-to-ast@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz#11429a81c74a8e6a829271ce02fc66166d56dcdb"
+ integrity sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==
+
+"@chevrotain/types@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/types/-/types-11.0.3.tgz#f8a03914f7b937f594f56eb89312b3b8f1c91848"
+ integrity sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==
+
+"@chevrotain/utils@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/utils/-/utils-11.0.3.tgz#e39999307b102cff3645ec4f5b3665f5297a2224"
+ integrity sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==
"@chromatic-com/storybook@^1.9.0":
version "1.9.0"
@@ -1621,6 +1666,24 @@
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
+"@iconify/types@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz#ab0e9ea681d6c8a1214f30cd741fe3a20cc57f57"
+ integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==
+
+"@iconify/utils@^2.1.32":
+ version "2.1.33"
+ resolved "https://registry.yarnpkg.com/@iconify/utils/-/utils-2.1.33.tgz#cbf7242a52fd0ec58c42d37d28e4406b5327e8c0"
+ integrity sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==
+ dependencies:
+ "@antfu/install-pkg" "^0.4.0"
+ "@antfu/utils" "^0.7.10"
+ "@iconify/types" "^2.0.0"
+ debug "^4.3.6"
+ kolorist "^1.8.0"
+ local-pkg "^0.5.0"
+ mlly "^1.7.1"
+
"@img/sharp-darwin-arm64@0.33.2":
version "0.33.2"
resolved "https://registry.yarnpkg.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.2.tgz#0a52a82c2169112794dac2c71bfba9e90f7c5bd1"
@@ -2372,6 +2435,13 @@
dependencies:
"@types/mdx" "^2.0.0"
+"@mermaid-js/parser@^0.3.0":
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/@mermaid-js/parser/-/parser-0.3.0.tgz#7a28714599f692f93df130b299fa1aadc9f9c8ab"
+ integrity sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==
+ dependencies:
+ langium "3.0.0"
+
"@monaco-editor/loader@^1.4.0":
version "1.4.0"
resolved "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.4.0.tgz"
@@ -3419,12 +3489,12 @@
resolved "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz"
integrity sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==
-"@types/d3-scale-chromatic@*", "@types/d3-scale-chromatic@^3.0.0":
+"@types/d3-scale-chromatic@*":
version "3.0.0"
resolved "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz"
integrity sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==
-"@types/d3-scale@*", "@types/d3-scale@^4.0.3":
+"@types/d3-scale@*":
version "4.0.4"
resolved "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.4.tgz"
integrity sha512-eq1ZeTj0yr72L8MQk6N6heP603ubnywSDRfNpi5enouR112HzGLS6RIvExCzZTraFF4HdzNpJMwA/zGiMoHUUw==
@@ -3473,9 +3543,9 @@
"@types/d3-interpolate" "*"
"@types/d3-selection" "*"
-"@types/d3@^7.4.0":
+"@types/d3@^7.4.0", "@types/d3@^7.4.3":
version "7.4.3"
- resolved "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz"
+ resolved "https://registry.yarnpkg.com/@types/d3/-/d3-7.4.3.tgz#d4550a85d08f4978faf0a4c36b848c61eaac07e2"
integrity sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==
dependencies:
"@types/d3-array" "*"
@@ -3895,6 +3965,11 @@
resolved "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304"
integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==
+"@types/trusted-types@^2.0.7":
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11"
+ integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==
+
"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2":
version "2.0.6"
resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz"
@@ -4334,6 +4409,11 @@ acorn@^8.12.1, acorn@^8.7.1, acorn@^8.8.2:
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.13.0.tgz#2a30d670818ad16ddd6a35d3842dacec9e5d7ca3"
integrity sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==
+acorn@^8.14.0:
+ version "8.14.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0"
+ integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
+
adjust-sourcemap-loader@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99"
@@ -5240,6 +5320,25 @@ check-error@^2.1.1:
resolved "https://registry.yarnpkg.com/check-error/-/check-error-2.1.1.tgz#87eb876ae71ee388fa0471fe423f494be1d96ccc"
integrity sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==
+chevrotain-allstar@~0.3.0:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz#b7412755f5d83cc139ab65810cdb00d8db40e6ca"
+ integrity sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==
+ dependencies:
+ lodash-es "^4.17.21"
+
+chevrotain@~11.0.3:
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-11.0.3.tgz#88ffc1fb4b5739c715807eaeedbbf200e202fc1b"
+ integrity sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==
+ dependencies:
+ "@chevrotain/cst-dts-gen" "11.0.3"
+ "@chevrotain/gast" "11.0.3"
+ "@chevrotain/regexp-to-ast" "11.0.3"
+ "@chevrotain/types" "11.0.3"
+ "@chevrotain/utils" "11.0.3"
+ lodash-es "4.17.21"
+
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3:
version "3.5.3"
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
@@ -5388,24 +5487,28 @@ co@^4.6.0:
resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
-code-inspector-core@0.13.0:
- version "0.13.0"
- resolved "https://registry.npmjs.org/code-inspector-core/-/code-inspector-core-0.13.0.tgz"
- integrity sha512-oYPNLdJjn3SY50YtF3IuxZOKLBNwzXSRPOqiXVnZFceMz9Ar6ugP3+zj7HszouxrsLFb2dVtlv//5wr4+cq62A==
+code-inspector-core@0.18.2:
+ version "0.18.2"
+ resolved "https://registry.yarnpkg.com/code-inspector-core/-/code-inspector-core-0.18.2.tgz#5d4845789411d8ce2203a8b92b32d023fe6b0e0b"
+ integrity sha512-2fnBXAF5apwrhvih6mseoklbcveMRulAByZiO2BNdfK77LjaBnbLZAxZqUVdgZhXmewkMBrVrPRQVRoldhdpIQ==
dependencies:
"@vue/compiler-dom" "^3.2.47"
chalk "^4.1.1"
+ dotenv "^16.1.4"
+ launch-ide "1.0.0"
portfinder "^1.0.28"
-code-inspector-plugin@^0.13.0:
- version "0.13.0"
- resolved "https://registry.npmjs.org/code-inspector-plugin/-/code-inspector-plugin-0.13.0.tgz"
- integrity sha512-v4mq5hhHkyMmutembTzREVsFeZ/+KsCwfx20+0gTqm1Il/M1T4d2BCv9mZ4ivie3GvvDMt/pVz1iBBVP3SuzJA==
+code-inspector-plugin@^0.18.1:
+ version "0.18.2"
+ resolved "https://registry.yarnpkg.com/code-inspector-plugin/-/code-inspector-plugin-0.18.2.tgz#b604edef92b7eb6654a1a1660b3dfc5831fd7a14"
+ integrity sha512-LKOhA4YsoUZ6Dq4OQKP7G+kPcfeYGLoIQz7EDG4yoL5mqSu+uWR+0QvzoDc4HGXQ0jpkzEwlatbH6fBlbPiwKQ==
dependencies:
chalk "4.1.1"
- code-inspector-core "0.13.0"
- vite-code-inspector-plugin "0.13.0"
- webpack-code-inspector-plugin "0.13.0"
+ code-inspector-core "0.18.2"
+ dotenv "^16.3.1"
+ esbuild-code-inspector-plugin "0.18.2"
+ vite-code-inspector-plugin "0.18.2"
+ webpack-code-inspector-plugin "0.18.2"
collect-v8-coverage@^1.0.0:
version "1.0.2"
@@ -5514,6 +5617,11 @@ concat-map@0.0.1:
resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
+confbox@^0.1.8:
+ version "0.1.8"
+ resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.8.tgz#820d73d3b3c82d9bd910652c5d4d599ef8ff8b06"
+ integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==
+
console-browserify@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
@@ -5587,6 +5695,13 @@ cose-base@^1.0.0:
dependencies:
layout-base "^1.0.0"
+cose-base@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-2.2.0.tgz#1c395c35b6e10bb83f9769ca8b817d614add5c01"
+ integrity sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==
+ dependencies:
+ layout-base "^2.0.0"
+
cosmiconfig@^7.0.1:
version "7.1.0"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
@@ -5665,9 +5780,9 @@ cross-env@^7.0.3:
cross-spawn "^7.0.1"
cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
- version "7.0.3"
- resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
+ integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
dependencies:
path-key "^3.1.0"
shebang-command "^2.0.0"
@@ -5764,10 +5879,17 @@ cytoscape-cose-bilkent@^4.1.0:
dependencies:
cose-base "^1.0.0"
-cytoscape@^3.28.1:
- version "3.30.2"
- resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.30.2.tgz#94149707fb6547a55e3b44f03ffe232706212161"
- integrity sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw==
+cytoscape-fcose@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz#e4d6f6490df4fab58ae9cea9e5c3ab8d7472f471"
+ integrity sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==
+ dependencies:
+ cose-base "^2.2.0"
+
+cytoscape@^3.29.2:
+ version "3.30.4"
+ resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.30.4.tgz#3404da0a159c00a1a3df2c85b2b43fdc66a0e28e"
+ integrity sha512-OxtlZwQl1WbwMmLiyPSEBuzeTIQnwZhJYYWFzZ2PhEHVFwpeaqNIkUzSiso00D98qk60l8Gwon2RP304d3BJ1A==
"d3-array@1 - 2":
version "2.12.1"
@@ -6004,10 +6126,10 @@ d3-zoom@3, d3-zoom@^3.0.0:
d3-selection "2 - 3"
d3-transition "2 - 3"
-d3@^7.4.0, d3@^7.8.2:
- version "7.8.5"
- resolved "https://registry.npmjs.org/d3/-/d3-7.8.5.tgz"
- integrity sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==
+d3@^7.9.0:
+ version "7.9.0"
+ resolved "https://registry.yarnpkg.com/d3/-/d3-7.9.0.tgz#579e7acb3d749caf8860bd1741ae8d371070cd5d"
+ integrity sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==
dependencies:
d3-array "3"
d3-axis "3"
@@ -6040,12 +6162,12 @@ d3@^7.4.0, d3@^7.8.2:
d3-transition "3"
d3-zoom "3"
-dagre-d3-es@7.0.10:
- version "7.0.10"
- resolved "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz"
- integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==
+dagre-d3-es@7.0.11:
+ version "7.0.11"
+ resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.11.tgz#2237e726c0577bfe67d1a7cfd2265b9ab2c15c40"
+ integrity sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==
dependencies:
- d3 "^7.8.2"
+ d3 "^7.9.0"
lodash-es "^4.17.21"
damerau-levenshtein@^1.0.8:
@@ -6062,6 +6184,11 @@ data-urls@^3.0.2:
whatwg-mimetype "^3.0.0"
whatwg-url "^11.0.0"
+dayjs@^1.11.10:
+ version "1.11.13"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c"
+ integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==
+
dayjs@^1.11.7, dayjs@^1.9.1:
version "1.11.8"
resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.8.tgz"
@@ -6095,6 +6222,13 @@ debug@^4.0.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
dependencies:
ms "2.1.2"
+debug@^4.3.6:
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52"
+ integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
+ dependencies:
+ ms "^2.1.3"
+
decimal.js@^10.4.2:
version "10.4.3"
resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23"
@@ -6401,10 +6535,12 @@ domhandler@^5.0.2, domhandler@^5.0.3:
dependencies:
domelementtype "^2.3.0"
-"dompurify@^3.0.5 <3.1.7":
- version "3.1.6"
- resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.6.tgz#43c714a94c6a7b8801850f82e756685300a027e2"
- integrity sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==
+dompurify@^3.2.1:
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.2.2.tgz#6c0518745e81686c74a684f5af1e5613e7cc0246"
+ integrity sha512-YMM+erhdZ2nkZ4fTNRTSI94mb7VG7uVF5vj5Zde7tImgnhZE3R6YW/IACGIHb2ux+QkEXMhe591N+5jWOmL4Zw==
+ optionalDependencies:
+ "@types/trusted-types" "^2.0.7"
domutils@^2.5.2, domutils@^2.8.0:
version "2.8.0"
@@ -6432,6 +6568,11 @@ dot-case@^3.0.4:
no-case "^3.0.4"
tslib "^2.0.3"
+dotenv@^16.1.4, dotenv@^16.3.1:
+ version "16.4.7"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz#0e20c5b82950140aa99be360a8a5f52335f53c26"
+ integrity sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==
+
echarts-for-react@^3.0.2:
version "3.0.2"
resolved "https://registry.npmjs.org/echarts-for-react/-/echarts-for-react-3.0.2.tgz"
@@ -6468,7 +6609,7 @@ electron-to-chromium@^1.5.28:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.40.tgz#5f6aec13751123c5c3185999ebe3e7bcaf828c2b"
integrity sha512-LYm78o6if4zTasnYclgQzxEcgMoIcybWOhkATWepN95uwVVWV0/IW10v+2sIeHE+bIYWipLneTftVyQm45UY7g==
-elkjs@^0.9.0:
+elkjs@^0.9.3:
version "0.9.3"
resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.9.3.tgz#16711f8ceb09f1b12b99e971b138a8384a529161"
integrity sha512-f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ==
@@ -6704,6 +6845,13 @@ es-to-primitive@^1.2.1:
is-date-object "^1.0.1"
is-symbol "^1.0.2"
+esbuild-code-inspector-plugin@0.18.2:
+ version "0.18.2"
+ resolved "https://registry.yarnpkg.com/esbuild-code-inspector-plugin/-/esbuild-code-inspector-plugin-0.18.2.tgz#3ecb938d3c05356ca2878c71edae9e4a24590b8f"
+ integrity sha512-q9Qh1xfUhHEtnmYt8eXCAzdbFLaBMgC6wrwmGH7JI2nztYlcpVD4HeAnheQ9ZTaoRGu+2L+qkpM5XQMd6xhUcQ==
+ dependencies:
+ code-inspector-core "0.18.2"
+
esbuild-register@^3.5.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/esbuild-register/-/esbuild-register-3.6.0.tgz#cf270cfa677baebbc0010ac024b823cbf723a36d"
@@ -7810,6 +7958,11 @@ grapheme-splitter@^1.0.4:
resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
+hachure-fill@^0.5.2:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/hachure-fill/-/hachure-fill-0.5.2.tgz#d19bc4cc8750a5962b47fb1300557a85fcf934cc"
+ integrity sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==
+
has-bigints@^1.0.1, has-bigints@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
@@ -9397,10 +9550,10 @@ keyv@^4.0.0:
dependencies:
json-buffer "3.0.1"
-khroma@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/khroma/-/khroma-2.0.0.tgz"
- integrity sha512-2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g==
+khroma@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.1.0.tgz#45f2ce94ce231a437cf5b63c2e886e6eb42bbbb1"
+ integrity sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==
kleur@^3.0.3:
version "3.0.3"
@@ -9412,6 +9565,11 @@ kleur@^4.0.3:
resolved "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz"
integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
+kolorist@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/kolorist/-/kolorist-1.8.0.tgz#edddbbbc7894bc13302cdf740af6374d4a04743c"
+ integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==
+
lamejs@^1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/lamejs/-/lamejs-1.2.1.tgz"
@@ -9419,6 +9577,17 @@ lamejs@^1.2.1:
dependencies:
use-strict "1.0.1"
+langium@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/langium/-/langium-3.0.0.tgz#4938294eb57c59066ef955070ac4d0c917b26026"
+ integrity sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg==
+ dependencies:
+ chevrotain "~11.0.3"
+ chevrotain-allstar "~0.3.0"
+ vscode-languageserver "~9.0.1"
+ vscode-languageserver-textdocument "~1.0.11"
+ vscode-uri "~3.0.8"
+
language-subtag-registry@~0.3.2:
version "0.3.22"
resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz"
@@ -9431,11 +9600,24 @@ language-tags@=1.0.5:
dependencies:
language-subtag-registry "~0.3.2"
+launch-ide@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/launch-ide/-/launch-ide-1.0.0.tgz#be405fdef86cff69eeb53fb9ad59054a7480fd56"
+ integrity sha512-VnVnFZK97DySVgidvlHlbPYOgf0hWjYowdqPu5P9iw1vyA+JUPu7ldJdL3cQm0ILC+4Wf1jtOv/x2f/67ePIfQ==
+ dependencies:
+ chalk "^4.1.1"
+ dotenv "^16.1.4"
+
layout-base@^1.0.0:
version "1.0.2"
resolved "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz"
integrity sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==
+layout-base@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-2.0.1.tgz#d0337913586c90f9c2c075292069f5c2da5dd285"
+ integrity sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==
+
leven@^3.1.0:
version "3.1.0"
resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
@@ -9521,6 +9703,14 @@ local-pkg@^0.4.3:
resolved "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz"
integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==
+local-pkg@^0.5.0:
+ version "0.5.1"
+ resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.1.tgz#69658638d2a95287534d4c2fff757980100dbb6d"
+ integrity sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==
+ dependencies:
+ mlly "^1.7.3"
+ pkg-types "^1.2.1"
+
locate-path@^5.0.0:
version "5.0.0"
resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
@@ -9542,7 +9732,7 @@ locate-path@^7.1.0:
dependencies:
p-locate "^6.0.0"
-lodash-es@^4.17.21:
+lodash-es@4.17.21, lodash-es@^4.17.21:
version "4.17.21"
resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz"
integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
@@ -9705,6 +9895,11 @@ markdown-to-jsx@^7.4.5:
resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.5.0.tgz#42ece0c71e842560a7d8bd9f81e7a34515c72150"
integrity sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==
+marked@^13.0.2:
+ version "13.0.3"
+ resolved "https://registry.yarnpkg.com/marked/-/marked-13.0.3.tgz#5c5b4a5d0198060c7c9bc6ef9420a7fed30f822d"
+ integrity sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==
+
md5.js@^1.3.4:
version "1.3.5"
resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
@@ -9744,7 +9939,7 @@ mdast-util-from-markdown@^0.8.5:
parse-entities "^2.0.0"
unist-util-stringify-position "^2.0.0"
-mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0, mdast-util-from-markdown@^1.3.0:
+mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0:
version "1.3.1"
resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz"
integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
@@ -9990,31 +10185,31 @@ merge2@^1.3.0, merge2@^1.4.1:
resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-mermaid@10.9.3:
- version "10.9.3"
- resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.9.3.tgz#90bc6f15c33dbe5d9507fed31592cc0d88fee9f7"
- integrity sha512-V80X1isSEvAewIL3xhmz/rVmc27CVljcsbWxkxlWJWY/1kQa4XOABqpDl2qQLGKzpKm6WbTfUEKImBlUfFYArw==
+mermaid@11.4.1:
+ version "11.4.1"
+ resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-11.4.1.tgz#577fad5c31a01a06d9f793e298d411f1379eecc8"
+ integrity sha512-Mb01JT/x6CKDWaxigwfZYuYmDZ6xtrNwNlidKZwkSrDaY9n90tdrJTV5Umk+wP1fZscGptmKFXHsXMDEVZ+Q6A==
dependencies:
- "@braintree/sanitize-url" "^6.0.1"
- "@types/d3-scale" "^4.0.3"
- "@types/d3-scale-chromatic" "^3.0.0"
- cytoscape "^3.28.1"
+ "@braintree/sanitize-url" "^7.0.1"
+ "@iconify/utils" "^2.1.32"
+ "@mermaid-js/parser" "^0.3.0"
+ "@types/d3" "^7.4.3"
+ cytoscape "^3.29.2"
cytoscape-cose-bilkent "^4.1.0"
- d3 "^7.4.0"
+ cytoscape-fcose "^2.2.0"
+ d3 "^7.9.0"
d3-sankey "^0.12.3"
- dagre-d3-es "7.0.10"
- dayjs "^1.11.7"
- dompurify "^3.0.5 <3.1.7"
- elkjs "^0.9.0"
+ dagre-d3-es "7.0.11"
+ dayjs "^1.11.10"
+ dompurify "^3.2.1"
katex "^0.16.9"
- khroma "^2.0.0"
+ khroma "^2.1.0"
lodash-es "^4.17.21"
- mdast-util-from-markdown "^1.3.0"
- non-layered-tidy-tree-layout "^2.0.2"
- stylis "^4.1.3"
+ marked "^13.0.2"
+ roughjs "^4.6.6"
+ stylis "^4.3.1"
ts-dedent "^2.2.0"
- uuid "^9.0.0"
- web-worker "^1.2.0"
+ uuid "^9.0.1"
methods@~1.1.2:
version "1.1.2"
@@ -10545,6 +10740,16 @@ mkdirp@^0.5.6:
dependencies:
minimist "^1.2.6"
+mlly@^1.7.1, mlly@^1.7.2, mlly@^1.7.3:
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.7.3.tgz#d86c0fcd8ad8e16395eb764a5f4b831590cee48c"
+ integrity sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==
+ dependencies:
+ acorn "^8.14.0"
+ pathe "^1.1.2"
+ pkg-types "^1.2.1"
+ ufo "^1.5.4"
+
mri@^1.1.0:
version "1.2.0"
resolved "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz"
@@ -10560,7 +10765,7 @@ ms@2.1.2, ms@^2.1.1:
resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-ms@2.1.3:
+ms@2.1.3, ms@^2.1.3:
version "2.1.3"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
@@ -10686,11 +10891,6 @@ node-releases@^2.0.18:
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
-non-layered-tidy-tree-layout@^2.0.2:
- version "2.0.2"
- resolved "https://registry.npmjs.org/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz"
- integrity sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==
-
normalize-package-data@^2.5.0:
version "2.5.0"
resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
@@ -10958,6 +11158,11 @@ p-try@^2.0.0:
resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+package-manager-detector@^0.2.0:
+ version "0.2.6"
+ resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.2.6.tgz#7dc8e30ad94861d36114b4499a72d57b30549943"
+ integrity sha512-9vPH3qooBlYRJdmdYP00nvjZOulm40r5dhtal8st18ctf+6S1k7pi5yIHLvI4w5D70x0Y+xdVD9qITH0QO/A8A==
+
pako@~1.0.5:
version "1.0.11"
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
@@ -11056,6 +11261,11 @@ path-browserify@^1.0.1:
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==
+path-data-parser@0.1.0, path-data-parser@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/path-data-parser/-/path-data-parser-0.1.0.tgz#8f5ba5cc70fc7becb3dcefaea08e2659aba60b8c"
+ integrity sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==
+
path-exists@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
@@ -11104,6 +11314,11 @@ path-type@^4.0.0:
resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+pathe@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec"
+ integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
+
pathval@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.0.tgz#7e2550b422601d4f6b8e26f1301bc8f15a741a25"
@@ -11183,6 +11398,15 @@ pkg-dir@^7.0.0:
dependencies:
find-up "^6.3.0"
+pkg-types@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.2.1.tgz#6ac4e455a5bb4b9a6185c1c79abd544c901db2e5"
+ integrity sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==
+ dependencies:
+ confbox "^0.1.8"
+ mlly "^1.7.2"
+ pathe "^1.1.2"
+
pluralize@^8.0.0:
version "8.0.0"
resolved "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz"
@@ -11195,6 +11419,19 @@ pnp-webpack-plugin@^1.7.0:
dependencies:
ts-pnp "^1.1.6"
+points-on-curve@0.2.0, points-on-curve@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/points-on-curve/-/points-on-curve-0.2.0.tgz#7dbb98c43791859434284761330fa893cb81b4d1"
+ integrity sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==
+
+points-on-path@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/points-on-path/-/points-on-path-0.2.1.tgz#553202b5424c53bed37135b318858eacff85dd52"
+ integrity sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==
+ dependencies:
+ path-data-parser "0.1.0"
+ points-on-curve "0.2.0"
+
polished@^4.2.2:
version "4.3.1"
resolved "https://registry.yarnpkg.com/polished/-/polished-4.3.1.tgz#5a00ae32715609f83d89f6f31d0f0261c6170548"
@@ -12259,6 +12496,16 @@ robust-predicates@^3.0.0:
resolved "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz"
integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==
+roughjs@^4.6.6:
+ version "4.6.6"
+ resolved "https://registry.yarnpkg.com/roughjs/-/roughjs-4.6.6.tgz#1059f49a5e0c80dee541a005b20cc322b222158b"
+ integrity sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==
+ dependencies:
+ hachure-fill "^0.5.2"
+ path-data-parser "^0.1.0"
+ points-on-curve "^0.2.0"
+ points-on-path "^0.2.1"
+
run-applescript@^5.0.0:
version "5.0.0"
resolved "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz"
@@ -12981,10 +13228,10 @@ styled-jsx@^5.1.6:
dependencies:
client-only "0.0.1"
-stylis@^4.1.3:
- version "4.3.0"
- resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.0.tgz"
- integrity sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==
+stylis@^4.3.1:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.4.tgz#ca5c6c4a35c4784e4e93a2a24dc4e9fa075250a4"
+ integrity sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==
sucrase@^3.32.0:
version "3.32.0"
@@ -13171,6 +13418,11 @@ tiny-invariant@^1.3.1, tiny-invariant@^1.3.3:
resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127"
integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==
+tinyexec@^0.3.0:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98"
+ integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==
+
tinyrainbow@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/tinyrainbow/-/tinyrainbow-1.2.0.tgz#5c57d2fc0fb3d1afd78465c33ca885d04f02abb5"
@@ -13433,6 +13685,11 @@ typescript@4.9.5:
resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz"
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
+ufo@^1.5.4:
+ version "1.5.4"
+ resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754"
+ integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==
+
uglify-js@^3.17.4:
version "3.17.4"
resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz"
@@ -13801,12 +14058,12 @@ vfile@^6.0.0:
unist-util-stringify-position "^4.0.0"
vfile-message "^4.0.0"
-vite-code-inspector-plugin@0.13.0:
- version "0.13.0"
- resolved "https://registry.npmjs.org/vite-code-inspector-plugin/-/vite-code-inspector-plugin-0.13.0.tgz"
- integrity sha512-hvIn9G+IFzQHVVynWh2wGTBHo51CBJRqQBzYryeuuaL0BK0w8my2/tlpSAae5ofQxOBXBMhyXC2gWgYUJnNWrA==
+vite-code-inspector-plugin@0.18.2:
+ version "0.18.2"
+ resolved "https://registry.yarnpkg.com/vite-code-inspector-plugin/-/vite-code-inspector-plugin-0.18.2.tgz#33be5f7408ea81163d833c8f06c2ff1e18669ee4"
+ integrity sha512-MfHvere+71vL0BOposwgbHKZ8o973mYnMhGmU4uzOMt+gsmIjqHxcUkak9K2RMkRB1mG7/Gehvyy28SkUuhg3A==
dependencies:
- code-inspector-core "0.13.0"
+ code-inspector-core "0.18.2"
vm-browserify@^1.1.2:
version "1.1.2"
@@ -13818,6 +14075,41 @@ void-elements@3.1.0:
resolved "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz"
integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==
+vscode-jsonrpc@8.2.0:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz#f43dfa35fb51e763d17cd94dcca0c9458f35abf9"
+ integrity sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==
+
+vscode-languageserver-protocol@3.17.5:
+ version "3.17.5"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz#864a8b8f390835572f4e13bd9f8313d0e3ac4bea"
+ integrity sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==
+ dependencies:
+ vscode-jsonrpc "8.2.0"
+ vscode-languageserver-types "3.17.5"
+
+vscode-languageserver-textdocument@~1.0.11:
+ version "1.0.12"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz#457ee04271ab38998a093c68c2342f53f6e4a631"
+ integrity sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==
+
+vscode-languageserver-types@3.17.5:
+ version "3.17.5"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz#3273676f0cf2eab40b3f44d085acbb7f08a39d8a"
+ integrity sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==
+
+vscode-languageserver@~9.0.1:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz#500aef82097eb94df90d008678b0b6b5f474015b"
+ integrity sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==
+ dependencies:
+ vscode-languageserver-protocol "3.17.5"
+
+vscode-uri@~3.0.8:
+ version "3.0.8"
+ resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f"
+ integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
+
vue-eslint-parser@^9.3.0:
version "9.3.0"
resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.3.0.tgz"
@@ -13858,22 +14150,17 @@ web-namespaces@^2.0.0:
resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz"
integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==
-web-worker@^1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/web-worker/-/web-worker-1.2.0.tgz"
- integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==
-
webidl-conversions@^7.0.0:
version "7.0.0"
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a"
integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==
-webpack-code-inspector-plugin@0.13.0:
- version "0.13.0"
- resolved "https://registry.npmjs.org/webpack-code-inspector-plugin/-/webpack-code-inspector-plugin-0.13.0.tgz"
- integrity sha512-T3ZZ84NX0cVmwff5zyYhB9OuroZYsyaQpSgFicgiuYAWCsQePYApM/R3bHdvcECkBXO50hAVtr9SjWRTu1+Ntg==
+webpack-code-inspector-plugin@0.18.2:
+ version "0.18.2"
+ resolved "https://registry.yarnpkg.com/webpack-code-inspector-plugin/-/webpack-code-inspector-plugin-0.18.2.tgz#c2355d384c12212de5662fa8bc5898f449886b0a"
+ integrity sha512-sSUgrISb8KqKGiX+AvKA5FAdiOh41nEX/EU+c/d1ChYQmwLDdWXxsMyAs494R3r+ihVUchhLalb9V6TvDKTOCA==
dependencies:
- code-inspector-core "0.13.0"
+ code-inspector-core "0.18.2"
webpack-dev-middleware@^6.1.2:
version "6.1.3"