ca-components 0.0.76 → 0.0.77

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.
@@ -0,0 +1,12 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CaModalComponent {
4
+ customClass: string;
5
+ partClass: string;
6
+ modalTitle: string;
7
+ leftHeaderTemplate: TemplateRef<any>;
8
+ rightHeaderTemplate: TemplateRef<any>;
9
+ footerTemplate: TemplateRef<any>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaModalComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaModalComponent, "app-ca-modal", never, { "customClass": { "alias": "customClass"; "required": false; }; "partClass": { "alias": "partClass"; "required": false; }; "modalTitle": { "alias": "modalTitle"; "required": false; }; "leftHeaderTemplate": { "alias": "leftHeaderTemplate"; "required": false; }; "rightHeaderTemplate": { "alias": "rightHeaderTemplate"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; }, {}, never, ["[origin]"], true, never>;
12
+ }
@@ -10,6 +10,7 @@ export declare class CaPayrollListSummaryOverviewComponent {
10
10
  toggle: EventEmitter<{
11
11
  payrollSummary: PayrollListSummaryOverview;
12
12
  status: boolean;
13
+ index: number;
13
14
  }>;
14
15
  animationMarginParams: {
15
16
  marginTop: string;
@@ -12,6 +12,7 @@ export declare class CaPeriodContentComponent {
12
12
  _included: PayrollReportTableResponse[];
13
13
  _title: string;
14
14
  }>;
15
+ proccessPayroll: EventEmitter<PayrollReport>;
15
16
  salary: number;
16
17
  totalEarnings: number;
17
18
  debt: number;
@@ -35,5 +36,5 @@ export declare class CaPeriodContentComponent {
35
36
  _title: string;
36
37
  }): void;
37
38
  static ɵfac: i0.ɵɵFactoryDeclaration<CaPeriodContentComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentComponent, "app-ca-period-content", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "type": { "alias": "type"; "required": false; }; "componentData": { "alias": "componentData"; "required": false; }; }, { "reorderedDataEmiter": "reorderedDataEmiter"; }, never, never, true, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaPeriodContentComponent, "app-ca-period-content", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "type": { "alias": "type"; "required": false; }; "componentData": { "alias": "componentData"; "required": false; }; }, { "reorderedDataEmiter": "reorderedDataEmiter"; "proccessPayroll": "proccessPayroll"; }, never, never, true, never>;
39
40
  }
@@ -28,7 +28,7 @@ export interface DispatchResponse {
28
28
  nextStopType?: EnumValue;
29
29
  hoursOfService?: Array<DispatchHosResponse> | null;
30
30
  note?: string | null;
31
- activeLoad?: LoadShortResponse;
31
+ activeLoad?: LoadShortResponse | null;
32
32
  parkingSlot?: ParkingSlotShortResponse | null;
33
33
  loadProgress?: any;
34
34
  preTripInspection?: EnumValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "0.0.76",
3
+ "version": "0.0.77",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0",
package/public-api.d.ts CHANGED
@@ -30,4 +30,5 @@ export * from './lib/components/ca-upload-files/ca-upload-files.component';
30
30
  export * from './lib/components/ca-activity-log-list/ca-activity-log-list.component';
31
31
  export * from './lib/components/ca-todo/ca-todo.component';
32
32
  export * from './lib/components/ca-progress-expiration/ca-progress-expiration.component';
33
+ export * from './lib/components/ca-modal/ca-modal.component';
33
34
  export * from './lib/models';