ca-components 1.0.76 → 1.0.78
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/components/ca-chart/ca-chart.component.mjs +200 -120
- package/esm2022/lib/components/ca-chart/enums/chart-annotation.enum.mjs +11 -0
- package/esm2022/lib/components/ca-chart/enums/chart-plugin-ids.enum.mjs +2 -1
- package/esm2022/lib/components/ca-chart/enums/index.mjs +2 -1
- package/esm2022/lib/components/ca-chart/models/chart-config.model.mjs +1 -1
- package/esm2022/lib/components/ca-chart/models/chart-legend-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-chart/models/chart-legend-property.model.mjs +2 -0
- package/esm2022/lib/components/ca-chart/models/index.mjs +3 -1
- package/esm2022/lib/components/ca-chart/utils/helpers/chart.helper.mjs +2 -2
- package/esm2022/lib/components/ca-chart-manager/ca-chart-manager.component.mjs +4 -4
- package/esm2022/lib/components/ca-dropdown-menu/ca-dropdown-menu.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +1 -1
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +21 -22
- package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.mjs +6 -0
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +137 -210
- package/esm2022/lib/components/ca-map/enums/google-map.enum.mjs +2 -1
- package/esm2022/lib/components/ca-map/enums/map-marker-string.enum.mjs +2 -1
- package/esm2022/lib/components/ca-map/models/map.model.mjs +1 -1
- package/esm2022/lib/components/ca-map/utils/constants/index.mjs +2 -1
- package/esm2022/lib/components/ca-map/utils/constants/map-marker-icons.constants.mjs +119 -0
- package/esm2022/lib/components/ca-map/utils/constants/map-options.constants.mjs +1 -2
- package/esm2022/lib/components/ca-map/utils/helpers/map-marker-icon.helper.mjs +50 -12
- package/esm2022/lib/components/ca-map/utils/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-map/utils/services/map-marker-icon.service.mjs +137 -0
- package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +25 -11
- package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +15 -15
- package/esm2022/lib/constants/map.constant.mjs +131 -131
- package/esm2022/lib/pipes/index.mjs +19 -0
- package/esm2022/lib/pipes/unit-position.pipe.mjs +24 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +993 -653
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-chart/ca-chart.component.d.ts +9 -4
- package/lib/components/ca-chart/enums/chart-annotation.enum.d.ts +10 -0
- package/lib/components/ca-chart/enums/chart-plugin-ids.enum.d.ts +2 -1
- package/lib/components/ca-chart/enums/index.d.ts +1 -0
- package/lib/components/ca-chart/models/chart-config.model.d.ts +1 -0
- package/lib/components/ca-chart/models/chart-legend-config.model.d.ts +6 -0
- package/lib/components/ca-chart/models/chart-legend-property.model.d.ts +7 -0
- package/lib/components/ca-chart/models/index.d.ts +2 -0
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-input-address-dropdown/enums/input-address-basic-string.enum.d.ts +4 -0
- package/lib/components/ca-map/ca-map.component.d.ts +22 -25
- package/lib/components/ca-map/enums/google-map.enum.d.ts +2 -1
- package/lib/components/ca-map/enums/map-marker-string.enum.d.ts +2 -1
- package/lib/components/ca-map/models/map.model.d.ts +8 -3
- package/lib/components/ca-map/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-map/utils/constants/map-marker-icons.constants.d.ts +6 -0
- package/lib/components/ca-map/utils/helpers/map-marker-icon.helper.d.ts +2 -0
- package/lib/components/ca-map/utils/services/index.d.ts +1 -0
- package/lib/components/ca-map/utils/services/map-marker-icon.service.d.ts +23 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +5 -3
- package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +3 -1
- package/lib/pipes/index.d.ts +18 -0
- package/lib/pipes/unit-position.pipe.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { IChartConfiguration, IChartDatasetHover } from './models';
|
|
2
|
+
import { IChartConfiguration, IChartDatasetHover, IChartLegendConfig } from './models';
|
|
3
3
|
import { ChartManagerService } from '../ca-chart-manager/services';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CaChartComponent implements AfterViewInit {
|
|
6
6
|
private changeDetector;
|
|
7
7
|
private chartManagerService?;
|
|
8
8
|
chartCanvas: ElementRef;
|
|
9
|
+
legendData: IChartLegendConfig;
|
|
9
10
|
chartId: string;
|
|
10
11
|
set chartDatasetHover(value: IChartDatasetHover | null);
|
|
11
12
|
set chartConfig(value: IChartConfiguration);
|
|
13
|
+
set selectedIndex(value: number);
|
|
12
14
|
hoveredIndex: EventEmitter<number | null>;
|
|
15
|
+
private destroy$;
|
|
13
16
|
private chart;
|
|
14
17
|
private chartContext;
|
|
15
|
-
private subscription;
|
|
16
18
|
private plugins?;
|
|
17
19
|
private areAnimationsCompleated;
|
|
18
20
|
private _hoveredIndex;
|
|
@@ -27,13 +29,16 @@ export declare class CaChartComponent implements AfterViewInit {
|
|
|
27
29
|
private createChart;
|
|
28
30
|
private updateChart;
|
|
29
31
|
private setChartOptionsProperties;
|
|
32
|
+
private focusDoughnutArc;
|
|
33
|
+
private setOriginalDoughnutArcsColor;
|
|
30
34
|
private setChartDataProperties;
|
|
31
35
|
private setChartPluginsProperties;
|
|
32
36
|
private updateChartAnnotations;
|
|
33
37
|
private setMultipleYAxis;
|
|
34
|
-
private
|
|
38
|
+
private removeVerticalDashedLine;
|
|
35
39
|
private setVerticalDashedAnnotationLine;
|
|
40
|
+
removeVerticalDashedLineAndFocus(): void;
|
|
36
41
|
ngOnDestroy(): void;
|
|
37
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaChartComponent, [null, { optional: true; }]>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaChartComponent, "app-ca-chart", never, { "chartId": { "alias": "chartId"; "required": false; }; "chartDatasetHover": { "alias": "chartDatasetHover"; "required": false; }; "chartConfig": { "alias": "chartConfig"; "required": false; }; }, { "hoveredIndex": "hoveredIndex"; }, never, never, true, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaChartComponent, "app-ca-chart", never, { "legendData": { "alias": "legendData"; "required": false; }; "chartId": { "alias": "chartId"; "required": false; }; "chartDatasetHover": { "alias": "chartDatasetHover"; "required": false; }; "chartConfig": { "alias": "chartConfig"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; }, { "hoveredIndex": "hoveredIndex"; }, never, never, true, never>;
|
|
39
44
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EChartAnnotationType, ChartPluginIdsStringEnum, EChartEventProperties } from '../enums';
|
|
2
|
+
export declare class EChartAnnotation {
|
|
3
|
+
static X_DASHED: {
|
|
4
|
+
id: ChartPluginIdsStringEnum;
|
|
5
|
+
type: EChartAnnotationType;
|
|
6
|
+
scaleID: EChartEventProperties;
|
|
7
|
+
borderWidth: number;
|
|
8
|
+
borderDash: number[];
|
|
9
|
+
};
|
|
10
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare enum ChartPluginIdsStringEnum {
|
|
2
2
|
HIGHLIGHT_SEGMENT_ON_HOVER = "highlightSegmentOnHover",
|
|
3
3
|
HIGHLIGHT_POINT_ON_HOVER = "highlightPointOnHover",
|
|
4
|
-
BORDER_BOTTOM_LINE_CHART = "borderBottomLineChart"
|
|
4
|
+
BORDER_BOTTOM_LINE_CHART = "borderBottomLineChart",
|
|
5
|
+
X_DASHED = "x-dashed"
|
|
5
6
|
}
|
|
@@ -60,8 +60,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
60
60
|
addressList: AddressList[];
|
|
61
61
|
usaStates: ArrayStatus[];
|
|
62
62
|
canadaStates: ArrayStatus[];
|
|
63
|
-
setFilter: EventEmitter<
|
|
64
|
-
clearAll: EventEmitter<
|
|
63
|
+
setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
64
|
+
clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
65
65
|
private destroy$;
|
|
66
66
|
isSearchExpanded: boolean;
|
|
67
67
|
isFilterActive: boolean;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { GoogleMap
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
|
|
2
|
+
import { GoogleMap } from '@angular/google-maps';
|
|
3
3
|
import { IMapMarkers, ICaMapProps, IMapOptions, IRoutePath, IMapBoundsZoom, IMapSelectedMarkerData } from '../ca-map/models/map.model';
|
|
4
|
+
import { MapMarkerIconService } from './utils/services';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CaMapComponent {
|
|
6
7
|
cd: ChangeDetectorRef;
|
|
7
|
-
|
|
8
|
+
private el;
|
|
9
|
+
private renderer;
|
|
10
|
+
private markerIconService;
|
|
11
|
+
constructor(cd: ChangeDetectorRef, el: ElementRef, renderer: Renderer2, markerIconService: MapMarkerIconService);
|
|
8
12
|
set data(values: ICaMapProps);
|
|
9
13
|
resetSelectedMarkerItem: EventEmitter<boolean>;
|
|
10
14
|
clusterMarkerClick: EventEmitter<IMapMarkers>;
|
|
@@ -13,23 +17,15 @@ export declare class CaMapComponent {
|
|
|
13
17
|
boundsChanged: EventEmitter<IMapBoundsZoom>;
|
|
14
18
|
openInMapEvent: EventEmitter<any>;
|
|
15
19
|
maps: GoogleMap;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
20
|
+
markerDropdown: ElementRef;
|
|
21
|
+
clusterDropdown: ElementRef;
|
|
22
|
+
private destroy$;
|
|
23
|
+
currentlyOpenWindow: boolean;
|
|
19
24
|
previousIconUrl: string;
|
|
20
25
|
previousIconUrlRouting: string;
|
|
21
26
|
focusedIconRouting: number;
|
|
22
27
|
private directionService;
|
|
23
28
|
directionsRenderers: google.maps.DirectionsRenderer[];
|
|
24
|
-
initialIcons: {
|
|
25
|
-
url: string;
|
|
26
|
-
labelOrigin?: google.maps.Point;
|
|
27
|
-
}[];
|
|
28
|
-
initialMarkerIcons: {
|
|
29
|
-
url: string;
|
|
30
|
-
labelOrigin?: google.maps.Point;
|
|
31
|
-
zIndex?: number;
|
|
32
|
-
}[];
|
|
33
29
|
infoWindowOptions: google.maps.InfoWindowOptions;
|
|
34
30
|
mapOptions: IMapOptions;
|
|
35
31
|
mapZoom: number;
|
|
@@ -56,19 +52,21 @@ export declare class CaMapComponent {
|
|
|
56
52
|
radius: number;
|
|
57
53
|
};
|
|
58
54
|
isAreaFilterActive: boolean;
|
|
59
|
-
|
|
55
|
+
mapStyles: google.maps.MapTypeStyle[];
|
|
56
|
+
clusterMarkerIds: IMapMarkers[];
|
|
57
|
+
routingMarkerIds: IMapMarkers[];
|
|
58
|
+
isMarkerDropdownOpen: boolean;
|
|
59
|
+
isClusterDropdownOpen: boolean;
|
|
60
|
+
openDropdownTimeout: NodeJS.Timeout | number;
|
|
61
|
+
mapStyleId: string;
|
|
60
62
|
ngOnInit(): void;
|
|
61
|
-
|
|
62
|
-
storeInitialIconForRoutingMarker(): void;
|
|
63
|
+
ngAfterViewInit(): void;
|
|
63
64
|
onClusterMarkerClick(markerItem: IMapMarkers): void;
|
|
64
65
|
getMarkerInfoWindow(markerId: number): void;
|
|
65
66
|
onMarkerClick(markerItem: IMapMarkers): void;
|
|
66
67
|
setDirectionsOnMap(): void;
|
|
67
68
|
calculateAndDisplayRoute(): void;
|
|
68
|
-
onRoutingMarkerClick(i: number, event: google.maps.MapMouseEvent, markeritem: IMapMarkers): void;
|
|
69
|
-
ngAfterViewInit(): void;
|
|
70
69
|
resetMarkersIcons(): void;
|
|
71
|
-
resetRoutingMarkers(): void;
|
|
72
70
|
onMapReady(mapInstance: google.maps.Map): {
|
|
73
71
|
fillColor?: string;
|
|
74
72
|
strokeColor?: string;
|
|
@@ -79,17 +77,16 @@ export declare class CaMapComponent {
|
|
|
79
77
|
getMapIdleEvent(map: google.maps.Map): void;
|
|
80
78
|
sendBoundsChangedEvent(): void;
|
|
81
79
|
onClusterBackButtonClick(): void;
|
|
82
|
-
private getNewData;
|
|
83
80
|
openMarkerInfoWindow(markerItem: IMapSelectedMarkerData): void;
|
|
84
81
|
checkInfoWindowPosition(markerItem: IMapMarkers, markerItem2?: IMapMarkers | null): boolean;
|
|
85
82
|
closeInfoWindow(): void;
|
|
86
83
|
handleMapData(newData: ICaMapProps): void;
|
|
84
|
+
getClusterId(clusterData: IMapMarkers): number | null;
|
|
85
|
+
getRoutingId(markerData: IMapMarkers): number | null;
|
|
87
86
|
onClusterListScrollToEnd(): void;
|
|
88
|
-
checkClusterDataChanges(newData: IMapMarkers, previousData?: IMapMarkers | null): boolean;
|
|
89
|
-
onMarkerMouseover(markerItem: IMapMarkers): void;
|
|
90
|
-
onMarkerMouseout(markerItem: IMapMarkers): void;
|
|
91
87
|
onZoomChange(isMinusClick?: boolean): void;
|
|
92
88
|
onOpenInMap(): void;
|
|
89
|
+
getServiceData(): void;
|
|
93
90
|
trackById(index: number, marker: IMapMarkers): number;
|
|
94
91
|
trackByPosition(index: number, marker: IMapMarkers): number;
|
|
95
92
|
identity(index: number): number;
|
|
@@ -35,7 +35,7 @@ export interface IMapOptions {
|
|
|
35
35
|
strictBounds: boolean;
|
|
36
36
|
};
|
|
37
37
|
streetViewControl: boolean;
|
|
38
|
-
styles
|
|
38
|
+
styles?: IMapStyles[];
|
|
39
39
|
keyboardShortcuts: boolean;
|
|
40
40
|
panControl: boolean;
|
|
41
41
|
gestureHandling: string;
|
|
@@ -55,9 +55,9 @@ export interface IMapColor {
|
|
|
55
55
|
}
|
|
56
56
|
export interface IMapMarkers {
|
|
57
57
|
position: IRoutePath;
|
|
58
|
-
icon
|
|
58
|
+
icon?: IMapMarkersIcon;
|
|
59
59
|
infoWindowContent?: MapDropdownContent;
|
|
60
|
-
label?:
|
|
60
|
+
label?: string;
|
|
61
61
|
labelOrigin?: {
|
|
62
62
|
x: number;
|
|
63
63
|
y: number;
|
|
@@ -67,6 +67,11 @@ export interface IMapMarkers {
|
|
|
67
67
|
zIndex?: number;
|
|
68
68
|
};
|
|
69
69
|
isLargeMarker?: boolean;
|
|
70
|
+
isFavorite?: boolean;
|
|
71
|
+
isClosed?: boolean;
|
|
72
|
+
isShowLabelOnHover?: boolean;
|
|
73
|
+
id?: number;
|
|
74
|
+
content?: any;
|
|
70
75
|
}
|
|
71
76
|
export interface IMapMarkersIcon {
|
|
72
77
|
url: string;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export declare class MapMarkerIconHelper {
|
|
2
|
+
static getRoutingMarkerElement: (stopNumber: number, stopType: string, isStopChecked?: boolean, isLightMode?: boolean, labelName?: string) => HTMLElement;
|
|
2
3
|
static getRoutingMarkerIcon: (stopNumber: number, stopType: string, isStopChecked?: boolean, isLightMode?: boolean) => string;
|
|
3
4
|
static getRoutingMarkerSvg: (stopNumber: number, stopType: string, isLightMode?: boolean) => string;
|
|
5
|
+
static getRoutingCheckedMarkerSvg: (stopType: string, isLightMode?: boolean) => string;
|
|
4
6
|
static getMapMarker(isFavorite?: boolean, isClosed?: boolean): string;
|
|
5
7
|
static getClusterMarker(count: number, isSelected?: boolean): string;
|
|
6
8
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './map-marker-icon.service';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { RendererFactory2 } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IMapMarkers } from '../../models/map.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MapMarkerIconService {
|
|
6
|
+
private renderer;
|
|
7
|
+
private clusterMarkerIds;
|
|
8
|
+
clusterMarkerIds$: Observable<IMapMarkers[]>;
|
|
9
|
+
private routingMarkerIds;
|
|
10
|
+
routingMarkerIds$: Observable<IMapMarkers[]>;
|
|
11
|
+
private markerElements;
|
|
12
|
+
private clusterElements;
|
|
13
|
+
private routingElements;
|
|
14
|
+
constructor(rendererFactory: RendererFactory2);
|
|
15
|
+
getMarkerIcon(markerId: number, labelName?: string, isClosed?: boolean, isFavorite?: boolean, isAlwaysSelected?: boolean): HTMLElement;
|
|
16
|
+
getClusterMarkerIcon(markerData: IMapMarkers): HTMLElement;
|
|
17
|
+
getRoutingMarkerIcon(markerData: IMapMarkers, stopNumber: number, stopType: string, isStopChecked?: boolean, isLightMode?: boolean, labelName?: string): HTMLElement;
|
|
18
|
+
createClusterId(clusterData: IMapMarkers): number;
|
|
19
|
+
createRoutingId(markerData: IMapMarkers): number;
|
|
20
|
+
resetMarkersData(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapMarkerIconService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MapMarkerIconService>;
|
|
23
|
+
}
|
|
@@ -4,7 +4,7 @@ import { DropDownData, IDropDownActions } from '../ca-details-dropdown/models/de
|
|
|
4
4
|
import { MapDropdownClusterItem, MapDropdownContent } from './models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CaMapDropdownComponent {
|
|
7
|
-
infoWindowContent?: MapDropdownContent;
|
|
7
|
+
infoWindowContent?: MapDropdownContent | null;
|
|
8
8
|
markerData?: any;
|
|
9
9
|
onClusterItemClick: EventEmitter<number>;
|
|
10
10
|
onClusterListScrollToEnd: EventEmitter<any>;
|
|
@@ -13,13 +13,15 @@ export declare class CaMapDropdownComponent {
|
|
|
13
13
|
isHidden: boolean;
|
|
14
14
|
isShowAllDaysActive: boolean;
|
|
15
15
|
data: DropDownData[];
|
|
16
|
-
showHiddenData(): void;
|
|
16
|
+
showHiddenData(event: Event): void;
|
|
17
17
|
callBodyAction(action: IDropDownActions): void;
|
|
18
18
|
getSvgPath(propertyName: keyof typeof MapDropdownSvgRoutes): string;
|
|
19
19
|
clusterItemClick(item: MapDropdownClusterItem): void;
|
|
20
|
-
backButtonClick(): void;
|
|
20
|
+
backButtonClick(event: Event): void;
|
|
21
21
|
showAllDaysClick(): void;
|
|
22
22
|
onClusterListScroll(event: Event): void;
|
|
23
|
+
stopMapZoom(event: Event): void;
|
|
24
|
+
dropdownClick(event: Event): void;
|
|
23
25
|
identity(index: number): number;
|
|
24
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaMapDropdownComponent, never>;
|
|
25
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaMapDropdownComponent, "app-ca-map-dropdown", never, { "infoWindowContent": { "alias": "infoWindowContent"; "required": false; }; "markerData": { "alias": "markerData"; "required": false; }; }, { "onClusterItemClick": "onClusterItemClick"; "onClusterListScrollToEnd": "onClusterListScrollToEnd"; "onBackButtonClick": "onBackButtonClick"; "bodyActions": "bodyActions"; }, never, never, true, never>;
|
|
@@ -2,8 +2,10 @@ import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
|
|
|
2
2
|
import { IGpsProgress } from './models';
|
|
3
3
|
import { ICaMapProps } from '../ca-map/models/map.model';
|
|
4
4
|
import { ProgressBarSvgRoutes } from './utils/svg-routes';
|
|
5
|
+
import { MapMarkerIconService } from '../ca-map/utils/services';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ProgressBarComponent {
|
|
8
|
+
private markerIconService;
|
|
7
9
|
isDropdown: boolean;
|
|
8
10
|
currentPosition: number;
|
|
9
11
|
mileageInfo: string;
|
|
@@ -40,7 +42,7 @@ export declare class ProgressBarComponent {
|
|
|
40
42
|
_gpsProgress: IGpsProgress[];
|
|
41
43
|
gpsIconTopPosition: number;
|
|
42
44
|
Mapdata: ICaMapProps;
|
|
43
|
-
constructor();
|
|
45
|
+
constructor(markerIconService: MapMarkerIconService);
|
|
44
46
|
hoverStop(stop: IGpsProgress, i: number, isIcon?: boolean): void;
|
|
45
47
|
leaveStop(): void;
|
|
46
48
|
getLeftStyle(): string;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './ca-svg.pipe';
|
|
2
|
+
export * from './date-from-string.pipe';
|
|
3
|
+
export * from './date.pipe';
|
|
4
|
+
export * from './dispatch-status-color.pipe';
|
|
5
|
+
export * from './dropdown-load-status-color.pipe';
|
|
6
|
+
export * from './format-city-state.pipe';
|
|
7
|
+
export * from './format-currency.pipe';
|
|
8
|
+
export * from './highlight-search.pipe';
|
|
9
|
+
export * from './load-status-color.pipe';
|
|
10
|
+
export * from './n-formatter.pipe';
|
|
11
|
+
export * from './name-initials.pipe';
|
|
12
|
+
export * from './safe-html.pipe';
|
|
13
|
+
export * from './thousand-separator.pipe';
|
|
14
|
+
export * from './thousand-to-short-format-pipe';
|
|
15
|
+
export * from './to-lower-case.pipe';
|
|
16
|
+
export * from './truncate-string.pipe';
|
|
17
|
+
export * from './unit-position.pipe';
|
|
18
|
+
export * from './user-initials.pipe';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UnitPositionPipe implements PipeTransform {
|
|
4
|
+
transform(value: string, indicator: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnitPositionPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<UnitPositionPipe, "unitPosition", true>;
|
|
7
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -51,3 +51,4 @@ export * from './lib/components/ca-input-address-dropdown/ca-input-address-dropd
|
|
|
51
51
|
export * from './lib/components/ca-modal-button/ca-modal-button.component';
|
|
52
52
|
export * from './lib/components/ca-chart-manager/ca-chart-manager.component';
|
|
53
53
|
export * from './lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component';
|
|
54
|
+
export * from './lib/components/ca-map/utils/services';
|