@fdm-monster/client-next 2.2.2 → 2.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/README.md +19 -0
  3. package/RELEASE_NOTES.MD +10 -0
  4. package/dist/assets/{index-BlOaSQti.js → index-BAB7cJ3l.js} +52 -52
  5. package/dist/assets/{index-BlOaSQti.js.map → index-BAB7cJ3l.js.map} +1 -1
  6. package/dist/assets/index-DfA7W6iO.css +1 -0
  7. package/dist/index.html +3 -3
  8. package/package.json +21 -2
  9. package/screenshots/COVERAGE.md +383 -0
  10. package/screenshots/README.md +431 -0
  11. package/screenshots/fixtures/api-mock.ts +699 -0
  12. package/screenshots/fixtures/data/auth.fixtures.ts +79 -0
  13. package/screenshots/fixtures/data/cameras.fixtures.ts +48 -0
  14. package/screenshots/fixtures/data/files.fixtures.ts +56 -0
  15. package/screenshots/fixtures/data/floors.fixtures.ts +39 -0
  16. package/screenshots/fixtures/data/jobs.fixtures.ts +172 -0
  17. package/screenshots/fixtures/data/printers.fixtures.ts +132 -0
  18. package/screenshots/fixtures/data/settings.fixtures.ts +62 -0
  19. package/screenshots/fixtures/socketio-mock.ts +76 -0
  20. package/screenshots/fixtures/test-fixtures.ts +112 -0
  21. package/screenshots/helpers/dialog.helper.ts +196 -0
  22. package/screenshots/helpers/form.helper.ts +207 -0
  23. package/screenshots/helpers/navigation.helper.ts +191 -0
  24. package/screenshots/playwright.screenshots.config.ts +70 -0
  25. package/screenshots/suites/00-example.screenshots.spec.ts +29 -0
  26. package/screenshots/suites/01-auth.screenshots.spec.ts +130 -0
  27. package/screenshots/suites/02-dashboard.screenshots.spec.ts +106 -0
  28. package/screenshots/suites/03-printer-grid.screenshots.spec.ts +160 -0
  29. package/screenshots/suites/04-printer-list.screenshots.spec.ts +184 -0
  30. package/screenshots/suites/05-camera-grid.screenshots.spec.ts +127 -0
  31. package/screenshots/suites/06-print-jobs.screenshots.spec.ts +139 -0
  32. package/screenshots/suites/07-queue.screenshots.spec.ts +86 -0
  33. package/screenshots/suites/08-files.screenshots.spec.ts +142 -0
  34. package/screenshots/suites/09-settings.screenshots.spec.ts +130 -0
  35. package/screenshots/suites/10-panels-dialogs.screenshots.spec.ts +245 -0
  36. package/screenshots/utils.ts +216 -0
  37. package/vitest.config.ts +8 -0
  38. package/dist/assets/index-TeWdSn_6.css +0 -1
Binary file
package/README.md CHANGED
@@ -93,6 +93,25 @@ yarn build
93
93
 
94
94
  Once the build process is completed, your application will be ready for deployment in a production environment.
95
95
 
96
+ ## 📸 Documentation Screenshots
97
+
98
+ This project includes Playwright setup for capturing screenshots for documentation purposes.
99
+
100
+ ### Quick Start
101
+
102
+ ```bash
103
+ # Install Playwright browsers (first time only)
104
+ yarn playwright:install
105
+
106
+ # Generate screenshots
107
+ yarn screenshots
108
+
109
+ # Run in headed mode (see the browser)
110
+ yarn screenshots:headed
111
+ ```
112
+
113
+ For detailed documentation, see [screenshots/SETUP.md](screenshots/SETUP.md).
114
+
96
115
  ## 💪 Support Vuetify Development
97
116
 
98
117
  This project is built with [Vuetify](https://vuetifyjs.com/en/), a UI Library with a comprehensive collection of Vue components. Vuetify is an MIT licensed Open Source project that has been made possible due to the generous contributions by our [sponsors and backers](https://vuetifyjs.com/introduction/sponsors-and-backers/). If you are interested in supporting this project, please consider:
package/RELEASE_NOTES.MD CHANGED
@@ -1,5 +1,15 @@
1
1
  # Develop
2
2
 
3
+ ## Client 2.2.3
4
+
5
+ Features
6
+
7
+ - Add playwright for automated screenshot taking
8
+
9
+ Fixes
10
+
11
+ - Redesign registration form to Vuetify 3
12
+
3
13
  ## Client 2.2.2
4
14
 
5
15
  Features