@agile-team/wl-skills-ui 1.6.12 → 1.6.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ All notable changes to **@agile-team/wl-skills-ui** will be documented in this f
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## [1.6.13] - 2026-05-12
8
+
9
+ ### Fixed
10
+
11
+ - 补强表单输入、选择、日期和文本域的 focus 品牌色边框兼容规则,确保普通 focus 态稳定生效。
12
+ - 补强 Element Plus 必填星号红色显示规则,兼容未显式配置 asterisk 方向的表单场景。
13
+
7
14
  ## [1.6.12] - 2026-05-12
8
15
 
9
16
  ### Fixed
package/README.md CHANGED
@@ -193,8 +193,9 @@ yarn add @agile-team/wl-skills-ui
193
193
 
194
194
  ## 版本亮点
195
195
 
196
- 当前 v1.6.12 版本继续强化“统一规则源 + 单一事实源 + 项目集群封装必覆盖 + UI 细节精准修复”的闭环,并补齐销售报价页暴露出的通用 UI 细节:
196
+ 当前 v1.6.13 版本继续强化“统一规则源 + 单一事实源 + 项目集群封装必覆盖 + UI 细节精准修复”的闭环,并补齐销售报价页暴露出的通用 UI 细节:
197
197
 
198
+ - 补强输入、选择、日期、文本域 focus 品牌色边框和必填星号红色显示规则,兼容 Element Plus 定制版本差异
198
199
  - 修复表单必填星号、错误 label、错误提示和错误边框红色态,避免校验反馈被通用 label/input 样式覆盖
199
200
  - 优化 BaseToolbar 下拉/分裂按钮组,让“主动作 + 下拉动作”按一个动作组展示,避免视觉割裂
200
201
  - 优化 AG Grid 操作列 `jh-op-*` 图标/胶囊/文字按钮,取消按压缩放抖动,并提升选中行下的可读性
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agile-team/wl-skills-ui",
3
- "version": "1.6.12",
3
+ "version": "1.6.13",
4
4
  "description": "企业级 UI 风格对齐框架 — Vue + Element Plus 项目通用化妆/原生双模式(tokens / element / vendors / layouts / runtime / scanner / fixer / skills)",
5
5
  "type": "module",
6
6
  "main": "./es/index.js",
@@ -482,14 +482,20 @@
482
482
  .el-input__wrapper,
483
483
  .el-select .el-input__wrapper,
484
484
  .el-select__wrapper,
485
- .el-date-editor.el-input__wrapper {
485
+ .el-date-editor.el-input__wrapper,
486
+ .el-textarea__inner {
486
487
  border-radius: 6px !important;
487
488
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
488
489
  }
489
490
 
490
491
  .el-input__wrapper.is-focus,
492
+ .el-input__wrapper:focus-within,
493
+ .el-select__wrapper.is-focus,
491
494
  .el-select__wrapper.is-focused,
492
- .el-date-editor.el-input__wrapper.is-focus {
495
+ .el-select__wrapper:focus-within,
496
+ .el-date-editor.el-input__wrapper.is-focus,
497
+ .el-date-editor.el-input__wrapper:focus-within,
498
+ .el-textarea__inner:focus {
493
499
  box-shadow: 0 0 0 1.5px var(--el-color-primary, #2254f4) inset !important;
494
500
  }
495
501
 
@@ -503,8 +509,11 @@
503
509
  }
504
510
 
505
511
  .el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label::before,
506
- .el-form-item.is-required:not(.is-no-asterisk).asterisk-right > .el-form-item__label::after {
512
+ .el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label::after,
513
+ .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label::before,
514
+ .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label::after {
507
515
  color: var(--el-color-danger, #f56c6c) !important;
516
+ display: inline-block !important;
508
517
  }
509
518
 
510
519
  .el-form-item.is-error {