@measured/puck 0.16.0-canary.257e4be → 0.16.0-canary.28a62c5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -5046,7 +5046,10 @@ var insertComponent = (componentType, zone, index, {
|
|
5046
5046
|
const insertedData = insertAction(state.data, insertActionData, config);
|
5047
5047
|
dispatch(__spreadProps(__spreadValues({}, insertActionData), {
|
5048
5048
|
// Dispatch insert rather set, as user's may rely on this via onAction
|
5049
|
-
|
5049
|
+
// We must always record history here so the insert is added to user history
|
5050
|
+
// If the user has defined a resolveData method, they will end up with 2 history
|
5051
|
+
// entries on insert - one for the initial insert, and one when the data resolves
|
5052
|
+
recordHistory: true
|
5050
5053
|
}));
|
5051
5054
|
const itemSelector = {
|
5052
5055
|
index,
|
package/dist/index.mjs
CHANGED
@@ -4969,7 +4969,10 @@ var insertComponent = (componentType, zone, index, {
|
|
4969
4969
|
const insertedData = insertAction(state.data, insertActionData, config);
|
4970
4970
|
dispatch(__spreadProps(__spreadValues({}, insertActionData), {
|
4971
4971
|
// Dispatch insert rather set, as user's may rely on this via onAction
|
4972
|
-
|
4972
|
+
// We must always record history here so the insert is added to user history
|
4973
|
+
// If the user has defined a resolveData method, they will end up with 2 history
|
4974
|
+
// entries on insert - one for the initial insert, and one when the data resolves
|
4975
|
+
recordHistory: true
|
4973
4976
|
}));
|
4974
4977
|
const itemSelector = {
|
4975
4978
|
index,
|
package/package.json
CHANGED