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.
@@ -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<filterOutput | filterOutputWithParams>;
70
- clearAll: EventEmitter<filterOutput | filterOutputWithParams>;
69
+ setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
70
+ clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
71
71
  private destroy$;
72
72
  isSearchExpanded: boolean;
73
73
  isFilterActive: boolean;
@@ -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
- SET = "Set",
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
  }
@@ -9,3 +9,4 @@ export * from './string-placeholder.enum';
9
9
  export * from './load-filter.enum';
10
10
  export * from './position.enum';
11
11
  export * from './general-actions.enum';
12
+ export * from './unit.enum';
@@ -5,8 +5,6 @@ export declare enum eStringPlaceholder {
5
5
  COMMA_WHITESPACE = ", ",
6
6
  DOT = ".",
7
7
  FORWARD_SLASH = "/",
8
- DOLLAR_SIGN = "$",
9
- PERCENTAGE_SIGN = "%",
10
8
  NA = "N/A",
11
9
  NONE = "None"
12
10
  }
@@ -0,0 +1,7 @@
1
+ export declare enum eUnit {
2
+ DOLLAR_SIGN = "$",
3
+ PERCENTAGE_SIGN = "%",
4
+ MILE = "mi",
5
+ GALLON = "gal.",
6
+ DAYS = "days"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "1.3.993",
3
+ "version": "1.3.994",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.13",
6
6
  "@angular/core": "^18.2.13",
package/public-api.d.ts CHANGED
@@ -79,3 +79,4 @@ export * from './lib/components/ca-vehicle-list/models';
79
79
  export * from './lib/components/ca-vehicle-list/enums';
80
80
  export * from './lib/pipes';
81
81
  export * from './lib/components/ca-input-test/config';
82
+ export * from './lib/enums';