From 9ea80ef65cb0a0c55155242095612c39ac6dbf7a Mon Sep 17 00:00:00 2001
From: Col0ring <1561999073@qq.com>
Date: Mon, 18 May 2026 16:02:19 +0800
Subject: [PATCH 1/4] feat: synchronize deps to antd 6.4.0 and antdx 2.7.0
---
.changeset/five-wings-look.md | 12 +
.../Bubble Chat Bubble/Bubble Chat Bubble.md | 30 +-
.../Bubble.List Component.md | 2 +-
...15\345\210\266\346\223\215\344\275\234.md" | 2 +-
...71\350\257\235\346\260\224\346\263\241.md" | 2 +-
...27\350\241\250\347\273\204\344\273\266.md" | 2 +-
...07\350\257\206\347\273\204\344\273\266.md" | 8 +-
.../components/antd/alert/__init__.py | 2 +
.../components/antd/anchor/item/__init__.py | 2 +
.../components/antd/cascader/__init__.py | 6 +-
.../components/antd/date_picker/__init__.py | 3 +
.../components/antd/float_button/__init__.py | 2 +
.../components/antd/image/__init__.py | 4 +
.../components/antd/input/search/__init__.py | 2 +-
.../components/antd/splitter/__init__.py | 9 +
.../antd/splitter/panel/__init__.py | 2 +
.../antd/typography/link/__init__.py | 2 +
.../antd/typography/paragraph/__init__.py | 2 +
.../antd/typography/text/__init__.py | 2 +
.../antd/typography/title/__init__.py | 2 +
config/changelog/package.json | 2 +-
config/lint-config/configs/eslint/react.mjs | 2 +-
config/lint-config/package.json | 16 +-
frontend/antd/cascader/cascader.tsx | 10 +-
frontend/antd/date-picker/date-picker.tsx | 8 +
.../range-picker/date-picker.range-picker.tsx | 1 +
frontend/antd/input/input.tsx | 9 +
frontend/antd/input/search/input.search.tsx | 8 +
.../antd/input/textarea/input.textarea.tsx | 22 +-
frontend/antd/splitter/splitter.tsx | 39 +-
frontend/antd/typography/typography.base.tsx | 17 +-
frontend/antdx/bubble/list/utils.tsx | 11 +-
.../base/auto-loading/useLoadingStatus.ts | 49 +-
.../globals/components/markdown/index.tsx | 16 +-
frontend/package.json | 28 +-
frontend/pro/chatbot/chatbot.tsx | 2 +-
frontend/pro/chatbot/hooks/useScroll.ts | 2 -
frontend/pro/chatbot/messages/tool.tsx | 9 +-
package.json | 28 +-
pnpm-lock.yaml | 3406 ++++++++---------
40 files changed, 1932 insertions(+), 1851 deletions(-)
create mode 100644 .changeset/five-wings-look.md
diff --git a/.changeset/five-wings-look.md b/.changeset/five-wings-look.md
new file mode 100644
index 00000000..c9fb82f9
--- /dev/null
+++ b/.changeset/five-wings-look.md
@@ -0,0 +1,12 @@
+---
+'@modelscope-studio/lint-config': patch
+'@modelscope-studio/changelog': patch
+'@modelscope-studio/antdx': patch
+'@modelscope-studio/antd': patch
+'@modelscope-studio/base': patch
+'@modelscope-studio/pro': patch
+'@modelscope-studio/frontend': patch
+'modelscope_studio': patch
+---
+
+feat: synchronize deps to antd 6.4.0 and antdx 2.7.0
diff --git a/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble Chat Bubble.md b/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble Chat Bubble.md
index b32c20e5..4c03b1c3 100644
--- a/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble Chat Bubble.md
+++ b/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble Chat Bubble.md
@@ -22,16 +22,24 @@
## Table of Contents
-1. [Introduction](#introduction)
-2. [Project Structure](#project-structure)
-3. [Core Components](#core-components)
-4. [Architecture Overview](#architecture-overview)
-5. [Component Details](#component-details)
-6. [Dependency Analysis](#dependency-analysis)
-7. [Performance and Maintainability](#performance-and-maintainability)
-8. [Troubleshooting Guide](#troubleshooting-guide)
-9. [Conclusion](#conclusion)
-10. [Appendix: Usage Examples and Best Practices](#appendix-usage-examples-and-best-practices)
+- [Bubble Chat Bubble](#bubble-chat-bubble)
+ - [Update Summary](#update-summary)
+ - [Table of Contents](#table-of-contents)
+ - [Introduction](#introduction)
+ - [Project Structure](#project-structure)
+ - [Core Components](#core-components)
+ - [Architecture Overview](#architecture-overview)
+ - [Component Details](#component-details)
+ - [Bubble Component](#bubble-component)
+ - [BubbleList Component](#bubblelist-component)
+ - [BubbleListItem and BubbleListRole](#bubblelistitem-and-bubblelistrole)
+ - [useRole - Role Resolution Utility](#userole---role-resolution-utility)
+ - [Divider Component](#divider-component)
+ - [Dependency Analysis](#dependency-analysis)
+ - [Performance and Maintainability](#performance-and-maintainability)
+ - [Troubleshooting Guide](#troubleshooting-guide)
+ - [Conclusion](#conclusion)
+ - [Appendix: Usage Examples and Best Practices](#appendix-usage-examples-and-best-practices)
## Introduction
@@ -160,7 +168,7 @@ RenderX --> End(["Done"])
- **Purpose**: Converts role configuration (string, function, or object) to the RoleType required by @ant-design/x, with slot patching and index injection.
- **Key Points**:
- Supports `defaultRoleKeys`
- - Supports `preProcess` and `defaultRolePostProcess` hooks
+ - Supports `preProcess` and `postProcess` hooks
- Automatically patches header/footer/avatar/extra/loadingRender/contentRender slots
- Default `contentRender` serializes objects to strings
diff --git a/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble.List Component.md b/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble.List Component.md
index 10debd4c..3492591c 100644
--- a/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble.List Component.md
+++ b/.wiki/en/Ant Design X Components/General Components/Bubble Chat Bubble/Bubble.List Component.md
@@ -32,7 +32,7 @@ RenderList --> End(["Done"])
## Key Features
- **Items merging**: Prioritizes `props.items`; if not provided, reads `slotItems.items` or `default` from context, then uses `renderItems` to normalize to an array.
-- **Role resolution**: Uses `useRole` to support role as string, function, or object, with `preProcess` and `defaultRolePostProcess` hooks.
+- **Role resolution**: Uses `useRole` to support role as string, function, or object, with `preProcess` and `postProcess` hooks.
- **Slot patching**: Applies patches to slots so role's avatar/header/footer/extra/loadingRender/contentRender can be overridden in advance.
- **Render and scroll**: Renders via @ant-design/x's `XBubble.List`, with auto-scroll binding and scroll event callbacks.
diff --git "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\345\217\215\351\246\210\347\273\204\344\273\266/Copy \345\244\215\345\210\266\346\223\215\344\275\234.md" "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\345\217\215\351\246\210\347\273\204\344\273\266/Copy \345\244\215\345\210\266\346\223\215\344\275\234.md"
index fb054f95..1aa6f47f 100644
--- "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\345\217\215\351\246\210\347\273\204\344\273\266/Copy \345\244\215\345\210\266\346\223\215\344\275\234.md"
+++ "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\345\217\215\351\246\210\347\273\204\344\273\266/Copy \345\244\215\345\210\266\346\223\215\344\275\234.md"
@@ -80,7 +80,7 @@ L --> N
### 后端组件层
-- ****init**.py**: Python 后端组件定义,继承自 ModelScopeLayoutComponent
+- \***\*init**.py\*\*: Python 后端组件定义,继承自 ModelScopeLayoutComponent
### 工具函数层
diff --git "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble \345\257\271\350\257\235\346\260\224\346\263\241.md" "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble \345\257\271\350\257\235\346\260\224\346\263\241.md"
index 55ee9d72..11121a73 100644
--- "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble \345\257\271\350\257\235\346\260\224\346\263\241.md"
+++ "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble \345\257\271\350\257\235\346\260\224\346\263\241.md"
@@ -251,7 +251,7 @@ BubbleListRole --> RoleItemHandler : "注入"
- 功能定位:将角色配置(字符串函数或对象)转换为 @ant-design/x 所需的 RoleType,并进行插槽补丁与索引注入。
- 关键点:
- 支持默认键 defaultRoleKeys
- - 支持 preProcess 与 defaultRolePostProcess 钩子
+ - 支持 preProcess 与 postProcess 钩子
- 自动将角色配置中的 header/footer/avatar/extra/loadingRender/contentRender 等插槽与内容进行补丁合并
- 默认 contentRender 会将对象序列化为字符串
diff --git "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.List \345\210\227\350\241\250\347\273\204\344\273\266.md" "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.List \345\210\227\350\241\250\347\273\204\344\273\266.md"
index 736ca515..a97d65f6 100644
--- "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.List \345\210\227\350\241\250\347\273\204\344\273\266.md"
+++ "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.List \345\210\227\350\241\250\347\273\204\344\273\266.md"
@@ -143,7 +143,7 @@ FrontList-->>FrontIndex : "渲染 XBubble.List"
- 优先使用外部传入的 items;若未提供,则从上下文读取 slotItems 中的 items 或 default。
- 使用 renderItems 将插槽内容转换为可渲染的数组。
- 角色解析
- - useRole 支持 role 为字符串函数或对象,支持 preProcess 与 defaultRolePostProcess 钩子。
+ - useRole 支持 role 为字符串函数或对象,支持 preProcess 与 postProcess 钩子。
- 对插槽进行补丁处理,使角色的 avatar/header/footer/extra/loadingRender/contentRender 能前置覆盖。
- 渲染与滚动
- 通过 @ant-design/x 的 XBubble.List 渲染,支持自动滚动绑定与滚动事件回调。
diff --git "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.Role \350\247\222\350\211\262\346\240\207\350\257\206\347\273\204\344\273\266.md" "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.Role \350\247\222\350\211\262\346\240\207\350\257\206\347\273\204\344\273\266.md"
index 7d2b9164..ed6edc41 100644
--- "a/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.Role \350\247\222\350\211\262\346\240\207\350\257\206\347\273\204\344\273\266.md"
+++ "b/.wiki/zh/Ant Design X \347\273\204\344\273\266\345\272\223/\351\200\232\347\224\250\347\273\204\344\273\266/Bubble \345\257\271\350\257\235\346\260\224\346\263\241/Bubble.Role \350\247\222\350\211\262\346\240\207\350\257\206\347\273\204\344\273\266.md"
@@ -167,10 +167,10 @@ Ctx-->>Dev : 渲染完成的消息气泡
### 显示逻辑与角色类型
- 角色解析流程
- - useRole 接收 role、defaultRoleKeys、preProcess、defaultRolePostProcess 等参数。
+ - useRole 接收 role、defaultRoleKeys、preProcess、postProcess 等参数。
- 通过 useRoleItems 获取角色项集合,构建角色映射表。
- 合并默认角色键与用户自定义角色键,按顺序解析为函数或对象。
- - 对于每个消息项,先执行 preProcess,再将角色插槽通过 patchSlots 合并到消息项上,最后应用 defaultRolePostProcess 进行最终调整。
+ - 对于每个消息项,先执行 preProcess,再将角色插槽通过 patchSlots 合并到消息项上,最后应用 postProcess 进行最终调整。
```mermaid
flowchart TD
@@ -180,7 +180,7 @@ BuildMap --> MergeKeys["合并默认键与自定义键"]
MergeKeys --> ResolveEach["逐个解析角色键"]
ResolveEach --> PreProcess["执行 preProcess 钩子"]
PreProcess --> PatchSlots["合并角色插槽到消息项"]
-PatchSlots --> PostProcess["执行 defaultRolePostProcess 钩子"]
+PatchSlots --> PostProcess["执行 postProcess 钩子"]
PostProcess --> End(["结束"])
```
@@ -256,7 +256,7 @@ ItemHandler <.. BubbleListItem : "委托"
- 自定义角色样式
- 通过 class_names 与 styles 为不同区域设置类名与内联样式;利用 shape 与 variant 控制外观。
- 动态角色信息
- - 结合 useRole 的 preProcess 与 defaultRolePostProcess,实现根据消息索引或上下文动态调整角色配置。
+ - 结合 useRole 的 preProcess 与 postProcess,实现根据消息索引或上下文动态调整角色配置。
- 与 Bubble.Item 的组合
- 在 BubbleList 中同时提供 items 与 roles,确保角色信息与消息内容协同渲染。
diff --git a/backend/modelscope_studio/components/antd/alert/__init__.py b/backend/modelscope_studio/components/antd/alert/__init__.py
index fe3df16f..710f140c 100644
--- a/backend/modelscope_studio/components/antd/alert/__init__.py
+++ b/backend/modelscope_studio/components/antd/alert/__init__.py
@@ -32,6 +32,7 @@ def __init__(
self,
additional_props: dict | None = None,
*,
+ variant: Literal['filled', 'outlined'] | None = None,
action: str | None = None,
after_close: str | None = None,
banner: bool | None = None,
@@ -63,6 +64,7 @@ def __init__(
self.class_names = class_names
self.styles = styles
self.additional_props = additional_props
+ self.variant = variant
self.action = action
self.after_close = after_close
self.banner = banner
diff --git a/backend/modelscope_studio/components/antd/anchor/item/__init__.py b/backend/modelscope_studio/components/antd/anchor/item/__init__.py
index e44b7a65..502aa4e2 100644
--- a/backend/modelscope_studio/components/antd/anchor/item/__init__.py
+++ b/backend/modelscope_studio/components/antd/anchor/item/__init__.py
@@ -22,6 +22,7 @@ def __init__(
title: str | None = None,
additional_props: dict | None = None,
*,
+ target_offset: int | float | None = None,
key: str | None = None,
replace: bool | None = None,
href: str | None = None,
@@ -53,6 +54,7 @@ def __init__(
self.additional_props = additional_props
self.title = title
self.key = key
+ self.target_offset = target_offset
self.replace = replace
self.href = href
self.href_target = href_target
diff --git a/backend/modelscope_studio/components/antd/cascader/__init__.py b/backend/modelscope_studio/components/antd/cascader/__init__.py
index bb783a5c..20eb602d 100644
--- a/backend/modelscope_studio/components/antd/cascader/__init__.py
+++ b/backend/modelscope_studio/components/antd/cascader/__init__.py
@@ -38,8 +38,8 @@ class AntdCascader(ModelScopeDataLayoutComponent):
# supported slots
SLOTS = [
'allowClear.clearIcon', 'suffixIcon', 'maxTagPlaceholder',
- 'notFoundContent', 'expandIcon', 'removeIcon', 'prefix',
- 'displayRender', 'tagRender', 'dropdownRender', 'popupRender'
+ 'notFoundContent', 'expandIcon', 'removeIcon', 'showSearch.searchIcon',
+ 'prefix', 'displayRender', 'tagRender', 'dropdownRender', 'popupRender'
'showSearch.render', 'optionRender'
]
@@ -61,6 +61,7 @@ def __init__(
popup_render: str | None = None,
expand_icon: str | None = None,
prefix: str | None = None,
+ search_icon: str | None = None,
expand_trigger: Literal['click', 'hover'] = 'click',
filed_names: dict | None = None,
get_popup_container: str | None = None,
@@ -120,6 +121,7 @@ def __init__(
self.dropdown_render = dropdown_render
self.popup_render = popup_render
self.expand_icon = expand_icon
+ self.search_icon = search_icon
self.expand_trigger = expand_trigger
self.filed_names = filed_names
self.get_popup_container = get_popup_container
diff --git a/backend/modelscope_studio/components/antd/date_picker/__init__.py b/backend/modelscope_studio/components/antd/date_picker/__init__.py
index e1e32930..02f36891 100644
--- a/backend/modelscope_studio/components/antd/date_picker/__init__.py
+++ b/backend/modelscope_studio/components/antd/date_picker/__init__.py
@@ -44,6 +44,7 @@ class AntdDatePicker(ModelScopeDataLayoutComponent):
'renderExtraFooter',
'cellRender',
'panelRender',
+ 'tagRender',
]
def __init__(
@@ -53,6 +54,7 @@ def __init__(
*,
allow_clear: bool | dict = True,
auto_focus: bool | None = None,
+ tag_render: str | None = None,
cell_render: str | None = None,
components: dict | None = None,
disabled: bool | None = None,
@@ -127,6 +129,7 @@ def __init__(
self.locale = locale
self.allow_clear = allow_clear
self.auto_focus = auto_focus
+ self.tag_render = tag_render
self.cell_render = cell_render
self.disabled = disabled
self.disabled_date = disabled_date
diff --git a/backend/modelscope_studio/components/antd/float_button/__init__.py b/backend/modelscope_studio/components/antd/float_button/__init__.py
index f6ea0e42..a271ed5d 100644
--- a/backend/modelscope_studio/components/antd/float_button/__init__.py
+++ b/backend/modelscope_studio/components/antd/float_button/__init__.py
@@ -38,6 +38,7 @@ def __init__(
icon: str | None = None,
description: str | None = None,
tooltip: str | dict | None = None,
+ disabled: bool | None = None,
type: Literal['default', 'primary'] = 'default',
shape: Literal['circle', 'square'] = 'circle',
href: str | None = None,
@@ -81,6 +82,7 @@ def __init__(
self.icon = icon
self.description = description
self.tooltip = tooltip
+ self.disabled = disabled
self.type = type
self.shape = shape
self.href = href
diff --git a/backend/modelscope_studio/components/antd/image/__init__.py b/backend/modelscope_studio/components/antd/image/__init__.py
index 4ac07691..e6775a9a 100644
--- a/backend/modelscope_studio/components/antd/image/__init__.py
+++ b/backend/modelscope_studio/components/antd/image/__init__.py
@@ -49,9 +49,11 @@ def __init__(
*,
alt: str | None = None,
fallback: str | None = None,
+ mask: bool | dict | None = None,
height: str | int | float | None = None,
placeholder: bool | str | int | float | None = None,
preview: bool | dict | None = None,
+ focus_trap: bool | None = None,
width: str | int | float | None = None,
root_class_name: str | None = None,
class_names: dict | str | None = None,
@@ -79,6 +81,8 @@ def __init__(
self.alt = alt
self.fallback = fallback
self.height = height
+ self.mask = mask
+ self.focus_trap = focus_trap
self.placeholder = placeholder
self.preview = preview
self.width = width
diff --git a/backend/modelscope_studio/components/antd/input/search/__init__.py b/backend/modelscope_studio/components/antd/input/search/__init__.py
index 15fa9f5f..1493d542 100644
--- a/backend/modelscope_studio/components/antd/input/search/__init__.py
+++ b/backend/modelscope_studio/components/antd/input/search/__init__.py
@@ -30,7 +30,7 @@ class AntdInputSearch(ModelScopeDataLayoutComponent):
# supported slots
SLOTS = [
'addonAfter', 'addonBefore', 'allowClear.clearIcon', 'prefix',
- 'suffix', 'enterButton', 'showCount.formatter'
+ 'suffix', 'enterButton', 'showCount.formatter', 'searchIcon'
]
def __init__(
diff --git a/backend/modelscope_studio/components/antd/splitter/__init__.py b/backend/modelscope_studio/components/antd/splitter/__init__.py
index 85e9ca90..ca094bbf 100644
--- a/backend/modelscope_studio/components/antd/splitter/__init__.py
+++ b/backend/modelscope_studio/components/antd/splitter/__init__.py
@@ -42,12 +42,18 @@ class AntdSplitter(ModelScopeLayoutComponent):
bind_draggerDoubleClick_event=True)),
]
+ # supported slots
+ SLOTS = ['draggerIcon', 'collapsible.icon.start', 'collapsible.icon.end']
+
def __init__(
self,
additional_props: dict | None = None,
*,
layout: Literal['horizontal', 'vertical'] | None = 'horizontal',
orientation: Literal['horizontal', 'vertical'] | None = None,
+ collapsible: dict | None = None,
+ dragger_icon: str | None = None,
+ destroy_on_hidden: bool | None = None,
vertical: bool | None = None,
lazy: bool | None = None,
root_class_name: str | None = None,
@@ -75,8 +81,11 @@ def __init__(
self.layout = layout
self.vertical = vertical
self.orientation = orientation
+ self.dragger_icon = dragger_icon
self.lazy = lazy
self.root_class_name = root_class_name
+ self.destroy_on_hidden = destroy_on_hidden
+ self.collapsible = collapsible
FRONTEND_DIR = resolve_frontend_dir("splitter")
diff --git a/backend/modelscope_studio/components/antd/splitter/panel/__init__.py b/backend/modelscope_studio/components/antd/splitter/panel/__init__.py
index 3826334e..38912368 100644
--- a/backend/modelscope_studio/components/antd/splitter/panel/__init__.py
+++ b/backend/modelscope_studio/components/antd/splitter/panel/__init__.py
@@ -25,6 +25,7 @@ def __init__(
min: int | str | None = None,
max: int | str | None = None,
size: int | str | None = None,
+ destroy_on_hidden: bool | None = None,
collapsible: bool | dict | None = None,
resizable: bool | None = None,
root_class_name: str | None = None,
@@ -62,6 +63,7 @@ def __init__(
self.min = min
self.max = max
self.size = size
+ self.destroy_on_hidden = destroy_on_hidden
self.collapsible = collapsible
self.resizable = resizable
self.root_class_name = root_class_name
diff --git a/backend/modelscope_studio/components/antd/typography/link/__init__.py b/backend/modelscope_studio/components/antd/typography/link/__init__.py
index ae958eda..6e20bea0 100644
--- a/backend/modelscope_studio/components/antd/typography/link/__init__.py
+++ b/backend/modelscope_studio/components/antd/typography/link/__init__.py
@@ -59,6 +59,7 @@ def __init__(
value: str | None = "",
additional_props: dict | None = None,
*,
+ actions: dict | None = None,
href: str | None = None,
href_target: str | None = None,
code: bool | None = None,
@@ -112,6 +113,7 @@ def __init__(
self.styles = styles
self.value = value
self.additional_props = additional_props
+ self.actions = actions
self.code = code
self.copyable = copyable
self.delete = delete
diff --git a/backend/modelscope_studio/components/antd/typography/paragraph/__init__.py b/backend/modelscope_studio/components/antd/typography/paragraph/__init__.py
index 3397067c..fa60cb69 100644
--- a/backend/modelscope_studio/components/antd/typography/paragraph/__init__.py
+++ b/backend/modelscope_studio/components/antd/typography/paragraph/__init__.py
@@ -77,6 +77,7 @@ def __init__(
value: str | None = "",
additional_props: dict | None = None,
*,
+ actions: dict | None = None,
code: bool | None = None,
copyable: bool | dict = False,
delete: bool | None = None,
@@ -126,6 +127,7 @@ def __init__(
self.styles = styles
self.value = value
self.additional_props = additional_props
+ self.actions = actions
self.code = code
self.copyable = copyable
self.delete = delete
diff --git a/backend/modelscope_studio/components/antd/typography/text/__init__.py b/backend/modelscope_studio/components/antd/typography/text/__init__.py
index 940d6f15..42d38921 100644
--- a/backend/modelscope_studio/components/antd/typography/text/__init__.py
+++ b/backend/modelscope_studio/components/antd/typography/text/__init__.py
@@ -73,6 +73,7 @@ def __init__(
value: str | None = "",
additional_props: dict | None = None,
*,
+ actions: dict | None = None,
code: bool | None = None,
copyable: bool | dict = False,
delete: bool | None = None,
@@ -124,6 +125,7 @@ def __init__(
self.styles = styles
self.value = value
self.additional_props = additional_props
+ self.actions = actions
self.code = code
self.copyable = copyable
self.delete = delete
diff --git a/backend/modelscope_studio/components/antd/typography/title/__init__.py b/backend/modelscope_studio/components/antd/typography/title/__init__.py
index 795f1a62..3acfb911 100644
--- a/backend/modelscope_studio/components/antd/typography/title/__init__.py
+++ b/backend/modelscope_studio/components/antd/typography/title/__init__.py
@@ -77,6 +77,7 @@ def __init__(
value: str | None = "",
additional_props: dict | None = None,
*,
+ actions: dict | None = None,
code: bool | None = None,
copyable: bool | dict = False,
delete: bool | None = None,
@@ -124,6 +125,7 @@ def __init__(
**kwargs)
self.class_names = class_names
self.styles = styles
+ self.actions = actions
self.value = value
self.additional_props = additional_props
self.code = code
diff --git a/config/changelog/package.json b/config/changelog/package.json
index 53391cfa..d554282f 100644
--- a/config/changelog/package.json
+++ b/config/changelog/package.json
@@ -25,7 +25,7 @@
},
"devDependencies": {
"@changesets/types": "^6.1.0",
- "@types/node": "^25.5.2",
+ "@types/node": "^25.8.0",
"tsup": "^8.5.1"
}
}
diff --git a/config/lint-config/configs/eslint/react.mjs b/config/lint-config/configs/eslint/react.mjs
index 7a4b9589..e365408f 100644
--- a/config/lint-config/configs/eslint/react.mjs
+++ b/config/lint-config/configs/eslint/react.mjs
@@ -24,7 +24,7 @@ export const react = [
},
settings: {
react: {
- version: 'detect',
+ version: '19',
},
},
rules: {
diff --git a/config/lint-config/package.json b/config/lint-config/package.json
index 43bf0376..7577dc5e 100644
--- a/config/lint-config/package.json
+++ b/config/lint-config/package.json
@@ -16,29 +16,29 @@
}
},
"dependencies": {
- "@eslint/compat": "^2.0.4",
+ "@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
- "@typescript-eslint/parser": "^8.58.1",
+ "@typescript-eslint/parser": "^8.59.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "^7.37.5",
- "eslint-plugin-react-hooks": "^7.0.1",
+ "eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
- "eslint-plugin-svelte": "^3.17.0",
- "globals": "^17.4.0",
- "postcss": "^8.5.9",
+ "eslint-plugin-svelte": "^3.17.1",
+ "globals": "^17.6.0",
+ "postcss": "^8.5.14",
"postcss-less": "^6.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^40.0.0",
"stylelint-declaration-block-no-ignored-properties": "^3.0.0",
"stylelint-order": "^8.1.1",
"stylelint-prettier": "^5.0.3",
- "svelte-eslint-parser": "^1.6.0",
- "typescript-eslint": "^8.58.1"
+ "svelte-eslint-parser": "^1.6.1",
+ "typescript-eslint": "^8.59.3"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
diff --git a/frontend/antd/cascader/cascader.tsx b/frontend/antd/cascader/cascader.tsx
index ef89a880..afbfab8b 100644
--- a/frontend/antd/cascader/cascader.tsx
+++ b/frontend/antd/cascader/cascader.tsx
@@ -33,6 +33,7 @@ export const Cascader = sveltify<
'tagRender',
'dropdownRender',
'popupRender',
+ 'showSearch.searchIcon',
'showSearch.render',
'optionRender',
]
@@ -65,7 +66,9 @@ export const Cascader = sveltify<
const popupRenderFunction = useFunction(popupRender);
const maxTagPlaceholderFunction = useFunction(maxTagPlaceholder);
const supportShowSearchConfig =
- typeof showSearch === 'object' || slots['showSearch.render'];
+ typeof showSearch === 'object' ||
+ slots['showSearch.render'] ||
+ slots['showSearch.searchIcon'];
const showSearchConfig = getConfig(showSearch);
const showSearchFilterFunction = useFunction(showSearchConfig.filter);
const showSearchRenderFunction = useFunction(showSearchConfig.render);
@@ -99,6 +102,11 @@ export const Cascader = sveltify<
supportShowSearchConfig
? {
...showSearchConfig,
+ searchIcon: slots['showSearch.searchIcon'] ? (
+
+ ) : (
+ showSearchConfig.searchIcon
+ ),
filter: showSearchFilterFunction || showSearchConfig.filter,
render: slots['showSearch.render']
? renderParamsSlot({
diff --git a/frontend/antd/date-picker/date-picker.tsx b/frontend/antd/date-picker/date-picker.tsx
index ae5e77cb..88e963b1 100644
--- a/frontend/antd/date-picker/date-picker.tsx
+++ b/frontend/antd/date-picker/date-picker.tsx
@@ -57,6 +57,7 @@ export const DatePicker = sveltify<
'renderExtraFooter',
'cellRender',
'panelRender',
+ 'tagRender',
]
>(
withItemsContextProvider(
@@ -88,6 +89,8 @@ export const DatePicker = sveltify<
const getPopupContainerFunction = useFunction(getPopupContainer);
const cellRenderFunction = useFunction(cellRender);
const panelRenderFunction = useFunction(panelRender);
+ const tagRenderFunction = useFunction(props.tagRender);
+
const validShowTime = useMemo(() => {
if (typeof showTime === 'object') {
return {
@@ -136,6 +139,11 @@ export const DatePicker = sveltify<
disabledDate={disabledDateFunction}
disabledTime={disabledTimeFunction}
getPopupContainer={getPopupContainerFunction}
+ tagRender={
+ slots.tagRender
+ ? renderParamsSlot({ slots, key: 'tagRender' })
+ : tagRenderFunction
+ }
cellRender={
slots.cellRender
? renderParamsSlot({ slots, key: 'cellRender' })
diff --git a/frontend/antd/date-picker/range-picker/date-picker.range-picker.tsx b/frontend/antd/date-picker/range-picker/date-picker.range-picker.tsx
index cda2d5fd..240d9e40 100644
--- a/frontend/antd/date-picker/range-picker/date-picker.range-picker.tsx
+++ b/frontend/antd/date-picker/range-picker/date-picker.range-picker.tsx
@@ -81,6 +81,7 @@ export const DateRangePicker = sveltify<
const getPopupContainerFunction = useFunction(getPopupContainer);
const cellRenderFunction = useFunction(cellRender);
const panelRenderFunction = useFunction(panelRender);
+
const validShowTime = useMemo(() => {
if (typeof showTime === 'object') {
return {
diff --git a/frontend/antd/input/input.tsx b/frontend/antd/input/input.tsx
index 8d7d4c9d..bc714944 100644
--- a/frontend/antd/input/input.tsx
+++ b/frontend/antd/input/input.tsx
@@ -7,6 +7,13 @@ import { omitUndefinedProps } from '@utils/omitUndefinedProps';
import { renderParamsSlot } from '@utils/renderParamsSlot';
import { type GetProps, Input as AInput } from 'antd';
+function getConfig(value: T): Partial> {
+ if (typeof value === 'object' && value !== null) {
+ return value as any;
+ }
+ return {} as any;
+}
+
export const Input = sveltify<
GetProps & {
onValueChange: (value: string) => void;
@@ -36,6 +43,7 @@ export const Input = sveltify<
const showCountFunction = useFunction(
typeof showCount === 'object' ? showCount.formatter : undefined
);
+ const allowClearConfig = getConfig(props.allowClear);
const [value, setValue] = useValueChange({
onValueChange,
value: props.value,
@@ -99,6 +107,7 @@ export const Input = sveltify<
allowClear={
slots['allowClear.clearIcon']
? {
+ ...allowClearConfig,
clearIcon: ,
}
: props.allowClear
diff --git a/frontend/antd/input/search/input.search.tsx b/frontend/antd/input/search/input.search.tsx
index 57db2de8..3e262c31 100644
--- a/frontend/antd/input/search/input.search.tsx
+++ b/frontend/antd/input/search/input.search.tsx
@@ -19,6 +19,7 @@ export const InputSearch = sveltify<
'suffix',
'enterButton',
'showCount.formatter',
+ 'searchIcon',
]
>(
({
@@ -48,6 +49,13 @@ export const InputSearch = sveltify<
{...props}
value={value}
ref={elRef}
+ searchIcon={
+ slots.searchIcon ? (
+
+ ) : (
+ props.searchIcon
+ )
+ }
onChange={(e) => {
onChange?.(e);
setValue(e.target.value);
diff --git a/frontend/antd/input/textarea/input.textarea.tsx b/frontend/antd/input/textarea/input.textarea.tsx
index da06f54c..51840f37 100644
--- a/frontend/antd/input/textarea/input.textarea.tsx
+++ b/frontend/antd/input/textarea/input.textarea.tsx
@@ -7,6 +7,12 @@ import { omitUndefinedProps } from '@utils/omitUndefinedProps';
import { renderParamsSlot } from '@utils/renderParamsSlot';
import { type GetProps, Input as AInput } from 'antd';
+function getConfig(value: T): Partial> {
+ if (typeof value === 'object' && value !== null) {
+ return value as any;
+ }
+ return {} as any;
+}
export const InputTextarea = sveltify<
GetProps & {
onValueChange: (value: string) => void;
@@ -29,6 +35,7 @@ export const InputTextarea = sveltify<
const showCountFunction = useFunction(
typeof showCount === 'object' ? showCount.formatter : undefined
);
+ const allowClearConfig = getConfig(props.allowClear);
const [value, setValue] = useValueChange({
onValueChange,
value: props.value,
@@ -44,6 +51,14 @@ export const InputTextarea = sveltify<
onChange?.(e);
setValue(e.target.value);
}}
+ allowClear={
+ slots['allowClear.clearIcon']
+ ? {
+ ...allowClearConfig,
+ clearIcon: ,
+ }
+ : props.allowClear
+ }
showCount={
slots['showCount.formatter']
? {
@@ -74,13 +89,6 @@ export const InputTextarea = sveltify<
countShowFunction,
]
)}
- allowClear={
- slots['allowClear.clearIcon']
- ? {
- clearIcon: ,
- }
- : props.allowClear
- }
/>
>
);
diff --git a/frontend/antd/splitter/splitter.tsx b/frontend/antd/splitter/splitter.tsx
index fcfcf9f9..58dccf93 100644
--- a/frontend/antd/splitter/splitter.tsx
+++ b/frontend/antd/splitter/splitter.tsx
@@ -4,8 +4,11 @@ import { type GetProps, Splitter as ASplitter } from 'antd';
import { useItems, withItemsContextProvider } from './context';
-export const Splitter = sveltify>(
- withItemsContextProvider(['default'], ({ children, ...props }) => {
+export const Splitter = sveltify<
+ GetProps,
+ ['draggerIcon', 'collapsible.icon.start', 'collapsible.icon.end']
+>(
+ withItemsContextProvider(['default'], ({ children, slots, ...props }) => {
const {
items: { default: panels },
} = useItems<['default']>();
@@ -13,7 +16,37 @@ export const Splitter = sveltify>(
<>
{children}
{panels.length ? (
-
+
+ ) : (
+ props.collapsible?.icon?.start
+ ),
+ end: slots['collapsible.icon.end'] ? (
+
+ ) : (
+ props.collapsible?.icon?.end
+ ),
+ }
+ : props.collapsible?.icon,
+ }}
+ draggerIcon={
+ slots.draggerIcon ? (
+
+ ) : (
+ props.draggerIcon
+ )
+ }
+ >
{panels?.map((item, index) => {
if (!item) {
return null;
diff --git a/frontend/antd/typography/typography.base.tsx b/frontend/antd/typography/typography.base.tsx
index f501f176..f6d03693 100644
--- a/frontend/antd/typography/typography.base.tsx
+++ b/frontend/antd/typography/typography.base.tsx
@@ -17,13 +17,16 @@ function getConfig(value: T): Partial> {
}
export const TypographyBase = sveltify<
- GetProps &
- GetProps &
- GetProps &
- GetProps & {
- component: 'title' | 'paragraph' | 'text' | 'link';
- value?: string;
- },
+ Omit<
+ GetProps &
+ GetProps &
+ GetProps &
+ GetProps,
+ 'component'
+ > & {
+ component: 'title' | 'paragraph' | 'text' | 'link';
+ value?: string;
+ },
[
// list
'copyable.icon',
diff --git a/frontend/antdx/bubble/list/utils.tsx b/frontend/antdx/bubble/list/utils.tsx
index 0c5e54fc..10f542cd 100644
--- a/frontend/antdx/bubble/list/utils.tsx
+++ b/frontend/antdx/bubble/list/utils.tsx
@@ -43,15 +43,15 @@ function patchBubbleSlots(role: RoleProps, params: any[]) {
export interface UseRoleOptions {
role?: RoleType;
preProcess?: (bubbleProps: T, index: number) => RoleProps;
- defaultRolePostProcess?: (bubbleProps: T, index: number) => RoleProps | void;
+ postProcess?: (bubbleProps: T, index: number) => RoleProps | void;
}
export function useRole(
- { role: roleProp, preProcess, defaultRolePostProcess }: UseRoleOptions,
+ { role: roleProp, preProcess, postProcess }: UseRoleOptions,
deps: React.DependencyList = []
) {
const memoizedPreProcess = useMemoizedFn(preProcess);
- const memoizedDefaultRolePostProcess = useMemoizedFn(defaultRolePostProcess);
+ const memoizedPostProcess = useMemoizedFn(postProcess);
const {
items: { role: roleItems },
@@ -103,7 +103,7 @@ export function useRole(
[preProcessResult, index]
);
}
- const postProcessResult = memoizedDefaultRolePostProcess(
+ const postProcessResult = memoizedPostProcess(
preProcessResult as T,
index
);
@@ -122,10 +122,11 @@ export function useRole(
},
}
);
+ // eslint-disable-next-line react-hooks/use-memo
}, [
role,
memoizedPreProcess,
- memoizedDefaultRolePostProcess,
+ memoizedPostProcess,
// eslint-disable-next-line react-hooks/exhaustive-deps
...deps,
]);
diff --git a/frontend/base/auto-loading/useLoadingStatus.ts b/frontend/base/auto-loading/useLoadingStatus.ts
index 9fbcaf1c..bffce593 100644
--- a/frontend/base/auto-loading/useLoadingStatus.ts
+++ b/frontend/base/auto-loading/useLoadingStatus.ts
@@ -1,32 +1,28 @@
-import { useEffect, useRef, useState } from 'react';
+import { useEffect, useMemo, useRef, useState } from 'react';
import type { ILoadingStatus } from '@gradio/statustracker';
import { useMemoizedFn } from '@utils/hooks/useMemoizedFn';
export function useLoadingStatus(loadingStatus?: ILoadingStatus | null) {
- const [eta, setEta] = useState(loadingStatus?.eta ?? null);
const { status, progress, queue_position, message, queue_size } =
loadingStatus || {};
const [timerStart, setTimerStart] = useState(0);
const [timerDiff, setTimerDiff] = useState(0);
- const [oldEta, setOldEta] = useState(null);
- const [formattedEta, setFormattedEta] = useState(null);
- const [formattedTimer, setFormattedTimer] = useState(null);
-
const timerRef = useRef(false);
+ const runRef = useRef<() => void>(null!);
+ const oldEtaRef = useRef(null);
const run = useMemoizedFn(() => {
requestAnimationFrame(() => {
setTimerDiff((performance.now() - timerStart) / 1000);
if (timerRef.current) {
- run();
+ runRef.current();
}
});
});
+ runRef.current = run;
const startTimer = useMemoizedFn(() => {
- setEta(null);
- setOldEta(null);
- setFormattedEta(null);
+ oldEtaRef.current = null;
setTimerStart(performance.now());
setTimerDiff(0);
timerRef.current = true;
@@ -35,9 +31,7 @@ export function useLoadingStatus(loadingStatus?: ILoadingStatus | null) {
const stopTimer = useMemoizedFn(() => {
setTimerDiff(0);
- setEta(null);
- setOldEta(null);
- setFormattedEta(null);
+ oldEtaRef.current = null;
timerRef.current = false;
});
@@ -49,27 +43,20 @@ export function useLoadingStatus(loadingStatus?: ILoadingStatus | null) {
}
}, [startTimer, status, stopTimer]);
- useEffect(() => {
- setEta(loadingStatus?.eta ?? null);
- }, [loadingStatus?.eta]);
+ const currentEta = loadingStatus?.eta ?? null;
+ if (currentEta !== null) {
+ oldEtaRef.current = currentEta;
+ }
+ const eta = currentEta ?? oldEtaRef.current;
- useEffect(() => {
- let _eta = eta;
- if (_eta === null) {
- _eta = oldEta;
- setEta(_eta);
+ const formattedEta = useMemo(() => {
+ if (eta !== null) {
+ return (timerDiff + eta).toFixed(1);
}
- if (_eta !== null && oldEta !== _eta) {
- setFormattedEta(
- ((performance.now() - timerStart) / 1000 + _eta).toFixed(1)
- );
- setOldEta(_eta);
- }
- }, [eta, oldEta, timerStart]);
+ return null;
+ }, [eta, timerDiff]);
- useEffect(() => {
- setFormattedTimer(timerDiff.toFixed(1));
- }, [timerDiff]);
+ const formattedTimer = useMemo(() => timerDiff.toFixed(1), [timerDiff]);
useEffect(() => {
return () => {
diff --git a/frontend/globals/components/markdown/index.tsx b/frontend/globals/components/markdown/index.tsx
index 915d48c9..c8efab8b 100644
--- a/frontend/globals/components/markdown/index.tsx
+++ b/frontend/globals/components/markdown/index.tsx
@@ -77,7 +77,6 @@ export const Markdown: React.FC = ({
allowTags: allow_tags,
...props
}) => {
- const [markdown, setMarkdown] = useState('');
const [copied, setCopied] = useState(false);
const copyTimerRef = useRef | null>(null);
const ref = useRef(null);
@@ -204,18 +203,17 @@ export const Markdown: React.FC = ({
);
};
- useEffect(() => {
- onChangeMemoized();
- }, [markdown, onChangeMemoized]);
-
- useEffect(() => {
+ const markdown = useMemo(() => {
if (message && message.trim()) {
- setMarkdown(process_message(message));
- } else {
- setMarkdown('');
+ return process_message(message);
}
+ return '';
}, [message, process_message]);
+ useEffect(() => {
+ onChangeMemoized();
+ }, [markdown, onChangeMemoized]);
+
useEffect(() => {
markdown &&
message &&
diff --git a/frontend/package.json b/frontend/package.json
index 52bd8a6a..2182e025 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -7,36 +7,36 @@
"type": "module",
"dependencies": {
"@ant-design/cssinjs": "^2.1.2",
- "@ant-design/icons": "^6.1.1",
- "@ant-design/x": "^2.5.0",
- "@babel/standalone": "^7.29.2",
+ "@ant-design/icons": "^6.2.3",
+ "@ant-design/x": "^2.7.0",
+ "@babel/standalone": "^7.29.4",
"@gradio/client": "2.1.0",
"@gradio/preview": "0.15.2",
"@gradio/statustracker": "^0.13.1",
"@gradio/utils": "0.11.3",
"@monaco-editor/react": "^4.7.0",
"amuchina": "^1.0.12",
- "antd": "^6.3.5",
+ "antd": "^6.4.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.20",
"dequal": "^2.0.2",
"github-slugger": "^2.0.0",
- "immer": "^11.1.4",
- "katex": "^0.16.45",
+ "immer": "^11.1.8",
+ "katex": "^0.16.47",
"lodash-es": "^4.18.1",
- "marked": "^18.0.0",
+ "marked": "^18.0.3",
"marked-gfm-heading-id": "^4.1.4",
"marked-highlight": "^2.2.4",
- "mermaid": "^11.14.0",
+ "mermaid": "^11.15.0",
"monaco-editor": "^0.55.1",
"path-browserify-esm": "^1.0.6",
"prismjs": "^1.30.0",
- "react": "^19.2.4",
- "react-dom": "^19.2.4",
+ "react": "^19.2.6",
+ "react-dom": "^19.2.6",
"react-syntax-highlighter": "^16.1.1",
- "svelte": "5.55.2",
+ "svelte": "5.55.7",
"svelte-i18n": "^4.0.1",
- "wavesurfer.js": "^7.12.5"
+ "wavesurfer.js": "^7.12.7"
},
"devDependencies": {
"@babel/core": "^7.29.0",
@@ -49,9 +49,9 @@
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/sanitize-html": "^2.16.1",
- "@vitejs/plugin-react-swc": "^4.3.0",
+ "@vitejs/plugin-react-swc": "^4.3.1",
"less": "^4.6.4",
- "typescript-json-schema": "^0.67.1",
+ "typescript-json-schema": "^0.67.3",
"vite": "^7.3.1"
},
"main_changeset": true
diff --git a/frontend/pro/chatbot/chatbot.tsx b/frontend/pro/chatbot/chatbot.tsx
index 42de442c..5c8e4128 100644
--- a/frontend/pro/chatbot/chatbot.tsx
+++ b/frontend/pro/chatbot/chatbot.tsx
@@ -302,7 +302,7 @@ export const Chatbot = sveltify<{
},
};
},
- defaultRolePostProcess(bubbleProps, index) {
+ postProcess(bubbleProps, index) {
const isUserRole = bubbleProps.role === 'user';
switch (bubbleProps.role) {
case 'chatbot-internal-welcome':
diff --git a/frontend/pro/chatbot/hooks/useScroll.ts b/frontend/pro/chatbot/hooks/useScroll.ts
index 47d32428..162bc747 100644
--- a/frontend/pro/chatbot/hooks/useScroll.ts
+++ b/frontend/pro/chatbot/hooks/useScroll.ts
@@ -32,8 +32,6 @@ export function useScroll(options: useScrollOptions) {
behavior,
});
});
-
- setShowScrollButton(false);
}
);
const isAtBottom = useMemoizedFn((offset: number = 100) => {
diff --git a/frontend/pro/chatbot/messages/tool.tsx b/frontend/pro/chatbot/messages/tool.tsx
index e7f430cb..5cfd46a4 100644
--- a/frontend/pro/chatbot/messages/tool.tsx
+++ b/frontend/pro/chatbot/messages/tool.tsx
@@ -1,5 +1,5 @@
import type React from 'react';
-import { useEffect, useState } from 'react';
+import { useRef, useState } from 'react';
import { Markdown } from '@globals/components';
import { Collapse } from 'antd';
@@ -13,9 +13,12 @@ export interface ToolMessageProps {
export const ToolMessage: React.FC = ({ value, options }) => {
const { renderMarkdown, status, title, ...markdownProps } = options;
const [collapsed, setCollapsed] = useState(() => status !== 'done');
- useEffect(() => {
+ const prevStatusRef = useRef(status);
+
+ if (prevStatusRef.current !== status) {
+ prevStatusRef.current = status;
setCollapsed(status !== 'done');
- }, [status]);
+ }
return (
<>
diff --git a/package.json b/package.json
index d3e1f531..2fa9da8c 100644
--- a/package.json
+++ b/package.json
@@ -24,30 +24,30 @@
"version": "pnpm -F '@modelscope-studio/changelog' build && changeset version && pnpm run fix-changelog"
},
"devDependencies": {
- "@actions/core": "^3.0.0",
+ "@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
- "@actions/github": "^9.0.0",
- "@changesets/cli": "^2.30.0",
- "@commitlint/cli": "^20.5.0",
- "@commitlint/config-conventional": "^20.5.0",
+ "@actions/github": "^9.1.1",
+ "@changesets/cli": "^2.31.0",
+ "@commitlint/cli": "^21.0.1",
+ "@commitlint/config-conventional": "^21.0.1",
"@manypkg/get-packages": "^3.1.0",
"@modelscope-studio/changelog": "workspace:*",
"@modelscope-studio/lint-config": "workspace:*",
- "@types/node": "^25.5.2",
- "eslint": "^9.39.3",
+ "@types/node": "^25.8.0",
+ "eslint": "^10.4.0",
"husky": "^9.1.7",
- "lint-staged": "^16.4.0",
+ "lint-staged": "^17.0.5",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
- "prettier": "^3.8.1",
+ "prettier": "^3.8.3",
"prettier-plugin-packagejson": "^3.0.2",
- "prettier-plugin-svelte": "^3.5.1",
+ "prettier-plugin-svelte": "^3.5.2",
"rimraf": "^6.1.3",
- "stylelint": "^17.6.0",
- "svelte": "5.55.2",
- "svelte-check": "^4.4.6",
+ "stylelint": "^17.11.1",
+ "svelte": "5.55.7",
+ "svelte-check": "^4.4.8",
"tslib": "^2.8.1",
- "tsx": "^4.21.0",
+ "tsx": "^4.22.1",
"typescript": "^5.9.3"
},
"main_changeset": true
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8152b75e..cf4dfe88 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,23 +9,23 @@ importers:
.:
devDependencies:
'@actions/core':
- specifier: ^3.0.0
- version: 3.0.0
+ specifier: ^3.0.1
+ version: 3.0.1
'@actions/exec':
specifier: ^3.0.0
version: 3.0.0
'@actions/github':
- specifier: ^9.0.0
- version: 9.0.0
+ specifier: ^9.1.1
+ version: 9.1.1
'@changesets/cli':
- specifier: ^2.30.0
- version: 2.30.0(@types/node@25.5.2)
+ specifier: ^2.31.0
+ version: 2.31.0(@types/node@25.8.0)
'@commitlint/cli':
- specifier: ^20.5.0
- version: 20.5.0(@types/node@25.5.2)(conventional-commits-parser@6.3.0)(typescript@5.9.3)
+ specifier: ^21.0.1
+ version: 21.0.1(@types/node@25.8.0)(conventional-commits-parser@6.4.0)(typescript@5.9.3)
'@commitlint/config-conventional':
- specifier: ^20.5.0
- version: 20.5.0
+ specifier: ^21.0.1
+ version: 21.0.1
'@manypkg/get-packages':
specifier: ^3.1.0
version: 3.1.0
@@ -36,17 +36,17 @@ importers:
specifier: workspace:*
version: link:config/lint-config
'@types/node':
- specifier: ^25.5.2
- version: 25.5.2
+ specifier: ^25.8.0
+ version: 25.8.0
eslint:
- specifier: ^9.39.3
- version: 9.39.4(jiti@2.6.1)
+ specifier: ^10.4.0
+ version: 10.4.0(jiti@2.6.1)
husky:
specifier: ^9.1.7
version: 9.1.7
lint-staged:
- specifier: ^16.4.0
- version: 16.4.0
+ specifier: ^17.0.5
+ version: 17.0.5
node-fetch:
specifier: ^3.3.2
version: 3.3.2
@@ -54,32 +54,32 @@ importers:
specifier: ^4.1.5
version: 4.1.5
prettier:
- specifier: ^3.8.1
- version: 3.8.1
+ specifier: ^3.8.3
+ version: 3.8.3
prettier-plugin-packagejson:
specifier: ^3.0.2
- version: 3.0.2(prettier@3.8.1)
+ version: 3.0.2(prettier@3.8.3)
prettier-plugin-svelte:
- specifier: ^3.5.1
- version: 3.5.1(prettier@3.8.1)(svelte@5.55.2)
+ specifier: ^3.5.2
+ version: 3.5.2(prettier@3.8.3)(svelte@5.55.7(@typescript-eslint/types@8.59.3))
rimraf:
specifier: ^6.1.3
version: 6.1.3
stylelint:
- specifier: ^17.6.0
- version: 17.6.0(typescript@5.9.3)
+ specifier: ^17.11.1
+ version: 17.11.1(typescript@5.9.3)
svelte:
- specifier: 5.55.2
- version: 5.55.2
+ specifier: 5.55.7
+ version: 5.55.7(@typescript-eslint/types@8.59.3)
svelte-check:
- specifier: ^4.4.6
- version: 4.4.6(picomatch@4.0.4)(svelte@5.55.2)(typescript@5.9.3)
+ specifier: ^4.4.8
+ version: 4.4.8(picomatch@4.0.4)(svelte@5.55.7(@typescript-eslint/types@8.59.3))(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
tsx:
- specifier: ^4.21.0
- version: 4.21.0
+ specifier: ^4.22.1
+ version: 4.22.1
typescript:
specifier: ^5.9.3
version: 5.9.3
@@ -100,126 +100,126 @@ importers:
specifier: ^6.1.0
version: 6.1.0
'@types/node':
- specifier: ^25.5.2
- version: 25.5.2
+ specifier: ^25.8.0
+ version: 25.8.0
tsup:
specifier: ^8.5.1
- version: 8.5.1(@microsoft/api-extractor@7.52.10(@types/node@25.5.2))(@swc/core@1.15.18)(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
+ version: 8.5.1(@microsoft/api-extractor@7.52.10(@types/node@25.8.0))(@swc/core@1.15.33)(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(typescript@5.9.3)(yaml@2.9.0)
config/lint-config:
dependencies:
'@eslint/compat':
- specifier: ^2.0.4
- version: 2.0.4(eslint@9.39.4(jiti@2.6.1))
+ specifier: ^2.1.0
+ version: 2.1.0(eslint@10.4.0(jiti@2.6.1))
'@eslint/js':
specifier: ^10.0.1
- version: 10.0.1(eslint@9.39.4(jiti@2.6.1))
+ version: 10.0.1(eslint@10.4.0(jiti@2.6.1))
'@typescript-eslint/parser':
- specifier: ^8.58.1
- version: 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ specifier: ^8.59.3
+ version: 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
eslint-config-prettier:
specifier: ^10.1.8
- version: 10.1.8(eslint@9.39.4(jiti@2.6.1))
+ version: 10.1.8(eslint@10.4.0(jiti@2.6.1))
eslint-import-resolver-typescript:
specifier: ^4.4.4
- version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.6.1))
+ version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-import:
specifier: ^2.32.0
- version: 2.32.0(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.6.1))
+ version: 2.32.0(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-jsx-a11y:
specifier: ^6.10.2
- version: 6.10.2(eslint@9.39.4(jiti@2.6.1))
+ version: 6.10.2(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-prettier:
specifier: 5.5.5
- version: 5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1))(prettier@3.8.1)
+ version: 5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@10.4.0(jiti@2.6.1)))(eslint@10.4.0(jiti@2.6.1))(prettier@3.8.3)
eslint-plugin-react:
specifier: ^7.37.5
- version: 7.37.5(eslint@9.39.4(jiti@2.6.1))
+ version: 7.37.5(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-react-hooks:
- specifier: ^7.0.1
- version: 7.0.1(eslint@9.39.4(jiti@2.6.1))
+ specifier: ^7.1.1
+ version: 7.1.1(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-react-refresh:
specifier: ^0.5.2
- version: 0.5.2(eslint@9.39.4(jiti@2.6.1))
+ version: 0.5.2(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-simple-import-sort:
specifier: ^13.0.0
- version: 13.0.0(eslint@9.39.4(jiti@2.6.1))
+ version: 13.0.0(eslint@10.4.0(jiti@2.6.1))
eslint-plugin-svelte:
- specifier: ^3.17.0
- version: 3.17.0(eslint@9.39.4(jiti@2.6.1))(svelte@5.55.2)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.5.2)(typescript@5.9.3))
+ specifier: ^3.17.1
+ version: 3.17.1(eslint@10.4.0(jiti@2.6.1))(svelte@5.55.7(@typescript-eslint/types@8.59.3))(ts-node@10.9.2(@swc/core@1.15.33)(@types/node@25.8.0)(typescript@5.9.3))
globals:
- specifier: ^17.4.0
- version: 17.4.0
+ specifier: ^17.6.0
+ version: 17.6.0
postcss:
- specifier: ^8.5.9
- version: 8.5.9
+ specifier: ^8.5.14
+ version: 8.5.14
postcss-less:
specifier: ^6.0.0
- version: 6.0.0(postcss@8.5.9)
+ version: 6.0.0(postcss@8.5.14)
stylelint-config-rational-order:
specifier: ^0.1.2
version: 0.1.2
stylelint-config-standard:
specifier: ^40.0.0
- version: 40.0.0(stylelint@17.6.0(typescript@5.9.3))
+ version: 40.0.0(stylelint@17.11.1(typescript@5.9.3))
stylelint-declaration-block-no-ignored-properties:
specifier: ^3.0.0
- version: 3.0.0(stylelint@17.6.0(typescript@5.9.3))
+ version: 3.0.0(stylelint@17.11.1(typescript@5.9.3))
stylelint-order:
specifier: ^8.1.1
- version: 8.1.1(stylelint@17.6.0(typescript@5.9.3))
+ version: 8.1.1(stylelint@17.11.1(typescript@5.9.3))
stylelint-prettier:
specifier: ^5.0.3
- version: 5.0.3(prettier@3.8.1)(stylelint@17.6.0(typescript@5.9.3))
+ version: 5.0.3(prettier@3.8.3)(stylelint@17.11.1(typescript@5.9.3))
svelte-eslint-parser:
- specifier: ^1.6.0
- version: 1.6.0(svelte@5.55.2)
+ specifier: ^1.6.1
+ version: 1.6.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
typescript-eslint:
- specifier: ^8.58.1
- version: 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ specifier: ^8.59.3
+ version: 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
devDependencies:
'@types/eslint':
specifier: ^9.6.1
version: 9.6.1
'@types/eslint__js':
specifier: ^9.14.0
- version: 9.14.0(eslint@9.39.4(jiti@2.6.1))
+ version: 9.14.0(eslint@10.4.0(jiti@2.6.1))
frontend:
dependencies:
'@ant-design/cssinjs':
specifier: ^2.1.2
- version: 2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@ant-design/icons':
- specifier: ^6.1.1
- version: 6.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^6.2.3
+ version: 6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@ant-design/x':
- specifier: ^2.5.0
- version: 2.5.0(antd@6.3.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^2.7.0
+ version: 2.7.0(antd@6.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@babel/standalone':
- specifier: ^7.29.2
- version: 7.29.2
+ specifier: ^7.29.4
+ version: 7.29.4
'@gradio/client':
specifier: 2.1.0
version: 2.1.0
'@gradio/preview':
specifier: 0.15.2
- version: 0.15.2(@babel/core@7.29.0)(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2))(postcss@8.5.9)(rollup@4.59.0)(svelte@5.55.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ version: 0.15.2(@babel/core@7.29.0)(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0))(postcss@8.5.14)(rollup@4.59.0)(svelte@5.55.7(@typescript-eslint/types@8.59.3))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
'@gradio/statustracker':
specifier: ^0.13.1
- version: 0.13.1(svelte@5.55.2)
+ version: 0.13.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
'@gradio/utils':
specifier: 0.11.3
- version: 0.11.3(svelte@5.55.2)
+ version: 0.11.3(svelte@5.55.7(@typescript-eslint/types@8.59.3))
'@monaco-editor/react':
specifier: ^4.7.0
- version: 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
amuchina:
specifier: ^1.0.12
version: 1.0.12
antd:
- specifier: ^6.3.5
- version: 6.3.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^6.4.2
+ version: 6.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
classnames:
specifier: ^2.5.1
version: 2.5.1
@@ -233,26 +233,26 @@ importers:
specifier: ^2.0.0
version: 2.0.0
immer:
- specifier: ^11.1.4
- version: 11.1.4
+ specifier: ^11.1.8
+ version: 11.1.8
katex:
- specifier: ^0.16.45
- version: 0.16.45
+ specifier: ^0.16.47
+ version: 0.16.47
lodash-es:
specifier: ^4.18.1
version: 4.18.1
marked:
- specifier: ^18.0.0
- version: 18.0.0
+ specifier: ^18.0.3
+ version: 18.0.3
marked-gfm-heading-id:
specifier: ^4.1.4
- version: 4.1.4(marked@18.0.0)
+ version: 4.1.4(marked@18.0.3)
marked-highlight:
specifier: ^2.2.4
- version: 2.2.4(marked@18.0.0)
+ version: 2.2.4(marked@18.0.3)
mermaid:
- specifier: ^11.14.0
- version: 11.14.0
+ specifier: ^11.15.0
+ version: 11.15.0
monaco-editor:
specifier: ^0.55.1
version: 0.55.1
@@ -263,23 +263,23 @@ importers:
specifier: ^1.30.0
version: 1.30.0
react:
- specifier: ^19.2.4
- version: 19.2.4
+ specifier: ^19.2.6
+ version: 19.2.6
react-dom:
- specifier: ^19.2.4
- version: 19.2.4(react@19.2.4)
+ specifier: ^19.2.6
+ version: 19.2.6(react@19.2.6)
react-syntax-highlighter:
specifier: ^16.1.1
- version: 16.1.1(react@19.2.4)
+ version: 16.1.1(react@19.2.6)
svelte:
- specifier: 5.55.2
- version: 5.55.2
+ specifier: 5.55.7
+ version: 5.55.7(@typescript-eslint/types@8.59.3)
svelte-i18n:
specifier: ^4.0.1
- version: 4.0.1(svelte@5.55.2)
+ version: 4.0.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
wavesurfer.js:
- specifier: ^7.12.5
- version: 7.12.5
+ specifier: ^7.12.7
+ version: 7.12.7
devDependencies:
'@babel/core':
specifier: ^7.29.0
@@ -312,17 +312,17 @@ importers:
specifier: ^2.16.1
version: 2.16.1
'@vitejs/plugin-react-swc':
- specifier: ^4.3.0
- version: 4.3.0(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ specifier: ^4.3.1
+ version: 4.3.1(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))
less:
specifier: ^4.6.4
version: 4.6.4
typescript-json-schema:
- specifier: ^0.67.1
- version: 0.67.1(@swc/core@1.15.18)
+ specifier: ^0.67.3
+ version: 0.67.3(@swc/core@1.15.33)
vite:
specifier: ^7.3.1
- version: 7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ version: 7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
frontend/antd: {}
@@ -334,20 +334,20 @@ importers:
packages:
- '@actions/core@3.0.0':
- resolution: {integrity: sha512-zYt6cz+ivnTmiT/ksRVriMBOiuoUpDCJJlZ5KPl2/FRdvwU3f7MPh9qftvbkXJThragzUZieit2nyHUyw53Seg==}
+ '@actions/core@3.0.1':
+ resolution: {integrity: sha512-a6d/Nwahm9fliVGRhdhofo40HjHQasUPusmc7vBfyky+7Z+P2A1J68zyFVaNcEclc/Se+eO595oAr5nwEIoIUA==}
'@actions/exec@3.0.0':
resolution: {integrity: sha512-6xH/puSoNBXb72VPlZVm7vQ+svQpFyA96qdDBvhB8eNZOE8LtPf9L4oAsfzK/crCL8YZ+19fKYVnM63Sl+Xzlw==}
- '@actions/github@9.0.0':
- resolution: {integrity: sha512-yJ0RoswsAaKcvkmpCE4XxBRiy/whH2SdTBHWzs0gi4wkqTDhXMChjSdqBz/F4AeiDlP28rQqL33iHb+kjAMX6w==}
+ '@actions/github@9.1.1':
+ resolution: {integrity: sha512-tL5JbYOBZHc0ngEnCsaDcryUizIUIlQyIMwy1Wkx93H5HzbBJ7TbiPx2PnFjBwZW0Vh05JmfFZhecE6gglYegA==}
'@actions/http-client@3.0.2':
resolution: {integrity: sha512-JP38FYYpyqvUsz+Igqlc/JG6YO9PaKuvqjM3iGvaLqFnJ7TFmcLyy2IDrY0bI0qCQug8E9K+elv5ZNfw62ZJzA==}
- '@actions/http-client@4.0.0':
- resolution: {integrity: sha512-QuwPsgVMsD6qaPD57GLZi9sqzAZCtiJT8kVBCDpLtxhL5MydQ4gS+DrejtZZPdIYyB1e95uCK9Luyds7ybHI3g==}
+ '@actions/http-client@4.0.1':
+ resolution: {integrity: sha512-+Nvd1ImaOZBSoPbsUtEhv+1z99H12xzncCkz0a3RuehINE81FZSe2QTj3uvAPTcJX/SCzUQHQ0D1GrPMbrPitg==}
'@actions/io@3.0.2':
resolution: {integrity: sha512-nRBchcMM+QK1pdjO7/idu86rbJI5YHUKCvKs0KxnSYbVe3F51UfGxuZX4Qy/fWlp6l7gWFwIkrOzN+oUK03kfw==}
@@ -377,8 +377,8 @@ packages:
'@ant-design/icons-svg@4.4.2':
resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==}
- '@ant-design/icons@6.1.1':
- resolution: {integrity: sha512-AMT4N2y++TZETNHiM77fs4a0uPVCJGuL5MTonk13Pvv7UN7sID1cNEZOc1qNqx6zLKAOilTEFAdAoAFKa0U//Q==}
+ '@ant-design/icons@6.2.3':
+ resolution: {integrity: sha512-Pl3aoAtxQeKryYnt6VvDJtOxMOtA8wrRSACe/pTjOAIG3fdHrWm6Ivb4ku9tsFjYroSXBKirvuxG4QkwBXD9gg==}
engines: {node: '>=8'}
peerDependencies:
react: '>=16.0.0'
@@ -390,8 +390,8 @@ packages:
react: ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- '@ant-design/x@2.5.0':
- resolution: {integrity: sha512-B4FGlYz++MHelu5+PHbdKCXASAz7n+W8bzpIDzFbK45Dx9mL6uR3jOpCN2UcuWE0w2hQ8wtuKbRb/AfGS+KNeA==}
+ '@ant-design/x@2.7.0':
+ resolution: {integrity: sha512-p5OtxQ9elbmeFRllGt1yj5wi6VHe41PIAmwrBU/OlaYydru5qIYsJzCS3DPRhkWkVdErU5oZwU74Z2oce2F5Uw==}
peerDependencies:
antd: ^6.1.1
react: '>=18.0.0'
@@ -400,42 +400,22 @@ packages:
'@antfu/install-pkg@1.1.0':
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
- '@babel/code-frame@7.27.1':
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.29.0':
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.28.5':
- resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.29.0':
resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.28.5':
- resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.29.0':
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.5':
- resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.29.1':
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.2':
- resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-compilation-targets@7.28.6':
resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
@@ -444,20 +424,10 @@ packages:
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.27.1':
- resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.28.6':
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.28.3':
- resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-module-transforms@7.28.6':
resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
engines: {node: '>=6.9.0'}
@@ -488,10 +458,6 @@ packages:
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.28.4':
- resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.28.6':
resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
engines: {node: '>=6.9.0'}
@@ -506,13 +472,13 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.28.5':
- resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
+ '@babel/parser@7.29.0':
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.29.0':
- resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
+ '@babel/parser@7.29.3':
+ resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -524,22 +490,14 @@ packages:
resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
engines: {node: '>=6.9.0'}
- '@babel/standalone@7.29.2':
- resolution: {integrity: sha512-VSuvywmVRS8efooKrvJzs6BlVSxRvAdLeGrAKUrWoBx1fFBSeE/oBpUZCQ5BcprLyXy04W8skzz7JT8GqlNRJg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.27.2':
- resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
+ '@babel/standalone@7.29.4':
+ resolution: {integrity: sha512-QuPlodN3HBcX/HcKRz0fkpr8hmqhY+OKwX89h/vBVKuSat5ohvZw4XGNwfF1LtwScmp5ILBAO7puXwJDcMEtJQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.28.6':
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.5':
- resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.29.0':
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
engines: {node: '>=6.9.0'}
@@ -552,10 +510,6 @@ packages:
resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.5':
- resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
- engines: {node: '>=6.9.0'}
-
'@babel/types@7.29.0':
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
@@ -563,39 +517,39 @@ packages:
'@braintree/sanitize-url@7.1.2':
resolution: {integrity: sha512-jigsZK+sMF/cuiB7sERuo9V7N9jx+dhmHHnQyDSVdpZwVutaBu7WvNYqMDLSgFgfB30n452TP3vjDAvFC973mA==}
- '@cacheable/memory@2.0.8':
- resolution: {integrity: sha512-FvEb29x5wVwu/Kf93IWwsOOEuhHh6dYCJF3vcKLzXc0KXIW181AOzv6ceT4ZpBHDvAfG60eqb+ekmrnLHIy+jw==}
+ '@cacheable/memory@2.0.9':
+ resolution: {integrity: sha512-HdMx6DoGywB30vacDbBsITbIX4pgFqj1zsrV58jZBUw3klzkNoXhj7qOqAgledhxG7YZI5rBSJg7Zp8/VG0DuA==}
'@cacheable/utils@2.4.1':
resolution: {integrity: sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==}
- '@changesets/apply-release-plan@7.1.0':
- resolution: {integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ==}
+ '@changesets/apply-release-plan@7.1.1':
+ resolution: {integrity: sha512-9qPCm/rLx/xoOFXIHGB229+4GOL76S4MC+7tyOuTsR6+1jYlfFDQORdvwR5hDA6y4FL2BPt3qpbcQIS+dW85LA==}
- '@changesets/assemble-release-plan@6.0.9':
- resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==}
+ '@changesets/assemble-release-plan@6.0.10':
+ resolution: {integrity: sha512-rSDcqdJ9KbVyjpBIuCidhvZNIiVt1XaIYp73ycVQRIA5n/j6wQaEk0ChRLMUQ1vkxZe51PTQ9OIhbg6HQMW45A==}
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- '@changesets/cli@2.30.0':
- resolution: {integrity: sha512-5D3Nk2JPqMI1wK25pEymeWRSlSMdo5QOGlyfrKg0AOufrUcjEE3RQgaCpHoBiM31CSNrtSgdJ0U6zL1rLDDfBA==}
+ '@changesets/cli@2.31.0':
+ resolution: {integrity: sha512-AhI4enNTgHu2IZr6K4WZyf0EPch4XVMn1yOMFmCD9gsfBGqMYaHXls5HyDv6/CL5axVQABz68eG30eCtbr2wFg==}
hasBin: true
- '@changesets/config@3.1.3':
- resolution: {integrity: sha512-vnXjcey8YgBn2L1OPWd3ORs0bGC4LoYcK/ubpgvzNVr53JXV5GiTVj7fWdMRsoKUH7hhhMAQnsJUqLr21EncNw==}
+ '@changesets/config@3.1.4':
+ resolution: {integrity: sha512-pf0bvD/v6WI2cRlZ6hzpjtZdSlXDXMAJ+Iz7xfFzV4ZxJ8OGGAON+1qYc99ZPrijnt4xp3VGG7eNvAOGS24V1Q==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
- '@changesets/get-dependents-graph@2.1.3':
- resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
+ '@changesets/get-dependents-graph@2.1.4':
+ resolution: {integrity: sha512-ZsS00x6WvmHq3sQv8oCMwL0f/z3wbXCVuSVTJwCnnmbC/iBdNJGFx1EcbMG4PC6sXRyH69liM4A2WKXzn/kRPg==}
'@changesets/get-github-info@0.8.0':
resolution: {integrity: sha512-cRnC+xdF0JIik7coko3iUP9qbnfi1iJQ3sAa6dE+Tx3+ET8bjFEm63PA4WEohgjYcmsOikPHWzPsMWWiZmntOQ==}
- '@changesets/get-release-plan@4.0.15':
- resolution: {integrity: sha512-Q04ZaRPuEVZtA+auOYgFaVQQSA98dXiVe/yFaZfY7hoSmQICHGvP0TF4u3EDNHWmmCS4ekA/XSpKlSM2PyTS2g==}
+ '@changesets/get-release-plan@4.0.16':
+ resolution: {integrity: sha512-2K5Om6CrMPm45rtvckfzWo7e9jOVCKLCnXia5eUPaURH7/LWzri7pK1TycdzAuAtehLkW7VPbWLCSExTHmiI6g==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
@@ -627,96 +581,84 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
- '@chevrotain/cst-dts-gen@12.0.0':
- resolution: {integrity: sha512-fSL4KXjTl7cDgf0B5Rip9Q05BOrYvkJV/RrBTE/bKDN096E4hN/ySpcBK5B24T76dlQ2i32Zc3PAE27jFnFrKg==}
-
- '@chevrotain/gast@12.0.0':
- resolution: {integrity: sha512-1ne/m3XsIT8aEdrvT33so0GUC+wkctpUPK6zU9IlOyJLUbR0rg4G7ZiApiJbggpgPir9ERy3FRjT6T7lpgetnQ==}
-
- '@chevrotain/regexp-to-ast@12.0.0':
- resolution: {integrity: sha512-p+EW9MaJwgaHguhoqwOtx/FwuGr+DnNn857sXWOi/mClXIkPGl3rn7hGNWvo31HA3vyeQxjqe+H36yZJwYU8cA==}
+ '@chevrotain/types@11.1.2':
+ resolution: {integrity: sha512-U+HFai5+zmJCkK86QsaJtoITlboZHBqrVketcO2ROv865xfCMSFpELQoz1GkX5GzME8pTa+3kbKrZHQtI0gdbw==}
- '@chevrotain/types@12.0.0':
- resolution: {integrity: sha512-S+04vjFQKeuYw0/eW3U52LkAHQsB1ASxsPGsLPUyQgrZ2iNNibQrsidruDzjEX2JYfespXMG0eZmXlhA6z7nWA==}
-
- '@chevrotain/utils@12.0.0':
- resolution: {integrity: sha512-lB59uJoaGIfOOL9knQqQRfhl9g7x8/wqFkp13zTdkRu1huG9kg6IJs1O8hqj9rs6h7orGxHJUKb+mX3rPbWGhA==}
-
- '@commitlint/cli@20.5.0':
- resolution: {integrity: sha512-yNkyN/tuKTJS3wdVfsZ2tXDM4G4Gi7z+jW54Cki8N8tZqwKBltbIvUUrSbT4hz1bhW/h0CdR+5sCSpXD+wMKaQ==}
- engines: {node: '>=v18'}
+ '@commitlint/cli@21.0.1':
+ resolution: {integrity: sha512-8vq10krmbJwBkvzXKhbs4o4JQEVscd3pqOlWuDUaDBwbeL694/P33UC29tZQFTAgPU9fVJ2+f2m3zw16yKWxHg==}
+ engines: {node: '>=22.12.0'}
hasBin: true
- '@commitlint/config-conventional@20.5.0':
- resolution: {integrity: sha512-t3Ni88rFw1XMa4nZHgOKJ8fIAT9M2j5TnKyTqJzsxea7FUetlNdYFus9dz+MhIRZmc16P0PPyEfh6X2d/qw8SA==}
- engines: {node: '>=v18'}
+ '@commitlint/config-conventional@21.0.1':
+ resolution: {integrity: sha512-gRorrkfWOh/+V5X8GYWWbQvrzPczopGMS4CCNrQdHkK4xWElv82BDvIsDhJZWTlI7TazOlYea6VATufCsFs+sw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/config-validator@20.5.0':
- resolution: {integrity: sha512-T/Uh6iJUzyx7j35GmHWdIiGRQB+ouZDk0pwAaYq4SXgB54KZhFdJ0vYmxiW6AMYICTIWuyMxDBl1jK74oFp/Gw==}
- engines: {node: '>=v18'}
+ '@commitlint/config-validator@21.0.1':
+ resolution: {integrity: sha512-Zd2UFdndeMMaW2O96HK0tdfT4gOImUvidMpAd/pws2zZ4m1nrAZ/9b/v2JYuE8fs86GpXv9F7LNaIuCIWhY+pA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/ensure@20.5.0':
- resolution: {integrity: sha512-IpHqAUesBeW1EDDdjzJeaOxU9tnogLAyXLRBn03SHlj1SGENn2JGZqSWGkFvBJkJzfXAuCNtsoYzax+ZPS+puw==}
- engines: {node: '>=v18'}
+ '@commitlint/ensure@21.0.1':
+ resolution: {integrity: sha512-jJ1037967wU7YN/xkv+iRlOBlmaOXPhPO5KQSqya6GyXzBlwuLzELBFao16DVg9dZyqmNrhewzwZ3SAibetHBQ==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/execute-rule@20.0.0':
- resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==}
- engines: {node: '>=v18'}
+ '@commitlint/execute-rule@21.0.1':
+ resolution: {integrity: sha512-RifH+FmImozKBE6mozhF4K3r2RRKP7SMi/Q/zLCmExtp5e05lhHOUYqGBlFBAGNHaZxU/WYw1XuugYK9jQzqnA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/format@20.5.0':
- resolution: {integrity: sha512-TI9EwFU/qZWSK7a5qyXMpKPPv3qta7FO4tKW+Wt2al7sgMbLWTsAcDpX1cU8k16TRdsiiet9aOw0zpvRXNJu7Q==}
- engines: {node: '>=v18'}
+ '@commitlint/format@21.0.1':
+ resolution: {integrity: sha512-ksmG2+cHGtuDPQQbhBbC4unwm444+6TiPw0d1bKf67hntgZqZ8E0g1MuYKUuyT5IH4IMmXZhKq22/Z3jBvtQIw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/is-ignored@20.5.0':
- resolution: {integrity: sha512-JWLarAsurHJhPozbuAH6GbP4p/hdOCoqS9zJMfqwswne+/GPs5V0+rrsfOkP68Y8PSLphwtFXV0EzJ+GTXTTGg==}
- engines: {node: '>=v18'}
+ '@commitlint/is-ignored@21.0.1':
+ resolution: {integrity: sha512-iNDP8SFdw8JEkM0CHZ2XFnhTN4Zg5jKUY2d8kBOSFrI2aA+3YJI7fcqVpfgbpJ9xtxFVYpi+DBATU5AvhoTq8g==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/lint@20.5.0':
- resolution: {integrity: sha512-jiM3hNUdu04jFBf1VgPdjtIPvbuVfDTBAc6L98AWcoLjF5sYqkulBHBzlVWll4rMF1T5zeQFB6r//a+s+BBKlA==}
- engines: {node: '>=v18'}
+ '@commitlint/lint@21.0.1':
+ resolution: {integrity: sha512-gF+iYtUw1gBG3HUH9z3VxwUjGg2R2G5j+nmvPs8aIeYkiB7TtneBu3wO85I0bUl93bYNsvsCNI9Nte2fmDUMww==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/load@20.5.0':
- resolution: {integrity: sha512-sLhhYTL/KxeOTZjjabKDhwidGZan84XKK1+XFkwDYL/4883kIajcz/dZFAhBJmZPtL8+nBx6bnkzA95YxPeDPw==}
- engines: {node: '>=v18'}
+ '@commitlint/load@21.0.1':
+ resolution: {integrity: sha512-Btg1q1mKmiihN4W3x0EsPDrJMOQfMa9NIqlzlJyXAfxvsOGdGXOW5p3R3RcSxDCaY7JabY9flIl+Om1af3PSrw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/message@20.4.3':
- resolution: {integrity: sha512-6akwCYrzcrFcTYz9GyUaWlhisY4lmQ3KvrnabmhoeAV8nRH4dXJAh4+EUQ3uArtxxKQkvxJS78hNX2EU3USgxQ==}
- engines: {node: '>=v18'}
+ '@commitlint/message@21.0.1':
+ resolution: {integrity: sha512-R3dVQeJQ0B6yqrZEjkUHD4r7UJYLV9Lvk2xs3PTOmtWk2G3mI6Xgc+YdRxL1PwcDfBiUjv2SkIkW4AUc976w1w==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/parse@20.5.0':
- resolution: {integrity: sha512-SeKWHBMk7YOTnnEWUhx+d1a9vHsjjuo6Uo1xRfPNfeY4bdYFasCH1dDpAv13Lyn+dDPOels+jP6D2GRZqzc5fA==}
- engines: {node: '>=v18'}
+ '@commitlint/parse@21.0.1':
+ resolution: {integrity: sha512-oh/nCSOqdoeQNA1tO8aAmxkq5EBo8/NzcFQRvv66AWc9HpED28sL2iSicCKU6hPintWuscL6BJEWi77Wq1LPMQ==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/read@20.5.0':
- resolution: {integrity: sha512-JDEIJ2+GnWpK8QqwfmW7O42h0aycJEWNqcdkJnyzLD11nf9dW2dWLTVEa8Wtlo4IZFGLPATjR5neA5QlOvIH1w==}
- engines: {node: '>=v18'}
+ '@commitlint/read@21.0.1':
+ resolution: {integrity: sha512-pMEu4lbpC8W0ZgKJj2U6WaobXIZWdFlULpIEewYhkPXx+WZcnoO53YrVPc7QErQuNolq2Me8dP58Wu7YAVXVOA==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/resolve-extends@20.5.0':
- resolution: {integrity: sha512-3SHPWUW2v0tyspCTcfSsYml0gses92l6TlogwzvM2cbxDgmhSRc+fldDjvGkCXJrjSM87BBaWYTPWwwyASZRrg==}
- engines: {node: '>=v18'}
+ '@commitlint/resolve-extends@21.0.1':
+ resolution: {integrity: sha512-0DhjYWL6uYrY16Efa032fYk3woGJDU4AGWiG1XXltT9AMUNYKyb5cIZU2ivbaMZ3+kKFqUjikD2cjh66Sbh/Sg==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/rules@20.5.0':
- resolution: {integrity: sha512-5NdQXQEdnDPT5pK8O39ZA7HohzPRHEsDGU23cyVCNPQy4WegAbAwrQk3nIu7p2sl3dutPk8RZd91yKTrMTnRkQ==}
- engines: {node: '>=v18'}
+ '@commitlint/rules@21.0.1':
+ resolution: {integrity: sha512-VMooYpz4nJg7xlaUso6CCOWEz8D/ChkvsvZUMARcoJ1ZpfKPyFCGrHNha2tbsETNAb6ErgiRuCr2DvghrvPDYQ==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/to-lines@20.0.0':
- resolution: {integrity: sha512-2l9gmwiCRqZNWgV+pX1X7z4yP0b3ex/86UmUFgoRt672Ez6cAM2lOQeHFRUTuE6sPpi8XBCGnd8Kh3bMoyHwJw==}
- engines: {node: '>=v18'}
+ '@commitlint/to-lines@21.0.1':
+ resolution: {integrity: sha512-bd1BFII7p1EQZre9Kaj+kKaMFP3cFCdt21K7DItVux9XP5WjLgJ0/Uy1pJJh9aPwVJ6SKg62PxqlZaHI8hQAXw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/top-level@20.4.3':
- resolution: {integrity: sha512-qD9xfP6dFg5jQ3NMrOhG0/w5y3bBUsVGyJvXxdWEwBm8hyx4WOk3kKXw28T5czBYvyeCVJgJJ6aoJZUWDpaacQ==}
- engines: {node: '>=v18'}
+ '@commitlint/top-level@21.0.1':
+ resolution: {integrity: sha512-4esUYqzY7K0FCgcJ/1xWEZekV7Ch4yZT1+xjEb7KzqbJ05XEkxHVsTfC8ADKNNtlCE2pj98KEbPGZWw9WwEnVw==}
+ engines: {node: '>=22.12.0'}
- '@commitlint/types@20.5.0':
- resolution: {integrity: sha512-ZJoS8oSq2CAZEpc/YI9SulLrdiIyXeHb/OGqGrkUP6Q7YV+0ouNAa7GjqRdXeQPncHQIDz/jbCTlHScvYvO/gA==}
- engines: {node: '>=v18'}
+ '@commitlint/types@21.0.1':
+ resolution: {integrity: sha512-4u7w8jcoCUFWhjWnASYzZHAP34OqOtuFBN87nQmFvqda03YU0T6z+yB4w0gSAMpekiRqqGk5rt+qSlW+a2vSEg==}
+ engines: {node: '>=22.12.0'}
- '@conventional-changelog/git-client@2.6.0':
- resolution: {integrity: sha512-T+uPDciKf0/ioNNDpMGc8FDsehJClZP0yR3Q5MN6wE/Y/1QZ7F+80OgznnTCOlMEG4AV0LvH2UJi3C/nBnaBUg==}
+ '@conventional-changelog/git-client@2.7.0':
+ resolution: {integrity: sha512-j7A8/LBEQ+3rugMzPXoKYzyUPpw/0CBQCyvtTR7Lmu4olG4yRC/Tfkq79Mr3yuPs0SUitlO2HwGP3gitMJnRFw==}
engines: {node: '>=18'}
peerDependencies:
conventional-commits-filter: ^5.0.0
- conventional-commits-parser: ^6.3.0
+ conventional-commits-parser: ^6.4.0
peerDependenciesMeta:
conventional-commits-filter:
optional: true
@@ -727,8 +669,8 @@ packages:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- '@csstools/css-calc@3.1.1':
- resolution: {integrity: sha512-HJ26Z/vmsZQqs/o3a6bgKslXGFAungXGbinULZO3eMsOyNJHeBBZfup5FiZInOghgoM4Hwnmw+OgbJCNg1wwUQ==}
+ '@csstools/css-calc@3.2.1':
+ resolution: {integrity: sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-parser-algorithms': ^4.0.0
@@ -740,8 +682,8 @@ packages:
peerDependencies:
'@csstools/css-tokenizer': ^4.0.0
- '@csstools/css-syntax-patches-for-csstree@1.1.2':
- resolution: {integrity: sha512-5GkLzz4prTIpoyeUiIu3iV6CSG3Plo7xRVOFPKI7FVEJ3mZ0A8SwK0XU3Gl7xAkiQ+mDyam+NNp875/C5y+jSA==}
+ '@csstools/css-syntax-patches-for-csstree@1.1.4':
+ resolution: {integrity: sha512-wgsqt92b7C7tQhIdPNxj0n9zuUbQlvAuI1exyzeNrOKOi62SD7ren8zqszmpVREjAOqg8cD2FqYhQfAuKjk4sw==}
peerDependencies:
css-tree: ^3.2.1
peerDependenciesMeta:
@@ -804,6 +746,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.28.0':
+ resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.19.12':
resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
@@ -822,6 +770,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.28.0':
+ resolution: {integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.19.12':
resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
@@ -840,6 +794,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.28.0':
+ resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.19.12':
resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
@@ -858,6 +818,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.28.0':
+ resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.19.12':
resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
@@ -876,6 +842,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.28.0':
+ resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.19.12':
resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
@@ -894,6 +866,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.28.0':
+ resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.19.12':
resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
@@ -912,6 +890,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.28.0':
+ resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.19.12':
resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
@@ -930,6 +914,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.28.0':
+ resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.19.12':
resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
@@ -948,6 +938,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.28.0':
+ resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.19.12':
resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
@@ -966,6 +962,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.28.0':
+ resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.19.12':
resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
@@ -984,6 +986,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.28.0':
+ resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.14.54':
resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
engines: {node: '>=12'}
@@ -1008,6 +1016,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.28.0':
+ resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.19.12':
resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
@@ -1026,6 +1040,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.28.0':
+ resolution: {integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.19.12':
resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
@@ -1044,6 +1064,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.28.0':
+ resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.19.12':
resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
@@ -1062,6 +1088,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.28.0':
+ resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.19.12':
resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
@@ -1080,6 +1112,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.28.0':
+ resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.19.12':
resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
@@ -1098,6 +1136,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.28.0':
+ resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.27.0':
resolution: {integrity: sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==}
engines: {node: '>=18'}
@@ -1110,6 +1154,12 @@ packages:
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.28.0':
+ resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.19.12':
resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
@@ -1128,6 +1178,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.28.0':
+ resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.27.0':
resolution: {integrity: sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==}
engines: {node: '>=18'}
@@ -1140,6 +1196,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.28.0':
+ resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.19.12':
resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
@@ -1158,6 +1220,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.28.0':
+ resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openharmony-arm64@0.27.0':
resolution: {integrity: sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==}
engines: {node: '>=18'}
@@ -1170,6 +1238,12 @@ packages:
cpu: [arm64]
os: [openharmony]
+ '@esbuild/openharmony-arm64@0.28.0':
+ resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.19.12':
resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
@@ -1188,6 +1262,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.28.0':
+ resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.19.12':
resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
@@ -1206,6 +1286,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.28.0':
+ resolution: {integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.19.12':
resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
@@ -1224,6 +1310,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.28.0':
+ resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.19.12':
resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
@@ -1242,6 +1334,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.28.0':
+ resolution: {integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.9.1':
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1252,8 +1350,8 @@ packages:
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@2.0.4':
- resolution: {integrity: sha512-o598tCGstJv9Kk4XapwP+oDij9HD9Qr3V37ABzTfdzVvbFciV+sfg9zSW6olj6G/IXj7p89SwSzPnZ+JUEPIPg==}
+ '@eslint/compat@2.1.0':
+ resolution: {integrity: sha512-LgaSCymEpw7tF53xvDw9SNsraPb1IBHxpdABIOM0hW8UAlP8znrjYtuxfR58FSJ3L9BhwD+FaPRFQpZq84Nh6g==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
peerDependencies:
eslint: ^8.40 || 9 || 10
@@ -1261,25 +1359,17 @@ packages:
eslint:
optional: true
- '@eslint/config-array@0.21.2':
- resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@eslint/config-helpers@0.4.2':
- resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@eslint/core@0.17.0':
- resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-array@0.23.5':
+ resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/core@1.2.0':
- resolution: {integrity: sha512-8FTGbNzTvmSlc4cZBaShkC6YvFMG0riksYWRFKXztqVdXaQbcZLXlFbSpC05s70sGEsXAw0qwhx69JiW7hQS7A==}
+ '@eslint/config-helpers@0.6.0':
+ resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/eslintrc@3.3.5':
- resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/core@1.2.1':
+ resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
'@eslint/js@10.0.1':
resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
@@ -1290,17 +1380,13 @@ packages:
eslint:
optional: true
- '@eslint/js@9.39.4':
- resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@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/object-schema@3.0.5':
+ resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/plugin-kit@0.4.1':
- resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/plugin-kit@0.7.1':
+ resolution: {integrity: sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
'@formatjs/ecma402-abstract@2.3.4':
resolution: {integrity: sha512-qrycXDeaORzIqNhBOx0btnhpD1c+/qFIHAN9znofuMJX6QBwtbrmlpWfD4oiUUD2vJUOIYFA/gYtg2KAMGG7sA==}
@@ -1353,12 +1439,16 @@ packages:
'@gradio/utils@0.12.2':
resolution: {integrity: sha512-kyYVAieI1z3pKoGB/SkEM8sE4Uja25NVOyFdJeTkPgeQneLckcs+IgJFd0px2K90vsBBY4c1nEGZ9HQyXn+ltA==}
- '@humanfs/core@0.19.1':
- resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ '@humanfs/core@0.19.2':
+ resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==}
engines: {node: '>=18.18.0'}
- '@humanfs/node@0.16.7':
- resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
+ '@humanfs/node@0.16.8':
+ resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/types@0.15.0':
+ resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
@@ -1372,8 +1462,8 @@ packages:
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@3.1.0':
- resolution: {integrity: sha512-Zlzem1ZXhI1iHeeERabLNzBHdOa4VhQbqAcOQaMKuTuyZCpwKbC2R4Dd0Zo3g9EAc+Y4fiarO8HIHRAth7+skw==}
+ '@iconify/utils@3.1.3':
+ resolution: {integrity: sha512-LPKOXPn/zV+zis1oOfGWogaXVpqUybF3ZS6SCZIsz8vg0ivVp9+fVqyYB7xq0aiST/VhUQYGO1qo6uoYSiEJqw==}
'@inquirer/external-editor@1.0.3':
resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
@@ -1445,8 +1535,8 @@ packages:
resolution: {integrity: sha512-0FOIepYR4ugPYaHwK7hDeHDkfPOBVvayt9QpvRbi2LT/h2b0GaE/gM9Gag7fsnyYyNaTZ2IGyOuVg07IYepvYQ==}
engines: {node: '>=20.0.0'}
- '@mermaid-js/parser@1.1.0':
- resolution: {integrity: sha512-gxK9ZX2+Fex5zu8LhRQoMeMPEHbc73UKZ0FQ54YrQtUxE1VVhMwzeNtKRPAu5aXks4FasbMe4xB4bWrmq6Jlxw==}
+ '@mermaid-js/parser@1.1.1':
+ resolution: {integrity: sha512-VuHdsYMK1bT6X2JbcAaWAhugTRvRBRyuZgd+c22swUeI9g/ntaxF7CY7dYarhZovofCbUNO0G7JesfmNtjYOCw==}
'@microsoft/api-extractor-model@7.30.7':
resolution: {integrity: sha512-TBbmSI2/BHpfR9YhQA7nH0nqVmGgJ0xH0Ex4D99/qBDAUpnhA2oikGmdXanbw9AWWY/ExBYIpkmY8dBHdla3YQ==}
@@ -1502,8 +1592,8 @@ packages:
resolution: {integrity: sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==}
engines: {node: '>= 20'}
- '@octokit/endpoint@11.0.2':
- resolution: {integrity: sha512-4zCpzP1fWc7QlqunZ5bSEjxc6yLAlRTnDwKtgXfcI/FxxGoqedDG8V2+xJ60bV2kODqcGB+nATdtap/XYq2NZQ==}
+ '@octokit/endpoint@11.0.3':
+ resolution: {integrity: sha512-FWFlNxghg4HrXkD3ifYbS/IdL/mDHjh9QcsNyhQjN8dplUoZbejsdpmuqdA76nxj2xoWPs7p8uX2SNr9rYu0Ag==}
engines: {node: '>= 20'}
'@octokit/graphql@9.0.3':
@@ -1529,8 +1619,8 @@ packages:
resolution: {integrity: sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==}
engines: {node: '>= 20'}
- '@octokit/request@10.0.7':
- resolution: {integrity: sha512-v93h0i1yu4idj8qFPZwjehoJx4j3Ntn+JhXsdJrG9pYaX6j/XRz2RmasMUHtNgQD39nrv/VwTWSqK0RNXR8upA==}
+ '@octokit/request@10.0.9':
+ resolution: {integrity: sha512-o8Bi3f608eyM+7BmBiUWxFsdjLb3/ym1cQek5LZOv9KkZcxRrHCPhhRzm6xjO6HVZ85ItD6+sTsjxo821SVa/A==}
engines: {node: '>= 20'}
'@octokit/types@16.0.0':
@@ -1639,8 +1729,8 @@ packages:
resolution: {integrity: sha512-n4HcR5siNUXRX23nDizbZBQPO0ZM/5oTtmKZ6/eqL0L2bo747cklFdZGRN2f+c9qWGICwDzrhW0H7tE9PptdcA==}
engines: {node: '>=14.x'}
- '@rc-component/cascader@1.14.0':
- resolution: {integrity: sha512-Ip9356xwZUR2nbW5PRVGif4B/bDve4pLa/N+PGbvBaTnjbvmN4PFMBGQSmlDlzKP1ovxaYMvwF/dI9lXNLT4iQ==}
+ '@rc-component/cascader@1.15.0':
+ resolution: {integrity: sha512-ZzpMtwFCRo3fbXHuDnncARJMZQjdqA2w7aDuPofNQt+aDx39st1hgfIpEwTBLhe2Hqsvs/zOr8RTtgxTkCPySw==}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
@@ -1669,8 +1759,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/dialog@1.8.4':
- resolution: {integrity: sha512-Ay6PM7phkTkquplG8fWfUGFZ2GTLx9diTl4f0d8Eqxd7W1u1KjE9AQooFQHOHnhZf0Ya3z51+5EKCWHmt/dNEw==}
+ '@rc-component/dialog@1.9.0':
+ resolution: {integrity: sha512-zbAAogkg4kkKum79sLE6M+vq1jSAW25zdkafrahgcTP9t9S//SD634Znd1A4c8F2Gc12ZKnehGLsVaaOvZzD2A==}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
@@ -1687,15 +1777,15 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
- '@rc-component/form@1.8.0':
- resolution: {integrity: sha512-eUD5KKYnIZWmJwRA0vnyO/ovYUfHGU1svydY1OrqU5fw8Oz9Tdqvxvrlh0wl6xI/EW69dT7II49xpgOWzK3T5A==}
+ '@rc-component/form@1.8.1':
+ resolution: {integrity: sha512-8O7TB55Fi2mWIGvSnwZjk8jFqVNYyKDAswglwGShcbndxqzKz4cHwNtNaLjZlAeRge9wcB0LL8IWsC/Bl18raQ==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/image@1.8.0':
- resolution: {integrity: sha512-Dr41bFevLB5NgVaJhEUmNvbEf+ynAhim6W98ZW2xvCsdFISc2TYP4ZvCVdie3eaZdum2kieVcvpNHu+UrzAAHA==}
+ '@rc-component/image@1.9.0':
+ resolution: {integrity: sha512-khF7w7xkBH5B1bsBcI1FSUZdkyd1aqpl2eYyILCqCzzQH3XdfehGUaZTnptyaJJfs09/R5hv9jXWyazOMFIClQ==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -1706,20 +1796,20 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/input@1.1.2':
- resolution: {integrity: sha512-Q61IMR47piUBudgixJ30CciKIy9b1H95qe7GgEKOmSJVJXvFRWJllJfQry9tif+MX2cWFXWJf/RXz4kaCeq/Fg==}
+ '@rc-component/input@1.3.0':
+ resolution: {integrity: sha512-IUUNOdAuWuEvDEFFgfmwQl818tiDbvXwLgon4HL1q2hJeYkqrRrYwYhJN0zfPHGTDxs3gvyVC/C02D4hWFoIcA==}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
- '@rc-component/mentions@1.6.0':
- resolution: {integrity: sha512-KIkQNP6habNuTsLhUv0UGEOwG67tlmE7KNIJoQZZNggEZl5lQJTytFDb69sl5CK3TDdISCTjKP3nGEBKgT61CQ==}
+ '@rc-component/mentions@1.9.0':
+ resolution: {integrity: sha512-WUwfFKDSOF5S9UPsNsXcLYtzjTxBGsftTXWRbZuxX6BYrsySISTnujfJNgaaQ6qVzaCDJ35QUkZKvsYxip1C5g==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/menu@1.2.0':
- resolution: {integrity: sha512-VWwDuhvYHSnTGj4n6bV3ISrLACcPAzdPOq3d0BzkeiM5cve8BEYfvkEhNoM0PLzv51jpcejeyrLXeMVIJ+QJlg==}
+ '@rc-component/menu@1.3.0':
+ resolution: {integrity: sha512-u3NfiwpiEgT177qa5Yxm5QsI8i/93EBGpWj8HYZQDnh2pCZ2xtQCe/+w3pSR2NlwKOZDTCKzEhEyD09mGphssA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -1741,15 +1831,15 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/notification@1.2.0':
- resolution: {integrity: sha512-OX3J+zVU7rvoJCikjrfW7qOUp7zlDeFBK2eA3SFbGSkDqo63Sl4Ss8A04kFP+fxHSxMDIS9jYVEZtU1FNCFuBA==}
+ '@rc-component/notification@2.0.7':
+ resolution: {integrity: sha512-nqZzpf6BPdaj+3ILx7si79LLmqPKyUmQoXa+/9gg0SkH0v1DbD66oJgRMSBEVnd/zUT3D4gwxWIHUKebYf2ZXQ==}
engines: {node: '>=8.x'}
peerDependencies:
- react: '>=16.9.0'
- react-dom: '>=16.9.0'
+ react: '>=18.0.0'
+ react-dom: '>=18.0.0'
- '@rc-component/overflow@1.0.0':
- resolution: {integrity: sha512-GSlBeoE0XTBi5cf3zl8Qh7Uqhn7v8RrlJ8ajeVpEkNe94HWy5l5BQ0Mwn2TVUq9gdgbfEMUmTX7tJFAg7mz0Rw==}
+ '@rc-component/overflow@1.0.1':
+ resolution: {integrity: sha512-syfmgAABaHCnCDzPwHZ/2tuvIcpOO3jefYZMmfkN+pmo8HKTzsfhS57vxo4ksPdN0By+uWVJhJWNFozNBxi2eA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -1760,8 +1850,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/picker@1.9.1':
- resolution: {integrity: sha512-9FBYYsvH3HMLICaPDA/1Th5FLaDkFa7qAtangIdlhKb3ZALaR745e9PsOhheJb6asS4QXc12ffiAcjdkZ4C5/g==}
+ '@rc-component/picker@1.10.0':
+ resolution: {integrity: sha512-vVOXP2RVWozwpERGUFAehVH1Jz6o/uRrAb9qSZm1LC+iJs8rvEwFo1bzz2jlOYV+uWwu0dIuG86tnDui14Ea0w==}
engines: {node: '>=12.x'}
peerDependencies:
date-fns: '>= 2.x'
@@ -1846,47 +1936,41 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/table@1.9.1':
- resolution: {integrity: sha512-FVI5ZS/GdB3BcgexfCYKi3iHhZS3Fr59EtsxORszYGrfpH1eWr33eDNSYkVfLI6tfJ7vftJDd9D5apfFWqkdJg==}
+ '@rc-component/table@1.10.0':
+ resolution: {integrity: sha512-SjtpcCf+rL7dDc62GKT3rXTdERjVuJvRiqjpU7g0Jc/ewCifXynHc7Nm3Em1XsD+WhGrgQtxNDScI/0+Lpfr0w==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
- '@rc-component/tabs@1.7.0':
- resolution: {integrity: sha512-J48cs2iBi7Ho3nptBxxIqizEliUC+ExE23faspUQKGQ550vaBlv3aGF8Epv/UB1vFWeoJDTW/dNzgIU0Qj5i/w==}
+ '@rc-component/tabs@1.9.0':
+ resolution: {integrity: sha512-tn1slmbbaTyt8mgwyWJcT8jo/qNiYUs6u1H7OgGQt9faYO06BJIkU5cTmMqORzIrNmSEeeUY6pD5i+JlqSHYhg==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/textarea@1.1.2':
- resolution: {integrity: sha512-9rMUEODWZDMovfScIEHXWlVZuPljZ2pd1LKNjslJVitn4SldEzq5vO1CL3yy3Dnib6zZal2r2DPtjy84VVpF6A==}
- peerDependencies:
- react: '>=16.9.0'
- react-dom: '>=16.9.0'
-
'@rc-component/tooltip@1.4.0':
resolution: {integrity: sha512-8Rx5DCctIlLI4raR0I0xHjVTf1aF48+gKCNeAAo5bmF5VoR5YED+A/XEqzXv9KKqrJDRcd3Wndpxh2hyzrTtSg==}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
- '@rc-component/tour@2.3.0':
- resolution: {integrity: sha512-K04K9r32kUC+auBSQfr+Fss4SpSIS9JGe56oq/ALAX0p+i2ylYOI1MgR83yBY7v96eO6ZFXcM/igCQmubps0Ow==}
+ '@rc-component/tour@2.4.0':
+ resolution: {integrity: sha512-aui4r4TqmTzwaBgcQxHYep8kM8PTjZFufjokObpy35KfFeZ0k9ArquWFZqegQlH24P14t+F0qO0mGTgzlav1yg==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/tree-select@1.8.0':
- resolution: {integrity: sha512-iYsPq3nuLYvGqdvFAW+l+I9ASRIOVbMXyA8FGZg2lGym/GwkaWeJGzI4eJ7c9IOEhRj0oyfIN4S92Fl3J05mjQ==}
+ '@rc-component/tree-select@1.9.0':
+ resolution: {integrity: sha512-GXcFe15a+trUl1/J3OHWQhsVWFpwFpGFK2cqYWZ1sK22Zs3KZTvMwDpzr75PIo1s6QVioVxpE/pRwRopkeDQ6w==}
peerDependencies:
react: '*'
react-dom: '*'
- '@rc-component/tree@1.2.4':
- resolution: {integrity: sha512-5Gli43+m4R7NhpYYz3Z61I6LOw9yI6CNChxgVtvrO6xB1qML7iE6QMLVMB3+FTjo2yF6uFdAHtqWPECz/zbX5w==}
+ '@rc-component/tree@1.3.1':
+ resolution: {integrity: sha512-zlL0PW0bTFlveTtLcA01VD/yMWKK73EywItFMgIZUY5sb6tMOAw7zV6qGzqldufqrV93ZWQB4H3NBNoTMCueJA==}
engines: {node: '>=10.x'}
peerDependencies:
react: '*'
@@ -1905,14 +1989,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/util@1.10.0':
- resolution: {integrity: sha512-aY9GLBuiUdpyfIUpAWSYer4Tu3mVaZCo5A0q9NtXcazT3MRiI3/WNHCR+DUn5VAtR6iRRf0ynCqQUcHli5UdYw==}
- peerDependencies:
- react: '>=18.0.0'
- react-dom: '>=18.0.0'
-
- '@rc-component/util@1.10.1':
- resolution: {integrity: sha512-q++9S6rUa5Idb/xIBNz6jtvumw5+O5YV5V0g4iK9mn9jWs4oGJheE3ZN1kAnE723AXyaD8v95yeOASmdk8Jnng==}
+ '@rc-component/util@1.11.0':
+ resolution: {integrity: sha512-jHG3/BYgUWiP5c7RZHiaUNToyw1L3nlPSKG2RPu+YoiD9b3ajiJwBWhsjO+ZELmCsKFAjNR5DelbKdlF0e2BDA==}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
@@ -1930,8 +2008,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rolldown/pluginutils@1.0.0-rc.7':
- resolution: {integrity: sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==}
+ '@rolldown/pluginutils@1.0.1':
+ resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
'@rollup/plugin-sucrase@5.1.0':
resolution: {integrity: sha512-/S4cJnfnjmaH0RqjvZtKOCx8WRnL14f3+tIieL5Ty0YkRpUPW2S/tgHCplWsHEmuZAWYoPJ4KN5eIxWtQw95Qw==}
@@ -2276,72 +2354,86 @@ packages:
svelte: ^5.0.0
vite: ^6.3.0 || ^7.0.0
- '@swc/core-darwin-arm64@1.15.18':
- resolution: {integrity: sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==}
+ '@swc/core-darwin-arm64@1.15.33':
+ resolution: {integrity: sha512-N+L0uXhuO7FIfzqwgxmzv0zIpV0qEp8wPX3QQs2p4atjMoywup2JTeDlXPw+z9pWJGCae3JjM+tZ6myclI+2gA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.15.18':
- resolution: {integrity: sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==}
+ '@swc/core-darwin-x64@1.15.33':
+ resolution: {integrity: sha512-/Il4QHSOhV4FekbsDtkrNmKbsX26oSysvgrRswa/RYOHXAkwXDbB4jaeKq6PsJLSPkzJ2KzQ061gtBnk0vNHfA==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.15.18':
- resolution: {integrity: sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==}
+ '@swc/core-linux-arm-gnueabihf@1.15.33':
+ resolution: {integrity: sha512-C64hBnBxq4viOPQ8hlx+2lJ23bzZBGnjw7ryALmS+0Q3zHmwO8lw1/DArLENw4Q18/0w5wdEO1k3m1wWNtKGqQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.15.18':
- resolution: {integrity: sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==}
+ '@swc/core-linux-arm64-gnu@1.15.33':
+ resolution: {integrity: sha512-TRJfnJbX3jqpxRDRoieMzRiCBS5jOmXNb3iQXmcgjFEHKLnAgK1RZRU8Cq1MsPqO4jAJp/ld1G4O3fXuxv85uw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@swc/core-linux-arm64-musl@1.15.18':
- resolution: {integrity: sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==}
+ '@swc/core-linux-arm64-musl@1.15.33':
+ resolution: {integrity: sha512-il7tYM+CpUNzieQbwAjFT1P8zqAhmGWNAGhQZBnxurXZ0aNn+5nqYFTEUKNZl7QibtT0uQXzTZrNGHCIj6Y1Og==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@swc/core-linux-x64-gnu@1.15.18':
- resolution: {integrity: sha512-wG9J8vReUlpaHz4KOD/5UE1AUgirimU4UFT9oZmupUDEofxJKYb1mTA/DrMj0s78bkBiNI+7Fo2EgPuvOJfuAA==}
+ '@swc/core-linux-ppc64-gnu@1.15.33':
+ resolution: {integrity: sha512-ZtNBwN0Z7CFj9Il0FcPaKdjgP7URyKu/3RfH46vq+0paOBqLj4NYldD6Qo//Duif/7IOtAraUfDOmp0PLAufog==}
+ engines: {node: '>=10'}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@swc/core-linux-s390x-gnu@1.15.33':
+ resolution: {integrity: sha512-De1IyajoOmhOYYjw/lx66bKlyDpHZTueqwpDrWgf5O7T6d1ODeJJO9/OqMBmrBQc5C+dNnlmIufHsp4QVCWufA==}
+ engines: {node: '>=10'}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@swc/core-linux-x64-gnu@1.15.33':
+ resolution: {integrity: sha512-mGTH0YxmUN+x6vRN/I6NOk5X0ogNktkwPnJ94IMvR7QjhRDwL0O8RXEDhyUM0YtwWrryBOqaJQBX4zruxEPRGw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@swc/core-linux-x64-musl@1.15.18':
- resolution: {integrity: sha512-4nwbVvCphKzicwNWRmvD5iBaZj8JYsRGa4xOxJmOyHlMDpsvvJ2OR2cODlvWyGFH6BYL1MfIAK3qph3hp0Az6g==}
+ '@swc/core-linux-x64-musl@1.15.33':
+ resolution: {integrity: sha512-hj628ZkSEJf6zMf5VMbYrG2O6QqyTIp2qwY6VlCjvIa9lAEZ5c2lfPblCLVGYubTeLJDxadLB/CxqQYOQABeEQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@swc/core-win32-arm64-msvc@1.15.18':
- resolution: {integrity: sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==}
+ '@swc/core-win32-arm64-msvc@1.15.33':
+ resolution: {integrity: sha512-GV2oohtN2/5+KSccl86VULu3aT+LrISC8uzgSq0FRnikpD+Zwc+sBlXmoKQ+Db6jI57ITUOIB8jRkdGMABC29g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.15.18':
- resolution: {integrity: sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==}
+ '@swc/core-win32-ia32-msvc@1.15.33':
+ resolution: {integrity: sha512-gtyvzSNR8DHKfFEA2uqb8Ld1myqi6uEg2jyeUq3ikn5ytYs7H8RpZYC8mdy4NXr8hfcdJfCLXPlYaqqfBXpoEQ==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.15.18':
- resolution: {integrity: sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==}
+ '@swc/core-win32-x64-msvc@1.15.33':
+ resolution: {integrity: sha512-d6fRqQSkJI+kmMEBWaDQ7TMl8+YjLYbwRUPZQ9DY0ORBJeTzOrG0twvfvlZ2xgw6jA0ScQKgfBm4vHLSLl5Hqg==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.15.18':
- resolution: {integrity: sha512-z87aF9GphWp//fnkRsqvtY+inMVPgYW3zSlXH1kJFvRT5H/wiAn+G32qW5l3oEk63KSF1x3Ov0BfHCObAmT8RA==}
+ '@swc/core@1.15.33':
+ resolution: {integrity: sha512-jOlwnFV2xhuuZeAUILGFULeR6vDPfijEJ57evfocwznQldLU3w2cZ9bSDryY9ip+AsM3r1NJKzf47V2NXebkeQ==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '>=0.5.17'
@@ -2352,8 +2444,8 @@ packages:
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- '@swc/types@0.1.25':
- resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
+ '@swc/types@0.1.26':
+ resolution: {integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw==}
'@tsconfig/node10@1.0.12':
resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
@@ -2488,12 +2580,18 @@ packages:
resolution: {integrity: sha512-s0jepCjOJWB/GKcuba4jISaVpBudw3ClXJ3fUK4tugChUMQsp6kSwuA8Dcx6wFd/JsJqcY8n4rEpa5RTHs5ypA==}
deprecated: This is a stub types definition. @eslint/js provides its own type definitions, so you do not need this installed.
+ '@types/esrecurse@4.3.1':
+ resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
+
'@types/estree@1.0.7':
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
+ '@types/estree@1.0.9':
+ resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
+
'@types/geojson@7946.0.16':
resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==}
@@ -2524,11 +2622,11 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@18.19.130':
- resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==}
+ '@types/node@24.12.4':
+ resolution: {integrity: sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==}
- '@types/node@25.5.2':
- resolution: {integrity: sha512-tO4ZIRKNC+MDWV4qKVZe3Ql/woTnmHDr5JD8UI5hn2pwBrHEwOEMZK7WlNb5RKB6EoJ02gwmQS9OrjuFnZYdpg==}
+ '@types/node@25.8.0':
+ resolution: {integrity: sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==}
'@types/prismjs@1.26.6':
resolution: {integrity: sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw==}
@@ -2566,63 +2664,63 @@ packages:
'@types/which@3.0.4':
resolution: {integrity: sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==}
- '@typescript-eslint/eslint-plugin@8.58.1':
- resolution: {integrity: sha512-eSkwoemjo76bdXl2MYqtxg51HNwUSkWfODUOQ3PaTLZGh9uIWWFZIjyjaJnex7wXDu+TRx+ATsnSxdN9YWfRTQ==}
+ '@typescript-eslint/eslint-plugin@8.59.3':
+ resolution: {integrity: sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.58.1
+ '@typescript-eslint/parser': ^8.59.3
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/parser@8.58.1':
- resolution: {integrity: sha512-gGkiNMPqerb2cJSVcruigx9eHBlLG14fSdPdqMoOcBfh+vvn4iCq2C8MzUB89PrxOXk0y3GZ1yIWb9aOzL93bw==}
+ '@typescript-eslint/parser@8.59.3':
+ resolution: {integrity: sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/project-service@8.58.1':
- resolution: {integrity: sha512-gfQ8fk6cxhtptek+/8ZIqw8YrRW5048Gug8Ts5IYcMLCw18iUgrZAEY/D7s4hkI0FxEfGakKuPK/XUMPzPxi5g==}
+ '@typescript-eslint/project-service@8.59.3':
+ resolution: {integrity: sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/scope-manager@8.58.1':
- resolution: {integrity: sha512-TPYUEqJK6avLcEjumWsIuTpuYODTTDAtoMdt8ZZa93uWMTX13Nb8L5leSje1NluammvU+oI3QRr5lLXPgihX3w==}
+ '@typescript-eslint/scope-manager@8.59.3':
+ resolution: {integrity: sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.58.1':
- resolution: {integrity: sha512-JAr2hOIct2Q+qk3G+8YFfqkqi7sC86uNryT+2i5HzMa2MPjw4qNFvtjnw1IiA1rP7QhNKVe21mSSLaSjwA1Olw==}
+ '@typescript-eslint/tsconfig-utils@8.59.3':
+ resolution: {integrity: sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/type-utils@8.58.1':
- resolution: {integrity: sha512-HUFxvTJVroT+0rXVJC7eD5zol6ID+Sn5npVPWoFuHGg9Ncq5Q4EYstqR+UOqaNRFXi5TYkpXXkLhoCHe3G0+7w==}
+ '@typescript-eslint/type-utils@8.59.3':
+ resolution: {integrity: sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/types@8.58.1':
- resolution: {integrity: sha512-io/dV5Aw5ezwzfPBBWLoT+5QfVtP8O7q4Kftjn5azJ88bYyp/ZMCsyW1lpKK46EXJcaYMZ1JtYj+s/7TdzmQMw==}
+ '@typescript-eslint/types@8.59.3':
+ resolution: {integrity: sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.58.1':
- resolution: {integrity: sha512-w4w7WR7GHOjqqPnvAYbazq+Y5oS68b9CzasGtnd6jIeOIeKUzYzupGTB2T4LTPSv4d+WPeccbxuneTFHYgAAWg==}
+ '@typescript-eslint/typescript-estree@8.59.3':
+ resolution: {integrity: sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/utils@8.58.1':
- resolution: {integrity: sha512-Ln8R0tmWC7pTtLOzgJzYTXSCjJ9rDNHAqTaVONF4FEi2qwce8mD9iSOxOpLFFvWp/wBFlew0mjM1L1ihYWfBdQ==}
+ '@typescript-eslint/utils@8.59.3':
+ resolution: {integrity: sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/visitor-keys@8.58.1':
- resolution: {integrity: sha512-y+vH7QE8ycjoa0bWciFg7OpFcipUuem1ujhrdLtq1gByKwfbC7bPeKsiny9e0urg93DqwGcHey+bGRKCnF1nZQ==}
+ '@typescript-eslint/visitor-keys@8.59.3':
+ resolution: {integrity: sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@unrs/resolver-binding-android-arm-eabi@1.9.2':
@@ -2731,8 +2829,8 @@ packages:
'@upsetjs/venn.js@2.0.0':
resolution: {integrity: sha512-WbBhLrooyePuQ1VZxrJjtLvTc4NVfpOyKx0sKqioq9bX1C1m7Jgykkn8gLrtwumBioXIqam8DLxp88Adbue6Hw==}
- '@vitejs/plugin-react-swc@4.3.0':
- resolution: {integrity: sha512-mOkXCII839dHyAt/gpoSlm28JIVDwhZ6tnG6wJxUy2bmOx7UaPjvOyIDf3SFv5s7Eo7HVaq6kRcu6YMEzt5Z7w==}
+ '@vitejs/plugin-react-swc@4.3.1':
+ resolution: {integrity: sha512-PaeokKjAGraNN+s5SIApgsktnJprIyt3zgEIu7awnEdfn29QiB2crTcCzyi2XGpX9rUnTc0cKU07Wm0N0g7H2w==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
vite: ^4 || ^5 || ^6 || ^7 || ^8
@@ -2742,8 +2840,8 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.3.4:
- resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ acorn-walk@8.3.5:
+ resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==}
engines: {node: '>=0.4.0'}
acorn@7.4.1:
@@ -2780,8 +2878,8 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- ajv@6.14.0:
- resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
+ ajv@6.15.0:
+ resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
@@ -2789,8 +2887,8 @@ packages:
ajv@8.13.0:
resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
- ajv@8.18.0:
- resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
+ ajv@8.20.0:
+ resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
amuchina@1.0.12:
resolution: {integrity: sha512-Itv2NEwpiV53+bkpviJIC12+8SOlCSLR1HgQCv6wD7ldNFNesm4JSk7XjvTFkeVfLYzqKEZcEBZO1X/V2MYg4A==}
@@ -2827,8 +2925,8 @@ packages:
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
- antd@6.3.5:
- resolution: {integrity: sha512-8BPz9lpZWQm42PTx7yL4KxWAotVuqINiKcoYRcLtdd5BFmAcAZicVyFTnBJyRDlzGZFZeRW3foGu6jXYFnej6Q==}
+ antd@6.4.2:
+ resolution: {integrity: sha512-PNJz8Vxc/mC3EsOg/h3e2YuaZduJ1RDp4RmySDuDmKPCxVgyp4Da4kB36o87p9hbLbOWdAWCKQlnyopsN8utKQ==}
peerDependencies:
react: '>=18.0.0'
react-dom: '>=18.0.0'
@@ -2992,10 +3090,6 @@ packages:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
- baseline-browser-mapping@2.8.24:
- resolution: {integrity: sha512-uUhTRDPXamakPyghwrUcjaGvvBqGrWvBHReoiULMIpOJVM9IYzQh83Xk2Onx5HlGI2o10NNCzcs9TG/S3TkwrQ==}
- hasBin: true
-
baseline-browser-mapping@2.9.19:
resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
hasBin: true
@@ -3017,8 +3111,8 @@ packages:
resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
engines: {node: 18 || 20 || >=22}
- brace-expansion@5.0.5:
- resolution: {integrity: sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==}
+ brace-expansion@5.0.6:
+ resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==}
engines: {node: 18 || 20 || >=22}
braces@2.3.2:
@@ -3034,11 +3128,6 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.27.0:
- resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.28.1:
resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -3061,8 +3150,8 @@ packages:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
- cacheable@2.3.4:
- resolution: {integrity: sha512-djgxybDbw9fL/ZWMI3+CE8ZilNxcwFkVtDc1gJ+IlOSSWkSMPQabhV/XCHTQ6pwwN6aivXPZ43omTooZiX06Ew==}
+ cacheable@2.3.5:
+ resolution: {integrity: sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==}
call-bind-apply-helpers@1.0.2:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
@@ -3106,9 +3195,6 @@ packages:
caniuse-lite@1.0.30001712:
resolution: {integrity: sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==}
- caniuse-lite@1.0.30001753:
- resolution: {integrity: sha512-Bj5H35MD/ebaOV4iDLqPEtiliTN29qkGtEHCwawWn4cYm+bPJM2NsaP30vtZcnERClMzp52J4+aw2UNbK4o+zw==}
-
caniuse-lite@1.0.30001768:
resolution: {integrity: sha512-qY3aDRZC5nWPgHUgIB84WL+nySuo19wk0VJpp/XI9T34lrvkyhRvNVOFJOp2kxClQhiFBu+TaUSudf6oa3vkSA==}
@@ -3119,10 +3205,6 @@ packages:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
- chalk@4.1.2:
- resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
- engines: {node: '>=10'}
-
character-entities-html4@1.1.4:
resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==}
@@ -3150,15 +3232,6 @@ packages:
chardet@2.1.1:
resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
- chevrotain-allstar@0.4.1:
- resolution: {integrity: sha512-PvVJm3oGqrveUVW2Vt/eZGeiAIsJszYweUcYwcskg9e+IubNYKKD+rHHem7A6XVO22eDAL+inxNIGAzZ/VIWlA==}
- peerDependencies:
- chevrotain: ^12.0.0
-
- chevrotain@12.0.0:
- resolution: {integrity: sha512-csJvb+6kEiQaqo1woTdSAuOWdN0WTLIydkKrBnS+V5gZz0oqBrp4kQ35519QgK6TpBThiG3V1vNSHlIkv4AglQ==}
- engines: {node: '>=22.0.0'}
-
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
@@ -3182,9 +3255,9 @@ packages:
resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
engines: {node: '>=20'}
- cliui@8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
clone-regexp@1.0.1:
resolution: {integrity: sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==}
@@ -3222,16 +3295,9 @@ packages:
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- colorette@2.0.20:
- resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
-
comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
- commander@14.0.3:
- resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
- engines: {node: '>=20'}
-
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
@@ -3269,16 +3335,20 @@ packages:
constantinople@4.0.1:
resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==}
- conventional-changelog-angular@8.3.0:
- resolution: {integrity: sha512-DOuBwYSqWzfwuRByY9O4oOIvDlkUCTDzfbOgcSbkY+imXXj+4tmrEFao3K+FxemClYfYnZzsvudbwrhje9VHDA==}
+ content-type@2.0.0:
+ resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==}
engines: {node: '>=18'}
- conventional-changelog-conventionalcommits@9.3.0:
- resolution: {integrity: sha512-kYFx6gAyjSIMwNtASkI3ZE99U1fuVDJr0yTYgVy+I2QG46zNZfl2her+0+eoviG82c5WQvW1jMt1eOQTeJLodA==}
+ conventional-changelog-angular@8.3.1:
+ resolution: {integrity: sha512-6gfI3otXK5Ph5DfCOI1dblr+kN3FAm5a97hYoQkqNZxOaYa5WKfXH+AnpsmS+iUH2mgVC2Cg2Qw9m5OKcmNrIg==}
engines: {node: '>=18'}
- conventional-commits-parser@6.3.0:
- resolution: {integrity: sha512-RfOq/Cqy9xV9bOA8N+ZH6DlrDR+5S3Mi0B5kACEjESpE+AviIpAptx9a9cFpWCCvgRtWT+0BbUw+e1BZfts9jg==}
+ conventional-changelog-conventionalcommits@9.3.1:
+ resolution: {integrity: sha512-dTYtpIacRpcZgrvBYvBfArMmK2xvIpv2TaxM0/ZI5CBtNUzvF2x0t15HsbRABWprS6UPmvj+PzHVjSx4qAVKyw==}
+ engines: {node: '>=18'}
+
+ conventional-commits-parser@6.4.0:
+ resolution: {integrity: sha512-tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw==}
engines: {node: '>=18'}
hasBin: true
@@ -3299,8 +3369,8 @@ packages:
cose-base@2.2.0:
resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==}
- cosmiconfig-typescript-loader@6.2.0:
- resolution: {integrity: sha512-GEN39v7TgdxgIoNcdkRE3uiAzQt3UXLyHbRHD6YoL048XAeOomyxaP+Hh/+2C6C2wYjxJ2onhJcsQp+L4YEkVQ==}
+ cosmiconfig-typescript-loader@6.3.0:
+ resolution: {integrity: sha512-Akr82WH1Wfqatyiqpj8HDkO2o2KmJRu1FhKfSNJP3K4IdXwHfEyL7MOb62i1AGQVLtIQM+iCE9CGOtrfhR+mmA==}
engines: {node: '>=v18'}
peerDependencies:
'@types/node': '*'
@@ -3361,8 +3431,8 @@ packages:
peerDependencies:
cytoscape: ^3.2.0
- cytoscape@3.33.2:
- resolution: {integrity: sha512-sj4HXd3DokGhzZAdjDejGvTPLqlt84vNFN8m7bGsOzDY5DyVcxIb2ejIXat2Iy7HxWhdT/N1oKyheJ5YdpsGuw==}
+ cytoscape@3.33.3:
+ resolution: {integrity: sha512-Gej7U+OKR+LZ8kvX7rb2HhCYJ0IhvEFsnkud4SB1PR+BUY/TsSO0dmOW59WEVLu51b1Rm+gQRKoz4bLYxGSZ2g==}
engines: {node: '>=0.10'}
d3-array@2.12.1:
@@ -3647,8 +3717,8 @@ packages:
resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- devalue@5.7.0:
- resolution: {integrity: sha512-qCvc8m7cImp1QDCsiY+C2EdSBWSj7Ucfoq87scSdYboDiIKdvMtFbH1U2VReBls6WMhMaUOoK3ZJEDNG/7zm3w==}
+ devalue@5.8.1:
+ resolution: {integrity: sha512-4CXDYRBGqN+57wVJkuXBYmpAVUSg3L6JAQa/DFqm238G73E1wuyc/JhGQJzN7vUf/CMphYau2zXbfWzDR5aTEw==}
diff@4.0.4:
resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==}
@@ -3691,8 +3761,8 @@ packages:
dompurify@3.2.7:
resolution: {integrity: sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==}
- dompurify@3.3.3:
- resolution: {integrity: sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==}
+ dompurify@3.4.4:
+ resolution: {integrity: sha512-r8K7KGKEcztXfA/nfabSYB2hg9tDphORJTdf8xprN/luSLGmNhOBN8dm1/SYjqLLet6YUFEXOcrdTuwryp/Bew==}
domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
@@ -3714,9 +3784,6 @@ packages:
electron-to-chromium@1.5.132:
resolution: {integrity: sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==}
- electron-to-chromium@1.5.245:
- resolution: {integrity: sha512-rdmGfW47ZhL/oWEJAY4qxRtdly2B98ooTJ0pdEI4jhVLZ6tNf8fPtov2wS1IRKwFJT92le3x4Knxiwzl7cPPpQ==}
-
electron-to-chromium@1.5.286:
resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==}
@@ -3804,6 +3871,9 @@ packages:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
+ es-toolkit@1.46.1:
+ resolution: {integrity: sha512-5eNtXOs3tbfxXOj04tjjseeWkRWaoCjdEI+96DgwzZoe6c9juL49pXlzAFTI72aWC9Y8p7168g6XIKjh7k6pyQ==}
+
es5-ext@0.10.64:
resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
engines: {node: '>=0.10'}
@@ -3958,6 +4028,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.28.0:
+ resolution: {integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -4052,11 +4127,11 @@ packages:
eslint-config-prettier:
optional: true
- eslint-plugin-react-hooks@7.0.1:
- resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==}
+ eslint-plugin-react-hooks@7.1.1:
+ resolution: {integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==}
engines: {node: '>=18'}
peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0
eslint-plugin-react-refresh@0.5.2:
resolution: {integrity: sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==}
@@ -4074,8 +4149,8 @@ packages:
peerDependencies:
eslint: '>=5.0.0'
- eslint-plugin-svelte@3.17.0:
- resolution: {integrity: sha512-sF6wgd5FLS2P8CCaOy2HdYYYEcZ6TwL251dLHUkNmtLnWECk1Dwc+j6VeulmmnFxr7Xs0WNtjweOA+bJ0PnaFw==}
+ eslint-plugin-svelte@3.17.1:
+ resolution: {integrity: sha512-NyiXHtS3Ni7e532RBwS9OXlMKDIrENg3gY+/+ODjZzQx2xhU3NlJ+nIl1a93iUUQeiJL3lS8KLmY+W8hklzweQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.1 || ^9.0.0 || ^10.0.0
@@ -4088,6 +4163,10 @@ packages:
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-scope@9.1.2:
+ resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4100,9 +4179,9 @@ packages:
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- eslint@9.39.4:
- resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint@10.4.0:
+ resolution: {integrity: sha512-loXy6bWOoP3EP6JA7jo6p5jMpBJmHmsNZM5SFRHLdh1MGOPurMnNBj4ZlAbaqUAaQWbCr7jHV4P7gzAyryZWkQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
hasBin: true
peerDependencies:
jiti: '*'
@@ -4121,6 +4200,10 @@ packages:
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ espree@11.2.0:
+ resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
@@ -4130,8 +4213,13 @@ packages:
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
engines: {node: '>=0.10'}
- esrap@2.2.4:
- resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==}
+ esrap@2.2.9:
+ resolution: {integrity: sha512-4KijP+NxCWthMCUC3qHbE6n4vCjqgJS1uAYKhuT/GWfFTf1Qyive2TgOjep+gzbSzRfnNyaN/UU9YmdOt8Eg0A==}
+ peerDependencies:
+ '@typescript-eslint/types': ^8.2.0
+ peerDependenciesMeta:
+ '@typescript-eslint/types':
+ optional: true
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
@@ -4206,15 +4294,15 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-uri@3.1.0:
- resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
+ fast-uri@3.1.2:
+ resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==}
fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
engines: {node: '>= 4.9.1'}
- fastq@1.19.1:
- resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
+ fastq@1.20.1:
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
fault@1.0.4:
resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
@@ -4243,8 +4331,8 @@ packages:
fetch-event-stream@0.1.6:
resolution: {integrity: sha512-GREtJ5HNikdU2AXtZ6E/5bk+aslMU6ie5mPG6H9nvsdDkkHQ6m5lHwmmmDTOBexok9hApQ7EprsXCdmz9ZC68w==}
- file-entry-cache@11.1.2:
- resolution: {integrity: sha512-N2WFfK12gmrK1c1GXOqiAJ1tc5YE+R53zvQ+t5P8S5XhnmKYVB5eZEiLNZKDSmoG8wqqbF9EXYBBW/nef19log==}
+ file-entry-cache@11.1.3:
+ resolution: {integrity: sha512-oMbq0PD6VIiIwMF6LIa7MEwd/l9huKwmqRKXqmrkqIZv8CvRbfowL+L0ryAl8h//HfAS0zS+4SbYoRyAoA6BJA==}
file-entry-cache@4.0.0:
resolution: {integrity: sha512-AVSwsnbV8vH/UVbvgEhf3saVQXORNv0ZzSkvkhQIaia5Tia+JhGTaa/ePUSVoPHQyGayQNmYfkzFi3WZV5zcpA==}
@@ -4318,8 +4406,8 @@ packages:
resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
engines: {node: '>=0.10.0'}
- fs-extra@11.3.4:
- resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==}
+ fs-extra@11.3.5:
+ resolution: {integrity: sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==}
engines: {node: '>=14.14'}
fs-extra@7.0.1:
@@ -4356,8 +4444,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.5.0:
- resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==}
+ get-east-asian-width@1.6.0:
+ resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
@@ -4379,9 +4467,6 @@ packages:
get-tsconfig@4.10.1:
resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
- get-tsconfig@4.13.3:
- resolution: {integrity: sha512-vp8Cj/+9Q/ibZUrq1rhy8mCTQpCk31A3uu9wc1C50yAb3x2pFHOsGdAZQ7jD86ARayyxZUViYeIztW+GE8dcrg==}
-
get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
engines: {node: '>=0.10.0'}
@@ -4422,11 +4507,11 @@ packages:
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- deprecated: Glob versions prior to v9 are no longer supported
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- global-directory@4.0.1:
- resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
- engines: {node: '>=18'}
+ global-directory@5.0.0:
+ resolution: {integrity: sha512-1pgFdhK3J2LeM+dVf2Pd424yHx2ou338lC0ErNP2hPx4j8eW1Sp0XqSjNxtk6Tc4Kr5wlWtSvz8cn2yb7/SG/w==}
+ engines: {node: '>=20'}
global-modules@2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
@@ -4436,16 +4521,12 @@ packages:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
- globals@14.0.0:
- resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
- engines: {node: '>=18'}
-
globals@16.5.0:
resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
engines: {node: '>=18'}
- globals@17.4.0:
- resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
+ globals@17.6.0:
+ resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -4459,8 +4540,8 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@16.1.1:
- resolution: {integrity: sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==}
+ globby@16.2.0:
+ resolution: {integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==}
engines: {node: '>=20'}
globby@9.2.0:
@@ -4543,6 +4624,10 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
+ hasown@2.0.3:
+ resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
+ engines: {node: '>= 0.4'}
+
hast-util-parse-selector@4.0.0:
resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
@@ -4564,8 +4649,8 @@ packages:
hookified@1.15.1:
resolution: {integrity: sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==}
- hookified@2.1.0:
- resolution: {integrity: sha512-ootKng4eaxNxa7rx6FJv2YKef3DuhqbEj3l70oGXwddPQEEnISm50TEZQclqiLTAtilT2nu7TErtCO523hHkyg==}
+ hookified@2.2.0:
+ resolution: {integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==}
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
@@ -4618,8 +4703,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- immer@11.1.4:
- resolution: {integrity: sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw==}
+ immer@11.1.8:
+ resolution: {integrity: sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==}
immutable@5.1.5:
resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==}
@@ -4664,9 +4749,9 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@4.1.1:
- resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ini@6.0.0:
+ resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
@@ -4739,6 +4824,10 @@ packages:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
+ is-core-module@2.16.2:
+ resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
+ engines: {node: '>= 0.4'}
+
is-data-descriptor@1.0.1:
resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
engines: {node: '>= 0.4'}
@@ -5017,6 +5106,9 @@ packages:
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+ json-with-bigint@3.5.8:
+ resolution: {integrity: sha512-eq/4KP6K34kwa7TcFdtvnftvHCD9KvHOGGICWwMFc4dOOKF5t4iYqnfLK8otCRCRv06FXOzGGyqE8h8ElMvvdw==}
+
json2mq@0.2.0:
resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==}
@@ -5032,8 +5124,8 @@ packages:
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
- jsonfile@6.2.0:
- resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
+ jsonfile@6.2.1:
+ resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==}
jstransformer@1.0.0:
resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==}
@@ -5042,8 +5134,8 @@ packages:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
- katex@0.16.45:
- resolution: {integrity: sha512-pQpZbdBu7wCTmQUh7ufPmLr0pFoObnGUoL/yhtwJDgmmQpbkg/0HSVti25Fu4rmd1oCR6NGWe9vqTWuWv3GcNA==}
+ katex@0.16.47:
+ resolution: {integrity: sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==}
hasBin: true
keyv@4.5.4:
@@ -5073,10 +5165,6 @@ packages:
known-css-properties@0.37.0:
resolution: {integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==}
- langium@4.2.2:
- resolution: {integrity: sha512-JUshTRAfHI4/MF9dH2WupvjSXyn8JBuUEWazB8ZVJUtXutT0doDlAv1XKbZ1Pb5sMexa8FF4CFBc0iiul7gbUQ==}
- engines: {node: '>=20.10.0', npm: '>=10.2.3'}
-
language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
@@ -5188,14 +5276,14 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- lint-staged@16.4.0:
- resolution: {integrity: sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==}
- engines: {node: '>=20.17'}
+ lint-staged@17.0.5:
+ resolution: {integrity: sha512-d12yC+/e8RhBjZtaxZn71FyrgU/P5e+uAPifhCLwdosQZP/zamSdKRWDC30ocVIbzDKiFG1McHc/LUgB92GIPw==}
+ engines: {node: '>=22.22.1'}
hasBin: true
- listr2@9.0.5:
- resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
- engines: {node: '>=20.0.0'}
+ listr2@10.2.1:
+ resolution: {integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==}
+ engines: {node: '>=22.13.0'}
load-json-file@4.0.0:
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
@@ -5223,21 +5311,6 @@ packages:
lodash-es@4.18.1:
resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
- lodash.camelcase@4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
-
- lodash.kebabcase@4.1.1:
- resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
-
- lodash.merge@4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
-
- lodash.mergewith@4.6.2:
- resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
-
- lodash.snakecase@4.1.1:
- resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
-
lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
@@ -5247,9 +5320,6 @@ packages:
lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
- lodash.upperfirst@4.3.1:
- resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
-
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -5347,8 +5417,8 @@ packages:
engines: {node: '>= 20'}
hasBin: true
- marked@18.0.0:
- resolution: {integrity: sha512-2e7Qiv/HJSXj8rDEpgTvGKsP8yYtI9xXHKDnrftrmnrJPaFNM7VRb2YCzWaX4BP1iCJ/XPduzDJZMFoqTCcIMA==}
+ marked@18.0.3:
+ resolution: {integrity: sha512-7VT90JOkDeaRWpfjOReRGPEKn0ecdARBkDGL+tT1wZY0efPPqkUxLUSmzy/C7TIylQYJC9STISEsCHrqb/7VIA==}
engines: {node: '>= 20'}
hasBin: true
@@ -5392,8 +5462,8 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- mermaid@11.14.0:
- resolution: {integrity: sha512-GSGloRsBs+JINmmhl0JDwjpuezCsHB4WGI4NASHxL3fHo3o/BRXTxhDLKnln8/Q0lRFRyDdEjmk1/d5Sn1Xz8g==}
+ mermaid@11.15.0:
+ resolution: {integrity: sha512-pTMbcf3rWdtLiYGpmoTjHEpeY8seiy6sR+9nD7LOs8KfUbHE4lOUAprTRqRAcWSQ6MQpdX+YEsxShtGsINtPtw==}
micromatch@3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
@@ -5427,9 +5497,6 @@ packages:
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
- minimatch@3.1.5:
- resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
-
minimatch@9.0.9:
resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -5456,9 +5523,6 @@ packages:
mlly@1.8.0:
resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
- mlly@1.8.2:
- resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
-
monaco-editor@0.55.1:
resolution: {integrity: sha512-jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==}
@@ -5480,6 +5544,11 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ nanoid@3.3.12:
+ resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
nanomatch@1.2.13:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
@@ -5755,8 +5824,8 @@ packages:
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ picomatch@2.3.2:
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
engines: {node: '>=8.6'}
picomatch@4.0.2:
@@ -5944,6 +6013,10 @@ packages:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
+ postcss@8.5.14:
+ resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==}
+ engines: {node: ^10 || ^12 || >=14}
+
postcss@8.5.9:
resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==}
engines: {node: ^10 || ^12 || >=14}
@@ -5968,8 +6041,8 @@ packages:
prettier:
optional: true
- prettier-plugin-svelte@3.5.1:
- resolution: {integrity: sha512-65+fr5+cgIKWKiqM1Doum4uX6bY8iFCdztvvp2RcF+AJoieaw9kJOFMNcJo/bkmKYsxFaM9OsVZK/gWauG/5mg==}
+ prettier-plugin-svelte@3.5.2:
+ resolution: {integrity: sha512-ItFouLvzSFE3ulNl4DKoWM3BGcbDCNVpIyy/Y3F2gC3aNiGLxtFUdffVqO5Z5hhYG+DFT5KULWaxmeFFpdbvaQ==}
peerDependencies:
prettier: ^3.0.0
svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
@@ -5979,8 +6052,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.8.1:
- resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
+ prettier@3.8.3:
+ resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
engines: {node: '>=14'}
hasBin: true
@@ -6040,8 +6113,8 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- qified@0.9.0:
- resolution: {integrity: sha512-4q61YgkHbY6gmwkqm0BsxyLDO3UYdrdiJTJ7JiaZb3xpW1duxn135SB7KqUEkCiuu5O4W+TtwEWP2VjmSRanvA==}
+ qified@0.10.1:
+ resolution: {integrity: sha512-+Owyggi9IxT1ePKGafcI87ubSmxol6smwJ+RAHDQlx9+9cPwFWDiKFFCPuWhr9ignlGpZ9vDQLw67N4dcTVFEA==}
engines: {node: '>=20'}
quansync@0.2.11:
@@ -6057,10 +6130,10 @@ packages:
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- react-dom@19.2.4:
- resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
+ react-dom@19.2.6:
+ resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
peerDependencies:
- react: ^19.2.4
+ react: ^19.2.6
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -6074,8 +6147,8 @@ packages:
peerDependencies:
react: '>= 0.14.0'
- react@19.2.4:
- resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
+ react@19.2.6:
+ resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
engines: {node: '>=0.10.0'}
read-pkg-up@3.0.0:
@@ -6138,10 +6211,6 @@ packages:
resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==}
engines: {node: '>= 0.10'}
- require-directory@2.1.1:
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
- engines: {node: '>=0.10.0'}
-
require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
@@ -6175,6 +6244,11 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
+ resolve@1.22.12:
+ resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
resolve@2.0.0-next.5:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
@@ -6300,6 +6374,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.8.0:
+ resolution: {integrity: sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
@@ -6511,8 +6590,8 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
- string-width@8.2.0:
- resolution: {integrity: sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==}
+ string-width@8.2.1:
+ resolution: {integrity: sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==}
engines: {node: '>=20'}
string.prototype.includes@2.0.1:
@@ -6556,10 +6635,6 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.2:
- resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
- engines: {node: '>=12'}
-
strip-ansi@7.2.0:
resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
engines: {node: '>=12'}
@@ -6619,8 +6694,8 @@ packages:
prettier: '>=3.0.0'
stylelint: '>=16.0.0'
- stylelint@17.6.0:
- resolution: {integrity: sha512-tokrsMIVAR9vAQ/q3UVEr7S0dGXCi7zkCezPRnS2kqPUulvUh5Vgfwngrk4EoAoW7wnrThqTdnTFN5Ra7CaxIg==}
+ stylelint@17.11.1:
+ resolution: {integrity: sha512-+smN/HqVTggUx3iuAzOi9fPh8SrH+cJWlZrYVldXoJ06orWBhZ4Ue/QEp64oei6pVrAh4w3tG+Y12Vw7MbCFRQ==}
engines: {node: '>=20.19.0'}
hasBin: true
@@ -6632,6 +6707,9 @@ packages:
stylis@4.3.6:
resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
+ stylis@4.4.0:
+ resolution: {integrity: sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==}
+
stylus@0.64.0:
resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==}
engines: {node: '>=16'}
@@ -6659,10 +6737,6 @@ packages:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
- supports-color@7.2.0:
- resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
- engines: {node: '>=8'}
-
supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
@@ -6675,17 +6749,17 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte-check@4.4.6:
- resolution: {integrity: sha512-kP1zG81EWaFe9ZyTv4ZXv44Csi6Pkdpb7S3oj6m+K2ec/IcDg/a8LsFsnVLqm2nxtkSwsd5xPj/qFkTBgXHXjg==}
+ svelte-check@4.4.8:
+ resolution: {integrity: sha512-67adfgBox5eNSNIvIIwgFizKGdcRrGpiMoNO2obHcYuLz7iTa8Xgm/NGU3ntMFnNm8K1grFOIG6HhMLX/vcN8w==}
engines: {node: '>= 18.0.0'}
hasBin: true
peerDependencies:
svelte: ^4.0.0 || ^5.0.0-next.0
typescript: '>=5.0.0'
- svelte-eslint-parser@1.6.0:
- resolution: {integrity: sha512-qoB1ehychT6OxEtQAqc/guSqLS20SlA53Uijl7x375s8nlUT0lb9ol/gzraEEatQwsyPTJo87s2CmKL9Xab+Uw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0, pnpm: 10.30.3}
+ svelte-eslint-parser@1.6.1:
+ resolution: {integrity: sha512-hhvSH6kRj46UzrBVO5TaotD+Iuvruj5ccKBcO4wAhVcPTLmIc/c32D8UllBTYO0on4LzYuM0rNzf1lM/gBlkSQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0, pnpm: 10.33.0}
peerDependencies:
svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
peerDependenciesMeta:
@@ -6736,8 +6810,8 @@ packages:
typescript:
optional: true
- svelte@5.55.2:
- resolution: {integrity: sha512-z41M/hi0ZPTzrwVKLvB/R1/Oo08gL1uIib8HZ+FncqxxtY9MLb01emg2fqk+WLZ/lNrrtNDFh7BZLDxAHvMgLw==}
+ svelte@5.55.7:
+ resolution: {integrity: sha512-ymI5ykLPwIHW839E053FQbI1G+jnRFJEw3Kv5Y4njixVWywQBx+NUFpkkKyk5LIb36Fg9DVXSYpqiGekLD0hyw==}
engines: {node: '>=18'}
svg-tags@1.0.0:
@@ -6785,12 +6859,8 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyexec@1.0.4:
- resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
- engines: {node: '>=18'}
-
- tinyexec@1.1.1:
- resolution: {integrity: sha512-VKS/ZaQhhkKFMANmAOhhXVoIfBXblQxGX1myCQ2faQrfmobMftXeJPcZGp0gS07ocvGJWDLZGyOZDadDBqYIJg==}
+ tinyexec@1.1.2:
+ resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==}
engines: {node: '>=18'}
tinyglobby@0.2.14:
@@ -6897,8 +6967,8 @@ packages:
typescript:
optional: true
- tsx@4.21.0:
- resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
+ tsx@4.22.1:
+ resolution: {integrity: sha512-TvncJykhxAzFCk0VQZKBTClall4Pm7qXDSodb6uxi8QFa8X8mT6ABjxxsQ2opDRYxG7AzcRWXaFtruz5HJKuWg==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -6929,20 +6999,15 @@ packages:
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
- typescript-eslint@8.58.1:
- resolution: {integrity: sha512-gf6/oHChByg9HJvhMO1iBexJh12AqqTfnuxscMDOVqfJW3htsdRJI/GfPpHTTcyeB8cSTUY2JcZmVgoyPqcrDg==}
+ typescript-eslint@8.59.3:
+ resolution: {integrity: sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
- typescript-json-schema@0.67.1:
- resolution: {integrity: sha512-vKTZB/RoYTIBdVP7E7vrgHMCssBuhja91wQy498QIVhvfRimaOgjc98uwAXmZ7mbLUytJmOSbF11wPz+ByQeXg==}
- hasBin: true
-
- typescript@5.5.4:
- resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
- engines: {node: '>=14.17'}
+ typescript-json-schema@0.67.3:
+ resolution: {integrity: sha512-QGOi/rZgbo9pDl1G+s3WFHiJZi4vj6zHHfQpxA00J3I7p0VC+JjYgX70NiuZu2liXF3YtSErv5C3ZRKtQSwhoQ==}
hasBin: true
typescript@5.8.2:
@@ -6958,21 +7023,18 @@ packages:
ufo@1.6.1:
resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
- ufo@1.6.3:
- resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
-
unbox-primitive@1.1.0:
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
engines: {node: '>= 0.4'}
- undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@7.16.0:
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
- undici-types@7.18.2:
- resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+ undici-types@7.24.6:
+ resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
- undici@6.23.0:
- resolution: {integrity: sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==}
+ undici@6.25.0:
+ resolution: {integrity: sha512-ZgpWDC5gmNiuY9CnLVXEH8rl50xhRCuLNA97fAUnKi8RRuV4E6KG31pDTsLVUKnohJE0I3XDrTeEydAXRw47xg==}
engines: {node: '>=18.17'}
unherit@1.1.3:
@@ -7037,12 +7099,6 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- update-browserslist-db@1.1.4:
- resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.2.3:
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
@@ -7063,8 +7119,8 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- uuid@11.1.0:
- resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
+ uuid@14.0.0:
+ resolution: {integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==}
hasBin: true
v8-compile-cache-lib@3.0.1:
@@ -7133,8 +7189,8 @@ packages:
vite:
optional: true
- vm2@3.10.4:
- resolution: {integrity: sha512-Gl6r7MN3mkawGurFdp467yDJQ7HdragK2QVVWFbOCd3LPJXJLE2xZFwLCNhp04MTkHruPqLIOs3pYbJQJw/1aA==}
+ vm2@3.11.3:
+ resolution: {integrity: sha512-DO1TTKuOc+veL11VNOvJwRab80mghFKE40Av3bl6pdXs11bdiDMuR73owy+dS2EsTZEvRUeBkkBuDVRjV/RgEw==}
engines: {node: '>=6.0'}
hasBin: true
@@ -7142,28 +7198,8 @@ packages:
resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
engines: {node: '>=0.10.0'}
- vscode-jsonrpc@8.2.0:
- resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
- engines: {node: '>=14.0.0'}
-
- vscode-languageserver-protocol@3.17.5:
- resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==}
-
- vscode-languageserver-textdocument@1.0.12:
- resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
-
- vscode-languageserver-types@3.17.5:
- resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
-
- vscode-languageserver@9.0.1:
- resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==}
- hasBin: true
-
- vscode-uri@3.1.0:
- resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
-
- wavesurfer.js@7.12.5:
- resolution: {integrity: sha512-MSZcA13R9ZlxgYpzfakaSYf8dz5tCdZKYbjtN1qnKbCi+UoyfaTuhvjlXHrITi/fgeO3qWfsH7U3BP1AKnwRNg==}
+ wavesurfer.js@7.12.7:
+ resolution: {integrity: sha512-TIe7hB6OCZysNOZ2cn2NR8Qpko22POWel6rauNcqOammFoH65NYQUM35unNLLMIlUMVYvjJ6w/TTl/G/m+w0nA==}
web-streams-polyfill@3.3.3:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
@@ -7213,6 +7249,10 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
+ wrap-ansi@10.0.0:
+ resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==}
+ engines: {node: '>=20'}
+
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -7257,21 +7297,21 @@ packages:
resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==}
engines: {node: '>= 6'}
- yaml@2.8.2:
- resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
+ yaml@2.9.0:
+ resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
engines: {node: '>= 14.6'}
hasBin: true
yargs-parser@10.1.0:
resolution: {integrity: sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==}
- yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
- yargs@17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
yn@3.1.1:
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
@@ -7293,39 +7333,39 @@ packages:
peerDependencies:
zod: ^3.25.0 || ^4.0.0
- zod@4.1.12:
- resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==}
+ zod@4.4.3:
+ resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
snapshots:
- '@actions/core@3.0.0':
+ '@actions/core@3.0.1':
dependencies:
'@actions/exec': 3.0.0
- '@actions/http-client': 4.0.0
+ '@actions/http-client': 4.0.1
'@actions/exec@3.0.0':
dependencies:
'@actions/io': 3.0.2
- '@actions/github@9.0.0':
+ '@actions/github@9.1.1':
dependencies:
'@actions/http-client': 3.0.2
'@octokit/core': 7.0.6
'@octokit/plugin-paginate-rest': 14.0.0(@octokit/core@7.0.6)
'@octokit/plugin-rest-endpoint-methods': 17.0.0(@octokit/core@7.0.6)
- '@octokit/request': 10.0.7
+ '@octokit/request': 10.0.9
'@octokit/request-error': 7.1.0
- undici: 6.23.0
+ undici: 6.25.0
'@actions/http-client@3.0.2':
dependencies:
tunnel: 0.0.6
- undici: 6.23.0
+ undici: 6.25.0
- '@actions/http-client@4.0.0':
+ '@actions/http-client@4.0.1':
dependencies:
tunnel: 0.0.6
- undici: 6.23.0
+ undici: 6.25.0
'@actions/io@3.0.2': {}
@@ -7335,77 +7375,71 @@ snapshots:
dependencies:
'@ant-design/fast-color': 3.0.1
- '@ant-design/cssinjs-utils@2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@ant-design/cssinjs-utils@2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@ant-design/cssinjs': 2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@ant-design/cssinjs': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@babel/runtime': 7.29.2
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@ant-design/cssinjs@2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@ant-design/cssinjs@2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.28.6
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
- '@rc-component/util': 1.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
csstype: 3.2.3
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
stylis: 4.3.6
'@ant-design/fast-color@3.0.1': {}
'@ant-design/icons-svg@4.4.2': {}
- '@ant-design/icons@6.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@ant-design/icons@6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@ant-design/colors': 8.0.1
'@ant-design/icons-svg': 4.4.2
- '@rc-component/util': 1.10.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@ant-design/react-slick@2.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@ant-design/react-slick@2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.29.2
clsx: 2.1.1
json2mq: 0.2.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
throttle-debounce: 5.0.2
- '@ant-design/x@2.5.0(antd@6.3.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@ant-design/x@2.7.0(antd@6.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@ant-design/colors': 8.0.1
- '@ant-design/cssinjs': 2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@ant-design/cssinjs-utils': 2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@ant-design/cssinjs': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@ant-design/cssinjs-utils': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@ant-design/fast-color': 3.0.1
- '@ant-design/icons': 6.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@ant-design/icons': 6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@babel/runtime': 7.29.2
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- antd: 6.3.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ antd: 6.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
lodash.throttle: 4.1.1
- mermaid: 11.14.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- react-syntax-highlighter: 16.1.1(react@19.2.4)
+ mermaid: 11.15.0
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
+ react-syntax-highlighter: 16.1.1(react@19.2.6)
'@antfu/install-pkg@1.1.0':
dependencies:
package-manager-detector: 1.6.0
- tinyexec: 1.1.1
-
- '@babel/code-frame@7.27.1':
- dependencies:
- '@babel/helper-validator-identifier': 7.28.5
- js-tokens: 4.0.0
- picocolors: 1.1.1
+ tinyexec: 1.1.2
'@babel/code-frame@7.29.0':
dependencies:
@@ -7413,30 +7447,8 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.28.5': {}
-
'@babel/compat-data@7.29.0': {}
- '@babel/core@7.28.5':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
- '@babel/helpers': 7.28.4
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
- '@jridgewell/remapping': 2.3.5
- convert-source-map: 2.0.0
- debug: 4.4.3
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/core@7.29.0':
dependencies:
'@babel/code-frame': 7.29.0
@@ -7457,14 +7469,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.28.5':
- dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.5
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
- jsesc: 3.1.0
-
'@babel/generator@7.29.1':
dependencies:
'@babel/parser': 7.29.0
@@ -7473,14 +7477,6 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/helper-compilation-targets@7.27.2':
- dependencies:
- '@babel/compat-data': 7.28.5
- '@babel/helper-validator-option': 7.27.1
- browserslist: 4.27.0
- lru-cache: 5.1.1
- semver: 6.3.1
-
'@babel/helper-compilation-targets@7.28.6':
dependencies:
'@babel/compat-data': 7.29.0
@@ -7491,13 +7487,6 @@ snapshots:
'@babel/helper-globals@7.28.0': {}
- '@babel/helper-module-imports@7.27.1':
- dependencies:
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-imports@7.28.6':
dependencies:
'@babel/traverse': 7.29.0
@@ -7505,15 +7494,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
@@ -7535,11 +7515,6 @@ snapshots:
'@babel/helper-validator-option@7.27.1': {}
- '@babel/helpers@7.28.4':
- dependencies:
- '@babel/template': 7.27.2
- '@babel/types': 7.28.5
-
'@babel/helpers@7.28.6':
dependencies:
'@babel/template': 7.28.6
@@ -7553,11 +7528,11 @@ snapshots:
dependencies:
'@babel/types': 7.27.1
- '@babel/parser@7.28.5':
+ '@babel/parser@7.29.0':
dependencies:
- '@babel/types': 7.28.5
+ '@babel/types': 7.29.0
- '@babel/parser@7.29.0':
+ '@babel/parser@7.29.3':
dependencies:
'@babel/types': 7.29.0
@@ -7565,13 +7540,7 @@ snapshots:
'@babel/runtime@7.29.2': {}
- '@babel/standalone@7.29.2': {}
-
- '@babel/template@7.27.2':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/standalone@7.29.4': {}
'@babel/template@7.28.6':
dependencies:
@@ -7579,18 +7548,6 @@ snapshots:
'@babel/parser': 7.29.0
'@babel/types': 7.29.0
- '@babel/traverse@7.28.5':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
- '@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/types': 7.28.5
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
'@babel/traverse@7.29.0':
dependencies:
'@babel/code-frame': 7.29.0
@@ -7613,11 +7570,6 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/types@7.28.5':
- dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
-
'@babel/types@7.29.0':
dependencies:
'@babel/helper-string-parser': 7.27.1
@@ -7625,7 +7577,7 @@ snapshots:
'@braintree/sanitize-url@7.1.2': {}
- '@cacheable/memory@2.0.8':
+ '@cacheable/memory@2.0.9':
dependencies:
'@cacheable/utils': 2.4.1
'@keyv/bigmap': 1.3.1(keyv@5.6.0)
@@ -7637,9 +7589,9 @@ snapshots:
hashery: 1.5.1
keyv: 5.6.0
- '@changesets/apply-release-plan@7.1.0':
+ '@changesets/apply-release-plan@7.1.1':
dependencies:
- '@changesets/config': 3.1.3
+ '@changesets/config': 3.1.4
'@changesets/get-version-range-type': 0.4.0
'@changesets/git': 3.0.4
'@changesets/should-skip-package': 0.1.2
@@ -7651,30 +7603,30 @@ snapshots:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.7.4
+ semver: 7.8.0
- '@changesets/assemble-release-plan@6.0.9':
+ '@changesets/assemble-release-plan@6.0.10':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/get-dependents-graph': 2.1.4
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
- semver: 7.7.4
+ semver: 7.8.0
'@changesets/changelog-git@0.2.1':
dependencies:
'@changesets/types': 6.1.0
- '@changesets/cli@2.30.0(@types/node@25.5.2)':
+ '@changesets/cli@2.31.0(@types/node@25.8.0)':
dependencies:
- '@changesets/apply-release-plan': 7.1.0
- '@changesets/assemble-release-plan': 6.0.9
+ '@changesets/apply-release-plan': 7.1.1
+ '@changesets/assemble-release-plan': 6.0.10
'@changesets/changelog-git': 0.2.1
- '@changesets/config': 3.1.3
+ '@changesets/config': 3.1.4
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.3
- '@changesets/get-release-plan': 4.0.15
+ '@changesets/get-dependents-graph': 2.1.4
+ '@changesets/get-release-plan': 4.0.16
'@changesets/git': 3.0.4
'@changesets/logger': 0.1.1
'@changesets/pre': 2.0.2
@@ -7682,7 +7634,7 @@ snapshots:
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@changesets/write': 0.4.0
- '@inquirer/external-editor': 1.0.3(@types/node@25.5.2)
+ '@inquirer/external-editor': 1.0.3(@types/node@25.8.0)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
enquirer: 2.4.1
@@ -7691,16 +7643,16 @@ snapshots:
package-manager-detector: 0.2.11
picocolors: 1.1.1
resolve-from: 5.0.0
- semver: 7.7.4
+ semver: 7.8.0
spawndamnit: 3.0.1
term-size: 2.2.1
transitivePeerDependencies:
- '@types/node'
- '@changesets/config@3.1.3':
+ '@changesets/config@3.1.4':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.3
+ '@changesets/get-dependents-graph': 2.1.4
'@changesets/logger': 0.1.1
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
@@ -7712,12 +7664,12 @@ snapshots:
dependencies:
extendable-error: 0.1.7
- '@changesets/get-dependents-graph@2.1.3':
+ '@changesets/get-dependents-graph@2.1.4':
dependencies:
'@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
picocolors: 1.1.1
- semver: 7.7.4
+ semver: 7.8.0
'@changesets/get-github-info@0.8.0':
dependencies:
@@ -7726,10 +7678,10 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/get-release-plan@4.0.15':
+ '@changesets/get-release-plan@4.0.16':
dependencies:
- '@changesets/assemble-release-plan': 6.0.9
- '@changesets/config': 3.1.3
+ '@changesets/assemble-release-plan': 6.0.10
+ '@changesets/config': 3.1.4
'@changesets/pre': 2.0.2
'@changesets/read': 0.6.7
'@changesets/types': 6.1.0
@@ -7785,150 +7737,131 @@ snapshots:
'@changesets/types': 6.1.0
fs-extra: 7.0.1
human-id: 4.1.3
- prettier: 2.8.8
-
- '@chevrotain/cst-dts-gen@12.0.0':
- dependencies:
- '@chevrotain/gast': 12.0.0
- '@chevrotain/types': 12.0.0
-
- '@chevrotain/gast@12.0.0':
- dependencies:
- '@chevrotain/types': 12.0.0
-
- '@chevrotain/regexp-to-ast@12.0.0': {}
-
- '@chevrotain/types@12.0.0': {}
+ prettier: 2.8.8
- '@chevrotain/utils@12.0.0': {}
+ '@chevrotain/types@11.1.2': {}
- '@commitlint/cli@20.5.0(@types/node@25.5.2)(conventional-commits-parser@6.3.0)(typescript@5.9.3)':
+ '@commitlint/cli@21.0.1(@types/node@25.8.0)(conventional-commits-parser@6.4.0)(typescript@5.9.3)':
dependencies:
- '@commitlint/format': 20.5.0
- '@commitlint/lint': 20.5.0
- '@commitlint/load': 20.5.0(@types/node@25.5.2)(typescript@5.9.3)
- '@commitlint/read': 20.5.0(conventional-commits-parser@6.3.0)
- '@commitlint/types': 20.5.0
- tinyexec: 1.0.4
- yargs: 17.7.2
+ '@commitlint/format': 21.0.1
+ '@commitlint/lint': 21.0.1
+ '@commitlint/load': 21.0.1(@types/node@25.8.0)(typescript@5.9.3)
+ '@commitlint/read': 21.0.1(conventional-commits-parser@6.4.0)
+ '@commitlint/types': 21.0.1
+ tinyexec: 1.1.2
+ yargs: 18.0.0
transitivePeerDependencies:
- '@types/node'
- conventional-commits-filter
- conventional-commits-parser
- typescript
- '@commitlint/config-conventional@20.5.0':
+ '@commitlint/config-conventional@21.0.1':
dependencies:
- '@commitlint/types': 20.5.0
- conventional-changelog-conventionalcommits: 9.3.0
+ '@commitlint/types': 21.0.1
+ conventional-changelog-conventionalcommits: 9.3.1
- '@commitlint/config-validator@20.5.0':
+ '@commitlint/config-validator@21.0.1':
dependencies:
- '@commitlint/types': 20.5.0
- ajv: 8.18.0
+ '@commitlint/types': 21.0.1
+ ajv: 8.20.0
- '@commitlint/ensure@20.5.0':
+ '@commitlint/ensure@21.0.1':
dependencies:
- '@commitlint/types': 20.5.0
- lodash.camelcase: 4.3.0
- lodash.kebabcase: 4.1.1
- lodash.snakecase: 4.1.1
- lodash.startcase: 4.4.0
- lodash.upperfirst: 4.3.1
+ '@commitlint/types': 21.0.1
+ es-toolkit: 1.46.1
- '@commitlint/execute-rule@20.0.0': {}
+ '@commitlint/execute-rule@21.0.1': {}
- '@commitlint/format@20.5.0':
+ '@commitlint/format@21.0.1':
dependencies:
- '@commitlint/types': 20.5.0
+ '@commitlint/types': 21.0.1
picocolors: 1.1.1
- '@commitlint/is-ignored@20.5.0':
+ '@commitlint/is-ignored@21.0.1':
dependencies:
- '@commitlint/types': 20.5.0
- semver: 7.7.4
+ '@commitlint/types': 21.0.1
+ semver: 7.8.0
- '@commitlint/lint@20.5.0':
+ '@commitlint/lint@21.0.1':
dependencies:
- '@commitlint/is-ignored': 20.5.0
- '@commitlint/parse': 20.5.0
- '@commitlint/rules': 20.5.0
- '@commitlint/types': 20.5.0
+ '@commitlint/is-ignored': 21.0.1
+ '@commitlint/parse': 21.0.1
+ '@commitlint/rules': 21.0.1
+ '@commitlint/types': 21.0.1
- '@commitlint/load@20.5.0(@types/node@25.5.2)(typescript@5.9.3)':
+ '@commitlint/load@21.0.1(@types/node@25.8.0)(typescript@5.9.3)':
dependencies:
- '@commitlint/config-validator': 20.5.0
- '@commitlint/execute-rule': 20.0.0
- '@commitlint/resolve-extends': 20.5.0
- '@commitlint/types': 20.5.0
+ '@commitlint/config-validator': 21.0.1
+ '@commitlint/execute-rule': 21.0.1
+ '@commitlint/resolve-extends': 21.0.1
+ '@commitlint/types': 21.0.1
cosmiconfig: 9.0.1(typescript@5.9.3)
- cosmiconfig-typescript-loader: 6.2.0(@types/node@25.5.2)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3)
+ cosmiconfig-typescript-loader: 6.3.0(@types/node@25.8.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3)
+ es-toolkit: 1.46.1
is-plain-obj: 4.1.0
- lodash.mergewith: 4.6.2
picocolors: 1.1.1
transitivePeerDependencies:
- '@types/node'
- typescript
- '@commitlint/message@20.4.3': {}
+ '@commitlint/message@21.0.1': {}
- '@commitlint/parse@20.5.0':
+ '@commitlint/parse@21.0.1':
dependencies:
- '@commitlint/types': 20.5.0
- conventional-changelog-angular: 8.3.0
- conventional-commits-parser: 6.3.0
+ '@commitlint/types': 21.0.1
+ conventional-changelog-angular: 8.3.1
+ conventional-commits-parser: 6.4.0
- '@commitlint/read@20.5.0(conventional-commits-parser@6.3.0)':
+ '@commitlint/read@21.0.1(conventional-commits-parser@6.4.0)':
dependencies:
- '@commitlint/top-level': 20.4.3
- '@commitlint/types': 20.5.0
- git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0)
- minimist: 1.2.8
- tinyexec: 1.0.4
+ '@commitlint/top-level': 21.0.1
+ '@commitlint/types': 21.0.1
+ git-raw-commits: 5.0.1(conventional-commits-parser@6.4.0)
+ tinyexec: 1.1.2
transitivePeerDependencies:
- conventional-commits-filter
- conventional-commits-parser
- '@commitlint/resolve-extends@20.5.0':
+ '@commitlint/resolve-extends@21.0.1':
dependencies:
- '@commitlint/config-validator': 20.5.0
- '@commitlint/types': 20.5.0
- global-directory: 4.0.1
- import-meta-resolve: 4.2.0
- lodash.mergewith: 4.6.2
+ '@commitlint/config-validator': 21.0.1
+ '@commitlint/types': 21.0.1
+ es-toolkit: 1.46.1
+ global-directory: 5.0.0
resolve-from: 5.0.0
- '@commitlint/rules@20.5.0':
+ '@commitlint/rules@21.0.1':
dependencies:
- '@commitlint/ensure': 20.5.0
- '@commitlint/message': 20.4.3
- '@commitlint/to-lines': 20.0.0
- '@commitlint/types': 20.5.0
+ '@commitlint/ensure': 21.0.1
+ '@commitlint/message': 21.0.1
+ '@commitlint/to-lines': 21.0.1
+ '@commitlint/types': 21.0.1
- '@commitlint/to-lines@20.0.0': {}
+ '@commitlint/to-lines@21.0.1': {}
- '@commitlint/top-level@20.4.3':
+ '@commitlint/top-level@21.0.1':
dependencies:
escalade: 3.2.0
- '@commitlint/types@20.5.0':
+ '@commitlint/types@21.0.1':
dependencies:
- conventional-commits-parser: 6.3.0
+ conventional-commits-parser: 6.4.0
picocolors: 1.1.1
- '@conventional-changelog/git-client@2.6.0(conventional-commits-parser@6.3.0)':
+ '@conventional-changelog/git-client@2.7.0(conventional-commits-parser@6.4.0)':
dependencies:
'@simple-libs/child-process-utils': 1.0.2
'@simple-libs/stream-utils': 1.2.0
- semver: 7.7.4
+ semver: 7.8.0
optionalDependencies:
- conventional-commits-parser: 6.3.0
+ conventional-commits-parser: 6.4.0
'@cspotcode/source-map-support@0.8.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.9
- '@csstools/css-calc@3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
+ '@csstools/css-calc@3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
dependencies:
'@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
'@csstools/css-tokenizer': 4.0.0
@@ -7937,7 +7870,7 @@ snapshots:
dependencies:
'@csstools/css-tokenizer': 4.0.0
- '@csstools/css-syntax-patches-for-csstree@1.1.2(css-tree@3.2.1)':
+ '@csstools/css-syntax-patches-for-csstree@1.1.4(css-tree@3.2.1)':
optionalDependencies:
css-tree: 3.2.1
@@ -7985,6 +7918,9 @@ snapshots:
'@esbuild/aix-ppc64@0.27.3':
optional: true
+ '@esbuild/aix-ppc64@0.28.0':
+ optional: true
+
'@esbuild/android-arm64@0.19.12':
optional: true
@@ -7994,6 +7930,9 @@ snapshots:
'@esbuild/android-arm64@0.27.3':
optional: true
+ '@esbuild/android-arm64@0.28.0':
+ optional: true
+
'@esbuild/android-arm@0.19.12':
optional: true
@@ -8003,6 +7942,9 @@ snapshots:
'@esbuild/android-arm@0.27.3':
optional: true
+ '@esbuild/android-arm@0.28.0':
+ optional: true
+
'@esbuild/android-x64@0.19.12':
optional: true
@@ -8012,6 +7954,9 @@ snapshots:
'@esbuild/android-x64@0.27.3':
optional: true
+ '@esbuild/android-x64@0.28.0':
+ optional: true
+
'@esbuild/darwin-arm64@0.19.12':
optional: true
@@ -8021,6 +7966,9 @@ snapshots:
'@esbuild/darwin-arm64@0.27.3':
optional: true
+ '@esbuild/darwin-arm64@0.28.0':
+ optional: true
+
'@esbuild/darwin-x64@0.19.12':
optional: true
@@ -8030,6 +7978,9 @@ snapshots:
'@esbuild/darwin-x64@0.27.3':
optional: true
+ '@esbuild/darwin-x64@0.28.0':
+ optional: true
+
'@esbuild/freebsd-arm64@0.19.12':
optional: true
@@ -8039,6 +7990,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.27.3':
optional: true
+ '@esbuild/freebsd-arm64@0.28.0':
+ optional: true
+
'@esbuild/freebsd-x64@0.19.12':
optional: true
@@ -8048,6 +8002,9 @@ snapshots:
'@esbuild/freebsd-x64@0.27.3':
optional: true
+ '@esbuild/freebsd-x64@0.28.0':
+ optional: true
+
'@esbuild/linux-arm64@0.19.12':
optional: true
@@ -8057,6 +8014,9 @@ snapshots:
'@esbuild/linux-arm64@0.27.3':
optional: true
+ '@esbuild/linux-arm64@0.28.0':
+ optional: true
+
'@esbuild/linux-arm@0.19.12':
optional: true
@@ -8066,6 +8026,9 @@ snapshots:
'@esbuild/linux-arm@0.27.3':
optional: true
+ '@esbuild/linux-arm@0.28.0':
+ optional: true
+
'@esbuild/linux-ia32@0.19.12':
optional: true
@@ -8075,6 +8038,9 @@ snapshots:
'@esbuild/linux-ia32@0.27.3':
optional: true
+ '@esbuild/linux-ia32@0.28.0':
+ optional: true
+
'@esbuild/linux-loong64@0.14.54':
optional: true
@@ -8087,6 +8053,9 @@ snapshots:
'@esbuild/linux-loong64@0.27.3':
optional: true
+ '@esbuild/linux-loong64@0.28.0':
+ optional: true
+
'@esbuild/linux-mips64el@0.19.12':
optional: true
@@ -8096,6 +8065,9 @@ snapshots:
'@esbuild/linux-mips64el@0.27.3':
optional: true
+ '@esbuild/linux-mips64el@0.28.0':
+ optional: true
+
'@esbuild/linux-ppc64@0.19.12':
optional: true
@@ -8105,6 +8077,9 @@ snapshots:
'@esbuild/linux-ppc64@0.27.3':
optional: true
+ '@esbuild/linux-ppc64@0.28.0':
+ optional: true
+
'@esbuild/linux-riscv64@0.19.12':
optional: true
@@ -8114,6 +8089,9 @@ snapshots:
'@esbuild/linux-riscv64@0.27.3':
optional: true
+ '@esbuild/linux-riscv64@0.28.0':
+ optional: true
+
'@esbuild/linux-s390x@0.19.12':
optional: true
@@ -8123,6 +8101,9 @@ snapshots:
'@esbuild/linux-s390x@0.27.3':
optional: true
+ '@esbuild/linux-s390x@0.28.0':
+ optional: true
+
'@esbuild/linux-x64@0.19.12':
optional: true
@@ -8132,12 +8113,18 @@ snapshots:
'@esbuild/linux-x64@0.27.3':
optional: true
+ '@esbuild/linux-x64@0.28.0':
+ optional: true
+
'@esbuild/netbsd-arm64@0.27.0':
optional: true
'@esbuild/netbsd-arm64@0.27.3':
optional: true
+ '@esbuild/netbsd-arm64@0.28.0':
+ optional: true
+
'@esbuild/netbsd-x64@0.19.12':
optional: true
@@ -8147,12 +8134,18 @@ snapshots:
'@esbuild/netbsd-x64@0.27.3':
optional: true
+ '@esbuild/netbsd-x64@0.28.0':
+ optional: true
+
'@esbuild/openbsd-arm64@0.27.0':
optional: true
'@esbuild/openbsd-arm64@0.27.3':
optional: true
+ '@esbuild/openbsd-arm64@0.28.0':
+ optional: true
+
'@esbuild/openbsd-x64@0.19.12':
optional: true
@@ -8162,12 +8155,18 @@ snapshots:
'@esbuild/openbsd-x64@0.27.3':
optional: true
+ '@esbuild/openbsd-x64@0.28.0':
+ optional: true
+
'@esbuild/openharmony-arm64@0.27.0':
optional: true
'@esbuild/openharmony-arm64@0.27.3':
optional: true
+ '@esbuild/openharmony-arm64@0.28.0':
+ optional: true
+
'@esbuild/sunos-x64@0.19.12':
optional: true
@@ -8177,6 +8176,9 @@ snapshots:
'@esbuild/sunos-x64@0.27.3':
optional: true
+ '@esbuild/sunos-x64@0.28.0':
+ optional: true
+
'@esbuild/win32-arm64@0.19.12':
optional: true
@@ -8186,6 +8188,9 @@ snapshots:
'@esbuild/win32-arm64@0.27.3':
optional: true
+ '@esbuild/win32-arm64@0.28.0':
+ optional: true
+
'@esbuild/win32-ia32@0.19.12':
optional: true
@@ -8195,6 +8200,9 @@ snapshots:
'@esbuild/win32-ia32@0.27.3':
optional: true
+ '@esbuild/win32-ia32@0.28.0':
+ optional: true
+
'@esbuild/win32-x64@0.19.12':
optional: true
@@ -8204,64 +8212,47 @@ snapshots:
'@esbuild/win32-x64@0.27.3':
optional: true
- '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.6.1))':
+ '@esbuild/win32-x64@0.28.0':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.9.1(eslint@10.4.0(jiti@2.6.1))':
dependencies:
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.2': {}
- '@eslint/compat@2.0.4(eslint@9.39.4(jiti@2.6.1))':
+ '@eslint/compat@2.1.0(eslint@10.4.0(jiti@2.6.1))':
dependencies:
- '@eslint/core': 1.2.0
+ '@eslint/core': 1.2.1
optionalDependencies:
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
- '@eslint/config-array@0.21.2':
+ '@eslint/config-array@0.23.5':
dependencies:
- '@eslint/object-schema': 2.1.7
+ '@eslint/object-schema': 3.0.5
debug: 4.4.3
- minimatch: 3.1.5
+ minimatch: 10.2.5
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.4.2':
- dependencies:
- '@eslint/core': 0.17.0
-
- '@eslint/core@0.17.0':
+ '@eslint/config-helpers@0.6.0':
dependencies:
- '@types/json-schema': 7.0.15
+ '@eslint/core': 1.2.1
- '@eslint/core@1.2.0':
+ '@eslint/core@1.2.1':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.3.5':
- dependencies:
- ajv: 6.14.0
- debug: 4.4.3
- espree: 10.4.0
- globals: 14.0.0
- ignore: 5.3.2
- import-fresh: 3.3.1
- js-yaml: 4.1.1
- minimatch: 3.1.5
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
-
- '@eslint/js@10.0.1(eslint@9.39.4(jiti@2.6.1))':
+ '@eslint/js@10.0.1(eslint@10.4.0(jiti@2.6.1))':
optionalDependencies:
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
- '@eslint/js@9.39.4': {}
+ '@eslint/object-schema@3.0.5': {}
- '@eslint/object-schema@2.1.7': {}
-
- '@eslint/plugin-kit@0.4.1':
+ '@eslint/plugin-kit@0.7.1':
dependencies:
- '@eslint/core': 0.17.0
+ '@eslint/core': 1.2.1
levn: 0.4.1
'@formatjs/ecma402-abstract@2.3.4':
@@ -8290,26 +8281,26 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@gradio/atoms@0.23.0(svelte@5.55.2)':
+ '@gradio/atoms@0.23.0(svelte@5.55.7(@typescript-eslint/types@8.59.3))':
dependencies:
- '@gradio/icons': 0.15.1(svelte@5.55.2)
- '@gradio/utils': 0.12.2(svelte@5.55.2)
- svelte: 5.55.2
+ '@gradio/icons': 0.15.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
+ '@gradio/utils': 0.12.2(svelte@5.55.7(@typescript-eslint/types@8.59.3))
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
'@gradio/client@2.1.0':
dependencies:
fetch-event-stream: 0.1.6
- '@gradio/icons@0.15.1(svelte@5.55.2)':
+ '@gradio/icons@0.15.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))':
dependencies:
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
- '@gradio/preview@0.15.2(@babel/core@7.29.0)(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2))(postcss@8.5.9)(rollup@4.59.0)(svelte@5.55.2)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)':
+ '@gradio/preview@0.15.2(@babel/core@7.29.0)(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0))(postcss@8.5.14)(rollup@4.59.0)(svelte@5.55.7(@typescript-eslint/types@8.59.3))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)':
dependencies:
'@originjs/vite-plugin-commonjs': 1.0.3
'@rollup/plugin-sucrase': 5.1.0(rollup@4.59.0)
'@rollup/plugin-terser': 0.4.4(rollup@4.59.0)
- '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))
'@types/which': 3.0.4
coffeescript: 2.7.0
lightningcss: 1.31.1
@@ -8317,10 +8308,10 @@ snapshots:
sass: 1.97.3
stylus: 0.64.0
sucrase: 3.35.1
- sugarss: 5.0.1(postcss@8.5.9)
- svelte-preprocess: 6.0.3(@babel/core@7.29.0)(coffeescript@2.7.0)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2))(postcss@8.5.9)(pug@3.0.3)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(svelte@5.55.2)(typescript@5.9.3)
+ sugarss: 5.0.1(postcss@8.5.14)
+ svelte-preprocess: 6.0.3(@babel/core@7.29.0)(coffeescript@2.7.0)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0))(postcss@8.5.14)(pug@3.0.3)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(svelte@5.55.7(@typescript-eslint/types@8.59.3))(typescript@5.9.3)
typescript: 5.9.3
- vite: 7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
which: 5.0.0
yootils: 0.3.1
transitivePeerDependencies:
@@ -8343,56 +8334,61 @@ snapshots:
amuchina: 1.0.12
sanitize-html: 2.17.2
- '@gradio/statustracker@0.13.1(svelte@5.55.2)':
+ '@gradio/statustracker@0.13.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))':
dependencies:
- '@gradio/atoms': 0.23.0(svelte@5.55.2)
- '@gradio/icons': 0.15.1(svelte@5.55.2)
+ '@gradio/atoms': 0.23.0(svelte@5.55.7(@typescript-eslint/types@8.59.3))
+ '@gradio/icons': 0.15.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
'@gradio/sanitize': 0.2.0
- '@gradio/utils': 0.12.2(svelte@5.55.2)
- svelte: 5.55.2
+ '@gradio/utils': 0.12.2(svelte@5.55.7(@typescript-eslint/types@8.59.3))
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
- '@gradio/theme@0.6.1(svelte@5.55.2)':
+ '@gradio/theme@0.6.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))':
dependencies:
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
- '@gradio/utils@0.11.3(svelte@5.55.2)':
+ '@gradio/utils@0.11.3(svelte@5.55.7(@typescript-eslint/types@8.59.3))':
dependencies:
- '@gradio/theme': 0.6.1(svelte@5.55.2)
+ '@gradio/theme': 0.6.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
transitivePeerDependencies:
- svelte
- '@gradio/utils@0.12.2(svelte@5.55.2)':
+ '@gradio/utils@0.12.2(svelte@5.55.7(@typescript-eslint/types@8.59.3))':
dependencies:
- '@gradio/theme': 0.6.1(svelte@5.55.2)
- svelte-i18n: 4.0.1(svelte@5.55.2)
+ '@gradio/theme': 0.6.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
+ svelte-i18n: 4.0.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
transitivePeerDependencies:
- svelte
- '@humanfs/core@0.19.1': {}
+ '@humanfs/core@0.19.2':
+ dependencies:
+ '@humanfs/types': 0.15.0
- '@humanfs/node@0.16.7':
+ '@humanfs/node@0.16.8':
dependencies:
- '@humanfs/core': 0.19.1
+ '@humanfs/core': 0.19.2
+ '@humanfs/types': 0.15.0
'@humanwhocodes/retry': 0.4.3
+ '@humanfs/types@0.15.0': {}
+
'@humanwhocodes/module-importer@1.0.1': {}
'@humanwhocodes/retry@0.4.3': {}
'@iconify/types@2.0.0': {}
- '@iconify/utils@3.1.0':
+ '@iconify/utils@3.1.3':
dependencies:
'@antfu/install-pkg': 1.1.0
'@iconify/types': 2.0.0
- mlly: 1.8.2
+ import-meta-resolve: 4.2.0
- '@inquirer/external-editor@1.0.3(@types/node@25.5.2)':
+ '@inquirer/external-editor@1.0.3(@types/node@25.8.0)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 25.5.2
+ '@types/node': 25.8.0
'@isaacs/balanced-match@4.0.1':
optional: true
@@ -8450,7 +8446,7 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.28.6
+ '@babel/runtime': 7.29.2
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
@@ -8461,7 +8457,7 @@ snapshots:
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.28.6
+ '@babel/runtime': 7.29.2
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -8479,31 +8475,31 @@ snapshots:
js-yaml: 4.1.0
tinyglobby: 0.2.14
- '@mermaid-js/parser@1.1.0':
+ '@mermaid-js/parser@1.1.1':
dependencies:
- langium: 4.2.2
+ '@chevrotain/types': 11.1.2
- '@microsoft/api-extractor-model@7.30.7(@types/node@25.5.2)':
+ '@microsoft/api-extractor-model@7.30.7(@types/node@25.8.0)':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@25.5.2)
+ '@rushstack/node-core-library': 5.14.0(@types/node@25.8.0)
transitivePeerDependencies:
- '@types/node'
optional: true
- '@microsoft/api-extractor@7.52.10(@types/node@25.5.2)':
+ '@microsoft/api-extractor@7.52.10(@types/node@25.8.0)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.7(@types/node@25.5.2)
+ '@microsoft/api-extractor-model': 7.30.7(@types/node@25.8.0)
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@25.5.2)
+ '@rushstack/node-core-library': 5.14.0(@types/node@25.8.0)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.4(@types/node@25.5.2)
- '@rushstack/ts-command-line': 5.0.2(@types/node@25.5.2)
+ '@rushstack/terminal': 0.15.4(@types/node@25.8.0)
+ '@rushstack/ts-command-line': 5.0.2(@types/node@25.8.0)
lodash: 4.17.23
minimatch: 10.0.3
- resolve: 1.22.11
+ resolve: 1.22.12
semver: 7.5.4
source-map: 0.6.1
typescript: 5.8.2
@@ -8516,7 +8512,7 @@ snapshots:
'@microsoft/tsdoc': 0.15.1
ajv: 8.12.0
jju: 1.4.0
- resolve: 1.22.11
+ resolve: 1.22.12
optional: true
'@microsoft/tsdoc@0.15.1':
@@ -8526,12 +8522,12 @@ snapshots:
dependencies:
state-local: 1.0.7
- '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@monaco-editor/loader': 1.6.1
monaco-editor: 0.55.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
'@mrmlnc/readdir-enhanced@2.2.1':
dependencies:
@@ -8557,7 +8553,7 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.19.1
+ fastq: 1.20.1
'@octokit/auth-token@6.0.0': {}
@@ -8565,20 +8561,20 @@ snapshots:
dependencies:
'@octokit/auth-token': 6.0.0
'@octokit/graphql': 9.0.3
- '@octokit/request': 10.0.7
+ '@octokit/request': 10.0.9
'@octokit/request-error': 7.1.0
'@octokit/types': 16.0.0
before-after-hook: 4.0.0
universal-user-agent: 7.0.3
- '@octokit/endpoint@11.0.2':
+ '@octokit/endpoint@11.0.3':
dependencies:
'@octokit/types': 16.0.0
universal-user-agent: 7.0.3
'@octokit/graphql@9.0.3':
dependencies:
- '@octokit/request': 10.0.7
+ '@octokit/request': 10.0.9
'@octokit/types': 16.0.0
universal-user-agent: 7.0.3
@@ -8598,12 +8594,14 @@ snapshots:
dependencies:
'@octokit/types': 16.0.0
- '@octokit/request@10.0.7':
+ '@octokit/request@10.0.9':
dependencies:
- '@octokit/endpoint': 11.0.2
+ '@octokit/endpoint': 11.0.3
'@octokit/request-error': 7.1.0
'@octokit/types': 16.0.0
+ content-type: 2.0.0
fast-content-type-parse: 3.0.0
+ json-with-bigint: 3.5.8
universal-user-agent: 7.0.3
'@octokit/types@16.0.0':
@@ -8658,7 +8656,7 @@ snapshots:
detect-libc: 2.1.2
is-glob: 4.0.3
node-addon-api: 7.1.1
- picomatch: 4.0.3
+ picomatch: 4.0.4
optionalDependencies:
'@parcel/watcher-android-arm64': 2.5.6
'@parcel/watcher-darwin-arm64': 2.5.6
@@ -8684,363 +8682,347 @@ snapshots:
dependencies:
'@babel/runtime': 7.29.2
- '@rc-component/cascader@1.14.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/cascader@1.15.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/select': 1.6.15(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tree': 1.2.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/select': 1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tree': 1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/checkbox@2.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/checkbox@2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/collapse@1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/collapse@1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.29.2
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/color-picker@3.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/color-picker@3.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@ant-design/fast-color': 3.0.1
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/context@2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/context@2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/dialog@1.8.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/dialog@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/portal': 2.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/drawer@1.4.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/drawer@1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/portal': 2.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/dropdown@1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/dropdown@1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/form@1.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/form@1.8.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@rc-component/async-validator': 5.1.0
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/image@1.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/image@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/portal': 2.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/input-number@1.6.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/input-number@1.6.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@rc-component/mini-decimal': 1.1.3
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/input@1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/input@1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/mentions@1.6.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/mentions@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/input': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/menu': 1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/textarea': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/input': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/menu': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/menu@1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/menu@1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/overflow': 1.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/overflow': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
'@rc-component/mini-decimal@1.1.3':
dependencies:
'@babel/runtime': 7.29.2
- '@rc-component/motion@1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/motion@1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/mutate-observer@2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/mutate-observer@2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/notification@1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/notification@2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/overflow@1.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/overflow@1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.29.2
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/pagination@1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/pagination@1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/picker@1.9.1(dayjs@1.11.20)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/picker@1.10.0(dayjs@1.11.20)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/overflow': 1.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/overflow': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
optionalDependencies:
dayjs: 1.11.20
- '@rc-component/portal@2.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/portal@2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/progress@1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/progress@1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/qrcode@1.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/qrcode@1.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.29.2
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/rate@1.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/rate@1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/resize-observer@1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/resize-observer@1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/segmented@1.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/segmented@1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.29.2
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/select@1.6.15(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/select@1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/overflow': 1.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/virtual-list': 1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/overflow': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/virtual-list': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/slider@1.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/slider@1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/steps@1.2.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/steps@1.2.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/switch@1.0.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/switch@1.0.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/table@1.9.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/table@1.10.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/context': 2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/virtual-list': 1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/context': 2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/virtual-list': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/tabs@1.7.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/tabs@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/dropdown': 1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/menu': 1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/dropdown': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/menu': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/textarea@1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/tooltip@1.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/input': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/tooltip@1.4.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/tour@2.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/tour@2.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/tree-select@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/portal': 2.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/select': 1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tree': 1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/tree-select@1.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/tree@1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/select': 1.6.15(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tree': 1.2.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/virtual-list': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/tree@1.2.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/trigger@3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/virtual-list': 1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/trigger@3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/upload@1.1.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/portal': 2.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
-
- '@rc-component/upload@1.1.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
-
- '@rc-component/util@1.10.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- is-mobile: 5.0.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- react-is: 18.3.1
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rc-component/util@1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/util@1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
is-mobile: 5.0.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
react-is: 18.3.1
- '@rc-component/util@1.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/util@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
is-mobile: 5.0.0
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
react-is: 18.3.1
- '@rc-component/virtual-list@1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@rc-component/virtual-list@1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
dependencies:
'@babel/runtime': 7.29.2
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
- '@rolldown/pluginutils@1.0.0-rc.7': {}
+ '@rolldown/pluginutils@1.0.1': {}
'@rollup/plugin-sucrase@5.1.0(rollup@4.59.0)':
dependencies:
@@ -9208,37 +9190,37 @@ snapshots:
'@rtsao/scc@1.1.0': {}
- '@rushstack/node-core-library@5.14.0(@types/node@25.5.2)':
+ '@rushstack/node-core-library@5.14.0(@types/node@25.8.0)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
ajv-formats: 3.0.1(ajv@8.13.0)
- fs-extra: 11.3.4
+ fs-extra: 11.3.5
import-lazy: 4.0.0
jju: 1.4.0
- resolve: 1.22.11
+ resolve: 1.22.12
semver: 7.5.4
optionalDependencies:
- '@types/node': 25.5.2
+ '@types/node': 25.8.0
optional: true
'@rushstack/rig-package@0.5.3':
dependencies:
- resolve: 1.22.11
+ resolve: 1.22.12
strip-json-comments: 3.1.1
optional: true
- '@rushstack/terminal@0.15.4(@types/node@25.5.2)':
+ '@rushstack/terminal@0.15.4(@types/node@25.8.0)':
dependencies:
- '@rushstack/node-core-library': 5.14.0(@types/node@25.5.2)
+ '@rushstack/node-core-library': 5.14.0(@types/node@25.8.0)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 25.5.2
+ '@types/node': 25.8.0
optional: true
- '@rushstack/ts-command-line@5.0.2(@types/node@25.5.2)':
+ '@rushstack/ts-command-line@5.0.2(@types/node@25.8.0)':
dependencies:
- '@rushstack/terminal': 0.15.4(@types/node@25.5.2)
+ '@rushstack/terminal': 0.15.4(@types/node@25.8.0)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -9258,72 +9240,80 @@ snapshots:
dependencies:
acorn: 8.16.0
- '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)))(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))
obug: 2.1.1
- svelte: 5.55.2
- vite: 7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
+ vite: 7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
- '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))':
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)))(svelte@5.55.2)(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)))(svelte@5.55.7(@typescript-eslint/types@8.59.3))(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))
deepmerge: 4.3.1
magic-string: 0.30.21
obug: 2.1.1
- svelte: 5.55.2
- vite: 7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
- vitefu: 1.1.2(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
+ vite: 7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
+ vitefu: 1.1.2(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))
+
+ '@swc/core-darwin-arm64@1.15.33':
+ optional: true
+
+ '@swc/core-darwin-x64@1.15.33':
+ optional: true
- '@swc/core-darwin-arm64@1.15.18':
+ '@swc/core-linux-arm-gnueabihf@1.15.33':
optional: true
- '@swc/core-darwin-x64@1.15.18':
+ '@swc/core-linux-arm64-gnu@1.15.33':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.15.18':
+ '@swc/core-linux-arm64-musl@1.15.33':
optional: true
- '@swc/core-linux-arm64-gnu@1.15.18':
+ '@swc/core-linux-ppc64-gnu@1.15.33':
optional: true
- '@swc/core-linux-arm64-musl@1.15.18':
+ '@swc/core-linux-s390x-gnu@1.15.33':
optional: true
- '@swc/core-linux-x64-gnu@1.15.18':
+ '@swc/core-linux-x64-gnu@1.15.33':
optional: true
- '@swc/core-linux-x64-musl@1.15.18':
+ '@swc/core-linux-x64-musl@1.15.33':
optional: true
- '@swc/core-win32-arm64-msvc@1.15.18':
+ '@swc/core-win32-arm64-msvc@1.15.33':
optional: true
- '@swc/core-win32-ia32-msvc@1.15.18':
+ '@swc/core-win32-ia32-msvc@1.15.33':
optional: true
- '@swc/core-win32-x64-msvc@1.15.18':
+ '@swc/core-win32-x64-msvc@1.15.33':
optional: true
- '@swc/core@1.15.18':
+ '@swc/core@1.15.33':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.25
+ '@swc/types': 0.1.26
optionalDependencies:
- '@swc/core-darwin-arm64': 1.15.18
- '@swc/core-darwin-x64': 1.15.18
- '@swc/core-linux-arm-gnueabihf': 1.15.18
- '@swc/core-linux-arm64-gnu': 1.15.18
- '@swc/core-linux-arm64-musl': 1.15.18
- '@swc/core-linux-x64-gnu': 1.15.18
- '@swc/core-linux-x64-musl': 1.15.18
- '@swc/core-win32-arm64-msvc': 1.15.18
- '@swc/core-win32-ia32-msvc': 1.15.18
- '@swc/core-win32-x64-msvc': 1.15.18
+ '@swc/core-darwin-arm64': 1.15.33
+ '@swc/core-darwin-x64': 1.15.33
+ '@swc/core-linux-arm-gnueabihf': 1.15.33
+ '@swc/core-linux-arm64-gnu': 1.15.33
+ '@swc/core-linux-arm64-musl': 1.15.33
+ '@swc/core-linux-ppc64-gnu': 1.15.33
+ '@swc/core-linux-s390x-gnu': 1.15.33
+ '@swc/core-linux-x64-gnu': 1.15.33
+ '@swc/core-linux-x64-musl': 1.15.33
+ '@swc/core-win32-arm64-msvc': 1.15.33
+ '@swc/core-win32-ia32-msvc': 1.15.33
+ '@swc/core-win32-x64-msvc': 1.15.33
'@swc/counter@0.1.3': {}
- '@swc/types@0.1.25':
+ '@swc/types@0.1.26':
dependencies:
'@swc/counter': 0.1.3
@@ -9495,22 +9485,26 @@ snapshots:
'@types/estree': 1.0.7
'@types/json-schema': 7.0.15
- '@types/eslint__js@9.14.0(eslint@9.39.4(jiti@2.6.1))':
+ '@types/eslint__js@9.14.0(eslint@10.4.0(jiti@2.6.1))':
dependencies:
- '@eslint/js': 10.0.1(eslint@9.39.4(jiti@2.6.1))
+ '@eslint/js': 10.0.1(eslint@10.4.0(jiti@2.6.1))
transitivePeerDependencies:
- eslint
+ '@types/esrecurse@4.3.1': {}
+
'@types/estree@1.0.7': {}
'@types/estree@1.0.8': {}
+ '@types/estree@1.0.9': {}
+
'@types/geojson@7946.0.16': {}
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 25.5.2
+ '@types/node': 25.8.0
'@types/hast@3.0.4':
dependencies:
@@ -9532,13 +9526,13 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@18.19.130':
+ '@types/node@24.12.4':
dependencies:
- undici-types: 5.26.5
+ undici-types: 7.16.0
- '@types/node@25.5.2':
+ '@types/node@25.8.0':
dependencies:
- undici-types: 7.18.2
+ undici-types: 7.24.6
'@types/prismjs@1.26.6': {}
@@ -9570,21 +9564,21 @@ snapshots:
'@types/vfile@3.0.2':
dependencies:
- '@types/node': 25.5.2
+ '@types/node': 25.8.0
'@types/unist': 2.0.11
'@types/vfile-message': 2.0.0
'@types/which@3.0.4': {}
- '@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.59.3(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/scope-manager': 8.58.1
- '@typescript-eslint/type-utils': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/visitor-keys': 8.58.1
- eslint: 9.39.4(jiti@2.6.1)
+ '@typescript-eslint/parser': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.59.3
+ '@typescript-eslint/type-utils': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.59.3
+ eslint: 10.4.0(jiti@2.6.1)
ignore: 7.0.5
natural-compare: 1.4.0
ts-api-utils: 2.5.0(typescript@5.9.3)
@@ -9592,79 +9586,79 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.58.1
- '@typescript-eslint/types': 8.58.1
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/visitor-keys': 8.58.1
+ '@typescript-eslint/scope-manager': 8.59.3
+ '@typescript-eslint/types': 8.59.3
+ '@typescript-eslint/typescript-estree': 8.59.3(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.59.3
debug: 4.4.3
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.58.1(typescript@5.9.3)':
+ '@typescript-eslint/project-service@8.59.3(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/tsconfig-utils': 8.59.3(typescript@5.9.3)
+ '@typescript-eslint/types': 8.59.3
debug: 4.4.3
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.58.1':
+ '@typescript-eslint/scope-manager@8.59.3':
dependencies:
- '@typescript-eslint/types': 8.58.1
- '@typescript-eslint/visitor-keys': 8.58.1
+ '@typescript-eslint/types': 8.59.3
+ '@typescript-eslint/visitor-keys': 8.59.3
- '@typescript-eslint/tsconfig-utils@8.58.1(typescript@5.9.3)':
+ '@typescript-eslint/tsconfig-utils@8.59.3(typescript@5.9.3)':
dependencies:
typescript: 5.9.3
- '@typescript-eslint/type-utils@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.58.1
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.59.3
+ '@typescript-eslint/typescript-estree': 8.59.3(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
debug: 4.4.3
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
ts-api-utils: 2.5.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.58.1': {}
+ '@typescript-eslint/types@8.59.3': {}
- '@typescript-eslint/typescript-estree@8.58.1(typescript@5.9.3)':
+ '@typescript-eslint/typescript-estree@8.59.3(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/project-service': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/types': 8.58.1
- '@typescript-eslint/visitor-keys': 8.58.1
+ '@typescript-eslint/project-service': 8.59.3(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.59.3(typescript@5.9.3)
+ '@typescript-eslint/types': 8.59.3
+ '@typescript-eslint/visitor-keys': 8.59.3
debug: 4.4.3
minimatch: 10.2.5
- semver: 7.7.4
+ semver: 7.8.0
tinyglobby: 0.2.16
ts-api-utils: 2.5.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
- '@typescript-eslint/scope-manager': 8.58.1
- '@typescript-eslint/types': 8.58.1
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
- eslint: 9.39.4(jiti@2.6.1)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.4.0(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.59.3
+ '@typescript-eslint/types': 8.59.3
+ '@typescript-eslint/typescript-estree': 8.59.3(typescript@5.9.3)
+ eslint: 10.4.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.58.1':
+ '@typescript-eslint/visitor-keys@8.59.3':
dependencies:
- '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/types': 8.59.3
eslint-visitor-keys: 5.0.1
'@unrs/resolver-binding-android-arm-eabi@1.9.2':
@@ -9731,11 +9725,11 @@ snapshots:
d3-selection: 3.0.0
d3-transition: 3.0.1(d3-selection@3.0.0)
- '@vitejs/plugin-react-swc@4.3.0(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))':
+ '@vitejs/plugin-react-swc@4.3.1(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0))':
dependencies:
- '@rolldown/pluginutils': 1.0.0-rc.7
- '@swc/core': 1.15.18
- vite: 7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ '@rolldown/pluginutils': 1.0.1
+ '@swc/core': 1.15.33
+ vite: 7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
transitivePeerDependencies:
- '@swc/helpers'
@@ -9743,9 +9737,9 @@ snapshots:
dependencies:
acorn: 8.16.0
- acorn-walk@8.3.4:
+ acorn-walk@8.3.5:
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
acorn@7.4.1: {}
@@ -9770,7 +9764,7 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@6.14.0:
+ ajv@6.15.0:
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
@@ -9793,10 +9787,10 @@ snapshots:
uri-js: 4.4.1
optional: true
- ajv@8.18.0:
+ ajv@8.20.0:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.1.0
+ fast-uri: 3.1.2
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -9824,56 +9818,55 @@ snapshots:
ansi-styles@6.2.3: {}
- antd@6.3.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ antd@6.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
dependencies:
'@ant-design/colors': 8.0.1
- '@ant-design/cssinjs': 2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@ant-design/cssinjs-utils': 2.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@ant-design/cssinjs': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@ant-design/cssinjs-utils': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@ant-design/fast-color': 3.0.1
- '@ant-design/icons': 6.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@ant-design/react-slick': 2.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@ant-design/icons': 6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@ant-design/react-slick': 2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
'@babel/runtime': 7.29.2
- '@rc-component/cascader': 1.14.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/checkbox': 2.0.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/collapse': 1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/color-picker': 3.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/dialog': 1.8.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/drawer': 1.4.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/dropdown': 1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/form': 1.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/image': 1.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/input': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/input-number': 1.6.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/mentions': 1.6.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/menu': 1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/motion': 1.3.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/mutate-observer': 2.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/notification': 1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/pagination': 1.2.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/picker': 1.9.1(dayjs@1.11.20)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/progress': 1.0.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/qrcode': 1.1.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/rate': 1.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/resize-observer': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/segmented': 1.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/select': 1.6.15(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/slider': 1.0.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/steps': 1.2.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/switch': 1.0.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/table': 1.9.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tabs': 1.7.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/textarea': 1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tooltip': 1.4.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tour': 2.3.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tree': 1.2.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/tree-select': 1.8.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/trigger': 3.9.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/upload': 1.1.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@rc-component/util': 1.10.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@rc-component/cascader': 1.15.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/checkbox': 2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/collapse': 1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/color-picker': 3.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/dialog': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/drawer': 1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/dropdown': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/form': 1.8.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/image': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/input': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/input-number': 1.6.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/mentions': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/menu': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/mutate-observer': 2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/notification': 2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/pagination': 1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/picker': 1.10.0(dayjs@1.11.20)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/progress': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/qrcode': 1.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/rate': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/segmented': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/select': 1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/slider': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/steps': 1.2.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/switch': 1.0.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/table': 1.10.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tabs': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tooltip': 1.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tour': 2.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tree': 1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/tree-select': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/upload': 1.1.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@rc-component/util': 1.11.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
clsx: 2.1.1
dayjs: 1.11.20
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
+ react: 19.2.6
+ react-dom: 19.2.6(react@19.2.6)
scroll-into-view-if-needed: 3.1.0
throttle-debounce: 5.0.2
transitivePeerDependencies:
@@ -10047,8 +10040,6 @@ snapshots:
mixin-deep: 1.3.2
pascalcase: 0.1.1
- baseline-browser-mapping@2.8.24: {}
-
baseline-browser-mapping@2.9.19: {}
before-after-hook@4.0.0: {}
@@ -10070,7 +10061,7 @@ snapshots:
dependencies:
balanced-match: 4.0.4
- brace-expansion@5.0.5:
+ brace-expansion@5.0.6:
dependencies:
balanced-match: 4.0.4
@@ -10100,14 +10091,6 @@ snapshots:
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
- browserslist@4.27.0:
- dependencies:
- baseline-browser-mapping: 2.8.24
- caniuse-lite: 1.0.30001753
- electron-to-chromium: 1.5.245
- node-releases: 2.0.27
- update-browserslist-db: 1.1.4(browserslist@4.27.0)
-
browserslist@4.28.1:
dependencies:
baseline-browser-mapping: 2.9.19
@@ -10137,13 +10120,13 @@ snapshots:
union-value: 1.0.1
unset-value: 1.0.0
- cacheable@2.3.4:
+ cacheable@2.3.5:
dependencies:
- '@cacheable/memory': 2.0.8
+ '@cacheable/memory': 2.0.9
'@cacheable/utils': 2.4.1
hookified: 1.15.1
keyv: 5.6.0
- qified: 0.9.0
+ qified: 0.10.1
call-bind-apply-helpers@1.0.2:
dependencies:
@@ -10186,8 +10169,6 @@ snapshots:
caniuse-lite@1.0.30001712: {}
- caniuse-lite@1.0.30001753: {}
-
caniuse-lite@1.0.30001768: {}
ccount@1.1.0: {}
@@ -10198,11 +10179,6 @@ snapshots:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- chalk@4.1.2:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
character-entities-html4@1.1.4: {}
character-entities-legacy@1.1.4: {}
@@ -10223,19 +10199,6 @@ snapshots:
chardet@2.1.1: {}
- chevrotain-allstar@0.4.1(chevrotain@12.0.0):
- dependencies:
- chevrotain: 12.0.0
- lodash-es: 4.18.1
-
- chevrotain@12.0.0:
- dependencies:
- '@chevrotain/cst-dts-gen': 12.0.0
- '@chevrotain/gast': 12.0.0
- '@chevrotain/regexp-to-ast': 12.0.0
- '@chevrotain/types': 12.0.0
- '@chevrotain/utils': 12.0.0
-
chokidar@4.0.3:
dependencies:
readdirp: 4.1.2
@@ -10264,13 +10227,13 @@ snapshots:
cli-truncate@5.2.0:
dependencies:
slice-ansi: 8.0.0
- string-width: 8.2.0
+ string-width: 8.2.1
- cliui@8.0.1:
+ cliui@9.0.1:
dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
+ string-width: 7.2.0
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
clone-regexp@1.0.1:
dependencies:
@@ -10302,12 +10265,8 @@ snapshots:
colord@2.9.3: {}
- colorette@2.0.20: {}
-
comma-separated-tokens@2.0.3: {}
- commander@14.0.3: {}
-
commander@2.20.3: {}
commander@4.1.1: {}
@@ -10336,15 +10295,17 @@ snapshots:
'@babel/parser': 7.29.0
'@babel/types': 7.29.0
- conventional-changelog-angular@8.3.0:
+ content-type@2.0.0: {}
+
+ conventional-changelog-angular@8.3.1:
dependencies:
compare-func: 2.0.0
- conventional-changelog-conventionalcommits@9.3.0:
+ conventional-changelog-conventionalcommits@9.3.1:
dependencies:
compare-func: 2.0.0
- conventional-commits-parser@6.3.0:
+ conventional-commits-parser@6.4.0:
dependencies:
'@simple-libs/stream-utils': 1.2.0
meow: 13.2.0
@@ -10365,9 +10326,9 @@ snapshots:
dependencies:
layout-base: 2.0.1
- cosmiconfig-typescript-loader@6.2.0(@types/node@25.5.2)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3):
+ cosmiconfig-typescript-loader@6.3.0(@types/node@25.8.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3):
dependencies:
- '@types/node': 25.5.2
+ '@types/node': 25.8.0
cosmiconfig: 9.0.1(typescript@5.9.3)
jiti: 2.6.1
typescript: 5.9.3
@@ -10419,17 +10380,17 @@ snapshots:
dependencies:
array-find-index: 1.0.2
- cytoscape-cose-bilkent@4.1.0(cytoscape@3.33.2):
+ cytoscape-cose-bilkent@4.1.0(cytoscape@3.33.3):
dependencies:
cose-base: 1.0.3
- cytoscape: 3.33.2
+ cytoscape: 3.33.3
- cytoscape-fcose@2.2.0(cytoscape@3.33.2):
+ cytoscape-fcose@2.2.0(cytoscape@3.33.3):
dependencies:
cose-base: 2.2.0
- cytoscape: 3.33.2
+ cytoscape: 3.33.3
- cytoscape@3.33.2: {}
+ cytoscape@3.33.3: {}
d3-array@2.12.1:
dependencies:
@@ -10712,7 +10673,7 @@ snapshots:
detect-newline@4.0.1: {}
- devalue@5.7.0: {}
+ devalue@5.8.1: {}
diff@4.0.4: {}
@@ -10757,7 +10718,7 @@ snapshots:
optionalDependencies:
'@types/trusted-types': 2.0.7
- dompurify@3.3.3:
+ dompurify@3.4.4:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -10786,8 +10747,6 @@ snapshots:
electron-to-chromium@1.5.132: {}
- electron-to-chromium@1.5.245: {}
-
electron-to-chromium@1.5.286: {}
emoji-regex@10.6.0: {}
@@ -10983,6 +10942,8 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
+ es-toolkit@1.46.1: {}
+
es5-ext@0.10.64:
dependencies:
es6-iterator: 2.0.3
@@ -11176,15 +11137,44 @@ snapshots:
'@esbuild/win32-ia32': 0.27.3
'@esbuild/win32-x64': 0.27.3
+ esbuild@0.28.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.28.0
+ '@esbuild/android-arm': 0.28.0
+ '@esbuild/android-arm64': 0.28.0
+ '@esbuild/android-x64': 0.28.0
+ '@esbuild/darwin-arm64': 0.28.0
+ '@esbuild/darwin-x64': 0.28.0
+ '@esbuild/freebsd-arm64': 0.28.0
+ '@esbuild/freebsd-x64': 0.28.0
+ '@esbuild/linux-arm': 0.28.0
+ '@esbuild/linux-arm64': 0.28.0
+ '@esbuild/linux-ia32': 0.28.0
+ '@esbuild/linux-loong64': 0.28.0
+ '@esbuild/linux-mips64el': 0.28.0
+ '@esbuild/linux-ppc64': 0.28.0
+ '@esbuild/linux-riscv64': 0.28.0
+ '@esbuild/linux-s390x': 0.28.0
+ '@esbuild/linux-x64': 0.28.0
+ '@esbuild/netbsd-arm64': 0.28.0
+ '@esbuild/netbsd-x64': 0.28.0
+ '@esbuild/openbsd-arm64': 0.28.0
+ '@esbuild/openbsd-x64': 0.28.0
+ '@esbuild/openharmony-arm64': 0.28.0
+ '@esbuild/sunos-x64': 0.28.0
+ '@esbuild/win32-arm64': 0.28.0
+ '@esbuild/win32-ia32': 0.28.0
+ '@esbuild/win32-x64': 0.28.0
+
escalade@3.2.0: {}
escape-string-regexp@1.0.5: {}
escape-string-regexp@4.0.0: {}
- eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1)):
+ eslint-config-prettier@10.1.8(eslint@10.4.0(jiti@2.6.1)):
dependencies:
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
eslint-import-context@0.1.9(unrs-resolver@1.9.2):
dependencies:
@@ -11201,10 +11191,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.6.1)):
+ eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@10.4.0(jiti@2.6.1)):
dependencies:
debug: 4.4.1
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
eslint-import-context: 0.1.9(unrs-resolver@1.9.2)
get-tsconfig: 4.10.1
is-bun-module: 2.0.0
@@ -11212,22 +11202,22 @@ snapshots:
tinyglobby: 0.2.14
unrs-resolver: 1.9.2
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@10.4.0(jiti@2.6.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.6.1)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@10.4.0(jiti@2.6.1)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.39.4(jiti@2.6.1)
+ '@typescript-eslint/parser': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 10.4.0(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.6.1))
+ eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@10.4.0(jiti@2.6.1))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.6.1)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@10.4.0(jiti@2.6.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -11236,9 +11226,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.6.1))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@10.4.0(jiti@2.6.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -11250,13 +11240,13 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.6.1)):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@10.4.0(jiti@2.6.1)):
dependencies:
aria-query: 5.3.2
array-includes: 3.1.8
@@ -11266,7 +11256,7 @@ snapshots:
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -11275,32 +11265,32 @@ snapshots:
safe-regex-test: 1.1.0
string.prototype.includes: 2.0.1
- eslint-plugin-prettier@5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1))(prettier@3.8.1):
+ eslint-plugin-prettier@5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@10.4.0(jiti@2.6.1)))(eslint@10.4.0(jiti@2.6.1))(prettier@3.8.3):
dependencies:
- eslint: 9.39.4(jiti@2.6.1)
- prettier: 3.8.1
+ eslint: 10.4.0(jiti@2.6.1)
+ prettier: 3.8.3
prettier-linter-helpers: 1.0.1
synckit: 0.11.12
optionalDependencies:
'@types/eslint': 9.6.1
- eslint-config-prettier: 10.1.8(eslint@9.39.4(jiti@2.6.1))
+ eslint-config-prettier: 10.1.8(eslint@10.4.0(jiti@2.6.1))
- eslint-plugin-react-hooks@7.0.1(eslint@9.39.4(jiti@2.6.1)):
+ eslint-plugin-react-hooks@7.1.1(eslint@10.4.0(jiti@2.6.1)):
dependencies:
- '@babel/core': 7.28.5
- '@babel/parser': 7.28.5
- eslint: 9.39.4(jiti@2.6.1)
+ '@babel/core': 7.29.0
+ '@babel/parser': 7.29.3
+ eslint: 10.4.0(jiti@2.6.1)
hermes-parser: 0.25.1
- zod: 4.1.12
- zod-validation-error: 4.0.2(zod@4.1.12)
+ zod: 4.4.3
+ zod-validation-error: 4.0.2(zod@4.4.3)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-refresh@0.5.2(eslint@9.39.4(jiti@2.6.1)):
+ eslint-plugin-react-refresh@0.5.2(eslint@10.4.0(jiti@2.6.1)):
dependencies:
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
- eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.6.1)):
+ eslint-plugin-react@7.37.5(eslint@10.4.0(jiti@2.6.1)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -11308,7 +11298,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.2.1
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -11322,25 +11312,25 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-simple-import-sort@13.0.0(eslint@9.39.4(jiti@2.6.1)):
+ eslint-plugin-simple-import-sort@13.0.0(eslint@10.4.0(jiti@2.6.1)):
dependencies:
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
- eslint-plugin-svelte@3.17.0(eslint@9.39.4(jiti@2.6.1))(svelte@5.55.2)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.5.2)(typescript@5.9.3)):
+ eslint-plugin-svelte@3.17.1(eslint@10.4.0(jiti@2.6.1))(svelte@5.55.7(@typescript-eslint/types@8.59.3))(ts-node@10.9.2(@swc/core@1.15.33)(@types/node@25.8.0)(typescript@5.9.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.4.0(jiti@2.6.1))
'@jridgewell/sourcemap-codec': 1.5.5
- eslint: 9.39.4(jiti@2.6.1)
+ eslint: 10.4.0(jiti@2.6.1)
esutils: 2.0.3
globals: 16.5.0
known-css-properties: 0.37.0
- postcss: 8.5.9
- postcss-load-config: 3.1.4(postcss@8.5.9)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.5.2)(typescript@5.9.3))
- postcss-safe-parser: 7.0.1(postcss@8.5.9)
- semver: 7.7.4
- svelte-eslint-parser: 1.6.0(svelte@5.55.2)
+ postcss: 8.5.14
+ postcss-load-config: 3.1.4(postcss@8.5.14)(ts-node@10.9.2(@swc/core@1.15.33)(@types/node@25.8.0)(typescript@5.9.3))
+ postcss-safe-parser: 7.0.1(postcss@8.5.14)
+ semver: 7.8.0
+ svelte-eslint-parser: 1.6.1(svelte@5.55.7(@typescript-eslint/types@8.59.3))
optionalDependencies:
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
transitivePeerDependencies:
- ts-node
@@ -11349,34 +11339,38 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
+ eslint-scope@9.1.2:
+ dependencies:
+ '@types/esrecurse': 4.3.1
+ '@types/estree': 1.0.9
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
eslint-visitor-keys@3.4.3: {}
eslint-visitor-keys@4.2.1: {}
eslint-visitor-keys@5.0.1: {}
- eslint@9.39.4(jiti@2.6.1):
+ eslint@10.4.0(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.4.0(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.2
- '@eslint/config-array': 0.21.2
- '@eslint/config-helpers': 0.4.2
- '@eslint/core': 0.17.0
- '@eslint/eslintrc': 3.3.5
- '@eslint/js': 9.39.4
- '@eslint/plugin-kit': 0.4.1
- '@humanfs/node': 0.16.7
+ '@eslint/config-array': 0.23.5
+ '@eslint/config-helpers': 0.6.0
+ '@eslint/core': 1.2.1
+ '@eslint/plugin-kit': 0.7.1
+ '@humanfs/node': 0.16.8
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
- '@types/estree': 1.0.8
- ajv: 6.14.0
- chalk: 4.1.2
+ '@types/estree': 1.0.9
+ ajv: 6.15.0
cross-spawn: 7.0.6
debug: 4.4.3
escape-string-regexp: 4.0.0
- eslint-scope: 8.4.0
- eslint-visitor-keys: 4.2.1
- espree: 10.4.0
+ eslint-scope: 9.1.2
+ eslint-visitor-keys: 5.0.1
+ espree: 11.2.0
esquery: 1.7.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -11387,8 +11381,7 @@ snapshots:
imurmurhash: 0.1.4
is-glob: 4.0.3
json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.5
+ minimatch: 10.2.5
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
@@ -11411,16 +11404,23 @@ snapshots:
acorn-jsx: 5.3.2(acorn@8.16.0)
eslint-visitor-keys: 4.2.1
+ espree@11.2.0:
+ dependencies:
+ acorn: 8.16.0
+ acorn-jsx: 5.3.2(acorn@8.16.0)
+ eslint-visitor-keys: 5.0.1
+
esprima@4.0.1: {}
esquery@1.7.0:
dependencies:
estraverse: 5.3.0
- esrap@2.2.4:
+ esrap@2.2.9(@typescript-eslint/types@8.59.3):
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- '@typescript-eslint/types': 8.58.1
+ optionalDependencies:
+ '@typescript-eslint/types': 8.59.3
esrecurse@4.3.0:
dependencies:
@@ -11514,11 +11514,11 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fast-uri@3.1.0: {}
+ fast-uri@3.1.2: {}
fastest-levenshtein@1.0.16: {}
- fastq@1.19.1:
+ fastq@1.20.1:
dependencies:
reusify: 1.1.0
@@ -11545,7 +11545,7 @@ snapshots:
fetch-event-stream@0.1.6: {}
- file-entry-cache@11.1.2:
+ file-entry-cache@11.1.3:
dependencies:
flat-cache: 6.1.22
@@ -11601,7 +11601,7 @@ snapshots:
flat-cache@6.1.22:
dependencies:
- cacheable: 2.3.4
+ cacheable: 2.3.5
flatted: 3.4.2
hookified: 1.15.1
@@ -11630,10 +11630,10 @@ snapshots:
dependencies:
map-cache: 0.2.2
- fs-extra@11.3.4:
+ fs-extra@11.3.5:
dependencies:
graceful-fs: 4.2.11
- jsonfile: 6.2.0
+ jsonfile: 6.2.1
universalify: 2.0.1
optional: true
@@ -11671,7 +11671,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.5.0: {}
+ get-east-asian-width@1.6.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -11703,17 +11703,13 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
- get-tsconfig@4.13.3:
- dependencies:
- resolve-pkg-maps: 1.0.0
-
get-value@2.0.6: {}
git-hooks-list@4.2.1: {}
- git-raw-commits@5.0.1(conventional-commits-parser@6.3.0):
+ git-raw-commits@5.0.1(conventional-commits-parser@6.4.0):
dependencies:
- '@conventional-changelog/git-client': 2.6.0(conventional-commits-parser@6.3.0)
+ '@conventional-changelog/git-client': 2.7.0(conventional-commits-parser@6.4.0)
meow: 13.2.0
transitivePeerDependencies:
- conventional-commits-filter
@@ -11760,9 +11756,9 @@ snapshots:
once: 1.4.0
path-is-absolute: 1.0.1
- global-directory@4.0.1:
+ global-directory@5.0.0:
dependencies:
- ini: 4.1.1
+ ini: 6.0.0
global-modules@2.0.0:
dependencies:
@@ -11774,11 +11770,9 @@ snapshots:
kind-of: 6.0.3
which: 1.3.1
- globals@14.0.0: {}
-
globals@16.5.0: {}
- globals@17.4.0: {}
+ globals@17.6.0: {}
globalthis@1.0.4:
dependencies:
@@ -11796,7 +11790,7 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@16.1.1:
+ globby@16.2.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
fast-glob: 3.3.3
@@ -11836,7 +11830,8 @@ snapshots:
has-flag@3.0.0: {}
- has-flag@4.0.0: {}
+ has-flag@4.0.0:
+ optional: true
has-flag@5.0.1: {}
@@ -11881,6 +11876,11 @@ snapshots:
dependencies:
function-bind: 1.1.2
+ hasown@2.0.3:
+ dependencies:
+ function-bind: 1.1.2
+ optional: true
+
hast-util-parse-selector@4.0.0:
dependencies:
'@types/hast': 3.0.4
@@ -11905,7 +11905,7 @@ snapshots:
hookified@1.15.1: {}
- hookified@2.1.0: {}
+ hookified@2.2.0: {}
hosted-git-info@2.8.9: {}
@@ -11950,7 +11950,7 @@ snapshots:
image-size@0.5.5:
optional: true
- immer@11.1.4: {}
+ immer@11.1.8: {}
immutable@5.1.5: {}
@@ -11986,7 +11986,7 @@ snapshots:
ini@1.3.8: {}
- ini@4.1.1: {}
+ ini@6.0.0: {}
internal-slot@1.1.0:
dependencies:
@@ -12064,6 +12064,11 @@ snapshots:
dependencies:
hasown: 2.0.2
+ is-core-module@2.16.2:
+ dependencies:
+ hasown: 2.0.3
+ optional: true
+
is-data-descriptor@1.0.1:
dependencies:
hasown: 2.0.2
@@ -12118,7 +12123,7 @@ snapshots:
is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.5.0
+ get-east-asian-width: 1.6.0
is-generator-function@1.1.0:
dependencies:
@@ -12174,7 +12179,7 @@ snapshots:
is-reference@3.0.3:
dependencies:
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.9
is-regex@1.2.1:
dependencies:
@@ -12302,6 +12307,8 @@ snapshots:
json-stable-stringify-without-jsonify@1.0.1: {}
+ json-with-bigint@3.5.8: {}
+
json2mq@0.2.0:
dependencies:
string-convert: 0.2.1
@@ -12316,7 +12323,7 @@ snapshots:
optionalDependencies:
graceful-fs: 4.2.11
- jsonfile@6.2.0:
+ jsonfile@6.2.1:
dependencies:
universalify: 2.0.1
optionalDependencies:
@@ -12335,7 +12342,7 @@ snapshots:
object.assign: 4.1.7
object.values: 1.2.1
- katex@0.16.45:
+ katex@0.16.47:
dependencies:
commander: 8.3.0
@@ -12363,15 +12370,6 @@ snapshots:
known-css-properties@0.37.0: {}
- langium@4.2.2:
- dependencies:
- '@chevrotain/regexp-to-ast': 12.0.0
- chevrotain: 12.0.0
- chevrotain-allstar: 0.4.1(chevrotain@12.0.0)
- vscode-languageserver: 9.0.1
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.1.0
-
language-subtag-registry@0.3.23: {}
language-tags@1.0.9:
@@ -12457,23 +12455,22 @@ snapshots:
lines-and-columns@1.2.4: {}
- lint-staged@16.4.0:
+ lint-staged@17.0.5:
dependencies:
- commander: 14.0.3
- listr2: 9.0.5
- picomatch: 4.0.3
+ listr2: 10.2.1
+ picomatch: 4.0.4
string-argv: 0.3.2
- tinyexec: 1.0.4
- yaml: 2.8.2
+ tinyexec: 1.1.2
+ optionalDependencies:
+ yaml: 2.9.0
- listr2@9.0.5:
+ listr2@10.2.1:
dependencies:
cli-truncate: 5.2.0
- colorette: 2.0.20
eventemitter3: 5.0.4
log-update: 6.1.0
rfdc: 1.4.1
- wrap-ansi: 9.0.2
+ wrap-ansi: 10.0.0
load-json-file@4.0.0:
dependencies:
@@ -12501,24 +12498,12 @@ snapshots:
lodash-es@4.18.1: {}
- lodash.camelcase@4.3.0: {}
-
- lodash.kebabcase@4.1.1: {}
-
- lodash.merge@4.6.2: {}
-
- lodash.mergewith@4.6.2: {}
-
- lodash.snakecase@4.1.1: {}
-
lodash.startcase@4.4.0: {}
lodash.throttle@4.1.1: {}
lodash.truncate@4.4.2: {}
- lodash.upperfirst@4.3.1: {}
-
lodash@4.17.21: {}
lodash@4.17.23:
@@ -12595,20 +12580,20 @@ snapshots:
markdown-table@1.1.3: {}
- marked-gfm-heading-id@4.1.4(marked@18.0.0):
+ marked-gfm-heading-id@4.1.4(marked@18.0.3):
dependencies:
github-slugger: 2.0.0
- marked: 18.0.0
+ marked: 18.0.3
- marked-highlight@2.2.4(marked@18.0.0):
+ marked-highlight@2.2.4(marked@18.0.3):
dependencies:
- marked: 18.0.0
+ marked: 18.0.3
marked@14.0.0: {}
marked@16.4.2: {}
- marked@18.0.0: {}
+ marked@18.0.3: {}
math-intrinsics@1.1.0: {}
@@ -12653,29 +12638,29 @@ snapshots:
merge2@1.4.1: {}
- mermaid@11.14.0:
+ mermaid@11.15.0:
dependencies:
'@braintree/sanitize-url': 7.1.2
- '@iconify/utils': 3.1.0
- '@mermaid-js/parser': 1.1.0
+ '@iconify/utils': 3.1.3
+ '@mermaid-js/parser': 1.1.1
'@types/d3': 7.4.3
'@upsetjs/venn.js': 2.0.0
- cytoscape: 3.33.2
- cytoscape-cose-bilkent: 4.1.0(cytoscape@3.33.2)
- cytoscape-fcose: 2.2.0(cytoscape@3.33.2)
+ cytoscape: 3.33.3
+ cytoscape-cose-bilkent: 4.1.0(cytoscape@3.33.3)
+ cytoscape-fcose: 2.2.0(cytoscape@3.33.3)
d3: 7.9.0
d3-sankey: 0.12.3
dagre-d3-es: 7.0.14
dayjs: 1.11.20
- dompurify: 3.3.3
- katex: 0.16.45
+ dompurify: 3.4.4
+ es-toolkit: 1.46.1
+ katex: 0.16.47
khroma: 2.1.0
- lodash-es: 4.18.1
marked: 16.4.2
roughjs: 4.6.6
- stylis: 4.3.6
+ stylis: 4.4.0
ts-dedent: 2.2.0
- uuid: 11.1.0
+ uuid: 14.0.0
micromatch@3.1.10:
dependencies:
@@ -12698,7 +12683,7 @@ snapshots:
micromatch@4.0.8:
dependencies:
braces: 3.0.3
- picomatch: 2.3.1
+ picomatch: 2.3.2
mime@1.6.0:
optional: true
@@ -12716,16 +12701,12 @@ snapshots:
minimatch@10.2.5:
dependencies:
- brace-expansion: 5.0.5
+ brace-expansion: 5.0.6
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
- minimatch@3.1.5:
- dependencies:
- brace-expansion: 1.1.11
-
minimatch@9.0.9:
dependencies:
brace-expansion: 2.0.2
@@ -12755,13 +12736,6 @@ snapshots:
pkg-types: 1.3.1
ufo: 1.6.1
- mlly@1.8.2:
- dependencies:
- acorn: 8.16.0
- pathe: 2.0.3
- pkg-types: 1.3.1
- ufo: 1.6.3
-
monaco-editor@0.55.1:
dependencies:
dompurify: 3.2.7
@@ -12781,6 +12755,8 @@ snapshots:
nanoid@3.3.11: {}
+ nanoid@3.3.12: {}
+
nanomatch@1.2.13:
dependencies:
arr-diff: 4.0.0
@@ -13065,7 +13041,7 @@ snapshots:
picocolors@1.1.1: {}
- picomatch@2.3.1: {}
+ picomatch@2.3.2: {}
picomatch@4.0.2: {}
@@ -13098,17 +13074,17 @@ snapshots:
possible-typed-array-names@1.1.0: {}
- postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39):
+ postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39):
dependencies:
htmlparser2: 3.10.1
postcss: 7.0.39
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-jsx@0.36.4)(postcss-less@3.1.4)(postcss-markdown@0.36.0)(postcss-scss@2.1.1)(postcss@7.0.39)
+ postcss-syntax: 0.36.2(postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-less@3.1.4)(postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-scss@2.1.1)(postcss@7.0.39)
- postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39):
+ postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39):
dependencies:
'@babel/core': 7.29.0
postcss: 7.0.39
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-jsx@0.36.4)(postcss-less@3.1.4)(postcss-markdown@0.36.0)(postcss-scss@2.1.1)(postcss@7.0.39)
+ postcss-syntax: 0.36.2(postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-less@3.1.4)(postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-scss@2.1.1)(postcss@7.0.39)
transitivePeerDependencies:
- supports-color
@@ -13116,31 +13092,31 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-less@6.0.0(postcss@8.5.9):
+ postcss-less@6.0.0(postcss@8.5.14):
dependencies:
- postcss: 8.5.9
+ postcss: 8.5.14
- postcss-load-config@3.1.4(postcss@8.5.9)(ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.5.2)(typescript@5.9.3)):
+ postcss-load-config@3.1.4(postcss@8.5.14)(ts-node@10.9.2(@swc/core@1.15.33)(@types/node@25.8.0)(typescript@5.9.3)):
dependencies:
lilconfig: 2.1.0
yaml: 1.10.3
optionalDependencies:
- postcss: 8.5.9
- ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@25.5.2)(typescript@5.9.3)
+ postcss: 8.5.14
+ ts-node: 10.9.2(@swc/core@1.15.33)(@types/node@25.8.0)(typescript@5.9.3)
- postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2):
+ postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
jiti: 2.6.1
- postcss: 8.5.9
- tsx: 4.21.0
- yaml: 2.8.2
+ postcss: 8.5.14
+ tsx: 4.22.1
+ yaml: 2.9.0
- postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39):
+ postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39):
dependencies:
postcss: 7.0.39
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-jsx@0.36.4)(postcss-less@3.1.4)(postcss-markdown@0.36.0)(postcss-scss@2.1.1)(postcss@7.0.39)
+ postcss-syntax: 0.36.2(postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-less@3.1.4)(postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-scss@2.1.1)(postcss@7.0.39)
remark: 10.0.1
unist-util-find-all-after: 1.0.5
@@ -13159,9 +13135,9 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-safe-parser@7.0.1(postcss@8.5.9):
+ postcss-safe-parser@7.0.1(postcss@8.5.14):
dependencies:
- postcss: 8.5.9
+ postcss: 8.5.14
postcss-sass@0.3.5:
dependencies:
@@ -13172,9 +13148,9 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-scss@4.0.9(postcss@8.5.9):
+ postcss-scss@4.0.9(postcss@8.5.14):
dependencies:
- postcss: 8.5.9
+ postcss: 8.5.14
postcss-selector-parser@3.1.2:
dependencies:
@@ -13187,23 +13163,23 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-sorting@10.0.0(postcss@8.5.9):
+ postcss-sorting@10.0.0(postcss@8.5.14):
dependencies:
- postcss: 8.5.9
+ postcss: 8.5.14
postcss-sorting@4.1.0:
dependencies:
lodash: 4.17.21
postcss: 7.0.39
- postcss-syntax@0.36.2(postcss-html@0.36.0)(postcss-jsx@0.36.4)(postcss-less@3.1.4)(postcss-markdown@0.36.0)(postcss-scss@2.1.1)(postcss@7.0.39):
+ postcss-syntax@0.36.2(postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-less@3.1.4)(postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-scss@2.1.1)(postcss@7.0.39):
dependencies:
postcss: 7.0.39
optionalDependencies:
- postcss-html: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39)
- postcss-jsx: 0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39)
+ postcss-html: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39)
+ postcss-jsx: 0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39)
postcss-less: 3.1.4
- postcss-markdown: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39)
+ postcss-markdown: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39)
postcss-scss: 2.1.1
postcss-value-parser@3.3.1: {}
@@ -13215,6 +13191,12 @@ snapshots:
picocolors: 0.2.1
source-map: 0.6.1
+ postcss@8.5.14:
+ dependencies:
+ nanoid: 3.3.12
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
postcss@8.5.9:
dependencies:
nanoid: 3.3.11
@@ -13231,20 +13213,20 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier-plugin-packagejson@3.0.2(prettier@3.8.1):
+ prettier-plugin-packagejson@3.0.2(prettier@3.8.3):
dependencies:
sort-package-json: 3.6.1
optionalDependencies:
- prettier: 3.8.1
+ prettier: 3.8.3
- prettier-plugin-svelte@3.5.1(prettier@3.8.1)(svelte@5.55.2):
+ prettier-plugin-svelte@3.5.2(prettier@3.8.3)(svelte@5.55.7(@typescript-eslint/types@8.59.3)):
dependencies:
- prettier: 3.8.1
- svelte: 5.55.2
+ prettier: 3.8.3
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
prettier@2.8.8: {}
- prettier@3.8.1: {}
+ prettier@3.8.3: {}
prismjs@1.30.0: {}
@@ -13332,9 +13314,9 @@ snapshots:
punycode@2.3.1: {}
- qified@0.9.0:
+ qified@0.10.1:
dependencies:
- hookified: 2.1.0
+ hookified: 2.2.0
quansync@0.2.11: {}
@@ -13346,26 +13328,26 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- react-dom@19.2.4(react@19.2.4):
+ react-dom@19.2.6(react@19.2.6):
dependencies:
- react: 19.2.4
+ react: 19.2.6
scheduler: 0.27.0
react-is@16.13.1: {}
react-is@18.3.1: {}
- react-syntax-highlighter@16.1.1(react@19.2.4):
+ react-syntax-highlighter@16.1.1(react@19.2.6):
dependencies:
'@babel/runtime': 7.29.2
highlight.js: 10.7.3
highlightjs-vue: 1.0.0
lowlight: 1.20.0
prismjs: 1.30.0
- react: 19.2.4
+ react: 19.2.6
refractor: 5.0.0
- react@19.2.4: {}
+ react@19.2.6: {}
read-pkg-up@3.0.0:
dependencies:
@@ -13477,8 +13459,6 @@ snapshots:
replace-ext@1.0.0: {}
- require-directory@2.1.1: {}
-
require-from-string@2.0.2: {}
resolve-from@3.0.0: {}
@@ -13503,6 +13483,14 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ resolve@1.22.12:
+ dependencies:
+ es-errors: 1.3.0
+ is-core-module: 2.16.2
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+ optional: true
+
resolve@2.0.0-next.5:
dependencies:
is-core-module: 2.16.1
@@ -13643,7 +13631,7 @@ snapshots:
htmlparser2: 10.1.0
is-plain-object: 5.0.0
parse-srcset: 1.0.2
- postcss: 8.5.9
+ postcss: 8.5.14
sass@1.97.3:
dependencies:
@@ -13677,6 +13665,8 @@ snapshots:
semver@7.7.4: {}
+ semver@7.8.0: {}
+
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -13914,13 +13904,13 @@ snapshots:
string-width@7.2.0:
dependencies:
emoji-regex: 10.6.0
- get-east-asian-width: 1.5.0
+ get-east-asian-width: 1.6.0
strip-ansi: 7.2.0
- string-width@8.2.0:
+ string-width@8.2.1:
dependencies:
- get-east-asian-width: 1.5.0
- strip-ansi: 7.1.2
+ get-east-asian-width: 1.6.0
+ strip-ansi: 7.2.0
string.prototype.includes@2.0.1:
dependencies:
@@ -13998,10 +13988,6 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.2:
- dependencies:
- ansi-regex: 6.2.2
-
strip-ansi@7.2.0:
dependencies:
ansi-regex: 6.2.2
@@ -14010,7 +13996,8 @@ snapshots:
strip-indent@2.0.0: {}
- strip-json-comments@3.1.1: {}
+ strip-json-comments@3.1.1:
+ optional: true
style-search@0.1.0: {}
@@ -14021,18 +14008,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- stylelint-config-recommended@18.0.0(stylelint@17.6.0(typescript@5.9.3)):
+ stylelint-config-recommended@18.0.0(stylelint@17.11.1(typescript@5.9.3)):
dependencies:
- stylelint: 17.6.0(typescript@5.9.3)
+ stylelint: 17.11.1(typescript@5.9.3)
- stylelint-config-standard@40.0.0(stylelint@17.6.0(typescript@5.9.3)):
+ stylelint-config-standard@40.0.0(stylelint@17.11.1(typescript@5.9.3)):
dependencies:
- stylelint: 17.6.0(typescript@5.9.3)
- stylelint-config-recommended: 18.0.0(stylelint@17.6.0(typescript@5.9.3))
+ stylelint: 17.11.1(typescript@5.9.3)
+ stylelint-config-recommended: 18.0.0(stylelint@17.11.1(typescript@5.9.3))
- stylelint-declaration-block-no-ignored-properties@3.0.0(stylelint@17.6.0(typescript@5.9.3)):
+ stylelint-declaration-block-no-ignored-properties@3.0.0(stylelint@17.11.1(typescript@5.9.3)):
dependencies:
- stylelint: 17.6.0(typescript@5.9.3)
+ stylelint: 17.11.1(typescript@5.9.3)
stylelint-order@2.2.1(stylelint@9.10.1):
dependencies:
@@ -14041,23 +14028,23 @@ snapshots:
postcss-sorting: 4.1.0
stylelint: 9.10.1
- stylelint-order@8.1.1(stylelint@17.6.0(typescript@5.9.3)):
+ stylelint-order@8.1.1(stylelint@17.11.1(typescript@5.9.3)):
dependencies:
- postcss: 8.5.9
- postcss-sorting: 10.0.0(postcss@8.5.9)
- stylelint: 17.6.0(typescript@5.9.3)
+ postcss: 8.5.14
+ postcss-sorting: 10.0.0(postcss@8.5.14)
+ stylelint: 17.11.1(typescript@5.9.3)
- stylelint-prettier@5.0.3(prettier@3.8.1)(stylelint@17.6.0(typescript@5.9.3)):
+ stylelint-prettier@5.0.3(prettier@3.8.3)(stylelint@17.11.1(typescript@5.9.3)):
dependencies:
- prettier: 3.8.1
+ prettier: 3.8.3
prettier-linter-helpers: 1.0.0
- stylelint: 17.6.0(typescript@5.9.3)
+ stylelint: 17.11.1(typescript@5.9.3)
- stylelint@17.6.0(typescript@5.9.3):
+ stylelint@17.11.1(typescript@5.9.3):
dependencies:
- '@csstools/css-calc': 3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-calc': 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
'@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
- '@csstools/css-syntax-patches-for-csstree': 1.1.2(css-tree@3.2.1)
+ '@csstools/css-syntax-patches-for-csstree': 1.1.4(css-tree@3.2.1)
'@csstools/css-tokenizer': 4.0.0
'@csstools/media-query-list-parser': 5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
'@csstools/selector-resolve-nested': 4.0.0(postcss-selector-parser@7.1.1)
@@ -14069,24 +14056,23 @@ snapshots:
debug: 4.4.3
fast-glob: 3.3.3
fastest-levenshtein: 1.0.16
- file-entry-cache: 11.1.2
+ file-entry-cache: 11.1.3
global-modules: 2.0.0
- globby: 16.1.1
+ globby: 16.2.0
globjoin: 0.1.4
html-tags: 5.1.0
ignore: 7.0.5
import-meta-resolve: 4.2.0
- is-plain-object: 5.0.0
mathml-tag-names: 4.0.0
meow: 14.1.0
micromatch: 4.0.8
normalize-path: 3.0.0
picocolors: 1.1.1
- postcss: 8.5.9
- postcss-safe-parser: 7.0.1(postcss@8.5.9)
+ postcss: 8.5.14
+ postcss-safe-parser: 7.0.1(postcss@8.5.14)
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
- string-width: 8.2.0
+ string-width: 8.2.1
supports-hyperlinks: 4.4.0
svg-tags: 1.0.0
table: 6.9.0
@@ -14122,10 +14108,10 @@ snapshots:
normalize-selector: 0.2.0
pify: 4.0.1
postcss: 7.0.39
- postcss-html: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39)
- postcss-jsx: 0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39)
+ postcss-html: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39)
+ postcss-jsx: 0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39)
postcss-less: 3.1.4
- postcss-markdown: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.9))(postcss@8.5.9))(postcss@7.0.39)
+ postcss-markdown: 0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39)
postcss-media-query-parser: 0.2.3
postcss-reporter: 6.0.1
postcss-resolve-nested-selector: 0.1.6
@@ -14133,7 +14119,7 @@ snapshots:
postcss-sass: 0.3.5
postcss-scss: 2.1.1
postcss-selector-parser: 3.1.2
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-jsx@0.36.4)(postcss-less@3.1.4)(postcss-markdown@0.36.0)(postcss-scss@2.1.1)(postcss@7.0.39)
+ postcss-syntax: 0.36.2(postcss-html@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-jsx@0.36.4(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-less@3.1.4)(postcss-markdown@0.36.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.5.14))(postcss@8.5.14))(postcss@7.0.39))(postcss-scss@2.1.1)(postcss@7.0.39)
postcss-value-parser: 3.3.1
resolve-from: 4.0.0
signal-exit: 3.0.7
@@ -14149,6 +14135,8 @@ snapshots:
stylis@4.3.6: {}
+ stylis@4.4.0: {}
+
stylus@0.64.0:
dependencies:
'@adobe/css-tools': 4.3.3
@@ -14173,9 +14161,9 @@ snapshots:
dependencies:
postcss: 7.0.39
- sugarss@5.0.1(postcss@8.5.9):
+ sugarss@5.0.1(postcss@8.5.14):
dependencies:
- postcss: 8.5.9
+ postcss: 8.5.14
supports-color@10.2.2: {}
@@ -14183,10 +14171,6 @@ snapshots:
dependencies:
has-flag: 3.0.0
- supports-color@7.2.0:
- dependencies:
- has-flag: 4.0.0
-
supports-color@8.1.1:
dependencies:
has-flag: 4.0.0
@@ -14199,31 +14183,31 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte-check@4.4.6(picomatch@4.0.4)(svelte@5.55.2)(typescript@5.9.3):
+ svelte-check@4.4.8(picomatch@4.0.4)(svelte@5.55.7(@typescript-eslint/types@8.59.3))(typescript@5.9.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
chokidar: 4.0.3
fdir: 6.5.0(picomatch@4.0.4)
picocolors: 1.1.1
sade: 1.8.1
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
typescript: 5.9.3
transitivePeerDependencies:
- picomatch
- svelte-eslint-parser@1.6.0(svelte@5.55.2):
+ svelte-eslint-parser@1.6.1(svelte@5.55.7(@typescript-eslint/types@8.59.3)):
dependencies:
eslint-scope: 8.4.0
eslint-visitor-keys: 4.2.1
espree: 10.4.0
- postcss: 8.5.9
- postcss-scss: 4.0.9(postcss@8.5.9)
+ postcss: 8.5.14
+ postcss-scss: 4.0.9(postcss@8.5.14)
postcss-selector-parser: 7.1.1
- semver: 7.7.4
+ semver: 7.8.0
optionalDependencies:
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
- svelte-i18n@4.0.1(svelte@5.55.2):
+ svelte-i18n@4.0.1(svelte@5.55.7(@typescript-eslint/types@8.59.3)):
dependencies:
cli-color: 2.0.4
deepmerge: 4.3.1
@@ -14231,42 +14215,44 @@ snapshots:
estree-walker: 2.0.2
intl-messageformat: 10.7.16
sade: 1.8.1
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
tiny-glob: 0.2.9
- svelte-preprocess@6.0.3(@babel/core@7.29.0)(coffeescript@2.7.0)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2))(postcss@8.5.9)(pug@3.0.3)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(svelte@5.55.2)(typescript@5.9.3):
+ svelte-preprocess@6.0.3(@babel/core@7.29.0)(coffeescript@2.7.0)(less@4.6.4)(postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0))(postcss@8.5.14)(pug@3.0.3)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(svelte@5.55.7(@typescript-eslint/types@8.59.3))(typescript@5.9.3):
dependencies:
- svelte: 5.55.2
+ svelte: 5.55.7(@typescript-eslint/types@8.59.3)
optionalDependencies:
'@babel/core': 7.29.0
coffeescript: 2.7.0
less: 4.6.4
- postcss: 8.5.9
- postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2)
+ postcss: 8.5.14
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0)
pug: 3.0.3
sass: 1.97.3
stylus: 0.64.0
- sugarss: 5.0.1(postcss@8.5.9)
+ sugarss: 5.0.1(postcss@8.5.14)
typescript: 5.9.3
- svelte@5.55.2:
+ svelte@5.55.7(@typescript-eslint/types@8.59.3):
dependencies:
'@jridgewell/remapping': 2.3.5
'@jridgewell/sourcemap-codec': 1.5.5
'@sveltejs/acorn-typescript': 1.0.9(acorn@8.16.0)
- '@types/estree': 1.0.8
+ '@types/estree': 1.0.9
'@types/trusted-types': 2.0.7
acorn: 8.16.0
aria-query: 5.3.1
axobject-query: 4.1.0
clsx: 2.1.1
- devalue: 5.7.0
+ devalue: 5.8.1
esm-env: 1.2.2
- esrap: 2.2.4
+ esrap: 2.2.9(@typescript-eslint/types@8.59.3)
is-reference: 3.0.3
locate-character: 3.0.0
magic-string: 0.30.21
zimmerframe: 1.1.4
+ transitivePeerDependencies:
+ - '@typescript-eslint/types'
svg-tags@1.0.0: {}
@@ -14283,7 +14269,7 @@ snapshots:
table@6.9.0:
dependencies:
- ajv: 8.18.0
+ ajv: 8.20.0
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -14320,9 +14306,7 @@ snapshots:
tinyexec@0.3.2: {}
- tinyexec@1.0.4: {}
-
- tinyexec@1.1.1: {}
+ tinyexec@1.1.2: {}
tinyglobby@0.2.14:
dependencies:
@@ -14381,36 +14365,36 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-node@10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.5.4):
+ ts-node@10.9.2(@swc/core@1.15.33)(@types/node@24.12.4)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.12
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 18.19.130
- acorn: 8.15.0
- acorn-walk: 8.3.4
+ '@types/node': 24.12.4
+ acorn: 8.16.0
+ acorn-walk: 8.3.5
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.4
make-error: 1.3.6
- typescript: 5.5.4
+ typescript: 5.9.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.15.18
+ '@swc/core': 1.15.33
- ts-node@10.9.2(@swc/core@1.15.18)(@types/node@25.5.2)(typescript@5.9.3):
+ ts-node@10.9.2(@swc/core@1.15.33)(@types/node@25.8.0)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.12
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 25.5.2
- acorn: 8.15.0
- acorn-walk: 8.3.4
+ '@types/node': 25.8.0
+ acorn: 8.16.0
+ acorn-walk: 8.3.5
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.4
@@ -14419,7 +14403,7 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.15.18
+ '@swc/core': 1.15.33
optional: true
tsconfig-paths@3.15.0:
@@ -14431,7 +14415,7 @@ snapshots:
tslib@2.8.1: {}
- tsup@8.5.1(@microsoft/api-extractor@7.52.10(@types/node@25.5.2))(@swc/core@1.15.18)(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2):
+ tsup@8.5.1(@microsoft/api-extractor@7.52.10(@types/node@25.8.0))(@swc/core@1.15.33)(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(typescript@5.9.3)(yaml@2.9.0):
dependencies:
bundle-require: 5.1.0(esbuild@0.27.0)
cac: 6.7.14
@@ -14442,7 +14426,7 @@ snapshots:
fix-dts-default-cjs-exports: 1.0.1
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.9)(tsx@4.21.0)(yaml@2.8.2)
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.14)(tsx@4.22.1)(yaml@2.9.0)
resolve-from: 5.0.0
rollup: 4.53.3
source-map: 0.7.6
@@ -14451,9 +14435,9 @@ snapshots:
tinyglobby: 0.2.15
tree-kill: 1.2.2
optionalDependencies:
- '@microsoft/api-extractor': 7.52.10(@types/node@25.5.2)
- '@swc/core': 1.15.18
- postcss: 8.5.9
+ '@microsoft/api-extractor': 7.52.10(@types/node@25.8.0)
+ '@swc/core': 1.15.33
+ postcss: 8.5.14
typescript: 5.9.3
transitivePeerDependencies:
- jiti
@@ -14461,10 +14445,9 @@ snapshots:
- tsx
- yaml
- tsx@4.21.0:
+ tsx@4.22.1:
dependencies:
- esbuild: 0.27.3
- get-tsconfig: 4.13.3
+ esbuild: 0.28.0
optionalDependencies:
fsevents: 2.3.3
@@ -14509,34 +14492,32 @@ snapshots:
possible-typed-array-names: 1.1.0
reflect.getprototypeof: 1.0.10
- typescript-eslint@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3):
+ typescript-eslint@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/typescript-estree': 8.58.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.58.1(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.39.4(jiti@2.6.1)
+ '@typescript-eslint/eslint-plugin': 8.59.3(@typescript-eslint/parser@8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.59.3(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.59.3(eslint@10.4.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 10.4.0(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- typescript-json-schema@0.67.1(@swc/core@1.15.18):
+ typescript-json-schema@0.67.3(@swc/core@1.15.33):
dependencies:
'@types/json-schema': 7.0.15
- '@types/node': 18.19.130
- glob: 7.2.3
+ '@types/node': 24.12.4
+ glob: 13.0.6
path-equal: 1.2.5
safe-stable-stringify: 2.5.0
- ts-node: 10.9.2(@swc/core@1.15.18)(@types/node@18.19.130)(typescript@5.5.4)
- typescript: 5.5.4
- vm2: 3.10.4
- yargs: 17.7.2
+ ts-node: 10.9.2(@swc/core@1.15.33)(@types/node@24.12.4)(typescript@5.9.3)
+ typescript: 5.9.3
+ vm2: 3.11.3
+ yargs: 18.0.0
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
- typescript@5.5.4: {}
-
typescript@5.8.2:
optional: true
@@ -14544,8 +14525,6 @@ snapshots:
ufo@1.6.1: {}
- ufo@1.6.3: {}
-
unbox-primitive@1.1.0:
dependencies:
call-bound: 1.0.4
@@ -14553,11 +14532,11 @@ snapshots:
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
- undici-types@5.26.5: {}
+ undici-types@7.16.0: {}
- undici-types@7.18.2: {}
+ undici-types@7.24.6: {}
- undici@6.23.0: {}
+ undici@6.25.0: {}
unherit@1.1.3:
dependencies:
@@ -14652,12 +14631,6 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- update-browserslist-db@1.1.4(browserslist@4.27.0):
- dependencies:
- browserslist: 4.27.0
- escalade: 3.2.0
- picocolors: 1.1.1
-
update-browserslist-db@1.2.3(browserslist@4.28.1):
dependencies:
browserslist: 4.28.1
@@ -14674,7 +14647,7 @@ snapshots:
util-deprecate@1.0.2: {}
- uuid@11.1.0: {}
+ uuid@14.0.0: {}
v8-compile-cache-lib@3.0.1: {}
@@ -14701,7 +14674,7 @@ snapshots:
unist-util-stringify-position: 1.1.2
vfile-message: 1.1.1
- vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2):
+ vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0):
dependencies:
esbuild: 0.27.3
fdir: 6.5.0(picomatch@4.0.3)
@@ -14710,47 +14683,30 @@ snapshots:
rollup: 4.59.0
tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 18.19.130
+ '@types/node': 24.12.4
fsevents: 2.3.3
jiti: 2.6.1
less: 4.6.4
lightningcss: 1.31.1
sass: 1.97.3
stylus: 0.64.0
- sugarss: 5.0.1(postcss@8.5.9)
+ sugarss: 5.0.1(postcss@8.5.14)
terser: 5.46.0
- tsx: 4.21.0
- yaml: 2.8.2
+ tsx: 4.22.1
+ yaml: 2.9.0
- vitefu@1.1.2(vite@7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)):
+ vitefu@1.1.2(vite@7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)):
optionalDependencies:
- vite: 7.3.1(@types/node@18.19.130)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.9))(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)
+ vite: 7.3.1(@types/node@24.12.4)(jiti@2.6.1)(less@4.6.4)(lightningcss@1.31.1)(sass@1.97.3)(stylus@0.64.0)(sugarss@5.0.1(postcss@8.5.14))(terser@5.46.0)(tsx@4.22.1)(yaml@2.9.0)
- vm2@3.10.4:
+ vm2@3.11.3:
dependencies:
- acorn: 8.15.0
- acorn-walk: 8.3.4
+ acorn: 8.16.0
+ acorn-walk: 8.3.5
void-elements@3.1.0: {}
- vscode-jsonrpc@8.2.0: {}
-
- vscode-languageserver-protocol@3.17.5:
- dependencies:
- vscode-jsonrpc: 8.2.0
- vscode-languageserver-types: 3.17.5
-
- vscode-languageserver-textdocument@1.0.12: {}
-
- vscode-languageserver-types@3.17.5: {}
-
- vscode-languageserver@9.0.1:
- dependencies:
- vscode-languageserver-protocol: 3.17.5
-
- vscode-uri@3.1.0: {}
-
- wavesurfer.js@7.12.5: {}
+ wavesurfer.js@7.12.7: {}
web-streams-polyfill@3.3.3: {}
@@ -14823,6 +14779,12 @@ snapshots:
word-wrap@1.2.5: {}
+ wrap-ansi@10.0.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ string-width: 8.2.1
+ strip-ansi: 7.2.0
+
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -14864,23 +14826,23 @@ snapshots:
yaml@1.10.3: {}
- yaml@2.8.2: {}
+ yaml@2.9.0:
+ optional: true
yargs-parser@10.1.0:
dependencies:
camelcase: 4.1.0
- yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
- yargs@17.7.2:
+ yargs@18.0.0:
dependencies:
- cliui: 8.0.1
+ cliui: 9.0.1
escalade: 3.2.0
get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
+ string-width: 7.2.0
y18n: 5.0.8
- yargs-parser: 21.1.1
+ yargs-parser: 22.0.0
yn@3.1.1: {}
@@ -14890,8 +14852,8 @@ snapshots:
zimmerframe@1.1.4: {}
- zod-validation-error@4.0.2(zod@4.1.12):
+ zod-validation-error@4.0.2(zod@4.4.3):
dependencies:
- zod: 4.1.12
+ zod: 4.4.3
- zod@4.1.12: {}
+ zod@4.4.3: {}
From 4dcfdad7564e3a34ef0624bbfc1961d582b99632 Mon Sep 17 00:00:00 2001
From: Col0ring <1561999073@qq.com>
Date: Mon, 18 May 2026 16:05:42 +0800
Subject: [PATCH 2/4] fix: ci node version
---
.github/workflows/lint.yaml | 2 +-
frontend/antdx/think/Index.svelte | 6 ------
2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index 558b283e..cfe2a500 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -24,7 +24,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
- node-version: 20
+ node-version: 22
- name: Install Pnpm
run: npm i pnpm@latest -g
- name: Install Node Dependencies
diff --git a/frontend/antdx/think/Index.svelte b/frontend/antdx/think/Index.svelte
index c29e6e7b..28e5703b 100644
--- a/frontend/antdx/think/Index.svelte
+++ b/frontend/antdx/think/Index.svelte
@@ -17,8 +17,6 @@
_internal: {
layout?: boolean;
};
- root: string;
- proxy_url: string;
}>(() => props);
const getProceedProps = processProps(() => {
@@ -29,8 +27,6 @@
elem_classes,
elem_id,
elem_style,
- root,
- proxy_url,
...restProps
} = getComponentProps();
return {
@@ -43,8 +39,6 @@
elem_id,
elem_classes,
elem_style,
- root,
- proxy_url,
};
}, {});
const proceedProps = $derived(getProceedProps());
From ed5a4e7e38a565ede7608d157d67f8b858008b18 Mon Sep 17 00:00:00 2001
From: Col0ring <1561999073@qq.com>
Date: Mon, 18 May 2026 16:07:19 +0800
Subject: [PATCH 3/4] fix: ci
---
pnpm-workspace.yaml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 126b13b3..1a5aa88f 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -8,4 +8,7 @@ packages:
- frontend/antdx
onlyBuiltDependencies:
+ - '@parcel/watcher'
+ - '@swc/core'
+ - esbuild
- svelte-preprocess
From 8a7c750f4ebfccf18ad16687e323a7c5f9a4bbad Mon Sep 17 00:00:00 2001
From: Col0ring <1561999073@qq.com>
Date: Mon, 18 May 2026 16:22:36 +0800
Subject: [PATCH 4/4] fix: ci
---
.github/workflows/lint.yaml | 2 +-
.github/workflows/publish.yaml | 2 +-
.../modelscope_studio/components/antd/cascader/__init__.py | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index cfe2a500..05ac132e 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -26,7 +26,7 @@ jobs:
with:
node-version: 22
- name: Install Pnpm
- run: npm i pnpm@latest -g
+ run: npm i pnpm@^10 -g
- name: Install Node Dependencies
run: pnpm install
- name: Run Lint
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml
index ad4c67a7..7eef1ab4 100644
--- a/.github/workflows/publish.yaml
+++ b/.github/workflows/publish.yaml
@@ -42,7 +42,7 @@ jobs:
- name: Install Pnpm
if: |
github.event.head_commit.message == 'chore: update versions'
- run: npm i pnpm@latest -g
+ run: npm i pnpm@^10 -g
- name: Install Node Dependencies
if: |
github.event.head_commit.message == 'chore: update versions'
diff --git a/backend/modelscope_studio/components/antd/cascader/__init__.py b/backend/modelscope_studio/components/antd/cascader/__init__.py
index 20eb602d..688b0820 100644
--- a/backend/modelscope_studio/components/antd/cascader/__init__.py
+++ b/backend/modelscope_studio/components/antd/cascader/__init__.py
@@ -39,8 +39,8 @@ class AntdCascader(ModelScopeDataLayoutComponent):
SLOTS = [
'allowClear.clearIcon', 'suffixIcon', 'maxTagPlaceholder',
'notFoundContent', 'expandIcon', 'removeIcon', 'showSearch.searchIcon',
- 'prefix', 'displayRender', 'tagRender', 'dropdownRender', 'popupRender'
- 'showSearch.render', 'optionRender'
+ 'prefix', 'displayRender', 'tagRender', 'dropdownRender',
+ 'popupRender', 'showSearch.render', 'optionRender'
]
def __init__(