linkmore-design 1.0.22 → 1.0.23
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/index.umd.js +266 -224
- package/dist/index.umd.min.js +5 -5
- package/es/ButtonTags/style/style.css +4 -0
- package/es/Card/style/index.css +4 -0
- package/es/CkFilter/baseFilter/moreFilters.js +1 -4
- package/es/CkFilter/components/filterTypes.js +45 -24
- package/es/CkFilter/style/style.css +6 -4
- package/es/CustomerService/style/style.css +4 -0
- package/es/Drawer/style/index.css +4 -0
- package/es/Dropdown/index.js +2 -2
- package/es/Dropdown/style/index.css +11 -0
- package/es/EditTable/style/style.css +4 -0
- package/es/Filter/style/style.css +4 -0
- package/es/Input/index.js +23 -3
- package/es/Input/style/style.css +4 -0
- package/es/InputNumber/style/index.css +4 -0
- package/es/LeftTable/style/style.css +4 -0
- package/es/LmTable/ImgList/imgCell.js +9 -17
- package/es/LmTable/style/style.css +5 -1
- package/es/Modal/style/index.css +10 -0
- package/es/Notification/index.js +6 -8
- package/es/Notification/style/index.css +7 -0
- package/es/Pagination/index.js +6 -1
- package/es/Pagination/style/index.css +29 -0
- package/es/PopTable/style/style.css +4 -0
- package/es/ProTable/style/style.css +5 -0
- package/es/Radio/index.js +1 -0
- package/es/Select/style/index.css +4 -0
- package/es/Space/style/index.css +4 -0
- package/es/styles/main.css +4 -0
- package/es/styles/resetAntd.css +4 -0
- package/lib/ButtonTags/style/style.css +4 -0
- package/lib/Card/style/index.css +4 -0
- package/lib/CkFilter/baseFilter/moreFilters.js +1 -4
- package/lib/CkFilter/components/filterTypes.js +45 -24
- package/lib/CkFilter/style/style.css +6 -4
- package/lib/CustomerService/style/style.css +4 -0
- package/lib/Drawer/style/index.css +4 -0
- package/lib/Dropdown/index.js +2 -2
- package/lib/Dropdown/style/index.css +11 -0
- package/lib/EditTable/style/style.css +4 -0
- package/lib/Filter/style/style.css +4 -0
- package/lib/Input/index.js +23 -3
- package/lib/Input/style/style.css +4 -0
- package/lib/InputNumber/style/index.css +4 -0
- package/lib/LeftTable/style/style.css +4 -0
- package/lib/LmTable/ImgList/imgCell.js +9 -17
- package/lib/LmTable/style/style.css +5 -1
- package/lib/Modal/style/index.css +10 -0
- package/lib/Notification/index.js +6 -8
- package/lib/Notification/style/index.css +7 -0
- package/lib/Pagination/index.js +6 -1
- package/lib/Pagination/style/index.css +29 -0
- package/lib/PopTable/style/style.css +4 -0
- package/lib/ProTable/style/style.css +5 -0
- package/lib/Radio/index.js +1 -0
- package/lib/Select/style/index.css +4 -0
- package/lib/Space/style/index.css +4 -0
- package/lib/styles/main.css +4 -0
- package/lib/styles/resetAntd.css +4 -0
- package/package.json +1 -1
|
@@ -12,14 +12,12 @@ require("antd/es/notification/style");
|
|
|
12
12
|
var _notification2 = _interopRequireDefault(require("antd/es/notification"));
|
|
13
13
|
|
|
14
14
|
var _default = _notification2.default; // const prefixCls = 'lm_notification'
|
|
15
|
-
// const LMNotification
|
|
16
|
-
//
|
|
17
|
-
//
|
|
18
|
-
//
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
// )
|
|
22
|
-
// }
|
|
15
|
+
// const LMNotification = cloneDeep(notification)
|
|
16
|
+
// var paramsList = ['success', 'error', 'info', 'warning', 'warn', 'open'];
|
|
17
|
+
// paramsList.forEach(item => {
|
|
18
|
+
// LMNotification[item] = (config) => notification[item]?.({ ...config, classNames: classNames(config.className, prefixCls) })
|
|
19
|
+
// })
|
|
20
|
+
// console.log(LMNotification, 'fff', notification)
|
|
23
21
|
// export default LMNotification
|
|
24
22
|
|
|
25
23
|
exports.default = _default;
|
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
|
@@ -493,3 +497,6 @@ html {
|
|
|
493
497
|
.card_cell_content:hover .card_cell_body .card_cell_checkbox {
|
|
494
498
|
opacity: 1;
|
|
495
499
|
}
|
|
500
|
+
.ant-notification-notice-message {
|
|
501
|
+
font-size: 14px;
|
|
502
|
+
}
|
package/lib/Pagination/index.js
CHANGED
|
@@ -38,7 +38,12 @@ var LMPagination = function LMPagination(props) {
|
|
|
38
38
|
return /*#__PURE__*/_react.default.createElement(_pagination.default, Object.assign({
|
|
39
39
|
className: (0, _classnames.default)(className, prefixCls),
|
|
40
40
|
size: "small"
|
|
41
|
-
}, others
|
|
41
|
+
}, others, {
|
|
42
|
+
locale: {
|
|
43
|
+
items_per_page: '/条',
|
|
44
|
+
jump_to: '前往'
|
|
45
|
+
}
|
|
46
|
+
}));
|
|
42
47
|
};
|
|
43
48
|
|
|
44
49
|
var _default = LMPagination;
|
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
|
@@ -496,6 +500,10 @@ html {
|
|
|
496
500
|
.lm_pagination.ant-pagination li {
|
|
497
501
|
font-size: 12px;
|
|
498
502
|
line-height: 24px !important;
|
|
503
|
+
color: var(--color-65);
|
|
504
|
+
}
|
|
505
|
+
.lm_pagination.ant-pagination li.ant-pagination-total-text {
|
|
506
|
+
color: var(--color-65);
|
|
499
507
|
}
|
|
500
508
|
.lm_pagination.ant-pagination li.ant-pagination-item {
|
|
501
509
|
border: 0;
|
|
@@ -507,9 +515,16 @@ html {
|
|
|
507
515
|
.lm_pagination.ant-pagination li .ant-pagination-item-link {
|
|
508
516
|
border: 0;
|
|
509
517
|
}
|
|
518
|
+
.lm_pagination.ant-pagination li .ant-pagination-item-link .anticon {
|
|
519
|
+
color: var(--color-85);
|
|
520
|
+
}
|
|
510
521
|
.lm_pagination.ant-pagination li > a {
|
|
511
522
|
color: var(--color-65);
|
|
512
523
|
}
|
|
524
|
+
.lm_pagination.ant-pagination li.ant-pagination-options .ant-select-selection-item {
|
|
525
|
+
color: var(--color-65);
|
|
526
|
+
font-size: 12px;
|
|
527
|
+
}
|
|
513
528
|
.lm_pagination.ant-pagination li.ant-pagination-item-active {
|
|
514
529
|
background-color: var(--primary-color);
|
|
515
530
|
color: #fff;
|
|
@@ -517,3 +532,17 @@ html {
|
|
|
517
532
|
.lm_pagination.ant-pagination li.ant-pagination-item-active > a {
|
|
518
533
|
color: #fff;
|
|
519
534
|
}
|
|
535
|
+
.lm_pagination.ant-pagination li .ant-pagination-options-quick-jumper input {
|
|
536
|
+
width: 38px;
|
|
537
|
+
font-size: 12px;
|
|
538
|
+
color: var(--color-65);
|
|
539
|
+
}
|
|
540
|
+
.lm_pagination.ant-pagination li.ant-pagination-simple-pager input {
|
|
541
|
+
width: 48px;
|
|
542
|
+
font-size: 12px;
|
|
543
|
+
color: var(--color-65);
|
|
544
|
+
height: 22px;
|
|
545
|
+
}
|
|
546
|
+
.lm_pagination.ant-pagination li.ant-pagination-simple-pager .ant-pagination-slash {
|
|
547
|
+
margin-right: 14px;
|
|
548
|
+
}
|
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
|
@@ -575,6 +579,7 @@ html {
|
|
|
575
579
|
.lm_operate .operate_left,
|
|
576
580
|
.lm_operate .operate_right {
|
|
577
581
|
display: flex;
|
|
582
|
+
gap: 8px;
|
|
578
583
|
}
|
|
579
584
|
.lm_operate .operate_left:empty,
|
|
580
585
|
.lm_operate .operate_right:empty {
|
package/lib/Radio/index.js
CHANGED
|
@@ -37,6 +37,7 @@ LMRadio.Group = function (props) {
|
|
|
37
37
|
_props$direction = props.direction,
|
|
38
38
|
direction = _props$direction === void 0 ? 'row' : _props$direction,
|
|
39
39
|
restProps = (0, _objectWithoutProperties2.default)(props, _excluded2);
|
|
40
|
+
console.log(children, 'rrr');
|
|
40
41
|
return /*#__PURE__*/_react.default.createElement(_radio.default.Group, (0, _extends2.default)({
|
|
41
42
|
className: (0, _classnames.default)('lm-radio-group', "lm-radio-group-".concat(direction))
|
|
42
43
|
}, restProps), children);
|
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
package/lib/styles/main.css
CHANGED
|
@@ -72,8 +72,12 @@
|
|
|
72
72
|
line-height: 1;
|
|
73
73
|
}
|
|
74
74
|
.ant-notification-notice .ant-notification-notice-content .ant-notification-notice-message {
|
|
75
|
+
font-size: 14px;
|
|
75
76
|
font-weight: 500;
|
|
76
77
|
}
|
|
78
|
+
.ant-notification-notice .ant-notification-notice-description {
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
}
|
|
77
81
|
@font-face {
|
|
78
82
|
font-family: 'iconfont';
|
|
79
83
|
/* Project id 2966019 */
|
package/lib/styles/resetAntd.css
CHANGED