()
| 205 | // should not have a clickable input cover over the entire item to prevent |
| 206 | // interfering with their individual click events |
| 207 | private setMultipleInputs() { |
| 208 | const { covers, inputs, clickables } = this.totalNestedInputs(); |
| 209 | |
| 210 | // Check for multiple inputs to change the position of the input cover to relative |
| 211 | // for all of the covered inputs above |
| 212 | this.multipleInputs = |
| 213 | covers.length + inputs.length > 1 || |
| 214 | covers.length + clickables.length > 1 || |
| 215 | (covers.length > 0 && this.isClickable()); |
| 216 | } |
| 217 | |
| 218 | private setIsInteractive() { |
| 219 | // If item contains any interactive children, set isInteractive to `true` |
no test coverage detected