@colijnit/sharedcomponents 256.1.9 → 256.2.1
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 +49 -13
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- 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 +21 -1
- package/esm2015/lib/enum/icon.enum.js +3 -1
- package/esm2015/lib/model/icon-svg.js +3 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +57 -13
- 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/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 -0
- package/lib/components/stock/style/_layout.scss +17 -1
- package/lib/enum/icon.enum.d.ts +2 -0
- package/lib/res/dictionary/dictionaries.d.ts +11 -0
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -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[];
|
|
@@ -53,6 +55,7 @@ export declare class StockLocationComponent extends BaseStockComponent implement
|
|
|
53
55
|
openSendMethodDialog(data: any): void;
|
|
54
56
|
handleStockTransferClick(event: ArticleDetailsBo): void;
|
|
55
57
|
onRowSelected(row: ArticleDetailsBo): void;
|
|
58
|
+
handleDeleteRow(row: ArticleDetailsBo): void;
|
|
56
59
|
onOkClickSendLocations(row: ArticleDetailsBo): void;
|
|
57
60
|
handleAddRow(): void;
|
|
58
61
|
handleOkClick(): void;
|
|
@@ -192,6 +192,9 @@
|
|
|
192
192
|
display: flex;
|
|
193
193
|
flex: 1;
|
|
194
194
|
justify-content: flex-start;
|
|
195
|
+
co-list-of-values {
|
|
196
|
+
max-width: 190px;
|
|
197
|
+
}
|
|
195
198
|
}
|
|
196
199
|
|
|
197
200
|
.stock-location-right-group {
|
|
@@ -231,7 +234,7 @@
|
|
|
231
234
|
display: flex;
|
|
232
235
|
justify-content: center;
|
|
233
236
|
gap: 5px;
|
|
234
|
-
|
|
237
|
+
position: relative;
|
|
235
238
|
.co-button {
|
|
236
239
|
width: 100px;
|
|
237
240
|
height: 36px;
|
|
@@ -605,5 +608,18 @@
|
|
|
605
608
|
color: #1A73E8;
|
|
606
609
|
text-decoration: underline;
|
|
607
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
|
+
}
|
|
608
624
|
}
|
|
609
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",
|
|
@@ -66,6 +67,7 @@ export declare enum Icon {
|
|
|
66
67
|
TagRegular = "tag_regular",
|
|
67
68
|
Task = "task",
|
|
68
69
|
Trashbin = "trashbin",
|
|
70
|
+
TrashCanRegular = "trash_can_regular",
|
|
69
71
|
Xml = "xml",
|
|
70
72
|
XSolid = "x_solid"
|
|
71
73
|
}
|
|
@@ -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;
|
|
@@ -6555,6 +6556,8 @@ export declare class Dictionaries {
|
|
|
6555
6556
|
PASSWORD_ENTRY: string;
|
|
6556
6557
|
PASSWORD_ENTRY_FOR: string;
|
|
6557
6558
|
PASSWORD_FORGOTTEN: string;
|
|
6559
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
6560
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
6558
6561
|
PASSWORD_KIND: string;
|
|
6559
6562
|
PASSWORD_MUST_BE_10_CHARACTERS: string;
|
|
6560
6563
|
PASSWORD_MUST_BE_6_CHARACTERS: string;
|
|
@@ -8923,6 +8926,7 @@ export declare class Dictionaries {
|
|
|
8923
8926
|
STAFF_DOCTOR: string;
|
|
8924
8927
|
STAFF_DOCTORS: string;
|
|
8925
8928
|
STANDARD: string;
|
|
8929
|
+
STOCK_BELOW_ZERO_TEXT: string;
|
|
8926
8930
|
LATE_PURCHASE: string;
|
|
8927
8931
|
LAYERED_ARTICLES: string;
|
|
8928
8932
|
LAYER_CONFIGURATION: string;
|
|
@@ -11873,6 +11877,7 @@ export declare class Dictionaries {
|
|
|
11873
11877
|
AMOUNT_OF_EMPLOYEES: string;
|
|
11874
11878
|
AMOUNT_OF_WEEKS2: string;
|
|
11875
11879
|
AMOUNT_OF_WEEKS: string;
|
|
11880
|
+
AMOUNT_ON_STORAGE_UNIT: string;
|
|
11876
11881
|
AMOUNT_ORDERLINES: string;
|
|
11877
11882
|
AMOUNT_OUT: string;
|
|
11878
11883
|
AMOUNT_OUTSTANDING_CREDITORS: string;
|
|
@@ -13294,6 +13299,7 @@ export declare class Dictionaries {
|
|
|
13294
13299
|
DELETE_REMARK_QUESTION: string;
|
|
13295
13300
|
DELETE_SHOPPING_CART_QUESTION: string;
|
|
13296
13301
|
DELETE_STATE_AND_TRANSITIONS_QUESTION: string;
|
|
13302
|
+
"DELETE_STOCK_LINE?": string;
|
|
13297
13303
|
DELETE_STORAGE_CAR: string;
|
|
13298
13304
|
DELETE_TASK: string;
|
|
13299
13305
|
DELETE_TRANSACTION: string;
|
|
@@ -16188,6 +16194,8 @@ export declare class Dictionaries {
|
|
|
16188
16194
|
PASSWORD_ENTRY: string;
|
|
16189
16195
|
PASSWORD_ENTRY_FOR: string;
|
|
16190
16196
|
PASSWORD_FORGOTTEN: string;
|
|
16197
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
16198
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
16191
16199
|
PASSWORD_KIND: string;
|
|
16192
16200
|
PASSWORD_MUST_BE_10_CHARACTERS: string;
|
|
16193
16201
|
PASSWORD_MUST_CONTAIN_LETTER_NUMBER_SPECIAL: string;
|
|
@@ -17234,6 +17242,7 @@ export declare class Dictionaries {
|
|
|
17234
17242
|
ROUTE: string;
|
|
17235
17243
|
ROUTE_OF: string;
|
|
17236
17244
|
ROW: string;
|
|
17245
|
+
ROW_ADVICE: string;
|
|
17237
17246
|
ROWS: string;
|
|
17238
17247
|
ROW_BEING_EDITED: string;
|
|
17239
17248
|
ROW_NUMBER: string;
|
|
@@ -17993,6 +18002,7 @@ export declare class Dictionaries {
|
|
|
17993
18002
|
STOCKTAGSWINDOW: string;
|
|
17994
18003
|
STOCK_ADJUSTMENTS: string;
|
|
17995
18004
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
18005
|
+
STOCK_BELOW_ZERO_TEXT: string;
|
|
17996
18006
|
STOCK_DATE: string;
|
|
17997
18007
|
STOCK_DETAILS: string;
|
|
17998
18008
|
STOCK_DIFFERENCES: string;
|
|
@@ -18741,6 +18751,7 @@ export declare class Dictionaries {
|
|
|
18741
18751
|
WAREHOUSE_NUMBER: string;
|
|
18742
18752
|
WAREHOUSE_RECEIPT: string;
|
|
18743
18753
|
WAREHOUSE_REQUIRED: string;
|
|
18754
|
+
WAREHOUSE_ROWS: string;
|
|
18744
18755
|
WARNING: string;
|
|
18745
18756
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
18746
18757
|
WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "256.1
|
|
3
|
+
"version": "256.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"chart.js": "4.3.0",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@colijnit/articleapi": ">=256.1.0",
|
|
13
13
|
"@colijnit/mainapi": ">=256.1.2",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=256.1.8",
|
|
15
|
-
"@colijnit/ioneconnector": ">=256.1.
|
|
15
|
+
"@colijnit/ioneconnector": ">=256.1.4",
|
|
16
16
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
17
17
|
"@colijnit/relationapi": ">=1.0.14",
|
|
18
18
|
"pdf-lib": ">=1.17.1",
|