@colijnit/sharedcomponents 1.0.70 → 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 +205 -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/businessobject/co-document-right.bo.js +1 -1
  8. package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +8 -7
  9. package/esm2015/lib/components/activity-overview-component/components/base-activity-overview.component.js +15 -21
  10. package/esm2015/lib/components/image-display/image-display.component.js +7 -7
  11. package/esm2015/lib/components/modify-task-form/components/base-activity-summary.component.js +8 -10
  12. package/esm2015/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.component.js +2 -2
  13. package/esm2015/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.js +5 -5
  14. package/esm2015/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.component.js +2 -2
  15. package/esm2015/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.js +7 -4
  16. package/esm2015/lib/components/modify-task-form/components/task-details/task-details.component.js +7 -4
  17. package/esm2015/lib/components/modify-task-form/modify-task-form.component.js +39 -13
  18. package/esm2015/lib/components/modify-task-form/modify-task-form.module.js +10 -3
  19. package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +42 -57
  20. package/esm2015/lib/components/open-activity-list/components/base-open-activity-list.component.js +5 -3
  21. package/esm2015/lib/components/simple-tags/simple-tags.component.js +5 -147
  22. package/esm2015/lib/components/simple-tags/simple-tags.module.js +4 -2
  23. package/esm2015/lib/components/simple-tags-form/simple-tags-form.component.js +196 -0
  24. package/esm2015/lib/components/simple-tags-form/simple-tags-form.module.js +26 -0
  25. package/esm2015/lib/components/task-modifyer/task-modifier.component.js +9 -9
  26. package/esm2015/lib/components/workflow-info-tiles/components/workflow-info-tile.component.js +45 -0
  27. package/esm2015/lib/components/workflow-info-tiles/components/workflow-info-tile.module.js +22 -0
  28. package/esm2015/lib/components/workflow-info-tiles/workflow-info-tiles.component.js +55 -0
  29. package/esm2015/lib/components/workflow-info-tiles/workflow-info-tiles.module.js +22 -0
  30. package/esm2015/lib/interface/operation-callback-simple-function.js +1 -1
  31. package/esm2015/lib/service/shared-connector.service.js +93 -1
  32. package/esm2015/lib/service/shared.service.js +44 -1
  33. package/esm2015/public-api.js +5 -1
  34. package/fesm2015/colijnit-sharedcomponents.js +571 -224
  35. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  36. package/index.html +2 -2
  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 +6 -5
  71. package/public-api.d.ts +4 -0
  72. package/styles.b92683eab3a233f3fb51.css +1 -0
  73. package/main.36b466467ac98ce720f9.js +0 -1
  74. package/styles.6375d1d30814ecba5d0c.css +0 -1

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.