From b4b2c759baf5ec21d244e5da91fa3bee730b75db Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?=
<3277200+sentsim@users.noreply.github.com>
Date: Fri, 14 Jul 2023 13:50:59 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20laydate=20=E6=96=87?=
=?UTF-8?q?=E6=A1=A3=E7=9A=84=20`range`=20=E5=B1=9E=E6=80=A7=E7=B1=BB?=
=?UTF-8?q?=E5=9E=8B=E8=AF=B4=E6=98=8E?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/laydate/detail/options.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/laydate/detail/options.md b/docs/laydate/detail/options.md
index 9db91583..564e0ca7 100644
--- a/docs/laydate/detail/options.md
+++ b/docs/laydate/detail/options.md
@@ -78,7 +78,7 @@
- 若为 `boolean` 类型,即表示是否开启范围选择,若设为 `true`,则开始日期与结束日期默认采用 `-` 连接符
- 若为 `string` 类型,则表示开启范围选择,且自定义开始日期与结束日期的连接符。如: `range: '~'`
-- 若为 `boolean` 类型,即表示开启范围选,且开始日期和结束日期分别赋值在两个目标选择器中,如:
+- 若为 `array` 类型,即表示开启范围选,且开始日期和结束日期分别赋值在两个目标选择器中,如:
```
range: ['#start', '#end']
From fa5073c5e73b5da29b80fffb62ae3b0a82768782 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?=
<3277200+sentsim@users.noreply.github.com>
Date: Tue, 18 Jul 2023 16:11:43 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E4=BC=98=E5=8C=96=20`input`=20=E6=95=B0?=
=?UTF-8?q?=E5=AD=97=E8=BE=93=E5=85=A5=E6=A1=86=E5=9C=A8=E5=89=8D=E7=BD=AE?=
=?UTF-8?q?=E5=90=8E=E7=BD=AE=E7=BB=93=E6=9E=84=E4=B8=AD=E7=9A=84=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/css/layui.css | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/css/layui.css b/src/css/layui.css
index 70378482..41521eb5 100644
--- a/src/css/layui.css
+++ b/src/css/layui.css
@@ -764,8 +764,8 @@ a cite{font-style: normal; *cursor:pointer;}
.layui-input-group{position: relative; display: table; box-sizing: border-box;}
.layui-input-group>*{display: table-cell; vertical-align: middle; position: relative;}
.layui-input-group .layui-input{padding-right: 15px;}
-.layui-input-group .layui-input-prefix{width: auto; border-right: 0;}
-.layui-input-group .layui-input-suffix{width: auto; border-left: 0;}
+.layui-input-group > .layui-input-prefix{width: auto; border-right: 0;}
+.layui-input-group > .layui-input-suffix{width: auto; border-left: 0;}
.layui-input-group .layui-input-split{white-space: nowrap;}
/* 输入框前后缀容器 */
@@ -793,12 +793,12 @@ a cite{font-style: normal; *cursor:pointer;}
.layui-input-affix .layui-icon:hover{color: rgba(0,0,0,.6);}
/* 数字输入框动态点缀 */
-.layui-input-number{width: 24px; padding: 0;}
-.layui-input-number .layui-icon{position: absolute; right: 0; width: 100%; height: 50%; line-height: normal; font-size: 12px;}
-.layui-input-number .layui-icon:before{position: absolute; left: 50%; top: 50%; margin-top: -6px; margin-left: -6px;}
-.layui-input-number .layui-icon:first-child{top: 0; border-bottom: 1px solid #eee;}
-.layui-input-number .layui-icon:last-child{bottom: 0;}
-.layui-input-number .layui-icon:hover{font-weight: 700;}
+.layui-input-wrap .layui-input-number{width: 24px; padding: 0;}
+.layui-input-wrap .layui-input-number .layui-icon{position: absolute; right: 0; width: 100%; height: 50%; line-height: normal; font-size: 12px;}
+.layui-input-wrap .layui-input-number .layui-icon:before{position: absolute; left: 50%; top: 50%; margin-top: -6px; margin-left: -6px;}
+.layui-input-wrap .layui-input-number .layui-icon:first-child{top: 0; border-bottom: 1px solid #eee;}
+.layui-input-wrap .layui-input-number .layui-icon:last-child{bottom: 0;}
+.layui-input-wrap .layui-input-number .layui-icon:hover{font-weight: 700;}
.layui-input-wrap .layui-input[type="number"]::-webkit-outer-spin-button,
.layui-input-wrap .layui-input[type="number"]::-webkit-inner-spin-button{-webkit-appearance: none !important;}
.layui-input-wrap .layui-input[type="number"]{-moz-appearance: textfield;}
From 3cd9bcd4d8ebe0a2e021e69b50252b93ffa9adc8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?=
<3277200+sentsim@users.noreply.github.com>
Date: Fri, 21 Jul 2023 12:35:24 +0800
Subject: [PATCH 3/4] =?UTF-8?q?=E4=BC=98=E5=8C=96=20Gitee=20issue=20?=
=?UTF-8?q?=E8=A1=A8=E5=8D=95=E6=A8=A1=E6=9D=BF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitee/ISSUE_TEMPLATE/bug.yml | 4 +++-
.gitee/ISSUE_TEMPLATE/feature.yml | 26 --------------------------
2 files changed, 3 insertions(+), 27 deletions(-)
delete mode 100644 .gitee/ISSUE_TEMPLATE/feature.yml
diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml
index 2fa912ac..d0fb2576 100644
--- a/.gitee/ISSUE_TEMPLATE/bug.yml
+++ b/.gitee/ISSUE_TEMPLATE/bug.yml
@@ -5,7 +5,9 @@ body:
- type: markdown
attributes:
value: |
- 在反馈问题之前,请确保:
+ **请注意**:此处只接受 Layui 相关技术问题,其他如 layuiAdmin 或 layim 等主题相关问题请勿在此反馈。
+
+ 同时,在反馈问题之前,请确保:
- 已查看官方使用文档:**https://layui.dev** ,但没有找到相关解决方案。
- 已在 **Issues** 中搜索过类似的问题,但没有找到相关解决方案。
- type: input
diff --git a/.gitee/ISSUE_TEMPLATE/feature.yml b/.gitee/ISSUE_TEMPLATE/feature.yml
deleted file mode 100644
index 8d4fcb88..00000000
--- a/.gitee/ISSUE_TEMPLATE/feature.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: 😄 功能建议
-description: 对 Layui 提出合理且有效的建议。
-title: ""
-labels: ["建议"]
-body:
- - type: textarea
- id: related-problem
- attributes:
- label: 建议内容
- placeholder: 阐述提出该建议的出发点,请认真填写。
- validations:
- required: true
- - type: textarea
- id: desired-solution
- attributes:
- label: 解决方案
- placeholder: 你希望得到什么样的解决方案?
- validations:
- required: true
- - type: textarea
- id: additional-context
- attributes:
- label: 截图说明
- placeholder: 在此处添加有关功能请求的相关截图(支持粘贴上传)。
- validations:
- required: false
\ No newline at end of file
From 92465e0a2910cbd5e87418df3b852f79b7c4f354 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?=
<3277200+sentsim@users.noreply.github.com>
Date: Fri, 21 Jul 2023 12:35:59 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E5=AE=8C=E5=96=84=20tab=20=E6=96=87?=
=?UTF-8?q?=E6=A1=A3=E4=B8=AD=E7=9A=84=E7=A4=BA=E4=BE=8B=E7=9A=84=E8=B5=84?=
=?UTF-8?q?=E6=BA=90=E5=BC=95=E5=85=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/tab/index.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docs/tab/index.md b/docs/tab/index.md
index 8c09df2f..44b4a168 100644
--- a/docs/tab/index.md
+++ b/docs/tab/index.md
@@ -46,6 +46,7 @@ tab 组件提供了三种 UI 风格,分别为: