(prevProps)
| 148 | } |
| 149 | |
| 150 | componentDidUpdate(prevProps) { |
| 151 | const styleNames = this.resolveStyleNames(this.props); |
| 152 | |
| 153 | if (this.shouldRebuildStyle(prevProps, styleNames)) { |
| 154 | const resolvedStyle = this.resolveStyle( |
| 155 | this.context, |
| 156 | this.props, |
| 157 | styleNames, |
| 158 | ); |
| 159 | |
| 160 | this.setState({ |
| 161 | style: resolvedStyle.componentStyle, |
| 162 | childrenStyle: resolvedStyle.childrenStyle, |
| 163 | styleNames, |
| 164 | }); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | setNativeProps(nativeProps) { |
| 169 | if (!this.isRefDefined()) { |
nothing calls this directly
no test coverage detected