@colijnit/sharedcomponents 1.0.43 → 1.0.45
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 +449 -363
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +57 -53
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +58 -54
- package/esm2015/lib/components/date-planning/date-planning.component.js +1 -1
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +8 -8
- package/esm2015/lib/components/send-method-dialog/components/send-method-email/send-method-email.component.js +10 -5
- package/esm2015/lib/components/send-method-dialog/components/send-method-email/send-method-email.module.js +6 -3
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +16 -11
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.module.js +4 -2
- package/esm2015/lib/components/send-method-dialog/components/signature-button/signature-button.component.js +38 -0
- package/esm2015/lib/components/send-method-dialog/components/signature-button/signature-button.module.js +21 -0
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +4 -4
- package/esm2015/lib/components/send-method-dialog/service/send-method.service.js +21 -21
- package/esm2015/lib/components/statusbar/statusbar-popup.component.js +72 -4
- package/esm2015/lib/components/statusbar/statusbar.component.js +3 -2
- package/esm2015/lib/components/statusbar/statusbar.module.js +1 -3
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +4 -25
- package/esm2015/lib/components/stock/components/stock-prognose/stock-prognose.component.js +42 -0
- package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +5 -1
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +50 -14
- package/esm2015/lib/components/stock/stock-transfer/stock-change-amount.component.js +3 -1
- package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +3 -1
- package/esm2015/lib/components/stock/stock.component.js +2 -3
- package/esm2015/lib/components/stock/stock.module.js +31 -32
- package/esm2015/lib/components/tab-bar/tab-bar.component.js +12 -15
- package/esm2015/lib/components/tab-bar/tab-bar.module.js +2 -3
- package/esm2015/lib/enum/icon.enum.js +5 -1
- package/esm2015/lib/localization/localization.module.js +19 -0
- package/esm2015/lib/localization/localize.pipe.js +26 -0
- package/esm2015/lib/localization/localize.service.js +30 -0
- package/esm2015/lib/localization/translation.js +3 -0
- package/esm2015/lib/model/icon-svg.js +5 -1
- package/esm2015/lib/service/shared-connector.service.js +18 -2
- package/esm2015/lib/service/stock.service.js +6 -1
- package/esm2015/public-api.js +1 -3
- package/fesm2015/colijnit-sharedcomponents.js +408 -317
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/date-planning/date-planning.component.d.ts +1 -1
- package/lib/components/login/style/_layout.scss +57 -0
- package/lib/components/login/style/_material-definition.scss +23 -0
- package/lib/components/login/style/_theme.scss +7 -0
- package/lib/components/login/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/send-method-email/style/_layout.scss +8 -0
- package/lib/components/send-method-dialog/components/send-method-printer/style/_layout.scss +8 -0
- package/lib/components/send-method-dialog/components/signature-button/signature-button.component.d.ts +12 -0
- package/lib/components/send-method-dialog/components/signature-button/signature-button.module.d.ts +2 -0
- package/lib/components/send-method-dialog/components/signature-button/style/_layout.scss +28 -0
- package/lib/components/send-method-dialog/components/signature-button/style/_material-definition.scss +8 -0
- package/lib/components/send-method-dialog/components/signature-button/style/_theme.scss +4 -0
- package/lib/components/send-method-dialog/components/signature-button/style/material.scss +4 -0
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +6 -6
- package/lib/components/send-method-dialog/service/send-method.service.d.ts +10 -10
- package/lib/components/send-method-dialog/style/material.scss +1 -0
- package/lib/components/statusbar/statusbar-popup.component.d.ts +16 -2
- package/lib/components/statusbar/statusbar.component.d.ts +1 -0
- package/lib/components/statusbar/style/_layout.scss +17 -1
- package/lib/components/statusbar/style/material.scss +0 -2
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +2 -1
- package/lib/components/stock/components/stock-prognose/stock-prognose.component.d.ts +11 -0
- package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +11 -1
- package/lib/components/stock/stock.component.d.ts +1 -1
- package/lib/components/tab-bar/tab-bar.component.d.ts +3 -6
- package/lib/enum/icon.enum.d.ts +4 -0
- package/lib/localization/localization.module.d.ts +2 -0
- package/lib/localization/translation.d.ts +2 -0
- package/lib/service/shared-connector.service.d.ts +2 -0
- package/lib/service/stock.service.d.ts +2 -0
- package/lib/style/_variables.scss +4 -2
- package/lib/style/sharedcomponents-globals.scss +0 -2
- package/package.json +9 -8
- package/public-api.d.ts +0 -2
- package/esm2015/lib/components/circular-gauge/co-circular-gauge.component.js +0 -128
- package/esm2015/lib/components/circular-gauge/co-circular-gauge.module.js +0 -21
- package/esm2015/lib/components/stock/localization/localize.pipe.js +0 -26
- package/esm2015/lib/components/stock/localization/localize.service.js +0 -30
- package/lib/components/circular-gauge/co-circular-gauge.component.d.ts +0 -20
- package/lib/components/circular-gauge/co-circular-gauge.module.d.ts +0 -2
- package/lib/components/circular-gauge/style/_layout.scss +0 -25
- package/lib/components/circular-gauge/style/_material-definition.scss +0 -8
- package/lib/components/circular-gauge/style/_theme.scss +0 -7
- package/lib/components/circular-gauge/style/material.scss +0 -6
- /package/lib/{components/stock/localization → localization}/localize.pipe.d.ts +0 -0
- /package/lib/{components/stock/localization → localization}/localize.service.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
|
|
2
|
-
import { CalendarView } from
|
|
2
|
+
import { CalendarView } from '../../enum/calendar-view.enum';
|
|
3
3
|
export declare class DatePlanningComponent {
|
|
4
4
|
private _changeDetector;
|
|
5
5
|
private renderer;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
@include export-module('co-login-layout') {
|
|
2
|
+
.co-login {
|
|
3
|
+
font-family: $sc-login-font-family;
|
|
4
|
+
font-size: $sc-login-font-size;
|
|
5
|
+
|
|
6
|
+
.field-wrapper {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
row-gap: $sc-login-fields-row-gap;
|
|
10
|
+
}
|
|
11
|
+
.login-submit-button {
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
padding: 0;
|
|
14
|
+
place-content: center;
|
|
15
|
+
font-family: $sc-login-login-submit-button-font-family;
|
|
16
|
+
font-size: $sc-login-login-submit-button-font-size;
|
|
17
|
+
font-style: $sc-login-login-submit-button-font-style;
|
|
18
|
+
margin: $sc-login-login-submit-button-margin;
|
|
19
|
+
.label {
|
|
20
|
+
text-transform: $sc-login-login-submit-button-text-transform;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.login-extended-wrapper {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
margin: $sc-login-login-extended-margin;
|
|
27
|
+
.login-password-forget-text {
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
font-family: $sc-login-password-forgotten-text-font-family;
|
|
30
|
+
font-size: $sc-login-password-forgotten-text-font-size;
|
|
31
|
+
font-style: $sc-login-password-forgotten-text-font-style;
|
|
32
|
+
&.undefined-username {
|
|
33
|
+
cursor: default;
|
|
34
|
+
pointer-events: none;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
.login-no-username-text {
|
|
38
|
+
font-family: $sc-login-no-username-text-font-family;
|
|
39
|
+
font-size: $sc-login-no-username-text-font-size;
|
|
40
|
+
font-style: $sc-login-no-username-text-font-style;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
.login-recaptcha {
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
margin: $sc-login-recaptcha-margin;
|
|
48
|
+
&.hidden {
|
|
49
|
+
display: none;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
.login-validation-error-message {
|
|
53
|
+
font-size: $sc-login-login-incorrect-font-size;
|
|
54
|
+
font-style: $sc-login-login-incorrect-font-style;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
$sc-login-font-family: $sc-font-family !default;
|
|
2
|
+
$sc-login-font-size: $sc-font-size !default;
|
|
3
|
+
$sc-login-fields-row-gap: 5px !default;
|
|
4
|
+
$sc-login-login-submit-button-margin: 20px 0 0 0 !default;
|
|
5
|
+
$sc-login-login-extended-margin: 10px 0 0 0 !default;
|
|
6
|
+
|
|
7
|
+
$sc-login-login-submit-button-font-family: $sc-font-family !default;
|
|
8
|
+
$sc-login-login-submit-button-font-size: $sc-font-size !default;
|
|
9
|
+
$sc-login-login-submit-button-font-style: normal !default;
|
|
10
|
+
$sc-login-login-submit-button-text-transform: uppercase !default;
|
|
11
|
+
|
|
12
|
+
$sc-login-password-forgotten-text-font-family: $sc-font-family !default;
|
|
13
|
+
$sc-login-password-forgotten-text-font-size: $sc-font-size !default;
|
|
14
|
+
$sc-login-password-forgotten-text-font-style: normal !default;
|
|
15
|
+
$sc-login-no-username-text-font-family: $sc-font-family !default;
|
|
16
|
+
$sc-login-no-username-text-font-size: $sc-font-size-small !default;
|
|
17
|
+
$sc-login-no-username-text-font-style: italic !default;
|
|
18
|
+
|
|
19
|
+
$sc-login-recaptcha-margin: 20px 0 0 0 !default;
|
|
20
|
+
|
|
21
|
+
$sc-login-login-incorrect-font-color: red !default;
|
|
22
|
+
$sc-login-login-incorrect-font-size: $sc-font-size !default;
|
|
23
|
+
$sc-login-login-incorrect-font-style: italic !default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Icon } from "../../../../enum/icon.enum";
|
|
2
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
3
|
+
import { ReportingDocumentEmailSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request";
|
|
4
|
+
import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
|
|
5
|
+
export declare class SignatureButtonComponent {
|
|
6
|
+
iconCacheService: IconCacheService;
|
|
7
|
+
readonly icons: typeof Icon;
|
|
8
|
+
request: ReportingDocumentEmailSignDocBaseRequest | ReportingDocumentPrintSignDocBaseRequest;
|
|
9
|
+
showClass(): boolean;
|
|
10
|
+
constructor(iconCacheService: IconCacheService);
|
|
11
|
+
handleToggleSignature(): void;
|
|
12
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
@include export-module('cc-signature-button-layout') {
|
|
2
|
+
.co-signature-button {
|
|
3
|
+
.signature-button-wrapper {
|
|
4
|
+
height: $sc-co-signature-button-height;
|
|
5
|
+
width: $sc-co-signature-button-width;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
background-color: $sc-co-signature-button-background-color;
|
|
10
|
+
border-radius: $sc-co-signature-button-border-radius;
|
|
11
|
+
.co-icon {
|
|
12
|
+
width: $sc-co-signature-button-icon-width;
|
|
13
|
+
height: $sc-co-signature-button-icon-height;
|
|
14
|
+
}
|
|
15
|
+
&.selected {
|
|
16
|
+
background-color: $sc-co-signature-button-selected-background-color;
|
|
17
|
+
.co-icon {
|
|
18
|
+
svg { // for fontawesome icons
|
|
19
|
+
fill: $sc-co-signature-button-icon-selected-color;
|
|
20
|
+
}
|
|
21
|
+
& [fill] { // for own icons
|
|
22
|
+
fill: $sc-co-signature-button-icon-selected-color;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
$sc-co-signature-button-height: 50px !default;
|
|
2
|
+
$sc-co-signature-button-width: 50px !default;
|
|
3
|
+
$sc-co-signature-button-background-color: #f5f5fc !default;
|
|
4
|
+
$sc-co-signature-button-selected-background-color: #1A73E8 !default;
|
|
5
|
+
$sc-co-signature-button-border-radius: 10px !default;
|
|
6
|
+
$sc-co-signature-button-icon-height: 40px !default;
|
|
7
|
+
$sc-co-signature-button-icon-width: 40px !default;
|
|
8
|
+
$sc-co-signature-button-icon-selected-color: white !default;
|
|
@@ -4,13 +4,13 @@ import { IconCacheService } from '../../service/icon-cache.service';
|
|
|
4
4
|
import { SharedService } from '../../service/shared.service';
|
|
5
5
|
import { ReportLayoutSelectionEmail } from '@colijnit/mainapi/build/model/report-layout-selection-email.bo';
|
|
6
6
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
7
|
-
import { ReportingDocumentPrintBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-print-base-request';
|
|
8
|
-
import { ReportingDocumentEmailBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-base-request';
|
|
9
7
|
import { ReportingDocumentPdfBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-pdf-base-request';
|
|
10
8
|
import { SendMethodService } from './service/send-method.service';
|
|
11
9
|
import { SendMethod } from '../../model/send-method';
|
|
12
10
|
import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.enum';
|
|
13
11
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
12
|
+
import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
|
|
13
|
+
import { ReportingDocumentPrintSignDocBaseRequest } from "@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request";
|
|
14
14
|
export declare const sendMethodsWithIcon: SendMethod[];
|
|
15
15
|
export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
16
16
|
iconCacheService: IconCacheService;
|
|
@@ -27,8 +27,8 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
27
27
|
smsItems: ElementRef;
|
|
28
28
|
webServiceItems: ElementRef;
|
|
29
29
|
printerList: Printer[];
|
|
30
|
-
reportingDocumentPrintRequest:
|
|
31
|
-
reportingDocumentEmailRequest:
|
|
30
|
+
reportingDocumentPrintRequest: ReportingDocumentPrintSignDocBaseRequest;
|
|
31
|
+
reportingDocumentEmailRequest: ReportingDocumentEmailSignDocBaseRequest;
|
|
32
32
|
reportingDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
33
33
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
34
34
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
@@ -38,8 +38,8 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
38
38
|
visibleMethods: SendMethodType[] | string[];
|
|
39
39
|
isDocSignEnabled: boolean;
|
|
40
40
|
docSign: boolean;
|
|
41
|
-
reportingDocumentPrintRequestChange: EventEmitter<
|
|
42
|
-
reportingDocumentEmailRequestChange: EventEmitter<
|
|
41
|
+
reportingDocumentPrintRequestChange: EventEmitter<ReportingDocumentPrintSignDocBaseRequest>;
|
|
42
|
+
reportingDocumentEmailRequestChange: EventEmitter<ReportingDocumentEmailSignDocBaseRequest>;
|
|
43
43
|
reportingDocumentPdfRequestChange: EventEmitter<ReportingDocumentPdfBaseRequest>;
|
|
44
44
|
startSignatureClicked: EventEmitter<any>;
|
|
45
45
|
closeClick: EventEmitter<MouseEvent>;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ReportingDocumentEmailBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-base-request';
|
|
1
|
+
import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
|
|
3
2
|
import { ReportingDocumentPdfBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-pdf-base-request';
|
|
3
|
+
import { ReportingDocumentPrintSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
5
|
export declare class SendMethodService {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
reportingDocumentPrintSignDocBaseRequestChanged: Subject<ReportingDocumentPrintSignDocBaseRequest>;
|
|
7
|
+
reportingDocumentEmailSignDocBaseRequestChanged: Subject<ReportingDocumentEmailSignDocBaseRequest>;
|
|
8
8
|
reportingDocumentPdfBaseRequestChanged: Subject<ReportingDocumentPdfBaseRequest>;
|
|
9
|
-
set
|
|
10
|
-
get
|
|
11
|
-
set
|
|
12
|
-
get
|
|
9
|
+
set reportingDocumentPrintSignDocBaseRequest(value: ReportingDocumentPrintSignDocBaseRequest);
|
|
10
|
+
get reportingDocumentPrintSignDocBaseRequest(): ReportingDocumentPrintSignDocBaseRequest;
|
|
11
|
+
set reportingDocumentEmailSignDocBaseRequest(value: ReportingDocumentEmailSignDocBaseRequest);
|
|
12
|
+
get reportingDocumentEmailSignDocBaseRequest(): ReportingDocumentEmailSignDocBaseRequest;
|
|
13
13
|
set reportingDocumentPdfBaseRequest(value: ReportingDocumentPdfBaseRequest);
|
|
14
14
|
get reportingDocumentPdfBaseRequest(): ReportingDocumentPdfBaseRequest;
|
|
15
15
|
selectedEmailAddresses: string[];
|
|
16
16
|
activePrinter: string;
|
|
17
|
-
private
|
|
18
|
-
private
|
|
17
|
+
private _reportingDocumentPrintSignDocBaseRequest;
|
|
18
|
+
private _reportingDocumentEmailSignDocBaseRequest;
|
|
19
19
|
private _reportingDocumentPdfBaseRequest;
|
|
20
20
|
removeEmailAddress(address: string): void;
|
|
21
21
|
addEmailAddress(address: string): void;
|
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
2
|
import { StatusbarData } from './statusbar.component';
|
|
3
|
-
export declare
|
|
3
|
+
export declare enum GaugeColor {
|
|
4
|
+
Lowest = "#E0E0E0",
|
|
5
|
+
Low = "#fff7b8",
|
|
6
|
+
MediumLow = "#ffe367",
|
|
7
|
+
MediumHigh = "#ffc15b",
|
|
8
|
+
High = "#F88952",
|
|
9
|
+
Highest = "#5FDCB3"
|
|
10
|
+
}
|
|
11
|
+
export declare class StatusbarPopupComponent implements OnInit {
|
|
12
|
+
set content(content: any);
|
|
13
|
+
defaultColor: '#e0e0e0';
|
|
4
14
|
statusbarData: StatusbarData[];
|
|
5
15
|
parentForOverlay: ElementRef;
|
|
6
16
|
showClass: boolean;
|
|
17
|
+
doughnutCharts: ElementRef[];
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
private _prepareChartData;
|
|
20
|
+
private _getColor;
|
|
7
21
|
}
|
|
@@ -11,6 +11,7 @@ export declare class StatusbarComponent {
|
|
|
11
11
|
private _overlayService;
|
|
12
12
|
set statusbarData(value: StatusbarData[]);
|
|
13
13
|
get statusbarData(): StatusbarData[];
|
|
14
|
+
defaultColor: '#e0e0e0';
|
|
14
15
|
focusedStatusIndex: number;
|
|
15
16
|
statusbarClick: EventEmitter<void>;
|
|
16
17
|
showClass(): boolean;
|
|
@@ -36,11 +36,27 @@
|
|
|
36
36
|
display: flex;
|
|
37
37
|
flex-direction: row;
|
|
38
38
|
align-items: center;
|
|
39
|
-
|
|
39
|
+
.statusbar-canvas-wrapper {
|
|
40
|
+
position: relative;
|
|
41
|
+
}
|
|
42
|
+
.statusbar-inner-canvas-label {
|
|
43
|
+
position: absolute;
|
|
44
|
+
top: 50%;
|
|
45
|
+
left: 50%;
|
|
46
|
+
transform: translate(-50%, -50%) scale(0.7);
|
|
47
|
+
&:after {
|
|
48
|
+
content: '%';
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
.statusbar-description {
|
|
40
52
|
padding-left: $statusbar-status-description-padding-left;
|
|
41
53
|
}
|
|
42
54
|
}
|
|
43
55
|
}
|
|
56
|
+
.chart-canvas {
|
|
57
|
+
width: 30px !important;
|
|
58
|
+
height: 30px !important;
|
|
59
|
+
}
|
|
44
60
|
co-linear-gauge {
|
|
45
61
|
&.focused-status {
|
|
46
62
|
div {
|
|
@@ -14,12 +14,14 @@ export declare class StockLocationComponent implements OnInit {
|
|
|
14
14
|
private _stockService;
|
|
15
15
|
private _changeDetector;
|
|
16
16
|
readonly icons: typeof Icon;
|
|
17
|
+
articleStockInfo: ArticleDetailsBo[];
|
|
17
18
|
articleStockInformation: ArticleStockBo[];
|
|
18
19
|
article: any;
|
|
19
20
|
clickedLocation: string;
|
|
20
21
|
dataWareHouseCode: StockManagementWarehouses[];
|
|
21
22
|
readonly transferIconClicked: EventEmitter<ArticleStockBo>;
|
|
22
23
|
readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
|
|
24
|
+
articleDetails: ArticleDetailsBo[];
|
|
23
25
|
selectedWarehouse: any;
|
|
24
26
|
selectedWarehouseModel: {
|
|
25
27
|
value: 1;
|
|
@@ -28,7 +30,6 @@ export declare class StockLocationComponent implements OnInit {
|
|
|
28
30
|
dataWareHouseFields: CoDropDownListFields;
|
|
29
31
|
dataLocationFields: CoDropDownListFields;
|
|
30
32
|
articleDetailsInformation: ArticleStockManagement;
|
|
31
|
-
articleDetails: ArticleDetailsBo[];
|
|
32
33
|
stockLocations: StockLocation[];
|
|
33
34
|
selectedArticleDetailsData: ArticleDetailsBo;
|
|
34
35
|
selectedLocation: any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
2
|
+
import { StockService } from "../../../../service/stock.service";
|
|
3
|
+
import { Icon } from "../../../../enum/icon.enum";
|
|
4
|
+
import { StockForecast } from "@colijnit/articleapi/build/model/stock-forecast.bo";
|
|
5
|
+
export declare class StockPrognoseComponent {
|
|
6
|
+
iconCacheService: IconCacheService;
|
|
7
|
+
private _stockService;
|
|
8
|
+
readonly icons: typeof Icon;
|
|
9
|
+
stockPrognose: StockForecast[];
|
|
10
|
+
constructor(iconCacheService: IconCacheService, _stockService: StockService);
|
|
11
|
+
}
|
|
@@ -7,7 +7,10 @@ import { Tab } from "../../tab-bar/tab.interface";
|
|
|
7
7
|
import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi/build/model/article-transaction.bo";
|
|
8
8
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
9
9
|
import { PrintPriceStickers } from "@colijnit/sharedapi/build/model/print-price-stickers.bo";
|
|
10
|
-
import {
|
|
10
|
+
import { StockForecast } from "@colijnit/articleapi/build/model/stock-forecast.bo";
|
|
11
|
+
import { ArticleStockManagement } from "@colijnit/articleapi/build/model/article-stock-management";
|
|
12
|
+
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
13
|
+
import { LocalizeService } from '../../../localization/localize.service';
|
|
11
14
|
export declare class StockTabsComponent implements OnInit {
|
|
12
15
|
private _stockService;
|
|
13
16
|
private _localizeService;
|
|
@@ -25,6 +28,11 @@ export declare class StockTabsComponent implements OnInit {
|
|
|
25
28
|
orderAllocationStockHistory: StockHistoryBo[];
|
|
26
29
|
inOrderInformation: ArticleTransactionBo[];
|
|
27
30
|
orderInformation: ArticleTransactionBo[];
|
|
31
|
+
stockPrognose: StockForecast[];
|
|
32
|
+
selectedWarehouse: StockManagementWarehouses;
|
|
33
|
+
articleDetailsInformation: ArticleStockManagement;
|
|
34
|
+
showWarehouseSelection: boolean;
|
|
35
|
+
articleDetails: ArticleDetailsBo[];
|
|
28
36
|
tabs: Tab[];
|
|
29
37
|
historyTabs: Tab[];
|
|
30
38
|
constructor(_stockService: StockService, _localizeService: LocalizeService);
|
|
@@ -37,4 +45,6 @@ export declare class StockTabsComponent implements OnInit {
|
|
|
37
45
|
getAllocationStockHistory(): Promise<void>;
|
|
38
46
|
getInOrderData(): Promise<void>;
|
|
39
47
|
getOrderData(): Promise<void>;
|
|
48
|
+
getStockPrognose(warehouseNo: number): Promise<void>;
|
|
49
|
+
handleWarehouseSelected(event: StockManagementWarehouses): void;
|
|
40
50
|
}
|
|
@@ -8,8 +8,8 @@ import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-detai
|
|
|
8
8
|
import { OptionsService } from "../../service/options.service";
|
|
9
9
|
import { DictionaryService } from "../../service/dictionary.service";
|
|
10
10
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
11
|
-
import { LocalizeService } from './localization/localize.service';
|
|
12
11
|
import { Translation } from './localization/translation';
|
|
12
|
+
import { LocalizeService } from '../../localization/localize.service';
|
|
13
13
|
export declare class StockComponent implements OnDestroy, OnInit {
|
|
14
14
|
stockService: StockService;
|
|
15
15
|
private _optionsService;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
1
2
|
import { Tab } from "./tab.interface";
|
|
2
|
-
import { CoDropDownListFields } from "../stock/stock-transfer/co-drop-down-list-fields.interface";
|
|
3
3
|
import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
|
|
4
|
-
import { ArticleStockManagement } from "@colijnit/articleapi/build/model/article-stock-management";
|
|
5
4
|
import { StockService } from "../../service/stock.service";
|
|
6
|
-
import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
|
|
7
5
|
export declare class TabBarComponent {
|
|
8
6
|
private _stockService;
|
|
9
7
|
wareHouseLabel: string;
|
|
@@ -13,10 +11,9 @@ export declare class TabBarComponent {
|
|
|
13
11
|
ActivateSecondaryTabs: boolean;
|
|
14
12
|
dataWareHouseCode: StockManagementWarehouses[];
|
|
15
13
|
article: any;
|
|
14
|
+
showWarehouseSelection: boolean;
|
|
15
|
+
warehouseSelected: EventEmitter<StockManagementWarehouses>;
|
|
16
16
|
selectedWarehouse: any;
|
|
17
|
-
dataWareHouseFields: CoDropDownListFields;
|
|
18
|
-
articleDetailsInformation: ArticleStockManagement;
|
|
19
|
-
articleDetails: ArticleDetailsBo[];
|
|
20
17
|
constructor(_stockService: StockService);
|
|
21
18
|
selectTab(tab: Tab): void;
|
|
22
19
|
selectSecondaryTab(secondaryTab: Tab): void;
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
|
|
2
2
|
export declare enum Icon {
|
|
3
|
+
Account = "account",
|
|
3
4
|
AngleLeftSolid = "angle_left_solid",
|
|
4
5
|
AngleRightSolid = "angle_right_solid",
|
|
5
6
|
ArrowFatRight = "arrow_fat_right",
|
|
@@ -12,10 +13,13 @@ export declare enum Icon {
|
|
|
12
13
|
DeliveryTruck = "delivery_truck",
|
|
13
14
|
Email = "email",
|
|
14
15
|
EnvelopeRegular = "envelope_regular",
|
|
16
|
+
EyeRegular = "eye_regular",
|
|
15
17
|
FileExportRegular = "file_export_regular",
|
|
16
18
|
FileExportSolid = "file_export_solid",
|
|
17
19
|
FilePdfRegular = "file_pdf_regular",
|
|
18
20
|
FilePdfSolid = "file_pdf_solid",
|
|
21
|
+
FileSignatureRegular = "file_signature_regular",
|
|
22
|
+
Lock = "lock",
|
|
19
23
|
MessageSmsRegular = "message_sms_regular",
|
|
20
24
|
MessageSmsSolid = "message_sms_solid",
|
|
21
25
|
Pdf = "pdf",
|
|
@@ -16,6 +16,7 @@ import { MainApi } from '@colijnit/mainapi';
|
|
|
16
16
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
17
17
|
import { DataServiceResponseData } from '@colijnit/ioneconnector/build/model/data-service-response-data';
|
|
18
18
|
import { SendMethod } from '@colijnit/mainapi/build/model/send-method.bo';
|
|
19
|
+
import { StockForecast } from "@colijnit/articleapi/build/model/stock-forecast.bo";
|
|
19
20
|
export declare class SharedConnectorService {
|
|
20
21
|
private _optionsService;
|
|
21
22
|
articleConnector: Articles;
|
|
@@ -36,5 +37,6 @@ export declare class SharedConnectorService {
|
|
|
36
37
|
lockArticleDetails(data: ArticleStockManagement): Promise<boolean>;
|
|
37
38
|
getStockStatus(): Promise<StockStatus[]>;
|
|
38
39
|
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|
|
40
|
+
getStockPrognose(goodId: number, warehouseNumber: number): Promise<StockForecast[]>;
|
|
39
41
|
commit(): Promise<DataServiceResponseData>;
|
|
40
42
|
}
|
|
@@ -13,6 +13,7 @@ import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi
|
|
|
13
13
|
import { SharedConnectorService } from "./shared-connector.service";
|
|
14
14
|
import { SendMethodParams } from "../components/send-method-dialog/send-method-params.interface";
|
|
15
15
|
import { DataServiceResponseData } from '@colijnit/ioneconnector/build/model/data-service-response-data';
|
|
16
|
+
import { StockForecast } from "@colijnit/articleapi/build/model/stock-forecast.bo";
|
|
16
17
|
export declare class StockService {
|
|
17
18
|
private _sharedService;
|
|
18
19
|
stockStickers: PrintStockStickers;
|
|
@@ -27,6 +28,7 @@ export declare class StockService {
|
|
|
27
28
|
getStockManagementWarehouses(): Promise<StockManagementWarehouses[]>;
|
|
28
29
|
getStockManagementLocations(warehouseNo: number): Promise<StockLocation[]>;
|
|
29
30
|
getArticleTransaction(data: ArticleTransaction): Promise<ArticleTransactionBo[]>;
|
|
31
|
+
stockPrognose(goodId: number, warehouseNumber: number): Promise<StockForecast[]>;
|
|
30
32
|
lockArticleDetails(data: ArticleStockManagement): Promise<boolean>;
|
|
31
33
|
commit(): Promise<DataServiceResponseData>;
|
|
32
34
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
$sc-font-family: '
|
|
2
|
+
$sc-font-family: 'Public sans', sans-serif !default;
|
|
3
3
|
$sc-font-family-digital: 'digital-7regular' !default;
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
//$sc-font-size: 10px !default;
|
|
6
|
+
$sc-font-size: 12px !default;
|
|
7
|
+
$sc-font-size-small: 10px !default;
|
|
6
8
|
|
|
7
9
|
$sc-color-font: #171721;
|
|
8
10
|
$sc-color-border: #DCE4EA !default;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import url('https://fonts.googleapis.com/css2?family=Public+Sans&display=swap');
|
|
2
|
-
|
|
3
1
|
@font-face {
|
|
4
2
|
font-family: 'digital-7regular';
|
|
5
3
|
src: url(data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAABegABAAAAAAcYAAABc+AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACDIghqCaY7EQgKgaEUgYcBC4F8AAE2AiQDg3QEIAWHWAeDRgyBYRtWYhdw5x4U7lZxRyCUHRkINg4gROzWyECwcQgimH3i//+vScfhGlbFcVRQmwsuEpB1iGUaR0hWBdEZ67OZznw31Ein1x7lnv4FNaxOy4QVn/pRTBB5gTKX7MakQcJsexHwoE8oLJPmJ7usk9Va/8VDnYKYjxPB3J5OS51k1f4eSyQR/8f5fLqsToVbabmTz8+2iUmq4xHaeIj4wvOYR72fdABnsO7SXRNnwyc7AbD9ml+y25pkV6gjWjggsIUkj0o4Va5f2ANhSJFS1+ArAA+HbVvHd4hKdfDcCGc0g4h6JLhRU2Ngdf0DQXZnFFFKaKIQI+l77KKG+Mfdu2DYxwRNK4r979zz3qZN0gbaYBEefSD0Y3LEjqSYcF+JnQ26++v49gVNCDARcWKbZtpqSnTQYkgfxF/wxu9/17R7fh7o550mdgOAyIO0h1QSpsrNZS7zYvO90/WRIlltBhl4sPbNk8N7vGAZ+B0mwTLwFPxSPAXPwItYiogGcfki4Id8qf91iK2+/dmUn474M/tmU8GDoXBrBaQ0sIwnogEqHRsf3dz4neGJFYFVv6O50mY/XwaJWzDuW1fpApPcZzd7BMmnDww5TO/K4AEVIHq2Fa6sK2WFqxOF579pr1RX8lhyS6IzLjDFjdDfsQsja/3RbDSzb/W9R2m7Kb1tO2e037UBEvYBdVBDARCGoACIooO2wKyN8CJ/+mvg7/xrFyIgPNTaNpdQ2d3fJfeyVi3gwIDtLwUIwINp/eYBp4PqfISnTpQgQDAQCygEYTSCAyhAyz6Zjw+OOqRmAvPgE3KaQqJBsTQfD8LXKtRu3AiPkGx/dX+bha7OXMLG1KFxEzCGYT0PJms1LBoU06LDePi9wtEEE8JYlrGezYZMtEkwKSbD5Dftsv21FkIwAS2BCTfxJvn3br/Zl/aEPWD3Plv7HEujPA/Go8C2Kr4VVSKqJnVBKO3gfKn2fL32/NH6Bw7vuJ4fhFGcQIQJZVxIpU2a5UVZ1U3b9QAiTCjjQiptrPPI/cFQ1JwPMY3Gk+lM2TqgxSNoSie0I61n0OBhw4cM5S+bOiiTqKWqKl/QDeSKnS+LVQFQMYRKSTvbVrFr2cMAuS31bS9xeM9salGLJUxiExNJphYdCKUwNYmtvylL7fd8fBytcIdWMdt0tiqZHbrHZ3ZvXzmva+qq7jRmnz1WInK7J8VK7Ma2edXCNinGP5bXlW1Vh5pqyQdVO3Q3zXcHmSW2qWwyP22XEtsE8wzm1mLw+v5XZG73f2JnCk/P/MHR7SY8g7sGLqJzKu1vMIS7D547nWdI11xSna3q6zeHYWOONVYb8xFCN6BONtjuu4VsWtwCyms+mg6/7hH1wj47scbY4RmpKXHaEtqKaYhPInF71f8fN5e5tYofoLPX/375puOfnqLee7yPEFzQY97TY/gUwphnqDvbDpfX0c7dhh5XsBoyJ1pr9E29bot3jjMNaxyi45ud5pgZ5usYr+p6heBNMPYdGdlkMh57N8dXu7D/Er0PcQjvI3zOMyy+e/u+ON9HyNlLgLln3Xjk4tMXji75KqJG4+tcW7Ed0ZsBowzpJ0fP/BKxYvNrrjuxe+JgjjjJMX2TyNGYJxEUzNNcuVhBSKOgRaU3jk75LCJH4fNcS7EVUZsGrTTpO0f3/BAxYvJjrrPYhVjNhl229IejT/6KuPH4O9dX7Ef8BrSPgfTTDx0tvEYYnLdcvdhARJMwkpR+7OgJP42YYe5nuS7ELomVWWMj6/RbR+/4fURMMIjHuVKxjOBGQIpIrxyteRNh4bzN1YsNRDQJWVL64ujKt4iO4XuuU+wiNrPjkD396eiLvyMevP7J9RP7Ffzf8RasPQHGTIDfcghU2MDZCdkYAMLJ2X70G8araIbDzcPSCNFvVh3MQF8BRoTpKhqJs0wsA0FH3LywEo/EAhEq0hTz7gA3bUIuqI8MCr/v32bKDY3eTSWOyLgZPtTGLL7R7EMwEa3/FW46ip6JiQYVERfKkdEs9lCBBm+0cYgFQYrpKDElaXkn3oREKRVgqoaCzgt4Ek3TjZ668tJwgG1wSg5KQGhlfXANNKQKkp8UkjiF5S/gEF1Cec3Xmuetj14+zaqMu5RqIER0v89kVSDk6fOXyHppv33xnF6+0k2JvXoBZurKqGp6xqQmTOdb3vEzbssVbzSvs89XDUPxp3c8gV6Tq317VP7uxPAMpke+PQm4X+LWndzwJHK8mThSZAkLSGofVNbP98n5G4BAOJuA2mERULMbVPYXeduHJFzea3Cu3a4KUA0wYu+BkvryC9/gsIZQ/GzNRus4Bn+q9fzxVb2tYtuHKjndx304L3rhve3ay8dLzi5+apIkJbb49KlIcsVhTMiRZWwRITMf86aTyhmfm1mVxNT8gCmy1ilYMi9gg3N23btn04+9bmRaOGMjAP6mH6Sg3TlGEJd6zlNh565crSNkPKBkdJ6/pAc5vpFdJ2MT8uM601usBCx0syEkmH8XGmSVje2rwTG/SLtsguAgICrEtLu44vbNIDGYt4LM256H5QvRZFZQG+z0vEDHZUbHQDU3p6qOB1sDcEtb8lhwC6Z03OkcHV8mBhXFJg8sUkh8HR42A3l926SeirmTGysSU8AgYdoGi8gm28TmEsBVdEuWZNhnqrN6YQkmdLrARheTu+AaXHR0KKsJrK/B0MeVjQyPKCvYwVCJ8vp7z+5qjxpsZKGU0AoohChhVDI8j+z4oGUzAIFipT/3h4htvxzW4HFJ+OqFa0rzFvSlTbbA+oQcvpO5FemMnKL4i9Vb9eorCxOESJL2ZPUeB5LBteyNcUXK0A812+6UV2vQMjx39dQM+YAKj4un6GQ5FET9j9kU7ts5nmcLcFhL+CqFxmVdc43WPQFxGYlOWiaGkFv76OizIr1Z/IHghV/yxit8MKLdMd24k67uzabJJ1mr5QkQZLoSyZ9eyRWmHOWTy8/kjv/d/RpPPeZj17RHxQNuf/XXVV//r/Yi/iJXU8BOHCt6UBFFV2SAtFEY46ZGHiEJnFhPRMP823ppiJCgNUUNT7WC3EsE+XAhp6RhXd4E0hJCwUEuA8DI56LvZy6sOffjSwLIWBGtiB6wfHZ0Bar4nTZnbODG7CJ4iMS8lqWJhIhIOowPvydFjxterPN6/A9Yd1XtnNJTaaM/D9XK9O4qjGUPutqdtfVD55tcJe2jU20d8XVC5WcdrtbIvim4gX3m6q9Eucqr02rEBocZM6Zecw2E94j+YNI+wEo4ZmoEXjVC3tUGTsrrBztmEs53aNx/8DrFAXnd0XZh3b17cEssByNOs+DO60TIGKwS9dDCHnV6j3emZKBudcXxaCCGty1zfmD2FDivYOyX2JBm0/LUyPKpiIc6vsx/eJ+moY4IloeMkbWwlYW1/UqI5SWz2pJSp/z7GocNYga9skHVjr9FstJsGRXzfNtAyyynPXsk7SPczFde3nMWh62nKZE7EoOJ45Xdw7DtNUrOGxbeJn7HsTzjLSDTUni5LGtU5OrV0JMuT0JjeaSa8tZogEkUkxNSW2i6FKvW41khuhPYMfoWWyJN3bpV5xWg33IXgygV7puuwEWVsMUW/lala5VsUGixGFVaEdVctyOMH7+whMaP6qPeslfuOxYbES4sjXWaPv5vkPqbSCKqSPftHVZ2aTsQrQXZkMccpHEaZB0fm/loQwgNcj5P5nrkHB9QjvugcSzCgiW17YkIe5jZBGdkiGkp6zjI/o3oaUphXYaBacZ+XPq8qQZvIN93F61sYdTm4miYNZMQB8d9yfPY1m6UJRfE4xBaFiJ7Fmtkk0qLPqOmviJkv2na73QEJEQZ3EzSrNOFTcV9a5Sm0dV9yczzCgipQzrLZ2CyzTt/j9lW1mloGPDAdpm/SZoKGaYupFSIwZGfGp7feUv8Q07doWIKcUsNcwof4Adkmq8xp6z8hSeyuQ/Jg+7M3XrZq1S/ykBgu20A8U30MVkqdgjprs5F/6gsm/k0JP02EJJQ+aq2T8lZVbsuHP/D9XmV15nGbftZN8rMW4tsydy9GUG/Ieddje3KPo03eFg3XhuyyMScpQcnnyGXl2XKTGCga9n9ccA0uE5u6vUmlDa1800CdIktFMN9ltfhN5F9Xge22Nrbbw17VeushdAnLq2YgVD9H9mBd/1CUdNcEQqsN+d3yCmhUx53gP3qdyyJkAJCWhtCPy7f7N3cIVXq6jhro+EnKpVftlxFXF+GNFfDVGIMpVuDjQyz87O0nx/Ucph+0gxVXFi/t2H8dKzxjTOW+iqgRv391cL+LcoFuUjOR4P3BD6y6FWjJE6Uwn2lMDBKMQZWgmiHv9ba8cJL2KkTvJ33vw90W/GP/j3qwv289X2P+8XYnnM6nviMnx3/8/79Y3z8U31ekNBXKbyEK4IqQRB+WhbRxOuMIHs93LZbeV0sAh2FxShKBv9BKwwfwofCKD4QPEuizUsMLxEIUgyuEjArS0qNocfJyFIrOwQnUnfW8a0qBwYOf3c+ue6mr8rjPQ2GxxXkZHAhfBrC09dphuwh3CSWuImL6iKXucxj7nKXp9yX+5F+EE11PFqNZE4hg/MWrwn5MPpZT+lLNr1SJTkjG6vsN+ooZ0jOMXIR6q5Azjy4EOv+XK+jUUPqs4wu7TQi9AF8ULhg9sbAaZPFXc5avLhLSvrIvCJaSU1IGoWf09dxph1ntw4znrzgrEN2tYeuSTlw89Q7zv7g3sh5l7e54gxcBFwe0BbtKFzVlmrpkKNHl51X14yq3I61MCwWk2R5CVl8cGioRwPVLE2dINV9lIntPJuSDatnptDRKShpMR0MYAsrfu1PdEI0ADpqCZp1UNVmvuqsx0a4x9xS4QfhKDxwDHToSyeJzCNgNXSMKZbEhnQV7DoQ3plSmjoCRAjAZTMP9MM0AUghdOqoksapSJVyU3tRccxhIMHBghXcuChCfZp+JUhwbjgcAqun6AtaDQ53HO0TCkO5qeQ8kFns3lQVeGxm4+RqFvUTlxSK8LiMrqZpAHQgmciXtxFhoS19pHbV0BRO+q/W6hXg8e5HCPaBklCrwkmXjb1PoigJkD6GXrd2RYY1YUcH2MG0ivYkAdCaRjIzfsyaXgsQOsFpDlDQuiFAzZG7c+XQPyoQ3Jd2bVi6B6qvAZAcoH8pZcU0SxVPb+ovlz44Xqp9UNiDo6lrt+YFFSR7KhRKYeCqYp4YtJEAhiKucVewhPikxrgx/EEKbH9Kiy6g69N97OiOtJekJnDly3YpRFUI0AY0D4k8tWQtNDvXsUp/ly4s2I215MYrA7dYo1ne1xFxbDA9Via5l61n75RPWhIvgmZayrt7G+MVRmqZHkXySZIIvwVjQOR9tMM+GuktoLBbcVnoUDw5PEHqQk+GAzhMRDiHuY13doADUC2QQ+uMR5yts3aNOJ1+jFZLNzbUWtRqy8Us4D07wCKgHcuCnXOvPiRDoW09gNn/OTQP/AMQ+UDmkgqqf2JyKhpnikkzIlIgajJ7gCrieSVAqC8hXRp6mYjRO4V3ijVHVDBZyIX1QVoARAvZjkTrkEXykDCVAxy5EW8OkJtO0ZMohRid3HVGlsbT7laMx7UN4Vq/1EenHMFjhAm/ZapkyKm6nHToCsmRqyB3R75Q0KTJ3pJteMvV5iZdri4696Mnm0N1JSG8ZeilO3bk7ZwDzvavs4mx5MxYZXrUAOjAYiepkkFyD6WL9ibFYbrbqIxO5VMj3lkxEi89hAdcqF2yM02VICAiu5TGAeRAU29bAEaIrKTpjpug9xad4RoAVcTl9wb+rcdlqV1KSNqRBI4fAdAJX+0IAA6V8syocC7nZFScEQII7VKcVFStKcVlWEcYXLyMJp0UkiD6SYDOVKh8J5YophkxlhVReLH6eM6zut45DS1fVWMZGAFGk0XeZFl2ZbuiUlNYe0ZmnsLn/z6Wtptq4cxMSam88sAi44UAUkq+wDNiZPGtTVe+Kkv09b9a+xDAH8SAiIrmLjzJ4ZRSYOVq1pwBd3+MJvX2SeG0bTJBqSmCWMLtXaZlmqRQFAUNjgE6nEecMrknrO3twecvBSJw5pHAeCkpQWRG0hRnQE9Qx/kzm6HywlLfvbSPhwR/OHn1slBL+/WzbI6EGZXwV9jZtfbh1aTQ0F85mVBFsfSxL2+5ncIkfpztS5kpG9nqY5GGn5iAQkQkwamUZE1xLihl7KKV4K+fQQ0kGm7toY60dI2EoMLV/SjGnAoWb7pT5RGYqXhDoRRVFCVJFxJAA43fLQoUDX44DMzfLyzILGUcJEysOcA9B7pwH8mSkfrkycY8wn8rE3zYC0uPER5+JJQpRmXTHWVLtgRrr9UcfkltqKlqZ+2lnTFzVXKppFexsNsz5atJrwDJiGJJ+jIE+XRWu46M1Li7V3XFtXRkRK1LzX6uGOqoGqoQDw17U0NbUzBfS1MVrrChrSMIrum58jsoOkfuKjg9nq53jKUBSlfwSzLFV2qo1MeHWRAhbjAQk1OCrJFAlK9ioTgRB4B1ORhRN2cr5w5kV5VBnj0h6QVhcXeQDgS78O45wQ1bOZqw2iSY5vKKfOAIWXpJu8ikmbB4B2WWNo5Lm6BXxhS2W6o5HfIkq9beWyqNhKZ5OPjaxQwl4mrd9h2AFVQdHI5jOw1Ip4CzW23pEIwS0T8SuMDI2U80X0pR+NQsB9RGgUpZaQxhRvhVDZRywcsLsnZtb4KCKkaY1ZQtFxf8EkXFDnEWhqXnf90DAFHKmAcv1eVMWVzYsgI8z0O04U+n2NGIZ04KDO1RiV9h4o8hvLsI0ZdXIRROPlU3+foF6TuoK4tWLODVM4X/NwL77C2gyE4qhqNHi6qv3o6OLFhrxLlm3inNmRwRTmidiv1iUg6/aC/H2X3Um+PjE4PIGw/z5YopDiEhO7gAtiUf2wHgxKn8Tk+noFcNLH80AYAA/G+1B/UJ3F88TJqg9j9dfnrso67p6oA/CgABXd0OJM4GQF1DeL3JGJlLFoB8FRfYRSFpQiGVfED+qDlXQG5ibQvawvaxgQRxj381/ndz2MUkGUj2kTbbTeQZqVYT7yI9skzwsymoGPMldb93/4rEu0C2mANykkpudEFVhkRflTQXycV34gYw+x3qgdaZ+UAFCqQtvTLEqDFqwk2Vt/TGMKAcl46hOsHvWuGPx2xQ8AoAiOQJAkAUgYBGnABgH4FVLERyAitCuYU1kbzADhl8xT4Uk1jsS6TUxv6UkbY4gAxZgIMpJIdwCBPlPY4iWvXH54hVk6vOU0Cp4wv4qwvLLhKqbpzgviZRZQj/L/uLOauJ25IAvDm8RQuSJwWcpGR084DUAvxARZIsNbOdizbypnDXUnitOpqFbcPQCESE9t2KwXLztdrSEcXhjSU0RkFFOqC8vV9k52ZRZLppp6u+klmHXBsRG6YTqNFPx1ZtoiKvlwUpSCkcUoYih2RJZvB7kWXTKYI1YcFkw0UvXdJISd3KYpgWFpRBSwfqhkc7E52FbTpTEAzRTHx3PzqIp5E7Zi6D+uY6t53fClIBrBdVVE03TMv+It5URQWcPcBv3na3WYquSWCxo9iWaiVAU5QmwXnKYCjp1HNpOPZWGbXIPY16OJ1/GG6IfdB2ccxE7Pk4TuHFPf64xRIMJ0ipjKIZluPlCqVKrdHq9AajyWyx2uzsHRydnHHWOeddeDr+S7fdcfetm7brARCCERTDCZKiGZbjBVGSFVXTDdOyHdfr8x+RSXaLZrXZdeVwugw3zbA5mEM5mmM5nCOZ7eHl7ave8zKUS/7UN5Ly+QzLh3zfrF/xdcMgggwq6GBCGrKQh6JgKBd8SlgXZ9gK3Cacy+Q6ZGBbNdD0d6jaFuiIoBA9gFEACBEhVEL6e5L6/OVfAGxO/l/m/wO1N4aS8HznEKpJh8LcNaK4lEQpjYcmlEUFlaUpVUO0mhKrjnjNhxakLKnqijz4vAMA) format('woff2'),
|
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.45",
|
|
4
4
|
"private": false,
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"chart.js": "4.3.0",
|
|
7
|
+
"tslib": ">=2.3.0"
|
|
8
|
+
},
|
|
5
9
|
"peerDependencies": {
|
|
6
10
|
"@angular/common": ">=12.2.0",
|
|
7
11
|
"@angular/core": ">=12.2.0",
|
|
8
12
|
"@colijnit/articleapi": ">=1.0.17",
|
|
9
|
-
"@colijnit/mainapi": ">=1.0.
|
|
10
|
-
"@colijnit/corecomponents_v12": ">=12.0
|
|
11
|
-
"@colijnit/ioneconnector": ">=2.1.
|
|
13
|
+
"@colijnit/mainapi": ">=1.0.15",
|
|
14
|
+
"@colijnit/corecomponents_v12": ">=12.1.0",
|
|
15
|
+
"@colijnit/ioneconnector": ">=2.1.15",
|
|
12
16
|
"@colijnit/sharedapi": ">=1.0.11",
|
|
13
17
|
"pdf-lib": ">=1.17.1",
|
|
14
18
|
"pdfjs-dist": ">=2.12.313",
|
|
@@ -23,8 +27,5 @@
|
|
|
23
27
|
"fesm2015": "fesm2015/colijnit-sharedcomponents.js",
|
|
24
28
|
"typings": "colijnit-sharedcomponents.d.ts",
|
|
25
29
|
"metadata": "colijnit-sharedcomponents.metadata.json",
|
|
26
|
-
"sideEffects": false
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"tslib": ">=2.3.0"
|
|
29
|
-
}
|
|
30
|
+
"sideEffects": false
|
|
30
31
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -9,8 +9,6 @@ export * from './lib/components/key-pad/key-pad.component';
|
|
|
9
9
|
export * from './lib/components/key-pad/key-pad.module';
|
|
10
10
|
export * from './lib/components/layout-switcher/layout-switcher.component';
|
|
11
11
|
export * from './lib/components/layout-switcher/layout-switcher.module';
|
|
12
|
-
export * from './lib/components/circular-gauge/co-circular-gauge.component';
|
|
13
|
-
export * from './lib/components/circular-gauge/co-circular-gauge.module';
|
|
14
12
|
export * from './lib/components/linear-gauge/co-linear-gauge.component';
|
|
15
13
|
export * from './lib/components/linear-gauge/co-linear-gauge.module';
|
|
16
14
|
export * from './lib/components/statusbar/statusbar.component';
|