ca-components 0.0.3 → 0.0.5
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/esm2022/lib/animations/in-out.animation.mjs +73 -0
- package/esm2022/lib/animations/state-header.animation.mjs +17 -0
- package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +1 -1
- package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +14 -14
- package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +1 -1
- package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +6 -6
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +119 -55
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +127 -111
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +1 -1
- package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +242 -0
- package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +35 -34
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +26 -25
- package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +178 -0
- package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +178 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +247 -0
- package/esm2022/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.mjs +15 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.mjs +39 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-conditions-set.pipe.mjs +47 -0
- package/esm2022/lib/components/ca-filters/pipes/filter-trailer-color.pipe.mjs +45 -0
- package/esm2022/lib/components/ca-filters/utils/constants/directive.constants.mjs +548 -0
- package/esm2022/lib/components/ca-filters/utils/constants/filter-icons-routes.constants.mjs +7 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +59 -45
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.mjs +45 -0
- package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +4 -4
- package/esm2022/lib/components/ca-input/enums/input-commands-action.enum.mjs +11 -0
- package/esm2022/lib/components/ca-input/enums/input-commands-type.enum.mjs +7 -0
- package/esm2022/lib/components/ca-input/models/command-click.model.mjs +2 -0
- package/esm2022/lib/components/ca-input/models/commands-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +225 -7
- package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +4 -2
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +6 -5
- package/esm2022/lib/components/ca-map/models/map.model.mjs +1 -1
- package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +11 -13
- package/esm2022/lib/components/ca-note/ca-note.component.mjs +34 -32
- package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +17 -17
- package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +25 -25
- package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +12 -12
- package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +7 -7
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +7 -7
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +18 -17
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +24 -19
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +21 -18
- package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +1 -1
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +3 -3
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +6 -3
- package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +3 -3
- package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +31 -31
- package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +20 -20
- package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +1 -1
- package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +2 -2
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +24 -20
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +1 -1
- package/esm2022/lib/enums/trailer-name-string.enum.mjs +18 -0
- package/esm2022/lib/models/card-models/card-table-data.model.mjs +1 -1
- package/esm2022/lib/models/table-models/all-table-animation.model.mjs +2 -0
- package/esm2022/lib/models/trailer-minimal-response.mjs +1 -1
- package/esm2022/lib/models/truck-minimal-response.mjs +1 -1
- package/esm2022/lib/models/user-selected.model.mjs +2 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +2 -2
- package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +4 -4
- package/esm2022/lib/services/truckassist-table.service.mjs +3 -1
- package/fesm2022/ca-components.mjs +6032 -527
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/animations/state-header.animation.d.ts +1 -0
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +2 -2
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +7 -7
- package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +5 -5
- package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +2 -2
- package/lib/components/ca-filters/ca-filter.component.d.ts +20 -14
- package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +10 -10
- package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +1 -1
- package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.d.ts +52 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +9 -9
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +6 -6
- package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.d.ts +35 -0
- package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.d.ts +35 -0
- package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.d.ts +46 -0
- package/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.d.ts +4 -0
- package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.d.ts +14 -0
- package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.d.ts +14 -0
- package/lib/components/ca-filters/pipes/filter-trailer-color.pipe.d.ts +7 -0
- package/lib/components/ca-filters/utils/constants/directive.constants.d.ts +8 -0
- package/lib/components/ca-filters/utils/constants/filter-icons-routes.constants.d.ts +6 -0
- package/lib/components/ca-input/ca-input.component.d.ts +16 -8
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +3 -3
- package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.d.ts +14 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +2 -2
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +2 -2
- package/lib/components/ca-input/enums/input-commands-action.enum.d.ts +9 -0
- package/lib/components/ca-input/enums/input-commands-type.enum.d.ts +5 -0
- package/lib/components/ca-input/models/command-click.model.d.ts +5 -0
- package/lib/components/ca-input/models/commands-event.model.d.ts +5 -0
- package/lib/components/ca-input/pipes/input-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +2 -2
- package/lib/components/ca-input/pipes/label-class.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +1 -1
- package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +1 -1
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +31 -5
- package/lib/components/ca-input/utils/input-svg-routes.d.ts +2 -0
- package/lib/components/ca-map/ca-map.component.d.ts +1 -1
- package/lib/components/ca-map/models/map.model.d.ts +2 -2
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +4 -29
- package/lib/components/ca-note/ca-note.component.d.ts +5 -5
- package/lib/components/ca-note-container/ca-note-container.component.d.ts +4 -4
- package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +2 -2
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +3 -3
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +5 -5
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +4 -4
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +6 -6
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +5 -5
- package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +3 -3
- package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +2 -2
- package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +1 -1
- package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +3 -3
- package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +3 -3
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +3 -3
- package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +1 -1
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +2 -2
- package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +1 -1
- package/lib/enums/trailer-name-string.enum.d.ts +16 -0
- package/lib/models/card-models/card-table-data.model.d.ts +3 -3
- package/lib/models/table-models/all-table-animation.model.d.ts +10 -0
- package/lib/models/trailer-minimal-response.d.ts +1 -1
- package/lib/models/truck-minimal-response.d.ts +2 -2
- package/lib/models/user-selected.model.d.ts +8 -0
- package/lib/pipes/thousand-to-short-format-pipe.d.ts +1 -1
- package/lib/services/truckassist-table.service.d.ts +2 -0
- package/package.json +1 -1
- package/src/assets/global_style/styles.scss +1 -0
- package/src/assets/scss/input-dropdown.scss +1876 -0
- package/src/assets/scss/popover.scss +89 -89
- package/src/assets/svg/common/trailers/ic_carhauler_stinger.svg +6 -0
- package/src/assets/svg/common/trailers/ic_trailer_carhauler.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_chassis.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_conestoga.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_container.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_dryvan.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_dumper.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_flatbed.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_low-boy.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_reefer.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_side-kit.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_step-deck.svg +1 -0
- package/src/assets/svg/common/trailers/ic_trailer_tanker.svg +6 -0
- package/src/assets/svg/common/trailers/ic_trailer_tanker_pneumatic.svg +6 -0
- package/src/assets/svg/common/trucks/ic_truck_box-truck.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_bus.svg +7 -0
- package/src/assets/svg/common/trucks/ic_truck_car-hauler.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_cargo-van.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_semi-truck.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_semi-wSleeper.svg +9 -0
- package/src/assets/svg/common/trucks/ic_truck_spotter.svg +1 -0
- package/src/assets/svg/common/trucks/ic_truck_tow-truck.svg +1 -0
- package/src/assets/svg/input/ic_dollar.svg +6 -0
- package/src/assets/svg/input/ic_pm_decrement.svg +4 -0
- package/src/assets/svg/input/ic_pm_increment.svg +4 -0
- package/esm2022/lib/animation/in-out.animation.mjs +0 -73
- /package/lib/{animation → animations}/in-out.animation.d.ts +0 -0
- /package/src/assets/svg/{common → input}/ic_search.svg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputClassPipe implements PipeTransform {
|
|
6
6
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, isTouchedInput: boolean, inputConfig: ICaInput, input: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputClearClassPipe implements PipeTransform {
|
|
6
6
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, incorrectValue: boolean, selectedDropdownLabelColor: boolean, value: string): {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputContainerClassPipe implements PipeTransform {
|
|
6
6
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, isTouchedInput: boolean, inputConfig: ICaInput, value: string): {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputPasswordEyeClassPipe implements PipeTransform {
|
|
6
6
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, isTouchedInput: boolean, value: string): {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
4
|
-
import { LabelColor } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
|
+
import { LabelColor } from "../models/label-color.model";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class InputPlaceholderIconClassPipe implements PipeTransform {
|
|
7
7
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, selectedDropdownLabelColor: LabelColor, isTouchedInput: boolean, value: string): {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { ICaInput } from '
|
|
2
|
+
import { ICaInput } from '../config/ca-input.config';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class LabelClassPipe implements PipeTransform {
|
|
5
5
|
transform(value: string, isFocusInput: boolean, inputConfig: ICaInput): {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
-
import { ICaInput } from "
|
|
2
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ShowClearPipe implements PipeTransform {
|
|
5
5
|
transform(inputConfig: ICaInput): boolean | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ShowInvalidDangerMarkPipe implements PipeTransform {
|
|
6
6
|
transform(inputConfig: ICaInput, getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, isTouchedInput: boolean, value: string): boolean | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { AbstractControl } from "@angular/forms";
|
|
3
|
-
import { ICaInput } from "
|
|
3
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ShowValidCheckPipe implements PipeTransform {
|
|
6
6
|
transform(getSuperControl: AbstractControl<any, any> | null, isFocusInput: boolean, inputConfig: ICaInput, value: string): boolean;
|
|
@@ -1,24 +1,50 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { ChangeDetectorRef, ElementRef } from "@angular/core";
|
|
2
3
|
import { Observable } from "rxjs";
|
|
3
|
-
import { ICaInput } from '@shared/components/ca-input/config/ca-input.config';
|
|
4
4
|
import { NgControl } from "@angular/forms";
|
|
5
|
+
import { ICaInput } from "../config/ca-input.config";
|
|
6
|
+
import { CommandsEvent } from "../models/commands-event.model";
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare class InputStateService {
|
|
7
9
|
private isFocusInputSubject;
|
|
8
10
|
isFocusInput$: Observable<boolean>;
|
|
9
11
|
private isTouchedInputSubject;
|
|
10
12
|
isTouchedInput$: Observable<boolean>;
|
|
13
|
+
private isVisibleCommandsSubject;
|
|
14
|
+
isVisibleCommands$: Observable<boolean>;
|
|
15
|
+
private commandEventSubject;
|
|
16
|
+
commandEvent$: Observable<CommandsEvent>;
|
|
17
|
+
combinedVariables$: Observable<[boolean, boolean, boolean]>;
|
|
18
|
+
private cdRef;
|
|
11
19
|
private inputConfig;
|
|
12
20
|
private input;
|
|
13
21
|
private superControl;
|
|
22
|
+
inputCommandsTimeout: NodeJS.Timeout | number;
|
|
14
23
|
constructor();
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
24
|
+
setIsFocusInput(value: boolean): void;
|
|
25
|
+
setIsTouchedInput(value: boolean): void;
|
|
26
|
+
setIsVisibleCommands(value: boolean): void;
|
|
27
|
+
setInputElementRef(input: ElementRef, cdRef: ChangeDetectorRef): void;
|
|
18
28
|
setSuperControl(superControl: NgControl): void;
|
|
19
29
|
setInputConfig(config: ICaInput): void;
|
|
30
|
+
setCommandEvent(value: CommandsEvent): void;
|
|
20
31
|
clearInput(event: Event): void;
|
|
21
32
|
transformText(event: Event): void;
|
|
33
|
+
onCommands(event: Event, type: string, action: string): void;
|
|
34
|
+
private handlePmIncrementDecrement;
|
|
35
|
+
private decrementPmValue;
|
|
36
|
+
private incrementPmValue;
|
|
37
|
+
private resetPmValue;
|
|
38
|
+
private handleConfirmCancel;
|
|
39
|
+
private confirmCommand;
|
|
40
|
+
private cancelCommand;
|
|
41
|
+
private handleMonths;
|
|
42
|
+
private decrementMonth;
|
|
43
|
+
private incrementMonth;
|
|
44
|
+
onFocus(event?: FocusEvent): void;
|
|
45
|
+
onBlur(event?: FocusEvent): void;
|
|
46
|
+
private blurOnCommands;
|
|
47
|
+
setInputCursorAtTheEnd(input: any, time?: number): void;
|
|
22
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputStateService, never>;
|
|
23
49
|
static ɵprov: i0.ɵɵInjectableDeclaration<InputStateService>;
|
|
24
50
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="google.maps" />
|
|
2
2
|
import { ChangeDetectorRef, EventEmitter, QueryList, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { GoogleMap, MapInfoWindow, MapMarker } from '@angular/google-maps';
|
|
4
|
-
import { IMapMarkers } from '
|
|
4
|
+
import { IMapMarkers } from '../ca-map/models/map.model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CaMapComponent {
|
|
7
7
|
cd: ChangeDetectorRef;
|
|
@@ -6,15 +6,15 @@ export interface IMapStories {
|
|
|
6
6
|
data: {
|
|
7
7
|
center: IRoutePath;
|
|
8
8
|
mapZoom: number;
|
|
9
|
-
|
|
9
|
+
mapOptions: IMapOptions;
|
|
10
10
|
clustermarkers?: IMapMarkers[];
|
|
11
11
|
routingMarkers?: IMapMarkers[];
|
|
12
|
-
mapOptions: IMapOptions;
|
|
13
12
|
routePath?: IMapRoutePath[];
|
|
14
13
|
isAccidentMap?: boolean;
|
|
15
14
|
stateBoundariesUrl?: {
|
|
16
15
|
url: string;
|
|
17
16
|
};
|
|
17
|
+
markers?: IMapMarkers[];
|
|
18
18
|
view?: string;
|
|
19
19
|
isUnitViewStops?: boolean;
|
|
20
20
|
isDriverMiles?: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { MapDropdownSvgRoutes } from
|
|
3
|
-
import { DropDownData, IDropDownActions } from
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { MapDropdownSvgRoutes } from '../ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes';
|
|
3
|
+
import { DropDownData, IDropDownActions } from '../ca-details-dropdown/models/detail-dropdown.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CaMapDropdownComponent {
|
|
6
6
|
isAccidentMap: boolean;
|
|
@@ -8,32 +8,7 @@ export declare class CaMapDropdownComponent {
|
|
|
8
8
|
isPopupShown: boolean;
|
|
9
9
|
isHidden: boolean;
|
|
10
10
|
isDropdownActive: boolean;
|
|
11
|
-
data:
|
|
12
|
-
id: number;
|
|
13
|
-
hasBorder: boolean;
|
|
14
|
-
mutedStyle: boolean;
|
|
15
|
-
name: string;
|
|
16
|
-
svgClass: string;
|
|
17
|
-
svgStyle: {
|
|
18
|
-
height: number;
|
|
19
|
-
width: number;
|
|
20
|
-
};
|
|
21
|
-
svgUrl: string;
|
|
22
|
-
title: string;
|
|
23
|
-
} | {
|
|
24
|
-
id: number;
|
|
25
|
-
mutedStyle: boolean;
|
|
26
|
-
name: string;
|
|
27
|
-
svgClass: string;
|
|
28
|
-
svgStyle: {
|
|
29
|
-
height: number;
|
|
30
|
-
width: number;
|
|
31
|
-
};
|
|
32
|
-
svgUrl: string;
|
|
33
|
-
title: string;
|
|
34
|
-
hasBorder?: undefined;
|
|
35
|
-
})[];
|
|
36
|
-
item: DropDownData;
|
|
11
|
+
data: DropDownData[];
|
|
37
12
|
openSideMenu(): void;
|
|
38
13
|
showHiddenData(): void;
|
|
39
14
|
callBodyAction(action: IDropDownActions): void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from
|
|
2
|
-
import { NgbPopover } from
|
|
3
|
-
import { NoteActiveOptions } from
|
|
4
|
-
import { CaNoteContainerComponent } from
|
|
5
|
-
import { NoteSvgRoutes } from
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { NoteActiveOptions } from '../../models/note-active-options.model';
|
|
4
|
+
import { CaNoteContainerComponent } from '../ca-note-container/ca-note-container.component';
|
|
5
|
+
import { NoteSvgRoutes } from '../ca-note/utils/svg-routes/note-svg-routes';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CaNoteComponent {
|
|
8
8
|
saveNoteValue: EventEmitter<any>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy, OnInit } from
|
|
2
|
-
import { NoteActiveOptions } from
|
|
3
|
-
import { NoteColors } from
|
|
4
|
-
import { NoteContainerSvgRoutes } from
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { NoteActiveOptions } from '../../models/note-active-options.model';
|
|
3
|
+
import { NoteColors } from '../ca-note-container/models/note-colors.model';
|
|
4
|
+
import { NoteContainerSvgRoutes } from '../ca-note-container/utils/svg-routes/note-container-svg-routes';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CaNoteContainerComponent implements OnInit, OnDestroy {
|
|
7
7
|
value: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NoteActiveOptions } from
|
|
2
|
-
import { NoteColors } from
|
|
1
|
+
import { NoteActiveOptions } from '../../../../models/note-active-options.model';
|
|
2
|
+
import { NoteColors } from '../../../ca-note-container/models/note-colors.model';
|
|
3
3
|
export declare class NoteConfigConstants {
|
|
4
4
|
static noteDarkColors: NoteColors[];
|
|
5
5
|
static noteLightColors: NoteColors[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { PayrollListSummaryOverviewSvgRoutes } from
|
|
3
|
-
import { PayrollListSummaryOverview } from
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { PayrollListSummaryOverviewSvgRoutes } from '../ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes';
|
|
3
|
+
import { PayrollListSummaryOverview } from '../../models/payroll-list-summary.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CaPayrollListSummaryOverviewComponent {
|
|
6
6
|
item: PayrollListSummaryOverview;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PayrollListSummaryOverview } from
|
|
1
|
+
import { PayrollListSummaryOverview } from '../../models/payroll-list-summary.model';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CaPayrollListSummaryOverviewTableComponent {
|
|
4
4
|
data: {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { OnInit } from
|
|
2
|
-
import { NgbModal } from
|
|
3
|
-
import { DispatchAssignedLoadListResponse } from
|
|
4
|
-
import { LoadShortResponse } from
|
|
5
|
-
import { StatusTypeEnum } from
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { DispatchAssignedLoadListResponse } from '../ca-pickup-delivery-block/models/dispatch-assigned-load-list-response';
|
|
4
|
+
import { LoadShortResponse } from '../ca-pickup-delivery-block/models/load-short-response';
|
|
5
|
+
import { StatusTypeEnum } from '../ca-pickup-delivery-block/models/status-types.enum';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class PickupDeliveryBlockComponent implements OnInit {
|
|
8
8
|
private modalService;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { DispatchAssignedLoadListResponse } from
|
|
2
|
-
import { LoadShortResponse } from
|
|
3
|
-
import { AnimationObject } from
|
|
4
|
-
import { StatusTypeEnum } from
|
|
1
|
+
import { DispatchAssignedLoadListResponse } from '../../../ca-pickup-delivery-block/models/dispatch-assigned-load-list-response';
|
|
2
|
+
import { LoadShortResponse } from '../../../ca-pickup-delivery-block/models/load-short-response';
|
|
3
|
+
import { AnimationObject } from '../../../ca-pickup-delivery-block/models/animation-model';
|
|
4
|
+
import { StatusTypeEnum } from '../../../ca-pickup-delivery-block/models/status-types.enum';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class LoadComponent {
|
|
7
7
|
focusedTab: StatusTypeEnum;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { LoadShortResponse } from
|
|
3
|
-
import { IItemList } from
|
|
4
|
-
import { PickupDeliverySvgRoutes } from
|
|
5
|
-
import { FormatCurrencyPipe } from
|
|
6
|
-
import { StatusTypeEnum } from
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { LoadShortResponse } from '../../../../../ca-pickup-delivery-block/models/load-short-response';
|
|
3
|
+
import { IItemList } from '../../../../../../models/dropdown.model';
|
|
4
|
+
import { PickupDeliverySvgRoutes } from '../../../../../ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes';
|
|
5
|
+
import { FormatCurrencyPipe } from '../../../../../../pipes/format-currency.pipe';
|
|
6
|
+
import { StatusTypeEnum } from '../../../../../ca-pickup-delivery-block/models/status-types.enum';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LoadListComponent {
|
|
9
9
|
formatCurrencyPipe: FormatCurrencyPipe;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { LoadShortResponse } from
|
|
2
|
-
import { IItemList } from
|
|
3
|
-
import { PickupDeliverySvgRoutes } from
|
|
4
|
-
import { FormatCurrencyPipe } from
|
|
5
|
-
import { StatusTypeEnum } from
|
|
1
|
+
import { LoadShortResponse } from '../../../../../ca-pickup-delivery-block/models/load-short-response';
|
|
2
|
+
import { IItemList } from '../../../../../../models/dropdown.model';
|
|
3
|
+
import { PickupDeliverySvgRoutes } from '../../../../../ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes';
|
|
4
|
+
import { FormatCurrencyPipe } from '../../../../../../pipes/format-currency.pipe';
|
|
5
|
+
import { StatusTypeEnum } from '../../../../../ca-pickup-delivery-block/models/status-types.enum';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class ActiveLoadComponent {
|
|
8
8
|
formatCurrencyPipe: FormatCurrencyPipe;
|
package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LoadShortResponse } from
|
|
1
|
+
import { LoadShortResponse } from '../../ca-pickup-delivery-block/models/load-short-response';
|
|
2
2
|
export interface DispatchAssignedLoadListResponse {
|
|
3
3
|
pending: Array<LoadShortResponse> | null;
|
|
4
4
|
closed: Array<LoadShortResponse> | null;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BrokerShortResponse } from
|
|
2
|
-
import { EnumValue } from
|
|
3
|
-
import { LoadStopShortResponse } from
|
|
1
|
+
import { BrokerShortResponse } from '../../ca-pickup-delivery-block/models/broker-short-response';
|
|
2
|
+
import { EnumValue } from '../../ca-pickup-delivery-block/models/enum-value';
|
|
3
|
+
import { LoadStopShortResponse } from '../../ca-pickup-delivery-block/models/load-stop-short-response';
|
|
4
4
|
export interface LoadShortResponse {
|
|
5
5
|
id: number;
|
|
6
6
|
loadNumber?: string | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EnumValue } from
|
|
2
|
-
import { ShipperShortResponse } from
|
|
1
|
+
import { EnumValue } from '../../ca-pickup-delivery-block/models/enum-value';
|
|
2
|
+
import { ShipperShortResponse } from '../../ca-pickup-delivery-block/models/shipper-short-response';
|
|
3
3
|
export interface LoadStopShortResponse {
|
|
4
4
|
loadNumber?: string | null;
|
|
5
5
|
stopType?: EnumValue;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnimationObject } from
|
|
1
|
+
import { AnimationObject } from '../../../ca-pickup-delivery-block/models/animation-model';
|
|
2
2
|
export declare class LoadTabsConstants {
|
|
3
3
|
static ANIMATION_OBJECT: AnimationObject;
|
|
4
4
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DispatchAssignedLoadListResponse } from
|
|
2
|
-
import { LoadShortResponse } from
|
|
3
|
-
import { StatusTypeEnum } from
|
|
1
|
+
import { DispatchAssignedLoadListResponse } from '../../../ca-pickup-delivery-block/models/dispatch-assigned-load-list-response';
|
|
2
|
+
import { LoadShortResponse } from '../../../ca-pickup-delivery-block/models/load-short-response';
|
|
3
|
+
import { StatusTypeEnum } from '../../../ca-pickup-delivery-block/models/status-types.enum';
|
|
4
4
|
export declare class PickupDeliveryHelper {
|
|
5
5
|
static setLoadDetails(loadDetails: DispatchAssignedLoadListResponse | null): {
|
|
6
6
|
load?: LoadShortResponse;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { NgbPopover } from
|
|
2
|
-
import { IGpsProgress } from
|
|
3
|
-
import { ProgressBarSvgRoutes } from
|
|
1
|
+
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
+
import { IGpsProgress } from '../ca-progress-bar/models/gps-progress.model';
|
|
3
|
+
import { ProgressBarSvgRoutes } from '../ca-progress-bar/utils/svg-routes/progress-bar-svg-routes';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ProgressBarComponent {
|
|
6
6
|
constructor();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { SearchMultipleStatesRoutes } from
|
|
3
|
-
import { ICaInput } from
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SearchMultipleStatesRoutes } from '../ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes';
|
|
3
|
+
import { ICaInput } from '../ca-input/config/ca-input.config';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CaSearchMultipleStatesComponent {
|
|
6
6
|
searchQueriesEmitter: EventEmitter<string[]>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { ICaInput } from '
|
|
1
|
+
import { ICaInput } from '../../../ca-input/config/ca-input.config';
|
|
2
2
|
export declare const inputConfig: ICaInput;
|
package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NgbPopover } from
|
|
2
|
-
import { ProgressDropdownData } from
|
|
1
|
+
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
2
|
+
import { ProgressDropdownData } from '../ca-truck-trailer-progress-bar/models/progress-dropdown-data.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CaTruckTrailerProgresBarComponent {
|
|
5
5
|
type: string;
|
package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CardDetails, PmTrailerProgressData, PmTruckProgressData } from
|
|
1
|
+
import { CardDetails, PmTrailerProgressData, PmTruckProgressData } from '../../../models/card-models/card-table-data.model';
|
|
2
2
|
export interface ProgressDropdownData {
|
|
3
3
|
row: CardDetails;
|
|
4
4
|
column: PmTruckProgressData | PmTrailerProgressData;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum TrailerNameStringEnum {
|
|
2
|
+
REEFER = "Reefer",
|
|
3
|
+
DRY_VAN = "Dry Van",
|
|
4
|
+
DUMPER = "Dumper",
|
|
5
|
+
TANKER = "Tanker",
|
|
6
|
+
PNEUMATIC_TANKER = "Pneumatic Tanker",
|
|
7
|
+
CAR_HAULER = "Car Hauler",
|
|
8
|
+
CAR_HAULER_STINGER = "Car Hauler Stinger",
|
|
9
|
+
CHASSIS = "Chassis",
|
|
10
|
+
LOW_BOY_RGN = "Low Boy / RGN",
|
|
11
|
+
STEP_DECK = "Step Deck",
|
|
12
|
+
FLAT_BED = "Flat Bed",
|
|
13
|
+
SIDE_KIT = "Side Kit",
|
|
14
|
+
CONESTOGA = "Conestoga",
|
|
15
|
+
CONTAINER = "Container"
|
|
16
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TableBodyColorLabel } from
|
|
2
|
-
import { TruckMinimalResponse } from
|
|
3
|
-
import { TrailerMinimalResponse } from
|
|
1
|
+
import { TableBodyColorLabel } from '../../models/table-models/table-body-color-label.model';
|
|
2
|
+
import { TruckMinimalResponse } from '../../models/truck-minimal-response';
|
|
3
|
+
import { TrailerMinimalResponse } from '../../models/trailer-minimal-response';
|
|
4
4
|
export interface Trucks {
|
|
5
5
|
truckNumber: string;
|
|
6
6
|
status: number;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TrailerTypeResponse } from '../trailer-type-response';
|
|
2
|
+
import { TruckTypeResponse } from '../truck-type-response';
|
|
3
|
+
export interface AllTableAnimationModel {
|
|
4
|
+
animation: string;
|
|
5
|
+
data: CombinedResponses[];
|
|
6
|
+
id: number;
|
|
7
|
+
tab: string;
|
|
8
|
+
}
|
|
9
|
+
type CombinedResponses = TruckTypeResponse | TrailerTypeResponse;
|
|
10
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ColorResponse } from
|
|
2
|
-
import { TruckTypeResponse } from
|
|
1
|
+
import { ColorResponse } from '../models/color-response';
|
|
2
|
+
import { TruckTypeResponse } from '../models/truck-type-response';
|
|
3
3
|
export interface TruckMinimalResponse {
|
|
4
4
|
id?: number;
|
|
5
5
|
truckNumber?: string | null;
|
|
@@ -2,6 +2,8 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class TruckassistTableService {
|
|
3
3
|
private setLoadStatusFilterOptions;
|
|
4
4
|
currentLoadStatusFilterOptions: import("rxjs").Observable<any>;
|
|
5
|
+
private actionAnimation;
|
|
6
|
+
currentActionAnimation: import("rxjs").Observable<any>;
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruckassistTableService, never>;
|
|
6
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<TruckassistTableService>;
|
|
7
9
|
}
|
package/package.json
CHANGED