@gm-pc/react 1.28.0-alpha.0 → 1.28.0-alpha.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gm-pc/react",
|
|
3
|
-
"version": "1.28.0-alpha.
|
|
3
|
+
"version": "1.28.0-alpha.3",
|
|
4
4
|
"description": "观麦前端基础组件库",
|
|
5
5
|
"author": "liyatang <liyatang@qq.com>",
|
|
6
6
|
"homepage": "https://github.com/gmfe/gm-pc#readme",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@gm-common/hooks": "^2.10.0",
|
|
26
26
|
"@gm-common/tool": "^2.10.0",
|
|
27
|
-
"@gm-pc/locales": "^1.28.0-alpha.
|
|
27
|
+
"@gm-pc/locales": "^1.28.0-alpha.3",
|
|
28
28
|
"big.js": "^6.0.1",
|
|
29
29
|
"classnames": "^2.2.5",
|
|
30
30
|
"lodash": "^4.17.19",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"react-router-dom": "^5.2.0",
|
|
49
49
|
"react-window": "^1.8.5"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "3ab0bb66ffd6b71a10df6c02debccc3b0a05ebba"
|
|
52
52
|
}
|
|
@@ -430,17 +430,17 @@ class MoreSelectBase<V extends string | number = string> extends Component<
|
|
|
430
430
|
}
|
|
431
431
|
})
|
|
432
432
|
|
|
433
|
-
if (selected.length > 0) {
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
}
|
|
433
|
+
// if (selected.length > 0) {
|
|
434
|
+
// selectedGroups.push({
|
|
435
|
+
// label: '',
|
|
436
|
+
// children: selected,
|
|
437
|
+
// })
|
|
438
|
+
// }
|
|
439
439
|
}
|
|
440
440
|
|
|
441
441
|
return (
|
|
442
442
|
<div style={{ height: listHeight, overflow: 'auto' }}>
|
|
443
|
-
{selected.length > 0 && multiple && (
|
|
443
|
+
{/* {selected.length > 0 && multiple && (
|
|
444
444
|
<>
|
|
445
445
|
<div className='gm-more-select-section-title gm-padding-5 gm-text-desc gm-text-12'>
|
|
446
446
|
已选中
|
|
@@ -456,7 +456,7 @@ class MoreSelectBase<V extends string | number = string> extends Component<
|
|
|
456
456
|
isScrollTo={false}
|
|
457
457
|
/>
|
|
458
458
|
</>
|
|
459
|
-
)}
|
|
459
|
+
)} */}
|
|
460
460
|
<>
|
|
461
461
|
{multiple && (
|
|
462
462
|
<div className='gm-more-select-section-title gm-padding-5 gm-text-desc gm-text-12'>
|