@arco-themes/react-aiux2026 1.0.3 → 1.0.5
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/README.md +13 -0
- package/css/arco.css +2 -2
- package/package.json +2 -2
- package/theme.less +18 -0
- package/variables.less +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arco-themes/react-aiux2026",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "dobe25381-gif",
|
|
6
6
|
"owners": [],
|
|
@@ -14,6 +14,6 @@
|
|
|
14
14
|
"depLibrary": "@arco-design/web-react",
|
|
15
15
|
"tag": "latest",
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@arco-design/web-react": "^2.66.
|
|
17
|
+
"@arco-design/web-react": "^2.66.15"
|
|
18
18
|
}
|
|
19
19
|
}
|
package/theme.less
CHANGED
|
@@ -1701,6 +1701,14 @@
|
|
|
1701
1701
|
}
|
|
1702
1702
|
}
|
|
1703
1703
|
|
|
1704
|
+
.arco-form-item {
|
|
1705
|
+
margin-bottom: 24px;
|
|
1706
|
+
}
|
|
1707
|
+
.arco-form-message {
|
|
1708
|
+
min-height: 24px;
|
|
1709
|
+
line-height: 24px;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1704
1712
|
// Form Icon
|
|
1705
1713
|
.arco-form.arco-form-size-default {
|
|
1706
1714
|
.arco-form-item-feedback {
|
|
@@ -2083,6 +2091,16 @@
|
|
|
2083
2091
|
}
|
|
2084
2092
|
}
|
|
2085
2093
|
}
|
|
2094
|
+
// 修复左右按钮禁用时,滑动到上面导致输入框两侧高亮border
|
|
2095
|
+
.arco-input-group-wrapper.arco-input-number > .arco-input-group:has(.arco-input-group-addafter .arco-input-number-step-button-disabled) .arco-input-inner-wrapper:not(.arco-input-inner-wrapper-disabled) {
|
|
2096
|
+
border-right-color: var(--color-border-3);
|
|
2097
|
+
}
|
|
2098
|
+
.arco-input-group-wrapper.arco-input-number > .arco-input-group:has(.arco-input-group-addbefore .arco-input-number-step-button-disabled) .arco-input-inner-wrapper:not(.arco-input-inner-wrapper-disabled) {
|
|
2099
|
+
border-left-color: var(--color-border-3);
|
|
2100
|
+
}
|
|
2101
|
+
.arco-input-group-wrapper.arco-input-number .arco-input-inner-wrapper:not(.arco-input-inner-wrapper-disabled):hover {
|
|
2102
|
+
border-color: rgb(var(--primary-5)) !important;
|
|
2103
|
+
}
|
|
2086
2104
|
|
|
2087
2105
|
// Select
|
|
2088
2106
|
.arco-input-group > :first-child.arco-select > .arco-select-view {
|
package/variables.less
CHANGED