@colijnit/sharedcomponents 254.1.3 → 254.1.5

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 (37) hide show
  1. package/bundles/colijnit-sharedcomponents.umd.js +909 -125
  2. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  3. package/colijnit-sharedcomponents.d.ts +45 -45
  4. package/colijnit-sharedcomponents.metadata.json +1 -1
  5. package/esm2015/colijnit-sharedcomponents.js +46 -46
  6. package/esm2015/lib/components/role-email-selector/role-email-selector.component.js +112 -0
  7. package/esm2015/lib/components/role-email-selector/role-email-selector.module.js +29 -0
  8. package/esm2015/lib/components/task-creator/task-creator.component.js +330 -0
  9. package/esm2015/lib/components/task-creator/task-creator.module.js +37 -0
  10. package/esm2015/lib/enum/icon.enum.js +2 -1
  11. package/esm2015/lib/model/icon-svg.js +2 -1
  12. package/esm2015/lib/service/shared-connector.service.js +117 -3
  13. package/esm2015/lib/service/shared.service.js +69 -4
  14. package/esm2015/public-api.js +5 -1
  15. package/fesm2015/colijnit-sharedcomponents.js +662 -9
  16. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  17. package/index.html +2 -2
  18. package/lib/components/role-email-selector/role-email-selector.component.d.ts +29 -0
  19. package/lib/components/role-email-selector/role-email-selector.module.d.ts +2 -0
  20. package/lib/components/role-email-selector/style/_layout.scss +40 -0
  21. package/lib/components/role-email-selector/style/_material-definition.scss +15 -0
  22. package/lib/components/role-email-selector/style/_theme.scss +4 -0
  23. package/lib/components/role-email-selector/style/material.scss +4 -0
  24. package/lib/components/task-creator/style/_layout.scss +18 -0
  25. package/lib/components/task-creator/style/_material-definition.scss +0 -0
  26. package/lib/components/task-creator/style/_theme.scss +4 -0
  27. package/lib/components/task-creator/style/material.scss +4 -0
  28. package/lib/components/task-creator/task-creator.component.d.ts +68 -0
  29. package/lib/components/task-creator/task-creator.module.d.ts +2 -0
  30. package/lib/enum/icon.enum.d.ts +1 -0
  31. package/lib/service/shared-connector.service.d.ts +16 -1
  32. package/lib/service/shared.service.d.ts +17 -1
  33. package/main.9761831eb5f539b50eb2.js +1 -0
  34. package/package.json +3 -3
  35. package/public-api.d.ts +4 -0
  36. package/{styles.051675db76590b099897.css → styles.ccda7309f28016f3304b.css} +1 -1
  37. package/main.b62bfdc80736ecda90e4.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "254.1.3",
3
+ "version": "254.1.5",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "chart.js": "4.3.0",
@@ -10,8 +10,8 @@
10
10
  "@angular/common": ">=12.2.0",
11
11
  "@angular/core": ">=12.2.0",
12
12
  "@colijnit/articleapi": ">=254.1.1",
13
- "@colijnit/mainapi": ">=254.1.1",
14
- "@colijnit/corecomponents_v12": ">=254.1.1",
13
+ "@colijnit/mainapi": ">=254.1.4",
14
+ "@colijnit/corecomponents_v12": ">=254.1.5",
15
15
  "@colijnit/ioneconnector": ">=254.1.1",
16
16
  "@colijnit/sharedapi": ">=1.0.20",
17
17
  "@colijnit/relationapi": ">=1.0.14",
package/public-api.d.ts CHANGED
@@ -27,6 +27,10 @@ export * from './lib/components/open-activity-list/component-activity-list.compo
27
27
  export * from './lib/components/open-activity-list/component-activity-list.module';
28
28
  export * from './lib/components/workflow-info-tiles/workflow-info-tiles.component';
29
29
  export * from './lib/components/workflow-info-tiles/workflow-info-tiles.module';
30
+ export * from './lib/components/task-creator/task-creator.component';
31
+ export * from './lib/components/task-creator/task-creator.module';
32
+ export * from './lib/components/role-email-selector/role-email-selector.component';
33
+ export * from './lib/components/role-email-selector/role-email-selector.module';
30
34
  export * from './lib/service/shared.service';
31
35
  export * from './lib/enum/calendar-view.enum';
32
36
  export * from './lib/model/agenda-event-per-day.model';