Conversation
sync main to develop
introduces Storybook to the project
Feat/aura open design system
…on-vite - Replace Angular CLI build with electron-vite unified build system - Add @analogjs/vite-plugin-angular for Angular compilation in Vite - Move index.html to project root (Vite convention) - Update paths.ts for electron-vite dev server and production paths - Update window.ts to load from Vite dev server in development - Remove old electron/build/ tsconfig files (replaced by electron.vite.config.ts) - Add cross-platform asset serving plugin (dev middleware + build copy) - Update package.json scripts for electron-vite commands - Add Zone.js import in src/main.ts for Vite compatibility - Update electron/tsconfig.spec.json for standalone Vitest usage
- Fix workDays parsing: use split(',') instead of JSON.parse()
to match the comma-separated format stored in the database
- Use daySchedule per-day minutes instead of dividing weeklyMinutes
evenly, matching the calendar component's behavior
- Handle dayTypeId in overrides (holidays/special days return 0)
- Fix Sunday dayOfWeek conversion (0 -> 7) to match ISO format
Closes #66
- Set card height to 134px for all variants - Set max-width to 356px for all cards - Add text-overflow: ellipsis on card names and task titles - Change grid to auto-fill with minmax(200px, 356px) - Add overflow: hidden to p-card for clean truncation - Reduce card body padding for compact layout
- Add ia-rules.md with coding standards, architecture context, and essential commands for AI agents working on the project
…ectron-vite Fix/66 dashboard schedule and electron vite
chore: bump version
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This pull request introduces significant improvements to the project's Electron build and development workflow, Storybook integration, and documentation. The most notable changes are the migration to a unified Vite-based Electron build system, enhanced Storybook configuration for UI development, and clearer, more comprehensive documentation for both contributors and AI assistants.
Build System and Electron Integration
electron-viteinelectron.vite.config.ts, replacing legacytsconfigbuild files and streamlining main, preload, and renderer builds. This includes improved asset serving and output structure for development and production. [1] [2] [3]dist/rendererinstead of legacybrowserdirectory, and adjusted path utilities and tests accordingly for consistency and reliability. [1] [2] [3] [4]Storybook and UI Development
Documentation and Contributor Guidance
.agent/rules/ia-rules.mdoutlining tech stack, coding standards, workflows, and context for AI agents, and referenced it in the mainREADME.md. [1] [2]COLLABORATION.mdandCONTRIBUTING.mdfor both English and Spanish speakers. [1] [2] [3] [4] [5] [6] [7]Other Improvements
index.html(moved fromsrc/index.html) to ensure correct script loading for Angular's main entry point.electron/tsconfig.spec.jsonfor direct configuration, removing inheritance from now-deleted build configs.These changes modernize the development workflow, improve cross-platform consistency, and make UI and documentation work easier and more robust.