@seniorsistemas/yms-integration 1.19.1 → 1.21.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 (77) hide show
  1. package/bundles/seniorsistemas-yms-integration.umd.js +906 -236
  2. package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
  4. package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
  5. package/esm2015/index.js +4 -1
  6. package/esm2015/seniorsistemas-yms-integration.js +49 -38
  7. package/esm2015/src/erp-senior/components/nota-form/nota-form.component.js +3 -3
  8. package/esm2015/src/erp-senior/components/nota-form/nota-form.module.js +4 -2
  9. package/esm2015/src/erp-senior/erp-senior.module.js +3 -1
  10. package/esm2015/src/erp-senior/recebimento/form/recebimento-form.component.js +3 -3
  11. package/esm2015/src/erp-senior/recebimento-ordem-compra/form/recebimento-ordem-compra-form.component.js +3 -3
  12. package/esm2015/src/utils/directives/directives.module.js +15 -0
  13. package/esm2015/src/utils/directives/trim.directive.js +27 -0
  14. package/esm2015/src/wms/components/document-grid/document-grid.component.js +166 -0
  15. package/esm2015/src/wms/components/document-grid/document-grid.module.js +35 -0
  16. package/esm2015/src/wms/components/document-grid/insert-key/insert-key.component.js +82 -0
  17. package/esm2015/src/wms/components/document-grid/insert-key/insert-key.module.js +26 -0
  18. package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +125 -0
  19. package/esm2015/src/wms/components/document-grid/register-document/register-document.module.js +32 -0
  20. package/esm2015/src/wms/entities/agenda/agenda.service.js +22 -0
  21. package/esm2015/src/wms/entities/document/document-dto.js +1 -0
  22. package/esm2015/src/wms/entities/document/document.js +39 -0
  23. package/esm2015/src/wms/entities/document/document.service.js +21 -0
  24. package/esm2015/src/wms/entities/document/find-documents-input.js +1 -0
  25. package/esm2015/src/wms/entities/entity-service.js +4 -0
  26. package/esm2015/src/wms/entities/wms-system/wms-system.js +9 -0
  27. package/esm2015/src/wms/form/form-wms.component.js +60 -0
  28. package/esm2015/src/wms/wms.module.js +68 -0
  29. package/esm5/index.js +4 -1
  30. package/esm5/seniorsistemas-yms-integration.js +49 -38
  31. package/esm5/src/erp-senior/components/nota-form/nota-form.component.js +3 -3
  32. package/esm5/src/erp-senior/components/nota-form/nota-form.module.js +4 -2
  33. package/esm5/src/erp-senior/erp-senior.module.js +3 -1
  34. package/esm5/src/erp-senior/recebimento/form/recebimento-form.component.js +3 -3
  35. package/esm5/src/erp-senior/recebimento-ordem-compra/form/recebimento-ordem-compra-form.component.js +3 -3
  36. package/esm5/src/utils/directives/directives.module.js +18 -0
  37. package/esm5/src/utils/directives/trim.directive.js +28 -0
  38. package/esm5/src/wms/components/document-grid/document-grid.component.js +171 -0
  39. package/esm5/src/wms/components/document-grid/document-grid.module.js +38 -0
  40. package/esm5/src/wms/components/document-grid/insert-key/insert-key.component.js +84 -0
  41. package/esm5/src/wms/components/document-grid/insert-key/insert-key.module.js +29 -0
  42. package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +127 -0
  43. package/esm5/src/wms/components/document-grid/register-document/register-document.module.js +35 -0
  44. package/esm5/src/wms/entities/agenda/agenda.service.js +25 -0
  45. package/esm5/src/wms/entities/document/document-dto.js +1 -0
  46. package/esm5/src/wms/entities/document/document.js +44 -0
  47. package/esm5/src/wms/entities/document/document.service.js +24 -0
  48. package/esm5/src/wms/entities/document/find-documents-input.js +1 -0
  49. package/esm5/src/wms/entities/entity-service.js +11 -0
  50. package/esm5/src/wms/entities/wms-system/wms-system.js +9 -0
  51. package/esm5/src/wms/form/form-wms.component.js +63 -0
  52. package/esm5/src/wms/wms.module.js +69 -0
  53. package/fesm2015/seniorsistemas-yms-integration.js +808 -192
  54. package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
  55. package/fesm5/seniorsistemas-yms-integration.js +845 -189
  56. package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
  57. package/index.d.ts +2 -0
  58. package/package.json +1 -1
  59. package/seniorsistemas-yms-integration.d.ts +48 -37
  60. package/seniorsistemas-yms-integration.metadata.json +1 -1
  61. package/src/utils/directives/directives.module.d.ts +2 -0
  62. package/src/utils/directives/trim.directive.d.ts +6 -0
  63. package/src/wms/components/document-grid/document-grid.component.d.ts +41 -0
  64. package/src/wms/components/document-grid/document-grid.module.d.ts +2 -0
  65. package/src/wms/components/document-grid/insert-key/insert-key.component.d.ts +22 -0
  66. package/src/wms/components/document-grid/insert-key/insert-key.module.d.ts +2 -0
  67. package/src/wms/components/document-grid/register-document/register-document.component.d.ts +31 -0
  68. package/src/wms/components/document-grid/register-document/register-document.module.d.ts +2 -0
  69. package/src/wms/entities/agenda/agenda.service.d.ts +9 -0
  70. package/src/wms/entities/document/document-dto.d.ts +16 -0
  71. package/src/wms/entities/document/document.d.ts +20 -0
  72. package/src/wms/entities/document/document.service.d.ts +11 -0
  73. package/src/wms/entities/document/find-documents-input.d.ts +7 -0
  74. package/src/wms/entities/entity-service.d.ts +3 -0
  75. package/src/wms/entities/wms-system/wms-system.d.ts +7 -0
  76. package/src/wms/form/form-wms.component.d.ts +18 -0
  77. package/src/wms/wms.module.d.ts +4 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.