Feature/102 update tailwind version to 4x#124
Merged
felix-schultz merged 7 commits intodevfrom Jul 27, 2025
Merged
Conversation
…ove shadow styles fix: refactor utility function to use consistent formatting chore: update package dependencies for @radix-ui components and other libraries chore: modify postcss configuration to use @tailwindcss/postcss plugin refactor: remove tailwind.config.ts as it is no longer needed
- Adjusted color values for light and dark themes in flow-like-theme.json for better contrast and aesthetics. - Reformatted JSON structure for consistency and readability. fix(utils): improve import order and formatting - Changed the import order in utils.ts for better clarity and consistency. - Added semicolon for consistency in the cn function.
- Updated CSS classes in ChatHistory, MessageComponent, and ChatWelcome for consistency and better responsiveness. - Changed gradient classes from `bg-linear-to-*` to `bg-gradient-to-*` for uniformity. - Simplified AppCardLoading component by removing unnecessary props and motion wrappers. - Introduced SmallAppCard and ExtendedAppCard components to streamline AppCard rendering logic. - Enhanced button interactions with framer-motion for better user experience.
…in flow components
- Updated FlowNodeInner to include onHover prop in flow-node.tsx. - Enhanced PinEditModal with improved state handling and UI updates in edit-modal.tsx. - Simplified PinEdit component structure in pin-edit.tsx. - Cleaned up FlowPreview component imports and styles in flow-preview.tsx. - Adjusted button variant logic in template-preview.tsx. - Reformatted global CSS for better readability and consistency in global.css. - Replaced lodash with lodash-es for tree-shaking benefits in multiple files. - Introduced empty state classes for backend state management in empty-states directory. - Refined flow control state management logic in flow-control-state.ts.
- Updated the node IDs in the Board component for mobile and desktop views. - Changed the CSS import from 'globals.css' to 'global.css' in both the callback and logout pages for consistency.
This was referenced Jul 27, 2025
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 a variety of changes across multiple files, focusing on improving code readability, updating dependencies, and simplifying configurations. Key updates include formatting adjustments, removal of unused animations, dependency upgrades, and configuration changes related to TailwindCSS and PostCSS.
Code readability and formatting improvements:
console.loganduseCallbackdependency arrays inapps/desktop/app/account/account.tsx(ProfilePage) andapps/desktop/app/account/page.tsx(AccountPage). [1] [2] [3]UI and animation updates:
motion.divanimations fromAppCardcomponents inapps/desktop/app/library/apps/page.tsx,apps/desktop/app/library/page.tsx, andapps/desktop/app/profile/page.tsx. This simplifies the UI code by eliminating unnecessary hover effects. [1] [2] [3] [4] [5]Dependency updates:
apps/desktop/package.json, including@radix-ui,lucide-react,recharts, andtailwindcss. Added new dependencies like@tailwindcss/viteand removed unused ones likesass. [1] [2] [3] [4] [5] [6] [7]TailwindCSS and PostCSS configuration changes:
apps/desktop/tailwind.config.tsand switched to using@tailwindcss/postcssin the PostCSS configuration. Simplified related configurations inapps/desktop/postcss.config.mjsandvite.config.ts. [1] [2] [3] [4] [5]Miscellaneous changes:
apps/desktop/next.config.mjsto remove Sentry integration and addedtranspilePackagesfor@tm9657/flow-like-ui.min-h-screenstyling inapps/desktop/app/download/page.tsxfor better layout handling.