@aloudata/aloudata-design 0.4.8-beta.1 → 0.4.8-beta.10
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/Button/index.js +5 -5
- package/dist/Button/style/index.less +48 -44
- package/dist/Button/style/variables.less +13 -13
- package/dist/Checkbox/style/index.less +7 -3
- package/dist/Empty/image/SearchSmall.js +5 -0
- package/dist/Empty/style/index.less +11 -0
- package/dist/Icon/icons.js +32 -0
- package/dist/Input/style/index.less +45 -30
- package/dist/Menu/style/index.less +73 -2
- package/dist/Modal/index.js +28 -15
- package/dist/Modal/style/index.less +23 -6
- package/dist/Radio/components/Group/index.js +7 -4
- package/dist/Radio/components/Radio/index.js +9 -6
- package/dist/Radio/interface/radioGroup.d.ts +6 -1
- package/dist/Radio/style/index.less +152 -46
- package/dist/Select/components/MultipleOption.d.ts +1 -0
- package/dist/Select/components/MultipleOption.js +7 -3
- package/dist/Select/components/SingleOption.d.ts +1 -0
- package/dist/Select/components/SingleOption.js +6 -2
- package/dist/Select/index.js +70 -9
- package/dist/Select/style/index.less +7 -3
- package/dist/Select/style/multiple.less +13 -2
- package/dist/Select/style/single.less +12 -1
- package/dist/Table/style/index.less +9 -7
- package/dist/Tabs/index.d.ts +15 -0
- package/dist/Tabs/index.js +37 -6
- package/dist/Tabs/style/index.less +38 -1
- package/dist/notification/demo/index.js +24 -7
- package/dist/notification/index.d.ts +9 -1
- package/dist/notification/index.js +148 -1
- package/dist/notification/style/index.less +28 -0
- package/dist/style/themes/default/index.less +25 -25
- package/package.json +3 -3
package/dist/Button/index.js
CHANGED
|
@@ -17,9 +17,9 @@ import { Button as AntdButton } from 'antd';
|
|
|
17
17
|
import classNames from 'classnames';
|
|
18
18
|
import React from 'react';
|
|
19
19
|
var iconPrefixCls = 'aldicon';
|
|
20
|
-
var ICON_LARGE =
|
|
21
|
-
var ICON_MIDDLE =
|
|
22
|
-
var ICON_SMALL =
|
|
20
|
+
var ICON_LARGE = 20;
|
|
21
|
+
var ICON_MIDDLE = 16;
|
|
22
|
+
var ICON_SMALL = 14;
|
|
23
23
|
export var btnPrefix = 'ald-btn';
|
|
24
24
|
export function getButtonType(buttonType) {
|
|
25
25
|
if (!['primary', 'secondary', 'dangerous', 'text', 'link'].includes(buttonType)) {
|
|
@@ -44,7 +44,7 @@ export function getDangerStatus(buttonType) {
|
|
|
44
44
|
return false;
|
|
45
45
|
}
|
|
46
46
|
export function getButtonSizeClass(ButtonSize) {
|
|
47
|
-
return
|
|
47
|
+
return ['small', 'large'].includes(ButtonSize) ? "".concat(btnPrefix, "-").concat(ButtonSize) : "".concat(btnPrefix, "-middle");
|
|
48
48
|
}
|
|
49
49
|
export function getIconSize(ButtonSize) {
|
|
50
50
|
if (ButtonSize === 'large') {
|
|
@@ -80,7 +80,7 @@ export var setIcon = function setIcon(iconNode, size, loading) {
|
|
|
80
80
|
if (loading) {
|
|
81
81
|
return /*#__PURE__*/React.createElement(LoadingLine, {
|
|
82
82
|
spin: true,
|
|
83
|
-
size:
|
|
83
|
+
size: getIconSize(size),
|
|
84
84
|
className: classNames("".concat(iconPrefixCls, "-icon-left"), iconPrefixCls),
|
|
85
85
|
fill: "currentColor"
|
|
86
86
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import '../../style/index.less';
|
|
2
2
|
@import './variables.less';
|
|
3
3
|
|
|
4
|
-
.
|
|
4
|
+
.ald-btn {
|
|
5
5
|
&.ald-btn {
|
|
6
6
|
// &-loading::before{
|
|
7
7
|
// // display: none !important;
|
|
@@ -70,15 +70,15 @@
|
|
|
70
70
|
border-color: @button-dangerous-bg-color;
|
|
71
71
|
box-shadow: unset;
|
|
72
72
|
|
|
73
|
-
&:focus {
|
|
73
|
+
&:focus:not(:disabled) {
|
|
74
74
|
color: @button-dangerous-color;
|
|
75
75
|
background-color: @button-dangerous-bg-color;
|
|
76
76
|
border-color: @button-dangerous-bg-color;
|
|
77
77
|
box-shadow: unset;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
&:hover,
|
|
81
|
-
&:active {
|
|
80
|
+
&:hover:not(:disabled),
|
|
81
|
+
&:active:not(:disabled) {
|
|
82
82
|
color: @button-dangerous-color-active;
|
|
83
83
|
background-color: @button-dangerous-bg-color-active;
|
|
84
84
|
border-color: @button-dangerous-bg-color-active;
|
|
@@ -254,13 +254,14 @@
|
|
|
254
254
|
|
|
255
255
|
.aldicon-icon-left {
|
|
256
256
|
svg {
|
|
257
|
-
vertical-align: -
|
|
257
|
+
vertical-align: -4px;
|
|
258
258
|
}
|
|
259
259
|
}
|
|
260
260
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
261
|
+
gap:@button-left-icon-margin-right-large;
|
|
262
|
+
// .aldicon-icon-left + span {
|
|
263
|
+
// margin-left: @button-left-icon-margin-right-large;
|
|
264
|
+
// }
|
|
264
265
|
}
|
|
265
266
|
|
|
266
267
|
&-middle {
|
|
@@ -284,13 +285,14 @@
|
|
|
284
285
|
|
|
285
286
|
.aldicon-icon-left {
|
|
286
287
|
svg {
|
|
287
|
-
vertical-align: -
|
|
288
|
+
vertical-align: -3px;
|
|
288
289
|
}
|
|
289
290
|
}
|
|
290
291
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
292
|
+
gap:@button-left-icon-margin-right-middle;
|
|
293
|
+
// .aldicon-icon-left + span {
|
|
294
|
+
// margin-left: @button-left-icon-margin-right-middle;
|
|
295
|
+
// }
|
|
294
296
|
}
|
|
295
297
|
|
|
296
298
|
&-small {
|
|
@@ -318,39 +320,41 @@
|
|
|
318
320
|
}
|
|
319
321
|
}
|
|
320
322
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
323
|
+
gap:@button-left-icon-margin-right-small;
|
|
324
|
+
// .aldicon-icon-left + span {
|
|
325
|
+
// margin-left: @button-left-icon-margin-right-small;
|
|
326
|
+
// }
|
|
324
327
|
}
|
|
325
328
|
|
|
326
|
-
&-mini {
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
329
|
+
// &-mini {
|
|
330
|
+
// height: @button-height-mini;
|
|
331
|
+
// padding: @button-border-padding-mini;
|
|
332
|
+
// font-size: @button-text-size-mini;
|
|
333
|
+
// line-height: 22px;
|
|
334
|
+
// border-radius: @button-border-radius-mini;
|
|
335
|
+
|
|
336
|
+
// &.ant-btn-icon-only {
|
|
337
|
+
// min-width: @button-height-mini;
|
|
338
|
+
// height: @button-height-mini;
|
|
339
|
+
// border-radius: @button-border-radius-mini;
|
|
340
|
+
// }
|
|
341
|
+
|
|
342
|
+
// &.ant-btn-circle {
|
|
343
|
+
// min-width: @button-height-mini;
|
|
344
|
+
// height: @button-height-mini;
|
|
345
|
+
// border-radius: 50%;
|
|
346
|
+
// }
|
|
347
|
+
|
|
348
|
+
// .aldicon-icon-left {
|
|
349
|
+
// svg {
|
|
350
|
+
// vertical-align: -2px;
|
|
351
|
+
// }
|
|
352
|
+
// }
|
|
353
|
+
|
|
354
|
+
// gap:@button-left-icon-margin-right-mini;
|
|
355
|
+
// // .aldicon-icon-left + span {
|
|
356
|
+
// // margin-left: @button-left-icon-margin-right-mini;
|
|
357
|
+
// // }
|
|
358
|
+
// }
|
|
355
359
|
}
|
|
356
360
|
}
|
|
@@ -6,27 +6,27 @@
|
|
|
6
6
|
/** size控制 **/
|
|
7
7
|
@button-height-large: 36px;
|
|
8
8
|
@button-text-size-large: 16px;
|
|
9
|
-
@button-border-radius-large:
|
|
10
|
-
@button-border-padding-large: 6px
|
|
9
|
+
@button-border-radius-large: 6px;
|
|
10
|
+
@button-border-padding-large: 6px 24px;
|
|
11
11
|
@button-left-icon-margin-right-large: 8px;
|
|
12
12
|
|
|
13
13
|
@button-height-middle: 32px;
|
|
14
|
-
@button-text-size-middle:
|
|
15
|
-
@button-border-radius-middle:
|
|
16
|
-
@button-border-padding-middle: 6px
|
|
17
|
-
@button-left-icon-margin-right-middle:
|
|
14
|
+
@button-text-size-middle: 13px;
|
|
15
|
+
@button-border-radius-middle: 4px;
|
|
16
|
+
@button-border-padding-middle: 6px 20px;
|
|
17
|
+
@button-left-icon-margin-right-middle: 4px;
|
|
18
18
|
|
|
19
19
|
@button-height-small: 28px;
|
|
20
20
|
@button-text-size-small: 12px;
|
|
21
|
-
@button-border-radius-small:
|
|
22
|
-
@button-border-padding-small: 6px
|
|
21
|
+
@button-border-radius-small: 4px;
|
|
22
|
+
@button-border-padding-small: 6px 16px;
|
|
23
23
|
@button-left-icon-margin-right-small: 4px;
|
|
24
24
|
|
|
25
|
-
@button-height-mini: 24px;
|
|
26
|
-
@button-text-size-mini: 12px;
|
|
27
|
-
@button-border-radius-mini: 4px;
|
|
28
|
-
@button-border-padding-mini: 0 7px;
|
|
29
|
-
@button-left-icon-margin-right-mini: 4px;
|
|
25
|
+
// @button-height-mini: 24px;
|
|
26
|
+
// @button-text-size-mini: 12px;
|
|
27
|
+
// @button-border-radius-mini: 4px;
|
|
28
|
+
// @button-border-padding-mini: 0 7px;
|
|
29
|
+
// @button-left-icon-margin-right-mini: 4px;
|
|
30
30
|
|
|
31
31
|
/**** type控制 ****/
|
|
32
32
|
@button-primary-bg-color: @B40;
|
|
@@ -3,15 +3,19 @@
|
|
|
3
3
|
.ald-checkbox {
|
|
4
4
|
height: 20px;
|
|
5
5
|
color: @NL0;
|
|
6
|
-
font-size:
|
|
6
|
+
font-size: 13px;
|
|
7
7
|
line-height: 20px;
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
&.ant-checkbox-wrapper {
|
|
10
10
|
height: 20px;
|
|
11
11
|
color: @NL0;
|
|
12
12
|
font-weight: 400;
|
|
13
|
-
font-size:
|
|
13
|
+
font-size: 13px;
|
|
14
14
|
line-height: 20px;
|
|
15
|
+
|
|
16
|
+
.ant-checkbox-input{
|
|
17
|
+
margin:0;
|
|
18
|
+
}
|
|
15
19
|
}
|
|
16
20
|
|
|
17
21
|
.ant-checkbox-inner {
|
|
@@ -14,6 +14,11 @@ var SearchSmall = function SearchSmall() {
|
|
|
14
14
|
fill: "#EFF2F5",
|
|
15
15
|
stroke: "#F9FAFB",
|
|
16
16
|
strokeWidth: "5"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
clipRule: "evenodd",
|
|
20
|
+
d: "M19.4074 15.3333C17.1574 15.3333 15.3333 17.1574 15.3333 19.4074C15.3333 21.6575 17.1574 23.4815 19.4074 23.4815C20.5031 23.4815 21.4978 23.0489 22.23 22.3453C22.2466 22.3241 22.2646 22.3037 22.2842 22.2842C22.3037 22.2646 22.3241 22.2466 22.3453 22.23C23.0489 21.4978 23.4815 20.5031 23.4815 19.4074C23.4815 17.1574 21.6575 15.3333 19.4074 15.3333ZM23.6734 22.7306C24.3887 21.8138 24.8148 20.6603 24.8148 19.4074C24.8148 16.421 22.3938 14 19.4074 14C16.421 14 14 16.421 14 19.4074C14 22.3938 16.421 24.8148 19.4074 24.8148C20.6603 24.8148 21.8138 24.3887 22.7306 23.6734L24.8619 25.8047C25.1223 26.0651 25.5444 26.0651 25.8047 25.8047C26.0651 25.5444 26.0651 25.1223 25.8047 24.8619L23.6734 22.7306Z",
|
|
21
|
+
fill: "#667085"
|
|
17
22
|
}));
|
|
18
23
|
};
|
|
19
24
|
|
|
@@ -46,12 +46,23 @@
|
|
|
46
46
|
width:160px;
|
|
47
47
|
height: 160px;
|
|
48
48
|
}
|
|
49
|
+
|
|
50
|
+
.ald-empty-title{
|
|
51
|
+
margin-top: 20px;
|
|
52
|
+
}
|
|
49
53
|
}
|
|
50
54
|
|
|
51
55
|
&.ald-empty-small{
|
|
56
|
+
padding:24px;
|
|
57
|
+
|
|
52
58
|
.ald-empty-image-wrap{
|
|
53
59
|
width:40px;
|
|
54
60
|
height: 40px;
|
|
61
|
+
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ald-empty-title{
|
|
65
|
+
margin-top: 12px;
|
|
55
66
|
}
|
|
56
67
|
}
|
|
57
68
|
}
|
package/dist/Icon/icons.js
CHANGED
|
@@ -1670,4 +1670,36 @@ export default [{
|
|
|
1670
1670
|
"categoryCN": "线性",
|
|
1671
1671
|
"author": "阿广",
|
|
1672
1672
|
"svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" width=\"1em\" height=\"1em\"><path fill=\"#000\" d=\"M3.75 2.25h16.5a1.5 1.5 0 0 1 1.5 1.5v16.5a1.5 1.5 0 0 1-1.5 1.5H3.75a1.5 1.5 0 0 1-1.5-1.5V3.75a1.5 1.5 0 0 1 1.5-1.5Zm3.75 4.5v-3H3.75v3H7.5Zm12.75 1.5H9v5.25h11.25V8.25ZM3.75 13.5H7.5V8.25H3.75v5.25ZM7.5 15H3.75v5.25H7.5V15ZM9 15v5.25h11.25V15H9ZM20.25 3.75H9v3h11.25v-3Z\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" data-follow-fill=\"#000\"></path></svg>"
|
|
1673
|
+
}, {
|
|
1674
|
+
"id": 209,
|
|
1675
|
+
"title": "圆点-小号-填充",
|
|
1676
|
+
"name": "dot-s-fill",
|
|
1677
|
+
"category": "Fill",
|
|
1678
|
+
"categoryCN": "填充",
|
|
1679
|
+
"author": "阿广",
|
|
1680
|
+
"svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" width=\"1em\" height=\"1em\"><path fill=\"#000\" d=\"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\" data-follow-fill=\"#000\"></path></svg>"
|
|
1681
|
+
}, {
|
|
1682
|
+
"id": 210,
|
|
1683
|
+
"title": "定时-线性",
|
|
1684
|
+
"name": "timing-line",
|
|
1685
|
+
"category": "Line",
|
|
1686
|
+
"categoryCN": "线性",
|
|
1687
|
+
"author": "阿广",
|
|
1688
|
+
"svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" width=\"1em\" height=\"1em\"><path stroke-width=\"1.5\" stroke=\"#000\" d=\"M12 5.25v7.5h5.25\" data-follow-stroke=\"#000\"></path><path fill=\"#000\" d=\"M5.085 7.5H9V9H3V3h1.5v2.76A9.75 9.75 0 0 1 21.75 12h-1.5A8.25 8.25 0 0 0 5.085 7.5Zm13.83 9H15V15h6v6h-1.5v-2.76A9.75 9.75 0 0 1 2.25 12h1.5a8.25 8.25 0 0 0 15.165 4.5Z\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" data-follow-fill=\"#000\"></path></svg>"
|
|
1689
|
+
}, {
|
|
1690
|
+
"id": 211,
|
|
1691
|
+
"title": "明细加速-线性",
|
|
1692
|
+
"name": "details-accelerate-line",
|
|
1693
|
+
"category": "Line",
|
|
1694
|
+
"categoryCN": "线性",
|
|
1695
|
+
"author": "阿广",
|
|
1696
|
+
"svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" width=\"1em\" height=\"1em\"><path fill=\"#000\" d=\"M6.75 4.5H1.5V6h5.25V4.5ZM6.75 18H1.5v1.5h5.25V18ZM6.75 11.25H1.5v1.5h5.25v-1.5ZM11.707 22.44a.75.75 0 0 1-.45-.802l1.366-8.887H9a.75.75 0 0 1-.75-.923l2.25-9.75a.75.75 0 0 1 .75-.577h7.5a.75.75 0 0 1 .735.915L18.188 8.25h3.562a.75.75 0 0 1 .675.42.75.75 0 0 1-.082.75l-9.75 12.75a.75.75 0 0 1-.593.33.818.818 0 0 1-.293-.06Zm4.605-12.69 1.5-6.75H11.85l-1.905 8.25h4.432l-1.192 7.71 7.065-9.21h-3.938Z\" data-follow-fill=\"#000\"></path></svg>"
|
|
1697
|
+
}, {
|
|
1698
|
+
"id": 212,
|
|
1699
|
+
"title": "聚合加速-线性",
|
|
1700
|
+
"name": "polymerization-accelerate-line",
|
|
1701
|
+
"category": "Line",
|
|
1702
|
+
"categoryCN": "线性",
|
|
1703
|
+
"author": "阿广",
|
|
1704
|
+
"svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 24 24\" width=\"1em\" height=\"1em\"><path stroke-linejoin=\"round\" stroke-width=\"1.5\" stroke=\"#000\" d=\"M6.75 5.25h-4.5v13.5h4.5\" data-follow-stroke=\"#000\"></path><path fill=\"#000\" d=\"M11.707 22.44a.75.75 0 0 1-.45-.802l1.366-8.888H9a.75.75 0 0 1-.75-.922l2.25-9.75a.75.75 0 0 1 .75-.578h7.5a.75.75 0 0 1 .735.915L18.188 8.25h3.562a.75.75 0 0 1 .675.42.75.75 0 0 1-.082.75l-9.75 12.75a.75.75 0 0 1-.593.33.82.82 0 0 1-.293-.06Zm4.605-12.69 1.5-6.75H11.85l-1.905 8.25h4.432l-1.192 7.71 7.065-9.21h-3.938Z\" data-follow-fill=\"#000\"></path></svg>"
|
|
1673
1705
|
}];
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
.ald-input-group-large {
|
|
225
|
-
.ald-input {
|
|
225
|
+
&:not(.ant-input-group-compact) .ald-input {
|
|
226
226
|
height: @input-height-large;
|
|
227
227
|
padding: @input-padding-large;
|
|
228
228
|
font-size: @input-font-size-large;
|
|
@@ -236,21 +236,26 @@
|
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
-
&.ant-input-group-compact
|
|
240
|
-
.ald-input
|
|
241
|
-
|
|
242
|
-
border-radius: @input-border-radius-large 0 0 @input-border-radius-large;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
&:last-of-type {
|
|
246
|
-
border-radius: 0 @input-border-radius-large @input-border-radius-large 0;
|
|
247
|
-
}
|
|
239
|
+
&.ant-input-group-compact{
|
|
240
|
+
.ald-input,.ald-select,.ald-btn.ant-btn{
|
|
241
|
+
border-radius: 0;
|
|
248
242
|
}
|
|
249
243
|
}
|
|
244
|
+
|
|
245
|
+
&.ant-input-group-compact>*:first-child{
|
|
246
|
+
border-start-start-radius: @input-border-radius-large !important;
|
|
247
|
+
border-end-start-radius: @input-border-radius-large !important;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&.ant-input-group-compact>*:last-child{
|
|
251
|
+
border-inline-end-width: 1px;
|
|
252
|
+
border-start-end-radius: @input-border-radius-large !important;
|
|
253
|
+
border-end-end-radius: @input-border-radius-large !important;
|
|
254
|
+
}
|
|
250
255
|
}
|
|
251
256
|
|
|
252
257
|
.ald-input-group-middle {
|
|
253
|
-
.ald-input {
|
|
258
|
+
&:not(.ant-input-group-compact) .ald-input {
|
|
254
259
|
height: @input-height-middle;
|
|
255
260
|
padding: @input-padding-middle;
|
|
256
261
|
font-size: @input-font-size-middle;
|
|
@@ -265,21 +270,26 @@
|
|
|
265
270
|
}
|
|
266
271
|
}
|
|
267
272
|
|
|
268
|
-
&.ant-input-group-compact
|
|
269
|
-
.ald-input
|
|
270
|
-
|
|
271
|
-
border-radius: @input-border-radius-middle 0 0 @input-border-radius-middle;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
&:last-of-type {
|
|
275
|
-
border-radius: 0 @input-border-radius-middle @input-border-radius-middle 0;
|
|
276
|
-
}
|
|
273
|
+
&.ant-input-group-compact{
|
|
274
|
+
.ald-input,.ald-select,.ald-btn.ant-btn{
|
|
275
|
+
border-radius: 0;
|
|
277
276
|
}
|
|
278
277
|
}
|
|
278
|
+
|
|
279
|
+
&.ant-input-group-compact>*:first-child{
|
|
280
|
+
border-start-start-radius: @input-border-radius-middle !important;
|
|
281
|
+
border-end-start-radius: @input-border-radius-middle !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
&.ant-input-group-compact>*:last-child{
|
|
285
|
+
border-inline-end-width: 1px;
|
|
286
|
+
border-start-end-radius: @input-border-radius-middle !important;
|
|
287
|
+
border-end-end-radius: @input-border-radius-middle !important;
|
|
288
|
+
}
|
|
279
289
|
}
|
|
280
290
|
|
|
281
291
|
.ald-input-group-small {
|
|
282
|
-
.ald-input {
|
|
292
|
+
&:not(.ant-input-group-compact) .ald-input {
|
|
283
293
|
height: @input-height-small;
|
|
284
294
|
padding: @input-padding-small;
|
|
285
295
|
font-size: @input-font-size-small;
|
|
@@ -294,17 +304,22 @@
|
|
|
294
304
|
}
|
|
295
305
|
}
|
|
296
306
|
|
|
297
|
-
&.ant-input-group-compact
|
|
298
|
-
.ald-input
|
|
299
|
-
|
|
300
|
-
border-radius: @input-border-radius-small 0 0 @input-border-radius-small;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
&:last-of-type {
|
|
304
|
-
border-radius: 0 @input-border-radius-small @input-border-radius-small 0;
|
|
305
|
-
}
|
|
307
|
+
&.ant-input-group-compact{
|
|
308
|
+
.ald-input,.ald-select,.ald-btn.ant-btn{
|
|
309
|
+
border-radius: 0;
|
|
306
310
|
}
|
|
307
311
|
}
|
|
312
|
+
|
|
313
|
+
&.ant-input-group-compact>*:first-child{
|
|
314
|
+
border-start-start-radius: @input-border-radius-small !important;
|
|
315
|
+
border-end-start-radius: @input-border-radius-small !important;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
&.ant-input-group-compact>*:last-child{
|
|
319
|
+
border-inline-end-width: 1px;
|
|
320
|
+
border-start-end-radius: @input-border-radius-small !important;
|
|
321
|
+
border-end-end-radius: @input-border-radius-small !important;
|
|
322
|
+
}
|
|
308
323
|
}
|
|
309
324
|
|
|
310
325
|
.ald-textarea-large {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@import '../../Icon/index.less';
|
|
3
3
|
@import './dropdown.less';
|
|
4
4
|
|
|
5
|
-
.ald-menu.ant-menu {
|
|
5
|
+
.ant-menu-light.ald-menu.ant-menu {
|
|
6
6
|
&.ant-menu-root.ant-menu-vertical {
|
|
7
7
|
border: none;
|
|
8
8
|
}
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
transition: none;
|
|
24
24
|
|
|
25
25
|
&:hover {
|
|
26
|
-
background-color: @BG90
|
|
26
|
+
background-color: @BG90;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
&:active {
|
|
@@ -68,3 +68,74 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
|
+
|
|
72
|
+
.ant-menu-submenu.ant-menu-submenu-popup.ant-menu{
|
|
73
|
+
.ant-menu-vertical {
|
|
74
|
+
border: none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ant-menu-item,
|
|
78
|
+
.ant-menu-submenu,
|
|
79
|
+
.ant-menu-item-selected {
|
|
80
|
+
margin: 0;
|
|
81
|
+
height: initial;
|
|
82
|
+
padding: 6px 12px;
|
|
83
|
+
line-height: 20px;
|
|
84
|
+
font-size: 13px;
|
|
85
|
+
width: 100%;
|
|
86
|
+
border-radius: 0;
|
|
87
|
+
border: none;
|
|
88
|
+
background-color: @BG100;
|
|
89
|
+
color: @NL0;
|
|
90
|
+
transition: none;
|
|
91
|
+
|
|
92
|
+
&:hover {
|
|
93
|
+
background-color: @BG90 !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&:active {
|
|
97
|
+
background-color: none;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&:not(.ant-menu-item-selected):active {
|
|
101
|
+
background-color: @BG90;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&.ant-menu-item-disabled {
|
|
105
|
+
color: @NL50 !important;
|
|
106
|
+
transition: none;
|
|
107
|
+
background-color: @BG100 !important;
|
|
108
|
+
cursor: default;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.ant-menu-submenu-title {
|
|
112
|
+
line-height: 20px;
|
|
113
|
+
font-size: 13px;
|
|
114
|
+
width: 100%;
|
|
115
|
+
padding:0;
|
|
116
|
+
height: initial;
|
|
117
|
+
margin:0;
|
|
118
|
+
|
|
119
|
+
&:hover{
|
|
120
|
+
background: none;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.ant-menu.ant-menu-sub{
|
|
126
|
+
padding:4px 0;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.ant-menu-title-content{
|
|
130
|
+
line-height: 20px;
|
|
131
|
+
font-size: 13px;
|
|
132
|
+
width: 100%;
|
|
133
|
+
padding:0;
|
|
134
|
+
height: initial;
|
|
135
|
+
margin:0;
|
|
136
|
+
|
|
137
|
+
&:hover{
|
|
138
|
+
background: none;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
package/dist/Modal/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
var _excluded = ["className", "
|
|
2
|
-
_excluded2 = ["
|
|
1
|
+
var _excluded = ["className", "type", "loading", "size", "disabled", "shape"],
|
|
2
|
+
_excluded2 = ["className", "children", "okType", "width", "closeIcon", "subTitle", "okButtonProps", "cancelButtonProps", "okText", "cancelText", "icon", "title"],
|
|
3
3
|
_excluded3 = ["icon", "okButtonProps", "cancelButtonProps", "okType", "width"],
|
|
4
4
|
_excluded4 = ["icon", "okButtonProps", "cancelButtonProps", "okType", "width"],
|
|
5
5
|
_excluded5 = ["icon", "okButtonProps", "cancelButtonProps", "okType", "width"],
|
|
6
|
-
_excluded6 = ["icon", "okButtonProps", "cancelButtonProps", "okType", "width"]
|
|
6
|
+
_excluded6 = ["icon", "okButtonProps", "cancelButtonProps", "okType", "className", "width"],
|
|
7
|
+
_excluded7 = ["icon", "okButtonProps", "cancelButtonProps", "okType", "width"];
|
|
8
|
+
|
|
9
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
7
10
|
|
|
8
11
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
9
12
|
|
|
@@ -11,8 +14,6 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
11
14
|
|
|
12
15
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
13
16
|
|
|
14
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
-
|
|
16
17
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
18
|
|
|
18
19
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
@@ -31,6 +32,7 @@ var DEFAULT_WIDTH = 552;
|
|
|
31
32
|
|
|
32
33
|
function getButtonProps(buttonProps, defaultBtnType, okType) {
|
|
33
34
|
var btnType = okType || defaultBtnType;
|
|
35
|
+
|
|
34
36
|
var buttonClassName = buttonProps.className,
|
|
35
37
|
_buttonProps$type = buttonProps.type,
|
|
36
38
|
type = _buttonProps$type === void 0 ? btnType : _buttonProps$type,
|
|
@@ -39,15 +41,17 @@ function getButtonProps(buttonProps, defaultBtnType, okType) {
|
|
|
39
41
|
size = _buttonProps$size === void 0 ? 'middle' : _buttonProps$size,
|
|
40
42
|
disabled = buttonProps.disabled,
|
|
41
43
|
_buttonProps$shape = buttonProps.shape,
|
|
42
|
-
shape = _buttonProps$shape === void 0 ? 'default' : _buttonProps$shape
|
|
43
|
-
|
|
44
|
+
shape = _buttonProps$shape === void 0 ? 'default' : _buttonProps$shape,
|
|
45
|
+
restProps = _objectWithoutProperties(buttonProps, _excluded);
|
|
46
|
+
|
|
47
|
+
return _objectSpread(_objectSpread({}, restProps), {}, {
|
|
44
48
|
disabled: loading ? true : disabled,
|
|
45
49
|
loading: loading,
|
|
46
50
|
type: getButtonType(type),
|
|
47
51
|
className: classNames(btnPrefix, "".concat(btnPrefix, "-").concat(type), buttonClassName, getButtonSizeClass(size)),
|
|
48
52
|
danger: getDangerStatus(type),
|
|
49
53
|
shape: getShape(shape)
|
|
50
|
-
};
|
|
54
|
+
});
|
|
51
55
|
}
|
|
52
56
|
|
|
53
57
|
var OriginModal = function OriginModal(props) {
|
|
@@ -61,9 +65,13 @@ var OriginModal = function OriginModal(props) {
|
|
|
61
65
|
okButtonProps = _props$okButtonProps === void 0 ? {} : _props$okButtonProps,
|
|
62
66
|
_props$cancelButtonPr = props.cancelButtonProps,
|
|
63
67
|
cancelButtonProps = _props$cancelButtonPr === void 0 ? {} : _props$cancelButtonPr,
|
|
68
|
+
_props$okText = props.okText,
|
|
69
|
+
okText = _props$okText === void 0 ? "确定" : _props$okText,
|
|
70
|
+
_props$cancelText = props.cancelText,
|
|
71
|
+
cancelText = _props$cancelText === void 0 ? "取消" : _props$cancelText,
|
|
64
72
|
icon = props.icon,
|
|
65
73
|
title = props.title,
|
|
66
|
-
restProps = _objectWithoutProperties(props,
|
|
74
|
+
restProps = _objectWithoutProperties(props, _excluded2);
|
|
67
75
|
|
|
68
76
|
return /*#__PURE__*/React.createElement(AntdModal, _extends({}, restProps, {
|
|
69
77
|
title: /*#__PURE__*/React.createElement("div", {
|
|
@@ -77,10 +85,13 @@ var OriginModal = function OriginModal(props) {
|
|
|
77
85
|
}, subTitle))),
|
|
78
86
|
className: classNames('ald-modal', className),
|
|
79
87
|
okButtonProps: getButtonProps(okButtonProps, 'primary', okType),
|
|
80
|
-
cancelButtonProps: getButtonProps(cancelButtonProps, 'secondary'
|
|
88
|
+
cancelButtonProps: getButtonProps(cancelButtonProps, 'secondary'),
|
|
89
|
+
okText: okText,
|
|
90
|
+
cancelText: cancelText,
|
|
81
91
|
width: width || DEFAULT_WIDTH,
|
|
82
92
|
closeIcon: closeIcon || /*#__PURE__*/React.createElement(CloseLLine, {
|
|
83
93
|
size: 16,
|
|
94
|
+
fill: theme.NL40,
|
|
84
95
|
className: "ald-modal-close"
|
|
85
96
|
})
|
|
86
97
|
}), children);
|
|
@@ -97,7 +108,7 @@ Modal.info = function infoFn(props) {
|
|
|
97
108
|
cancelButtonProps = _props$cancelButtonPr2 === void 0 ? {} : _props$cancelButtonPr2,
|
|
98
109
|
okType = props.okType,
|
|
99
110
|
width = props.width,
|
|
100
|
-
restProps = _objectWithoutProperties(props,
|
|
111
|
+
restProps = _objectWithoutProperties(props, _excluded3);
|
|
101
112
|
|
|
102
113
|
return AntdModal.success(_objectSpread({
|
|
103
114
|
okButtonProps: getButtonProps(okButtonProps, 'primary', okType),
|
|
@@ -119,7 +130,7 @@ Modal.success = function successFn(props) {
|
|
|
119
130
|
cancelButtonProps = _props$cancelButtonPr3 === void 0 ? {} : _props$cancelButtonPr3,
|
|
120
131
|
okType = props.okType,
|
|
121
132
|
width = props.width,
|
|
122
|
-
restProps = _objectWithoutProperties(props,
|
|
133
|
+
restProps = _objectWithoutProperties(props, _excluded4);
|
|
123
134
|
|
|
124
135
|
return AntdModal.success(_objectSpread({
|
|
125
136
|
okButtonProps: getButtonProps(okButtonProps, 'primary', okType),
|
|
@@ -141,7 +152,7 @@ Modal.error = function errorFn(props) {
|
|
|
141
152
|
cancelButtonProps = _props$cancelButtonPr4 === void 0 ? {} : _props$cancelButtonPr4,
|
|
142
153
|
okType = props.okType,
|
|
143
154
|
width = props.width,
|
|
144
|
-
restProps = _objectWithoutProperties(props,
|
|
155
|
+
restProps = _objectWithoutProperties(props, _excluded5);
|
|
145
156
|
|
|
146
157
|
return AntdModal.success(_objectSpread({
|
|
147
158
|
okButtonProps: getButtonProps(okButtonProps, 'dangerous', okType),
|
|
@@ -162,13 +173,15 @@ Modal.warning = function modalWarn(props) {
|
|
|
162
173
|
_props$cancelButtonPr5 = props.cancelButtonProps,
|
|
163
174
|
cancelButtonProps = _props$cancelButtonPr5 === void 0 ? {} : _props$cancelButtonPr5,
|
|
164
175
|
okType = props.okType,
|
|
176
|
+
className = props.className,
|
|
165
177
|
width = props.width,
|
|
166
|
-
restProps = _objectWithoutProperties(props,
|
|
178
|
+
restProps = _objectWithoutProperties(props, _excluded6);
|
|
167
179
|
|
|
168
180
|
return AntdModal.success(_objectSpread({
|
|
169
181
|
okButtonProps: getButtonProps(okButtonProps, 'dangerous', okType),
|
|
170
182
|
cancelButtonProps: getButtonProps(cancelButtonProps, 'secondary', okType),
|
|
171
183
|
width: width || DEFAULT_WIDTH,
|
|
184
|
+
className: classNames('ald-modal-warning', className),
|
|
172
185
|
icon: icon || /*#__PURE__*/React.createElement(AlertTriangleDuotone, {
|
|
173
186
|
fill: [theme.SB40, theme.ND0],
|
|
174
187
|
theme: "multi-color",
|
|
@@ -185,7 +198,7 @@ Modal.confirm = function confirmFn(props) {
|
|
|
185
198
|
cancelButtonProps = _props$cancelButtonPr6 === void 0 ? {} : _props$cancelButtonPr6,
|
|
186
199
|
okType = props.okType,
|
|
187
200
|
width = props.width,
|
|
188
|
-
restProps = _objectWithoutProperties(props,
|
|
201
|
+
restProps = _objectWithoutProperties(props, _excluded7);
|
|
189
202
|
|
|
190
203
|
return AntdModal.success(_objectSpread({
|
|
191
204
|
okButtonProps: getButtonProps(okButtonProps, 'primary', okType),
|