@colijnit/sharedcomponents 257.1.22 → 257.1.23
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 +80 -49
- 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 +38 -30
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.module.js +3 -2
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +41 -32
- 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 +6 -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;
|