microboard-temp 0.4.61 → 0.4.62
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.
- package/dist/cjs/browser.js +14 -0
- package/dist/cjs/index.js +14 -0
- package/dist/cjs/node.js +14 -0
- package/dist/esm/browser.js +14 -0
- package/dist/esm/index.js +14 -0
- package/dist/esm/node.js +14 -0
- package/package.json +1 -1
package/dist/cjs/browser.js
CHANGED
|
@@ -18821,6 +18821,20 @@ class FrameCommand {
|
|
|
18821
18821
|
children: frame2.getChildrenIds()
|
|
18822
18822
|
};
|
|
18823
18823
|
});
|
|
18824
|
+
case "addChildren":
|
|
18825
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18826
|
+
return {
|
|
18827
|
+
...this.operation,
|
|
18828
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18829
|
+
};
|
|
18830
|
+
});
|
|
18831
|
+
case "removeChildren":
|
|
18832
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18833
|
+
return {
|
|
18834
|
+
...this.operation,
|
|
18835
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18836
|
+
};
|
|
18837
|
+
});
|
|
18824
18838
|
default:
|
|
18825
18839
|
return mapItemsByOperation(frame, (item) => {
|
|
18826
18840
|
const op = this.operation;
|
package/dist/cjs/index.js
CHANGED
|
@@ -18821,6 +18821,20 @@ class FrameCommand {
|
|
|
18821
18821
|
children: frame2.getChildrenIds()
|
|
18822
18822
|
};
|
|
18823
18823
|
});
|
|
18824
|
+
case "addChildren":
|
|
18825
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18826
|
+
return {
|
|
18827
|
+
...this.operation,
|
|
18828
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18829
|
+
};
|
|
18830
|
+
});
|
|
18831
|
+
case "removeChildren":
|
|
18832
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18833
|
+
return {
|
|
18834
|
+
...this.operation,
|
|
18835
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18836
|
+
};
|
|
18837
|
+
});
|
|
18824
18838
|
default:
|
|
18825
18839
|
return mapItemsByOperation(frame, (item) => {
|
|
18826
18840
|
const op = this.operation;
|
package/dist/cjs/node.js
CHANGED
|
@@ -21361,6 +21361,20 @@ class FrameCommand {
|
|
|
21361
21361
|
children: frame2.getChildrenIds()
|
|
21362
21362
|
};
|
|
21363
21363
|
});
|
|
21364
|
+
case "addChildren":
|
|
21365
|
+
return mapItemsByOperation(frame, (item) => {
|
|
21366
|
+
return {
|
|
21367
|
+
...this.operation,
|
|
21368
|
+
newData: { childIds: item.getChildrenIds() }
|
|
21369
|
+
};
|
|
21370
|
+
});
|
|
21371
|
+
case "removeChildren":
|
|
21372
|
+
return mapItemsByOperation(frame, (item) => {
|
|
21373
|
+
return {
|
|
21374
|
+
...this.operation,
|
|
21375
|
+
newData: { childIds: item.getChildrenIds() }
|
|
21376
|
+
};
|
|
21377
|
+
});
|
|
21364
21378
|
default:
|
|
21365
21379
|
return mapItemsByOperation(frame, (item) => {
|
|
21366
21380
|
const op = this.operation;
|
package/dist/esm/browser.js
CHANGED
|
@@ -18671,6 +18671,20 @@ class FrameCommand {
|
|
|
18671
18671
|
children: frame2.getChildrenIds()
|
|
18672
18672
|
};
|
|
18673
18673
|
});
|
|
18674
|
+
case "addChildren":
|
|
18675
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18676
|
+
return {
|
|
18677
|
+
...this.operation,
|
|
18678
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18679
|
+
};
|
|
18680
|
+
});
|
|
18681
|
+
case "removeChildren":
|
|
18682
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18683
|
+
return {
|
|
18684
|
+
...this.operation,
|
|
18685
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18686
|
+
};
|
|
18687
|
+
});
|
|
18674
18688
|
default:
|
|
18675
18689
|
return mapItemsByOperation(frame, (item) => {
|
|
18676
18690
|
const op = this.operation;
|
package/dist/esm/index.js
CHANGED
|
@@ -18664,6 +18664,20 @@ class FrameCommand {
|
|
|
18664
18664
|
children: frame2.getChildrenIds()
|
|
18665
18665
|
};
|
|
18666
18666
|
});
|
|
18667
|
+
case "addChildren":
|
|
18668
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18669
|
+
return {
|
|
18670
|
+
...this.operation,
|
|
18671
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18672
|
+
};
|
|
18673
|
+
});
|
|
18674
|
+
case "removeChildren":
|
|
18675
|
+
return mapItemsByOperation(frame, (item) => {
|
|
18676
|
+
return {
|
|
18677
|
+
...this.operation,
|
|
18678
|
+
newData: { childIds: item.getChildrenIds() }
|
|
18679
|
+
};
|
|
18680
|
+
});
|
|
18667
18681
|
default:
|
|
18668
18682
|
return mapItemsByOperation(frame, (item) => {
|
|
18669
18683
|
const op = this.operation;
|
package/dist/esm/node.js
CHANGED
|
@@ -21199,6 +21199,20 @@ class FrameCommand {
|
|
|
21199
21199
|
children: frame2.getChildrenIds()
|
|
21200
21200
|
};
|
|
21201
21201
|
});
|
|
21202
|
+
case "addChildren":
|
|
21203
|
+
return mapItemsByOperation(frame, (item) => {
|
|
21204
|
+
return {
|
|
21205
|
+
...this.operation,
|
|
21206
|
+
newData: { childIds: item.getChildrenIds() }
|
|
21207
|
+
};
|
|
21208
|
+
});
|
|
21209
|
+
case "removeChildren":
|
|
21210
|
+
return mapItemsByOperation(frame, (item) => {
|
|
21211
|
+
return {
|
|
21212
|
+
...this.operation,
|
|
21213
|
+
newData: { childIds: item.getChildrenIds() }
|
|
21214
|
+
};
|
|
21215
|
+
});
|
|
21202
21216
|
default:
|
|
21203
21217
|
return mapItemsByOperation(frame, (item) => {
|
|
21204
21218
|
const op = this.operation;
|