mirror of https://github.com/layui/layui
parent
225b399469
commit
7aeb992706
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
|
@ -9,9 +9,35 @@ toc: true
|
||||||
|
|
||||||
<h2 id="2.9.x" lay-toc="{title: '2.9.x'}"></h2>
|
<h2 id="2.9.x" lay-toc="{title: '2.9.x'}"></h2>
|
||||||
|
|
||||||
|
<h2 id="v2.9.15" class="ws-anchor">
|
||||||
|
v2.9.15
|
||||||
|
<!-- <span class="layui-badge-rim" style="color: #16b777;">稳定版</span> -->
|
||||||
|
<span class="layui-badge-rim">2024-08-16</span>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
- #### select
|
||||||
|
- 改进 `lay-search` 属性,支持设置「是否大小写敏感」和「模糊搜索」 #2121 @Sight-wcg
|
||||||
|
- 修复 `lay-append-to` 属性开启时在 dropdown 中点击 select 导致 dropdown 被关闭的问题 #2138 @Sight-wcg
|
||||||
|
- #### table
|
||||||
|
- 重构 `table.setRowChecked()` 方法,以优化若干边缘问题 #2146 @sentsim
|
||||||
|
- 恢复 #1773 的变更,以避免设置自动宽度的列被拖拽时的异常问题 #2169 @Sight-wcg
|
||||||
|
- #### tab
|
||||||
|
- 新增 `tabBeforeChange` 事件,tab 切换之前触发,可用于阻止 tab 切换 #2111 @sunxiaobin89
|
||||||
|
- #### element
|
||||||
|
- 新增 指定元素渲染的支持 #2162 @Sight-wcg
|
||||||
|
- #### upload
|
||||||
|
- 新增 `error` 回调函数的第四个参数为 xhr 对象 #2151 @sentsim
|
||||||
|
- #### carousel
|
||||||
|
- 修复 动态删除条目至最后一个时调用 `inst.reload` 的异常问题 #2107 @sentsim
|
||||||
|
- #### 其他
|
||||||
|
- 微调 `layui-text` 文本区域样式,以更好地适配 Markdown #2126 @sentsim
|
||||||
|
|
||||||
|
### 下载: [layui-v2.9.15.zip](https://gitee.com/layui/layui/attach_files/1873673/download)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
<h2 id="v2.9.14" class="ws-anchor">
|
<h2 id="v2.9.14" class="ws-anchor">
|
||||||
v2.9.14
|
v2.9.14
|
||||||
<!-- <span class="layui-badge-rim" style="color: #16b777;">稳定版</span> -->
|
|
||||||
<span class="layui-badge-rim">2024-07-09</span>
|
<span class="layui-badge-rim">2024-07-09</span>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "layui",
|
"name": "layui",
|
||||||
"version": "2.9.14",
|
"version": "2.9.15",
|
||||||
"description": "Classic modular Front-End UI library",
|
"description": "Classic modular Front-End UI library",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"layui",
|
"layui",
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
var Layui = function(){
|
var Layui = function(){
|
||||||
this.v = '2.9.14'; // Layui 版本号
|
this.v = '2.9.15'; // Layui 版本号
|
||||||
};
|
};
|
||||||
|
|
||||||
// 识别预先可能定义的指定全局对象
|
// 识别预先可能定义的指定全局对象
|
||||||
|
|
Loading…
Reference in New Issue