@colijnit/sharedcomponents 254.1.1 → 254.1.2

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 (74) hide show
  1. package/3rdpartylicenses.txt +1408 -0
  2. package/bundles/colijnit-sharedcomponents.umd.js +609 -153
  3. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  4. package/colijnit-sharedcomponents.d.ts +2 -0
  5. package/colijnit-sharedcomponents.metadata.json +1 -1
  6. package/esm2015/colijnit-sharedcomponents.js +3 -1
  7. package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +8 -7
  8. package/esm2015/lib/components/activity-overview-component/components/base-activity-overview.component.js +15 -21
  9. package/esm2015/lib/components/modify-task-form/components/base-activity-summary.component.js +8 -10
  10. package/esm2015/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.component.js +2 -2
  11. package/esm2015/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.js +5 -5
  12. package/esm2015/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.component.js +2 -2
  13. package/esm2015/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.js +7 -4
  14. package/esm2015/lib/components/modify-task-form/components/task-details/task-details.component.js +7 -4
  15. package/esm2015/lib/components/modify-task-form/modify-task-form.component.js +39 -13
  16. package/esm2015/lib/components/modify-task-form/modify-task-form.module.js +10 -3
  17. package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +42 -57
  18. package/esm2015/lib/components/open-activity-list/components/base-open-activity-list.component.js +5 -3
  19. package/esm2015/lib/components/simple-tags/simple-tags.component.js +5 -147
  20. package/esm2015/lib/components/simple-tags/simple-tags.module.js +4 -2
  21. package/esm2015/lib/components/simple-tags-form/simple-tags-form.component.js +196 -0
  22. package/esm2015/lib/components/simple-tags-form/simple-tags-form.module.js +26 -0
  23. package/esm2015/lib/components/task-modifyer/task-modifier.component.js +9 -9
  24. package/esm2015/lib/components/workflow-info-tiles/components/workflow-info-tile.component.js +45 -0
  25. package/esm2015/lib/components/workflow-info-tiles/components/workflow-info-tile.module.js +22 -0
  26. package/esm2015/lib/components/workflow-info-tiles/workflow-info-tiles.component.js +55 -0
  27. package/esm2015/lib/components/workflow-info-tiles/workflow-info-tiles.module.js +22 -0
  28. package/esm2015/lib/enum/icon.enum.js +1 -1
  29. package/esm2015/lib/model/icon-svg.js +1 -1
  30. package/esm2015/lib/service/shared-connector.service.js +93 -1
  31. package/esm2015/lib/service/shared.service.js +44 -1
  32. package/esm2015/public-api.js +5 -1
  33. package/favicon.ico +0 -0
  34. package/fesm2015/colijnit-sharedcomponents.js +565 -218
  35. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  36. package/index.html +12 -0
  37. package/lib/components/activity-overview-component/component-activity-overview.component.d.ts +3 -1
  38. package/lib/components/activity-overview-component/components/base-activity-overview.component.d.ts +3 -8
  39. package/lib/components/modify-task-form/components/base-activity-summary.component.d.ts +3 -4
  40. package/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.d.ts +2 -2
  41. package/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.d.ts +3 -1
  42. package/lib/components/modify-task-form/components/task-details/task-details.component.d.ts +3 -1
  43. package/lib/components/modify-task-form/modify-task-form.component.d.ts +9 -4
  44. package/lib/components/modify-task-form/style/_layout.scss +4 -0
  45. package/lib/components/open-activity-list/component-activity-list.component.d.ts +9 -11
  46. package/lib/components/open-activity-list/components/base-open-activity-list.component.d.ts +2 -0
  47. package/lib/components/simple-tags/simple-tags.component.d.ts +1 -8
  48. package/lib/components/simple-tags-form/simple-tags-form.component.d.ts +29 -0
  49. package/lib/components/simple-tags-form/simple-tags-form.module.d.ts +2 -0
  50. package/lib/components/simple-tags-form/style/_layout.scss +257 -0
  51. package/lib/components/simple-tags-form/style/_material-definition.scss +39 -0
  52. package/lib/components/simple-tags-form/style/_theme.scss +4 -0
  53. package/lib/components/simple-tags-form/style/material.scss +4 -0
  54. package/lib/components/task-modifyer/task-modifier.component.d.ts +3 -5
  55. package/lib/components/workflow-info-tiles/components/style/_layout.scss +49 -0
  56. package/lib/components/workflow-info-tiles/components/style/_material-definition.scss +0 -0
  57. package/lib/components/workflow-info-tiles/components/style/_theme.scss +4 -0
  58. package/lib/components/workflow-info-tiles/components/style/material.scss +4 -0
  59. package/lib/components/workflow-info-tiles/components/workflow-info-tile.component.d.ts +15 -0
  60. package/lib/components/workflow-info-tiles/components/workflow-info-tile.module.d.ts +2 -0
  61. package/lib/components/workflow-info-tiles/style/_layout.scss +16 -0
  62. package/lib/components/workflow-info-tiles/style/_material-definition.scss +0 -0
  63. package/lib/components/workflow-info-tiles/style/_theme.scss +4 -0
  64. package/lib/components/workflow-info-tiles/style/material.scss +4 -0
  65. package/lib/components/workflow-info-tiles/workflow-info-tiles.component.d.ts +21 -0
  66. package/lib/components/workflow-info-tiles/workflow-info-tiles.module.d.ts +2 -0
  67. package/lib/service/shared-connector.service.d.ts +10 -0
  68. package/lib/service/shared.service.d.ts +12 -0
  69. package/main.894c3ac9caba556953e2.js +1 -0
  70. package/package.json +2 -1
  71. package/polyfills.907fe9d1887c5de17993.js +1 -0
  72. package/public-api.d.ts +4 -0
  73. package/runtime.8aac21847ed3d3829cca.js +1 -0
  74. package/styles.b92683eab3a233f3fb51.css +1 -0
@@ -101,6 +101,8 @@ export { TaskModifierComponent as ɵdn } from './lib/components/task-modifyer/ta
101
101
  export { TaskModifyerModule as ɵdr } from './lib/components/task-modifyer/task-modifyer.module.';
102
102
  export { TileRenderComponent as ɵda } from './lib/components/tile-renderer/tile-render.component';
103
103
  export { TileRenderModule as ɵcz } from './lib/components/tile-renderer/tile-render.module';
104
+ export { WorkflowInfoTileComponent as ɵev } from './lib/components/workflow-info-tiles/components/workflow-info-tile.component';
105
+ export { WorkflowInfoTileModule as ɵeu } from './lib/components/workflow-info-tiles/components/workflow-info-tile.module';
104
106
  export { WorkflowNotificationTogglePopupComponent as ɵep } from './lib/components/workflow-notification-toggle/workflow-notification-toggle-popup';
105
107
  export { WorkflowNotificationToggleComponent as ɵeo } from './lib/components/workflow-notification-toggle/workflow-notification-toggle.component';
106
108
  export { WorkflowNotificationToggleModule as ɵei } from './lib/components/workflow-notification-toggle/workflow-notification-toggle.module';