@gct-paas/word 0.1.59 → 0.1.60
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/index.es.js +5 -3
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -94495,12 +94495,14 @@ class SetMaterialConsumeTable extends CommandBase {
|
|
|
94495
94495
|
row: endCell.parent?.getCurrentIndex(),
|
|
94496
94496
|
col: endCell.getCurrentIndex()
|
|
94497
94497
|
};
|
|
94498
|
+
const { name: name2, valuePath } = this.payload;
|
|
94499
|
+
const props = { table_key_: valuePath };
|
|
94498
94500
|
this.output = startCell.table.setMaterialConsumeTable({
|
|
94499
94501
|
start,
|
|
94500
94502
|
end,
|
|
94501
|
-
name:
|
|
94502
|
-
valuePath
|
|
94503
|
-
widgetMeta: { props
|
|
94503
|
+
name: name2,
|
|
94504
|
+
valuePath,
|
|
94505
|
+
widgetMeta: { props }
|
|
94504
94506
|
});
|
|
94505
94507
|
return null;
|
|
94506
94508
|
}
|