()
| 409 | */ |
| 410 | @action |
| 411 | private initBuiltinProps() { |
| 412 | this.props.has(getConvertedExtraKey('hidden')) || this.props.add(false, getConvertedExtraKey('hidden')); |
| 413 | this.props.has(getConvertedExtraKey('title')) || this.props.add('', getConvertedExtraKey('title')); |
| 414 | this.props.has(getConvertedExtraKey('isLocked')) || this.props.add(false, getConvertedExtraKey('isLocked')); |
| 415 | this.props.has(getConvertedExtraKey('condition')) || this.props.add(true, getConvertedExtraKey('condition')); |
| 416 | this.props.has(getConvertedExtraKey('conditionGroup')) || this.props.add('', getConvertedExtraKey('conditionGroup')); |
| 417 | this.props.has(getConvertedExtraKey('loop')) || this.props.add(undefined, getConvertedExtraKey('loop')); |
| 418 | } |
| 419 | |
| 420 | @action |
| 421 | private initProps(props: any): any { |
no test coverage detected