@colijnit/sharedcomponents 257.1.9 → 257.1.11
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 +1354 -1279
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +18 -18
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +19 -19
- package/esm2015/lib/components/send-method-dialog/components/layout-selection/layout-selection.component.js +7 -3
- package/esm2015/lib/components/send-method-dialog/components/pdf-preview/pdf-preview.component.js +13 -7
- package/esm2015/lib/components/send-method-dialog/components/send-method-email/send-method-email.component.js +13 -5
- package/esm2015/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.js +15 -9
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +12 -6
- package/esm2015/lib/components/send-method-dialog/components/signature-button/signature-button.component.js +20 -1
- package/esm2015/lib/components/send-method-dialog/components/signature-button/signature-button.module.js +4 -3
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +32 -15
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +32 -12
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +20 -14
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +403 -308
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/login/components/input-code/style/_layout.scss +24 -0
- package/lib/components/login/components/input-code/style/_material-definition.scss +5 -0
- package/lib/components/login/components/input-code/style/_theme.scss +8 -0
- package/lib/components/login/components/input-code/style/material.scss +4 -0
- package/lib/components/login/style/_layout.scss +37 -1
- package/lib/components/login/style/_material-definition.scss +3 -0
- package/lib/components/login/style/material.scss +1 -0
- package/lib/components/send-method-dialog/components/layout-selection/layout-selection.component.d.ts +3 -2
- package/lib/components/send-method-dialog/components/pdf-preview/pdf-preview.component.d.ts +5 -3
- package/lib/components/send-method-dialog/components/pdf-preview/style/_layout.scss +4 -0
- package/lib/components/send-method-dialog/components/send-method-email/send-method-email.component.d.ts +4 -1
- package/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.d.ts +3 -1
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +6 -5
- package/lib/components/send-method-dialog/components/signature-button/signature-button.component.d.ts +4 -0
- package/lib/components/send-method-dialog/components/signature-button/style/_layout.scss +5 -0
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +8 -17
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +2 -0
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +3 -1
- package/lib/components/stock/style/_layout.scss +14 -1
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +23 -0
- package/package.json +3 -3
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
@include export-module('co-input-code-layout') {
|
|
2
|
+
.co-input-code {
|
|
3
|
+
padding: $sc-input-code-padding;
|
|
4
|
+
border-radius: $sc-input-code-border-radius;
|
|
5
|
+
.input-code-inputs {
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
gap: $sc-input-code-inputs-gap;
|
|
9
|
+
}
|
|
10
|
+
input {
|
|
11
|
+
width: 30px;
|
|
12
|
+
text-align: center;
|
|
13
|
+
padding: 11px 5px;
|
|
14
|
+
border: 1px solid $sc-color-border;
|
|
15
|
+
border-radius: 5px;
|
|
16
|
+
font-size: 15px;
|
|
17
|
+
box-shadow: $sc-input-code-input-box-shadow;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.separator {
|
|
21
|
+
padding: 0 5px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
$sc-input-code-padding: 5px !default;
|
|
2
|
+
$sc-input-code-background-color: $sc-color-light-accent !default;
|
|
3
|
+
$sc-input-code-border-radius: 5px !default;
|
|
4
|
+
$sc-input-code-input-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5) !default;
|
|
5
|
+
$sc-input-code-inputs-gap: 4px !default;
|
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
@include export-module('co-login-layout') {
|
|
2
2
|
.co-login {
|
|
3
|
+
display: block;
|
|
3
4
|
font-family: $sc-login-font-family;
|
|
4
5
|
font-size: $sc-login-font-size;
|
|
5
|
-
|
|
6
|
+
padding: $sc-login-padding;
|
|
7
|
+
.co-form {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
6
13
|
.field-wrapper {
|
|
7
14
|
display: flex;
|
|
8
15
|
flex-direction: column;
|
|
@@ -53,5 +60,34 @@
|
|
|
53
60
|
font-size: $sc-login-login-incorrect-font-size;
|
|
54
61
|
font-style: $sc-login-login-incorrect-font-style;
|
|
55
62
|
}
|
|
63
|
+
.login-mfa-code-entry {
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
align-items: center;
|
|
67
|
+
gap: 20px;
|
|
68
|
+
.co-form {
|
|
69
|
+
align-items: center;
|
|
70
|
+
gap: $sc-login-form-gap;
|
|
71
|
+
}
|
|
72
|
+
.co-button {
|
|
73
|
+
width: 100%;
|
|
74
|
+
place-content: center;
|
|
75
|
+
}
|
|
76
|
+
.footer {
|
|
77
|
+
display: flex;
|
|
78
|
+
width: 100%;
|
|
79
|
+
justify-content: space-between;
|
|
80
|
+
.back-button {
|
|
81
|
+
.co-icon {
|
|
82
|
+
height: 25px;
|
|
83
|
+
width: 25px;
|
|
84
|
+
}
|
|
85
|
+
cursor: pointer;
|
|
86
|
+
display: flex;
|
|
87
|
+
align-items: center;
|
|
88
|
+
gap: 15px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
56
92
|
}
|
|
57
93
|
}
|
|
@@ -4,6 +4,9 @@ $sc-login-fields-row-gap: 5px !default;
|
|
|
4
4
|
$sc-login-login-submit-button-margin: 20px 0 0 0 !default;
|
|
5
5
|
$sc-login-login-extended-margin: 10px 0 0 0 !default;
|
|
6
6
|
|
|
7
|
+
$sc-login-padding: 20px !default;
|
|
8
|
+
$sc-login-form-gap: 30px !default;
|
|
9
|
+
|
|
7
10
|
$sc-login-login-submit-button-font-family: $sc-font-family !default;
|
|
8
11
|
$sc-login-login-submit-button-font-size: $sc-font-size !default;
|
|
9
12
|
$sc-login-login-submit-button-font-style: normal !default;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { ReportLayoutSelectionBase } from '@colijnit/mainapi/build/model/report-layout-selection-base.bo';
|
|
3
3
|
import { ReportingDocumentBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-base-request';
|
|
4
|
-
import { Icon } from
|
|
5
|
-
import { IconCacheService } from
|
|
4
|
+
import { Icon } from '../../../../enum/icon.enum';
|
|
5
|
+
import { IconCacheService } from '../../../../service/icon-cache.service';
|
|
6
6
|
export declare class LayoutSelectionComponent implements OnInit {
|
|
7
7
|
iconCacheService: IconCacheService;
|
|
8
8
|
readonly icons: typeof Icon;
|
|
9
9
|
set request(value: ReportingDocumentBaseRequest);
|
|
10
10
|
layouts: ReportLayoutSelectionBase[];
|
|
11
11
|
requestChange: EventEmitter<ReportingDocumentBaseRequest>;
|
|
12
|
+
loadDefaultPrinterName: EventEmitter<number>;
|
|
12
13
|
showClass(): boolean;
|
|
13
14
|
currentLayout: ReportLayoutSelectionBase;
|
|
14
15
|
showLayoutList: boolean;
|
|
@@ -4,11 +4,13 @@ import { IconCacheService } from "../../../../service/icon-cache.service";
|
|
|
4
4
|
export declare class PdfPreviewComponent implements OnInit {
|
|
5
5
|
iconCacheService: IconCacheService;
|
|
6
6
|
showClass(): boolean;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
private _pdfDoc;
|
|
8
|
+
set pdfDoc(value: any);
|
|
9
|
+
get pdfDoc(): any;
|
|
10
|
+
disablePdfPreview: boolean;
|
|
11
|
+
showFilePreview: EventEmitter<number>;
|
|
9
12
|
readonly icons: typeof Icon;
|
|
10
13
|
showDialog: boolean;
|
|
11
14
|
constructor(iconCacheService: IconCacheService);
|
|
12
15
|
ngOnInit(): void;
|
|
13
|
-
showPreviewDialog(): void;
|
|
14
16
|
}
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
width: $sc-co-signature-button-icon-width;
|
|
14
14
|
height: $sc-co-signature-button-icon-height;
|
|
15
15
|
}
|
|
16
|
+
&.disabled {
|
|
17
|
+
pointer-events: none;
|
|
18
|
+
opacity: .2;
|
|
19
|
+
}
|
|
16
20
|
&.selected {
|
|
17
21
|
background-color: $sc-co-signature-button-selected-background-color;
|
|
18
22
|
.co-icon {
|
|
@@ -7,7 +7,10 @@ export declare class SendMethodEmailComponent implements OnInit {
|
|
|
7
7
|
emailAddresses: string[];
|
|
8
8
|
layouts: ReportLayoutSelectionEmail[];
|
|
9
9
|
pdfDoc: any;
|
|
10
|
-
|
|
10
|
+
disablePdfPreview: boolean;
|
|
11
|
+
emailUnsignedPossible: boolean;
|
|
12
|
+
showFilePreview: EventEmitter<number>;
|
|
13
|
+
loadDefaultPrinterName: EventEmitter<number>;
|
|
11
14
|
showClass(): boolean;
|
|
12
15
|
emailAddressViewmodels: EmailAddressViewmodel[];
|
|
13
16
|
constructor(sendMethodService: SendMethodService);
|
package/lib/components/send-method-dialog/components/send-method-pdf/send-method-pdf.component.d.ts
CHANGED
|
@@ -5,7 +5,9 @@ export declare class SendMethodPdfComponent {
|
|
|
5
5
|
sendMethodService: SendMethodService;
|
|
6
6
|
layouts: ReportLayoutSelectionPrint[];
|
|
7
7
|
pdfDoc: any;
|
|
8
|
-
|
|
8
|
+
disablePdfPreview: boolean;
|
|
9
|
+
showFilePreview: EventEmitter<number>;
|
|
10
|
+
loadDefaultPrinterName: EventEmitter<number>;
|
|
9
11
|
showClass(): boolean;
|
|
10
12
|
constructor(sendMethodService: SendMethodService);
|
|
11
13
|
}
|
|
@@ -2,9 +2,9 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { SendMethodService } from '../../service/send-method.service';
|
|
3
3
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
4
4
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
5
|
-
import { Icon } from
|
|
6
|
-
import { IconCacheService } from
|
|
7
|
-
import { CoDocument } from
|
|
5
|
+
import { Icon } from '../../../../enum/icon.enum';
|
|
6
|
+
import { IconCacheService } from '../../../../service/icon-cache.service';
|
|
7
|
+
import { CoDocument } from '@colijnit/mainapi/build/model/co-document';
|
|
8
8
|
export declare class SendMethodPrinterComponent {
|
|
9
9
|
sendMethodService: SendMethodService;
|
|
10
10
|
iconCacheService: IconCacheService;
|
|
@@ -15,11 +15,12 @@ export declare class SendMethodPrinterComponent {
|
|
|
15
15
|
isPrinterLayoutsEnabled: boolean;
|
|
16
16
|
isAdditionalDocEnabled: boolean;
|
|
17
17
|
pdfDoc: any;
|
|
18
|
+
disablePdfPreview: boolean;
|
|
18
19
|
additionalFileContents: any;
|
|
19
20
|
additionalFileName: string;
|
|
20
21
|
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
21
|
-
showFilePreview: EventEmitter<
|
|
22
|
-
|
|
22
|
+
showFilePreview: EventEmitter<number>;
|
|
23
|
+
loadDefaultPrinterName: EventEmitter<number>;
|
|
23
24
|
protected readonly icons: typeof Icon;
|
|
24
25
|
constructor(sendMethodService: SendMethodService, iconCacheService: IconCacheService);
|
|
25
26
|
handleDefaultPrinterUserChange(checked: boolean): void;
|
|
@@ -6,7 +6,11 @@ export declare class SignatureButtonComponent {
|
|
|
6
6
|
iconCacheService: IconCacheService;
|
|
7
7
|
readonly icons: typeof Icon;
|
|
8
8
|
request: ReportingDocumentEmailSignDocBaseRequest | ReportingDocumentPrintSignDocBaseRequest;
|
|
9
|
+
emailUnsignedPossible: boolean;
|
|
10
|
+
emailUnsigned: boolean;
|
|
9
11
|
showClass(): boolean;
|
|
10
12
|
constructor(iconCacheService: IconCacheService);
|
|
11
13
|
handleToggleSignature(): void;
|
|
14
|
+
emailUnsignedChanged(checked: boolean): void;
|
|
15
|
+
protected readonly ReportingDocumentEmailSignDocBaseRequest: typeof ReportingDocumentEmailSignDocBaseRequest;
|
|
12
16
|
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
@include export-module('cc-signature-button-layout') {
|
|
2
2
|
.co-signature-button {
|
|
3
|
+
display:flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
flex-direction: row;
|
|
7
|
+
column-gap: 5px;
|
|
3
8
|
.signature-button-wrapper {
|
|
4
9
|
height: $sc-co-signature-button-height;
|
|
5
10
|
width: $sc-co-signature-button-width;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Icon } from '../../enum/icon.enum';
|
|
3
3
|
import { IconCacheService } from '../../service/icon-cache.service';
|
|
4
|
-
import { SharedService } from '../../service/shared.service';
|
|
5
4
|
import { ReportLayoutSelectionEmail } from '@colijnit/mainapi/build/model/report-layout-selection-email.bo';
|
|
6
5
|
import { ReportLayoutSelectionPrint } from '@colijnit/mainapi/build/model/report-layout-selection-print.bo';
|
|
7
6
|
import { ReportingDocumentPdfBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-pdf-base-request';
|
|
@@ -10,13 +9,11 @@ import { SendMethod } from '../../model/send-method';
|
|
|
10
9
|
import { SendMethodType } from '@colijnit/mainapi/build/enum/send-method-type.enum';
|
|
11
10
|
import { Printer } from '@colijnit/mainapi/build/model/printer.bo';
|
|
12
11
|
import { ReportingDocumentEmailSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-email-sign-doc-base-request';
|
|
13
|
-
import { ReportingDocumentPrintSignDocBaseRequest } from
|
|
14
|
-
import { CoDocument } from
|
|
12
|
+
import { ReportingDocumentPrintSignDocBaseRequest } from '@colijnit/mainapi/build/model/reporting-document-print-sign-doc-base-request';
|
|
13
|
+
import { CoDocument } from '@colijnit/mainapi/build/model/co-document';
|
|
15
14
|
export declare const sendMethodsWithIcon: SendMethod[];
|
|
16
15
|
export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
17
16
|
iconCacheService: IconCacheService;
|
|
18
|
-
private _changeDetector;
|
|
19
|
-
private _sharedService;
|
|
20
17
|
private _sendMethodService;
|
|
21
18
|
readonly icons: typeof Icon;
|
|
22
19
|
navigationItems: ElementRef;
|
|
@@ -46,6 +43,8 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
46
43
|
additionalFileName: string;
|
|
47
44
|
additionalFileContents: any;
|
|
48
45
|
pdfDoc: any;
|
|
46
|
+
disablePdfPreview: boolean;
|
|
47
|
+
emailUnsignedPossible: boolean;
|
|
49
48
|
reportingDocumentPrintRequestChange: EventEmitter<ReportingDocumentPrintSignDocBaseRequest>;
|
|
50
49
|
reportingDocumentEmailRequestChange: EventEmitter<ReportingDocumentEmailSignDocBaseRequest>;
|
|
51
50
|
reportingDocumentPdfRequestChange: EventEmitter<ReportingDocumentPdfBaseRequest>;
|
|
@@ -53,11 +52,11 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
53
52
|
closeClick: EventEmitter<MouseEvent>;
|
|
54
53
|
okClick: EventEmitter<string>;
|
|
55
54
|
additionalFileChangeEvent: EventEmitter<CoDocument>;
|
|
56
|
-
showFilePreview: EventEmitter<
|
|
55
|
+
showFilePreview: EventEmitter<number>;
|
|
56
|
+
loadDefaultPrinterName: EventEmitter<number>;
|
|
57
57
|
showClass(): boolean;
|
|
58
58
|
sendMethods: SendMethod[];
|
|
59
59
|
activeSendMethod: SendMethod;
|
|
60
|
-
upAndLoaded: boolean;
|
|
61
60
|
startUp: boolean;
|
|
62
61
|
showFax: boolean;
|
|
63
62
|
showPrint: boolean;
|
|
@@ -68,7 +67,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
68
67
|
showWebservice: boolean;
|
|
69
68
|
showPdf: boolean;
|
|
70
69
|
private _subscriptions;
|
|
71
|
-
constructor(iconCacheService: IconCacheService,
|
|
70
|
+
constructor(iconCacheService: IconCacheService, _sendMethodService: SendMethodService);
|
|
72
71
|
ngOnInit(): void;
|
|
73
72
|
ngOnDestroy(): void;
|
|
74
73
|
handleSignatureStart(): void;
|
|
@@ -76,12 +75,4 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
76
75
|
private _initDefaultSendMethod;
|
|
77
76
|
private _selectDefaultSendMethod;
|
|
78
77
|
private _prepareVisibleMethods;
|
|
79
|
-
protected readonly Event: {
|
|
80
|
-
new (type: string, eventInitDict?: EventInit): Event;
|
|
81
|
-
prototype: Event;
|
|
82
|
-
readonly AT_TARGET: number;
|
|
83
|
-
readonly BUBBLING_PHASE: number;
|
|
84
|
-
readonly CAPTURING_PHASE: number;
|
|
85
|
-
readonly NONE: number;
|
|
86
|
-
};
|
|
87
78
|
}
|
|
@@ -17,6 +17,7 @@ export declare class StockLocationPopupComponent {
|
|
|
17
17
|
editingRow: boolean;
|
|
18
18
|
showConfirmationDialog: boolean;
|
|
19
19
|
newStockLine: boolean;
|
|
20
|
+
deleteStockLine: boolean;
|
|
20
21
|
selectedArticleDetailsData: ArticleDetailsBo;
|
|
21
22
|
articleFlat: ArticleFlat;
|
|
22
23
|
articleDetailsInformation: ArticleStockManagement;
|
|
@@ -29,6 +30,7 @@ export declare class StockLocationPopupComponent {
|
|
|
29
30
|
updateGridData: EventEmitter<ArticleDetailsBo[]>;
|
|
30
31
|
stockLocations: StockLocation[];
|
|
31
32
|
stockStatus: StockStatus[];
|
|
33
|
+
stockBelow: boolean;
|
|
32
34
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|
|
33
35
|
statusForId(id: number): 0 | StockStatus;
|
|
34
36
|
handleStockStatusChange(status: StockStatus): void;
|
|
@@ -31,6 +31,8 @@ export declare class StockLocationComponent extends BaseStockComponent implement
|
|
|
31
31
|
articleDetails: ArticleDetailsBo;
|
|
32
32
|
showConfirmationDialog: boolean;
|
|
33
33
|
newStockLine: boolean;
|
|
34
|
+
deleteStockLine: boolean;
|
|
35
|
+
cannotDelete: boolean;
|
|
34
36
|
showConfirmStockRow: boolean;
|
|
35
37
|
articleDetailsInformation: ArticleStockManagement;
|
|
36
38
|
stockStatus: StockStatus[];
|
|
@@ -54,8 +56,8 @@ export declare class StockLocationComponent extends BaseStockComponent implement
|
|
|
54
56
|
handleStockTransferClick(event: ArticleDetailsBo): void;
|
|
55
57
|
onRowSelected(row: ArticleDetailsBo): void;
|
|
56
58
|
onOkClickSendLocations(row: ArticleDetailsBo): void;
|
|
59
|
+
handleDeleteRow(row: ArticleDetailsBo): void;
|
|
57
60
|
handleAddRow(): void;
|
|
58
|
-
handleDeleteRow(): void;
|
|
59
61
|
handleOkClick(): void;
|
|
60
62
|
handleStockStatusChange(status: StockStatus): void;
|
|
61
63
|
handleStockStatusRemarkChange(remark: string): void;
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
display: flex;
|
|
235
235
|
justify-content: center;
|
|
236
236
|
gap: 5px;
|
|
237
|
-
|
|
237
|
+
position: relative;
|
|
238
238
|
.co-button {
|
|
239
239
|
width: 100px;
|
|
240
240
|
height: 36px;
|
|
@@ -608,5 +608,18 @@
|
|
|
608
608
|
color: #1A73E8;
|
|
609
609
|
text-decoration: underline;
|
|
610
610
|
}
|
|
611
|
+
.stock-transfer-add {
|
|
612
|
+
align-items: center;
|
|
613
|
+
.minimum-stock {
|
|
614
|
+
position: relative;
|
|
615
|
+
top: 0;
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
.minimum-stock {
|
|
619
|
+
position: absolute;
|
|
620
|
+
color: #ff4141;
|
|
621
|
+
font-size: 11px;
|
|
622
|
+
top: -20px;
|
|
623
|
+
}
|
|
611
624
|
}
|
|
612
625
|
}
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare enum Icon {
|
|
|
6
6
|
ArrowDown = "arrow_down",
|
|
7
7
|
ArrowDownRegular = "arrow_down_regular",
|
|
8
8
|
ArrowFatRight = "arrow_fat_right",
|
|
9
|
+
ArrowLeftRoundOpen = "arrow_left_round_open",
|
|
9
10
|
ArrowPointDown = "arrow_point_down",
|
|
10
11
|
ArrowPointLeft = "arrow_point_left",
|
|
11
12
|
ArrowPointRight = "arrow_point_right",
|
|
@@ -2848,6 +2848,7 @@ export declare class Dictionaries {
|
|
|
2848
2848
|
CONDITION_OPERATOR: string;
|
|
2849
2849
|
CONDITION_OPTIONS: string;
|
|
2850
2850
|
CONDITION_VALUE: string;
|
|
2851
|
+
"DELETE_STOCK_LINE?": string;
|
|
2851
2852
|
DEPARTMENT: string;
|
|
2852
2853
|
DEPARTMENTS: string;
|
|
2853
2854
|
DEPARTMENT_CODE: string;
|
|
@@ -5502,6 +5503,13 @@ export declare class Dictionaries {
|
|
|
5502
5503
|
CONTRA_ACCOUNT: string;
|
|
5503
5504
|
CONTRA_LEDGERACCOUNT_DOWNPAYMENT: string;
|
|
5504
5505
|
CONTRA_VAT: string;
|
|
5506
|
+
LAYOUT_SETTINGS: string;
|
|
5507
|
+
RELATION_LAYOUTS: string;
|
|
5508
|
+
RELATION_LAYOUTS_MESSAGE: string;
|
|
5509
|
+
SHIPPING_METHOD_SETTINGS: string;
|
|
5510
|
+
OVERRULE_VIA_EMAIL: string;
|
|
5511
|
+
OVERRULE_VIA_EDI: string;
|
|
5512
|
+
OVERRULE_VIA_PRINT: string;
|
|
5505
5513
|
WARRANTY: string;
|
|
5506
5514
|
WARRANTY_TYPE: string;
|
|
5507
5515
|
WASHING_SYMBOLS: string;
|
|
@@ -6555,6 +6563,8 @@ export declare class Dictionaries {
|
|
|
6555
6563
|
PASSWORD_ENTRY: string;
|
|
6556
6564
|
PASSWORD_ENTRY_FOR: string;
|
|
6557
6565
|
PASSWORD_FORGOTTEN: string;
|
|
6566
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
6567
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
6558
6568
|
PASSWORD_KIND: string;
|
|
6559
6569
|
PASSWORD_MUST_BE_10_CHARACTERS: string;
|
|
6560
6570
|
PASSWORD_MUST_BE_6_CHARACTERS: string;
|
|
@@ -8923,6 +8933,7 @@ export declare class Dictionaries {
|
|
|
8923
8933
|
STAFF_DOCTOR: string;
|
|
8924
8934
|
STAFF_DOCTORS: string;
|
|
8925
8935
|
STANDARD: string;
|
|
8936
|
+
STOCK_BELOW_ZERO_TEXT: string;
|
|
8926
8937
|
LATE_PURCHASE: string;
|
|
8927
8938
|
LAYERED_ARTICLES: string;
|
|
8928
8939
|
LAYER_CONFIGURATION: string;
|
|
@@ -13295,6 +13306,7 @@ export declare class Dictionaries {
|
|
|
13295
13306
|
DELETE_REMARK_QUESTION: string;
|
|
13296
13307
|
DELETE_SHOPPING_CART_QUESTION: string;
|
|
13297
13308
|
DELETE_STATE_AND_TRANSITIONS_QUESTION: string;
|
|
13309
|
+
"DELETE_STOCK_LINE?": string;
|
|
13298
13310
|
DELETE_STORAGE_CAR: string;
|
|
13299
13311
|
DELETE_TASK: string;
|
|
13300
13312
|
DELETE_TRANSACTION: string;
|
|
@@ -14738,6 +14750,7 @@ export declare class Dictionaries {
|
|
|
14738
14750
|
LAYOUT2: string;
|
|
14739
14751
|
LAYOUT: string;
|
|
14740
14752
|
LAYOUTS: string;
|
|
14753
|
+
LAYOUT_SETTINGS: string;
|
|
14741
14754
|
LEAD_TIME: string;
|
|
14742
14755
|
LEAST_EXPENSIVE_PRODUCT: string;
|
|
14743
14756
|
LEAVE: string;
|
|
@@ -16123,6 +16136,9 @@ export declare class Dictionaries {
|
|
|
16123
16136
|
OVERVIEW: string;
|
|
16124
16137
|
OVERVIEW_AND_PAYMENT: string;
|
|
16125
16138
|
OVERVIEW_TRANSFERS: string;
|
|
16139
|
+
OVERRULE_VIA_EMAIL: string;
|
|
16140
|
+
OVERRULE_VIA_EDI: string;
|
|
16141
|
+
OVERRULE_VIA_PRINT: string;
|
|
16126
16142
|
OVER_COVERAGE_PERCENTAGE: string;
|
|
16127
16143
|
OWNER: string;
|
|
16128
16144
|
OWN_REFERENCE: string;
|
|
@@ -16189,6 +16205,8 @@ export declare class Dictionaries {
|
|
|
16189
16205
|
PASSWORD_ENTRY: string;
|
|
16190
16206
|
PASSWORD_ENTRY_FOR: string;
|
|
16191
16207
|
PASSWORD_FORGOTTEN: string;
|
|
16208
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
16209
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
16192
16210
|
PASSWORD_KIND: string;
|
|
16193
16211
|
PASSWORD_MUST_BE_10_CHARACTERS: string;
|
|
16194
16212
|
PASSWORD_MUST_CONTAIN_LETTER_NUMBER_SPECIAL: string;
|
|
@@ -17001,6 +17019,8 @@ export declare class Dictionaries {
|
|
|
17001
17019
|
RELATION_DEPENDANT_TEMPLATE: string;
|
|
17002
17020
|
RELATION_DISCOUNT: string;
|
|
17003
17021
|
RELATION_ID: string;
|
|
17022
|
+
RELATION_LAYOUTS: string;
|
|
17023
|
+
RELATION_LAYOUTS_MESSAGE: string;
|
|
17004
17024
|
RELATION_MANAGEMENT: string;
|
|
17005
17025
|
RELATION_NAME: string;
|
|
17006
17026
|
RELATION_NAME_KIND: string;
|
|
@@ -17725,6 +17745,8 @@ export declare class Dictionaries {
|
|
|
17725
17745
|
SHIPPING_COST_ARTICLE: string;
|
|
17726
17746
|
SHIPPING_COST_LINE: string;
|
|
17727
17747
|
SHIPPING_DATE: string;
|
|
17748
|
+
SHIPPING_METHOD_SETTINGS: string;
|
|
17749
|
+
SHIPPING_METHOD_STANDARD_SETTINGS: string;
|
|
17728
17750
|
SHOPPING_CART: string;
|
|
17729
17751
|
SHOPPING_CART_ADD: string;
|
|
17730
17752
|
SHOPPING_CART_CHECKOUT: string;
|
|
@@ -17995,6 +18017,7 @@ export declare class Dictionaries {
|
|
|
17995
18017
|
STOCKTAGSWINDOW: string;
|
|
17996
18018
|
STOCK_ADJUSTMENTS: string;
|
|
17997
18019
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
18020
|
+
STOCK_BELOW_ZERO_TEXT: string;
|
|
17998
18021
|
STOCK_DATE: string;
|
|
17999
18022
|
STOCK_DETAILS: string;
|
|
18000
18023
|
STOCK_DIFFERENCES: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "257.1.
|
|
3
|
+
"version": "257.1.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"chart.js": "4.3.0",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@angular/common": ">=12.2.0",
|
|
11
11
|
"@angular/core": ">=12.2.0",
|
|
12
12
|
"@colijnit/articleapi": ">=257.1.0",
|
|
13
|
-
"@colijnit/mainapi": ">=257.1.
|
|
13
|
+
"@colijnit/mainapi": ">=257.1.2",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=257.1.0",
|
|
15
|
-
"@colijnit/ioneconnector": ">=257.1.
|
|
15
|
+
"@colijnit/ioneconnector": ">=257.1.10",
|
|
16
16
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
17
17
|
"@colijnit/relationapi": ">=1.0.14",
|
|
18
18
|
"pdf-lib": ">=1.17.1",
|