@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.
- package/bundles/colijnit-sharedcomponents.umd.js +909 -125
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +45 -45
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +46 -46
- package/esm2015/lib/components/role-email-selector/role-email-selector.component.js +112 -0
- package/esm2015/lib/components/role-email-selector/role-email-selector.module.js +29 -0
- package/esm2015/lib/components/task-creator/task-creator.component.js +330 -0
- package/esm2015/lib/components/task-creator/task-creator.module.js +37 -0
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/service/shared-connector.service.js +117 -3
- package/esm2015/lib/service/shared.service.js +69 -4
- package/esm2015/public-api.js +5 -1
- package/fesm2015/colijnit-sharedcomponents.js +662 -9
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +2 -2
- package/lib/components/role-email-selector/role-email-selector.component.d.ts +29 -0
- package/lib/components/role-email-selector/role-email-selector.module.d.ts +2 -0
- package/lib/components/role-email-selector/style/_layout.scss +40 -0
- package/lib/components/role-email-selector/style/_material-definition.scss +15 -0
- package/lib/components/role-email-selector/style/_theme.scss +4 -0
- package/lib/components/role-email-selector/style/material.scss +4 -0
- package/lib/components/task-creator/style/_layout.scss +18 -0
- package/lib/components/task-creator/style/_material-definition.scss +0 -0
- package/lib/components/task-creator/style/_theme.scss +4 -0
- package/lib/components/task-creator/style/material.scss +4 -0
- package/lib/components/task-creator/task-creator.component.d.ts +68 -0
- package/lib/components/task-creator/task-creator.module.d.ts +2 -0
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/service/shared-connector.service.d.ts +16 -1
- package/lib/service/shared.service.d.ts +17 -1
- package/main.9761831eb5f539b50eb2.js +1 -0
- package/package.json +3 -3
- package/public-api.d.ts +4 -0
- package/{styles.051675db76590b099897.css → styles.ccda7309f28016f3304b.css} +1 -1
- 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
|
+
"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.
|
|
14
|
-
"@colijnit/corecomponents_v12": ">=254.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';
|