@fdm-monster/client-next 2.2.1 → 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.
- package/.yarn/install-state.gz +0 -0
- package/README.md +19 -0
- package/RELEASE_NOTES.MD +22 -0
- package/dist/assets/index-BAB7cJ3l.js +105 -0
- package/dist/assets/index-BAB7cJ3l.js.map +1 -0
- package/dist/assets/index-DfA7W6iO.css +1 -0
- package/dist/index.html +2 -2
- package/package.json +21 -2
- package/screenshots/COVERAGE.md +383 -0
- package/screenshots/README.md +431 -0
- package/screenshots/fixtures/api-mock.ts +699 -0
- package/screenshots/fixtures/data/auth.fixtures.ts +79 -0
- package/screenshots/fixtures/data/cameras.fixtures.ts +48 -0
- package/screenshots/fixtures/data/files.fixtures.ts +56 -0
- package/screenshots/fixtures/data/floors.fixtures.ts +39 -0
- package/screenshots/fixtures/data/jobs.fixtures.ts +172 -0
- package/screenshots/fixtures/data/printers.fixtures.ts +132 -0
- package/screenshots/fixtures/data/settings.fixtures.ts +62 -0
- package/screenshots/fixtures/socketio-mock.ts +76 -0
- package/screenshots/fixtures/test-fixtures.ts +112 -0
- package/screenshots/helpers/dialog.helper.ts +196 -0
- package/screenshots/helpers/form.helper.ts +207 -0
- package/screenshots/helpers/navigation.helper.ts +191 -0
- package/screenshots/playwright.screenshots.config.ts +70 -0
- package/screenshots/suites/00-example.screenshots.spec.ts +29 -0
- package/screenshots/suites/01-auth.screenshots.spec.ts +130 -0
- package/screenshots/suites/02-dashboard.screenshots.spec.ts +106 -0
- package/screenshots/suites/03-printer-grid.screenshots.spec.ts +160 -0
- package/screenshots/suites/04-printer-list.screenshots.spec.ts +184 -0
- package/screenshots/suites/05-camera-grid.screenshots.spec.ts +127 -0
- package/screenshots/suites/06-print-jobs.screenshots.spec.ts +139 -0
- package/screenshots/suites/07-queue.screenshots.spec.ts +86 -0
- package/screenshots/suites/08-files.screenshots.spec.ts +142 -0
- package/screenshots/suites/09-settings.screenshots.spec.ts +130 -0
- package/screenshots/suites/10-panels-dialogs.screenshots.spec.ts +245 -0
- package/screenshots/utils.ts +216 -0
- package/vitest.config.ts +8 -0
- package/dist/assets/index-BaXVMJVZ.js +0 -105
- package/dist/assets/index-BaXVMJVZ.js.map +0 -1
- package/dist/assets/index-CU1IeFlc.css +0 -1
package/.yarn/install-state.gz
CHANGED
|
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,27 @@
|
|
|
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
|
+
|
|
13
|
+
## Client 2.2.2
|
|
14
|
+
|
|
15
|
+
Features
|
|
16
|
+
|
|
17
|
+
- Redesigned printer dialog
|
|
18
|
+
|
|
19
|
+
Fixes
|
|
20
|
+
|
|
21
|
+
- Printer dialog duplicate wouldn't work
|
|
22
|
+
|
|
23
|
+
## Client 2.2.1
|
|
24
|
+
|
|
3
25
|
Fixes
|
|
4
26
|
|
|
5
27
|
- Shift+S would cause problems in dialog, removed short-cut
|