fix: 修复管理端前端 lint 与构建问题

- 收敛 easyflow-ui-admin 的 lint、格式和类型问题

- 修正 demo 页面与管理端前端构建失败点

- 验证 pnpm lint 与 pnpm build 均已通过
This commit is contained in:
2026-04-05 21:39:13 +08:00
parent bb72e19c84
commit 7e7c236c2a
240 changed files with 5151 additions and 4701 deletions

View File

@@ -408,8 +408,8 @@ const save = async () => {
}
.model-modal__ability-panel {
overflow: hidden;
padding: 2px;
overflow: hidden;
border-radius: 18px;
}
@@ -421,8 +421,8 @@ const save = async () => {
}
.model-modal__ability-separator {
width: 1px;
align-self: stretch;
width: 1px;
min-height: 28px;
background: hsl(var(--divider-faint) / 62%);
border-radius: 999px;
@@ -430,9 +430,9 @@ const save = async () => {
.model-modal__ability-chip {
display: inline-flex;
gap: 8px;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 40px;
padding: 9px 18px;
font-size: 13px;
@@ -454,21 +454,21 @@ const save = async () => {
.model-modal__ability-chip:hover:not(:disabled),
.model-modal__ability-chip:focus-visible:not(:disabled) {
color: hsl(var(--text-strong));
transform: translateY(-1px);
box-shadow: 0 10px 18px -14px hsl(var(--foreground) / 28%);
transform: translateY(-1px);
}
.model-modal__ability-chip.is-active {
color: hsl(var(--text-strong));
border-color: hsl(var(--primary) / 18%);
background: hsl(var(--primary) / 10%);
border-color: hsl(var(--primary) / 18%);
box-shadow: inset 0 0 0 1px hsl(var(--primary) / 14%);
}
.model-modal__ability-chip.is-disabled {
cursor: not-allowed;
opacity: 0.56;
box-shadow: none;
opacity: 0.56;
transform: none;
}