@colijnit/sharedcomponents 258.1.10 → 258.1.12
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 +82 -51
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.component.js +55 -47
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.module.js +3 -2
- package/esm2015/lib/components/files-upload/components/base-file-upload.component.js +3 -3
- package/esm2015/lib/components/files-upload/files-upload.component.js +15 -13
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +74 -63
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/custom-pdf/custom-pdf-dialog.component.d.ts +1 -0
- package/lib/components/custom-pdf/style/_layout.scss +12 -0
- package/lib/res/dictionary/dictionaries.d.ts +9 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export declare class CustomPdfDialogComponent implements OnInit, AfterViewInit {
|
|
|
24
24
|
};
|
|
25
25
|
fileBody: any;
|
|
26
26
|
fileStyle: string;
|
|
27
|
+
showLoader: boolean;
|
|
27
28
|
constructor(iconCacheService: IconCacheService, _sanitizer: DomSanitizer);
|
|
28
29
|
ngOnInit(): void;
|
|
29
30
|
ngAfterViewInit(): void;
|
|
@@ -16,6 +16,18 @@
|
|
|
16
16
|
background-color: #f8f8fa;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
+
|
|
20
|
+
.loader-container {
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: 0;
|
|
23
|
+
left: 0;
|
|
24
|
+
right: 0;
|
|
25
|
+
bottom: 0;
|
|
26
|
+
display: flex;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
align-items: center;
|
|
29
|
+
align-self: center;
|
|
30
|
+
}
|
|
19
31
|
}
|
|
20
32
|
}
|
|
21
33
|
|
|
@@ -12263,6 +12263,9 @@ export declare class Dictionaries {
|
|
|
12263
12263
|
MIN_NUMBER: string;
|
|
12264
12264
|
MIN_NUMBER_NON_ZERO: string;
|
|
12265
12265
|
MIN_STOCK: string;
|
|
12266
|
+
MIN_STOCK_DYNAMIC_CALCULATION: string;
|
|
12267
|
+
MIN_STOCK_FROM_DYNAMIC_CALCULATION: string;
|
|
12268
|
+
MIN_STOCK_ORDER_PARAM: string;
|
|
12266
12269
|
MIN_VALUE: string;
|
|
12267
12270
|
MIXMATCH: string;
|
|
12268
12271
|
MIX_AND_MATCH: string;
|
|
@@ -28184,6 +28187,9 @@ export declare class Dictionaries {
|
|
|
28184
28187
|
MIN_NUMBER: string;
|
|
28185
28188
|
MIN_NUMBER_NON_ZERO: string;
|
|
28186
28189
|
MIN_STOCK: string;
|
|
28190
|
+
MIN_STOCK_DYNAMIC_CALCULATION: string;
|
|
28191
|
+
MIN_STOCK_FROM_DYNAMIC_CALCULATION: string;
|
|
28192
|
+
MIN_STOCK_ORDER_PARAM: string;
|
|
28187
28193
|
MIN_VALUE: string;
|
|
28188
28194
|
MIX_AND_MATCH: string;
|
|
28189
28195
|
MOBILE: string;
|
|
@@ -29958,6 +29964,7 @@ export declare class Dictionaries {
|
|
|
29958
29964
|
RESERVATION_STICKER: string;
|
|
29959
29965
|
RESERVED: string;
|
|
29960
29966
|
RESET: string;
|
|
29967
|
+
RESET_CUSTOMER: string;
|
|
29961
29968
|
RESET_FILTER: string;
|
|
29962
29969
|
RESET_FILTERS: string;
|
|
29963
29970
|
RESET_GOOGLE_AUTHENTICATOR: string;
|
|
@@ -30645,6 +30652,7 @@ export declare class Dictionaries {
|
|
|
30645
30652
|
SHOW_STATUSBAR_TO_BE_PICKED: string;
|
|
30646
30653
|
SHOW_STATUSBAR_TRANSPORT_NOTIFICATION: string;
|
|
30647
30654
|
SHOW_SUGGESTIONS: string;
|
|
30655
|
+
SHOW_TILES_HOME_PAGE: string;
|
|
30648
30656
|
SHOW_TITLE: string;
|
|
30649
30657
|
SHOW_SUMMARY: string;
|
|
30650
30658
|
SHOW_WHEN: string;
|
|
@@ -31598,6 +31606,7 @@ export declare class Dictionaries {
|
|
|
31598
31606
|
WAREHOUSE_REQUIRED: string;
|
|
31599
31607
|
WAREHOUSE_ROWS: string;
|
|
31600
31608
|
WAREHOUSE_TRANSFERS: string;
|
|
31609
|
+
WAREHOUSE_TO_SOURCE_WAREHOUSE: string;
|
|
31601
31610
|
WARNING: string;
|
|
31602
31611
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
31603
31612
|
WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
|