ca-components 2.1.143 → 2.1.151
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/fesm2022/ca-components.mjs +45 -21
- package/fesm2022/ca-components.mjs.map +1 -1
- package/index.d.ts +437 -7
- package/lib/components/ca-checkbox/ca-checkbox.component.scss +26 -3
- package/lib/components/ca-checkbox-selected-count/ca-checkbox-selected-count.component.scss +1 -1
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.html +1 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.ts +1 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.html +6 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.ts +1 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.ts +3 -1
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.ts +3 -1
- package/lib/utils/helpers/dropdown-menu-content-conditional-items.helper.ts +10 -2
- package/lib/utils/helpers/dropdown-menu-content.helper.ts +6 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1591,8 +1591,8 @@ declare class CaFilterComponent implements OnDestroy {
|
|
|
1591
1591
|
icon: string;
|
|
1592
1592
|
usaStates: ArrayStatus[];
|
|
1593
1593
|
canadaStates: ArrayStatus[];
|
|
1594
|
-
setFilter: EventEmitter<
|
|
1595
|
-
clearAll: EventEmitter<
|
|
1594
|
+
setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
1595
|
+
clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
1596
1596
|
private destroy$;
|
|
1597
1597
|
isSearchExpanded: boolean;
|
|
1598
1598
|
isFilterActive: boolean;
|
|
@@ -2643,6 +2643,22 @@ interface PayrollDeductionResponse {
|
|
|
2643
2643
|
updatedAt?: string;
|
|
2644
2644
|
}
|
|
2645
2645
|
|
|
2646
|
+
interface PayrollDeductionMinimalResponse {
|
|
2647
|
+
id?: number;
|
|
2648
|
+
description?: string | null;
|
|
2649
|
+
subtotal?: number;
|
|
2650
|
+
date?: string;
|
|
2651
|
+
recurring?: boolean;
|
|
2652
|
+
currentRecurrance?: number | null;
|
|
2653
|
+
}
|
|
2654
|
+
|
|
2655
|
+
interface PayrollCreditMinimalResponse {
|
|
2656
|
+
id?: number;
|
|
2657
|
+
description?: string | null;
|
|
2658
|
+
subtotal?: number;
|
|
2659
|
+
date?: string;
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2646
2662
|
interface PayrollLoadStopMinimalResponse {
|
|
2647
2663
|
id?: number;
|
|
2648
2664
|
loadStopName?: string | null;
|
|
@@ -2667,6 +2683,22 @@ interface PayrollLoadMinimalResponse {
|
|
|
2667
2683
|
rate?: number | null;
|
|
2668
2684
|
}
|
|
2669
2685
|
|
|
2686
|
+
interface PayrollMapLocation {
|
|
2687
|
+
loadNumber?: string | null;
|
|
2688
|
+
latitude?: number | null;
|
|
2689
|
+
longitude?: number | null;
|
|
2690
|
+
type?: EnumValue$1;
|
|
2691
|
+
orderInLoad?: number | null;
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
interface PayrollCommissionTotalSum {
|
|
2695
|
+
totalEmptyMiles?: number | null;
|
|
2696
|
+
totalLoadedMiles?: number | null;
|
|
2697
|
+
totalMiles?: number | null;
|
|
2698
|
+
totalRevenue?: number | null;
|
|
2699
|
+
totalSubtotal?: number | null;
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2670
2702
|
interface BrokerShortResponse {
|
|
2671
2703
|
id?: number;
|
|
2672
2704
|
businessName?: string | null;
|
|
@@ -2715,6 +2747,132 @@ interface LoadShortResponse {
|
|
|
2715
2747
|
fraudCheck?: boolean;
|
|
2716
2748
|
}
|
|
2717
2749
|
|
|
2750
|
+
interface BankResponse {
|
|
2751
|
+
id?: number;
|
|
2752
|
+
name?: string | null;
|
|
2753
|
+
logoName?: string | null;
|
|
2754
|
+
createdAt?: string;
|
|
2755
|
+
updatedAt?: string;
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
interface OwnerResponse {
|
|
2759
|
+
id?: number;
|
|
2760
|
+
name?: string | null;
|
|
2761
|
+
ownerType?: EnumValue$1;
|
|
2762
|
+
trailerCount?: number;
|
|
2763
|
+
truckCount?: number;
|
|
2764
|
+
ssnEin?: string | null;
|
|
2765
|
+
phone?: string | null;
|
|
2766
|
+
email?: string | null;
|
|
2767
|
+
note?: string | null;
|
|
2768
|
+
bank?: BankResponse;
|
|
2769
|
+
accountNumber?: string | null;
|
|
2770
|
+
routingNumber?: string | null;
|
|
2771
|
+
address?: AddressModel;
|
|
2772
|
+
files?: Array<FileResponse$1> | null;
|
|
2773
|
+
fileCount?: number | null;
|
|
2774
|
+
createdAt?: string;
|
|
2775
|
+
updatedAt?: string;
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
interface PerMileModel {
|
|
2779
|
+
emptyMile?: number | null;
|
|
2780
|
+
loadedMile?: number | null;
|
|
2781
|
+
perStop?: number | null;
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
interface NotificationModel {
|
|
2785
|
+
mailNotification?: boolean;
|
|
2786
|
+
pushNotification?: boolean;
|
|
2787
|
+
smsNotification?: boolean;
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
interface StateResponse {
|
|
2791
|
+
id?: number;
|
|
2792
|
+
countryType?: EnumValue$1;
|
|
2793
|
+
stateShortName?: string | null;
|
|
2794
|
+
stateName?: string | null;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
interface CdlRestrictionResponse {
|
|
2798
|
+
id?: number;
|
|
2799
|
+
code?: string | null;
|
|
2800
|
+
description?: string | null;
|
|
2801
|
+
}
|
|
2802
|
+
interface CdlEndorsementResponse {
|
|
2803
|
+
id?: number;
|
|
2804
|
+
code?: string | null;
|
|
2805
|
+
description?: string | null;
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
interface CdlResponse {
|
|
2809
|
+
id?: number;
|
|
2810
|
+
state?: StateResponse;
|
|
2811
|
+
cdlNumber?: string | null;
|
|
2812
|
+
issueDate?: string;
|
|
2813
|
+
expDate?: string;
|
|
2814
|
+
status?: number;
|
|
2815
|
+
dateDeactivated?: string | null;
|
|
2816
|
+
classType?: EnumValue$1;
|
|
2817
|
+
cdlRestrictions?: Array<CdlRestrictionResponse> | null;
|
|
2818
|
+
cdlEndorsements?: Array<CdlEndorsementResponse> | null;
|
|
2819
|
+
note?: string | null;
|
|
2820
|
+
createdAt?: string;
|
|
2821
|
+
updatedAt?: string;
|
|
2822
|
+
files?: Array<FileResponse$1> | null;
|
|
2823
|
+
expirationDays?: number | null;
|
|
2824
|
+
percentage?: number | null;
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
interface DriverShortResponse {
|
|
2828
|
+
id?: number;
|
|
2829
|
+
owner?: OwnerResponse;
|
|
2830
|
+
fullName?: string | null;
|
|
2831
|
+
phone?: string | null;
|
|
2832
|
+
email?: string | null;
|
|
2833
|
+
ssn?: string | null;
|
|
2834
|
+
status?: number;
|
|
2835
|
+
note?: string | null;
|
|
2836
|
+
avatarFile?: FileResponse$1;
|
|
2837
|
+
address?: AddressModel;
|
|
2838
|
+
dateOfBirth?: string | null;
|
|
2839
|
+
bank?: BankResponse;
|
|
2840
|
+
account?: string | null;
|
|
2841
|
+
routing?: string | null;
|
|
2842
|
+
useTruckAssistAch?: boolean;
|
|
2843
|
+
payType?: EnumValue$1;
|
|
2844
|
+
solo?: PerMileModel;
|
|
2845
|
+
team?: PerMileModel;
|
|
2846
|
+
perMileSolo?: number | null;
|
|
2847
|
+
perMileTeam?: number | null;
|
|
2848
|
+
commissionSolo?: number | null;
|
|
2849
|
+
commissionTeam?: number | null;
|
|
2850
|
+
soloFlatRate?: number | null;
|
|
2851
|
+
teamFlatRate?: number | null;
|
|
2852
|
+
twic?: boolean;
|
|
2853
|
+
twicExpirationDays?: number | null;
|
|
2854
|
+
fuelCard?: string | null;
|
|
2855
|
+
emergencyContactName?: string | null;
|
|
2856
|
+
emergencyContactPhone?: string | null;
|
|
2857
|
+
emergencyContactRelationship?: string | null;
|
|
2858
|
+
general?: NotificationModel;
|
|
2859
|
+
payroll?: NotificationModel;
|
|
2860
|
+
cdls?: Array<CdlResponse> | null;
|
|
2861
|
+
cdlNumber?: string | null;
|
|
2862
|
+
licenseStateShortName?: string | null;
|
|
2863
|
+
hired?: string | null;
|
|
2864
|
+
mvrExpirationDays?: number | null;
|
|
2865
|
+
mvrExpirationHours?: number | null;
|
|
2866
|
+
cdlExpirationHours?: number | null;
|
|
2867
|
+
medicalExpirationHours?: number | null;
|
|
2868
|
+
cdlExpirationDays?: number | null;
|
|
2869
|
+
medicalExpirationDays?: number | null;
|
|
2870
|
+
mvrPercentage?: number | null;
|
|
2871
|
+
cdlPercentage?: number | null;
|
|
2872
|
+
medicalPercentage?: number | null;
|
|
2873
|
+
fileCount?: number | null;
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2718
2876
|
interface PayrollPaymentResponse {
|
|
2719
2877
|
id?: number;
|
|
2720
2878
|
type?: EnumValue$1;
|
|
@@ -2724,6 +2882,172 @@ interface PayrollPaymentResponse {
|
|
|
2724
2882
|
updatedAt?: string;
|
|
2725
2883
|
}
|
|
2726
2884
|
|
|
2885
|
+
interface PayrollDriverCommissionByIdResponse {
|
|
2886
|
+
id?: number;
|
|
2887
|
+
driverId?: number;
|
|
2888
|
+
driverName?: string | null;
|
|
2889
|
+
driverAvatar?: FileResponse$1;
|
|
2890
|
+
payrollNumber?: string | null;
|
|
2891
|
+
period?: string;
|
|
2892
|
+
daysUntilPayment?: number;
|
|
2893
|
+
status?: EnumValue$1;
|
|
2894
|
+
total?: number | null;
|
|
2895
|
+
commission?: number;
|
|
2896
|
+
salary?: number | null;
|
|
2897
|
+
includedDeductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
2898
|
+
excludedDeductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
2899
|
+
totalDeduction?: number;
|
|
2900
|
+
includedCredits?: Array<PayrollCreditMinimalResponse> | null;
|
|
2901
|
+
excludedCredits?: Array<PayrollCreditMinimalResponse> | null;
|
|
2902
|
+
totalCredits?: number;
|
|
2903
|
+
includedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
2904
|
+
excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
2905
|
+
mapLocations?: Array<PayrollMapLocation> | null;
|
|
2906
|
+
sums?: PayrollCommissionTotalSum;
|
|
2907
|
+
}
|
|
2908
|
+
interface PayrollDriverCommissionResponse {
|
|
2909
|
+
id?: number;
|
|
2910
|
+
driver?: DriverShortResponse;
|
|
2911
|
+
payrollNumber?: string | null;
|
|
2912
|
+
period?: string;
|
|
2913
|
+
closedDate?: string | null;
|
|
2914
|
+
paidDate?: string | null;
|
|
2915
|
+
daysUntilPayment?: number;
|
|
2916
|
+
status?: EnumValue$1;
|
|
2917
|
+
mileageAmount?: number;
|
|
2918
|
+
salaryAmount?: number;
|
|
2919
|
+
creditAmount?: number;
|
|
2920
|
+
deductionAmount?: number;
|
|
2921
|
+
revenueAmount?: number;
|
|
2922
|
+
totalAmount?: number;
|
|
2923
|
+
loadsCount?: number;
|
|
2924
|
+
additionalDays?: number | null;
|
|
2925
|
+
previousLoad?: LoadShortResponse;
|
|
2926
|
+
lastLoad?: LoadShortResponse;
|
|
2927
|
+
stops?: Array<LoadShortResponse> | null;
|
|
2928
|
+
credits?: Array<PayrollCreditResponse> | null;
|
|
2929
|
+
deductions?: Array<PayrollDeductionResponse> | null;
|
|
2930
|
+
payments?: Array<PayrollPaymentResponse> | null;
|
|
2931
|
+
createdAt?: string;
|
|
2932
|
+
updatedAt?: string;
|
|
2933
|
+
}
|
|
2934
|
+
|
|
2935
|
+
interface PayrollBonusMinimalResponse {
|
|
2936
|
+
id?: number;
|
|
2937
|
+
description?: string | null;
|
|
2938
|
+
subtotal?: number;
|
|
2939
|
+
date?: string;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
interface PayrollPaymentsMinimalResponse {
|
|
2943
|
+
id?: number;
|
|
2944
|
+
description?: string | null;
|
|
2945
|
+
subtotal?: number;
|
|
2946
|
+
date?: string;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
interface PayrollFlatRateTotalSum {
|
|
2950
|
+
totalEmptyMiles?: number | null;
|
|
2951
|
+
totalLoadedMiles?: number | null;
|
|
2952
|
+
totalMiles?: number | null;
|
|
2953
|
+
totalRevenue?: number | null;
|
|
2954
|
+
totalSubtotal?: number | null;
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
interface PayrollDriverFlatRateClosedByIdResponse {
|
|
2958
|
+
id?: number;
|
|
2959
|
+
driverId?: number;
|
|
2960
|
+
driverName?: string | null;
|
|
2961
|
+
driverAvatar?: FileResponse$1;
|
|
2962
|
+
payrollNumber?: string | null;
|
|
2963
|
+
period?: string;
|
|
2964
|
+
status?: EnumValue$1;
|
|
2965
|
+
total?: number | null;
|
|
2966
|
+
salary?: number | null;
|
|
2967
|
+
rate?: string | null;
|
|
2968
|
+
flatPay?: number | null;
|
|
2969
|
+
deductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
2970
|
+
totalDeduction?: number;
|
|
2971
|
+
credits?: Array<PayrollCreditMinimalResponse> | null;
|
|
2972
|
+
totalCredits?: number;
|
|
2973
|
+
bonuses?: Array<PayrollBonusMinimalResponse> | null;
|
|
2974
|
+
totalBonuses?: number;
|
|
2975
|
+
loads?: Array<PayrollLoadMinimalResponse> | null;
|
|
2976
|
+
mapLocations?: Array<PayrollMapLocation> | null;
|
|
2977
|
+
sums?: PayrollFlatRateTotalSum;
|
|
2978
|
+
totalPayments?: number;
|
|
2979
|
+
payments?: Array<PayrollPaymentsMinimalResponse> | null;
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
type PayrollDeadlinePeriod = 'Pending' | 'Ready' | 'Past';
|
|
2983
|
+
declare const PayrollDeadlinePeriod: {
|
|
2984
|
+
Pending: PayrollDeadlinePeriod;
|
|
2985
|
+
Ready: PayrollDeadlinePeriod;
|
|
2986
|
+
Past: PayrollDeadlinePeriod;
|
|
2987
|
+
};
|
|
2988
|
+
|
|
2989
|
+
interface PayrollDeadlineShortResponse {
|
|
2990
|
+
numberOfDays?: number;
|
|
2991
|
+
period?: PayrollDeadlinePeriod;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
interface MilesStopPayrollResponse {
|
|
2995
|
+
id?: number;
|
|
2996
|
+
order?: number;
|
|
2997
|
+
type?: EnumValue$1;
|
|
2998
|
+
location?: AddressModel;
|
|
2999
|
+
legMiles?: number;
|
|
3000
|
+
emptyMiles?: number;
|
|
3001
|
+
loadedMiles?: number;
|
|
3002
|
+
totalMiles?: number;
|
|
3003
|
+
travelHours?: number;
|
|
3004
|
+
travelMinutes?: number;
|
|
3005
|
+
payrollId?: number | null;
|
|
3006
|
+
loadId?: number | null;
|
|
3007
|
+
dateTimeFrom?: string;
|
|
3008
|
+
dateTimeTo?: string | null;
|
|
3009
|
+
duration?: {
|
|
3010
|
+
[key: string]: number;
|
|
3011
|
+
} | null;
|
|
3012
|
+
subtotal?: number;
|
|
3013
|
+
createdAt?: string;
|
|
3014
|
+
updatedAt?: string;
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
interface PayrollDriverMileageResponse {
|
|
3018
|
+
id?: number;
|
|
3019
|
+
driver?: DriverShortResponse;
|
|
3020
|
+
payrollNumber?: string | null;
|
|
3021
|
+
period?: string;
|
|
3022
|
+
closedDate?: string | null;
|
|
3023
|
+
paidDate?: string | null;
|
|
3024
|
+
status?: EnumValue$1;
|
|
3025
|
+
mileageAmount?: number;
|
|
3026
|
+
mileageEmpty?: number;
|
|
3027
|
+
mileageLoaded?: number;
|
|
3028
|
+
emptyMilesPay?: number;
|
|
3029
|
+
loadedMilesPay?: number;
|
|
3030
|
+
milesPay?: number;
|
|
3031
|
+
bonusAmount?: number;
|
|
3032
|
+
salaryAmount?: number;
|
|
3033
|
+
creditAmount?: number;
|
|
3034
|
+
deductionAmount?: number;
|
|
3035
|
+
totalAmount?: number;
|
|
3036
|
+
stopsCount?: number;
|
|
3037
|
+
loadsCount?: number;
|
|
3038
|
+
additionalDays?: number | null;
|
|
3039
|
+
payDeadline?: PayrollDeadlineShortResponse;
|
|
3040
|
+
previousMilesStop?: MilesStopPayrollResponse;
|
|
3041
|
+
lastMilesStop?: MilesStopPayrollResponse;
|
|
3042
|
+
stops?: Array<MilesStopPayrollResponse> | null;
|
|
3043
|
+
bonuses?: Array<PayrollBonusResponse> | null;
|
|
3044
|
+
credits?: Array<PayrollCreditResponse> | null;
|
|
3045
|
+
deductions?: Array<PayrollDeductionResponse> | null;
|
|
3046
|
+
payments?: Array<PayrollPaymentResponse> | null;
|
|
3047
|
+
createdAt?: string;
|
|
3048
|
+
updatedAt?: string;
|
|
3049
|
+
}
|
|
3050
|
+
|
|
2727
3051
|
interface PayrollFuelMinimalResponse {
|
|
2728
3052
|
id?: number;
|
|
2729
3053
|
description?: string | null;
|
|
@@ -2733,6 +3057,63 @@ interface PayrollFuelMinimalResponse {
|
|
|
2733
3057
|
date?: string;
|
|
2734
3058
|
}
|
|
2735
3059
|
|
|
3060
|
+
interface PayrollOwnerClosedResponse {
|
|
3061
|
+
id?: number;
|
|
3062
|
+
previousLoadId?: number | null;
|
|
3063
|
+
owner?: string | null;
|
|
3064
|
+
truckNumber?: string | null;
|
|
3065
|
+
truckType?: string | null;
|
|
3066
|
+
payrollNumber?: string | null;
|
|
3067
|
+
period?: string;
|
|
3068
|
+
closedDate?: string | null;
|
|
3069
|
+
status?: EnumValue$1;
|
|
3070
|
+
commission?: number | null;
|
|
3071
|
+
salary?: number | null;
|
|
3072
|
+
earnings?: number | null;
|
|
3073
|
+
debt?: number | null;
|
|
3074
|
+
deductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
3075
|
+
totalDeduction?: number | null;
|
|
3076
|
+
credits?: Array<PayrollCreditMinimalResponse> | null;
|
|
3077
|
+
totalCredits?: number | null;
|
|
3078
|
+
loads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3079
|
+
totalFuels?: number | null;
|
|
3080
|
+
fuels?: Array<PayrollFuelMinimalResponse> | null;
|
|
3081
|
+
totalTransactions?: number | null;
|
|
3082
|
+
transactions?: Array<PayrollPaymentsMinimalResponse> | null;
|
|
3083
|
+
mapLocations?: Array<PayrollMapLocation> | null;
|
|
3084
|
+
sums?: PayrollCommissionTotalSum;
|
|
3085
|
+
}
|
|
3086
|
+
|
|
3087
|
+
interface PayrollOwnerResponse {
|
|
3088
|
+
id?: number;
|
|
3089
|
+
previousLoadId?: number | null;
|
|
3090
|
+
owner?: string | null;
|
|
3091
|
+
truckNumber?: string | null;
|
|
3092
|
+
truckType?: string | null;
|
|
3093
|
+
payrollNumber?: string | null;
|
|
3094
|
+
period?: string;
|
|
3095
|
+
status?: number;
|
|
3096
|
+
total?: number | null;
|
|
3097
|
+
commission?: number | null;
|
|
3098
|
+
salary?: number | null;
|
|
3099
|
+
includedDeductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
3100
|
+
excludedDeductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
3101
|
+
totalDeduction?: number;
|
|
3102
|
+
includedCredits?: Array<PayrollCreditMinimalResponse> | null;
|
|
3103
|
+
excludedCredits?: Array<PayrollCreditMinimalResponse> | null;
|
|
3104
|
+
totalCredits?: number;
|
|
3105
|
+
includedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3106
|
+
excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3107
|
+
totalFuels?: number;
|
|
3108
|
+
includedFuels?: Array<PayrollFuelMinimalResponse> | null;
|
|
3109
|
+
excludedFuels?: Array<PayrollFuelMinimalResponse> | null;
|
|
3110
|
+
mapLocations?: Array<PayrollMapLocation> | null;
|
|
3111
|
+
sums?: PayrollCommissionTotalSum;
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
type ComponentData = PayrollDriverMileageResponse | PayrollDriverCommissionResponse | PayrollOwnerResponse | PayrollDriverCommissionByIdResponse | PayrollDriverFlatRateClosedByIdResponse | PayrollOwnerClosedResponse;
|
|
3115
|
+
type PaymentComponentData = PayrollBonusResponse[] | PayrollDeductionResponse[] | PayrollCreditResponse[] | PayrollFuelMinimalResponse[];
|
|
3116
|
+
|
|
2736
3117
|
interface DriverInfo {
|
|
2737
3118
|
fullName: string;
|
|
2738
3119
|
driverAvatar?: string;
|
|
@@ -2762,6 +3143,54 @@ interface ExtraPayments {
|
|
|
2762
3143
|
};
|
|
2763
3144
|
}
|
|
2764
3145
|
|
|
3146
|
+
type formattedComponentData = {
|
|
3147
|
+
amount: number;
|
|
3148
|
+
description: string;
|
|
3149
|
+
date: string;
|
|
3150
|
+
galons?: number;
|
|
3151
|
+
id?: number;
|
|
3152
|
+
};
|
|
3153
|
+
|
|
3154
|
+
interface PaymentSum {
|
|
3155
|
+
sum: number;
|
|
3156
|
+
type: string;
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
interface PayrollPeriodDriverResponse {
|
|
3160
|
+
id?: number;
|
|
3161
|
+
driverId?: number;
|
|
3162
|
+
driverName?: string | null;
|
|
3163
|
+
driverAvatar?: FileResponse$1 | null;
|
|
3164
|
+
periodStart?: string;
|
|
3165
|
+
periodEnd?: string;
|
|
3166
|
+
payrollNumber?: string | null;
|
|
3167
|
+
daysUntilPayment: number;
|
|
3168
|
+
mileagePay?: number;
|
|
3169
|
+
totalEarnings?: number;
|
|
3170
|
+
salary?: number | null;
|
|
3171
|
+
extraStopPay?: number;
|
|
3172
|
+
extraStopCount?: number;
|
|
3173
|
+
loadCount?: number;
|
|
3174
|
+
perMilesEntity?: {
|
|
3175
|
+
emptyMile: number;
|
|
3176
|
+
loadedMile: number;
|
|
3177
|
+
perStop: number;
|
|
3178
|
+
};
|
|
3179
|
+
includedDeductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
3180
|
+
excludedDeductions?: Array<PayrollDeductionMinimalResponse> | null;
|
|
3181
|
+
totalDeduction?: number;
|
|
3182
|
+
includedCredits?: Array<PayrollCreditMinimalResponse> | null;
|
|
3183
|
+
excludedCredits?: Array<PayrollCreditMinimalResponse> | null;
|
|
3184
|
+
totalCredits?: number;
|
|
3185
|
+
includedBonuses?: Array<PayrollBonusMinimalResponse> | null;
|
|
3186
|
+
excludedBonuses?: Array<PayrollBonusMinimalResponse> | null;
|
|
3187
|
+
totalBonus?: number;
|
|
3188
|
+
includedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3189
|
+
excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
|
|
3190
|
+
mapLocations?: Array<any> | null;
|
|
3191
|
+
sums?: any | null;
|
|
3192
|
+
}
|
|
3193
|
+
|
|
2765
3194
|
interface OptionModel {
|
|
2766
3195
|
id?: number;
|
|
2767
3196
|
number?: number;
|
|
@@ -4187,6 +4616,7 @@ declare class PickupDeliveryBlockComponent implements OnInit {
|
|
|
4187
4616
|
dispatchResponse: DispatchResponse | null;
|
|
4188
4617
|
isHoveringRow: boolean;
|
|
4189
4618
|
isDisabled: boolean;
|
|
4619
|
+
isAllDispatchBoardsSelected: boolean;
|
|
4190
4620
|
dropdownMenuAction: EventEmitter<IDropdownMenuOptionEmit>;
|
|
4191
4621
|
_searchStrings: ISearchQueryItem[];
|
|
4192
4622
|
_columnWidth: number;
|
|
@@ -4198,7 +4628,7 @@ declare class PickupDeliveryBlockComponent implements OnInit {
|
|
|
4198
4628
|
closePopover(t2: NgbPopover): void;
|
|
4199
4629
|
onDropdownMenuAction(action: IDropdownMenuOptionEmit): void;
|
|
4200
4630
|
static ɵfac: i0.ɵɵFactoryDeclaration<PickupDeliveryBlockComponent, never>;
|
|
4201
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PickupDeliveryBlockComponent, "app-ca-pickup-delivery-block", never, { "columnWidth": { "alias": "columnWidth"; "required": false; }; "searchStrings": { "alias": "searchStrings"; "required": false; }; "loads": { "alias": "loads"; "required": false; }; "dispatchResponse": { "alias": "dispatchResponse"; "required": false; }; "isHoveringRow": { "alias": "isHoveringRow"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "dropdownMenuAction": "dropdownMenuAction"; }, never, never, true, never>;
|
|
4631
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PickupDeliveryBlockComponent, "app-ca-pickup-delivery-block", never, { "columnWidth": { "alias": "columnWidth"; "required": false; }; "searchStrings": { "alias": "searchStrings"; "required": false; }; "loads": { "alias": "loads"; "required": false; }; "dispatchResponse": { "alias": "dispatchResponse"; "required": false; }; "isHoveringRow": { "alias": "isHoveringRow"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isAllDispatchBoardsSelected": { "alias": "isAllDispatchBoardsSelected"; "required": false; }; }, { "dropdownMenuAction": "dropdownMenuAction"; }, never, never, true, never>;
|
|
4202
4632
|
}
|
|
4203
4633
|
|
|
4204
4634
|
interface LongLat$1 {
|
|
@@ -9432,12 +9862,12 @@ declare class CaContactsCardComponent {
|
|
|
9432
9862
|
|
|
9433
9863
|
declare class DropdownMenuContentHelper {
|
|
9434
9864
|
static getPayrollDropdownContent(isOpenPayroll: boolean): IDropdownMenuItem[];
|
|
9435
|
-
static getPickupDeliveryDropdownContent(loadStatus: string): IDropdownMenuItem[];
|
|
9865
|
+
static getPickupDeliveryDropdownContent(loadStatus: string, isAllDispatchBoardsSelected: boolean): IDropdownMenuItem[];
|
|
9436
9866
|
}
|
|
9437
9867
|
|
|
9438
9868
|
declare class DropdownMenuContentConditionalItemsHelper {
|
|
9439
9869
|
static getConditionalItems(requestedItemTitles: string[], isSharedConditionalItems: boolean, modifiers?: Partial<IDropdownMenuItem>[]): IDropdownMenuItem[];
|
|
9440
|
-
static getPickupDeliveryModifierItems(loadStatus: string): Partial<IDropdownMenuItem>[];
|
|
9870
|
+
static getPickupDeliveryModifierItems(loadStatus: string, isAllDispatchBoardsSelected: boolean): Partial<IDropdownMenuItem>[];
|
|
9441
9871
|
}
|
|
9442
9872
|
|
|
9443
9873
|
declare class MethodsCalculationsHelper {
|
|
@@ -9557,5 +9987,5 @@ declare class CaToolbarTabSwitchComponent implements AfterViewInit {
|
|
|
9557
9987
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaToolbarTabSwitchComponent, "ca-toolbar-tab-switch", never, { "selectedTab": { "alias": "selectedTab"; "required": false; }; "data": { "alias": "data"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "tabSelected": "tabSelected"; }, never, never, true, never>;
|
|
9558
9988
|
}
|
|
9559
9989
|
|
|
9560
|
-
export { CaActivateModalComponent, CaActivityLogListComponent, CaAppTooltipV2Component, CaChartComponent, CaChartManagerComponent, CaCheckboxComponent, CaCheckboxSelectedCountComponent, CaCommentsComponent, CaComponentsLibModule, CaContactsCardComponent, CaCustomCardComponent, CaCustomScrollbarComponent, CaDeactivateModalComponent, CaDeleteModalComponent, CaDetailsDropdownComponent, CaDetailsTitleCardComponent, CaDropdownMenuComponent, CaFactoringDropdownComponent, CaFilesCountComponent, CaFilterComponent, CaFilterDropdownComponent, CaFilterListDropdownComponent, CaFilterStateDropdownComponent, CaFleetFilterComponent, CaFuelPricesRangeComponent, CaHeatmapUsaComponent, CaIconDropdownComponent, CaInputAddressDropdownComponent, CaInputComponent, CaInputDatetimePickerComponent, CaInputDropdownComponent, CaInputDropdownTestComponent, CaInputNoteComponent, CaInputRadiobuttonsComponent, CaItemsDropdownComponent, CaLastFuelPriceProgressComponent, CaLoadPickupDeliveryComponent, CaLoadStatusComponent, CaLoadStatusLogComponent, CaMainTableComponent, CaMapComponent, CaMapDropdownComponent, CaMapListCardComponent, CaMapListComponent, CaModalButtonComponent, CaModalComponent, CaModalItemsComponent, CaModalSpinnerComponent, CaMoveModalComponent, CaNoteComponent, CaNoteContainerComponent, CaPayrollListSummaryOverviewComponent, CaPayrollListSummaryOverviewTableComponent, CaPeriodContentComponent, CaProfileImageComponent, CaProgressBarV2Component, CaProgressExpirationComponent, CaRangeSliderComponent, CaRatingReviewComponent, CaResetTableModalComponent, CaRightSidePanelCompanyComponent, CaRightSidePanelComponent, CaRightSidePanelMenuComponent, CaRightSidePanelTopBarComponent, CaSearchMultipleStates2Component, CaSearchMultipleStatesComponent, CaSearchMultipleStatesService, CaShowMoreComponent, CaSortDropdownComponent, CaSortingCardDropdownComponent, CaSpinnerComponent, CaStatusChangeDropdownComponent, CaSvgPipe, CaTabSwitchComponent, CaTableCardViewComponent, CaToastMessagesComponent, CaTodoComponent, CaToolbarDropdownComponent, CaToolbarTabSwitchComponent, CaTooltipListComponent, CaTruckTrailerProgresBarComponent, CaUploadFilesComponent, CaVehicleListComponent, CaVoidModalComponent, ChartColorsStringEnum, ChartEventTypesStringEnum, ChartFontPropertiesStringEnum, ChartImagesStringEnum, ChartPluginIdsStringEnum, ConfirmationModalButtonConstants, CubicInterpolationStringEnum, DateFormatPipe, DateFromStringPipe, DateTimeHelper, DateWaitTimePipe, DispatchStatusColorPipe, DropdownLoadStatusColorPipe, DropdownMenuContentConditionalItemsHelper, DropdownMenuContentConstants, DropdownMenuContentHelper, DropdownWidthPipe, EChartAnnotation, EChartAnnotationType, EChartEventProperties, FilterBySearchTermPipe, FormatCityStatePipe, FormatCurrencyPipe, FormatDurationPipe, FuelPricesRangeConstants, FuelPricesRangePipe, GoogleMapEnum, GpsLocationConstants, GpsLocationHelper, GpsType, HighlightSearchPipe, InputTestComponent, LastFuelPriceProgressHelper, LoadStatusBackgroundColorPipe, LoadStatusColorPipe, LoadStatusColorsPipe, MapConstants, MapDropdownSvgRoutes, MapHelper, MapInfoWindowOptionsConstants, MapMarkerIconHelper, MapMarkerIconService, MapMarkerIconsConstants, MapOptionsConstants, MethodsCalculationsHelper, NFormatterPipe, NameInitialsPipe, PayrollTypeEnum, PickupDeliveryBlockComponent, PmItemPipe, ProgressBarComponent, ProgressBarLinePipe, SafeHtmlPipe, SearchMultipleStatesConstant, SelectedItemPipe, SortDropdownEnum, SortOrder, TableHighlightSearchTextPipe, ThousandFormatterPipe, ThousandSeparatorPipe, ThousandToShortFormatPipe, TimeFilterHelper, ToLowerCasePipe, ToolbarFilterStringEnum, TruckTrailerColorFinderPipe, TruncatePipe, UnitPositionPipe, UserHelper, UserNameInitialsPipe, eAnimationState, eChartTypesString, eColor, eCommonElement, eDateTimeFormats, eDispatchStatus, eDropZoneFileType, eDropdownMenu$1 as eDropdownMenu, eFileAction, eFileDropZoneAction, eFileSize, eFileType, eFileUploadPage, eFilterColor, eFilterDropdownEnum, eFilterSortingKey, eFilterTime, eFleetFilterItemType, eGeneralActions, eGpsHeadingDirection, eGpsMotionStatus, eLoadFilter, eLoadStatus, eMapMarkerStopType, eMapMarkerString, eModalButtonClassType, eModalButtonSize, eModalItems, ePeriodTitleType, ePlacement, ePosition, eReviewState, eSharedString, eStringPlaceholder, eStyleProperty, eStyling, eTemplateType, eThousandSeparatorFormat, eToastType, eTrailerName, eTruckNameString, eUnit, eVehicleList, emptyValueValidator, userInfoEnum, uuidv4 };
|
|
9561
|
-
export type { AddressData, AddressList, ColumnConfig, CommandProperties, CommandsHandler, IBaseDataset, ICaInput, ICaInputDateTimePicker, ICaInputWithDropdown, ICaMapProps, IChartAnnotation, IChartBoundaries, IChartCenterLabel, IChartConfiguration, IChartData, IChartDatasetHover, IChartLegendConfig, IChartLegendProperty, IColumnCheckAction, IComment, ICompanyUser, IConfirmationModalButtons, IContact, IContactDepartment, ICountry, IDocumentReviewInputEvent, IDropBackgroundEvent, IDropZoneConfig, IDropZoneOptionConfig, IDropZoneSettings, IDropdownItem, IDropdownMenuItem, IDropdownMenuOptionEmit, IFactoringCheckboxItem, IFactoringExportItem, IFileConfig, IFileEvent, IFileOptionConfig, IFilterAction, IFilterDropdownConfiguration, IFilterDropdownList, IFleetFilterData, IFleetFilterItemEmit, IFleetFilterTrailer, IFleetFilterTrailerType, IFleetFilterTruck, IFleetFilterTruckType, IGpsCurrentLocation, IGpsHeadingInfo, IGpsProgress, IIconDropdownConfig, IIconDropdownItem, IItemsDropdownConfig, IItemsDropdownList, IItemsRowTemplate, ILineDataset, IMapAreaFilter, IMapBounds, IMapBoundsZoom, IMapColor, IMapDashedRouteIcon, IMapDashedRouteStyle, IMapList, IMapMarkers, IMapMarkersIcon, IMapOptions, IMapPagination, IMapRoutePath, IMapSelectedMarkerData, IMapStyles, IMarkerLabel, IModalData, IModalItemsConfig, IMultipleInput, IProgressBarColorConfig, IProgressBarData, IRangeSliderConfig, IReviewFileConfig, IRouteLocation, IRoutePath, ISearchQueryItem, ISlider, ISortDropdownAction, ISortEmit, IState, ITableColumn, ITimeOptions, IUSerAvatarFile, IUploadFilesConfig, IUser, IVehicleListActionsEmit, IVehicleListConfig, InputAddressCommandsString, LiveTrackingBaseResponse, LoadDelivery, LoadListLoadStopResponse, LoadPickup, LoadStatusHistoryResponse, LoadStopLoadListResponse, LoadType, LongLat$1 as LongLat, MapDropdownClusterItem, MapDropdownContent, MapDropdownContentItem, MovementResponse, PayrollListSummaryOverview, RepairUnitType, SentAddressData, SortColumn, TableCardBodyActions, Tabs, VehicleListResponse };
|
|
9990
|
+
export { CaActivateModalComponent, CaActivityLogListComponent, CaAppTooltipV2Component, CaChartComponent, CaChartManagerComponent, CaCheckboxComponent, CaCheckboxSelectedCountComponent, CaCommentsComponent, CaComponentsLibModule, CaContactsCardComponent, CaCustomCardComponent, CaCustomScrollbarComponent, CaDeactivateModalComponent, CaDeleteModalComponent, CaDetailsDropdownComponent, CaDetailsTitleCardComponent, CaDropdownMenuComponent, CaFactoringDropdownComponent, CaFilesCountComponent, CaFilterComponent, CaFilterDropdownComponent, CaFilterListDropdownComponent, CaFilterStateDropdownComponent, CaFleetFilterComponent, CaFuelPricesRangeComponent, CaHeatmapUsaComponent, CaIconDropdownComponent, CaInputAddressDropdownComponent, CaInputComponent, CaInputDatetimePickerComponent, CaInputDropdownComponent, CaInputDropdownTestComponent, CaInputNoteComponent, CaInputRadiobuttonsComponent, CaItemsDropdownComponent, CaLastFuelPriceProgressComponent, CaLoadPickupDeliveryComponent, CaLoadStatusComponent, CaLoadStatusLogComponent, CaMainTableComponent, CaMapComponent, CaMapDropdownComponent, CaMapListCardComponent, CaMapListComponent, CaModalButtonComponent, CaModalComponent, CaModalItemsComponent, CaModalSpinnerComponent, CaMoveModalComponent, CaNoteComponent, CaNoteContainerComponent, CaPayrollListSummaryOverviewComponent, CaPayrollListSummaryOverviewTableComponent, CaPeriodContentComponent, CaProfileImageComponent, CaProgressBarV2Component, CaProgressExpirationComponent, CaRangeSliderComponent, CaRatingReviewComponent, CaResetTableModalComponent, CaRightSidePanelCompanyComponent, CaRightSidePanelComponent, CaRightSidePanelMenuComponent, CaRightSidePanelTopBarComponent, CaSearchMultipleStates2Component, CaSearchMultipleStatesComponent, CaSearchMultipleStatesService, CaShowMoreComponent, CaSortDropdownComponent, CaSortingCardDropdownComponent, CaSpinnerComponent, CaStatusChangeDropdownComponent, CaSvgPipe, CaTabSwitchComponent, CaTableCardViewComponent, CaToastMessagesComponent, CaTodoComponent, CaToolbarDropdownComponent, CaToolbarTabSwitchComponent, CaTooltipListComponent, CaTruckTrailerProgresBarComponent, CaUploadFilesComponent, CaVehicleListComponent, CaVoidModalComponent, ChartColorsStringEnum, ChartEventTypesStringEnum, ChartFontPropertiesStringEnum, ChartImagesStringEnum, ChartPluginIdsStringEnum, ConfirmationModalButtonConstants, CubicInterpolationStringEnum, DateFormatPipe, DateFromStringPipe, DateTimeHelper, DateWaitTimePipe, DispatchStatusColorPipe, DropdownLoadStatusColorPipe, DropdownMenuContentConditionalItemsHelper, DropdownMenuContentConstants, DropdownMenuContentHelper, DropdownWidthPipe, EChartAnnotation, EChartAnnotationType, EChartEventProperties, FilterBySearchTermPipe, FormatCityStatePipe, FormatCurrencyPipe, FormatDurationPipe, FuelPricesRangeConstants, FuelPricesRangePipe, GoogleMapEnum, GpsLocationConstants, GpsLocationHelper, GpsType, HighlightSearchPipe, InputTestComponent, LastFuelPriceProgressHelper, LoadStatusBackgroundColorPipe, LoadStatusColorPipe, LoadStatusColorsPipe, MapConstants, MapDropdownSvgRoutes, MapHelper, MapInfoWindowOptionsConstants, MapMarkerIconHelper, MapMarkerIconService, MapMarkerIconsConstants, MapOptionsConstants, MethodsCalculationsHelper, NFormatterPipe, NameInitialsPipe, PayrollDeadlinePeriod, PayrollTypeEnum, PickupDeliveryBlockComponent, PmItemPipe, ProgressBarComponent, ProgressBarLinePipe, SafeHtmlPipe, SearchMultipleStatesConstant, SelectedItemPipe, SortDropdownEnum, SortOrder, TableHighlightSearchTextPipe, ThousandFormatterPipe, ThousandSeparatorPipe, ThousandToShortFormatPipe, TimeFilterHelper, ToLowerCasePipe, ToolbarFilterStringEnum, TruckTrailerColorFinderPipe, TruncatePipe, UnitPositionPipe, UserHelper, UserNameInitialsPipe, eAnimationState, eChartTypesString, eColor, eCommonElement, eDateTimeFormats, eDispatchStatus, eDropZoneFileType, eDropdownMenu$1 as eDropdownMenu, eFileAction, eFileDropZoneAction, eFileSize, eFileType, eFileUploadPage, eFilterColor, eFilterDropdownEnum, eFilterSortingKey, eFilterTime, eFleetFilterItemType, eGeneralActions, eGpsHeadingDirection, eGpsMotionStatus, eLoadFilter, eLoadStatus, eMapMarkerStopType, eMapMarkerString, eModalButtonClassType, eModalButtonSize, eModalItems, ePeriodTitleType, ePlacement, ePosition, eReviewState, eSharedString, eStringPlaceholder, eStyleProperty, eStyling, eTemplateType, eThousandSeparatorFormat, eToastType, eTrailerName, eTruckNameString, eUnit, eVehicleList, emptyValueValidator, userInfoEnum, uuidv4 };
|
|
9991
|
+
export type { AddressData, AddressList, ColumnConfig, CommandProperties, CommandsHandler, ComponentData, DriverInfo, DriverMinimalResponse, DriverShortResponse, ExtraPayments, IBaseDataset, ICaInput, ICaInputDateTimePicker, ICaInputWithDropdown, ICaMapProps, IChartAnnotation, IChartBoundaries, IChartCenterLabel, IChartConfiguration, IChartData, IChartDatasetHover, IChartLegendConfig, IChartLegendProperty, IColumnCheckAction, IComment, ICompanyUser, IConfirmationModalButtons, IContact, IContactDepartment, ICountry, IDocumentReviewInputEvent, IDropBackgroundEvent, IDropZoneConfig, IDropZoneOptionConfig, IDropZoneSettings, IDropdownItem, IDropdownMenuItem, IDropdownMenuOptionEmit, IFactoringCheckboxItem, IFactoringExportItem, IFileConfig, IFileEvent, IFileOptionConfig, IFilterAction, IFilterDropdownConfiguration, IFilterDropdownList, IFleetFilterData, IFleetFilterItemEmit, IFleetFilterTrailer, IFleetFilterTrailerType, IFleetFilterTruck, IFleetFilterTruckType, IGpsCurrentLocation, IGpsHeadingInfo, IGpsProgress, IIconDropdownConfig, IIconDropdownItem, IItemsDropdownConfig, IItemsDropdownList, IItemsRowTemplate, ILineDataset, IMapAreaFilter, IMapBounds, IMapBoundsZoom, IMapColor, IMapDashedRouteIcon, IMapDashedRouteStyle, IMapList, IMapMarkers, IMapMarkersIcon, IMapOptions, IMapPagination, IMapRoutePath, IMapSelectedMarkerData, IMapStyles, IMarkerLabel, IModalData, IModalItemsConfig, IMultipleInput, IProgressBarColorConfig, IProgressBarData, IRangeSliderConfig, IReviewFileConfig, IRouteLocation, IRoutePath, ISearchQueryItem, ISlider, ISortDropdownAction, ISortEmit, IState, ITableColumn, ITimeOptions, IUSerAvatarFile, IUploadFilesConfig, IUser, IVehicleListActionsEmit, IVehicleListConfig, InputAddressCommandsString, LiveTrackingBaseResponse, LoadDelivery, LoadListLoadStopResponse, LoadPickup, LoadStatusHistoryResponse, LoadStopLoadListResponse, LoadType, LongLat$1 as LongLat, MapDropdownClusterItem, MapDropdownContent, MapDropdownContentItem, MilesStopPayrollResponse, MovementResponse, NotificationModel, PaymentComponentData, PaymentSum, PayrollBonusMinimalResponse, PayrollBonusResponse, PayrollCommissionTotalSum, PayrollCreditMinimalResponse, PayrollCreditResponse, PayrollDeadlineShortResponse, PayrollDeductionMinimalResponse, PayrollDeductionResponse, PayrollDriverCommissionByIdResponse, PayrollDriverCommissionResponse, PayrollDriverFlatRateClosedByIdResponse, PayrollDriverMileageResponse, PayrollFlatRateTotalSum, PayrollFuelMinimalResponse, PayrollListSummaryOverview, PayrollLoadMinimalResponse, PayrollLoadStopMinimalResponse, PayrollMapLocation, PayrollOwnerClosedResponse, PayrollOwnerResponse, PayrollPaymentResponse, PayrollPaymentsMinimalResponse, PayrollPeriodDriverResponse, PerMileModel, RepairUnitType, SentAddressData, SortColumn, TableCardBodyActions, Tabs, VehicleListResponse, formattedComponentData };
|
|
@@ -24,13 +24,26 @@
|
|
|
24
24
|
|
|
25
25
|
/* Checkbox input container */
|
|
26
26
|
.ca-checkbox-input-container {
|
|
27
|
-
transition: transform 0.
|
|
27
|
+
transition: transform 100ms cubic-bezier(0.46, 0.03, 0.51, 0.95);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&:not(.disabled):not(.disabled-blue):not(.disabled-regular-check) {
|
|
31
31
|
.ca-checkbox-input-container:hover {
|
|
32
|
-
transform: scale(1.
|
|
32
|
+
transform: scale(1.2857);
|
|
33
33
|
transform-origin: center;
|
|
34
|
+
|
|
35
|
+
.ca-mark-checked-icon {
|
|
36
|
+
transform: scale(calc(1 / 1.2857));
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ca-checkbox-input-container:active {
|
|
41
|
+
transform: scale(1.2857);
|
|
42
|
+
transform-origin: center;
|
|
43
|
+
|
|
44
|
+
.ca-mark-checked-icon {
|
|
45
|
+
transform: scale(calc(1 / 1.2857));
|
|
46
|
+
}
|
|
34
47
|
}
|
|
35
48
|
}
|
|
36
49
|
|
|
@@ -42,7 +55,13 @@
|
|
|
42
55
|
border-radius: 2px;
|
|
43
56
|
cursor: pointer;
|
|
44
57
|
|
|
45
|
-
transition:
|
|
58
|
+
transition:
|
|
59
|
+
background-color 100ms cubic-bezier(0.46, 0.03, 0.51, 0.95),
|
|
60
|
+
transform 100ms cubic-bezier(0.46, 0.03, 0.51, 0.95);
|
|
61
|
+
|
|
62
|
+
&-checked-icon {
|
|
63
|
+
transition: transform 100ms cubic-bezier(0.46, 0.03, 0.51, 0.95);
|
|
64
|
+
}
|
|
46
65
|
|
|
47
66
|
&.invalid {
|
|
48
67
|
background-color: $ta-red-3 !important;
|
|
@@ -69,6 +88,10 @@
|
|
|
69
88
|
background-color: $ta-blue-9 !important;
|
|
70
89
|
}
|
|
71
90
|
|
|
91
|
+
&:active .ca-checkbox:checked ~ .ca-mark,
|
|
92
|
+
.ca-checkbox-input-container:active .ca-checkbox:checked ~ .ca-mark {
|
|
93
|
+
background-color: $grey-4 !important;
|
|
94
|
+
}
|
|
72
95
|
|
|
73
96
|
&:hover .ca-checkbox ~ .ca-checkbox-label {
|
|
74
97
|
color: $ta-black;
|
|
@@ -60,6 +60,7 @@ export class PickupDeliveryBlockComponent implements OnInit {
|
|
|
60
60
|
@Input() dispatchResponse!: DispatchResponse | null;
|
|
61
61
|
@Input() isHoveringRow!: boolean;
|
|
62
62
|
@Input() isDisabled: boolean = false;
|
|
63
|
+
@Input() isAllDispatchBoardsSelected: boolean = true;
|
|
63
64
|
|
|
64
65
|
@Output() dropdownMenuAction: EventEmitter<IDropdownMenuOptionEmit> =
|
|
65
66
|
new EventEmitter<IDropdownMenuOptionEmit>();
|
|
@@ -89,6 +89,9 @@
|
|
|
89
89
|
<app-ca-load-single
|
|
90
90
|
[status]="focusedTab"
|
|
91
91
|
[activeLoad]="activeLoad"
|
|
92
|
+
[isAllDispatchBoardsSelected]="
|
|
93
|
+
isAllDispatchBoardsSelected
|
|
94
|
+
"
|
|
92
95
|
(dropdownMenuAction)="
|
|
93
96
|
onDropdownMenuAction($event)
|
|
94
97
|
"
|
|
@@ -108,6 +111,9 @@
|
|
|
108
111
|
[loads]="pendingLoads"
|
|
109
112
|
[isFocusingLoad]="returnButtonVisible"
|
|
110
113
|
[focusedTab]="StatusTypeEnum.PENDING"
|
|
114
|
+
[isAllDispatchBoardsSelected]="
|
|
115
|
+
isAllDispatchBoardsSelected
|
|
116
|
+
"
|
|
111
117
|
(dropdownMenuAction)="
|
|
112
118
|
onDropdownMenuAction($event)
|
|
113
119
|
"
|
|
@@ -53,6 +53,7 @@ export class LoadComponent {
|
|
|
53
53
|
@Input() focusedTab!: StatusTypeEnum;
|
|
54
54
|
@Input() loads!: DispatchGroupedLoadsResponse | null;
|
|
55
55
|
@Input() columnWidth!: number | null;
|
|
56
|
+
@Input() isAllDispatchBoardsSelected: boolean = true;
|
|
56
57
|
|
|
57
58
|
@Output() dropdownMenuAction: EventEmitter<IDropdownMenuOptionEmit> =
|
|
58
59
|
new EventEmitter<IDropdownMenuOptionEmit>();
|
|
@@ -57,6 +57,7 @@ export class LoadListComponent {
|
|
|
57
57
|
@Input() loads!: Array<LoadShortResponse>;
|
|
58
58
|
@Input() focusedTab!: StatusTypeEnum;
|
|
59
59
|
@Input() isFocusingLoad: boolean = false;
|
|
60
|
+
@Input() isAllDispatchBoardsSelected: boolean = true;
|
|
60
61
|
|
|
61
62
|
@Output() focusLoadEmitter = new EventEmitter<boolean>();
|
|
62
63
|
|
|
@@ -77,7 +78,8 @@ export class LoadListComponent {
|
|
|
77
78
|
|
|
78
79
|
this.dropdownOptions =
|
|
79
80
|
DropdownMenuContentHelper.getPickupDeliveryDropdownContent(
|
|
80
|
-
this.focusedTab
|
|
81
|
+
this.focusedTab,
|
|
82
|
+
this.isAllDispatchBoardsSelected
|
|
81
83
|
);
|
|
82
84
|
}
|
|
83
85
|
|