@arco-themes/react-aiux2026 1.0.3 → 1.0.4
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 +6 -0
- package/css/arco.css +2 -2
- package/package.json +3 -3
- package/theme.less +10 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arco-themes/react-aiux2026",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "",
|
|
5
|
-
"author": "
|
|
5
|
+
"author": "bitjjj",
|
|
6
6
|
"owners": [],
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"unpkg": "latest",
|
|
@@ -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
|
@@ -2083,6 +2083,16 @@
|
|
|
2083
2083
|
}
|
|
2084
2084
|
}
|
|
2085
2085
|
}
|
|
2086
|
+
// 修复左右按钮禁用时,滑动到上面导致输入框两侧高亮border
|
|
2087
|
+
.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) {
|
|
2088
|
+
border-right-color: var(--color-border-3);
|
|
2089
|
+
}
|
|
2090
|
+
.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) {
|
|
2091
|
+
border-left-color: var(--color-border-3);
|
|
2092
|
+
}
|
|
2093
|
+
.arco-input-group-wrapper.arco-input-number .arco-input-inner-wrapper:not(.arco-input-inner-wrapper-disabled):hover {
|
|
2094
|
+
border-color: rgb(var(--primary-5)) !important;
|
|
2095
|
+
}
|
|
2086
2096
|
|
|
2087
2097
|
// Select
|
|
2088
2098
|
.arco-input-group > :first-child.arco-select > .arco-select-view {
|