diff --git a/package-lock.json b/package-lock.json index c2a70b7..9ebd87e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "name": "vue-project", "version": "0.0.0", "dependencies": { - "@phosphor-icons/vue": "^2.1.6", + "@phosphor-icons/vue": "^2.2.1", "@vueuse/core": "^10.9.0", "class-variance-authority": "^0.7.0", "clsx": "^2.1.0", @@ -890,9 +890,9 @@ } }, "node_modules/@phosphor-icons/vue": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@phosphor-icons/vue/-/vue-2.1.6.tgz", - "integrity": "sha512-j4iVvNT4JbDR2udIVfakKZHd14i3jCvO4b24OC0W/1rasftU8qVg1Tnb3QDwAT0teNU+UxvaM+kCWxfGHC2dUg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@phosphor-icons/vue/-/vue-2.2.1.tgz", + "integrity": "sha512-3RNg1utc2Z5RwPKWFkW3eXI/0BfQAwXgtFxPUPeSzi55jGYUq16b+UqcgbKLazWFlwg5R92OCLKjDiJjeiJcnA==", "engines": { "node": ">=14" }, diff --git a/package.json b/package.json index 33bb9df..a1a3a19 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,8 @@ "format": "prettier --write src/" }, "dependencies": { - "@phosphor-icons/vue": "^2.1.6", + "@phosphor-icons/vue": "^2.2.1", + "lucide-vue-next": "^0.364.0", "@vueuse/core": "^10.9.0", "class-variance-authority": "^0.7.0", "clsx": "^2.1.0", diff --git a/src/components/calendar/CalendarMenu.vue b/src/components/calendar/CalendarMenu.vue index 2afe5f3..d44762b 100644 --- a/src/components/calendar/CalendarMenu.vue +++ b/src/components/calendar/CalendarMenu.vue @@ -4,11 +4,12 @@ import { useCalendar } from '@/stores/CalendarStore' import { Button } from '@/components/ui/button' import { PhMagnifyingGlass } from '@phosphor-icons/vue' import CalendarMenuNav from './CalendarMenuNav.vue' +import CalendarMenuSubnav from './CalendarMenuSubnav.vue' import CalendarMenuToday from './CalendarMenuToday.vue' import CalendarSwitch from './CalendarSwitch.vue' import CalendarCurrentDate from './CalendarCurrentDate.vue' -const { currentDate, revealAdvancedSearch } = useCalendar() +const { revealAdvancedSearch } = useCalendar() diff --git a/src/components/calendar/CalendarMenuNav.vue b/src/components/calendar/CalendarMenuNav.vue index d68c0eb..8120ac5 100644 --- a/src/components/calendar/CalendarMenuNav.vue +++ b/src/components/calendar/CalendarMenuNav.vue @@ -9,7 +9,7 @@ import { PhCaretLeft, PhCaretRight } from '@phosphor-icons/vue' -import Button from '../ui/button/Button.vue' +import Button from '@/components/ui/button/Button.vue' interface DirectionLabels { pastFar: string diff --git a/src/components/calendar/CalendarMenuSubnav.vue b/src/components/calendar/CalendarMenuSubnav.vue new file mode 100644 index 0000000..d6fe29f --- /dev/null +++ b/src/components/calendar/CalendarMenuSubnav.vue @@ -0,0 +1,107 @@ + + +