diff --git a/_regroup/package.json b/_regroup/package.json
index db2a72d9c..641527916 100644
--- a/_regroup/package.json
+++ b/_regroup/package.json
@@ -35,13 +35,13 @@
"chore:generate-openapi": "tsx bin/generate-openapi.js"
},
"devDependencies": {
- "@playwright/test": "1.56.0",
- "@stylistic/eslint-plugin": "5.4.0",
+ "@playwright/test": "1.56.1",
+ "@stylistic/eslint-plugin": "5.5.0",
"@types/express": "5.0.3",
- "@types/node": "22.18.10",
+ "@types/node": "22.18.11",
"@types/yargs": "17.0.33",
"@vitest/coverage-v8": "3.2.4",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"esm": "3.2.25",
"jsdoc": "4.0.5",
diff --git a/apps/client/package.json b/apps/client/package.json
index dceb6e8b8..ba408f332 100644
--- a/apps/client/package.json
+++ b/apps/client/package.json
@@ -15,7 +15,7 @@
"circular-deps": "dpdm -T src/**/*.ts --tree=false --warning=false --skip-dynamic-imports=circular"
},
"dependencies": {
- "@eslint/js": "9.37.0",
+ "@eslint/js": "9.38.0",
"@excalidraw/excalidraw": "0.18.0",
"@fullcalendar/core": "6.1.19",
"@fullcalendar/daygrid": "6.1.19",
@@ -52,13 +52,13 @@
"leaflet": "1.9.4",
"leaflet-gpx": "2.2.0",
"mark.js": "8.11.1",
- "marked": "16.4.0",
+ "marked": "16.4.1",
"mermaid": "11.12.0",
- "mind-elixir": "5.3.2",
+ "mind-elixir": "5.3.3",
"normalize.css": "8.0.1",
"panzoom": "9.4.3",
"preact": "10.27.2",
- "react-i18next": "16.0.1",
+ "react-i18next": "16.1.0",
"reveal.js": "5.2.1",
"split.js": "1.6.5",
"svg-pan-zoom": "3.6.2",
@@ -76,7 +76,7 @@
"@types/reveal.js": "5.2.1",
"@types/tabulator-tables": "6.2.11",
"copy-webpack-plugin": "13.0.1",
- "happy-dom": "20.0.4",
+ "happy-dom": "20.0.7",
"script-loader": "0.7.2",
"vite-plugin-static-copy": "3.1.4"
}
diff --git a/apps/client/src/services/css_class_manager.ts b/apps/client/src/services/css_class_manager.ts
index fc839c9b1..ff0270cf3 100644
--- a/apps/client/src/services/css_class_manager.ts
+++ b/apps/client/src/services/css_class_manager.ts
@@ -30,9 +30,8 @@ function createClassForColor(colorString: string | null) {
$("head").append(``);
@@ -66,18 +65,15 @@ function adjustColorLightness(color: ColorInstance, lightThemeMaxLightness: numb
// For the dark theme, limit the minimum lightness
const darkThemeColor = labColor.l(Math.max(lightness, darkThemeMinLightness)).hex();
- let darkThemeBackgroundColor = "unset";
- let lightThemeBackgroundColor = "unset";
+ return {lightThemeColor, darkThemeColor};
+}
+/** Returns the hue of the specified color, or undefined if the color is grayscale. */
+function getHue(color: ColorInstance) {
const hslColor = color.hsl();
- const hue = hslColor.hue();
-
- if (color.saturationl() > 0) {
- darkThemeBackgroundColor = Color({h: hue, s: 20, l: 33, alpha: .4}).hexa();
- lightThemeBackgroundColor = Color({h: hue, s: 37, l: 89, alpha: 1}).hexa();
+ if (hslColor.saturationl() > 0) {
+ return hslColor.hue();
}
-
- return {lightThemeColor, lightThemeBackgroundColor, darkThemeColor, darkThemeBackgroundColor};
}
export default {
diff --git a/apps/client/src/stylesheets/theme-dark.css b/apps/client/src/stylesheets/theme-dark.css
index 95e6dccd8..0a622d97d 100644
--- a/apps/client/src/stylesheets/theme-dark.css
+++ b/apps/client/src/stylesheets/theme-dark.css
@@ -82,9 +82,8 @@ body ::-webkit-calendar-picker-indicator {
filter: invert(1);
}
-#left-pane span.fancytree-node {
+#left-pane .fancytree-node.tinted {
--custom-color: var(--dark-theme-custom-color);
- --custom-bg-color: var(--dark-theme-custom-bg-color);
}
.excalidraw.theme--dark {
diff --git a/apps/client/src/stylesheets/theme-light.css b/apps/client/src/stylesheets/theme-light.css
index 933f5bfe6..a07b9799f 100644
--- a/apps/client/src/stylesheets/theme-light.css
+++ b/apps/client/src/stylesheets/theme-light.css
@@ -82,7 +82,6 @@ html {
--native-titlebar-background: #ffffff00;
}
-#left-pane span.fancytree-node {
+#left-pane .fancytree-node.tinted {
--custom-color: var(--light-theme-custom-color);
- --custom-bg-color: var(--light-theme-custom-bg-color);
}
\ No newline at end of file
diff --git a/apps/client/src/stylesheets/theme-next-dark.css b/apps/client/src/stylesheets/theme-next-dark.css
index b9a66da0d..8b15e7676 100644
--- a/apps/client/src/stylesheets/theme-next-dark.css
+++ b/apps/client/src/stylesheets/theme-next-dark.css
@@ -268,9 +268,13 @@
* Dark color scheme tweaks
*/
-#left-pane span.fancytree-node {
+#left-pane .fancytree-node.tinted {
--custom-color: var(--dark-theme-custom-color);
- --custom-bg-color: var(--dark-theme-custom-bg-color);
+
+ /* The background color of the active item in the note tree.
+ * The --custom-color-hue variable contains the hue of the user-selected note color.
+ * This value is unset for gray tones. */
+ --custom-bg-color: hsl(var(--custom-color-hue), 20%, 33%, 0.4);
}
body ::-webkit-calendar-picker-indicator {
diff --git a/apps/client/src/stylesheets/theme-next-light.css b/apps/client/src/stylesheets/theme-next-light.css
index 0df203dfd..30f4e1c3a 100644
--- a/apps/client/src/stylesheets/theme-next-light.css
+++ b/apps/client/src/stylesheets/theme-next-light.css
@@ -261,5 +261,13 @@
--ck-editor-toolbar-button-on-color: black;
--ck-editor-toolbar-button-on-shadow: none;
--ck-editor-toolbar-dropdown-button-open-background: #0000000f;
-
}
+
+#left-pane .fancytree-node.tinted {
+ --custom-color: var(--light-theme-custom-color);
+
+ /* The background color of the active item in the note tree.
+ * The --custom-color-hue variable contains the hue of the user-selected note color.
+ * This value is unset for gray tones. */
+ --custom-bg-color: hsl(var(--custom-color-hue), 37%, 89%, 1);
+}
\ No newline at end of file
diff --git a/apps/client/src/translations/ar/translation.json b/apps/client/src/translations/ar/translation.json
index 3db20936c..8e9140ca7 100644
--- a/apps/client/src/translations/ar/translation.json
+++ b/apps/client/src/translations/ar/translation.json
@@ -25,7 +25,8 @@
"branch_prefix": {
"edit_branch_prefix": "تعديل بادئة الفرع",
"prefix": "البادئة: ",
- "save": "حفظ"
+ "save": "حفظ",
+ "help_on_tree_prefix": "مساعدة حول بادئة الشجرة"
},
"bulk_actions": {
"bulk_actions": "اجراءات جماعية",
@@ -44,7 +45,8 @@
"options": "خيارات",
"upload": "تحميل",
"choose_files": "اختر الملفات",
- "shrink_images": "تصغير الصور"
+ "shrink_images": "تصغير الصور",
+ "upload_attachments_to_note": "تحميل المرفقات الى الملاحظة"
},
"attribute_detail": {
"name": "الاسم",
@@ -74,7 +76,14 @@
"date_time": "التاريخ والوقت",
"label_definition": "تفاصيل تعريف التصنيف",
"relation_definition": "تفاصيل تعريف العلاقة",
- "attr_detail_title": "عنوان تفاصيل السمة"
+ "attr_detail_title": "عنوان تفاصيل السمة",
+ "close_button_title": "الغاء التغييرات و اغلاق",
+ "attr_is_owned_by": "السمة مملوكة ل",
+ "save_and_close": "حفظ ونسخ Ctrl+Enter",
+ "workspace_calendar_root": "تحديد جذر التقويم لكل مساحة عمل",
+ "hide_highlight_widget": "اخفاء عنصر واجهة قائمة التمييزات",
+ "is_owned_by_note": "تخص الملاحظة",
+ "and_more": "... و {{count}}مرات اكثر."
},
"rename_label": {
"to": "الى",
@@ -86,7 +95,8 @@
"move_note": {
"to": "الى",
"move_note": "نقل الملاحظة",
- "target_parent_note": "ملاحظة الاصل الهدف"
+ "target_parent_note": "ملاحظة الاصل الهدف",
+ "on_all_matched_notes": "على كل الملاحظات المطابقة"
},
"add_relation": {
"to": "الى",
@@ -106,7 +116,8 @@
"update_relation": "تحديث العلاقة",
"relation_name": "اسم العلاقة",
"target_note": "الملاحظة الهدف",
- "update_relation_target": "تحدث علاقة الهدف"
+ "update_relation_target": "تحدث علاقة الهدف",
+ "on_all_matched_notes": "على كل الملاحظات المطابقة"
},
"attachments_actions": {
"download": "تنزيل",
@@ -114,7 +125,9 @@
"open_custom": "فتح مخصص",
"rename_attachment": "اعادة تسمية المرفق",
"delete_attachment": "حذف المرفق",
- "upload_new_revision": "رفع مراجعة جديدة"
+ "upload_new_revision": "رفع مراجعة جديدة",
+ "copy_link_to_clipboard": "نسخ الرابط الى الحافظة",
+ "convert_attachment_into_note": "تحويل المرفق الى ملاحظة"
},
"calendar": {
"week": "أسبوع",
@@ -146,7 +159,9 @@
"month_previous": "الشهر السابق",
"month_next": "الشهر التالي",
"year_previous": "السنة السابقة",
- "year_next": "السنة التالية"
+ "year_next": "السنة التالية",
+ "cannot_find_day_note": "لا يمكن ايجاد ملاحظة اليوم",
+ "cannot_find_week_note": "لايمكن ايجاد ملاحظة الاسبوع"
},
"global_menu": {
"menu": "القائمة",
@@ -171,7 +186,11 @@
"open_dev_tools": "فتح ادوات المطور",
"show_backend_log": "اظهار سجل الخلفية",
"new-version-available": "متوفر تحديث جديد",
- "download-update": "احصل على الاصدار{{latestVersion}}"
+ "download-update": "احصل على الاصدار{{latestVersion}}",
+ "switch_to_mobile_version": "التبديل الى اصدار الهاتف المحمول",
+ "switch_to_desktop_version": "التبديل الى اصدار سطح المكتب",
+ "show_shared_notes_subtree": "عرض شجرة الملاحظات المشتركة",
+ "open_sql_console_history": "فتح سجل لوحة تحكم SQL"
},
"zpetne_odkazy": {
"relation": "العلاقة",
@@ -181,7 +200,8 @@
"note_icon": {
"category": "الفئة:",
"search": "بحث:",
- "change_note_icon": "تغيير ايقونة الملاحظة"
+ "change_note_icon": "تغيير ايقونة الملاحظة",
+ "reset-default": "اعادة تعيين الى الايقونة الافتراضية"
},
"basic_properties": {
"language": "اللغة",
@@ -204,7 +224,8 @@
"collapse_all_notes": "طي كل الملاحظات",
"include_archived_notes": "عرض الملاحظات المؤرشفة",
"expand_all_children": "توسيع جميع العناصر الفرعية",
- "presentation": "عرض تقديمي"
+ "presentation": "عرض تقديمي",
+ "invalid_view_type": "نوع العرض {{type}} غير صالح"
},
"file_properties": {
"download": "تنزيل",
@@ -223,7 +244,8 @@
"file_type": "نوع الملف",
"file_size": "حجم الملف",
"original_file_name": "اسم الملف الاصلي",
- "upload_new_revision": "رفع مراجعة جديدة"
+ "upload_new_revision": "رفع مراجعة جديدة",
+ "copy_reference_to_clipboard": "نسخ المرجع الى الحافظة"
},
"note_info_widget": {
"created": "انشاء",
@@ -258,14 +280,20 @@
"order_by": "ترتيب حسب",
"search_parameters": "معايير البحث",
"add_search_option": "اضافة خيار البحث:",
- "save_to_note": "حفظ في تلملاحظة"
+ "save_to_note": "حفظ في تلملاحظة",
+ "limit_description": "تحديد عدد النتائج",
+ "search_execute": "البحث وتنفيذ الأجراءات",
+ "unknown_search_option": "خيار بحث غير معروف {{searchOptionName}}",
+ "actions_executed": "اجراءات تم تنفيذها."
},
"ancestor": {
"label": "السلف",
"depth_label": "العمق",
"depth_doesnt_matter": "لايهم",
"direct_children": "العقد الفرعية المباشرة",
- "depth_eq": "يساوي تماما {{count}}"
+ "depth_eq": "يساوي تماما {{count}}",
+ "depth_gt": "هو اكبر من {{count}}",
+ "depth_lt": "هو اصغر من {{count}}"
},
"limit": {
"limit": "الحد الاقصى"
@@ -285,7 +313,9 @@
"revision_count": "عدد المراجعات",
"parent_count": "عدد النسخ",
"owned_label_count": "عدد التسميات",
- "owned_relation_count": "عدد العلاقات"
+ "owned_relation_count": "عدد العلاقات",
+ "date_modified": "تاريخ اخر تعديل",
+ "children_count": "عدد الملاحظات الفرعية"
},
"search_string": {
"search_prefix": "بحث:",
@@ -299,7 +329,10 @@
"force_full_sync_button": "فرض مزامنة كاملة",
"finished-successfully": "تم انتهاء المزامنة بنجاح.",
"full_sync_triggered": "تم تشغيل المزامنة الكاملة",
- "failed": "فشل في المزامنة: {{message}}"
+ "failed": "فشل في المزامنة: {{message}}",
+ "fill_entity_changes_button": "ملء سجلات تغييرات الكيانات",
+ "filling_entity_changes": "جار ملء صفوف تغييرات الكيانات",
+ "sync_rows_filled_successfully": "تمة تعبئة بيانات المزامنة بنجاح"
},
"fonts": {
"fonts": "خطوط",
@@ -338,7 +371,8 @@
"export": "تصدير",
"export_note_title": "تصدير الملاحظة",
"export_status": "حالة التصدير",
- "export_finished_successfully": "اكتمل التصدير بنجاح."
+ "export_finished_successfully": "اكتمل التصدير بنجاح.",
+ "export_in_progress": "جار التصدير: {{progressCount}}"
},
"help": {
"troubleshooting": "أستكشاف الاخطاء واصلاحها",
@@ -366,7 +400,9 @@
"scrollToActiveNote": "مدتمرير الى الملاحظة النشطة",
"jumpToParentNote": "الانتقال الى الملاحظة الاصل",
"movingCloningNotes": "نقل/ استنساخ الملاحظات",
- "deleteNotes": "حذف الملاحظة/ الشجرة الفرعية"
+ "deleteNotes": "حذف الملاحظة/ الشجرة الفرعية",
+ "collapseWholeTree": "طي شجرة الملاحظة باكملها",
+ "followLink": "اتبع تلرابط تحت المؤشر"
},
"import": {
"options": "خيارات",
@@ -378,14 +414,18 @@
"chooseImportFile": "اختر ملف الاستيراد",
"failed": "فشل الاستيراد: {{messege}}.",
"html_import_tags": {
- "title": "علامات استيراد HTML"
+ "title": "علامات استيراد HTML",
+ "reset_button": "اعادة التعيين الى القائمة الافتراضية"
},
- "successful": "اكتمل الاستيراد بنجاح."
+ "successful": "اكتمل الاستيراد بنجاح.",
+ "in-progress": "جار الاستيراد: {{progress}}"
},
"include_note": {
"label_note": "ملاحظة",
"dialog_title": "تضمين ملاحظة",
- "button_include": "تضمين ملاحظة"
+ "button_include": "تضمين ملاحظة",
+ "box_size_small": "صغير (10 سطور تقريبا)",
+ "box_size_medium": "متوسط ( 30 سطر تقريبا)"
},
"info": {
"closeButton": "أغلاق",
@@ -409,7 +449,8 @@
"protected_session_password": {
"close_label": "أغلاق",
"modal_title": "جلسة محمية",
- "start_button": "بدء جلسة محمية"
+ "start_button": "بدء جلسة محمية",
+ "help_title": "مساعدة حول الملاحظات المحمية"
},
"revisions": {
"delete_button": "حذف",
@@ -423,7 +464,8 @@
"mime": "MIME: ",
"delete_all_button": "حذف كل المراجعات",
"settings": "اعدادات مراجعة الملاحظة",
- "diff_not_available": "المقارنة غير متوفرة."
+ "diff_not_available": "المقارنة غير متوفرة.",
+ "help_title": "مساعدة حول مراجعات الملاحظة"
},
"sort_child_notes": {
"title": "عنوان",
@@ -442,7 +484,8 @@
"recent_changes": {
"undelete_link": "الغاء الحذف",
"title": "التغيرات الاخيرة",
- "no_changes_message": "لايوجد تغيير لحد الان..."
+ "no_changes_message": "لايوجد تغيير لحد الان...",
+ "erase_notes_button": "مسح الملاحظات المحذوفة الان"
},
"edited_notes": {
"deleted": "(حذف)",
@@ -458,7 +501,8 @@
"max_width_unit": "بكسل",
"title": "عرض المحتوى",
"reload_button": "اعادة تحميل الواجهة",
- "max_width_label": "اقصى عرض للمحتوى"
+ "max_width_label": "اقصى عرض للمحتوى",
+ "reload_description": "تغييرات من خيارات المظهر"
},
"native_title_bar": {
"enabled": "مفعل",
@@ -479,7 +523,8 @@
"ui-performance": {
"title": "أداء",
"enable-shadows": "تفعيل الضلال",
- "enable-smooth-scroll": "تمكين التمرير السلس"
+ "enable-smooth-scroll": "تمكين التمرير السلس",
+ "enable-motion": "تمكين الانتقالات والرسوم المتحركة"
},
"ai_llm": {
"progress": "تقدم",
@@ -543,7 +588,8 @@
"start_indexing": "بدء الفهرسة",
"chat": {
"root_note_title": "دردشات AI",
- "new_chat_title": "دردشة جديدة"
+ "new_chat_title": "دردشة جديدة",
+ "create_new_ai_chat": "انشاء دردشة AI جديدة"
},
"selected_provider": "المزود المحدد",
"select_model": "اختر النموذج...",
@@ -571,7 +617,21 @@
"enable_ai": "تمكين خصائص AI/LLM",
"reprocess_index": "اعادة بناء فهرس البحث",
"index_rebuilding": "جار تحسين الفهرس {{percentage}}",
- "voyage_configuration": "اعدادت Voyage AI"
+ "voyage_configuration": "اعدادت Voyage AI",
+ "openai_model_description": "الامثلة: gpt-4o, gpt-4-turbo, gpt-3.5-turbo",
+ "partial": "{{ percentage }} % مكتمل",
+ "retry_queued": "تم جدولة الملاحظة لاعادة المحاولة",
+ "max_notes_per_llm_query": "اكبر عدد للملاحظات لكل استعلام",
+ "remove_provider": "احذف المزود من البحث",
+ "restore_provider": "استعادة المزود الى البحث",
+ "reprocess_index_error": "حدث خطأ اثناء اعادة بناء فهرس البحث",
+ "auto_refresh_notice": "تحديث تلقائي كل {{seconds}} ثانية",
+ "note_queued_for_retry": "الملاحظة جاهزة لاعادة المحاولة لاحقا",
+ "failed_to_retry_note": "فشل في اعادة محاولة معالجة المحاولة",
+ "failed_to_retry_all": "فشل في اعادة محاولة معالجة الملاحظة",
+ "error_generating_response": "فشل في توليد استجابة من ال AI",
+ "create_new_ai_chat": "انشاء دردشة AI جديدة",
+ "error_fetching": "فشل في استرجاع النماذج: {{error}}"
},
"code_auto_read_only_size": {
"unit": "حروف",
@@ -586,7 +646,8 @@
"enable_image_compression": "تمكين ضغط الصورة"
},
"revisions_snapshot_limit": {
- "snapshot_number_limit_unit": "لقطات"
+ "snapshot_number_limit_unit": "لقطات",
+ "note_revisions_snapshot_limit_title": "الحد الاقصى لنسخ الملاحظات الاحتياطية"
},
"search_engine": {
"bing": "Bing",
@@ -874,7 +935,10 @@
"unset-field-placeholder": "غير محدد",
"open_external_link": "فتح رابط خارجي",
"add_new_attribute": "اضافة سمة جديدة",
- "remove_this_attribute": "حذف هذه السمة"
+ "remove_this_attribute": "حذف هذه السمة",
+ "unknown_label_type": "نوع التسمية {{type}} غير معروف",
+ "unknown_attribute_type": "نوع السمة {{type}} غير معروف",
+ "remove_color": "حذف لون التسمية"
},
"duration": {
"seconds": "ثواني",
@@ -885,7 +949,8 @@
"editorfeatures": {
"title": "مميزات",
"note_completion_enabled": "تمكين الاكمال التلقائي للملاحظة",
- "emoji_completion_enabled": "تفعيل الاكمال التلقائي للرموز التعبيرية"
+ "emoji_completion_enabled": "تفعيل الاكمال التلقائي للرموز التعبيرية",
+ "slash_commands_enabled": "تفعيل اوامر Slash"
},
"book_properties_config": {
"raster": "نقطي",
@@ -921,7 +986,8 @@
"add_label": "اضافة تسمية",
"to_value": "الى القيمة",
"new_value_placeholder": "قيمة جديدة",
- "label_name_placeholder": "اسم التسمية"
+ "label_name_placeholder": "اسم التسمية",
+ "help_text": "عل كل الملاحظات المطابقة:"
},
"delete_label": {
"delete_label": "حذف التسمية",
@@ -939,7 +1005,8 @@
},
"rename_note": {
"rename_note": "اعادة تسمية الملاحظة",
- "new_note_title": "عنوان ملاحظة جديد"
+ "new_note_title": "عنوان ملاحظة جديد",
+ "rename_note_title_to": "اعادة تسمية عنوان الملاحظة الى"
},
"delete_relation": {
"delete_relation": "حذف العلاقة",
@@ -966,7 +1033,8 @@
"search_in_note": "بحث في الملاحظة",
"open_note_externally": "فتح الملاحظة خارجيا",
"open_note_custom": "فتح ملاحظة مخصص",
- "print_pdf": "تصدير كملف PDF..."
+ "print_pdf": "تصدير كملف PDF...",
+ "convert_into_attachment_failed": "فشل تحويل الملاحظة {{title}}."
},
"update_available": {
"update_available": "تحديث متوفر"
@@ -974,7 +1042,8 @@
"code_buttons": {
"execute_button_title": "تنفيذ السكريبت",
"save_to_note_button_title": "حفظ في الملاحظا",
- "opening_api_docs_message": "جاري فتح مستدات API..."
+ "opening_api_docs_message": "جاري فتح مستدات API...",
+ "trilium_api_docs_button_title": "فتح مستندات API لتريليوم"
},
"hide_floating_buttons_button": {
"button_title": "اخفاء الازرار"
@@ -994,13 +1063,15 @@
"title": "خريطة الملاحظة",
"fix-nodes": "اصلاح العقد",
"link-distance": "مسافة الرابط",
- "open_full": "توسيع للعرض الكامل"
+ "open_full": "توسيع للعرض الكامل",
+ "collapse": "طي الى الحجم الطبيعي"
},
"owned_attribute_list": {
"owned_attributes": "السمات المملوكة"
},
"similar_notes": {
- "title": "ملاحظات مشابهة"
+ "title": "ملاحظات مشابهة",
+ "no_similar_notes_found": "لاتوجد ملاحظة مشابهة."
},
"fast_search": {
"fast_search": "بحث سريع"
@@ -1010,7 +1081,8 @@
"example_title": "انظر هذا المثال:"
},
"attachment_detail": {
- "owning_note": "الملاحظة المالكة: "
+ "owning_note": "الملاحظة المالكة: ",
+ "list_of_all_attachments": "قائمة بكل المرفقات"
},
"attachment_list": {
"owning_note": "الملاحظة المالكة: ",
@@ -1021,14 +1093,21 @@
"protecting-title": "الحالة المحمية",
"unprotecting-title": "الحالة الغير محمية",
"protecting-finished-successfully": "تم الحماية بنجاح.",
- "unprotecting-finished-successfully": "تم ازالة الحماية بنجاح."
+ "unprotecting-finished-successfully": "تم ازالة الحماية بنجاح.",
+ "start_session_button": "البدء بالجلسة المحمية enter",
+ "protecting-in-progress": "جار الحماية: {{count}}",
+ "unprotecting-in-progress-count": "جار الغاء الحماية: {{count}}"
},
"relation_map": {
"remove_note": "حذف الملاحظة",
"edit_title": "تعديل العنوان",
"rename_note": "اعادة تسمية الملاحظة",
"remove_relation": "حذف العلاقة",
- "default_new_note_title": "ملاحظة جديدة"
+ "default_new_note_title": "ملاحظة جديدة",
+ "open_in_new_tab": "فتح في تبويب جديد",
+ "enter_new_title": "ادخل عنوان ملاحظة جديدة:",
+ "note_not_found": "الملاحظة {{noteId}} غير موجودة!",
+ "cannot_match_transform": "تعذر مطابقة التحويل: {{transform}}"
},
"web_view": {
"web_view": "عرض الويب"
@@ -1045,7 +1124,8 @@
"vacuum_database": {
"title": "تحرير مساحة قاعدة البيانات",
"button_text": "تحرير مساحة قاعدة البيانات",
- "vacuuming_database": "جار تحرير مساحة قاعدة الييانات..."
+ "vacuuming_database": "جار تحرير مساحة قاعدة الييانات...",
+ "database_vacuumed": "تم تنظيف قاعدة البيانات"
},
"ribbon": {
"widgets": "ادوات الشريط"
@@ -1054,7 +1134,8 @@
"use_vim_keybindings_in_code_notes": "اختصارات لوحة المفاتيح باسلوب Vim"
},
"network_connections": {
- "network_connections_title": "اتصالات الشبكة"
+ "network_connections_title": "اتصالات الشبكة",
+ "check_for_updates": "التحقق من وجود تحديثات تلقائية"
},
"tray": {
"title": "شريط النظام"
@@ -1189,7 +1270,9 @@
},
"move_to": {
"notes_to_move": "الملاحظات المراد نقلها",
- "target_parent_note": "ملاحظة الاصل الهدف"
+ "target_parent_note": "ملاحظة الاصل الهدف",
+ "dialog_title": "انقل الملاحظات الى...",
+ "move_button": "نقل الىالملاحظة المحددة"
},
"delete_revisions": {
"delete_note_revisions": "حذف مراجعات الملاحظة"
@@ -1236,7 +1319,10 @@
"enter_workspace": "ادخل مساحة العمل {{title}}"
},
"attribute_editor": {
- "save_attributes": "حفظ السمات "
+ "save_attributes": "حفظ السمات ",
+ "add_a_new_attribute": "اضافة سمة جديدة",
+ "add_new_label_definition": "اضافة تعريف لتسمية جديدة",
+ "add_new_relation_definition": "اضافة تعريف لعلاقة جديدة"
},
"zen_mode": {
"button_exit": "الخروج من وضع Zen"
@@ -1246,7 +1332,8 @@
},
"note_erasure_timeout": {
"note_erasure_timeout_title": "مهلة مسح الملاحظة",
- "erase_notes_after": "مسح الملاحظات بعد:"
+ "erase_notes_after": "مسح الملاحظات بعد:",
+ "erase_deleted_notes_now": "مسح الملاحظات المحذوفة الان"
},
"ws": {
"sync-check-failed": "فشل التحقق من المزامنة!"
@@ -1257,5 +1344,27 @@
"presentation_view": {
"start-presentation": "بدء العرض التقديمي",
"edit-slide": "تعديل هذه الشريحة"
+ },
+ "jump_to_note": {
+ "search_button": "البحث في النص الكامل"
+ },
+ "password_not_set": {
+ "title": "لم يتم تعيين كلمة المرور",
+ "go_to_password_options": "اذهب الى خيارات كلمة المرور"
+ },
+ "abstract_bulk_action": {
+ "remove_this_search_action": "حذف اجراء البحث هذا"
+ },
+ "show_toc_widget_button": {
+ "show_toc": "عرض جدول المحتويات"
+ },
+ "svg_export_button": {
+ "button_title": "تصدير المخطط ك SVG"
+ },
+ "abstract_search_option": {
+ "remove_this_search_option": "حذف خيار البحث هذا"
+ },
+ "revisions_snapshot_interval": {
+ "note_revisions_snapshot_interval_title": "الفاصل الزمني لنسخ الملاحظات الاحتياطية"
}
}
diff --git a/apps/client/src/translations/it/translation.json b/apps/client/src/translations/it/translation.json
index f9cbeb6eb..53ee0b767 100644
--- a/apps/client/src/translations/it/translation.json
+++ b/apps/client/src/translations/it/translation.json
@@ -692,6 +692,14 @@
"help_text_body3": "In alternativa, è possibile aggiungere etichette e relazioni utilizzando il pulsante + sul lato destro.",
"save_attributes": "Salva attributi ",
"add_a_new_attribute": "Aggiungi un nuovo attributo",
- "add_new_label": "Aggiungi nuova etichetta "
+ "add_new_label": "Aggiungi nuova etichetta ",
+ "add_new_relation": "Aggiungi nuova relazione ",
+ "add_new_relation_definition": "Aggiungi una nuova definizione di relazione",
+ "placeholder": "Digitare qui le etichette e le relazioni"
+ },
+ "execute_script": {
+ "execute_script": "Esegui script",
+ "help_text": "È possibile eseguire semplici script sulle note abbinate.",
+ "example_1": "Ad esempio, per aggiungere una stringa al titolo di una nota, utilizzare questo piccolo script:"
}
}
diff --git a/apps/client/src/translations/ja/translation.json b/apps/client/src/translations/ja/translation.json
index 8131fa7f8..43a5befd7 100644
--- a/apps/client/src/translations/ja/translation.json
+++ b/apps/client/src/translations/ja/translation.json
@@ -282,8 +282,8 @@
"selectAllNotes": "現在のレベルのノートをすべて選択",
"selectNote": "ノートを選択",
"copyNotes": "アクティブなノート(または現在の選択範囲)をクリップボードにコピーする(クローンに使用)",
- "cutNotes": "アクティブなノート(または現在の選択範囲)をクリップボードにカットする(ノートの移動に使用)",
- "pasteNotes": "ノートをサブノートとしてアクティブノートに貼り付ける(コピーされたかカットされたかに よって、移動またはクローンになる)",
+ "cutNotes": "アクティブなノート(または現在の選択範囲)をクリップボードに切り取り(ノートの移動に使用)",
+ "pasteNotes": "ノートをサブノートとしてアクティブノートに貼り付ける(コピーされたか切り取りされたかに よって、移動またはクローンになる)",
"deleteNotes": "ノート/サブツリーを削除",
"editingNotes": "ノート編集",
"editNoteTitle": "押下するとツリーペインからタイトルの編集に移ります。タイトルの編集からEnterキーを押すと、本文の編集に移動します。Ctrl+. で本文の編集からツリーペインに戻ります。",
@@ -405,7 +405,7 @@
"unprotect-subtree": "サブツリーの保護を解除",
"copy-clone": "コピー/クローン",
"clone-to": "クローン先...",
- "cut": "カット",
+ "cut": "切り取り",
"move-to": "移動先...",
"paste-into": "貼り付け",
"paste-after": "後ろに貼り付け",
@@ -1245,7 +1245,7 @@
"duplicated": "ノート \"{{title}}\" は複製されました。"
},
"clipboard": {
- "cut": "ノートはクリップボードにカットされました。",
+ "cut": "ノートはクリップボードに切り取りとられました。",
"copied": "ノートはクリップボードにコピーされました。",
"copy_failed": "権限の問題で、クリップボードにコピーできません。",
"copy_success": "クリップボードにコピーしました。"
@@ -1296,7 +1296,7 @@
},
"electron_context_menu": {
"add-term-to-dictionary": "辞書に \"{{term}}\" を追加",
- "cut": "カット",
+ "cut": "切り取り",
"copy": "コピー",
"copy-link": "リンクをコピー",
"paste": "貼り付け",
diff --git a/apps/client/src/translations/pl/translation.json b/apps/client/src/translations/pl/translation.json
index 09f4225df..cd4c42395 100644
--- a/apps/client/src/translations/pl/translation.json
+++ b/apps/client/src/translations/pl/translation.json
@@ -6,7 +6,7 @@
"db_version": "Wersja bazy danych:",
"sync_version": "Wersja synchronizacji:",
"build_date": "Zbudowano:",
- "build_revision": "Rewizja zbudowania:",
+ "build_revision": "Wersja:",
"data_directory": "Katalog z danymi:"
},
"toast": {
diff --git a/apps/client/src/widgets/note_tree.ts b/apps/client/src/widgets/note_tree.ts
index f4f600929..f1c2ca736 100644
--- a/apps/client/src/widgets/note_tree.ts
+++ b/apps/client/src/widgets/note_tree.ts
@@ -905,7 +905,7 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
const colorClass = note.getColorClass();
if (colorClass) {
- extraClasses.push(colorClass);
+ extraClasses.push(...["tinted", colorClass]);
}
return extraClasses.join(" ");
diff --git a/apps/server/package.json b/apps/server/package.json
index aff4901b2..bc8e1056a 100644
--- a/apps/server/package.json
+++ b/apps/server/package.json
@@ -105,12 +105,12 @@
"is-svg": "6.1.0",
"jimp": "1.6.0",
"js-yaml": "4.1.0",
- "marked": "16.4.0",
+ "marked": "16.4.1",
"mime-types": "3.0.1",
"multer": "2.0.2",
"normalize-strings": "1.1.1",
"ollama": "0.6.0",
- "openai": "6.4.0",
+ "openai": "6.5.0",
"rand-token": "1.0.1",
"safe-compare": "1.1.4",
"sanitize-filename": "1.6.3",
diff --git a/apps/server/src/assets/translations/ar/server.json b/apps/server/src/assets/translations/ar/server.json
index 12392324f..e51c4c9f9 100644
--- a/apps/server/src/assets/translations/ar/server.json
+++ b/apps/server/src/assets/translations/ar/server.json
@@ -76,7 +76,15 @@
"find-in-text": "اظهار/اخفاء لوحة الفتح",
"toggle-full-screen": "اظهار/اخفاء وضع ملء الشاشة",
"reset-zoom-level": "اعادة ضبط مستوى التكبير",
- "toggle-book-properties": "اظهار/اخفاء خصائص المجموعة"
+ "toggle-book-properties": "اظهار/اخفاء خصائص المجموعة",
+ "show-note-source": "عرض مربع حوار \"مصدر الملاحظات\"",
+ "show-revisions": "عرض مربع حوار \" مراجعات الملاحظة\"",
+ "show-recent-changes": "عرض مربع حوار \" التغيرات الاخيرة\"",
+ "show-sql-console": "فتح صفحة \" وحدة تحكم SQL\"",
+ "show-backend-log": "فتح صفحة \"سجل الخلفية\"",
+ "edit-readonly-note": "تعديل ملاحظة القراءة فقط",
+ "attributes-labels-and-relations": "سمات ( تسميات و علاقات)",
+ "render-active-note": "عرض ( اعادة عرض) الملاحظة المؤرشفة"
},
"setup_sync-from-server": {
"note": "ملاحظة:",
@@ -164,7 +172,10 @@
"launch-bar-templates-title": "قوالب شريط التشغيل",
"base-abstract-launcher-title": "المشغل الاساسي المجرد",
"llm-chat-title": "الدردشة مع الملاحظات",
- "localization": "اللغة والمنطقة"
+ "localization": "اللغة والمنطقة",
+ "go-to-previous-note-title": "اذهب الى الملاحظة السابقة",
+ "go-to-next-note-title": "اذهب الى الملاحظة التالية",
+ "open-today-journal-note-title": "فتح ملاحظة مجلة اليوم"
},
"tray": {
"bookmarks": "العلامات المرجعية",
@@ -173,7 +184,8 @@
"recents": "الملاحظات الحديثة",
"new-note": "ملاحظة جديدة",
"show-windows": "اظهار النوافذ",
- "open_new_window": "فتح نافذة جديدة"
+ "open_new_window": "فتح نافذة جديدة",
+ "today": "فتح ملاحظة مجلة اليوم"
},
"modals": {
"error_title": "خطأ"
@@ -211,7 +223,8 @@
"presentation": "عرض تقديمي",
"presentation_slide": "شريحة العرض التقديمي",
"presentation_slide_first": "الشريحة الاولى",
- "presentation_slide_second": "الشريحة الثانية"
+ "presentation_slide_second": "الشريحة الثانية",
+ "background": "الخلفية"
},
"login": {
"title": "تسجيل الدخول",
@@ -230,11 +243,13 @@
"setup": {
"next": "التالي",
"title": "تثبيت",
- "heading": "تثبيت تريليوم للملاحظات"
+ "heading": "تثبيت تريليوم للملاحظات",
+ "init-in-progress": "جار تهيئة المستند"
},
"setup_sync-from-desktop": {
"step6-here": "هنا",
- "heading": "مزامنة من سطح المكتب"
+ "heading": "مزامنة من سطح المكتب",
+ "step3": "انقر على صنف المزامنة."
},
"setup_sync-in-progress": {
"outstanding-items-default": "غير متوفر",
@@ -312,7 +327,19 @@
"edit-read-only-note": "تحرير ملاحظة للقراءة فقط",
"add-new-label": "اضافة تسمية جديدة",
"reload-frontend-app": "اعادة تحميل الواجهة الامامية للتطبيق",
- "force-save-revision": "فرض حفظ المراجعة"
+ "force-save-revision": "فرض حفظ المراجعة",
+ "toggle-note-hoisting": "اظهار/ اخفاء التركيز في الملاحظة",
+ "back-in-note-history": "الرجوع الى سجل الملاحظة",
+ "forward-in-note-history": "التقدم للامام في سجل الملاحظة",
+ "scroll-to-active-note": "تمرير تلى الملاحظة النشطة",
+ "create-note-into-inbox": "انشاء ملاحظة في البريد الوارد",
+ "copy-notes-to-clipboard": "نسخ الملاحظات الى الخافظة",
+ "paste-notes-from-clipboard": "لصق الملاحظات الى الحافظة",
+ "cut-notes-to-clipboard": "قص الملاحظات الى الحافظة",
+ "toggle-system-tray-icon": "تبديل ايقونة علبة النظام",
+ "switch-to-first-tab": "التبديل الى التبويب الاول",
+ "follow-link-under-cursor": "اتبع الرابط اسفل المؤشر",
+ "paste-markdown-into-text": "لصق نص بتنسبق Markdown"
},
"share_404": {
"title": "غير موجود",
diff --git a/apps/server/src/assets/translations/ja/server.json b/apps/server/src/assets/translations/ja/server.json
index 117c81e52..85698e613 100644
--- a/apps/server/src/assets/translations/ja/server.json
+++ b/apps/server/src/assets/translations/ja/server.json
@@ -22,7 +22,7 @@
"move-notes-to": "選択したノートを移動",
"copy-notes-to-clipboard": "選択したノートをクリップボードにコピー",
"paste-notes-from-clipboard": "クリップボードからアクティブなノートにノートを貼り付け",
- "cut-notes-to-clipboard": "選択したノートをクリップボードにカット",
+ "cut-notes-to-clipboard": "選択したノートをクリップボードに切り取り",
"select-all-notes-in-parent": "現在のノートレベルと同じノートをすべて選択する",
"add-note-above-to-the-selection": "上のノートを選択範囲に追加",
"add-note-below-to-selection": "下のノートを選択範囲に追加",
@@ -101,9 +101,9 @@
"toggle-book-properties": "コレクションプロパティ切り替え",
"toggle-zen-mode": "禅モード(集中した編集のための最小限のUI)を有効/無効にする",
"add-include-note-to-text": "ノートを埋め込むダイアログを開く",
- "toggle-promoted-attributes": "プロモートされた属性をトグルする",
+ "toggle-promoted-attributes": "プロモート属性切り替え",
"force-save-revision": "アクティブノートの新しいノートリヴィジョンを強制する",
- "toggle-classic-editor-toolbar": "固定ツールバーを持ったエディターのフォーマットタブをトグルする"
+ "toggle-classic-editor-toolbar": "固定ツールバーエディターの書式設定タブ切り替え"
},
"keyboard_action_names": {
"back-in-note-history": "ノートの履歴を戻る",
@@ -128,7 +128,7 @@
"move-notes-to": "ノートを移動",
"copy-notes-to-clipboard": "ノートをクリップボードにコピー",
"paste-notes-from-clipboard": "クリップボードからノートを貼り付け",
- "cut-notes-to-clipboard": "ノートをクリップボードにカット",
+ "cut-notes-to-clipboard": "ノートをクリップボードに切り取り",
"select-all-notes-in-parent": "親ノート内のすべてのノートを選択",
"add-note-above-to-selection": "選択範囲に上のノートを追加",
"add-note-below-to-selection": "選択範囲に下のノートを追加",
@@ -200,7 +200,7 @@
"force-save-revision": "強制保存リビジョン",
"add-include-note-to-text": "埋め込みノートを追加",
"toggle-ribbon-tab-classic-editor": "リボンタブのクラシックエディターに切り替える",
- "toggle-ribbon-tab-promoted-attributes": "リボンタブのプロモート属性を切り替える"
+ "toggle-ribbon-tab-promoted-attributes": "リボンタブ切り替え:プロモート属性"
},
"login": {
"title": "ログイン",
@@ -415,7 +415,8 @@
"presentation": "プレゼンテーション",
"presentation_slide": "プレゼンテーションスライド",
"presentation_slide_first": "最初のスライド",
- "presentation_slide_second": "2番目のスライド"
+ "presentation_slide_second": "2番目のスライド",
+ "background": "背景"
},
"share_404": {
"title": "該当なし",
diff --git a/apps/website/package.json b/apps/website/package.json
index cd1bc1d2a..e278e1d5b 100644
--- a/apps/website/package.json
+++ b/apps/website/package.json
@@ -13,11 +13,11 @@
"preact": "10.27.2",
"preact-iso": "2.11.0",
"preact-render-to-string": "6.6.2",
- "react-i18next": "16.0.1"
+ "react-i18next": "16.1.0"
},
"devDependencies": {
"@preact/preset-vite": "2.10.2",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-preact": "2.0.0",
"typescript": "5.9.3",
"user-agent-data-types": "0.4.2",
diff --git a/apps/website/public/translations/ar/translation.json b/apps/website/public/translations/ar/translation.json
index 0b3bd3b44..ce83352fc 100644
--- a/apps/website/public/translations/ar/translation.json
+++ b/apps/website/public/translations/ar/translation.json
@@ -72,7 +72,8 @@
"download_scoop": "Scoop",
"download_exe": "تحميل ملف التثبيت (exe.)",
"title_x64": "ويندوز 64 بت",
- "download_zip": "النسخة المحمولة بصيغة zip"
+ "download_zip": "النسخة المحمولة بصيغة zip",
+ "title_arm64": "نظام ويندوز عاى ARM"
},
"download_helper_desktop_linux": {
"download_deb": ".deb",
@@ -81,7 +82,8 @@
"download_rpm": "rpm.",
"download_flatpak": "flatpak.",
"title_x64": "لينيكس 64 بت",
- "download_zip": "النسخة المحمولة بصيغة zip"
+ "download_zip": "النسخة المحمولة بصيغة zip",
+ "title_arm64": "نظام لينكس على ARM"
},
"download_helper_server_docker": {
"download_ghcr": "ghcr.io",
@@ -97,7 +99,8 @@
"download_now": {
"text": "تنزيل الان ",
"platform_small": "لاجل{{platform}}",
- "linux_small": "لLinux"
+ "linux_small": "لLinux",
+ "linux_big": "اصدار v {{version}} لنظام لينكس"
},
"faq": {
"title": "الاسئلة المتكررة"
diff --git a/apps/website/public/translations/nl/translation.json b/apps/website/public/translations/nl/translation.json
index 0967ef424..a618cf6a5 100644
--- a/apps/website/public/translations/nl/translation.json
+++ b/apps/website/public/translations/nl/translation.json
@@ -1 +1,9 @@
-{}
+{
+ "get-started": {
+ "title": "Aan de slag",
+ "desktop_title": "Download de desktop applicatie (v{{version}})",
+ "architecture": "Architectuur:",
+ "older_releases": "Bekijk oudere versies",
+ "server_title": "Richt een server in voor toegang vanaf meerdere apparaten"
+ }
+}
diff --git a/apps/website/public/translations/pl/translation.json b/apps/website/public/translations/pl/translation.json
index 0967ef424..4d4c5df02 100644
--- a/apps/website/public/translations/pl/translation.json
+++ b/apps/website/public/translations/pl/translation.json
@@ -1 +1,192 @@
-{}
+{
+ "get-started": {
+ "desktop_title": "Pobierz wersję desktopową (v{{version}})",
+ "architecture": "Architektura:",
+ "older_releases": "Sprawdź poprzednie wydania",
+ "server_title": "Skonfiguruj serwer, aby mieć dostęp z wielu urządzeń",
+ "title": "Start"
+ },
+ "hero_section": {
+ "title": "Uporządkuj swoje myśli i zbuduj bazę Twojej wiedzy.",
+ "subtitle": "Trilium to otwartoźródłowe rozwiązanie do notowania i organizacji swojej personalnej bazy wiedzy. Używaj go lokalnie na swoim komputerze lub synchronizuj swoje notatki na własnym serwerze i miej do nich dostęp gdziekolwiek jesteś.",
+ "get_started": "Start",
+ "github": "GitHub",
+ "dockerhub": "Docker Hub",
+ "screenshot_alt": "Zrzut ekranu wersji desktopowej Trilium Notes"
+ },
+ "organization_benefits": {
+ "title": "Układ",
+ "note_structure_title": "Struktura notatek",
+ "note_structure_description": "Notatki mogą być ułożone w hierarchię. Każda notatka może zawierać w sobie inne, co pozwala umieścić tą samą notatkę w wielu miejscach w hierarchii i nie wymusza to tworzenia dodatkowych folderów.",
+ "attributes_title": "Etykiety i korelacje",
+ "attributes_description": "Porządkuj łatwiej swoje notatki przy użyciu relacji i etykiet, używaj ich jako odnośników w tabelach i tablicach.",
+ "hoisting_title": "Przestrzenie robocze i windowanie notatek",
+ "hoisting_description": "Łatwo oddziel swoje personalne notatki od tych z pracy przez grupowanie ich w przestrzenie robocze, które pomogą ci się skupić na danym temacie."
+ },
+ "productivity_benefits": {
+ "title": "Produktywność i bezpieczeństwo",
+ "revisions_title": "Historia zmian",
+ "revisions_content": "Notatki są regularnie zapisywane w tle, co pozwala to przeglądać i cofać wprowadzone zmiany. Zapisy można także wykonywać \"na życzenie\".",
+ "sync_title": "Synchronizacja",
+ "sync_content": "Używaj własnych lub chmurowych instancji do łatwiejszej synchronizacji notatek między wieloma urządzeniami, w tym twoim telefonem używając PWA.",
+ "protected_notes_title": "Notatki chronione",
+ "protected_notes_content": "Chroń wrażliwe informacje szyfrując notatki i blokując dostęp do nich za pomocą hasła sesji.",
+ "jump_to_title": "Szybkie wyszukiwanie i komendy",
+ "jump_to_content": "Szybko i łatwo wyszukuj swoje notatki używając funkcji lub komend, nawet gdy nie pamiętasz dokładnej ich nazwy.",
+ "search_title": "Dokładne wyszukiwanie",
+ "search_content": "Albo wyszukaj tekst w notatkach, możesz dostosować zakres szukania do konkretnej notatki albo hierarchii pliku.",
+ "web_clipper_title": "Web clipper",
+ "web_clipper_content": "Dołączaj strony internetowe albo ich zrzuty i umieszczaj je bezpośrednio w swoich notatkach dzięki rozszerzeniu do przeglądarki."
+ },
+ "note_types": {
+ "text_title": "Notatki tekstowe",
+ "text_description": "Edytuj notatki w graficznym interfejsie (WYSIWYG), który wspiera tabele, obrazy, działania matematyczne i bloki kodu z podświetlaniem składni. Szybko formatuj tekst używając skrótów (Markdown), jak i komend (/).",
+ "code_title": "Notatki kodowe",
+ "code_description": "Duże fragmenty kodu źródłowego albo skryptów można umieścić w dedykowanych plikach z własnym edytorem. Podświetlenie składni i struktur, różne motywy i wsparcie dla wielu języków programowania ułatwi edycję.",
+ "file_title": "Obsługa plików",
+ "file_description": "Dodawaj pliki takie jak PDF-y, zdjęcia i pliki wideo z podglądem w aplikacji.",
+ "canvas_title": "Płótno",
+ "canvas_description": "Dodawaj kształty, zdjęcia i tekst na nieskończonym płótnie, używając tej samej technologii co excalidraw.com. Idealne do diagramów, szkiców i projektowania.",
+ "mermaid_title": "Diagramy Mermaid",
+ "mermaid_description": "Twórz diagramy, takie jak schematy blokowe, diagramy klas i sekwencyjne, wykresy Gantta i wiele innych, korzystając z składni Mermaid.",
+ "mindmap_title": "Mapy myśli",
+ "mindmap_description": "Organizuj wizualnie swoje myśli albo przeprowadź sesję burzy mózgów.",
+ "others_list": "I wiele innych: <0>mapa notatek0>, <1>mapa powiązań1>, <2>zapisane wyszukiwania2>, <3>renderowane notatki3>, and <4>podgląd stron www4>."
+ },
+ "extensibility_benefits": {
+ "title": "Udostępnianie i rozszerzenia",
+ "import_export_title": "Import/Export",
+ "import_export_description": "Łatwa interakcja z innymi aplikacjami przy użyciu formatów Markdown, ENEX i OLM.",
+ "share_title": "Udostępniaj notatki w internecie",
+ "share_description": "Jeśli masz własny serwer, możesz go używać do udostępniania danych notatek z innymi.",
+ "scripting_title": "Zaawansowane skrypty",
+ "scripting_description": "Stwórz swoje własne integracje z Trilium przy użyciu personalizowanych widżetów albo z serwerowych skryptów.",
+ "api_title": "REST API",
+ "api_description": "Twórz integracje Trilium z użyciem REST API."
+ },
+ "collections": {
+ "calendar_title": "Kalendarze",
+ "calendar_description": "Organizuj swoje prywatne i służbowe wydarzenia używając kalendarza. Miej plany pod kontrolą z tygodniowym, miesięcznym i rocznym podglądem. Twórz i edytuj wydarzenia w prosty i intuicyjny sposób.",
+ "table_title": "Tabele",
+ "table_description": "Wyświetlaj i edytuj informacje o notatkach w tabelach na wiele sposobów dzięki wielu typom kolumn: Tekstowym, numerycznym, z polami wyboru, z datami i godzinami, zawierającym linki, z kolorowymi wypełnieniami i powiązaniami notatek. Możesz nawet wyświetlić całe drzewo hierarchii w tabeli.",
+ "board_title": "Tablice",
+ "board_description": "Organizuj swoje zadania i postępy projektów w tablicach Kanban z prostym tworzeniem nowych elementów i kolumn, a możliwość graficznego ich przenoszenia ułatwi zmianę statusu i pozwoli zachować porządek.",
+ "geomap_title": "Mapy",
+ "geomap_description": "Zaplanuj wakacje albo interesujące miejsca bezpośrednio na mapie, używaj personalizowanych pinezek. Dzięki możliwości importu plików GPX możesz wyświetlać przebyte trasy."
+ },
+ "faq": {
+ "title": "Częste pytania",
+ "mobile_question": "Czy jest dostępna aplikacja mobilna?",
+ "mobile_answer": "Aktualnie nie ma oficjalnej aplikacji mobilnej, jednak jeśli posiadasz uruchomioną aplikacje na serwerze, to możesz mieć dostęp za pomocą przeglądarki, a nawet zainstalować ją jako PWA. Dla systemu android jest nieoficjalna aplikacja \"TriliumDroid\", która działa nawet w trybie offline (jak zwykła desktopowa).",
+ "database_question": "Gdzie są przechowywane moje dane?",
+ "database_answer": "Wszystkie twoje notatki są przechowywane w bazie danych SQLite, w folderze aplikacji (lokalnie). Trilium używa baz danych zamiast zwykłych plików tekstowych dla lepszej wydajności i niektórych funkcji, które byłoby trudno zaimplementować w inny sposób (np. ta sama notatka w wielu miejscach). Folder aplikacji możesz łatwo znaleźć w zakładce \"O programie\".",
+ "server_question": "Czy muszę posiadać serwer, aby używać Trilium?",
+ "server_answer": "Nie, serwer umożliwia dostęp do aplikacji z poziomu przeglądarki, i obsługuje synchronizację na wielu urządzeniach. Z początku wystarczającym rozwiązaniem jest aplikacja desktopowa.",
+ "scaling_question": "Jak dobrze aplikacja radzi sobie z dużą ilością notatek?",
+ "scaling_answer": "W zależności od użycia, aplikacja powinna być w stanie utrzymać bezproblemowo do 100 000 notatek. Trzeba zaznaczyć, że synchronizacja czasami może skończyć się niepowodzeniem w przypadku wielu plików ponad 1GB. Trilium jest bardziej przystosowane do tworzenia baz wiedzy, niż do jako katalog plików (np. NextCloud).",
+ "network_share_question": "Czy mogę udostępniać moje bazy danych przez dyski sieciowe?",
+ "network_share_answer": "Nie, ogólnie przesyłanie baz SQLite przez dyski sieciowe nie jest dobrym pomysłem. Czasami może to zadziałać, ale istnieje szansa, że taka baza danych może zostać uszkodzona przez niedoskonałości blokad plików w sieci.",
+ "security_question": "Jak są chronione moje dane?",
+ "security_answer": "Domyślnie notatki nie są szyfrowane i mogą być odczytane bezpośrednio z bazy danych. Kiedy notatka zostanie oznaczona jako zaszyfrowana, to ta notatka szyfrowana jest używając AES-128-CBC."
+ },
+ "final_cta": {
+ "title": "Gotowy aby zacząć przygodę z Trilium Notes?",
+ "description": "Zbuduj swoją personalną bazę wiedzy z zaawansowanymi funkcjami i pełną prywatnością.",
+ "get_started": "Start"
+ },
+ "components": {
+ "link_learn_more": "Dowiedz się więcej....",
+ "list_with_screenshot_alt": "Zrzut ekranu wybranej funkcji"
+ },
+ "download_now": {
+ "text": "Pobierz teraz ",
+ "platform_big": "v{{version}} dla {{platform}}",
+ "platform_small": "dla {{platform}}",
+ "linux_big": "v{{version}} dla Linuxa",
+ "linux_small": "dla Linuxa",
+ "more_platforms": "Więcej platform i konfiguracja serwera"
+ },
+ "footer": {
+ "copyright_and_the": " i ",
+ "copyright_community": "społeczność"
+ },
+ "social_buttons": {
+ "github": "GitHub",
+ "github_discussions": "GitHub - Forum",
+ "matrix": "Matrix",
+ "reddit": "Reddit"
+ },
+ "support_us": {
+ "title": "Wesprzyj nas",
+ "financial_donations_title": "Wsparcie finansowe",
+ "financial_donations_description": "Trilium jest tworzone i rozwijane przez setki godzin pracy. Twoje wsparcie utrzymuje projekt jako otwartoźródłowy, pomaga dodawać nowe rzeczy i pokrywa koszty hostingu.",
+ "financial_donations_cta": "Rozważ wsparcie głównego programisty (eliandoran) poza aplikacją przez:",
+ "github_sponsors": "GitHub Sponsors",
+ "paypal": "PayPal",
+ "buy_me_a_coffee": "Postaw mi wirtualną kawę"
+ },
+ "contribute": {
+ "title": "Inne sposoby wsparcia",
+ "way_translate": "Przetłumacz aplikacja na swój natywny język przez Weblate.",
+ "way_community": "Dołącz do społeczności na GitHub Discussions lub na Matrix.",
+ "way_reports": "Zgłoś błędy przezGitHub issues.",
+ "way_document": "Pomóż nam w doskonaleniu dokumentacji przez informowanie nas o lukach albo sam pomóż w tworzeniu treści (dokumentacja, FAQ, poradniki).",
+ "way_market": "Powiedz o nas swoim znajomym, na blogu albo na social mediach."
+ },
+ "404": {
+ "title": "404: Nie znaleziono strony",
+ "description": "Strona, której szukasz, nie istnieje. Mogła zostać usunięta, albo wpisany adres jest niepoprawny."
+ },
+ "download_helper_desktop_windows": {
+ "title_x64": "Windows 64-bit",
+ "title_arm64": "Windows na ARM",
+ "description_x64": "Kompatybilne z urządzeniami Intel i AMD działającymi pod kontrolą Windows 10 i 11.",
+ "description_arm64": "Kompatybilne z procesorami ARM (np. Qualcomm Snapdragon).",
+ "quick_start": "Aby zainstalować przez WinGet:",
+ "download_exe": "Pobierz instalator (.exe)",
+ "download_zip": "Wersja przenośna - Portable (.zip)",
+ "download_scoop": "Scoop"
+ },
+ "download_helper_desktop_linux": {
+ "title_x64": "Linux 64-bit",
+ "title_arm64": "Linux na ARM",
+ "description_x64": "Dla większości dystrybucji Linux, kompatybilnych z architekturą x86_64.",
+ "description_arm64": "Dla dystrybucji ARM Linux kompatybilnych z architekturą aarch64.",
+ "quick_start": "Wybierz odpowiedni format paczki, w zależności od twojej dystrybucji:",
+ "download_deb": ".deb",
+ "download_rpm": ".rpm",
+ "download_flatpak": ".flatpak",
+ "download_zip": "Wersja przenośna - Portable (.zip)",
+ "download_nixpkgs": "nixpkgs",
+ "download_aur": "AUR"
+ },
+ "download_helper_desktop_macos": {
+ "title_x64": "macOS z Intel",
+ "title_arm64": "macOS z Apple Silicon (ARM)",
+ "description_x64": "Dla macOS w wersji Big Sur i późniejszymi, z procesorem Intel.",
+ "description_arm64": "Dla produktów Apple z procesorami M1 i M2.",
+ "quick_start": "Instalacja przez Homebrew:",
+ "download_dmg": "Pobierz instalator (.dmg)",
+ "download_homebrew_cask": "Homebrew Cask",
+ "download_zip": "Wersja przenośna - Portable (.zip)"
+ },
+ "download_helper_server_docker": {
+ "title": "Własny serwer przez Docker",
+ "description": "Łatwa instalacja na Windows, Linux albo macOS używając Docker container.",
+ "download_dockerhub": "Docker Hub",
+ "download_ghcr": "ghcr.io"
+ },
+ "download_helper_server_linux": {
+ "title": "Własny serwer na Linux",
+ "description": "Wrzuć Trilium Notes na swój serwer albo VPS, kompatybilne z większością dystrybucji.",
+ "download_tar_x64": "x64 (.tar.xz)",
+ "download_tar_arm64": "ARM (.tar.xz)",
+ "download_nixos": "moduł NixOS"
+ },
+ "download_helper_server_hosted": {
+ "title": "Płatny Serwer - Hosting",
+ "description": "Trilium Notes hostowane na PikaPods, płatnym serwisie dla łatwego dostępu i zarządzania. Bezpośrednio nie związanie z Trilium team.",
+ "download_pikapod": "Konfiguruj na PikaPods",
+ "download_triliumcc": "Alternatywnie patrz na trilium.cc"
+ }
+}
diff --git a/docs/README-ZH_CN.md b/docs/README-ZH_CN.md
index 27dc1ca51..5ce69c1a8 100644
--- a/docs/README-ZH_CN.md
+++ b/docs/README-ZH_CN.md
@@ -30,6 +30,13 @@ Trilium Notes 是一款免费且开源、跨平台的阶层式笔记应用程序
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📖 文件
**请访问我们完整的文档:[docs.triliumnotes.org](https://docs.triliumnotes.org/)**
diff --git a/docs/README-ZH_TW.md b/docs/README-ZH_TW.md
index 510945e78..e71c04e58 100644
--- a/docs/README-ZH_TW.md
+++ b/docs/README-ZH_TW.md
@@ -30,6 +30,13 @@ Trilium Notes 是一款免費且開源、跨平台的階層式筆記應用程式
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 文件
**可以在 [docs.triliumnotes.org](https://docs.triliumnotes.org/) 查看完整使用說明**
diff --git a/docs/README-ar.md b/docs/README-ar.md
index a8bc0669c..a900c9394 100644
--- a/docs/README-ar.md
+++ b/docs/README-ar.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚توثيق
**Visit our comprehensive documentation at
@@ -132,7 +139,7 @@ The original Trilium developer ([Zadam](https://github.com/zadam)) has
graciously given the Trilium repository to the community project which resides
at https://github.com/TriliumNext
-### ⬆️Migrating from Zadam/Trilium?
+### ⬆️ الهجرة من Zadam الى تريليوم؟
There are no special migration steps to migrate from a zadam/Trilium instance to
a TriliumNext/Trilium instance. Simply [install
diff --git a/docs/README-ca.md b/docs/README-ca.md
index 586045a29..bba139cc9 100644
--- a/docs/README-ca.md
+++ b/docs/README-ca.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-cs.md b/docs/README-cs.md
index 586045a29..bba139cc9 100644
--- a/docs/README-cs.md
+++ b/docs/README-cs.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-de.md b/docs/README-de.md
index fc4e6714b..ca3dfc8e8 100644
--- a/docs/README-de.md
+++ b/docs/README-de.md
@@ -34,6 +34,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Dokumentation
**Visit our comprehensive documentation at
diff --git a/docs/README-el.md b/docs/README-el.md
index 586045a29..bba139cc9 100644
--- a/docs/README-el.md
+++ b/docs/README-el.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-es.md b/docs/README-es.md
index 1fc626350..b345940a7 100644
--- a/docs/README-es.md
+++ b/docs/README-es.md
@@ -36,6 +36,13 @@ resumen rápido:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentación
**Accede a la documentación completa en
diff --git a/docs/README-fa.md b/docs/README-fa.md
index 586045a29..bba139cc9 100644
--- a/docs/README-fa.md
+++ b/docs/README-fa.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-fi.md b/docs/README-fi.md
index 586045a29..bba139cc9 100644
--- a/docs/README-fi.md
+++ b/docs/README-fi.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-fr.md b/docs/README-fr.md
index 586045a29..bba139cc9 100644
--- a/docs/README-fr.md
+++ b/docs/README-fr.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-hr.md b/docs/README-hr.md
index 586045a29..bba139cc9 100644
--- a/docs/README-hr.md
+++ b/docs/README-hr.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-hu.md b/docs/README-hu.md
index 586045a29..bba139cc9 100644
--- a/docs/README-hu.md
+++ b/docs/README-hu.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-id.md b/docs/README-id.md
index 77a947acf..f1a7a02d0 100644
--- a/docs/README-id.md
+++ b/docs/README-id.md
@@ -34,6 +34,13 @@ untuk ikhtisar cepat:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Dokumentasi
**Kunjungi dokumentasi lengkap kami di
diff --git a/docs/README-it.md b/docs/README-it.md
index d7bc745bd..3e375980f 100644
--- a/docs/README-it.md
+++ b/docs/README-it.md
@@ -34,6 +34,13 @@ una panoramica veloce:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentazione
**Vedi tutta la documentazione su
diff --git a/docs/README-ja.md b/docs/README-ja.md
index f5caa13c0..5215aac57 100644
--- a/docs/README-ja.md
+++ b/docs/README-ja.md
@@ -32,6 +32,13 @@ Trilium Notes
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 ドキュメント
**包括的なドキュメントは [docs.triliumnotes.org](https://docs.triliumnotes.org/) でご覧ください**
diff --git a/docs/README-ko.md b/docs/README-ko.md
index 586045a29..bba139cc9 100644
--- a/docs/README-ko.md
+++ b/docs/README-ko.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-md.md b/docs/README-md.md
index 586045a29..bba139cc9 100644
--- a/docs/README-md.md
+++ b/docs/README-md.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-nb_NO.md b/docs/README-nb_NO.md
index 586045a29..bba139cc9 100644
--- a/docs/README-nb_NO.md
+++ b/docs/README-nb_NO.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-nl.md b/docs/README-nl.md
index 933374ee3..23b6dc5d2 100644
--- a/docs/README-nl.md
+++ b/docs/README-nl.md
@@ -12,9 +12,9 @@
# Trilium Notes

-\
+\

-\
[](https://app.relative-ci.com/projects/Di5q7dz9daNDZ9UXi0Bp)
[](https://hosted
| [Japanese](./docs/README-ja.md) | [Italian](./docs/README-it.md) |
[Spanish](./docs/README-es.md)
-Trilium Notes is a free and open-source, cross-platform hierarchical note taking
-application with focus on building large personal knowledge bases.
+Trillium Notes is een gratis en open-source, platformonafhankelijke,
+hiërarchische notitie-applicatie die zich richt op het opbouwen van grote
+persoonlijke kennisbanken.
-See [screenshots](https://triliumnext.github.io/Docs/Wiki/screenshot-tour) for
-quick overview:
+Bekijk [screenshots](https://triliumnext.github.io/Docs/Wiki/screenshot-tour)
+voor een snel overzicht:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentatie
**Bekijk onze beknopte documentatie op
diff --git a/docs/README-pl.md b/docs/README-pl.md
index 586045a29..bba139cc9 100644
--- a/docs/README-pl.md
+++ b/docs/README-pl.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-pt.md b/docs/README-pt.md
index 586045a29..bba139cc9 100644
--- a/docs/README-pt.md
+++ b/docs/README-pt.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-pt_BR.md b/docs/README-pt_BR.md
index 586045a29..bba139cc9 100644
--- a/docs/README-pt_BR.md
+++ b/docs/README-pt_BR.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-ro.md b/docs/README-ro.md
index f28664671..9842cb319 100644
--- a/docs/README-ro.md
+++ b/docs/README-ro.md
@@ -34,6 +34,13 @@ ecran](https://triliumnext.github.io/Docs/Wiki/screenshot-tour):
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentație
**Vizitați documentația noastră detaliată la
diff --git a/docs/README-ru.md b/docs/README-ru.md
index 5796e023b..d7d5af43f 100644
--- a/docs/README-ru.md
+++ b/docs/README-ru.md
@@ -33,6 +33,13 @@ Trilium Notes – это приложение для заметок с иера
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Документация
**Visit our comprehensive documentation at
diff --git a/docs/README-sl.md b/docs/README-sl.md
index 586045a29..bba139cc9 100644
--- a/docs/README-sl.md
+++ b/docs/README-sl.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-sr.md b/docs/README-sr.md
index 586045a29..bba139cc9 100644
--- a/docs/README-sr.md
+++ b/docs/README-sr.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-sv.md b/docs/README-sv.md
index daf23eb4b..262f13a24 100644
--- a/docs/README-sv.md
+++ b/docs/README-sv.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-tr.md b/docs/README-tr.md
index 586045a29..bba139cc9 100644
--- a/docs/README-tr.md
+++ b/docs/README-tr.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-uk.md b/docs/README-uk.md
index 586045a29..bba139cc9 100644
--- a/docs/README-uk.md
+++ b/docs/README-uk.md
@@ -33,6 +33,13 @@ quick overview:
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Documentation
**Visit our comprehensive documentation at
diff --git a/docs/README-vi.md b/docs/README-vi.md
index 0c3f5a796..dd5ab7b66 100644
--- a/docs/README-vi.md
+++ b/docs/README-vi.md
@@ -33,6 +33,13 @@ Xem [ảnh chụp màn hình](https://triliumnext.github.io/Docs/Wiki/screenshot
+## ⏬ Download
+- [Latest release](https://github.com/TriliumNext/Trilium/releases/latest) –
+ stable version, recommended for most users.
+- [Nightly build](https://github.com/TriliumNext/Trilium/releases/tag/nightly) –
+ unstable development version, updated daily with the latest features and
+ fixes.
+
## 📚 Tài Liệu
**Truy cập tài liệu toàn diện của chúng tôi tại
diff --git a/package.json b/package.json
index e2475145d..d01f0c435 100644
--- a/package.json
+++ b/package.json
@@ -37,17 +37,17 @@
"private": true,
"devDependencies": {
"@electron/rebuild": "4.0.1",
- "@playwright/test": "1.56.0",
+ "@playwright/test": "1.56.1",
"@triliumnext/server": "workspace:*",
"@types/express": "5.0.3",
- "@types/node": "22.18.10",
+ "@types/node": "22.18.11",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"chalk": "5.6.2",
"cross-env": "10.1.0",
"dpdm": "3.14.0",
"esbuild": "0.25.11",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-playwright": "2.2.2",
"eslint-plugin-react-hooks": "7.0.0",
diff --git a/packages/ckeditor5-admonition/package.json b/packages/ckeditor5-admonition/package.json
index f7b8bc647..465760409 100644
--- a/packages/ckeditor5-admonition/package.json
+++ b/packages/ckeditor5-admonition/package.json
@@ -29,7 +29,7 @@
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"ckeditor5": "47.1.0",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "14.1.1",
"lint-staged": "16.2.4",
diff --git a/packages/ckeditor5-footnotes/package.json b/packages/ckeditor5-footnotes/package.json
index 4c9b6a1c8..df364cbd4 100644
--- a/packages/ckeditor5-footnotes/package.json
+++ b/packages/ckeditor5-footnotes/package.json
@@ -30,7 +30,7 @@
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"ckeditor5": "47.1.0",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "14.1.1",
"lint-staged": "16.2.4",
diff --git a/packages/ckeditor5-keyboard-marker/package.json b/packages/ckeditor5-keyboard-marker/package.json
index 7494432c8..f9c103617 100644
--- a/packages/ckeditor5-keyboard-marker/package.json
+++ b/packages/ckeditor5-keyboard-marker/package.json
@@ -32,7 +32,7 @@
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"ckeditor5": "47.1.0",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "14.1.1",
"lint-staged": "16.2.4",
diff --git a/packages/ckeditor5-math/package.json b/packages/ckeditor5-math/package.json
index 0c8d1173e..ee6b38169 100644
--- a/packages/ckeditor5-math/package.json
+++ b/packages/ckeditor5-math/package.json
@@ -33,7 +33,7 @@
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"ckeditor5": "47.1.0",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "14.1.1",
"lint-staged": "16.2.4",
diff --git a/packages/ckeditor5-mermaid/package.json b/packages/ckeditor5-mermaid/package.json
index 31ee93881..378173e8c 100644
--- a/packages/ckeditor5-mermaid/package.json
+++ b/packages/ckeditor5-mermaid/package.json
@@ -32,7 +32,7 @@
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"ckeditor5": "47.1.0",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"eslint-config-ckeditor5": ">=9.1.0",
"http-server": "14.1.1",
"lint-staged": "16.2.4",
diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json
index 24c5dde37..1a900b35f 100644
--- a/packages/codemirror/package.json
+++ b/packages/codemirror/package.json
@@ -50,6 +50,6 @@
"codemirror-lang-elixir": "4.0.0",
"codemirror-lang-hcl": "0.1.0",
"codemirror-lang-mermaid": "0.5.0",
- "eslint-linter-browserify": "9.37.0"
+ "eslint-linter-browserify": "9.38.0"
}
}
diff --git a/packages/share-theme/package.json b/packages/share-theme/package.json
index 317a89a20..ccc06e6c6 100644
--- a/packages/share-theme/package.json
+++ b/packages/share-theme/package.json
@@ -28,7 +28,7 @@
"@typescript-eslint/parser": "8.46.1",
"dotenv": "17.2.3",
"esbuild": "0.25.11",
- "eslint": "9.37.0",
+ "eslint": "9.38.0",
"highlight.js": "11.11.1",
"typescript": "5.9.3"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 77e4d877e..9c58ba061 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -41,8 +41,8 @@ importers:
specifier: 4.0.1
version: 4.0.1
'@playwright/test':
- specifier: 1.56.0
- version: 1.56.0
+ specifier: 1.56.1
+ version: 1.56.1
'@triliumnext/server':
specifier: workspace:*
version: link:apps/server
@@ -50,8 +50,8 @@ importers:
specifier: 5.0.3
version: 5.0.3
'@types/node':
- specifier: 22.18.10
- version: 22.18.10
+ specifier: 22.18.11
+ version: 22.18.11
'@vitest/coverage-v8':
specifier: 3.2.4
version: 3.2.4(@vitest/browser@3.2.4)(vitest@3.2.4)
@@ -71,20 +71,20 @@ importers:
specifier: 0.25.11
version: 0.25.11
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-prettier:
specifier: 10.1.8
- version: 10.1.8(eslint@9.37.0(jiti@2.6.1))
+ version: 10.1.8(eslint@9.38.0(jiti@2.6.1))
eslint-plugin-playwright:
specifier: 2.2.2
- version: 2.2.2(eslint@9.37.0(jiti@2.6.1))
+ version: 2.2.2(eslint@9.38.0(jiti@2.6.1))
eslint-plugin-react-hooks:
specifier: 7.0.0
- version: 7.0.0(eslint@9.37.0(jiti@2.6.1))
+ version: 7.0.0(eslint@9.38.0(jiti@2.6.1))
happy-dom:
specifier: ~20.0.0
- version: 20.0.4
+ version: 20.0.7
jiti:
specifier: 2.6.1
version: 2.6.1
@@ -96,7 +96,7 @@ importers:
version: 0.18.0
rollup-plugin-webpack-stats:
specifier: 2.1.6
- version: 2.1.6(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 2.1.6(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
tslib:
specifier: 2.8.1
version: 2.8.1
@@ -108,25 +108,25 @@ importers:
version: 5.9.3
typescript-eslint:
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
upath:
specifier: 2.0.1
version: 2.0.1
vite:
specifier: 7.1.10
- version: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
vite-plugin-dts:
specifier: ~4.5.0
- version: 4.5.4(@types/node@22.18.10)(rollup@4.52.0)(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 4.5.4(@types/node@22.18.11)(rollup@4.52.0)(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
apps/client:
dependencies:
'@eslint/js':
- specifier: 9.37.0
- version: 9.37.0
+ specifier: 9.38.0
+ version: 9.38.0
'@excalidraw/excalidraw':
specifier: 0.18.0
version: 0.18.0(@types/react-dom@19.1.6(@types/react@19.1.7))(@types/react@19.1.7)(react-dom@19.1.0(react@16.14.0))(react@16.14.0)
@@ -156,7 +156,7 @@ importers:
version: 0.2.0(mermaid@11.12.0)
'@mind-elixir/node-menu':
specifier: 5.0.0
- version: 5.0.0(mind-elixir@5.3.2)
+ version: 5.0.0(mind-elixir@5.3.3)
'@popperjs/core':
specifier: 2.11.8
version: 2.11.8
@@ -236,14 +236,14 @@ importers:
specifier: 8.11.1
version: 8.11.1
marked:
- specifier: 16.4.0
- version: 16.4.0
+ specifier: 16.4.1
+ version: 16.4.1
mermaid:
specifier: 11.12.0
version: 11.12.0
mind-elixir:
- specifier: 5.3.2
- version: 5.3.2
+ specifier: 5.3.3
+ version: 5.3.3
normalize.css:
specifier: 8.0.1
version: 8.0.1
@@ -254,8 +254,8 @@ importers:
specifier: 10.27.2
version: 10.27.2
react-i18next:
- specifier: 16.0.1
- version: 16.0.1(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3)
+ specifier: 16.1.0
+ version: 16.1.0(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3)
reveal.js:
specifier: 5.2.1
version: 5.2.1
@@ -303,8 +303,8 @@ importers:
specifier: 13.0.1
version: 13.0.1(webpack@5.101.3(esbuild@0.25.11))
happy-dom:
- specifier: 20.0.4
- version: 20.0.4
+ specifier: 20.0.7
+ version: 20.0.7
script-loader:
specifier: 0.7.2
version: 0.7.2
@@ -688,8 +688,8 @@ importers:
specifier: 4.1.0
version: 4.1.0
marked:
- specifier: 16.4.0
- version: 16.4.0
+ specifier: 16.4.1
+ version: 16.4.1
mime-types:
specifier: 3.0.1
version: 3.0.1
@@ -703,8 +703,8 @@ importers:
specifier: 0.6.0
version: 0.6.0
openai:
- specifier: 6.4.0
- version: 6.4.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5))(zod@3.24.4)
+ specifier: 6.5.0
+ version: 6.5.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5))(zod@3.24.4)
rand-token:
specifier: 1.0.1
version: 1.0.1
@@ -790,18 +790,18 @@ importers:
specifier: 6.6.2
version: 6.6.2(preact@10.27.2)
react-i18next:
- specifier: 16.0.1
- version: 16.0.1(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3)
+ specifier: 16.1.0
+ version: 16.1.0(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3)
devDependencies:
'@preact/preset-vite':
specifier: 2.10.2
version: 2.10.2(@babel/core@7.28.0)(preact@10.27.2)(vite@7.1.10(@types/node@24.8.1)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-preact:
specifier: 2.0.0
- version: 2.0.0(eslint@9.37.0(jiti@2.6.1))
+ version: 2.0.0(eslint@9.38.0(jiti@2.6.1))
typescript:
specifier: 5.9.3
version: 5.9.3
@@ -853,16 +853,16 @@ importers:
version: 5.0.0
'@ckeditor/ckeditor5-package-tools':
specifier: 4.1.1
- version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
+ version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.46.0
- version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@vitest/browser':
specifier: 3.2.4
- version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@vitest/coverage-istanbul':
specifier: 3.2.4
version: 3.2.4(vitest@3.2.4)
@@ -870,11 +870,11 @@ importers:
specifier: 47.1.0
version: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-ckeditor5:
specifier: '>=9.1.0'
- version: 12.1.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 12.1.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
http-server:
specifier: 14.1.1
version: 14.1.1
@@ -889,16 +889,16 @@ importers:
version: 12.1.1(stylelint@16.25.0(typescript@5.9.3))
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.9.3)
+ version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.9.3)
typescript:
specifier: 5.9.3
version: 5.9.3
vite-plugin-svgo:
specifier: ~2.0.0
- version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
webdriverio:
specifier: 9.20.0
version: 9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
@@ -913,16 +913,16 @@ importers:
version: 5.0.0
'@ckeditor/ckeditor5-package-tools':
specifier: 4.1.1
- version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
+ version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.46.0
- version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@vitest/browser':
specifier: 3.2.4
- version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@vitest/coverage-istanbul':
specifier: 3.2.4
version: 3.2.4(vitest@3.2.4)
@@ -930,11 +930,11 @@ importers:
specifier: 47.1.0
version: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-ckeditor5:
specifier: '>=9.1.0'
- version: 12.1.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 12.1.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
http-server:
specifier: 14.1.1
version: 14.1.1
@@ -949,16 +949,16 @@ importers:
version: 12.1.1(stylelint@16.25.0(typescript@5.9.3))
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.9.3)
+ version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.9.3)
typescript:
specifier: 5.9.3
version: 5.9.3
vite-plugin-svgo:
specifier: ~2.0.0
- version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
webdriverio:
specifier: 9.20.0
version: 9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
@@ -973,16 +973,16 @@ importers:
version: 5.0.0
'@ckeditor/ckeditor5-package-tools':
specifier: 4.1.1
- version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
+ version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.46.0
- version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@vitest/browser':
specifier: 3.2.4
- version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@vitest/coverage-istanbul':
specifier: 3.2.4
version: 3.2.4(vitest@3.2.4)
@@ -990,11 +990,11 @@ importers:
specifier: 47.1.0
version: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-ckeditor5:
specifier: '>=9.1.0'
- version: 12.1.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 12.1.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
http-server:
specifier: 14.1.1
version: 14.1.1
@@ -1009,16 +1009,16 @@ importers:
version: 12.1.1(stylelint@16.25.0(typescript@5.9.3))
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.9.3)
+ version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.9.3)
typescript:
specifier: 5.9.3
version: 5.9.3
vite-plugin-svgo:
specifier: ~2.0.0
- version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
webdriverio:
specifier: 9.20.0
version: 9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
@@ -1040,16 +1040,16 @@ importers:
version: 5.0.0
'@ckeditor/ckeditor5-package-tools':
specifier: 4.1.1
- version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
+ version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.46.0
- version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@vitest/browser':
specifier: 3.2.4
- version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@vitest/coverage-istanbul':
specifier: 3.2.4
version: 3.2.4(vitest@3.2.4)
@@ -1057,11 +1057,11 @@ importers:
specifier: 47.1.0
version: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-ckeditor5:
specifier: '>=9.1.0'
- version: 12.1.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 12.1.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
http-server:
specifier: 14.1.1
version: 14.1.1
@@ -1076,16 +1076,16 @@ importers:
version: 12.1.1(stylelint@16.25.0(typescript@5.9.3))
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.9.3)
+ version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.9.3)
typescript:
specifier: 5.9.3
version: 5.9.3
vite-plugin-svgo:
specifier: ~2.0.0
- version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
webdriverio:
specifier: 9.20.0
version: 9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
@@ -1107,16 +1107,16 @@ importers:
version: 5.0.0
'@ckeditor/ckeditor5-package-tools':
specifier: 4.1.1
- version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
+ version: 4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)
'@typescript-eslint/eslint-plugin':
specifier: ~8.46.0
- version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@vitest/browser':
specifier: 3.2.4
- version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ version: 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@vitest/coverage-istanbul':
specifier: 3.2.4
version: 3.2.4(vitest@3.2.4)
@@ -1124,11 +1124,11 @@ importers:
specifier: 47.1.0
version: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
eslint-config-ckeditor5:
specifier: '>=9.1.0'
- version: 12.1.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 12.1.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
http-server:
specifier: 14.1.1
version: 14.1.1
@@ -1143,16 +1143,16 @@ importers:
version: 12.1.1(stylelint@16.25.0(typescript@5.9.3))
ts-node:
specifier: 10.9.2
- version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.9.3)
+ version: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.9.3)
typescript:
specifier: 5.9.3
version: 5.9.3
vite-plugin-svgo:
specifier: ~2.0.0
- version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ version: 2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
webdriverio:
specifier: 9.20.0
version: 9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
@@ -1295,8 +1295,8 @@ importers:
specifier: 0.5.0
version: 0.5.0
eslint-linter-browserify:
- specifier: 9.37.0
- version: 9.37.0
+ specifier: 9.38.0
+ version: 9.38.0
packages/commons: {}
@@ -1334,10 +1334,10 @@ importers:
version: 5.21.1
'@typescript-eslint/eslint-plugin':
specifier: 8.46.1
- version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 8.46.1
- version: 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
dotenv:
specifier: 17.2.3
version: 17.2.3
@@ -1345,8 +1345,8 @@ importers:
specifier: 0.25.11
version: 0.25.11
eslint:
- specifier: 9.37.0
- version: 9.37.0(jiti@2.6.1)
+ specifier: 9.38.0
+ version: 9.38.0(jiti@2.6.1)
highlight.js:
specifier: 11.11.1
version: 11.11.1
@@ -2583,12 +2583,12 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.21.0':
- resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
+ '@eslint/config-array@0.21.1':
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-helpers@0.4.0':
- resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==}
+ '@eslint/config-helpers@0.4.1':
+ resolution: {integrity: sha512-csZAzkNhsgwb0I/UAV6/RGFTbiakPCf0ZrGmrIxQpYvGZ00PhTkSnyKNolphgIvmnJeGw6rcGVEXfTzUnFuEvw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/core@0.14.0':
@@ -2607,16 +2607,16 @@ packages:
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.37.0':
- resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==}
+ '@eslint/js@9.38.0':
+ resolution: {integrity: sha512-UZ1VpFvXf9J06YG9xQBdnzU+kthors6KjhMAl6f4gH4usHyh31rUf2DLGInT8RFYIReYXNSydgPY0V2LuWgl7A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/markdown@6.6.0':
resolution: {integrity: sha512-IsWPy2jU3gaQDlioDC4sT4I4kG1hX1OMWs/q2sWwJrPoMASHW/Z4SDw+6Aql6EsHejGbagYuJbFq9Zvx+Y1b1Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/object-schema@2.1.6':
- resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
+ '@eslint/object-schema@2.1.7':
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/plugin-kit@0.3.5':
@@ -3546,8 +3546,8 @@ packages:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
- '@playwright/test@1.56.0':
- resolution: {integrity: sha512-Tzh95Twig7hUwwNe381/K3PggZBZblKUe2wv25oIpzWLr6Z0m4KgV1ZVIjnR6GM9ANEqjZD7XsZEa6JL/7YEgg==}
+ '@playwright/test@1.56.1':
+ resolution: {integrity: sha512-vSMYtL/zOcFpvJCW71Q/OEGQb7KYBPAdKh35WNSkaZA75JlAO8ED8UN6GUNTm3drWomcbcqRPFqQbLae8yBTdg==}
engines: {node: '>=18'}
hasBin: true
@@ -7536,8 +7536,8 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
- eslint-linter-browserify@9.37.0:
- resolution: {integrity: sha512-Wko9253V/vjQJt/R3tdUi5nsZZRS+G6Uyrlu/OCEdHitWI427jMo6jMFBmxuxHofbjd5gPx3WbrBEF1Qxfr9rw==}
+ eslint-linter-browserify@9.38.0:
+ resolution: {integrity: sha512-uOR+eJFM+WQyyZAGeazz8D3XiS0a26bIK/uHSFZWQ7H8UK7hrUpHzMfcGZSzY1icM86LYCPhV3jYkVePWLjQGA==}
eslint-plugin-ckeditor5-rules@12.1.1:
resolution: {integrity: sha512-e0PhbA3sNWy4Djs6r+kVfWNvu6urJXucIUfqI2GKjgOfqYOhmpLNaudH6FHKAg/OM8g0ETb7TbG3Bc375ru+sg==}
@@ -7597,8 +7597,8 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.37.0:
- resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==}
+ eslint@9.38.0:
+ resolution: {integrity: sha512-t5aPOpmtJcZcz5UJyY2GbvpDlsK5E8JqRqoKtfiKE3cNh437KIqfJr3A3AKf5k64NPx6d0G3dno6XDY05PqPtw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -8275,8 +8275,8 @@ packages:
handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- happy-dom@20.0.4:
- resolution: {integrity: sha512-WxFtvnij6G64/MtMimnZhF0nKx3LUQKc20zjATD6tKiqOykUwQkd+2FW/DZBAFNjk4oWh0xdv/HBleGJmSY/Iw==}
+ happy-dom@20.0.7:
+ resolution: {integrity: sha512-CywLfzmYxP5OYpuAG0usFY0CpxJtwYR+w8Mms5J8W29Y2Pzf6rbfQS2M523tRZTb0oLA+URopPtnAQX2fupHZQ==}
engines: {node: '>=20.0.0'}
has-bigints@1.1.0:
@@ -9539,8 +9539,8 @@ packages:
markdown-table@3.0.4:
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- marked@16.4.0:
- resolution: {integrity: sha512-CTPAcRBq57cn3R8n3hwc2REddc28hjR7RzDXQ+lXLmMJYqn20BaI2cGw6QjgZGIgVfp2Wdfw4aMzgNteQ6qJgQ==}
+ marked@16.4.1:
+ resolution: {integrity: sha512-ntROs7RaN3EvWfy3EZi14H4YxmT6A5YvywfhO+0pm+cH/dnSQRmdAmoFIc3B9aiwTehyk7pESH4ofyBY+V5hZg==}
engines: {node: '>= 20'}
hasBin: true
@@ -9788,8 +9788,8 @@ packages:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
- mind-elixir@5.3.2:
- resolution: {integrity: sha512-dAhsRELKAmrs0UFTrCFeItrCEi0vtslr1kKkeBfu5FSDkuuu4U9imBcHdkeYnC0rUVfXe5Henirmz7yTkcdVVg==}
+ mind-elixir@5.3.3:
+ resolution: {integrity: sha512-SR0DRZh7I4fV3c8IeL9cYgJiJeW+TgKOrHQTntqu14nhrxyZjVsDfeLUY/52PB8r1WsORsN0IKx0qGhneXmtJQ==}
mini-css-extract-plugin@2.4.7:
resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==}
@@ -10273,8 +10273,8 @@ packages:
resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
- openai@6.4.0:
- resolution: {integrity: sha512-vSoVBRTPMgg3oSaoHIGfbYM2zwGN0D4F2aiNHMeu1lZHFOwfJMAF0X110HDdedYvcsIo578ujQ11WL5kP687Cw==}
+ openai@6.5.0:
+ resolution: {integrity: sha512-bNqJ15Ijbs41KuJ2iYz/mGAruFHzQQt7zXo4EvjNLoB64aJdgn1jlMeDTsXjEg+idVYafg57QB/5Rd16oqvZ6A==}
hasBin: true
peerDependencies:
ws: ^8.18.0
@@ -10605,13 +10605,13 @@ packages:
pkg-types@2.1.0:
resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
- playwright-core@1.56.0:
- resolution: {integrity: sha512-1SXl7pMfemAMSDn5rkPeZljxOCYAmQnYLBTExuh6E8USHXGSX3dx6lYZN/xPpTz1vimXmPA9CDnILvmJaB8aSQ==}
+ playwright-core@1.56.1:
+ resolution: {integrity: sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.56.0:
- resolution: {integrity: sha512-X5Q1b8lOdWIE4KAoHpW3SE8HvUB+ZZsUoN64ZhjnN8dOb1UpujxBtENGiZFE+9F/yhzJwYa+ca3u43FeLbboHA==}
+ playwright@1.56.1:
+ resolution: {integrity: sha512-aFi5B0WovBHTEvpM3DzXTUaeN6eN0qWnTkKx4NQaH4Wvcmc153PdaY2UBdSYKaGYw+UyWXSVyxDUg5DoPEttjw==}
engines: {node: '>=18'}
hasBin: true
@@ -11623,8 +11623,8 @@ packages:
peerDependencies:
react: ^19.1.0
- react-i18next@16.0.1:
- resolution: {integrity: sha512-0S//bpYEkCPjzuVmxDf9Z6+Y+ArNvpAUk7eDL4qNCZXjDh6Z9j6MZ+NThU7kMCOsmYmDCun3GYEwkiOjjZo9Ug==}
+ react-i18next@16.1.0:
+ resolution: {integrity: sha512-10qpoODc0ntrWpZdko9CQnl2Xf4VJXUAS9sa7WOkTrQzbbfyoSSUZ3Rsnpgt8la6qCxeB61yzYjyW8U1g3hUUg==}
peerDependencies:
i18next: '>= 25.5.2'
react: '>= 16.8.0'
@@ -14482,11 +14482,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.28.4(@babel/core@7.28.0)(eslint@9.37.0(jiti@2.6.1))':
+ '@babel/eslint-parser@7.28.4(@babel/core@7.28.0)(eslint@9.38.0(jiti@2.6.1))':
dependencies:
'@babel/core': 7.28.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
eslint-visitor-keys: 2.1.0
semver: 6.3.1
@@ -14838,8 +14838,6 @@ snapshots:
'@ckeditor/ckeditor5-core': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- transitivePeerDependencies:
- - supports-color
'@ckeditor/ckeditor5-code-block@47.1.0(patch_hash=2361d8caad7d6b5bddacc3a3b4aa37dbfba260b1c1b22a450413a79c1bb1ce95)':
dependencies:
@@ -14901,6 +14899,8 @@ snapshots:
'@ckeditor/ckeditor5-utils': 47.1.0
'@ckeditor/ckeditor5-watchdog': 47.1.0
es-toolkit: 1.39.5
+ transitivePeerDependencies:
+ - supports-color
'@ckeditor/ckeditor5-dev-build-tools@43.1.0(@swc/helpers@0.5.17)(tslib@2.8.1)(typescript@5.9.3)':
dependencies:
@@ -15092,8 +15092,6 @@ snapshots:
'@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
es-toolkit: 1.39.5
- transitivePeerDependencies:
- - supports-color
'@ckeditor/ckeditor5-editor-multi-root@47.1.0':
dependencies:
@@ -15116,8 +15114,6 @@ snapshots:
'@ckeditor/ckeditor5-table': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- transitivePeerDependencies:
- - supports-color
'@ckeditor/ckeditor5-emoji@47.1.0':
dependencies:
@@ -15480,7 +15476,7 @@ snapshots:
es-toolkit: 1.39.5
protobufjs: 7.5.0
- '@ckeditor/ckeditor5-package-tools@4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)':
+ '@ckeditor/ckeditor5-package-tools@4.1.1(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(bufferutil@4.0.9)(esbuild@0.25.11)(utf-8-validate@6.0.5)':
dependencies:
'@ckeditor/ckeditor5-dev-translations': 53.2.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11)(typescript@5.0.4)(webpack@5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11))
'@ckeditor/ckeditor5-dev-utils': 53.2.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11)(typescript@5.0.4)(webpack@5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11))
@@ -15499,7 +15495,7 @@ snapshots:
stylelint-config-ckeditor5: 2.0.1(stylelint@16.25.0(typescript@5.9.3))
terser-webpack-plugin: 5.3.14(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11)(webpack@5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11))
ts-loader: 9.5.4(typescript@5.0.4)(webpack@5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11))
- ts-node: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.0.4)
+ ts-node: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.0.4)
typescript: 5.0.4
upath: 2.0.1
webpack: 5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11)
@@ -15590,8 +15586,6 @@ snapshots:
'@ckeditor/ckeditor5-ui': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- transitivePeerDependencies:
- - supports-color
'@ckeditor/ckeditor5-restricted-editing@47.1.0':
dependencies:
@@ -15678,8 +15672,6 @@ snapshots:
'@ckeditor/ckeditor5-ui': 47.1.0
'@ckeditor/ckeditor5-utils': 47.1.0
ckeditor5: 47.1.0(patch_hash=8331a09d41443b39ea1c784daaccfeb0da4f9065ed556e7de92e9c77edd9eb41)
- transitivePeerDependencies:
- - supports-color
'@ckeditor/ckeditor5-special-characters@47.1.0':
dependencies:
@@ -16644,22 +16636,22 @@ snapshots:
'@esbuild/win32-x64@0.25.11':
optional: true
- '@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.6.1))':
+ '@eslint-community/eslint-utils@4.9.0(eslint@9.38.0(jiti@2.6.1))':
dependencies:
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/config-array@0.21.0':
+ '@eslint/config-array@0.21.1':
dependencies:
- '@eslint/object-schema': 2.1.6
+ '@eslint/object-schema': 2.1.7
debug: 4.4.3(supports-color@6.0.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.4.0':
+ '@eslint/config-helpers@0.4.1':
dependencies:
'@eslint/core': 0.16.0
@@ -16689,7 +16681,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.37.0': {}
+ '@eslint/js@9.38.0': {}
'@eslint/markdown@6.6.0':
dependencies:
@@ -16704,7 +16696,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/object-schema@2.1.6': {}
+ '@eslint/object-schema@2.1.7': {}
'@eslint/plugin-kit@0.3.5':
dependencies:
@@ -17039,26 +17031,26 @@ snapshots:
'@inquirer/core': 9.2.1
'@inquirer/type': 2.0.0
- '@inquirer/confirm@5.1.19(@types/node@22.18.10)':
+ '@inquirer/confirm@5.1.19(@types/node@22.18.11)':
dependencies:
- '@inquirer/core': 10.3.0(@types/node@22.18.10)
- '@inquirer/type': 3.0.9(@types/node@22.18.10)
+ '@inquirer/core': 10.3.0(@types/node@22.18.11)
+ '@inquirer/type': 3.0.9(@types/node@22.18.11)
optionalDependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
optional: true
- '@inquirer/core@10.3.0(@types/node@22.18.10)':
+ '@inquirer/core@10.3.0(@types/node@22.18.11)':
dependencies:
'@inquirer/ansi': 1.0.1
'@inquirer/figures': 1.0.14
- '@inquirer/type': 3.0.9(@types/node@22.18.10)
+ '@inquirer/type': 3.0.9(@types/node@22.18.11)
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
optional: true
'@inquirer/core@9.2.1':
@@ -17151,9 +17143,9 @@ snapshots:
dependencies:
mute-stream: 1.0.0
- '@inquirer/type@3.0.9(@types/node@22.18.10)':
+ '@inquirer/type@3.0.9(@types/node@22.18.11)':
optionalDependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
optional: true
'@isaacs/balanced-match@4.0.1': {}
@@ -17590,23 +17582,23 @@ snapshots:
dependencies:
langium: 3.3.1
- '@microsoft/api-extractor-model@7.30.6(@types/node@22.18.10)':
+ '@microsoft/api-extractor-model@7.30.6(@types/node@22.18.11)':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.13.1(@types/node@22.18.10)
+ '@rushstack/node-core-library': 5.13.1(@types/node@22.18.11)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.52.8(@types/node@22.18.10)':
+ '@microsoft/api-extractor@7.52.8(@types/node@22.18.11)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.6(@types/node@22.18.10)
+ '@microsoft/api-extractor-model': 7.30.6(@types/node@22.18.11)
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.13.1(@types/node@22.18.10)
+ '@rushstack/node-core-library': 5.13.1(@types/node@22.18.11)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.3(@types/node@22.18.10)
- '@rushstack/ts-command-line': 5.0.1(@types/node@22.18.10)
+ '@rushstack/terminal': 0.15.3(@types/node@22.18.11)
+ '@rushstack/ts-command-line': 5.0.1(@types/node@22.18.11)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.10
@@ -17625,9 +17617,9 @@ snapshots:
'@microsoft/tsdoc@0.15.1': {}
- '@mind-elixir/node-menu@5.0.0(mind-elixir@5.3.2)':
+ '@mind-elixir/node-menu@5.0.0(mind-elixir@5.3.3)':
dependencies:
- mind-elixir: 5.3.2
+ mind-elixir: 5.3.3
'@mixmark-io/domino@2.2.0': {}
@@ -17843,9 +17835,9 @@ snapshots:
'@pkgjs/parseargs@0.11.0':
optional: true
- '@playwright/test@1.56.0':
+ '@playwright/test@1.56.1':
dependencies:
- playwright: 1.56.0
+ playwright: 1.56.1
'@polka/url@1.0.0-next.29': {}
@@ -18477,7 +18469,7 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.52.0':
optional: true
- '@rushstack/node-core-library@5.13.1(@types/node@22.18.10)':
+ '@rushstack/node-core-library@5.13.1(@types/node@22.18.11)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -18488,23 +18480,23 @@ snapshots:
resolve: 1.22.10
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.10
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.15.3(@types/node@22.18.10)':
+ '@rushstack/terminal@0.15.3(@types/node@22.18.11)':
dependencies:
- '@rushstack/node-core-library': 5.13.1(@types/node@22.18.10)
+ '@rushstack/node-core-library': 5.13.1(@types/node@22.18.11)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
- '@rushstack/ts-command-line@5.0.1(@types/node@22.18.10)':
+ '@rushstack/ts-command-line@5.0.1(@types/node@22.18.11)':
dependencies:
- '@rushstack/terminal': 0.15.3(@types/node@22.18.10)
+ '@rushstack/terminal': 0.15.3(@types/node@22.18.11)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -18869,10 +18861,10 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@stylistic/eslint-plugin@4.4.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@stylistic/eslint-plugin@4.4.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.37.0(jiti@2.6.1)
+ '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.38.0(jiti@2.6.1)
eslint-visitor-keys: 4.2.1
espree: 10.4.0
estraverse: 5.3.0
@@ -19014,7 +19006,7 @@ snapshots:
'@types/appdmg@0.5.5':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
optional: true
'@types/archiver@6.0.3':
@@ -19032,11 +19024,11 @@ snapshots:
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/bootstrap@5.2.10':
dependencies:
@@ -19046,7 +19038,7 @@ snapshots:
dependencies:
'@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/responselike': 1.0.3
'@types/chai@5.2.2':
@@ -19071,11 +19063,11 @@ snapshots:
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 5.1.0
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@types/cookie-parser@1.4.9(@types/express@5.0.3)':
dependencies:
@@ -19243,7 +19235,7 @@ snapshots:
'@types/express-serve-static-core@5.1.0':
dependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@types/qs': 6.14.0
'@types/range-parser': 1.2.7
'@types/send': 0.17.5
@@ -19272,7 +19264,7 @@ snapshots:
'@types/fs-extra@9.0.13':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
optional: true
'@types/geojson-vt@3.2.5':
@@ -19284,7 +19276,7 @@ snapshots:
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/hast@3.0.4':
dependencies:
@@ -19298,7 +19290,7 @@ snapshots:
'@types/http-proxy@1.17.16':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/ini@4.1.1': {}
@@ -19312,11 +19304,11 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/leaflet-gpx@1.3.8':
dependencies:
@@ -19370,7 +19362,7 @@ snapshots:
'@types/node-forge@1.3.14':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/node@16.9.1': {}
@@ -19405,6 +19397,7 @@ snapshots:
'@types/node@24.8.1':
dependencies:
undici-types: 7.14.0
+ optional: true
'@types/parse-json@4.0.2': {}
@@ -19430,13 +19423,13 @@ snapshots:
'@types/readdir-glob@1.1.5':
dependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@types/resolve@1.20.2': {}
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/retry@0.12.2': {}
@@ -19455,7 +19448,7 @@ snapshots:
'@types/send@0.17.5':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
'@types/serve-favicon@2.5.7':
dependencies:
@@ -19482,7 +19475,7 @@ snapshots:
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/statuses@2.0.6':
optional: true
@@ -19495,7 +19488,7 @@ snapshots:
dependencies:
'@types/cookiejar': 2.1.5
'@types/methods': 1.1.4
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
form-data: 4.0.4
'@types/supercluster@7.1.3':
@@ -19518,7 +19511,7 @@ snapshots:
'@types/through2@2.0.41':
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
'@types/tmp@0.2.6': {}
@@ -19556,18 +19549,18 @@ snapshots:
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
optional: true
- '@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/scope-manager': 8.40.0
- '@typescript-eslint/type-utils': 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.40.0
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
@@ -19576,15 +19569,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/scope-manager': 8.46.1
- '@typescript-eslint/type-utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.46.1
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
@@ -19593,26 +19586,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.40.0
'@typescript-eslint/types': 8.40.0
'@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.40.0
debug: 4.4.3(supports-color@6.0.0)
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.46.1
'@typescript-eslint/types': 8.46.1
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.46.1
debug: 4.4.3(supports-color@6.0.0)
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -19657,25 +19650,25 @@ snapshots:
dependencies:
typescript: 5.9.3
- '@typescript-eslint/type-utils@8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 8.40.0
'@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
debug: 4.4.3(supports-color@6.0.0)
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
ts-api-utils: 2.1.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 8.46.1
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
debug: 4.4.3(supports-color@6.0.0)
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
ts-api-utils: 2.1.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
@@ -19717,24 +19710,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
'@typescript-eslint/scope-manager': 8.40.0
'@typescript-eslint/types': 8.40.0
'@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
'@typescript-eslint/scope-manager': 8.46.1
'@typescript-eslint/types': 8.46.1
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -19782,19 +19775,19 @@ snapshots:
- bufferutil
- utf-8-validate
- '@vitest/browser@3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))':
+ '@vitest/browser@3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))':
dependencies:
'@testing-library/dom': 10.4.0
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
- '@vitest/mocker': 3.2.4(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
'@vitest/utils': 3.2.4
magic-string: 0.30.18
sirv: 3.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5)
optionalDependencies:
- playwright: 1.56.0
+ playwright: 1.56.1
webdriverio: 9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
transitivePeerDependencies:
- bufferutil
@@ -19814,7 +19807,7 @@ snapshots:
magicast: 0.3.5
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
@@ -19833,9 +19826,9 @@ snapshots:
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
optionalDependencies:
- '@vitest/browser': 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ '@vitest/browser': 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
transitivePeerDependencies:
- supports-color
@@ -19847,14 +19840,14 @@ snapshots:
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))':
+ '@vitest/mocker@3.2.4(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.18
optionalDependencies:
- msw: 2.7.5(@types/node@22.18.10)(typescript@5.9.3)
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ msw: 2.7.5(@types/node@22.18.11)(typescript@5.9.3)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
'@vitest/pretty-format@3.2.4':
dependencies:
@@ -19885,7 +19878,7 @@ snapshots:
sirv: 3.0.1
tinyglobby: 0.2.15
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
'@vitest/utils@3.2.4':
dependencies:
@@ -19965,11 +19958,11 @@ snapshots:
'@wdio/repl@9.16.2':
dependencies:
- '@types/node': 20.19.18
+ '@types/node': 20.19.22
'@wdio/types@9.20.0':
dependencies:
- '@types/node': 20.19.18
+ '@types/node': 20.19.22
'@wdio/utils@9.20.0':
dependencies:
@@ -22691,40 +22684,40 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-ckeditor5@12.1.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-config-ckeditor5@12.1.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint/js': 9.37.0
+ '@eslint/js': 9.38.0
'@eslint/markdown': 6.6.0
- '@stylistic/eslint-plugin': 4.4.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.37.0(jiti@2.6.1)
+ '@stylistic/eslint-plugin': 4.4.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.38.0(jiti@2.6.1)
eslint-plugin-ckeditor5-rules: 12.1.1
- eslint-plugin-mocha: 11.1.0(eslint@9.37.0(jiti@2.6.1))
+ eslint-plugin-mocha: 11.1.0(eslint@9.38.0(jiti@2.6.1))
globals: 16.4.0
typescript: 5.9.3
- typescript-eslint: 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ typescript-eslint: 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- eslint-config-preact@2.0.0(eslint@9.37.0(jiti@2.6.1)):
+ eslint-config-preact@2.0.0(eslint@9.38.0(jiti@2.6.1)):
dependencies:
'@babel/core': 7.28.0
- '@babel/eslint-parser': 7.28.4(@babel/core@7.28.0)(eslint@9.37.0(jiti@2.6.1))
+ '@babel/eslint-parser': 7.28.4(@babel/core@7.28.0)(eslint@9.38.0(jiti@2.6.1))
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0)
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0)
- '@eslint/js': 9.37.0
- eslint: 9.37.0(jiti@2.6.1)
- eslint-plugin-compat: 6.0.2(eslint@9.37.0(jiti@2.6.1))
- eslint-plugin-react: 7.37.5(eslint@9.37.0(jiti@2.6.1))
- eslint-plugin-react-hooks: 5.2.0(eslint@9.37.0(jiti@2.6.1))
+ '@eslint/js': 9.38.0
+ eslint: 9.38.0(jiti@2.6.1)
+ eslint-plugin-compat: 6.0.2(eslint@9.38.0(jiti@2.6.1))
+ eslint-plugin-react: 7.37.5(eslint@9.38.0(jiti@2.6.1))
+ eslint-plugin-react-hooks: 5.2.0(eslint@9.38.0(jiti@2.6.1))
globals: 16.4.0
transitivePeerDependencies:
- supports-color
- eslint-config-prettier@10.1.8(eslint@9.37.0(jiti@2.6.1)):
+ eslint-config-prettier@10.1.8(eslint@9.38.0(jiti@2.6.1)):
dependencies:
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
- eslint-linter-browserify@9.37.0: {}
+ eslint-linter-browserify@9.38.0: {}
eslint-plugin-ckeditor5-rules@12.1.1:
dependencies:
@@ -22736,45 +22729,45 @@ snapshots:
validate-npm-package-name: 6.0.2
yaml: 2.8.1
- eslint-plugin-compat@6.0.2(eslint@9.37.0(jiti@2.6.1)):
+ eslint-plugin-compat@6.0.2(eslint@9.38.0(jiti@2.6.1)):
dependencies:
'@mdn/browser-compat-data': 5.7.6
ast-metadata-inferer: 0.8.1
browserslist: 4.26.2
caniuse-lite: 1.0.30001743
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
find-up: 5.0.0
globals: 15.15.0
lodash.memoize: 4.1.2
semver: 7.7.2
- eslint-plugin-mocha@11.1.0(eslint@9.37.0(jiti@2.6.1)):
+ eslint-plugin-mocha@11.1.0(eslint@9.38.0(jiti@2.6.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
- eslint: 9.37.0(jiti@2.6.1)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
+ eslint: 9.38.0(jiti@2.6.1)
globals: 15.15.0
- eslint-plugin-playwright@2.2.2(eslint@9.37.0(jiti@2.6.1)):
+ eslint-plugin-playwright@2.2.2(eslint@9.38.0(jiti@2.6.1)):
dependencies:
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
globals: 13.24.0
- eslint-plugin-react-hooks@5.2.0(eslint@9.37.0(jiti@2.6.1)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.38.0(jiti@2.6.1)):
dependencies:
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
- eslint-plugin-react-hooks@7.0.0(eslint@9.37.0(jiti@2.6.1)):
+ eslint-plugin-react-hooks@7.0.0(eslint@9.38.0(jiti@2.6.1)):
dependencies:
'@babel/core': 7.28.0
'@babel/parser': 7.28.4
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
hermes-parser: 0.25.1
zod: 3.24.4
zod-validation-error: 3.5.3(zod@3.24.4)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react@7.37.5(eslint@9.37.0(jiti@2.6.1)):
+ eslint-plugin-react@7.37.5(eslint@9.38.0(jiti@2.6.1)):
dependencies:
array-includes: 3.1.9
array.prototype.findlast: 1.2.5
@@ -22782,7 +22775,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.2.1
- eslint: 9.37.0(jiti@2.6.1)
+ eslint: 9.38.0(jiti@2.6.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -22812,21 +22805,20 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.37.0(jiti@2.6.1):
+ eslint@9.38.0(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.38.0(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.21.0
- '@eslint/config-helpers': 0.4.0
+ '@eslint/config-array': 0.21.1
+ '@eslint/config-helpers': 0.4.1
'@eslint/core': 0.16.0
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.37.0
+ '@eslint/js': 9.38.0
'@eslint/plugin-kit': 0.4.0
'@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.8
- '@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
@@ -23706,7 +23698,7 @@ snapshots:
handle-thing@2.0.1: {}
- happy-dom@20.0.4:
+ happy-dom@20.0.7:
dependencies:
'@types/node': 20.19.22
'@types/whatwg-mimetype': 3.0.2
@@ -24486,13 +24478,13 @@ snapshots:
jest-worker@26.6.2:
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
merge-stream: 2.0.0
supports-color: 7.2.0
jest-worker@27.5.1:
dependencies:
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -25159,7 +25151,7 @@ snapshots:
markdown-table@3.0.4: {}
- marked@16.4.0: {}
+ marked@16.4.1: {}
matcher@3.0.0:
dependencies:
@@ -25354,7 +25346,7 @@ snapshots:
katex: 0.16.25
khroma: 2.1.0
lodash-es: 4.17.21
- marked: 16.4.0
+ marked: 16.4.1
roughjs: 4.6.6
stylis: 4.3.6
ts-dedent: 2.2.0
@@ -25593,7 +25585,7 @@ snapshots:
mimic-response@3.1.0: {}
- mind-elixir@5.3.2: {}
+ mind-elixir@5.3.3: {}
mini-css-extract-plugin@2.4.7(webpack@5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11)):
dependencies:
@@ -25788,12 +25780,12 @@ snapshots:
ms@2.1.3: {}
- msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3):
+ msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
'@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.1.19(@types/node@22.18.10)
+ '@inquirer/confirm': 5.1.19(@types/node@22.18.11)
'@mswjs/interceptors': 0.37.6
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
@@ -26180,7 +26172,7 @@ snapshots:
is-inside-container: 1.0.0
wsl-utils: 0.1.0
- openai@6.4.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5))(zod@3.24.4):
+ openai@6.5.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5))(zod@3.24.4):
optionalDependencies:
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5)
zod: 3.24.4
@@ -26514,11 +26506,11 @@ snapshots:
exsolve: 1.0.5
pathe: 2.0.3
- playwright-core@1.56.0: {}
+ playwright-core@1.56.1: {}
- playwright@1.56.0:
+ playwright@1.56.1:
dependencies:
- playwright-core: 1.56.0
+ playwright-core: 1.56.1
optionalDependencies:
fsevents: 2.3.2
@@ -27383,7 +27375,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 24.8.1
+ '@types/node': 22.18.11
long: 5.3.2
protocol-buffers-schema@3.6.0: {}
@@ -27520,7 +27512,7 @@ snapshots:
react: 16.14.0
scheduler: 0.26.0
- react-i18next@16.0.1(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3):
+ react-i18next@16.1.0(i18next@25.6.0(typescript@5.9.3))(react-dom@19.1.0(react@16.14.0))(react@16.14.0)(typescript@5.9.3):
dependencies:
'@babel/runtime': 7.28.4
html-parse-stringify: 3.0.1
@@ -27882,11 +27874,11 @@ snapshots:
'@rolldown/binding-win32-x64-msvc': 1.0.0-beta.29
optional: true
- rollup-plugin-stats@1.5.1(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
+ rollup-plugin-stats@1.5.1(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
optionalDependencies:
rolldown: 1.0.0-beta.29
rollup: 4.52.0
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
rollup-plugin-styles@4.0.0(rollup@4.40.0):
dependencies:
@@ -27915,13 +27907,13 @@ snapshots:
'@rollup/pluginutils': 5.1.4(rollup@4.40.0)
rollup: 4.40.0
- rollup-plugin-webpack-stats@2.1.6(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
+ rollup-plugin-webpack-stats@2.1.6(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
- rollup-plugin-stats: 1.5.1(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ rollup-plugin-stats: 1.5.1(rolldown@1.0.0-beta.29)(rollup@4.52.0)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
optionalDependencies:
rolldown: 1.0.0-beta.29
rollup: 4.52.0
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
rollup@4.40.0:
dependencies:
@@ -29394,14 +29386,14 @@ snapshots:
typescript: 5.0.4
webpack: 5.101.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(esbuild@0.25.11)
- ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.0.4):
+ ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.0.4):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -29414,14 +29406,14 @@ snapshots:
optionalDependencies:
'@swc/core': 1.11.29(@swc/helpers@0.5.17)
- ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.10)(typescript@5.9.3):
+ ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@22.18.11)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
acorn: 8.15.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -29540,24 +29532,24 @@ snapshots:
typedarray@0.0.6: {}
- typescript-eslint@8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3):
+ typescript-eslint@8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser': 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.40.0(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.37.0(jiti@2.6.1)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.38.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- typescript-eslint@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3):
+ typescript-eslint@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.37.0(jiti@2.6.1)
+ '@typescript-eslint/utils': 8.46.1(eslint@9.38.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.38.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -29587,7 +29579,8 @@ snapshots:
undici-types@6.21.0: {}
- undici-types@7.14.0: {}
+ undici-types@7.14.0:
+ optional: true
undici@6.21.3: {}
@@ -29791,13 +29784,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@3.2.4(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1):
+ vite-node@3.2.4(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1):
dependencies:
cac: 6.7.14
debug: 4.4.3(supports-color@6.0.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -29812,9 +29805,9 @@ snapshots:
- tsx
- yaml
- vite-plugin-dts@4.5.4(@types/node@22.18.10)(rollup@4.52.0)(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
+ vite-plugin-dts@4.5.4(@types/node@22.18.11)(rollup@4.52.0)(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
- '@microsoft/api-extractor': 7.52.8(@types/node@22.18.10)
+ '@microsoft/api-extractor': 7.52.8(@types/node@22.18.11)
'@rollup/pluginutils': 5.1.4(rollup@4.52.0)
'@volar/typescript': 2.4.13
'@vue/language-core': 2.2.0(typescript@5.9.3)
@@ -29825,7 +29818,7 @@ snapshots:
magic-string: 0.30.17
typescript: 5.9.3
optionalDependencies:
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- rollup
@@ -29839,11 +29832,11 @@ snapshots:
tinyglobby: 0.2.15
vite: 7.1.10(@types/node@24.8.1)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
- vite-plugin-svgo@2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
+ vite-plugin-svgo@2.0.0(typescript@5.9.3)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
svgo: 3.3.2
typescript: 5.9.3
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
vite-prerender-plugin@0.5.11(vite@7.1.10(@types/node@24.8.1)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)):
dependencies:
@@ -29855,7 +29848,7 @@ snapshots:
stack-trace: 1.0.0-pre2
vite: 7.1.10(@types/node@24.8.1)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
- vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1):
+ vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1):
dependencies:
esbuild: 0.25.10
fdir: 6.5.0(picomatch@4.0.3)
@@ -29864,7 +29857,7 @@ snapshots:
rollup: 4.52.0
tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 22.18.10
+ '@types/node': 22.18.11
fsevents: 2.3.3
jiti: 2.6.1
less: 4.1.3
@@ -29895,11 +29888,11 @@ snapshots:
tsx: 4.20.6
yaml: 2.8.1
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.10)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.4)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.11)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(happy-dom@20.0.7)(jiti@2.6.1)(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.1.3)(lightningcss@1.30.1)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1):
dependencies:
'@types/chai': 5.2.2
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
@@ -29917,15 +29910,15 @@ snapshots:
tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
- vite-node: 3.2.4(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
+ vite-node: 3.2.4(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.18.10
- '@vitest/browser': 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.10)(typescript@5.9.3))(playwright@1.56.0)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.10)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
+ '@types/node': 22.18.11
+ '@vitest/browser': 3.2.4(bufferutil@4.0.9)(msw@2.7.5(@types/node@22.18.11)(typescript@5.9.3))(playwright@1.56.1)(utf-8-validate@6.0.5)(vite@7.1.10(@types/node@22.18.11)(jiti@2.6.1)(less@4.1.3)(lightningcss@1.30.1)(sass-embedded@1.91.0)(sass@1.91.0)(terser@5.44.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)(webdriverio@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))
'@vitest/ui': 3.2.4(vitest@3.2.4)
- happy-dom: 20.0.4
+ happy-dom: 20.0.7
jsdom: 26.1.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
transitivePeerDependencies:
- jiti
@@ -30014,7 +30007,7 @@ snapshots:
webdriver@9.20.0(bufferutil@4.0.9)(utf-8-validate@6.0.5):
dependencies:
- '@types/node': 20.19.18
+ '@types/node': 20.19.22
'@types/ws': 8.18.1
'@wdio/config': 9.20.0
'@wdio/logger': 9.18.0