@colijnit/sharedcomponents 256.2.0 → 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 +47 -24
- 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 +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 +54 -26
- 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 -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 +8 -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,9 +55,9 @@ 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
|
-
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;
|
|
@@ -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;
|
|
@@ -13295,6 +13299,7 @@ export declare class Dictionaries {
|
|
|
13295
13299
|
DELETE_REMARK_QUESTION: string;
|
|
13296
13300
|
DELETE_SHOPPING_CART_QUESTION: string;
|
|
13297
13301
|
DELETE_STATE_AND_TRANSITIONS_QUESTION: string;
|
|
13302
|
+
"DELETE_STOCK_LINE?": string;
|
|
13298
13303
|
DELETE_STORAGE_CAR: string;
|
|
13299
13304
|
DELETE_TASK: string;
|
|
13300
13305
|
DELETE_TRANSACTION: string;
|
|
@@ -16189,6 +16194,8 @@ export declare class Dictionaries {
|
|
|
16189
16194
|
PASSWORD_ENTRY: string;
|
|
16190
16195
|
PASSWORD_ENTRY_FOR: string;
|
|
16191
16196
|
PASSWORD_FORGOTTEN: string;
|
|
16197
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
16198
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
16192
16199
|
PASSWORD_KIND: string;
|
|
16193
16200
|
PASSWORD_MUST_BE_10_CHARACTERS: string;
|
|
16194
16201
|
PASSWORD_MUST_CONTAIN_LETTER_NUMBER_SPECIAL: string;
|
|
@@ -17995,6 +18002,7 @@ export declare class Dictionaries {
|
|
|
17995
18002
|
STOCKTAGSWINDOW: string;
|
|
17996
18003
|
STOCK_ADJUSTMENTS: string;
|
|
17997
18004
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
18005
|
+
STOCK_BELOW_ZERO_TEXT: string;
|
|
17998
18006
|
STOCK_DATE: string;
|
|
17999
18007
|
STOCK_DETAILS: string;
|
|
18000
18008
|
STOCK_DIFFERENCES: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/sharedcomponents",
|
|
3
|
-
"version": "256.2.
|
|
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",
|