tnx-shared 5.1.19 → 5.1.23

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/assets/gulpfile.js +3 -2
  2. package/bundles/tnx-shared.umd.js +324 -288
  3. package/bundles/tnx-shared.umd.js.map +1 -1
  4. package/bundles/tnx-shared.umd.min.js +1 -1
  5. package/bundles/tnx-shared.umd.min.js.map +1 -1
  6. package/components/crud/crud-list/crud-list.component.d.ts +2 -0
  7. package/components/crud/crud-list/crud-list.component.d.ts.map +1 -1
  8. package/components/statemachines/models/enums.d.ts +5 -0
  9. package/components/statemachines/models/enums.d.ts.map +1 -1
  10. package/components/tn-custom-scrollbar/tn-custom-scrollbar.component.d.ts +5 -2
  11. package/components/tn-custom-scrollbar/tn-custom-scrollbar.component.d.ts.map +1 -1
  12. package/components/workflow/cho-y-kien-form/cho-y-kien-form.component.css.shim.ngstyle.d.ts.map +1 -0
  13. package/components/workflow/cho-y-kien-form/cho-y-kien-form.component.d.ts +15 -0
  14. package/components/workflow/cho-y-kien-form/cho-y-kien-form.component.d.ts.map +1 -0
  15. package/components/workflow/cho-y-kien-form/cho-y-kien-form.component.ngfactory.d.ts.map +1 -0
  16. package/components/workflow/models/const.d.ts +3 -0
  17. package/components/workflow/models/const.d.ts.map +1 -1
  18. package/components/workflow/process-workflow-form/process-workflow-form.component.d.ts +1 -1
  19. package/components/workflow/process-workflow-form/process-workflow-form.component.d.ts.map +1 -1
  20. package/components/workflow/services/workflow-history.service.d.ts +1 -0
  21. package/components/workflow/services/workflow-history.service.d.ts.map +1 -1
  22. package/components/workflow/workflow-history/workflow-history.component.d.ts.map +1 -1
  23. package/components/workflow/workflow-history-new/workflow-history-new.component.d.ts +6 -3
  24. package/components/workflow/workflow-history-new/workflow-history-new.component.d.ts.map +1 -1
  25. package/congviec/congviec/congviec.component.d.ts +2 -2
  26. package/esm2015/classes/base/correctors.js +7 -7
  27. package/esm2015/components/crud/crud-list/crud-list.component.js +24 -3
  28. package/esm2015/components/statemachines/models/enums.js +10 -1
  29. package/esm2015/components/tn-custom-scrollbar/tn-custom-scrollbar.component.js +31 -2
  30. package/esm2015/components/workflow/cho-y-kien-form/cho-y-kien-form.component.js +60 -0
  31. package/esm2015/components/workflow/models/const.js +4 -1
  32. package/esm2015/components/workflow/process-workflow-form/process-workflow-form.component.js +9 -9
  33. package/esm2015/components/workflow/services/workflow-history.service.js +11 -5
  34. package/esm2015/components/workflow/workflow-history/workflow-history.component.js +1 -1
  35. package/esm2015/components/workflow/workflow-history-new/workflow-history-new.component.js +96 -40
  36. package/esm2015/congviec/congviec/congviec.component.js +6 -6
  37. package/esm2015/services/base.service.js +12 -5
  38. package/esm2015/services/crud.service.js +23 -1
  39. package/esm2015/tnx-shared.js +42 -42
  40. package/esm2015/tnx-shared.module.js +3 -3
  41. package/fesm2015/tnx-shared.js +278 -235
  42. package/fesm2015/tnx-shared.js.map +1 -1
  43. package/package.json +2 -2
  44. package/services/base.service.d.ts +3 -2
  45. package/services/base.service.d.ts.map +1 -1
  46. package/services/crud.service.d.ts +1 -0
  47. package/services/crud.service.d.ts.map +1 -1
  48. package/tnx-shared.d.ts +41 -41
  49. package/tnx-shared.d.ts.map +1 -1
  50. package/tnx-shared.metadata.json +1 -1
  51. package/tnx-shared.module.d.ts +2 -2
  52. package/tnx-shared.module.d.ts.map +1 -1
  53. package/congviec/congviec/congviec-view/congviec-view.component.d.ts +0 -26
  54. package/congviec/congviec/congviec-view/congviec-view.component.d.ts.map +0 -1
  55. package/congviec/congviec/congviec-view/congviec-view.component.ngfactory.d.ts.map +0 -1
  56. package/congviec/congviec/congviec-view/congviec-view.component.scss.shim.ngstyle.d.ts.map +0 -1
  57. package/esm2015/congviec/congviec/congviec-view/congviec-view.component.js +0 -181
@@ -80,7 +80,8 @@ task('generateDockerBuildConfig', async function () {
80
80
  }
81
81
 
82
82
  const replaceKey = { projectName: project, baseHref: baseHref };
83
- copyDockerBuild('nginx.conf', project, replaceKey);
83
+ copyDockerBuild('nginx.conf.template', project, replaceKey);
84
+ copyDockerBuild('docker-entrypoint.sh', project, replaceKey);
84
85
  copyDockerBuild('Dockerfile', project, replaceKey);
85
86
  copyDockerBuild('.dockerignore', project, {});
86
87
  });
@@ -687,7 +688,7 @@ function buildTsConfigPath(paths, project) {
687
688
  else {
688
689
  const pathAlias = `${prefix}${project}`;
689
690
  if (refType != 'package') {
690
- paths[`${pathAlias}/*`] = [`${prj.refPath}/src/lib/public-api`];
691
+ paths[`${pathAlias}/*`] = [`${prj.refPath}/src/lib/*/public-api`];
691
692
  }
692
693
  }
693
694
  }