@kengic/vue 0.26.5-beta.1 → 0.26.5-beta.11

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 (30) hide show
  1. package/dist/fit-screen-outline.7341560f.mjs +8 -0
  2. package/dist/index.css +1 -1
  3. package/dist/kengic-vue.js +22467 -14452
  4. package/dist/one-to-one-outlined.4f97e62a.mjs +8 -0
  5. package/dist/reload-outlined.abae07b1.mjs +8 -0
  6. package/dist/src/apis/WMS/Controllers/DescriptionController/List.d.ts +3 -1
  7. package/dist/src/apis/WMS/Controllers/WorkstationController/List.d.ts +25 -0
  8. package/dist/src/apis/WMS/Controllers/WorkstationController/index.d.ts +1 -0
  9. package/dist/src/apis/WMS/Controllers/index.d.ts +1 -0
  10. package/dist/src/apis/WMS/models.d.ts +72 -0
  11. package/dist/src/components/KgAppSelect/index.store.d.ts +2 -2
  12. package/dist/src/components/KgButton/index.store.d.ts +2 -2
  13. package/dist/src/components/KgCanvas/KgCanvas.ContextMenu.d.ts +104 -0
  14. package/dist/src/components/KgCanvas/KgCanvas.d.ts +122 -0
  15. package/dist/src/components/KgCanvas/KgCanvas.service.d.ts +35 -0
  16. package/dist/src/components/KgCanvas/index.d.ts +4 -0
  17. package/dist/src/components/KgCanvas/index.hooks.d.ts +49 -0
  18. package/dist/src/components/KgCanvas/index.store.d.ts +201 -0
  19. package/dist/src/components/KgForm/index.store.d.ts +2 -2
  20. package/dist/src/components/KgSearch/index.store.d.ts +2 -2
  21. package/dist/src/components/KgStation/index.hooks.d.ts +2 -1
  22. package/dist/src/components/KgStation/index.store.d.ts +1 -14
  23. package/dist/src/components/KgSubmit/index.store.d.ts +2 -2
  24. package/dist/src/components/KgTable/index.store.d.ts +2 -2
  25. package/dist/src/components/KgVar/index.store.d.ts +2 -2
  26. package/dist/src/components/KgWarehouse/index.store.d.ts +2 -2
  27. package/dist/src/components/index.d.ts +2 -0
  28. package/dist/src/config/index.store.d.ts +5 -5
  29. package/dist/src/services/http-client.d.ts +54 -19
  30. package/package.json +5 -7
@@ -0,0 +1,8 @@
1
+ const h = {
2
+ width: 24,
3
+ height: 24,
4
+ body: '<path fill="currentColor" d="M20 9V6h-3V4h3q.825 0 1.413.588T22 6v3h-2ZM2 9V6q0-.825.588-1.413T4 4h3v2H4v3H2Zm15 11v-2h3v-3h2v3q0 .825-.588 1.413T20 20h-3ZM4 20q-.825 0-1.413-.588T2 18v-3h2v3h3v2H4Zm2-4V8h12v8H6Zm2-2h8v-4H8v4Zm0 0v-4v4Z"/>'
5
+ };
6
+ export {
7
+ h as default
8
+ };