ca-components 1.9.6 → 1.9.8

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.
@@ -13,6 +13,7 @@ export declare class CaCheckboxComponent implements ControlValueAccessor {
13
13
  svg: string;
14
14
  name: string;
15
15
  customClass: string;
16
+ svgCustomClass: string;
16
17
  moveIconDown: boolean;
17
18
  isUseCarrieraACHCheckBox: boolean;
18
19
  isDisabledBlue: boolean;
@@ -21,15 +22,18 @@ export declare class CaCheckboxComponent implements ControlValueAccessor {
21
22
  isRegularCheckbox: boolean;
22
23
  isChecked?: boolean;
23
24
  isGroupPartialyChecked: boolean;
25
+ isBlackLabelCheckbox: boolean;
24
26
  groupIndex: number;
25
27
  itemIndex: number;
26
28
  formArrayAction: EventEmitter<boolean>;
27
29
  columnCheckAction: EventEmitter<IColumnCheckAction>;
30
+ isInputChecked: boolean;
28
31
  checkboxSvgRoutes: typeof CheckboxSvgRoutes;
29
32
  eGeneralActions: typeof eGeneralActions;
30
33
  eColor: typeof eColor;
31
34
  get getSuperControl(): import("@angular/forms").AbstractControl<any, any> | null | undefined;
32
35
  constructor(superControl?: NgControl | undefined);
36
+ ngAfterViewInit(): void;
33
37
  private onChangeCallback;
34
38
  private onTouchedCallback;
35
39
  writeValue(obj: any): void;
@@ -39,5 +43,5 @@ export declare class CaCheckboxComponent implements ControlValueAccessor {
39
43
  onChange(event: Event): void;
40
44
  onAction(): void;
41
45
  static ɵfac: i0.ɵɵFactoryDeclaration<CaCheckboxComponent, [{ optional: true; self: true; }]>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<CaCheckboxComponent, "app-ca-checkbox", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledStillCheckMark": { "alias": "disabledStillCheckMark"; "required": false; }; "svg": { "alias": "svg"; "required": false; }; "name": { "alias": "name"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "moveIconDown": { "alias": "moveIconDown"; "required": false; }; "isUseCarrieraACHCheckBox": { "alias": "isUseCarrieraACHCheckBox"; "required": false; }; "isDisabledBlue": { "alias": "isDisabledBlue"; "required": false; }; "isDisabledRegularCheck": { "alias": "isDisabledRegularCheck"; "required": false; }; "isLabelDisabled": { "alias": "isLabelDisabled"; "required": false; }; "isRegularCheckbox": { "alias": "isRegularCheckbox"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isGroupPartialyChecked": { "alias": "isGroupPartialyChecked"; "required": false; }; "groupIndex": { "alias": "groupIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; }, { "formArrayAction": "formArrayAction"; "columnCheckAction": "columnCheckAction"; }, never, never, true, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaCheckboxComponent, "app-ca-checkbox", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disabledStillCheckMark": { "alias": "disabledStillCheckMark"; "required": false; }; "svg": { "alias": "svg"; "required": false; }; "name": { "alias": "name"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "svgCustomClass": { "alias": "svgCustomClass"; "required": false; }; "moveIconDown": { "alias": "moveIconDown"; "required": false; }; "isUseCarrieraACHCheckBox": { "alias": "isUseCarrieraACHCheckBox"; "required": false; }; "isDisabledBlue": { "alias": "isDisabledBlue"; "required": false; }; "isDisabledRegularCheck": { "alias": "isDisabledRegularCheck"; "required": false; }; "isLabelDisabled": { "alias": "isLabelDisabled"; "required": false; }; "isRegularCheckbox": { "alias": "isRegularCheckbox"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; "isGroupPartialyChecked": { "alias": "isGroupPartialyChecked"; "required": false; }; "isBlackLabelCheckbox": { "alias": "isBlackLabelCheckbox"; "required": false; }; "groupIndex": { "alias": "groupIndex"; "required": false; }; "itemIndex": { "alias": "itemIndex"; "required": false; }; }, { "formArrayAction": "formArrayAction"; "columnCheckAction": "columnCheckAction"; }, never, never, true, never>;
43
47
  }
@@ -5,7 +5,7 @@ import { Observable } from 'rxjs';
5
5
  import { ePosition, eSharedString } from '../../enums';
6
6
  import { eFactoringFormControl, eFactoringPdfFormat, eFactoringPdfOrganize } from './enums';
7
7
  import { IFactoringCheckboxItem, IFactoringExportItem } from './interfaces';
8
- import { ICaInput } from '../ca-input/config';
8
+ import { CaiInputConfig } from 'carriera-intern-components';
9
9
  import { SharedSvgRoutes } from '../../utils/svg-routes';
10
10
  import { CheckboxSvgRoutes } from '../ca-checkbox/utils/svg-routes';
11
11
  import * as i0 from "@angular/core";
@@ -21,7 +21,7 @@ export declare class CaFactoringDropdownComponent implements OnInit {
21
21
  checkedCount$: Observable<number>;
22
22
  sharedSvgRoutes: typeof SharedSvgRoutes;
23
23
  checkboxSvgRputes: typeof CheckboxSvgRoutes;
24
- scheduleNoInputConfig: ICaInput;
24
+ scheduleNoInputConfig: CaiInputConfig;
25
25
  eFactoringFormControl: typeof eFactoringFormControl;
26
26
  eFactoringPdfFormat: typeof eFactoringPdfFormat;
27
27
  eFactoringPdfOrganize: typeof eFactoringPdfOrganize;
@@ -1,6 +1,6 @@
1
- import { ICaInput } from '../../../ca-input/config';
2
1
  import { IFactoringCheckboxItem } from '../../interfaces';
2
+ import { CaiInputConfig } from 'carriera-intern-components';
3
3
  export declare class FactoringDropdownConstants {
4
4
  static CHECKBOX_COLUMNS: IFactoringCheckboxItem[];
5
- static SCHEDULE_NO_INPUT_CONFIG: ICaInput;
5
+ static SCHEDULE_NO_INPUT_CONFIG: CaiInputConfig;
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "1.9.06",
3
+ "version": "1.9.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",