pds-dev-kit-web-test 2.5.119 → 2.5.121
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.
@@ -167,12 +167,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
167
167
|
// esc
|
168
168
|
if (shortcutKeyMode === 'MANUAL_BULK_BREAK') {
|
169
169
|
if (selectedBlockId) {
|
170
|
-
|
171
|
-
setSelectedBlockId(null);
|
172
|
-
}
|
173
|
-
else {
|
174
|
-
setSelectedBlockId(editingGroupBlock);
|
175
|
-
}
|
170
|
+
setSelectedBlockId(null);
|
176
171
|
sectionActionHandler &&
|
177
172
|
sectionActionHandler({
|
178
173
|
type: '@CUSTOMSECTION/BLOCK_CLICKED',
|
@@ -186,32 +181,11 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
186
181
|
}
|
187
182
|
}
|
188
183
|
});
|
189
|
-
sectionActionHandler &&
|
190
|
-
sectionActionHandler({
|
191
|
-
type: '@CUSTOMSECTION/BULK_DISMISSED',
|
192
|
-
payload: {
|
193
|
-
message: 'MANUAL_BULK_BREAK_OR_ESC',
|
194
|
-
editingGroupBlock: editingGroupBlock
|
195
|
-
}
|
196
|
-
});
|
197
184
|
return;
|
198
185
|
}
|
199
186
|
if (bulkBlockIds.length > 0) {
|
200
187
|
setBulkBlockIds([]);
|
201
|
-
|
202
|
-
setSelectedBlockId(null);
|
203
|
-
}
|
204
|
-
else {
|
205
|
-
setSelectedBlockId(editingGroupBlock);
|
206
|
-
}
|
207
|
-
sectionActionHandler &&
|
208
|
-
sectionActionHandler({
|
209
|
-
type: '@CUSTOMSECTION/BULK_DISMISSED',
|
210
|
-
payload: {
|
211
|
-
message: 'MANUAL_BULK_BREAK_OR_ESC',
|
212
|
-
editingGroupBlock: editingGroupBlock
|
213
|
-
}
|
214
|
-
});
|
188
|
+
setSelectedBlockId(null);
|
215
189
|
sectionActionHandler &&
|
216
190
|
sectionActionHandler({
|
217
191
|
type: '@CUSTOMSECTION/BLOCK_CLICKED',
|