@feedmepos/mf-kitchen 1.0.0

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 (57) hide show
  1. package/README.md +23 -0
  2. package/dist/AdvanceModeView-04b079e0.js +6200 -0
  3. package/dist/App.vue.d.ts +2 -0
  4. package/dist/Entry.vue.d.ts +2 -0
  5. package/dist/NormalModeView-6d512143.js +222 -0
  6. package/dist/api/index.d.ts +2 -0
  7. package/dist/api/receipt.d.ts +9 -0
  8. package/dist/app-7966dca0.js +729 -0
  9. package/dist/app.d.ts +647 -0
  10. package/dist/app.js +9 -0
  11. package/dist/components/EditingPanel.vue.d.ts +211 -0
  12. package/dist/components/LocalizationWatcher.vue.d.ts +10 -0
  13. package/dist/components/Navigator.vue.d.ts +2 -0
  14. package/dist/components/Preview.vue.d.ts +231 -0
  15. package/dist/components/ReceiptEditor.vue.d.ts +214 -0
  16. package/dist/components/WidgetView.vue.d.ts +32 -0
  17. package/dist/components/WidgetsComponent.vue.d.ts +7 -0
  18. package/dist/components/ZigZagBottom.vue.d.ts +2 -0
  19. package/dist/components/advance/AdvanceModeLeftPanel.vue.d.ts +277 -0
  20. package/dist/components/advance/PreviewDialog.vue.d.ts +21 -0
  21. package/dist/components/normal/NormalModeEditor.vue.d.ts +57 -0
  22. package/dist/components/type.d.ts +33 -0
  23. package/dist/components/widgets/CheckboxWidget.vue.d.ts +18 -0
  24. package/dist/components/widgets/DividerWidget.vue.d.ts +18 -0
  25. package/dist/components/widgets/ImageWidget.vue.d.ts +16 -0
  26. package/dist/components/widgets/QrCodeWidget.vue.d.ts +18 -0
  27. package/dist/components/widgets/SpacerWidget.vue.d.ts +16 -0
  28. package/dist/components/widgets/TextWidget.vue.d.ts +20 -0
  29. package/dist/components/widgets/widgetConfig.d.ts +18 -0
  30. package/dist/editors/CheckboxWidgetEditor.vue.d.ts +233 -0
  31. package/dist/editors/CommonWidgetEditor.vue.d.ts +229 -0
  32. package/dist/editors/DividerWidgetEditor.vue.d.ts +234 -0
  33. package/dist/editors/ImageWidgetEditor.vue.d.ts +232 -0
  34. package/dist/editors/QrCodeWidgetEditor.vue.d.ts +236 -0
  35. package/dist/editors/SpacerWidgetEditor.vue.d.ts +228 -0
  36. package/dist/editors/TextWidgetEditor.vue.d.ts +253 -0
  37. package/dist/favicon.ico +0 -0
  38. package/dist/helpers/clone.d.ts +1 -0
  39. package/dist/helpers/removeImgDialog.d.ts +1 -0
  40. package/dist/main.d.ts +1 -0
  41. package/dist/restaurant-aaf7d812.js +40489 -0
  42. package/dist/router/index.d.ts +2 -0
  43. package/dist/router/shared.d.ts +2 -0
  44. package/dist/shared/FormatColorButton.vue.d.ts +22 -0
  45. package/dist/shared/ImageUpload.vue.d.ts +21 -0
  46. package/dist/shared/ReceiptSettingBase.vue.d.ts +55 -0
  47. package/dist/shared/SaveDialogPopUp.vue.d.ts +217 -0
  48. package/dist/shared/TemplateHeader.vue.d.ts +217 -0
  49. package/dist/shared/base64ToImgSrc.d.ts +1 -0
  50. package/dist/shared/resetDialog.d.ts +1 -0
  51. package/dist/stores/restaurant.d.ts +454 -0
  52. package/dist/style.css +1 -0
  53. package/dist/styles/colors.d.ts +7 -0
  54. package/dist/tsconfig.app.tsbuildinfo +1 -0
  55. package/dist/views/AdvanceModeView.vue.d.ts +3 -0
  56. package/dist/views/NormalModeView.vue.d.ts +3 -0
  57. package/package.json +61 -0
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @feedmepos/mf-kitchen
2
+
3
+ #
4
+
5
+ mf-kitchen
6
+
7
+ This project was scaffolded using [create-mf-app] It includes Vue 3, Vite, TypeScript, Vue Router,
8
+ Pinia, Feedme UI Library, and Tailwind CSS ## Project Setup To get started
9
+ with the project, run the following commands: `sh
10
+ pnpm
11
+ install ` ### Compile and Hot-Reload for Development `sh
12
+ pnpm
13
+ dev ` ### Type-Check, Compile and Minify for
14
+ Production `sh
15
+ pnpm
16
+ build ` ### Lint with [ESLint](https://eslintorg/)
17
+
18
+ ````sh
19
+ pnpm
20
+ lint ```
21
+
22
+
23
+ ````