-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#80] Prep for fixing auth token bug #82
Conversation
Includes updated peer dependencies as needed for the new deps.
- Import Vueform library and components - Define dashboard page layout and meta - Configure form steps, fields, rules and default values - Cover accommodation details, location, rooms, facilities, etc. - Add sections for host info, gallery, pricing and availability - Include terms and complete page to finish listing creation flow
- Add vueform.config.js for registering locales, theme and plugins - Register English locale - Register Tailwind theme - Register @vueform/builder plugin - Add Tailwind content config in tailwind.config.js - Install and configure Prettier formatter
- Import Vueform Builder plugin - Add Builder page - Configure Tailwind CSS for Builder styles - Update Vueform config for Builder plugin
* Moved request form component to reuse at `/requests/new` * Updated nav links to open requests subtree by default * Added request history and new request pages to requests nav The request form component was extracted out of the old `/requestform` route so it can be reused at the new `/requests/new` location instead. The dashboard nav tree for requests was also updated to default to open when on any `/requests` path and nested routes were added for the request history and new request pages. Lastly the header navlink to the form was redirected from `/requestform` to `/requests/new` as well.
The code changes replace the placeholder user profile images in the request sample data with a consistent local placeholder image. Additionally, the sample data and various strings are reformatted to use consistent double quotes and whitespace style. This standardizes the sample data formatting to follow project conventions, removes external image references, and improves placeholder visual consistency. The changes help prepare the sample data for integration in additional views across the application.
PR Description updated to latest commit (7a3fbeb) |
1 similar comment
PR Description updated to latest commit (7a3fbeb) |
PR Description updated to latest commit (7a3fbeb) |
PR Review
|
- Install Vitest, Testing Library, Playwright, and Happy DOM - Add Jest and Testing Library types - Configure Vite test environment - Add sample Vitest config file - Update dependencies in package.json and lock files
User description
Prep for issue #80.
Type
enhancement, other
Description
@trunkio/launcher
dependency topackage-lock.json
for the API..npmrc
for UI.@nuxt/fonts
,date-fns
, andnext-auth
inpackage.json
for UI.@vueform/builder-nuxt
,@vueform/nuxt
,@vueform/vueform
, andprettier
dependencies topackage.json
for UI.pnpm-lock.yaml
for UI.@vueform
intailwind.config.ts
for UI.vueform.config.ts
for@vueform
configuration in UI.Changes walkthrough
package-lock.json
Add `@trunkio/launcher` dependency to `package-lock.json`
apps/api/package-lock.json
@trunkio/launcher
dependencypackage.json
Update dependencies and add
@vueform
andprettier
topackage.json
apps/ui/package.json
@nuxt/fonts
,date-fns
, andnext-auth
@vueform/builder-nuxt
,@vueform/nuxt
,@vueform/vueform
, andprettier
dependenciesprettier
scriptpnpm-lock.yaml
Update and add dependencies in `pnpm-lock.yaml`
apps/ui/pnpm-lock.yaml
@img/sharp
,@vueform
, andcolor
.npmrc
Disable strict peer dependencies in `.npmrc`
apps/ui/.npmrc
strict-peer-dependencies
tofalse
tailwind.config.ts
Configure Tailwind CSS for `@vueform` in `tailwind.config.ts`
apps/ui/tailwind.config.ts
content
configuration for Tailwind CSS@vueform/vueform
and@vueform/builder
pluginsvueform.config.ts
Add `vueform.config.ts` for `@vueform` configuration
apps/ui/vueform.config.ts
vueform.config.ts
for@vueform
configuration