import { useQuasar } from 'https://cdn.jsdelivr.net/npm/quasar@2.16.0/dist/quasar.umd.prod.js'; import { usePlannerState } from '../../services/planner-state-service.js'; export default { name: 'PlannerSettingsDrawer', props: { modelValue: Boolean }, emits: ['update:modelValue'], setup(props, { emit }) { const { state, methods } = usePlannerState(); const $q = useQuasar(); const simulateWssLock = () => methods.simulateWssLock($q); return { state, resetToToday: () => { methods.resetToToday(); emit('update:modelValue', false); }, simulateWssLock, }; }, template: `
Workspace
Manage grid and picker preferences.
Timeline Range
Date Picker Week Start
Dev Tools
Simulate receiving a "Lock Cell" message from server
Grid Visibility
Reading CrosshairDynamic highlight on hover Show EOD TargetsTop row KPI Show AvailabilityTraffic light indicators
Compact GridHigh density view Working WeekendsEnable Sat/Sun shifts
` };