@colijnit/sharedcomponents 1.0.68 → 1.0.70
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/3rdpartylicenses.txt +1203 -0
- package/bundles/colijnit-sharedcomponents.umd.js +3335 -7
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +36 -0
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +37 -1
- package/esm2015/lib/businessobject/co-document-right.bo.js +1 -1
- package/esm2015/lib/components/activity-list-header/activity-list-header.component.js +67 -0
- package/esm2015/lib/components/activity-list-header/activity-list-header.module.js +28 -0
- package/esm2015/lib/components/activity-list-header/components/period-filter/period-filter-popup.component.js +55 -0
- package/esm2015/lib/components/activity-list-header/components/period-filter/period-filter.component.js +103 -0
- package/esm2015/lib/components/activity-list-header/components/period-filter/period-filter.module.js +34 -0
- package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +129 -0
- package/esm2015/lib/components/activity-overview-component/component-activity-overview.module.js +26 -0
- package/esm2015/lib/components/activity-overview-component/components/base-activity-overview.component.js +284 -0
- package/esm2015/lib/components/date-planning/component/agenda/agenda-header.component.js +32 -3
- package/esm2015/lib/components/image-display/image-display.component.js +7 -7
- package/esm2015/lib/components/modify-task-form/components/activity-summary-block/activity-summary-block.component.js +100 -0
- package/esm2015/lib/components/modify-task-form/components/activity-summary-block/activity-summary-block.module.js +25 -0
- package/esm2015/lib/components/modify-task-form/components/base-activity-summary.component.js +134 -0
- package/esm2015/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.component.js +118 -0
- package/esm2015/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.module.js +27 -0
- package/esm2015/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.js +88 -0
- package/esm2015/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.module.js +24 -0
- package/esm2015/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.component.js +77 -0
- package/esm2015/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.module.js +24 -0
- package/esm2015/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.js +71 -0
- package/esm2015/lib/components/modify-task-form/components/status-summary-block/status-summary-block.module.js +25 -0
- package/esm2015/lib/components/modify-task-form/components/task-details/task-details.component.js +102 -0
- package/esm2015/lib/components/modify-task-form/components/task-details/task-details.module.js +25 -0
- package/esm2015/lib/components/modify-task-form/modify-task-form.component.js +258 -0
- package/esm2015/lib/components/modify-task-form/modify-task-form.module.js +33 -0
- package/esm2015/lib/components/open-activity-list/component-activity-list.component.js +293 -0
- package/esm2015/lib/components/open-activity-list/component-activity-list.module.js +30 -0
- package/esm2015/lib/components/open-activity-list/components/base-open-activity-list.component.js +264 -0
- package/esm2015/lib/components/open-activity-list/components/personal-activity-overview/personal-activity-overview.component.js +41 -0
- package/esm2015/lib/components/open-activity-list/components/personal-activity-overview/personal-activity-overview.module..js +19 -0
- package/esm2015/lib/components/task-modifyer/task-modifier.component.js +270 -0
- package/esm2015/lib/components/task-modifyer/task-modifyer.module..js +31 -0
- package/esm2015/lib/components/workflow-notification-toggle/workflow-notification-toggle-popup.js +53 -0
- package/esm2015/lib/components/workflow-notification-toggle/workflow-notification-toggle.component.js +81 -0
- package/esm2015/lib/components/workflow-notification-toggle/workflow-notification-toggle.module.js +34 -0
- package/esm2015/lib/directives/absolute-overlay-template.directive.js +29 -0
- package/esm2015/lib/directives/align-with.directive.js +174 -0
- package/esm2015/lib/directives/click-outside.directive.js +25 -0
- package/esm2015/lib/directives/directives.module.js +22 -0
- package/esm2015/lib/enum/activity-cfg-name.enum.js +29 -0
- package/esm2015/lib/enum/app-button-type.enum.js +11 -0
- package/esm2015/lib/enum/calendar-view.enum.js +2 -1
- package/esm2015/lib/enum/icon.enum.js +13 -1
- package/esm2015/lib/interface/activities-task-config-names.js +2 -0
- package/esm2015/lib/interface/operation-callback-activity.js +5 -0
- package/esm2015/lib/interface/operation-callback-function-with-validation.js +5 -0
- package/esm2015/lib/interface/operation-callback-simple-function.js +1 -1
- package/esm2015/lib/model/icon-svg.js +15 -3
- package/esm2015/lib/service/app-absolute-overlay-outlet.service.js +20 -0
- package/esm2015/lib/service/shared-connector.service.js +121 -1
- package/esm2015/lib/service/shared.service.js +50 -1
- package/esm2015/lib/utils/browser-utils.js +100 -0
- package/esm2015/lib/utils/calendar.utils.js +34 -1
- package/esm2015/lib/utils/event-utils.js +59 -0
- package/esm2015/lib/utils/string-utils.js +5 -1
- package/esm2015/public-api.js +3 -1
- package/favicon.ico +0 -0
- package/fesm2015/colijnit-sharedcomponents.js +3486 -13
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +12 -0
- package/lib/components/activity-list-header/activity-list-header.component.d.ts +25 -0
- package/lib/components/activity-list-header/activity-list-header.module.d.ts +2 -0
- package/lib/components/activity-list-header/components/period-filter/period-filter-popup.component.d.ts +11 -0
- package/lib/components/activity-list-header/components/period-filter/period-filter.component.d.ts +26 -0
- package/lib/components/activity-list-header/components/period-filter/period-filter.module.d.ts +2 -0
- package/lib/components/activity-list-header/components/period-filter/style/_layout.scss +62 -0
- package/lib/components/activity-list-header/components/period-filter/style/_material-definition.scss +1 -0
- package/lib/components/activity-list-header/components/period-filter/style/_theme.scss +5 -0
- package/lib/components/activity-list-header/components/period-filter/style/material.scss +4 -0
- package/lib/components/activity-list-header/style/_layout.scss +84 -0
- package/lib/components/activity-list-header/style/_material-definition.scss +1 -0
- package/lib/components/activity-list-header/style/_theme.scss +5 -0
- package/lib/components/activity-list-header/style/material.scss +4 -0
- package/lib/components/activity-overview-component/component-activity-overview.component.d.ts +13 -0
- package/lib/components/activity-overview-component/component-activity-overview.module.d.ts +2 -0
- package/lib/components/activity-overview-component/components/base-activity-overview.component.d.ts +84 -0
- package/lib/components/activity-overview-component/style/_layout.scss +107 -0
- package/lib/components/activity-overview-component/style/_material-definition.scss +1 -0
- package/lib/components/activity-overview-component/style/_theme.scss +5 -0
- package/lib/components/activity-overview-component/style/material.scss +4 -0
- package/lib/components/date-planning/component/agenda/style/_layout.scss +68 -55
- package/lib/components/date-planning/component/agenda/style/_material-definition.scss +1 -1
- package/lib/components/date-planning/style/_layout.scss +1 -0
- package/lib/components/modify-task-form/components/activity-summary-block/activity-summary-block.component.d.ts +31 -0
- package/lib/components/modify-task-form/components/activity-summary-block/activity-summary-block.module.d.ts +2 -0
- package/lib/components/modify-task-form/components/activity-summary-block/style/_layout.scss +139 -0
- package/lib/components/modify-task-form/components/activity-summary-block/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/components/activity-summary-block/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/components/activity-summary-block/style/material.scss +4 -0
- package/lib/components/modify-task-form/components/base-activity-summary.component.d.ts +53 -0
- package/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.component.d.ts +28 -0
- package/lib/components/modify-task-form/components/creation-summary-block/creation-summary-block.module.d.ts +2 -0
- package/lib/components/modify-task-form/components/creation-summary-block/style/_layout.scss +5 -0
- package/lib/components/modify-task-form/components/creation-summary-block/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/components/creation-summary-block/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/components/creation-summary-block/style/material.scss +4 -0
- package/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.component.d.ts +24 -0
- package/lib/components/modify-task-form/components/executive-summary-block/executive-summary-block.module.d.ts +2 -0
- package/lib/components/modify-task-form/components/executive-summary-block/style/_layout.scss +5 -0
- package/lib/components/modify-task-form/components/executive-summary-block/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/components/executive-summary-block/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/components/executive-summary-block/style/material.scss +4 -0
- package/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.component.d.ts +23 -0
- package/lib/components/modify-task-form/components/notification-summary-block/notification-summary-block.module.d.ts +2 -0
- package/lib/components/modify-task-form/components/notification-summary-block/style/_layout.scss +161 -0
- package/lib/components/modify-task-form/components/notification-summary-block/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/components/notification-summary-block/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/components/notification-summary-block/style/material.scss +4 -0
- package/lib/components/modify-task-form/components/status-summary-block/status-summary-block.component.d.ts +15 -0
- package/lib/components/modify-task-form/components/status-summary-block/status-summary-block.module.d.ts +2 -0
- package/lib/components/modify-task-form/components/status-summary-block/style/_layout.scss +18 -0
- package/lib/components/modify-task-form/components/status-summary-block/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/components/status-summary-block/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/components/status-summary-block/style/material.scss +4 -0
- package/lib/components/modify-task-form/components/task-details/style/_layout.scss +142 -0
- package/lib/components/modify-task-form/components/task-details/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/components/task-details/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/components/task-details/style/material.scss +4 -0
- package/lib/components/modify-task-form/components/task-details/task-details.component.d.ts +21 -0
- package/lib/components/modify-task-form/components/task-details/task-details.module.d.ts +2 -0
- package/lib/components/modify-task-form/modify-task-form.component.d.ts +49 -0
- package/lib/components/modify-task-form/modify-task-form.module.d.ts +2 -0
- package/lib/components/modify-task-form/style/_layout.scss +135 -0
- package/lib/components/modify-task-form/style/_material-definition.scss +0 -0
- package/lib/components/modify-task-form/style/_theme.scss +5 -0
- package/lib/components/modify-task-form/style/material.scss +4 -0
- package/lib/components/open-activity-list/component-activity-list.component.d.ts +69 -0
- package/lib/components/open-activity-list/component-activity-list.module.d.ts +2 -0
- package/lib/components/open-activity-list/components/base-open-activity-list.component.d.ts +46 -0
- package/lib/components/open-activity-list/components/personal-activity-overview/personal-activity-overview.component.d.ts +4 -0
- package/lib/components/open-activity-list/components/personal-activity-overview/personal-activity-overview.module..d.ts +2 -0
- package/lib/components/open-activity-list/components/personal-activity-overview/style/_layout.scss +105 -0
- package/lib/components/open-activity-list/components/personal-activity-overview/style/_material-definition.scss +0 -0
- package/lib/components/open-activity-list/components/personal-activity-overview/style/_theme.scss +4 -0
- package/lib/components/open-activity-list/components/personal-activity-overview/style/material.scss +4 -0
- package/lib/components/open-activity-list/style/_layout.scss +26 -0
- package/lib/components/open-activity-list/style/_material-definition.scss +0 -0
- package/lib/components/open-activity-list/style/_theme.scss +4 -0
- package/lib/components/open-activity-list/style/material.scss +4 -0
- package/lib/components/task-modifyer/style/_layout.scss +5 -0
- package/lib/components/task-modifyer/style/_material-definition.scss +0 -0
- package/lib/components/task-modifyer/style/_theme.scss +4 -0
- package/lib/components/task-modifyer/style/material.scss +4 -0
- package/lib/components/task-modifyer/task-modifier.component.d.ts +67 -0
- package/lib/components/task-modifyer/task-modifyer.module..d.ts +2 -0
- package/lib/components/workflow-notification-toggle/style/_layout.scss +59 -0
- package/lib/components/workflow-notification-toggle/style/_material-definition.scss +0 -0
- package/lib/components/workflow-notification-toggle/style/_theme.scss +4 -0
- package/lib/components/workflow-notification-toggle/style/material.scss +4 -0
- package/lib/components/workflow-notification-toggle/workflow-notification-toggle-popup.d.ts +15 -0
- package/lib/components/workflow-notification-toggle/workflow-notification-toggle.component.d.ts +28 -0
- package/lib/components/workflow-notification-toggle/workflow-notification-toggle.module.d.ts +2 -0
- package/lib/directives/absolute-overlay-template.directive.d.ts +9 -0
- package/lib/directives/align-with.directive.d.ts +35 -0
- package/lib/directives/click-outside.directive.d.ts +7 -0
- package/lib/directives/directives.module.d.ts +2 -0
- package/lib/enum/activity-cfg-name.enum.d.ts +27 -0
- package/lib/enum/app-button-type.enum.d.ts +9 -0
- package/lib/enum/calendar-view.enum.d.ts +1 -0
- package/lib/enum/icon.enum.d.ts +12 -0
- package/lib/interface/activities-task-config-names.d.ts +12 -0
- package/lib/interface/operation-callback-activity.d.ts +5 -0
- package/lib/interface/operation-callback-function-with-validation.d.ts +5 -0
- package/lib/service/app-absolute-overlay-outlet.service.d.ts +9 -0
- package/lib/service/shared-connector.service.d.ts +18 -0
- package/lib/service/shared.service.d.ts +16 -0
- package/lib/utils/browser-utils.d.ts +15 -0
- package/lib/utils/calendar.utils.d.ts +1 -0
- package/lib/utils/event-utils.d.ts +12 -0
- package/lib/utils/string-utils.d.ts +1 -0
- package/main.36b466467ac98ce720f9.js +1 -0
- package/package.json +2 -1
- package/polyfills.907fe9d1887c5de17993.js +1 -0
- package/public-api.d.ts +2 -0
- package/runtime.8aac21847ed3d3829cca.js +1 -0
- package/styles.6375d1d30814ecba5d0c.css +1 -0
|
@@ -23,11 +23,22 @@ import { ArticleExtended } from "@colijnit/articleapi/build/model/article-extend
|
|
|
23
23
|
import { ArticleExtendedRequest } from "@colijnit/articleapi/build/model/article-extended-request";
|
|
24
24
|
import { ArticleFlat } from "@colijnit/articleapi/build/model/article-flat.bo";
|
|
25
25
|
import { ObjectConfiguration } from "@colijnit/ioneconnector/build/model/object-configuration";
|
|
26
|
+
import { RelationApi } from "@colijnit/relationapi";
|
|
27
|
+
import { RelationListObject } from "@colijnit/relationapi/build/model/relation-list-object.bo";
|
|
28
|
+
import { RelationRequest } from "@colijnit/relationapi/build/model/relation-request";
|
|
29
|
+
import { TaskCategory } from "@colijnit/mainapi/build/model/task-category.bo";
|
|
30
|
+
import { TableName } from "@colijnit/mainapi/build/enum/table-name.enum";
|
|
31
|
+
import { WorkflowProcess } from "@colijnit/mainapi/build/model/workflow-process";
|
|
32
|
+
import { DomainName } from "@colijnit/mainapi/build/enum/domain-name.enum";
|
|
33
|
+
import { CoDomainValue } from "@colijnit/mainapi/build/model/co-domain-value.bo";
|
|
34
|
+
import { RoleEmailaddress } from "@colijnit/mainapi/build/model/role-email-address";
|
|
35
|
+
import { Activity } from "@colijnit/mainapi/build/model/activity.bo";
|
|
26
36
|
export declare class SharedConnectorService {
|
|
27
37
|
private _optionsService;
|
|
28
38
|
articleConnector: Articles;
|
|
29
39
|
sharedConnector: Sharedapi;
|
|
30
40
|
mainConnector: MainApi;
|
|
41
|
+
relationConnector: RelationApi;
|
|
31
42
|
private _boFactory;
|
|
32
43
|
constructor(_optionsService: OptionsService);
|
|
33
44
|
connect(): Promise<void>;
|
|
@@ -51,5 +62,12 @@ export declare class SharedConnectorService {
|
|
|
51
62
|
getStockStatus(): Promise<StockStatus[]>;
|
|
52
63
|
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|
|
53
64
|
getStockPrognose(goodId: number, warehouseNumber: number): Promise<StockForecast[]>;
|
|
65
|
+
getRelationListObjects(request: RelationRequest): Promise<RelationListObject[]>;
|
|
66
|
+
getTaskCategories(): Promise<TaskCategory[]>;
|
|
67
|
+
getActiveProcessesByTableAndKey(table: TableName, key: string): Promise<WorkflowProcess[]>;
|
|
68
|
+
getDomainCollection(languageCode: string, domain: DomainName): Promise<CoDomainValue[]>;
|
|
69
|
+
getRoleEmailAddressesByWorkflowCategoryAndKey(worlflowCategory: string, key: string): Promise<RoleEmailaddress[]>;
|
|
70
|
+
getHistoricActivities(table: TableName, key: string): Promise<Activity[]>;
|
|
71
|
+
getComponentActivities(table: TableName, key: string): Promise<Activity[]>;
|
|
54
72
|
commit(): Promise<DataServiceResponseData>;
|
|
55
73
|
}
|
|
@@ -4,15 +4,31 @@ import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
|
4
4
|
import { SendMethod } from '@colijnit/mainapi/build/model/send-method.bo';
|
|
5
5
|
import { TagCategory } from "@colijnit/mainapi/build/enum/tab-category.enum";
|
|
6
6
|
import { TagTreeItem } from "@colijnit/mainapi/build/model/tag-tree-item.bo";
|
|
7
|
+
import { RelationRequest } from "@colijnit/relationapi/build/model/relation-request";
|
|
8
|
+
import { RelationListObject } from "@colijnit/relationapi/build/model/relation-list-object.bo";
|
|
9
|
+
import { TaskCategory } from "@colijnit/mainapi/build/model/task-category.bo";
|
|
10
|
+
import { TableName } from "@colijnit/mainapi/build/enum/table-name.enum";
|
|
11
|
+
import { WorkflowProcess } from "@colijnit/mainapi/build/model/workflow-process";
|
|
12
|
+
import { DomainName } from "@colijnit/mainapi/build/enum/domain-name.enum";
|
|
13
|
+
import { CoDomainValue } from "@colijnit/mainapi/build/model/co-domain-value.bo";
|
|
14
|
+
import { RoleEmailaddress } from "@colijnit/mainapi/build/model/role-email-address";
|
|
15
|
+
import { Activity } from "@colijnit/mainapi/build/model/activity.bo";
|
|
7
16
|
export declare class SharedService {
|
|
8
17
|
protected options: OptionsService;
|
|
9
18
|
protected connector: SharedConnectorService;
|
|
10
19
|
constructor(options: OptionsService, connector: SharedConnectorService);
|
|
11
20
|
init(options: any): Promise<void>;
|
|
21
|
+
connect(): Promise<void>;
|
|
12
22
|
getAllPrinters(): Promise<Printer[]>;
|
|
13
23
|
getSendMethods(): Promise<SendMethod[]>;
|
|
14
24
|
getScreenConfigTree(): Promise<any>;
|
|
15
25
|
getScreenConfigSubRubric(parentRubricId: number, configId: number, fixedKey: string): Promise<any>;
|
|
16
26
|
getTagsFullTree(category: TagCategory, includeTags?: boolean): Promise<TagTreeItem[]>;
|
|
17
27
|
getDocumentContent(docId: number, thumbnail?: boolean): Promise<string>;
|
|
28
|
+
getRelationListObjects(request: RelationRequest): Promise<RelationListObject[]>;
|
|
29
|
+
getTaskCategories(): Promise<TaskCategory[]>;
|
|
30
|
+
getActiveProcessesByTableAndKey(table: TableName, key: string): Promise<WorkflowProcess[]>;
|
|
31
|
+
getDomainCollection(languageCode: string, domainName: DomainName): Promise<CoDomainValue[]>;
|
|
32
|
+
getRoleEmailAddressesByWorkflowCategoryAndKey(workflowCategory: string, key: string): Promise<RoleEmailaddress[]>;
|
|
33
|
+
getActivities(table: TableName, key: string): Promise<Activity[]>;
|
|
18
34
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { ElementPosition } from "@colijnit/corecomponents_v12/lib/core/model/element-position";
|
|
3
|
+
export declare class BrowserUtils {
|
|
4
|
+
static ScrollToTop(nativeElement: any, milliSeconds?: number): void;
|
|
5
|
+
static DownloadFile(encodedUri: string, fileType: string): void;
|
|
6
|
+
static CopyToClipboard(data: string): void;
|
|
7
|
+
static TabFocusNextElement(): void;
|
|
8
|
+
static AreDimensionsInView(dimensions: ElementPosition, view?: ElementRef): boolean;
|
|
9
|
+
static HorizontalFitInView(dimensions: ElementPosition, view?: ElementRef): boolean;
|
|
10
|
+
static VerticalFitInView(dimensions: ElementPosition, view?: ElementRef): boolean;
|
|
11
|
+
static GetViewport(): ElementPosition;
|
|
12
|
+
static GetDimensions(view?: ElementRef): ElementPosition;
|
|
13
|
+
private static _ScrollTo;
|
|
14
|
+
private static _FindNextTabStop;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class EventUtils {
|
|
2
|
+
static get passiveSupported(): boolean;
|
|
3
|
+
static get passiveBubble(): boolean;
|
|
4
|
+
static get passiveCapture(): boolean;
|
|
5
|
+
static GetMouseEventOrTouch(originalEvent: MouseEvent | TouchEvent): MouseEvent | Touch;
|
|
6
|
+
private static _passiveSupported;
|
|
7
|
+
private static _passiveCapture;
|
|
8
|
+
private static _passiveBubble;
|
|
9
|
+
static StopEvent(event: Event): void;
|
|
10
|
+
static KillEvent(event: Event): void;
|
|
11
|
+
private static _CheckPassiveSupported;
|
|
12
|
+
}
|