ca-components 2.1.14 → 2.1.141
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/index.d.ts
CHANGED
|
@@ -1591,8 +1591,8 @@ declare class CaFilterComponent implements OnDestroy {
|
|
|
1591
1591
|
icon: string;
|
|
1592
1592
|
usaStates: ArrayStatus[];
|
|
1593
1593
|
canadaStates: ArrayStatus[];
|
|
1594
|
-
setFilter: EventEmitter<
|
|
1595
|
-
clearAll: EventEmitter<
|
|
1594
|
+
setFilter: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
1595
|
+
clearAll: EventEmitter<filterOutputWithParams | filterOutput>;
|
|
1596
1596
|
private destroy$;
|
|
1597
1597
|
isSearchExpanded: boolean;
|
|
1598
1598
|
isFilterActive: boolean;
|
|
@@ -9213,6 +9213,13 @@ declare class LastFuelPriceProgressHelper {
|
|
|
9213
9213
|
|
|
9214
9214
|
declare function emptyValueValidator(errorMessage: string): ValidatorFn;
|
|
9215
9215
|
|
|
9216
|
+
interface Tabs {
|
|
9217
|
+
id: number;
|
|
9218
|
+
name?: string;
|
|
9219
|
+
checked?: boolean;
|
|
9220
|
+
disabled?: boolean;
|
|
9221
|
+
}
|
|
9222
|
+
|
|
9216
9223
|
interface IContact {
|
|
9217
9224
|
id?: number;
|
|
9218
9225
|
fullName?: string | null;
|
|
@@ -9227,13 +9234,6 @@ interface IContactDepartment {
|
|
|
9227
9234
|
contacts: IContact[];
|
|
9228
9235
|
}
|
|
9229
9236
|
|
|
9230
|
-
interface Tabs {
|
|
9231
|
-
id: number;
|
|
9232
|
-
name?: string;
|
|
9233
|
-
checked?: boolean;
|
|
9234
|
-
disabled?: boolean;
|
|
9235
|
-
}
|
|
9236
|
-
|
|
9237
9237
|
interface CustomPeriodRange {
|
|
9238
9238
|
fromDate: string;
|
|
9239
9239
|
toDate: string;
|