@arco-themes/react-aiux2026 1.0.2 → 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 +12 -0
- package/css/arco.css +2 -2
- package/package.json +3 -3
- package/theme.less +20 -1
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 {
|
|
@@ -2396,6 +2406,16 @@
|
|
|
2396
2406
|
font-weight: 600;
|
|
2397
2407
|
}
|
|
2398
2408
|
|
|
2409
|
+
.drawer-sm {
|
|
2410
|
+
width: 600px;
|
|
2411
|
+
}
|
|
2412
|
+
.drawer-md {
|
|
2413
|
+
width: 900px;
|
|
2414
|
+
}
|
|
2415
|
+
.drawer-lg {
|
|
2416
|
+
width: 1200px;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2399
2419
|
body[arco-theme='dark'] {
|
|
2400
2420
|
.arco-tooltip {
|
|
2401
2421
|
.arco-tooltip-content {
|
|
@@ -2423,5 +2443,4 @@ body[arco-theme='dark'] {
|
|
|
2423
2443
|
border-width: 1px;
|
|
2424
2444
|
}
|
|
2425
2445
|
}
|
|
2426
|
-
|
|
2427
2446
|
}
|