ca-components 0.0.87 → 0.0.88

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.
Files changed (37) hide show
  1. package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +7 -8
  2. package/esm2022/lib/components/ca-chart/models/chart-base-dataset.model.mjs +1 -1
  3. package/esm2022/lib/components/ca-input/ca-input.component.mjs +11 -5
  4. package/esm2022/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.mjs +6 -3
  5. package/esm2022/lib/components/ca-input/enums/input-commands-type.enum.mjs +2 -1
  6. package/esm2022/lib/components/ca-input/enums/input-string.enum.mjs +3 -1
  7. package/esm2022/lib/components/ca-input/pipes/index.mjs +3 -1
  8. package/esm2022/lib/components/ca-input/pipes/input-placeholder-text-class.pipe.mjs +45 -0
  9. package/esm2022/lib/components/ca-input/pipes/show-placeholder-text.pipe.mjs +24 -0
  10. package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +24 -6
  11. package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
  12. package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +3 -3
  13. package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +3 -3
  14. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +3 -3
  15. package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +3 -3
  16. package/esm2022/lib/components/ca-period-content/enums/payroll-type.enum.mjs +2 -2
  17. package/esm2022/lib/components/ca-period-content/models/payroll-report.type.mjs +1 -1
  18. package/esm2022/lib/components/ca-period-content/pipes/included_count.pipe.mjs +3 -1
  19. package/esm2022/public-api.mjs +1 -2
  20. package/fesm2022/ca-components.mjs +259 -220
  21. package/fesm2022/ca-components.mjs.map +1 -1
  22. package/lib/components/ca-chart/ca-chart.component.d.ts +1 -1
  23. package/lib/components/ca-chart/models/chart-base-dataset.model.d.ts +1 -2
  24. package/lib/components/ca-input/ca-input.component.d.ts +3 -0
  25. package/lib/components/ca-input/components/ca-input-commands/ca-input-commands.component.d.ts +2 -0
  26. package/lib/components/ca-input/enums/input-commands-type.enum.d.ts +1 -0
  27. package/lib/components/ca-input/enums/input-string.enum.d.ts +2 -0
  28. package/lib/components/ca-input/pipes/index.d.ts +2 -0
  29. package/lib/components/ca-input/pipes/input-placeholder-text-class.pipe.d.ts +11 -0
  30. package/lib/components/ca-input/pipes/show-placeholder-text.pipe.d.ts +9 -0
  31. package/lib/components/ca-input/services/ca-input-state.service.d.ts +1 -0
  32. package/lib/components/ca-period-content/enums/payroll-type.enum.d.ts +1 -1
  33. package/lib/components/ca-period-content/models/payroll-report.type.d.ts +3 -1
  34. package/package.json +3 -2
  35. package/public-api.d.ts +0 -1
  36. package/esm2022/lib/components/ca-modal/ca-modal.component.mjs +0 -62
  37. package/lib/components/ca-modal/ca-modal.component.d.ts +0 -12
@@ -1,5 +1,5 @@
1
1
  import { AfterViewInit, ElementRef } from '@angular/core';
2
- import { ChartOptions, ChartType } from 'chart.js/auto';
2
+ import { ChartOptions, ChartType } from 'chart.js';
3
3
  import { IChartData, IBaseDataset } from './models';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class CaChartComponent implements AfterViewInit {
@@ -1,6 +1,5 @@
1
- import { ChartTypeRegistry } from "chart.js";
2
1
  export interface IBaseDataset {
3
- type: keyof ChartTypeRegistry;
2
+ type: keyof any;
4
3
  label: string;
5
4
  data: number[];
6
5
  borderColor?: string;
@@ -5,6 +5,7 @@ import { LabelColor, CommandsEvent } from './models';
5
5
  import { InputStateService } from './services';
6
6
  import { InputChangeValue, InputSvgRoutes } from './utils';
7
7
  import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
8
+ import { InputCommandsType, InputStringEnum } from './enums';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare class CaInputComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit, ControlValueAccessor {
10
11
  superControl: NgControl;
@@ -39,6 +40,8 @@ export declare class CaInputComponent implements OnInit, OnDestroy, OnChanges, A
39
40
  private destroy$;
40
41
  inputSvgRoutes: typeof InputSvgRoutes;
41
42
  isFocusInput: boolean;
43
+ inputCommandsType: typeof InputCommandsType;
44
+ inputStringEnum: typeof InputStringEnum;
42
45
  constructor(superControl: NgControl, cdRef: ChangeDetectorRef, inputStateService: InputStateService);
43
46
  get getSuperControl(): import("@angular/forms").AbstractControl<any, any> | null;
44
47
  ngOnInit(): void;
@@ -1,12 +1,14 @@
1
1
  import { EventEmitter } from "@angular/core";
2
2
  import { ICaInput } from "../../config";
3
3
  import { CommandClick } from "../../models";
4
+ import { InputCommandsType } from "../../enums";
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class CaInputCommandsComponent {
6
7
  inputConfig: ICaInput;
7
8
  isFocusInput: boolean;
8
9
  isVisibleCommands: boolean;
9
10
  onCommandsClick: EventEmitter<CommandClick>;
11
+ inputCommandsType: typeof InputCommandsType;
10
12
  constructor();
11
13
  onCommands(event: Event, type: string, action: string): void;
12
14
  static ɵfac: i0.ɵɵFactoryDeclaration<CaInputCommandsComponent, never>;
@@ -1,5 +1,6 @@
1
1
  export declare enum InputCommandsType {
2
2
  PM_INCREMENT_DECREMENT = "pm-increment-decrement",
3
+ INCREMENT_DECREMENT = "increment-decrement",
3
4
  CONFIRM_CANCEL = "confirm-cancel",
4
5
  MONTHS = "months"
5
6
  }
@@ -10,6 +10,8 @@ export declare enum InputStringEnum {
10
10
  EMAIL = "email",
11
11
  INVOICE = "invoice",
12
12
  ADDRESS = "address",
13
+ PERSONS = "persons",
14
+ VEHICLES = "vehicles",
13
15
  PRICE_SEPARATOR = "price-separator",
14
16
  BUSINESS_NAME = "business name",
15
17
  SHOP_NAME = "shop name",
@@ -15,3 +15,5 @@ export * from './show-dropdown-arrow.pipe';
15
15
  export * from './show-invalid-danger-mark.pipe';
16
16
  export * from './show-valid-check.pipe';
17
17
  export * from './input-placeholder-icon-right.pipe';
18
+ export * from './input-placeholder-text-class.pipe';
19
+ export * from './show-placeholder-text.pipe';
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { ICaInput } from '../config';
3
+ import { AbstractControl } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class InputPlaceholderTextClassPipe implements PipeTransform {
6
+ transform(isFocusInput: boolean, isTouchedInput: boolean, getSuperControl: AbstractControl<any, any> | null, inputConfig: ICaInput, isVisibleCommands: boolean, value: string): {
7
+ [key: string]: boolean | undefined;
8
+ };
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputPlaceholderTextClassPipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<InputPlaceholderTextClassPipe, "inputPlaceholderTextClass", true>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { ICaInput } from '../config/ca-input.config';
3
+ import { AbstractControl } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ShowPlaceholderTextPipe implements PipeTransform {
6
+ transform(inputConfig: ICaInput, getSuperControl: AbstractControl<any, any> | null, isVisibleCommands: boolean, value: string): boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShowPlaceholderTextPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<ShowPlaceholderTextPipe, "showPlaceholderText", true>;
9
+ }
@@ -127,6 +127,7 @@ export declare class InputStateService {
127
127
  private disableConsecutivelyPoints;
128
128
  private disableMultiplePoints;
129
129
  onCommands(event: Event, type: string, action: string): void;
130
+ private handleIncrementDecrement;
130
131
  private handlePmIncrementDecrement;
131
132
  private decrementPmValue;
132
133
  private incrementPmValue;
@@ -2,7 +2,7 @@ export declare enum PayrollTypeEnum {
2
2
  MILEAGE = "MILEAGE",
3
3
  COMMISSION = "COMMISSION",
4
4
  FLAT_RATE = "FLAT_RATE",
5
- OWNER_COMMISSION = "OWNER_COMMISSION"
5
+ OWNER_COMMISSION = "OWNER"
6
6
  }
7
7
  export declare enum userInfoEnum {
8
8
  SHORT_PAID = "SHORT PAID",
@@ -10,7 +10,7 @@ export interface PayrollReport {
10
10
  payrollNumber?: string | null;
11
11
  daysUntilPayment: number;
12
12
  mileagePay?: number;
13
- totalEarnings?: number;
13
+ earnings?: number;
14
14
  salary?: number | null;
15
15
  extraStopPay?: number;
16
16
  extraStopCount?: number;
@@ -35,6 +35,8 @@ export interface PayrollReport {
35
35
  totalBonus?: number;
36
36
  includedLoads?: Array<PayrollLoadMinimalResponse> | null;
37
37
  excludedLoads?: Array<PayrollLoadMinimalResponse> | null;
38
+ includedFuels?: Array<PayrollReportTableResponse> | null;
39
+ excludedFuels?: Array<PayrollReportTableResponse> | null;
38
40
  mapLocations?: Array<any> | null;
39
41
  sums?: any | null;
40
42
  payments?: Array<PayrollReportTableResponse> | null;
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "0.0.87",
3
+ "version": "0.0.88",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.0",
6
6
  "@angular/core": "^16.2.0",
7
7
  "@angular/animations": "^16.2.0",
8
8
  "@angular/google-maps": "^16.2.2",
9
9
  "@ng-bootstrap/ng-bootstrap": "^15.1.0",
10
- "angular-svg-icon": "^16.1.0"
10
+ "angular-svg-icon": "^16.1.0",
11
+ "chart.js": "^4.4.5"
11
12
  },
12
13
  "dependencies": {
13
14
  "tslib": "^2.3.0"
package/public-api.d.ts CHANGED
@@ -33,6 +33,5 @@ export * from './lib/components/ca-right-side-panel/components/ca-right-side-pan
33
33
  export * from './lib/components/ca-right-side-panel/ca-right-side-panel.component';
34
34
  export * from './lib/components/ca-todo/ca-todo.component';
35
35
  export * from './lib/components/ca-progress-expiration/ca-progress-expiration.component';
36
- export * from './lib/components/ca-modal/ca-modal.component';
37
36
  export * from './lib/components/ca-chart/ca-chart.component';
38
37
  export * from './lib/models';
@@ -1,62 +0,0 @@
1
- import { animate, state, style, transition, trigger, } from '@angular/animations';
2
- import { DragDropModule } from '@angular/cdk/drag-drop';
3
- import { CommonModule } from '@angular/common';
4
- import { Component, Input } from '@angular/core';
5
- import { FormsModule } from '@angular/forms';
6
- import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
7
- import { AngularSvgIconModule } from 'angular-svg-icon';
8
- import * as i0 from "@angular/core";
9
- import * as i1 from "@angular/common";
10
- import * as i2 from "@angular/cdk/drag-drop";
11
- export class CaModalComponent {
12
- constructor() {
13
- this.customClass = '';
14
- this.partClass = '';
15
- this.modalTitle = '';
16
- }
17
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
18
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaModalComponent, isStandalone: true, selector: "app-ca-modal", inputs: { customClass: "customClass", partClass: "partClass", modalTitle: "modalTitle", leftHeaderTemplate: "leftHeaderTemplate", rightHeaderTemplate: "rightHeaderTemplate", footerTemplate: "footerTemplate" }, ngImport: i0, template: "<div cdkDrag class=\"modal-container {{ customClass }}\" ngBAutofocus>\n <div class=\"modal-original-part {{ partClass }}\">\n <div cdkDragHandle class=\"modal-header d-flex justify-content-between\">\n <!-- [ngClass]=\"{ 'confirmation-modal': confirmationData }\" -->\n <div class=\"modal-header-leftside\">\n <!-- Header title -->\n <h5 class=\"modal-title\">{{ modalTitle }}</h5>\n <!-- Haeder left side template -->\n <ng-container *ngTemplateOutlet=\"leftHeaderTemplate\"></ng-container>\n </div>\n <div class=\"modal-header-rightside\">\n <!-- Haeder right side -->\n <ng-container *ngTemplateOutlet=\"rightHeaderTemplate\"></ng-container>\n </div>\n </div>\n\n <div class=\"modal-body\">\n <!-- Modal content -->\n <ng-content select=\"[origin]\"></ng-content>\n </div>\n\n <!-- Footer Template Content -->\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n</div>\n", styles: ["@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.modal-open{overflow:hidden!important}.modal-open::-webkit-scrollbar-track{background-color:#0000004d}.modal-open::-webkit-scrollbar-thumb{background-color:#0000004d}.modal-date-logo{height:26px;width:26px;cursor:pointer!important;position:relative}.modal-date-logo svg:hover{cursor:pointer}.modal-date-logo svg:hover path{fill:#919191}.modal-date-border{height:18px;margin-right:4px;border-right:1px solid #cccccc}.modal-container{width:480px;height:auto;overflow:hidden;position:relative;transition:width .3s}.modal-container .drop-zone-active{width:100%;height:100%;position:absolute;top:0%;left:0%;z-index:99999999999}.modal-container .drop-zone-active .drop-zone-title{position:absolute;z-index:9999;top:16px;left:14px;color:#6c6c6c;font-size:18px;font-weight:800;margin:0}.modal-container .drop-zone-active .ta-modal-dropzone{position:absolute;top:0;border:4px dashed #e5e5e5}.modal-container .drop-zone-active-hovered .ta-modal-dropzone{position:absolute;top:0;border:4px dashed #dadada;background-color:#eee}.modal-container .drop-zone-active-hovered .ta-modal-dropzone .ta-modal-dropzone-label{background-color:#eee}.modal-container .drop-zone-active-hovered .ta-modal-dropzone .ta-modal-dropzone-text{color:#6c6c6c}.modal-container .drop-zone-active .ta-modal-dropzone-area{transform:scale(2)}.modal-container .drop-zone-active .ta-modal-dropzone-text{position:absolute!important;top:84%!important;text-align:center;left:50%!important;transform:translate(-50%,-50%)}.modal-container.modal-container-load{width:1280px;display:flex}.modal-container.modal-container-load .divider{width:615px}.modal-container.modal-container-load .modal-additional-part{width:640px}.modal-container.modal-container-load .modal-additional-part-load{background-color:#f7f7f7;height:650px}.modal-container.modal-container-load .modal-additional-part-load .divider{background-color:#dadada;height:1px}.modal-container.modal-container-load .modal-additional-part-load-modal{max-width:640px;width:calc(100vw - 640px)}.modal-container .load-modal-origin-part{width:640px!important}.modal-container.modal-container-XS{width:390px}.modal-container.modal-container-XS .divider{width:366px}.modal-container.modal-container-XS .confirmation-modal-body{padding:22px 6px}.modal-container.modal-container-S{width:366px}.modal-container.modal-container-S .divider{width:341px}.modal-container.modal-container-M{width:640px}.modal-container.modal-container-M .divider{height:1px;background-color:#dadada;width:616px;margin:0 auto}.modal-container.modal-container-L{width:710px}.modal-container.modal-container-L .divider{width:685px}.modal-container.modal-container-XL{width:860px}.modal-container.modal-container-XL .divider{width:836px}.modal-container.modal-container-XL-2{width:800px;overflow:visible!important}.modal-container.modal-container-XL-2 .divider{width:775px}.modal-container .divider-bottom{margin-bottom:12px!important}.modal-container .card-divider{background-color:#dadada!important;height:1px!important}.modal-container.modal-container-sph-applicant{width:940px;height:960px;overflow-y:scroll;scrollbar-width:none!important}.modal-container.modal-container-sph-applicant::-webkit-scrollbar{width:2px}.modal-container.modal-container-sph-applicant::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid transparent;border-radius:1px}.modal-container.modal-container-sph-applicant::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.modal-container.modal-container-sph-applicant .divider{display:none}.modal-container .divider{width:455px;height:2px;content:\"\";border-radius:1px;background-color:#f3f3f3;margin:0 auto}.modal-container .modal-spinner{position:absolute;bottom:7px;right:8px}.modal-container .form-container .row>*:nth-child(odd){padding-left:12px;padding-right:12px}.modal-container .form-container .row>*:nth-child(2n){padding-left:0;padding-right:12px}.modal-container .not-clickable{pointer-events:none;cursor:not-allowed;background:#f7f7f7!important;color:#ccc!important}.modal-container .modal-footer>*{margin:0!important}.modal-container .modal-footer .ta-modal-footer-right-side,.modal-container .modal-footer .ta-modal-footer-left-side{gap:12px;padding-left:1px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: DragDropModule }, { kind: "directive", type: i2.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: i2.CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "ngmodule", type: NgbModule }], animations: [
19
- trigger('widthGrow', [
20
- state('closed', style({
21
- transform: 'scale(0)',
22
- })),
23
- state('open', style({
24
- transform: 'scale(1)',
25
- })),
26
- transition('closed => open', animate(100)),
27
- ]),
28
- ] }); }
29
- }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaModalComponent, decorators: [{
31
- type: Component,
32
- args: [{ standalone: true, selector: 'app-ca-modal', imports: [
33
- CommonModule,
34
- FormsModule,
35
- DragDropModule,
36
- AngularSvgIconModule,
37
- NgbModule,
38
- ], animations: [
39
- trigger('widthGrow', [
40
- state('closed', style({
41
- transform: 'scale(0)',
42
- })),
43
- state('open', style({
44
- transform: 'scale(1)',
45
- })),
46
- transition('closed => open', animate(100)),
47
- ]),
48
- ], template: "<div cdkDrag class=\"modal-container {{ customClass }}\" ngBAutofocus>\n <div class=\"modal-original-part {{ partClass }}\">\n <div cdkDragHandle class=\"modal-header d-flex justify-content-between\">\n <!-- [ngClass]=\"{ 'confirmation-modal': confirmationData }\" -->\n <div class=\"modal-header-leftside\">\n <!-- Header title -->\n <h5 class=\"modal-title\">{{ modalTitle }}</h5>\n <!-- Haeder left side template -->\n <ng-container *ngTemplateOutlet=\"leftHeaderTemplate\"></ng-container>\n </div>\n <div class=\"modal-header-rightside\">\n <!-- Haeder right side -->\n <ng-container *ngTemplateOutlet=\"rightHeaderTemplate\"></ng-container>\n </div>\n </div>\n\n <div class=\"modal-body\">\n <!-- Modal content -->\n <ng-content select=\"[origin]\"></ng-content>\n </div>\n\n <!-- Footer Template Content -->\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n</div>\n", styles: ["@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.modal-open{overflow:hidden!important}.modal-open::-webkit-scrollbar-track{background-color:#0000004d}.modal-open::-webkit-scrollbar-thumb{background-color:#0000004d}.modal-date-logo{height:26px;width:26px;cursor:pointer!important;position:relative}.modal-date-logo svg:hover{cursor:pointer}.modal-date-logo svg:hover path{fill:#919191}.modal-date-border{height:18px;margin-right:4px;border-right:1px solid #cccccc}.modal-container{width:480px;height:auto;overflow:hidden;position:relative;transition:width .3s}.modal-container .drop-zone-active{width:100%;height:100%;position:absolute;top:0%;left:0%;z-index:99999999999}.modal-container .drop-zone-active .drop-zone-title{position:absolute;z-index:9999;top:16px;left:14px;color:#6c6c6c;font-size:18px;font-weight:800;margin:0}.modal-container .drop-zone-active .ta-modal-dropzone{position:absolute;top:0;border:4px dashed #e5e5e5}.modal-container .drop-zone-active-hovered .ta-modal-dropzone{position:absolute;top:0;border:4px dashed #dadada;background-color:#eee}.modal-container .drop-zone-active-hovered .ta-modal-dropzone .ta-modal-dropzone-label{background-color:#eee}.modal-container .drop-zone-active-hovered .ta-modal-dropzone .ta-modal-dropzone-text{color:#6c6c6c}.modal-container .drop-zone-active .ta-modal-dropzone-area{transform:scale(2)}.modal-container .drop-zone-active .ta-modal-dropzone-text{position:absolute!important;top:84%!important;text-align:center;left:50%!important;transform:translate(-50%,-50%)}.modal-container.modal-container-load{width:1280px;display:flex}.modal-container.modal-container-load .divider{width:615px}.modal-container.modal-container-load .modal-additional-part{width:640px}.modal-container.modal-container-load .modal-additional-part-load{background-color:#f7f7f7;height:650px}.modal-container.modal-container-load .modal-additional-part-load .divider{background-color:#dadada;height:1px}.modal-container.modal-container-load .modal-additional-part-load-modal{max-width:640px;width:calc(100vw - 640px)}.modal-container .load-modal-origin-part{width:640px!important}.modal-container.modal-container-XS{width:390px}.modal-container.modal-container-XS .divider{width:366px}.modal-container.modal-container-XS .confirmation-modal-body{padding:22px 6px}.modal-container.modal-container-S{width:366px}.modal-container.modal-container-S .divider{width:341px}.modal-container.modal-container-M{width:640px}.modal-container.modal-container-M .divider{height:1px;background-color:#dadada;width:616px;margin:0 auto}.modal-container.modal-container-L{width:710px}.modal-container.modal-container-L .divider{width:685px}.modal-container.modal-container-XL{width:860px}.modal-container.modal-container-XL .divider{width:836px}.modal-container.modal-container-XL-2{width:800px;overflow:visible!important}.modal-container.modal-container-XL-2 .divider{width:775px}.modal-container .divider-bottom{margin-bottom:12px!important}.modal-container .card-divider{background-color:#dadada!important;height:1px!important}.modal-container.modal-container-sph-applicant{width:940px;height:960px;overflow-y:scroll;scrollbar-width:none!important}.modal-container.modal-container-sph-applicant::-webkit-scrollbar{width:2px}.modal-container.modal-container-sph-applicant::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid transparent;border-radius:1px}.modal-container.modal-container-sph-applicant::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.modal-container.modal-container-sph-applicant .divider{display:none}.modal-container .divider{width:455px;height:2px;content:\"\";border-radius:1px;background-color:#f3f3f3;margin:0 auto}.modal-container .modal-spinner{position:absolute;bottom:7px;right:8px}.modal-container .form-container .row>*:nth-child(odd){padding-left:12px;padding-right:12px}.modal-container .form-container .row>*:nth-child(2n){padding-left:0;padding-right:12px}.modal-container .not-clickable{pointer-events:none;cursor:not-allowed;background:#f7f7f7!important;color:#ccc!important}.modal-container .modal-footer>*{margin:0!important}.modal-container .modal-footer .ta-modal-footer-right-side,.modal-container .modal-footer .ta-modal-footer-left-side{gap:12px;padding-left:1px}\n"] }]
49
- }], propDecorators: { customClass: [{
50
- type: Input
51
- }], partClass: [{
52
- type: Input
53
- }], modalTitle: [{
54
- type: Input
55
- }], leftHeaderTemplate: [{
56
- type: Input
57
- }], rightHeaderTemplate: [{
58
- type: Input
59
- }], footerTemplate: [{
60
- type: Input
61
- }] } });
62
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtbW9kYWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtbW9kYWwvY2EtbW9kYWwuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtbW9kYWwvY2EtbW9kYWwuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLE9BQU8sRUFDUCxLQUFLLEVBQ0wsS0FBSyxFQUNMLFVBQVUsRUFDVixPQUFPLEdBQ1IsTUFBTSxxQkFBcUIsQ0FBQztBQUM3QixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDeEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFlLE1BQU0sZUFBZSxDQUFDO0FBQzlELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDdkQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7QUFnQ3hELE1BQU0sT0FBTyxnQkFBZ0I7SUE5QjdCO1FBK0JXLGdCQUFXLEdBQVcsRUFBRSxDQUFDO1FBQ3pCLGNBQVMsR0FBVyxFQUFFLENBQUM7UUFDdkIsZUFBVSxHQUFXLEVBQUUsQ0FBQztLQUtsQzsrR0FSWSxnQkFBZ0I7bUdBQWhCLGdCQUFnQiwwUkM1QzdCLHcrQkF5QkEsdzdJRExJLFlBQVkscU1BQ1osV0FBVyw4QkFDWCxjQUFjLCtrQkFDZCxvQkFBb0IsOEJBQ3BCLFNBQVMsaUJBRUM7WUFDVixPQUFPLENBQUMsV0FBVyxFQUFFO2dCQUNuQixLQUFLLENBQ0gsUUFBUSxFQUNSLEtBQUssQ0FBQztvQkFDSixTQUFTLEVBQUUsVUFBVTtpQkFDdEIsQ0FBQyxDQUNIO2dCQUNELEtBQUssQ0FDSCxNQUFNLEVBQ04sS0FBSyxDQUFDO29CQUNKLFNBQVMsRUFBRSxVQUFVO2lCQUN0QixDQUFDLENBQ0g7Z0JBQ0QsVUFBVSxDQUFDLGdCQUFnQixFQUFFLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQzthQUMzQyxDQUFDO1NBQ0g7OzRGQUVVLGdCQUFnQjtrQkE5QjVCLFNBQVM7aUNBQ0ksSUFBSSxZQUNOLGNBQWMsV0FHZjt3QkFDUCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsY0FBYzt3QkFDZCxvQkFBb0I7d0JBQ3BCLFNBQVM7cUJBQ1YsY0FDVzt3QkFDVixPQUFPLENBQUMsV0FBVyxFQUFFOzRCQUNuQixLQUFLLENBQ0gsUUFBUSxFQUNSLEtBQUssQ0FBQztnQ0FDSixTQUFTLEVBQUUsVUFBVTs2QkFDdEIsQ0FBQyxDQUNIOzRCQUNELEtBQUssQ0FDSCxNQUFNLEVBQ04sS0FBSyxDQUFDO2dDQUNKLFNBQVMsRUFBRSxVQUFVOzZCQUN0QixDQUFDLENBQ0g7NEJBQ0QsVUFBVSxDQUFDLGdCQUFnQixFQUFFLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQzt5QkFDM0MsQ0FBQztxQkFDSDs4QkFHUSxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFFRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBQ0csbUJBQW1CO3NCQUEzQixLQUFLO2dCQUNHLGNBQWM7c0JBQXRCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBhbmltYXRlLFxuICBzdGF0ZSxcbiAgc3R5bGUsXG4gIHRyYW5zaXRpb24sXG4gIHRyaWdnZXIsXG59IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xuaW1wb3J0IHsgRHJhZ0Ryb3BNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvZHJhZy1kcm9wJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBOZ2JNb2R1bGUgfSBmcm9tICdAbmctYm9vdHN0cmFwL25nLWJvb3RzdHJhcCc7XG5pbXBvcnQgeyBBbmd1bGFyU3ZnSWNvbk1vZHVsZSB9IGZyb20gJ2FuZ3VsYXItc3ZnLWljb24nO1xuXG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgc2VsZWN0b3I6ICdhcHAtY2EtbW9kYWwnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2EtbW9kYWwuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1tb2RhbC5jb21wb25lbnQuc2NzcyddLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEZvcm1zTW9kdWxlLFxuICAgIERyYWdEcm9wTW9kdWxlLFxuICAgIEFuZ3VsYXJTdmdJY29uTW9kdWxlLFxuICAgIE5nYk1vZHVsZSxcbiAgXSxcbiAgYW5pbWF0aW9uczogW1xuICAgIHRyaWdnZXIoJ3dpZHRoR3JvdycsIFtcbiAgICAgIHN0YXRlKFxuICAgICAgICAnY2xvc2VkJyxcbiAgICAgICAgc3R5bGUoe1xuICAgICAgICAgIHRyYW5zZm9ybTogJ3NjYWxlKDApJyxcbiAgICAgICAgfSlcbiAgICAgICksXG4gICAgICBzdGF0ZShcbiAgICAgICAgJ29wZW4nLFxuICAgICAgICBzdHlsZSh7XG4gICAgICAgICAgdHJhbnNmb3JtOiAnc2NhbGUoMSknLFxuICAgICAgICB9KVxuICAgICAgKSxcbiAgICAgIHRyYW5zaXRpb24oJ2Nsb3NlZCA9PiBvcGVuJywgYW5pbWF0ZSgxMDApKSxcbiAgICBdKSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FNb2RhbENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGN1c3RvbUNsYXNzOiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgcGFydENsYXNzOiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgbW9kYWxUaXRsZTogc3RyaW5nID0gJyc7XG5cbiAgQElucHV0KCkgbGVmdEhlYWRlclRlbXBsYXRlITogVGVtcGxhdGVSZWY8YW55PjtcbiAgQElucHV0KCkgcmlnaHRIZWFkZXJUZW1wbGF0ZSE6IFRlbXBsYXRlUmVmPGFueT47XG4gIEBJbnB1dCgpIGZvb3RlclRlbXBsYXRlITogVGVtcGxhdGVSZWY8YW55Pjtcbn1cbiIsIjxkaXYgY2RrRHJhZyBjbGFzcz1cIm1vZGFsLWNvbnRhaW5lciB7eyBjdXN0b21DbGFzcyB9fVwiIG5nQkF1dG9mb2N1cz5cbiAgPGRpdiBjbGFzcz1cIm1vZGFsLW9yaWdpbmFsLXBhcnQge3sgcGFydENsYXNzIH19XCI+XG4gICAgPGRpdiBjZGtEcmFnSGFuZGxlIGNsYXNzPVwibW9kYWwtaGVhZGVyIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlblwiPlxuICAgICAgPCEtLSBbbmdDbGFzc109XCJ7ICdjb25maXJtYXRpb24tbW9kYWwnOiBjb25maXJtYXRpb25EYXRhIH1cIiAtLT5cbiAgICAgIDxkaXYgY2xhc3M9XCJtb2RhbC1oZWFkZXItbGVmdHNpZGVcIj5cbiAgICAgICAgPCEtLSBIZWFkZXIgdGl0bGUgLS0+XG4gICAgICAgIDxoNSBjbGFzcz1cIm1vZGFsLXRpdGxlXCI+e3sgbW9kYWxUaXRsZSB9fTwvaDU+XG4gICAgICAgIDwhLS0gSGFlZGVyIGxlZnQgc2lkZSB0ZW1wbGF0ZSAtLT5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImxlZnRIZWFkZXJUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwibW9kYWwtaGVhZGVyLXJpZ2h0c2lkZVwiPlxuICAgICAgICA8IS0tIEhhZWRlciByaWdodCBzaWRlIC0tPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwicmlnaHRIZWFkZXJUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG5cbiAgICA8ZGl2IGNsYXNzPVwibW9kYWwtYm9keVwiPlxuICAgICAgPCEtLSBNb2RhbCBjb250ZW50IC0tPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW29yaWdpbl1cIj48L25nLWNvbnRlbnQ+XG4gICAgPC9kaXY+XG5cbiAgICA8IS0tIEZvb3RlciBUZW1wbGF0ZSBDb250ZW50IC0tPlxuICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJmb290ZXJUZW1wbGF0ZVwiPjwvbmctY29udGFpbmVyPlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
@@ -1,12 +0,0 @@
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
- }