@aloudata/aloudata-design 1.9.4 → 1.9.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/dist/AldTable/style/index.less +1 -0
- package/dist/Button/index.d.ts +1 -1
- package/dist/Button/style/size.less +2 -0
- package/dist/Button/style/type.less +1 -0
- package/dist/Checkbox/style/index.less +46 -9
- package/dist/Empty/image/Search.js +22 -203
- package/dist/Empty/image/SearchSmall.js +8 -15
- package/dist/Empty/index.js +8 -8
- package/dist/Empty/style/index.less +9 -3
- package/dist/Icon/components/AlertTriangleDuotone.d.ts +2 -1
- package/dist/Icon/components/AlertTriangleDuotone.js +3 -3
- package/dist/Icon/components/CancelCircleDuotone.d.ts +2 -1
- package/dist/Icon/components/CancelCircleDuotone.js +4 -4
- package/dist/Icon/components/CheckCircleDuotone.d.ts +2 -1
- package/dist/Icon/components/CheckCircleDuotone.js +5 -5
- package/dist/Icon/components/InfoCircleLine.d.ts +2 -1
- package/dist/Icon/components/InfoCircleLine.js +3 -3
- package/dist/Input/style/index.less +20 -10
- package/dist/Modal/style/index.less +7 -0
- package/dist/Pagination/index.js +1 -1
- package/dist/Pagination/style/index.less +5 -1
- package/dist/Radio/style/index.less +4 -4
- package/dist/Select/index.js +2 -2
- package/dist/Select/style/index.less +1 -0
- package/dist/Select/style/multiple.less +1 -1
- package/dist/Select/style/single.less +2 -2
- package/dist/Switch/style/index.less +2 -1
- package/dist/Tree/style/index.less +18 -15
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
.ald-pagination-container {
|
|
5
5
|
display: flex;
|
|
6
6
|
align-items: center;
|
|
7
|
-
gap:
|
|
7
|
+
gap: 8px;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.ald-pagination-active.ald-btn.ald-btn.ald-btn-secondary {
|
|
@@ -20,3 +20,7 @@
|
|
|
20
20
|
border: none;
|
|
21
21
|
color: #858585;
|
|
22
22
|
}
|
|
23
|
+
|
|
24
|
+
.ald-btn.ald-btn.ald-btn-secondary.ald-pagination-button {
|
|
25
|
+
font-weight: 400;
|
|
26
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import '../../style/index.less';
|
|
2
2
|
|
|
3
3
|
@radio-icon-button-padding-large: 8px;
|
|
4
|
-
@radio-icon-button-padding-middle:
|
|
4
|
+
@radio-icon-button-padding-middle: 7px;
|
|
5
5
|
@radio-icon-button-padding-small: 7px;
|
|
6
6
|
@radio-group-height-large: 36px;
|
|
7
7
|
@radio-group-height-middle: 32px;
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
display: flex;
|
|
61
61
|
align-items: center;
|
|
62
62
|
justify-content: center;
|
|
63
|
-
color:
|
|
63
|
+
color: #171717;
|
|
64
64
|
font-weight: 400;
|
|
65
65
|
font-size: 13px;
|
|
66
66
|
line-height: 20px;
|
|
@@ -137,8 +137,8 @@
|
|
|
137
137
|
position: relative;
|
|
138
138
|
|
|
139
139
|
.ald-radio-label .ald-radio-desc {
|
|
140
|
-
color:
|
|
141
|
-
font-weight:
|
|
140
|
+
color: #171717;
|
|
141
|
+
font-weight: 400;
|
|
142
142
|
font-size: @font-size-middle;
|
|
143
143
|
font-style: normal;
|
|
144
144
|
}
|
package/dist/Select/index.js
CHANGED
|
@@ -30,11 +30,11 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
30
30
|
|
|
31
31
|
import { FoldDownFill } from '@aloudata/icons-react';
|
|
32
32
|
import { Select as AntdSelect } from 'antd';
|
|
33
|
+
import { getMergedStatus } from 'antd/lib/_util/statusUtils';
|
|
33
34
|
import DisabledContext from 'antd/lib/config-provider/DisabledContext';
|
|
34
35
|
import { FormItemInputContext } from 'antd/lib/form/context';
|
|
35
36
|
import useStyle from 'antd/lib/select/style';
|
|
36
37
|
import { useCompactItemContext } from 'antd/lib/space/Compact';
|
|
37
|
-
import { getMergedStatus } from 'antd/lib/_util/statusUtils';
|
|
38
38
|
import classNames from 'classnames';
|
|
39
39
|
import List from 'rc-virtual-list';
|
|
40
40
|
import React, { forwardRef, useContext, useEffect, useImperativeHandle, useMemo, useRef } from 'react';
|
|
@@ -114,7 +114,7 @@ var Select = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
114
114
|
notFoundContent = _props$notFoundConten === void 0 ? /*#__PURE__*/React.createElement(Empty, {
|
|
115
115
|
image: Empty.PRESENTED_IMAGE_SEARCH_SMALL,
|
|
116
116
|
size: "small",
|
|
117
|
-
title: "\u65E0\
|
|
117
|
+
title: "\u65E0\u641C\u7D22\u7ED3\u679C"
|
|
118
118
|
}) : _props$notFoundConten,
|
|
119
119
|
value = props.value,
|
|
120
120
|
tagRender = props.tagRender,
|
|
@@ -1,45 +1,48 @@
|
|
|
1
1
|
@import '../../style/index.less';
|
|
2
2
|
|
|
3
|
-
.ant-tree.ant-tree .ant-tree-treenode{
|
|
3
|
+
.ant-tree.ant-tree .ant-tree-treenode {
|
|
4
4
|
height: 28px;
|
|
5
5
|
align-items: center;
|
|
6
|
-
padding:0 12px;
|
|
6
|
+
padding: 0 12px;
|
|
7
7
|
width: 100%;
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
background-color:
|
|
9
|
+
&:hover {
|
|
10
|
+
background-color: #f8f8f8;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
&.ant-tree-treenode-selected {
|
|
14
|
+
background-color: #f0f6ff;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ant-tree-switcher {
|
|
14
18
|
line-height: 16px;
|
|
15
|
-
height: 16px;
|
|
19
|
+
height: 16px;
|
|
16
20
|
width: auto;
|
|
17
21
|
align-self: center;
|
|
18
22
|
|
|
19
|
-
.ant-tree-switcher-icon{
|
|
23
|
+
.ant-tree-switcher-icon {
|
|
20
24
|
vertical-align: middle;
|
|
21
25
|
}
|
|
22
26
|
}
|
|
23
27
|
|
|
24
|
-
.ant-tree-node-content-wrapper{
|
|
28
|
+
.ant-tree-node-content-wrapper {
|
|
25
29
|
line-height: 16px;
|
|
26
30
|
font-size: 12px;
|
|
27
31
|
min-height: 16px;
|
|
28
|
-
color
|
|
32
|
+
color: @NL0;
|
|
29
33
|
|
|
30
|
-
&.ant-tree-node-selected{
|
|
34
|
+
&.ant-tree-node-selected {
|
|
31
35
|
background: none;
|
|
32
|
-
|
|
33
36
|
}
|
|
34
37
|
|
|
35
|
-
&:hover{
|
|
38
|
+
&:hover {
|
|
36
39
|
background: none;
|
|
37
40
|
}
|
|
38
41
|
}
|
|
39
42
|
|
|
40
|
-
.ant-tree-indent{
|
|
41
|
-
.ant-tree-indent-unit{
|
|
43
|
+
.ant-tree-indent {
|
|
44
|
+
.ant-tree-indent-unit {
|
|
42
45
|
width: 12px;
|
|
43
46
|
}
|
|
44
47
|
}
|
|
45
|
-
}
|
|
48
|
+
}
|