feat(workspace): add hidden contacts filter and remove calendar scene swap

This commit is contained in:
Ruslan Bakiev
2026-02-23 12:38:30 +07:00
parent f076726362
commit aa465f65bd
3 changed files with 107 additions and 40 deletions

View File

@@ -53,7 +53,6 @@ defineProps<{
onCalendarHierarchyWheel: (event: WheelEvent) => void;
setCalendarSceneRef: (element: HTMLDivElement | null) => void;
normalizedCalendarView: string;
calendarSceneMasked: boolean;
calendarSceneTransformStyle: Record<string, string>;
onCalendarSceneMouseLeave: () => void;
calendarView: string;
@@ -170,7 +169,6 @@ defineProps<{
:class="[
'calendar-scene',
normalizedCalendarView === 'day' ? 'cursor-zoom-out' : 'cursor-zoom-in',
calendarSceneMasked ? 'calendar-scene-hidden' : '',
]"
:style="calendarSceneTransformStyle"
@mouseleave="onCalendarSceneMouseLeave"
@@ -351,10 +349,6 @@ defineProps<{
transform-origin: center center;
}
.calendar-scene-hidden {
visibility: hidden;
}
.calendar-scene.cursor-zoom-in,
.calendar-scene.cursor-zoom-in * {
cursor: zoom-in;