pds-dev-kit-web-test 2.7.422 → 2.7.424
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.
|
@@ -583,14 +583,12 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
|
583
583
|
if (!props.item) {
|
|
584
584
|
return;
|
|
585
585
|
}
|
|
586
|
-
var
|
|
587
|
-
if (
|
|
588
|
-
|
|
589
|
-
}
|
|
590
|
-
if (blockType === 'GROUP_BLOCK' && props.e) {
|
|
591
|
-
var e = props.e;
|
|
592
|
-
onClickGroup(e, props.item.i);
|
|
586
|
+
var isShiftOn = shortcutKeyMode === 'BULK_SELECT' || shortcutKeyMode === 'COLLISION_SELECT';
|
|
587
|
+
if (isShiftOn) {
|
|
588
|
+
return;
|
|
593
589
|
}
|
|
590
|
+
setSelectedBlockId(props.item.i);
|
|
591
|
+
setBulkBlockIds([]);
|
|
594
592
|
sectionActionHandler &&
|
|
595
593
|
sectionActionHandler({
|
|
596
594
|
type: '@CUSTOMSECTION/CB_DRAG_START',
|