ca-components 2.0.14 → 2.0.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/assets/scss/background.scss +9 -0
- package/assets/scss/icons.scss +62 -0
- package/assets/scss/sizing.scss +1 -0
- package/assets/scss/text-selection.scss +15 -0
- package/assets/theme/variables.scss +1 -0
- package/fesm2022/ca-components.mjs +637 -284
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-load-pickup-delivery/ca-load-pickup-delivery.component.d.ts +9 -1
- package/lib/components/ca-load-pickup-delivery/interfaces/load-pickup-delivery.interface.d.ts +32 -0
- package/lib/components/ca-map/utils/constants/map-options.constants.d.ts +1 -0
- package/lib/components/ca-map/utils/helpers/map-marker-icon.helper.d.ts +9 -0
- package/lib/components/ca-map/utils/services/map-marker-icon.service.d.ts +2 -0
- package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +15 -20
- package/lib/components/ca-progress-bar/enums/progress-bar-string.enum.d.ts +1 -1
- package/lib/components/ca-progress-bar/interfaces/gps-heading-info.interface.d.ts +6 -0
- package/lib/components/ca-progress-bar/{models/gps-progress.model.d.ts → interfaces/gps-progress.interface.d.ts} +2 -1
- package/lib/components/ca-progress-bar/interfaces/index.d.ts +3 -0
- package/lib/components/ca-progress-bar/interfaces/progress-bar-data.interface.d.ts +17 -0
- package/lib/enums/gps-heading-direction.enum.d.ts +10 -0
- package/lib/enums/gps-motion-status.enum.d.ts +7 -0
- package/lib/enums/index.d.ts +2 -0
- package/lib/enums/shared-string.enum.d.ts +3 -1
- package/lib/enums/string-placeholder.enum.d.ts +1 -0
- package/lib/interfaces/gps-current-location/gps-current-location.interface.d.ts +20 -0
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/utils/constants/gps-location.constants.d.ts +19 -0
- package/lib/utils/constants/index.d.ts +1 -0
- package/lib/utils/helpers/gps-location.helper.d.ts +13 -0
- package/lib/utils/helpers/index.d.ts +1 -0
- package/lib/utils/svg-routes/shared-svg.routes.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/lib/components/ca-progress-bar/models/index.d.ts +0 -1
|
@@ -69,8 +69,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
69
69
|
canadaStates: ArrayStatus[];
|
|
70
70
|
sentAddressValue: EventEmitter<string>;
|
|
71
71
|
sentAddressData: EventEmitter<SentAddressData>;
|
|
72
|
-
setFilter: EventEmitter<
|
|
73
|
-
clearAll: EventEmitter<
|
|
72
|
+
setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
73
|
+
clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
74
74
|
private destroy$;
|
|
75
75
|
isSearchExpanded: boolean;
|
|
76
76
|
isFilterActive: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { eColor, eDateTimeFormats, ePosition, eSharedString, eThousandSeparatorFormat } from '../../enums';
|
|
3
|
+
import { eColor, eDateTimeFormats, ePosition, eSharedString, eStringPlaceholder, eThousandSeparatorFormat, eUnit } from '../../enums';
|
|
4
4
|
import { LoadDelivery, LoadListLoadStopResponse, LoadPickup } from './interfaces/load-pickup-delivery.interface';
|
|
5
5
|
import { LoadType } from './types';
|
|
6
6
|
import { SharedSvgRoutes } from '../../utils/svg-routes';
|
|
@@ -17,15 +17,23 @@ export declare class CaLoadPickupDeliveryComponent {
|
|
|
17
17
|
_columnWidth: number | null;
|
|
18
18
|
stopTypeCounts: Record<string, number> | null;
|
|
19
19
|
isPopoverOpen: boolean;
|
|
20
|
+
hoveredStopIndex: number;
|
|
21
|
+
gpsIcon: string | null;
|
|
22
|
+
gpsLocationIcon: string | null;
|
|
23
|
+
gpsTitle: string | null;
|
|
24
|
+
gpsTitleClass: string | null;
|
|
20
25
|
eColor: typeof eColor;
|
|
21
26
|
eSharedString: typeof eSharedString;
|
|
22
27
|
ePosition: typeof ePosition;
|
|
23
28
|
eDateTimeFormats: typeof eDateTimeFormats;
|
|
24
29
|
eThousandSeparatorFormat: typeof eThousandSeparatorFormat;
|
|
30
|
+
eUnit: typeof eUnit;
|
|
31
|
+
eStringPlaceholder: typeof eStringPlaceholder;
|
|
25
32
|
sharedSvgRoutes: typeof SharedSvgRoutes;
|
|
26
33
|
constructor();
|
|
27
34
|
openPopover(t2: NgbPopover): void;
|
|
28
35
|
closePopover(t2: NgbPopover): void;
|
|
36
|
+
onHoverStop(index: number): void;
|
|
29
37
|
private handleStopsData;
|
|
30
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaLoadPickupDeliveryComponent, never>;
|
|
31
39
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaLoadPickupDeliveryComponent, "app-ca-load-pickup-delivery", never, { "pickup": { "alias": "pickup"; "required": false; }; "delivery": { "alias": "delivery"; "required": false; }; "isHoveringRow": { "alias": "isHoveringRow"; "required": false; }; "loadType": { "alias": "loadType"; "required": false; }; "stopsData": { "alias": "stopsData"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; }, { "onPickupDeliveryClick": "onPickupDeliveryClick"; }, never, never, true, never>;
|
package/lib/components/ca-load-pickup-delivery/interfaces/load-pickup-delivery.interface.d.ts
CHANGED
|
@@ -16,6 +16,31 @@ export interface LoadListLoadStopResponse {
|
|
|
16
16
|
[key: string]: number;
|
|
17
17
|
} | null;
|
|
18
18
|
completedPercentage?: number | null;
|
|
19
|
+
truckMovement?: MovementResponse;
|
|
20
|
+
}
|
|
21
|
+
export interface MovementResponse {
|
|
22
|
+
truckInfo?: LiveTrackingBaseResponse;
|
|
23
|
+
}
|
|
24
|
+
export interface LiveTrackingBaseResponse {
|
|
25
|
+
id?: number;
|
|
26
|
+
deviceId?: string | null;
|
|
27
|
+
latitude?: number | null;
|
|
28
|
+
longitude?: number | null;
|
|
29
|
+
coordinates?: string | null;
|
|
30
|
+
altitude?: number | null;
|
|
31
|
+
speed?: number | null;
|
|
32
|
+
heading?: number | null;
|
|
33
|
+
headingString?: string | null;
|
|
34
|
+
location?: string | null;
|
|
35
|
+
motionStatus?: number | null;
|
|
36
|
+
motionStatusPeriod?: string | null;
|
|
37
|
+
type?: GpsType;
|
|
38
|
+
updateTime?: string | null;
|
|
39
|
+
startDate?: string | null;
|
|
40
|
+
stopDate?: string | null;
|
|
41
|
+
dateString?: string | null;
|
|
42
|
+
companyId?: number | null;
|
|
43
|
+
unitType?: number | null;
|
|
19
44
|
}
|
|
20
45
|
export interface LoadStopLoadListResponse {
|
|
21
46
|
stopType?: EnumValue;
|
|
@@ -34,4 +59,11 @@ export interface LoadStopLoadListResponse {
|
|
|
34
59
|
} | null;
|
|
35
60
|
shipper?: ShipperShortResponse;
|
|
36
61
|
avgWaitTime?: number | null;
|
|
62
|
+
isVisited?: boolean | null;
|
|
63
|
+
isCheckedIn?: boolean | null;
|
|
37
64
|
}
|
|
65
|
+
export type GpsType = 'DEVICE' | 'MOBILE';
|
|
66
|
+
export declare const GpsType: {
|
|
67
|
+
Device: GpsType;
|
|
68
|
+
Mobile: GpsType;
|
|
69
|
+
};
|
|
@@ -8,6 +8,7 @@ export declare class MapOptionsConstants {
|
|
|
8
8
|
static AREA_FILTER_DATA: IMapAreaFilter;
|
|
9
9
|
static ROUTING_MARKER_DARK_COLORS: Record<string, string>;
|
|
10
10
|
static ROUTING_MARKER_LIGHT_COLORS: Record<string, string>;
|
|
11
|
+
static ROUTING_PATH_DARK_COLORS: Record<string, string>;
|
|
11
12
|
static ROUTING_PATH_COLORS: Record<string, string>;
|
|
12
13
|
static ROUTING_DASHED_LINE_PATH: IMapDashedRouteIcon;
|
|
13
14
|
static ROUTING_DASHED_LINE_ICON: IMapDashedRouteStyle[];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { eGpsMotionStatus } from '../../../../enums';
|
|
1
2
|
export declare class MapMarkerIconHelper {
|
|
2
3
|
static getRoutingMarkerElement: (stopNumber: number, stopType: string, isStopChecked?: boolean, isLightMode?: boolean, labelName?: string, isIconMarker?: boolean, isShowLabelOnHover?: boolean, index?: number) => HTMLElement;
|
|
3
4
|
static getMilesMarkerElement: (stopNumber: number, stopType: string, labelName?: string, index?: number) => HTMLElement;
|
|
@@ -8,4 +9,12 @@ export declare class MapMarkerIconHelper {
|
|
|
8
9
|
static getRoutingMarkerIconSvg: (stopType: string) => string;
|
|
9
10
|
static getMapMarker(isFavorite?: boolean, isClosed?: boolean): string;
|
|
10
11
|
static getClusterMarker(count: number, isSelected?: boolean, isFuelMarker?: boolean): string;
|
|
12
|
+
static getCurrentLocationMarkerSvg(motionStatus: eGpsMotionStatus): string;
|
|
13
|
+
static getGpsMarkerElement(motionStatus: eGpsMotionStatus, headingDirection: string, isIgnition?: boolean, index?: number): HTMLElement;
|
|
14
|
+
static getGpsMarkerSvg(motionStatus: eGpsMotionStatus, headingDirection: string, isIgnition?: boolean): string;
|
|
15
|
+
static getGpsMovingMarkerSvg(headingDirection: string): string;
|
|
16
|
+
static getGpsStopMarkerSvg(motionStatus: eGpsMotionStatus, isIgnition?: boolean): string;
|
|
17
|
+
static getGpsAtStopMarkerElement(motionStatus: eGpsMotionStatus, stopNumber: number, stopType: string, isIgnition?: boolean, labelName?: string, isShowLabelOnHover?: boolean, id?: number): HTMLElement;
|
|
18
|
+
static getRoutingCircleMarkerSvg(stopType: string, stopNumber: number): string;
|
|
19
|
+
static createRoutingMarkerLabelElement(markerElement: HTMLElement, labelName: string, isShowLabelOnHover?: boolean): void;
|
|
11
20
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { RendererFactory2 } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { IMapMarkers } from '../../models';
|
|
4
|
+
import { eGpsMotionStatus } from '../../../../enums';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MapMarkerIconService {
|
|
6
7
|
private renderer;
|
|
@@ -15,6 +16,7 @@ export declare class MapMarkerIconService {
|
|
|
15
16
|
getMarkerIcon(markerId: number, labelName?: string, isClosed?: boolean, isFavorite?: boolean, isAlwaysSelected?: boolean, fuelMarkerClass?: string, secondLabelName?: string): HTMLElement;
|
|
16
17
|
getClusterMarkerIcon(markerData: IMapMarkers, isFuelMarker?: boolean): HTMLElement;
|
|
17
18
|
getRoutingMarkerIcon(markerData: IMapMarkers, stopNumber: number, stopType: string, isStopChecked?: boolean, isLightMode?: boolean, labelName?: string): HTMLElement;
|
|
19
|
+
getCurrentLocationMarkerIcon(markerData: IMapMarkers, motionStatus: eGpsMotionStatus): HTMLElement;
|
|
18
20
|
createClusterId(clusterData: IMapMarkers): number;
|
|
19
21
|
createRoutingId(markerData: IMapMarkers): number;
|
|
20
22
|
resetMarkersData(): void;
|
|
@@ -1,34 +1,23 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { IGpsProgress } from './
|
|
3
|
+
import { IGpsProgress, IProgressBarData } from './interfaces';
|
|
4
4
|
import { ICaMapProps } from '../ca-map/models';
|
|
5
5
|
import { ProgressBarSvgRoutes } from './utils/svg-routes';
|
|
6
|
+
import { SharedSvgRoutes } from '../../utils/svg-routes';
|
|
7
|
+
import { eColor, ePosition, eUnit } from '../../enums';
|
|
6
8
|
import { MapMarkerIconService } from '../ca-map/utils/services';
|
|
7
9
|
import * as i0 from "@angular/core";
|
|
8
10
|
export declare class ProgressBarComponent {
|
|
9
11
|
private markerIconService;
|
|
10
|
-
set
|
|
11
|
-
currentStop: IGpsProgress;
|
|
12
|
-
currentPosition: number;
|
|
13
|
-
totalMiles: number;
|
|
14
|
-
mileageInfo: string;
|
|
15
|
-
gpsTitle: string;
|
|
16
|
-
gpsIcon: string;
|
|
17
|
-
gpsInfo: {
|
|
18
|
-
gpsheading: string;
|
|
19
|
-
gpsTime: string;
|
|
20
|
-
gpsheadingColor?: string;
|
|
21
|
-
};
|
|
22
|
-
mileagesPercent: string;
|
|
23
|
-
gpsLocationIcon: string;
|
|
24
|
-
dispatchStatus: string;
|
|
25
|
-
isDropdown: boolean;
|
|
12
|
+
set progressBarData(values: IProgressBarData);
|
|
26
13
|
onOpenMap: EventEmitter<any>;
|
|
14
|
+
_progressBarData: IProgressBarData | null;
|
|
27
15
|
_gpsProgress: IGpsProgress[];
|
|
16
|
+
currentPosition: number;
|
|
28
17
|
gpsIconTopPosition: number;
|
|
29
|
-
hoveredGpsIcon: boolean;
|
|
30
18
|
hoveredGpsTitle: string | null;
|
|
31
19
|
hoveredMileageInfo: string | null;
|
|
20
|
+
hoveredGpsIcon: boolean;
|
|
32
21
|
staticConstant: {
|
|
33
22
|
completed: string;
|
|
34
23
|
completed_text: string;
|
|
@@ -38,14 +27,20 @@ export declare class ProgressBarComponent {
|
|
|
38
27
|
miles: string;
|
|
39
28
|
};
|
|
40
29
|
progressBarSvgRoutes: typeof ProgressBarSvgRoutes;
|
|
30
|
+
sharedSvgRoutes: typeof SharedSvgRoutes;
|
|
41
31
|
mapData: ICaMapProps;
|
|
32
|
+
eUnit: typeof eUnit;
|
|
33
|
+
ePosition: typeof ePosition;
|
|
34
|
+
eColor: typeof eColor;
|
|
35
|
+
get gpsStopsWithoutCurrentLocation(): IGpsProgress[];
|
|
42
36
|
constructor(markerIconService: MapMarkerIconService);
|
|
43
|
-
hoverStop(stop: IGpsProgress
|
|
37
|
+
hoverStop(stop: IGpsProgress): void;
|
|
44
38
|
leaveStop(): void;
|
|
45
39
|
showDropdownMap(t2: NgbPopover): void;
|
|
46
40
|
private setGpsProgress;
|
|
47
41
|
private setMapMarkers;
|
|
48
42
|
private calculateGpsIconPosition;
|
|
43
|
+
private setProgressData;
|
|
49
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "app-ca-progress-bar", never, { "
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "app-ca-progress-bar", never, { "progressBarData": { "alias": "progressBarData"; "required": false; }; }, { "onOpenMap": "onOpenMap"; }, never, never, true, never>;
|
|
51
46
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LongLat } from
|
|
1
|
+
import { LongLat } from '../../../models';
|
|
2
2
|
export interface IGpsProgress {
|
|
3
3
|
type: string;
|
|
4
4
|
heading: string;
|
|
@@ -18,4 +18,5 @@ export interface IGpsProgress {
|
|
|
18
18
|
};
|
|
19
19
|
isVisited?: boolean;
|
|
20
20
|
routeShape?: LongLat[];
|
|
21
|
+
motionStatus?: number | null;
|
|
21
22
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IGpsCurrentLocation } from '../../../interfaces';
|
|
2
|
+
import { IGpsHeadingInfo } from './gps-heading-info.interface';
|
|
3
|
+
import { IGpsProgress } from './gps-progress.interface';
|
|
4
|
+
export interface IProgressBarData {
|
|
5
|
+
currentLocation: IGpsCurrentLocation | null;
|
|
6
|
+
currentPosition: number;
|
|
7
|
+
currentStop: IGpsProgress;
|
|
8
|
+
mileageInfo: string;
|
|
9
|
+
mileagesPercent: string;
|
|
10
|
+
totalMiles: number;
|
|
11
|
+
gpsTitle: string;
|
|
12
|
+
gpsIcon: string;
|
|
13
|
+
gpsInfo: IGpsHeadingInfo;
|
|
14
|
+
gpsLocationIcon: string;
|
|
15
|
+
gpsProgress: IGpsProgress[];
|
|
16
|
+
dispatchStatus: string;
|
|
17
|
+
}
|
package/lib/enums/index.d.ts
CHANGED
|
@@ -17,3 +17,5 @@ export * from './shared-string.enum';
|
|
|
17
17
|
export * from './animation-state.enum';
|
|
18
18
|
export * from './date-time-formats.enum';
|
|
19
19
|
export * from './thousand-separator-format.enum';
|
|
20
|
+
export * from './gps-motion-status.enum';
|
|
21
|
+
export * from './gps-heading-direction.enum';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface IGpsCurrentLocation {
|
|
2
|
+
id?: number;
|
|
3
|
+
deviceId?: string | null;
|
|
4
|
+
latitude?: number | null;
|
|
5
|
+
longitude?: number | null;
|
|
6
|
+
coordinates?: string | null;
|
|
7
|
+
altitude?: number | null;
|
|
8
|
+
speed?: number | null;
|
|
9
|
+
heading?: number | null;
|
|
10
|
+
headingString?: string | null;
|
|
11
|
+
location?: string | null;
|
|
12
|
+
motionStatus?: number | null;
|
|
13
|
+
motionStatusPeriod?: string | null;
|
|
14
|
+
updateTime?: string | null;
|
|
15
|
+
startDate?: string | null;
|
|
16
|
+
stopDate?: string | null;
|
|
17
|
+
dateString?: string | null;
|
|
18
|
+
companyId?: number | null;
|
|
19
|
+
unitType?: number | null;
|
|
20
|
+
}
|
|
@@ -2,3 +2,4 @@ export * from './user/company-user.interface';
|
|
|
2
2
|
export * from './user/user-avatar-file.interface';
|
|
3
3
|
export * from './user/user.interface';
|
|
4
4
|
export * from './dropdown-menu/table-card-body-actions.interface';
|
|
5
|
+
export * from './gps-current-location/gps-current-location.interface';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { eGpsHeadingDirection, eGpsMotionStatus } from '../../enums';
|
|
2
|
+
export declare class GpsLocationConstants {
|
|
3
|
+
static GPS_DEVICE_COLORS: Record<eGpsMotionStatus, string>;
|
|
4
|
+
static GPS_DEVICE_HOVER_COLORS: Record<eGpsMotionStatus, string>;
|
|
5
|
+
static GPS_SVG_CLASSES: Record<eGpsMotionStatus, {
|
|
6
|
+
fill: string;
|
|
7
|
+
hover: string;
|
|
8
|
+
}>;
|
|
9
|
+
static GPS_SVG_FILL_COLORS: Record<eGpsMotionStatus, string>;
|
|
10
|
+
static GPS_TITLES: Record<eGpsMotionStatus, string>;
|
|
11
|
+
static GPS_TITLE_COLOR_CLASSES: Record<eGpsMotionStatus, string>;
|
|
12
|
+
static GPS_TITLE_DROPDOWN_COLOR_CLASSES: Record<eGpsMotionStatus, string>;
|
|
13
|
+
static GPS_HEADING_ROTATION_ANGLE: Record<eGpsHeadingDirection, number>;
|
|
14
|
+
static GPS_MOTION_TEXT: Record<eGpsMotionStatus, {
|
|
15
|
+
text: string;
|
|
16
|
+
textColorClass: string;
|
|
17
|
+
}>;
|
|
18
|
+
static GPS_IGNITION_SVG_CLASSES: Record<eGpsMotionStatus, string>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { eGpsHeadingDirection, eGpsMotionStatus } from '../../enums';
|
|
2
|
+
export declare class GpsLocationHelper {
|
|
3
|
+
static getGpsIcon: (motionStatus: eGpsMotionStatus, headingDirection: eGpsHeadingDirection, isIgnition?: boolean) => string;
|
|
4
|
+
static getGpsCurrentLocationIcon: (motionStatus: eGpsMotionStatus) => string;
|
|
5
|
+
static getGpsSvg: (motionStatus: eGpsMotionStatus, innerSvgContent: string) => string;
|
|
6
|
+
static getGpsSvgClasses: (motionStatus: eGpsMotionStatus) => string;
|
|
7
|
+
static getGpsSvgInnerContent: (motionStatus: eGpsMotionStatus, headingDirection: eGpsHeadingDirection, isIgnition?: boolean) => string;
|
|
8
|
+
static getGpsTitle: (motionStatus: eGpsMotionStatus, headingDirection?: eGpsHeadingDirection, isIgnition?: boolean) => string;
|
|
9
|
+
static getGpsTitleColorClass: (motionStatus: eGpsMotionStatus, isDarkMode?: boolean) => string;
|
|
10
|
+
static getMovingIconPath: (headingDirection: eGpsHeadingDirection) => string;
|
|
11
|
+
static getStoppedIconPath: (isIgnition?: boolean) => string;
|
|
12
|
+
static getNoGpsDeviceIconPath: () => string;
|
|
13
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -112,4 +112,7 @@ export * from './lib/components/ca-fleet-filter/interfaces';
|
|
|
112
112
|
export * from './lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component';
|
|
113
113
|
export * from './lib/components/ca-factoring-dropdown/interfaces';
|
|
114
114
|
export * from './lib/components/ca-contacts-card/ca-contacts-card.component';
|
|
115
|
+
export * from './lib/components/ca-progress-bar/interfaces';
|
|
116
|
+
export * from './lib/utils/helpers';
|
|
117
|
+
export * from './lib/utils/constants';
|
|
115
118
|
export * from './lib/components/ca-modal-spinner/ca-modal-spinner.component';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './gps-progress.model';
|