(data: Schema, checkId = false)
| 141 | } |
| 142 | |
| 143 | import(data: Schema, checkId = false) { |
| 144 | const { componentName, id, children, props, ...extras } = data |
| 145 | |
| 146 | this.props.import(props, extras) |
| 147 | this._children?.import(children, checkId) |
| 148 | } |
| 149 | |
| 150 | export<T = NodeSchema>(stage: TRANSFORM_STAGE = TRANSFORM_STAGE.SAVE): T { |
| 151 | const baseSchema: any = { |