@colijnit/sharedcomponents 259.1.14 → 259.1.16
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 +27 -6
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/linear-gauge/co-linear-gauge.component.js +11 -3
- package/esm2015/lib/components/statusbar/statusbar-popup.component.js +15 -3
- package/esm2015/lib/components/statusbar/statusbar.component.js +1 -1
- package/esm2015/lib/enum/gauge-color.enum.js +2 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/fesm2015/colijnit-sharedcomponents.js +27 -6
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/statusbar/statusbar-popup.component.d.ts +2 -0
- package/lib/components/statusbar/statusbar.component.d.ts +1 -1
- package/lib/enum/gauge-color.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { StatusbarData } from './statusbar.component';
|
|
3
3
|
export declare enum GaugeColor {
|
|
4
|
+
Disabled = "#e7e7e7",
|
|
4
5
|
Lowest = "#E0E0E0",
|
|
5
6
|
Low = "#fff7b8",
|
|
6
7
|
MediumLow = "#ffe367",
|
|
@@ -19,5 +20,6 @@ export declare class StatusbarPopupComponent implements OnInit {
|
|
|
19
20
|
ngOnInit(): void;
|
|
20
21
|
private _prepareChartData;
|
|
21
22
|
private _getColor;
|
|
23
|
+
private _getDataForChart;
|
|
22
24
|
handleStatusClicked(label: string): void;
|
|
23
25
|
}
|
|
@@ -2,7 +2,7 @@ import { ElementRef, EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { OverlayService } from '@colijnit/corecomponents_v12';
|
|
3
3
|
export interface StatusbarData {
|
|
4
4
|
label: string;
|
|
5
|
-
percentage
|
|
5
|
+
percentage?: number;
|
|
6
6
|
count?: number;
|
|
7
7
|
totalCount?: number;
|
|
8
8
|
category?: string;
|
|
@@ -15271,6 +15271,7 @@ export declare class Dictionaries {
|
|
|
15271
15271
|
PART_DELIVERY_NOTICE: string;
|
|
15272
15272
|
PART_DELIVERY_ORDERS: string;
|
|
15273
15273
|
PART_OF_CONCERN: string;
|
|
15274
|
+
PART_OF_BATCH: string;
|
|
15274
15275
|
PART_PRICE: string;
|
|
15275
15276
|
PART_PURCHASE_ORDERS: string;
|
|
15276
15277
|
PART_TIME_FACTOR: string;
|
|
@@ -25056,6 +25057,7 @@ export declare class Dictionaries {
|
|
|
25056
25057
|
BRANCH_ADDRESS: string;
|
|
25057
25058
|
BRANCH_BLOCKED: string;
|
|
25058
25059
|
BRANCH_CHANGED_WAREHOUSE_REQUIRED: string;
|
|
25060
|
+
BRANCH_IN_PURCHASE_ORDER: string;
|
|
25059
25061
|
BRANCH_NAME: string;
|
|
25060
25062
|
BRANCH_NR: string;
|
|
25061
25063
|
BRANCH_NUMBER: string;
|
|
@@ -28897,6 +28899,7 @@ export declare class Dictionaries {
|
|
|
28897
28899
|
ORDER_DISCOUNT_PERC: string;
|
|
28898
28900
|
ORDER_DISCOUNT_TOTAL: string;
|
|
28899
28901
|
ORDER_FORM: string;
|
|
28902
|
+
ORDER_FOR_WAREHOUSE: string;
|
|
28900
28903
|
ORDER_FULLY_PAID: string;
|
|
28901
28904
|
ORDER_DEPOSIT_FULLY_PAID: string;
|
|
28902
28905
|
ORDER_GROSS: string;
|
|
@@ -29067,6 +29070,7 @@ export declare class Dictionaries {
|
|
|
29067
29070
|
PART_DELIVERY_NOTICE: string;
|
|
29068
29071
|
PART_DELIVERY_ORDERS: string;
|
|
29069
29072
|
PART_OF_CONCERN: string;
|
|
29073
|
+
PART_OF_BATCH: string;
|
|
29070
29074
|
PART_PRICE: string;
|
|
29071
29075
|
PART_PURCHASE_ORDERS: string;
|
|
29072
29076
|
PART_TIME_FACTOR: string;
|