pds-dev-kit-web-test 2.7.622 → 2.7.623
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.
|
@@ -134,6 +134,7 @@ var CompositionEditor = (0, react_1.forwardRef)(function CompositionEditorCanvas
|
|
|
134
134
|
},
|
|
135
135
|
selectCBInBulk: function (blockIds) {
|
|
136
136
|
setBulkBlockIds(blockIds);
|
|
137
|
+
setSelectedBlockId('BULK');
|
|
137
138
|
},
|
|
138
139
|
selectGroup: function (groupBlockId) {
|
|
139
140
|
setBulkBlockIds([]);
|
|
@@ -127,6 +127,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
|
127
127
|
},
|
|
128
128
|
selectCBInBulk: function (blockIds) {
|
|
129
129
|
setBulkBlockIds(blockIds);
|
|
130
|
+
setSelectedBlockId('BULK');
|
|
130
131
|
},
|
|
131
132
|
selectGroup: function (groupBlockId) {
|
|
132
133
|
setBulkBlockIds([]);
|
|
@@ -474,7 +475,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
|
474
475
|
return;
|
|
475
476
|
}
|
|
476
477
|
setBulkBlockIds(newBulks);
|
|
477
|
-
setSelectedBlockId(
|
|
478
|
+
setSelectedBlockId('BULK');
|
|
478
479
|
var newBulkCBIds = newBulks
|
|
479
480
|
.map(function (id) { return (0, group_1.formatBlockIdToCbId)(id); })
|
|
480
481
|
.filter(function (each) { return each !== null; });
|