Haptic
Controls when haptic feedback is triggered. You can either use a boolean to enable/disable all haptic feedback, or specify which actions should trigger haptic feedback:
| Option | Type | Default | Description |
|---|---|---|---|
url | boolean | false | Trigger when navigating to a new page |
tap_action | boolean | true | Trigger on tap actions |
hold_action | boolean | true | Trigger on hold actions |
double_tap_action | boolean | true | Trigger on double tap actions |
Example
Global configuration of haptic feedback. Will trigger haptic feedback for all actions.
type: custom:navbar-card
haptic: true
Granular configuration of haptic feedback. Will trigger haptic feedback for the specified actions.
type: custom:navbar-card
haptic:
url: false
tap_action: false
hold_action: true
double_tap_action: true