@colijnit/sharedcomponents 257.1.7 → 257.1.9
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 +42 -7
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/statusbar/statusbar-popup.component.js +8 -3
- package/esm2015/lib/components/statusbar/statusbar.component.js +7 -2
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +10 -3
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +15 -1
- 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 +39 -6
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/statusbar/statusbar-popup.component.d.ts +3 -1
- package/lib/components/statusbar/statusbar.component.d.ts +3 -0
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +3 -1
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +1 -0
- package/lib/components/stock/style/_layout.scss +8 -0
- package/lib/components/stock/style/_material-definition.scss +1 -1
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +14 -4
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { StatusbarData } from './statusbar.component';
|
|
3
3
|
export declare enum GaugeColor {
|
|
4
4
|
Lowest = "#E0E0E0",
|
|
@@ -13,9 +13,11 @@ export declare class StatusbarPopupComponent implements OnInit {
|
|
|
13
13
|
defaultColor: '#e0e0e0';
|
|
14
14
|
statusbarData: StatusbarData[];
|
|
15
15
|
parentForOverlay: ElementRef;
|
|
16
|
+
statusClicked: EventEmitter<string>;
|
|
16
17
|
showClass: boolean;
|
|
17
18
|
doughnutCharts: ElementRef[];
|
|
18
19
|
ngOnInit(): void;
|
|
19
20
|
private _prepareChartData;
|
|
20
21
|
private _getColor;
|
|
22
|
+
handleStatusClicked(label: string): void;
|
|
21
23
|
}
|
|
@@ -5,6 +5,7 @@ export interface StatusbarData {
|
|
|
5
5
|
percentage: number;
|
|
6
6
|
count?: number;
|
|
7
7
|
totalCount?: number;
|
|
8
|
+
category?: string;
|
|
8
9
|
}
|
|
9
10
|
export declare class StatusbarComponent {
|
|
10
11
|
private _elementRef;
|
|
@@ -14,6 +15,7 @@ export declare class StatusbarComponent {
|
|
|
14
15
|
defaultColor: '#e0e0e0';
|
|
15
16
|
focusedStatusIndex: number;
|
|
16
17
|
statusbarClick: EventEmitter<void>;
|
|
18
|
+
statusClicked: EventEmitter<string>;
|
|
17
19
|
showClass(): boolean;
|
|
18
20
|
handleClick(event: MouseEvent): void;
|
|
19
21
|
popupShowing: boolean;
|
|
@@ -23,4 +25,5 @@ export declare class StatusbarComponent {
|
|
|
23
25
|
handleShowPopup(event: MouseEvent): void;
|
|
24
26
|
handleHidePopup(): void;
|
|
25
27
|
adjustTooHighPercentages(): void;
|
|
28
|
+
handleStatusClicked(label: string): void;
|
|
26
29
|
}
|
|
@@ -13,6 +13,7 @@ export declare class StockLocationPopupComponent {
|
|
|
13
13
|
private _stockService;
|
|
14
14
|
private _changeDetector;
|
|
15
15
|
readonly icons: typeof Icon;
|
|
16
|
+
private _selectedLocationNo;
|
|
16
17
|
editingRow: boolean;
|
|
17
18
|
showConfirmationDialog: boolean;
|
|
18
19
|
newStockLine: boolean;
|
|
@@ -20,7 +21,8 @@ export declare class StockLocationPopupComponent {
|
|
|
20
21
|
articleFlat: ArticleFlat;
|
|
21
22
|
articleDetailsInformation: ArticleStockManagement;
|
|
22
23
|
selectedWarehouse: StockManagementWarehouses;
|
|
23
|
-
selectedLocationNo: string;
|
|
24
|
+
set selectedLocationNo(locationNo: string);
|
|
25
|
+
get selectedLocationNo(): string;
|
|
24
26
|
articleStockInfo: ArticleDetailsBo[];
|
|
25
27
|
togglePopupEvent: EventEmitter<void>;
|
|
26
28
|
saveEvent: EventEmitter<boolean>;
|
|
@@ -55,6 +55,7 @@ export declare class StockLocationComponent extends BaseStockComponent implement
|
|
|
55
55
|
onRowSelected(row: ArticleDetailsBo): void;
|
|
56
56
|
onOkClickSendLocations(row: ArticleDetailsBo): void;
|
|
57
57
|
handleAddRow(): void;
|
|
58
|
+
handleDeleteRow(): void;
|
|
58
59
|
handleOkClick(): void;
|
|
59
60
|
handleStockStatusChange(status: StockStatus): void;
|
|
60
61
|
handleStockStatusRemarkChange(remark: string): 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 {
|
|
@@ -600,5 +603,10 @@
|
|
|
600
603
|
}
|
|
601
604
|
}
|
|
602
605
|
}
|
|
606
|
+
.clickable-link {
|
|
607
|
+
cursor: pointer;
|
|
608
|
+
color: #1A73E8;
|
|
609
|
+
text-decoration: underline;
|
|
610
|
+
}
|
|
603
611
|
}
|
|
604
612
|
}
|
|
@@ -16,7 +16,7 @@ $sc-stock-tab-link-buttons-pointer: pointer !default;
|
|
|
16
16
|
$sc-stock-grid-margin: 0 0 0 0 !default;
|
|
17
17
|
$sc-stock-simple-grid-column-header-wrapper-border-bottom: 1px solid black !default;
|
|
18
18
|
$sc-stock-info-container-max-width: 100% !default;
|
|
19
|
-
$sc-stock-info-container-width:
|
|
19
|
+
$sc-stock-info-container-width: 100% !default;
|
|
20
20
|
$sc-stock-info-container-padding: 40px 0 0 0 !default;
|
|
21
21
|
$sc-stock-info-container-height: 100% !default;
|
|
22
22
|
$sc-stock-image-height: 50px !default;
|
package/lib/enum/icon.enum.d.ts
CHANGED
|
@@ -5573,7 +5573,6 @@ export declare class Dictionaries {
|
|
|
5573
5573
|
REVENUE: string;
|
|
5574
5574
|
REVENUE_VAT: string;
|
|
5575
5575
|
REVIEW: string;
|
|
5576
|
-
REVISION: string;
|
|
5577
5576
|
RE_INTEGRATIE_START: string;
|
|
5578
5577
|
RE_LOGIN_TO_APPLY_CHANGES: string;
|
|
5579
5578
|
RGB_COLOR: string;
|
|
@@ -9695,7 +9694,7 @@ export declare class Dictionaries {
|
|
|
9695
9694
|
MESSAGE_CONNECTION_MODULE_CLOSED: string;
|
|
9696
9695
|
MESSAGE_CONNECTION_RESUMED: string;
|
|
9697
9696
|
MESSAGE_COPY_RECORD_QUESTION: string;
|
|
9698
|
-
|
|
9697
|
+
MESSAGE_COULD_NOT_CHECK_UNIQUE_BUILD_NUMBER: string;
|
|
9699
9698
|
MESSAGE_CUSTOMER_NOT_FOUND: string;
|
|
9700
9699
|
MESSAGE_DATA_ALREADY_DELETED: string;
|
|
9701
9700
|
MESSAGE_DATA_IS_BEING_LOADED: string;
|
|
@@ -11562,6 +11561,7 @@ export declare class Dictionaries {
|
|
|
11562
11561
|
ADD_RETAIL_FORMULA: string;
|
|
11563
11562
|
ADD_ROLE: string;
|
|
11564
11563
|
ADD_ROUGHNESS_MAP: string;
|
|
11564
|
+
ADD_NEW_SCALING_BONES_RECORD: string;
|
|
11565
11565
|
ADD_STUDIO: string;
|
|
11566
11566
|
ADD_TAGS: string;
|
|
11567
11567
|
ADD_TASK2: string;
|
|
@@ -11873,6 +11873,7 @@ export declare class Dictionaries {
|
|
|
11873
11873
|
AMOUNT_OF_EMPLOYEES: string;
|
|
11874
11874
|
AMOUNT_OF_WEEKS2: string;
|
|
11875
11875
|
AMOUNT_OF_WEEKS: string;
|
|
11876
|
+
AMOUNT_ON_STORAGE_UNIT: string;
|
|
11876
11877
|
AMOUNT_ORDERLINES: string;
|
|
11877
11878
|
AMOUNT_OUT: string;
|
|
11878
11879
|
AMOUNT_OUTSTANDING_CREDITORS: string;
|
|
@@ -11944,6 +11945,7 @@ export declare class Dictionaries {
|
|
|
11944
11945
|
ARTICLE: string;
|
|
11945
11946
|
ARTICLEGROUP: string;
|
|
11946
11947
|
ARTICLENR: string;
|
|
11948
|
+
ARTICLE_ACTIVE: string;
|
|
11947
11949
|
ARTICLES: string;
|
|
11948
11950
|
ARTICLES_ALREADY_PRESENT: string;
|
|
11949
11951
|
ARTICLES_GENERATED: string;
|
|
@@ -12198,6 +12200,8 @@ export declare class Dictionaries {
|
|
|
12198
12200
|
BOM_COMPONENTS: string;
|
|
12199
12201
|
BOM_CONFIGURATION: string;
|
|
12200
12202
|
BOM_PURCHASE_PRICE: string;
|
|
12203
|
+
BONEPAIR_1: string;
|
|
12204
|
+
BONEPAIR_2: string;
|
|
12201
12205
|
BONUS: string;
|
|
12202
12206
|
BOOK: string;
|
|
12203
12207
|
BOOKINGS: string;
|
|
@@ -14990,6 +14994,7 @@ export declare class Dictionaries {
|
|
|
14990
14994
|
MAX_USAGE_NUMBER: string;
|
|
14991
14995
|
MAX_USAGE_USER: string;
|
|
14992
14996
|
MAX_USERS: string;
|
|
14997
|
+
MAX_VALUE: string;
|
|
14993
14998
|
MAY: string;
|
|
14994
14999
|
MEASUREMENTS2: string;
|
|
14995
15000
|
MEASUREMENTS: string;
|
|
@@ -15070,7 +15075,7 @@ export declare class Dictionaries {
|
|
|
15070
15075
|
MESSAGE_CONNECTION_MODULE_CLOSED: string;
|
|
15071
15076
|
MESSAGE_CONNECTION_RESUMED: string;
|
|
15072
15077
|
MESSAGE_COPY_RECORD_QUESTION: string;
|
|
15073
|
-
|
|
15078
|
+
MESSAGE_COULD_NOT_CHECK_UNIQUE_BUILD_NUMBER: string;
|
|
15074
15079
|
MESSAGE_CUSTOMER_NOT_FOUND: string;
|
|
15075
15080
|
MESSAGE_DATA_ALREADY_DELETED: string;
|
|
15076
15081
|
MESSAGE_DATA_IS_BEING_LOADED: string;
|
|
@@ -15367,6 +15372,7 @@ export declare class Dictionaries {
|
|
|
15367
15372
|
MIN_NUMBER: string;
|
|
15368
15373
|
MIN_NUMBER_NON_ZERO: string;
|
|
15369
15374
|
MIN_STOCK: string;
|
|
15375
|
+
MIN_VALUE: string;
|
|
15370
15376
|
MIX_AND_MATCH: string;
|
|
15371
15377
|
MOBILE: string;
|
|
15372
15378
|
MODE: string;
|
|
@@ -15762,6 +15768,7 @@ export declare class Dictionaries {
|
|
|
15762
15768
|
NO_VALID_DEFAULT: string;
|
|
15763
15769
|
NO_VALID_EMPLOYEE_CONTRACT: string;
|
|
15764
15770
|
NO_VALID_EMPLOYEE_CONTRACT_TODAY: string;
|
|
15771
|
+
NO_VALID_INPUT: string;
|
|
15765
15772
|
NO_VALID_NUMBER: string;
|
|
15766
15773
|
NO_VALUE: string;
|
|
15767
15774
|
NO_VOLUME_DISTRIBUTE_ON_PRICE: string;
|
|
@@ -17196,7 +17203,6 @@ export declare class Dictionaries {
|
|
|
17196
17203
|
REVENUE: string;
|
|
17197
17204
|
REVENUE_VAT: string;
|
|
17198
17205
|
REVIEW: string;
|
|
17199
|
-
REVISION: string;
|
|
17200
17206
|
RE_INTEGRATIE_START: string;
|
|
17201
17207
|
RE_LOGIN_TO_APPLY_CHANGES: string;
|
|
17202
17208
|
RGB_COLOR: string;
|
|
@@ -17229,6 +17235,7 @@ export declare class Dictionaries {
|
|
|
17229
17235
|
ROUTE: string;
|
|
17230
17236
|
ROUTE_OF: string;
|
|
17231
17237
|
ROW: string;
|
|
17238
|
+
ROW_ADVICE: string;
|
|
17232
17239
|
ROWS: string;
|
|
17233
17240
|
ROW_BEING_EDITED: string;
|
|
17234
17241
|
ROW_NUMBER: string;
|
|
@@ -17358,6 +17365,8 @@ export declare class Dictionaries {
|
|
|
17358
17365
|
SAVING_SYSTEM_ACTION: string;
|
|
17359
17366
|
SAVING_WORKFLOW_DELETES_ALL_TEST_DATA: string;
|
|
17360
17367
|
SBI_CODE: string;
|
|
17368
|
+
SCALING_AXIS: string;
|
|
17369
|
+
SCALING_PARAMETERS: string;
|
|
17361
17370
|
SCANNED: string;
|
|
17362
17371
|
SCAN_ARTICLE2: string;
|
|
17363
17372
|
SCAN_ARTICLE: string;
|
|
@@ -18734,6 +18743,7 @@ export declare class Dictionaries {
|
|
|
18734
18743
|
WAREHOUSE_NUMBER: string;
|
|
18735
18744
|
WAREHOUSE_RECEIPT: string;
|
|
18736
18745
|
WAREHOUSE_REQUIRED: string;
|
|
18746
|
+
WAREHOUSE_ROWS: string;
|
|
18737
18747
|
WARNING: string;
|
|
18738
18748
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
18739
18749
|
WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
|