mirror of https://github.com/layui/layui
parent
3f19d30870
commit
0c3baebdfb
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,6 +11,41 @@ toc: true
|
|||
|
||||
<h2 id="2.10+" lay-toc="{title: '2.10+'}"></h2>
|
||||
|
||||
<h2 id="v2.12.0" lay-pid="2.10+" class="ws-anchor">
|
||||
v2.12.0-alpha.0
|
||||
<span class="layui-badge-rim">2025-09-26</span>
|
||||
<span class="layui-badge-rim" style="color: #ff5722;">预览版</span>
|
||||
</h2>
|
||||
|
||||
> 本次更新全部由 @Sight-wcg 完成 🎉
|
||||
|
||||
- #### 新特性
|
||||
- 新增 i18n 模块,用于提供国际化多语言支持 #2698 @Sight-wcg
|
||||
- #### table
|
||||
- 新增 `ajax` 选项,用于自定义 Ajax 请求 #2752
|
||||
- 新增 `syncFixedRowHeight` 选项,用于行高自适应时同步固定列行高 #2825
|
||||
- 修复 checkbox/radio 列触发行事件问题 #2836
|
||||
- #### code
|
||||
- 新增 `highlightLine` 选项,用于实现行高亮功能 #2763
|
||||
- #### slider
|
||||
- 使用 component 模块重构组件,并继承其全部基础接口 #2781
|
||||
- #### dropdown
|
||||
- 新增 同时打开多个下拉面板的功能支持 #2827
|
||||
- 优化 目标元素尺寸变化时重新定位 #2827
|
||||
- 优化 点击目标元素的外部区域关闭面板的逻辑 #2827
|
||||
- #### form
|
||||
- 优化 select 面板在大小出现变化时定位问题 #2824
|
||||
- #### layer
|
||||
- 修复 `layer.iframeAuto()` 最大高度未限制在浏览器高度内的问题 #2839
|
||||
- #### laydate
|
||||
- 优化 左下角预览区域过渡色未与主题色保持一致的问题 #2840
|
||||
- #### nav
|
||||
- 修复 纵向菜单出现滚动条时,滑块位置异常 #2826
|
||||
|
||||
### 下载: [layui-v2.12.0-alpha.0.zip](https://gitee.com/layui/layui/attach_files/2365521/download)
|
||||
|
||||
---
|
||||
|
||||
<h2 id="v2.11.6" lay-pid="2.10+" class="ws-anchor">
|
||||
v2.11.6
|
||||
<span class="layui-badge-rim">2025-08-29</span>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "layui",
|
||||
"version": "2.11.6",
|
||||
"version": "2.12.0-alpha.0",
|
||||
"description": "Classic modular Front-End UI library",
|
||||
"keywords": [
|
||||
"layui",
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
// constructor
|
||||
var Class = function() {
|
||||
this.v = '2.11.6'; // 版本号
|
||||
this.v = '2.12.0-alpha.0'; // 版本号
|
||||
};
|
||||
|
||||
// 识别预先可能定义的指定全局对象
|
||||
|
|
Loading…
Reference in New Issue