feat(budget): monthly budget tracking PoC #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "exe-dev-bot/loam:feat/budget-poc"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
- Add direction ref ('left'/'right') to useMonthNavigation composable - goToPrevMonth sets direction to 'right', goToNextMonth sets 'left' - Enables slide transitions in MonthlyBudget.vue Co-authored-by: Shelley <shelley@exe.dev>@ -0,0 +23,4 @@<template><!-- Standard 20×20 stroke-based icons --><svgInstead of hand-drawn icons, we should pick an MIT set from https://icon-sets.iconify.design that matches the design goals of the app
@ -8,0 +40,4 @@--font-feature-tabular: 'tnum';/* -----------------------------------------------------------------------Color Palette — PrimitivesThe app must set different values based on dark mode or light mode, and follow the user's system dark mode setting. Default to dark mode.
@ -0,0 +1,515 @@<template>Settings should be a dedicated page rather than a bottom sheet.
@ -0,0 +1,21 @@/**We should use TypeScript from the start across the project to avoid type errors.
@ -0,0 +35,4 @@><AppIcon name="import"/></span><span class="action-label"><span class="action-title">Import Data</span>We don't want "Import". We want to directly open the database file use the filesystem API. Store file handle in IndexDB.
Please download https://git.kwila.cloud/kwila/address-book/raw/branch/main/index.html and analyze that file for best practices related to local file handling
@ -0,0 +175,4 @@const storageEstimate = ref(null)const appVersion =typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : '0.1.0-beta'We need some code for setting APP_VERSION automatically somehow. The fallback should be "??" instead of "0.1.0-beta"
Some things I noticed: