Add NudgeController with 1-hour throttling per declaration, NudgePopover component on declarations index and dashboard, shadcn-vue popover primitives, and per-declaration nudge tracking. Owners/managers can nudge assigned workers with one click. Includes 10 feature tests covering authorization, throttling, and cache invalidation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
307 B
Vue
16 lines
307 B
Vue
<script setup lang="ts">
|
|
import type { PopoverTriggerProps } from "reka-ui"
|
|
import { PopoverTrigger } from "reka-ui"
|
|
|
|
const props = defineProps<PopoverTriggerProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<PopoverTrigger
|
|
data-slot="popover-trigger"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</PopoverTrigger>
|
|
</template>
|