acud 1.4.13 → 1.4.14
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/acud.js +1303 -1762
- package/dist/acud.js.map +1 -1
- package/es/table/baseTable/Cell/index.js +2 -1
- package/es/table/style/index.css +3 -0
- package/es/table/style/index.less +6 -0
- package/lib/table/baseTable/Cell/index.js +2 -1
- package/lib/table/style/index.css +3 -0
- package/lib/table/style/index.less +6 -0
- package/package.json +1 -1
- package/dist/acud.css +0 -27752
- package/dist/acud.css.map +0 -1
- package/dist/acud.min.css +0 -2
- package/dist/acud.min.css.map +0 -1
- package/dist/acud.min.js +0 -60
- package/dist/acud.min.js.map +0 -1
|
@@ -165,7 +165,8 @@ function Cell(_ref, ref) {
|
|
|
165
165
|
}
|
|
166
166
|
var RefCell = /*#__PURE__*/React.forwardRef(Cell);
|
|
167
167
|
RefCell.displayName = 'Cell';
|
|
168
|
-
|
|
168
|
+
// const comparePropList: (keyof InternalCellProps<any>)[] = ['expanded', 'className', 'hovering'];
|
|
169
|
+
var comparePropList = ['expanded', 'className'];
|
|
169
170
|
var MemoCell = /*#__PURE__*/React.memo(RefCell, function (prev, next) {
|
|
170
171
|
if (next.shouldCellUpdate) {
|
|
171
172
|
return (
|
package/es/table/style/index.css
CHANGED
|
@@ -364,6 +364,9 @@ div.acud-table-summary {
|
|
|
364
364
|
border-radius: 0px;
|
|
365
365
|
box-shadow: 0px 4px 12px 1px rgba(7, 12, 20, 0.12);
|
|
366
366
|
}
|
|
367
|
+
.acud-table-filter-dropdown .acud-dropdown-menu-item-multiple .acud-checkbox + span {
|
|
368
|
+
white-space: nowrap;
|
|
369
|
+
}
|
|
367
370
|
.acud-table-filter-dropdown .acud-dropdown-menu {
|
|
368
371
|
max-height: 264px;
|
|
369
372
|
overflow-x: hidden;
|
|
@@ -441,6 +441,12 @@
|
|
|
441
441
|
border-radius: @border-radius-base;
|
|
442
442
|
box-shadow: @box-shadow-base;
|
|
443
443
|
|
|
444
|
+
.@{acud-prefix}-dropdown-menu-item-multiple {
|
|
445
|
+
.@{acud-prefix}-checkbox + span {
|
|
446
|
+
white-space: nowrap;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
444
450
|
// Reset menu
|
|
445
451
|
.@{dropdown-prefix-cls}-menu {
|
|
446
452
|
// https://github.com/ant-design/ant-design/issues/4916
|
|
@@ -175,7 +175,8 @@ function Cell(_ref, ref) {
|
|
|
175
175
|
}
|
|
176
176
|
var RefCell = /*#__PURE__*/React.forwardRef(Cell);
|
|
177
177
|
RefCell.displayName = 'Cell';
|
|
178
|
-
|
|
178
|
+
// const comparePropList: (keyof InternalCellProps<any>)[] = ['expanded', 'className', 'hovering'];
|
|
179
|
+
var comparePropList = ['expanded', 'className'];
|
|
179
180
|
var MemoCell = /*#__PURE__*/React.memo(RefCell, function (prev, next) {
|
|
180
181
|
if (next.shouldCellUpdate) {
|
|
181
182
|
return (
|
|
@@ -364,6 +364,9 @@ div.acud-table-summary {
|
|
|
364
364
|
border-radius: 0px;
|
|
365
365
|
box-shadow: 0px 4px 12px 1px rgba(7, 12, 20, 0.12);
|
|
366
366
|
}
|
|
367
|
+
.acud-table-filter-dropdown .acud-dropdown-menu-item-multiple .acud-checkbox + span {
|
|
368
|
+
white-space: nowrap;
|
|
369
|
+
}
|
|
367
370
|
.acud-table-filter-dropdown .acud-dropdown-menu {
|
|
368
371
|
max-height: 264px;
|
|
369
372
|
overflow-x: hidden;
|
|
@@ -441,6 +441,12 @@
|
|
|
441
441
|
border-radius: @border-radius-base;
|
|
442
442
|
box-shadow: @box-shadow-base;
|
|
443
443
|
|
|
444
|
+
.@{acud-prefix}-dropdown-menu-item-multiple {
|
|
445
|
+
.@{acud-prefix}-checkbox + span {
|
|
446
|
+
white-space: nowrap;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
444
450
|
// Reset menu
|
|
445
451
|
.@{dropdown-prefix-cls}-menu {
|
|
446
452
|
// https://github.com/ant-design/ant-design/issues/4916
|