pds-dev-kit-web-test 2.5.110 → 2.5.112
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.
@@ -166,6 +166,13 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
166
166
|
if (shortcutKeyMode === 'MANUAL_BULK_BREAK') {
|
167
167
|
setBulkBlockIds([]);
|
168
168
|
setSelectedBlockId(null);
|
169
|
+
sectionActionHandler &&
|
170
|
+
sectionActionHandler({
|
171
|
+
type: '@CUSTOMSECTION/BULK_DISMISSED',
|
172
|
+
payload: {
|
173
|
+
message: 'MANUAL_BULK_BREAK_OR_ESC'
|
174
|
+
}
|
175
|
+
});
|
169
176
|
return;
|
170
177
|
}
|
171
178
|
}, [shortcutKeyMode, setSelectedBlockId]);
|
@@ -609,6 +616,9 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
609
616
|
if (id === 'BULK') {
|
610
617
|
return;
|
611
618
|
}
|
619
|
+
if (editingGroupBlock === id && shortcutKeyMode === 'BULK_SELECT') {
|
620
|
+
return;
|
621
|
+
}
|
612
622
|
if (bulkBlockIds.includes(id) && shortcutKeyMode === 'BULK_SELECT') {
|
613
623
|
if (bulkBlockIds.length <= 2) {
|
614
624
|
var oneLastBlockId = bulkBlockIds.filter(function (each) { return each !== id; })[0];
|