(hapticType)
| 235 | } |
| 236 | |
| 237 | _forwardHaptic(hapticType) { |
| 238 | const event = new Event("haptic", { bubbles: true, cancelable: false, composed: true }) |
| 239 | event.detail = hapticType |
| 240 | this.dispatchEvent(event) |
| 241 | } |
| 242 | _showEntityMoreInfo(entityId) { |
| 243 | const event = new Event("hass-more-info", { bubbles: true, cancelable: false, composed: true }) |
| 244 | event.detail = { entityId } |