ca-components 1.3.993 → 1.3.994
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-filters/components/ca-user-filter/ca-user-filter.component.mjs +3 -3
- package/esm2022/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.mjs +5 -4
- package/esm2022/lib/enums/general-actions.enum.mjs +7 -5
- package/esm2022/lib/enums/index.mjs +2 -1
- package/esm2022/lib/enums/string-placeholder.enum.mjs +1 -3
- package/esm2022/lib/enums/unit.enum.mjs +14 -0
- package/esm2022/lib/pipes/format-currency.pipe.mjs +11 -6
- package/esm2022/lib/pipes/unit-position.pipe.mjs +6 -4
- package/esm2022/lib/utils/helpers/methods-calculations.helper.mjs +4 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ca-components.mjs +39 -20
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.d.ts +2 -1
- package/lib/enums/general-actions.enum.d.ts +7 -5
- package/lib/enums/index.d.ts +1 -0
- package/lib/enums/string-placeholder.enum.d.ts +0 -2
- package/lib/enums/unit.enum.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -66,8 +66,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
66
66
|
canadaStates: ArrayStatus[];
|
|
67
67
|
sentAddressValue: EventEmitter<string>;
|
|
68
68
|
sentAddressData: EventEmitter<SentAddressData>;
|
|
69
|
-
setFilter: EventEmitter<
|
|
70
|
-
clearAll: EventEmitter<
|
|
69
|
+
setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
70
|
+
clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
71
71
|
private destroy$;
|
|
72
72
|
isSearchExpanded: boolean;
|
|
73
73
|
isFilterActive: boolean;
|
package/lib/components/ca-last-fuel-price-progress/ca-last-fuel-price-progress.component.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { LastFuelPriceSvgRoutes } from './utils/svg-routes';
|
|
3
|
-
import { eStringPlaceholder } from '../../enums';
|
|
3
|
+
import { eStringPlaceholder, eUnit } from '../../enums';
|
|
4
4
|
import { ILastFuelPriceProgressConfig, ILastFuelPriceProgressData } from './interfaces';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CaLastFuelPriceProgressComponent implements OnInit {
|
|
7
7
|
set lastFuelPriceData(data: ILastFuelPriceProgressData);
|
|
8
8
|
lastFuelPriceSvgRoutes: typeof LastFuelPriceSvgRoutes;
|
|
9
9
|
eStringPlaceholder: typeof eStringPlaceholder;
|
|
10
|
+
eUnit: typeof eUnit;
|
|
10
11
|
lastFuelPriceConfig: ILastFuelPriceProgressConfig[];
|
|
11
12
|
lastFuelPriceColors: string[];
|
|
12
13
|
constructor();
|
|
@@ -3,21 +3,23 @@ export declare enum eGeneralActions {
|
|
|
3
3
|
UPDATE = "update",
|
|
4
4
|
DELETE = "delete",
|
|
5
5
|
EDIT = "edit",
|
|
6
|
+
SAVE = "save",
|
|
6
7
|
CANCEL = "cancel",
|
|
7
8
|
ENTER = "Enter",
|
|
8
9
|
ESCAPE = "Escape",
|
|
9
10
|
CONFIRM = "confirm",
|
|
11
|
+
SET = "Set",
|
|
12
|
+
REMOVE = "Remove",
|
|
13
|
+
SELECT = "Select",
|
|
10
14
|
ACTIVATE = "activate",
|
|
11
15
|
DEACTIVATE = "deactivate",
|
|
12
16
|
CLOSE = "close",
|
|
13
17
|
OPEN = "open",
|
|
14
|
-
SAVE = "save",
|
|
15
18
|
NEXT = "Next",
|
|
19
|
+
NEXT_LOWERCASE = "next",
|
|
16
20
|
PREVIOUS = "Previous",
|
|
17
|
-
|
|
21
|
+
PREVIOUS_LOWERCASE = "previous",
|
|
18
22
|
CLEAR = "Clear",
|
|
19
23
|
CLEAR_ALL = "Clear All",
|
|
20
|
-
OPEN_MODAL = "open-modal"
|
|
21
|
-
REMOVE = "Remove",
|
|
22
|
-
SELECT = "Select"
|
|
24
|
+
OPEN_MODAL = "open-modal"
|
|
23
25
|
}
|
package/lib/enums/index.d.ts
CHANGED
package/package.json
CHANGED
package/public-api.d.ts
CHANGED