ca-components 1.1.5 → 1.1.7

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.
@@ -20,6 +20,7 @@ export declare class CaInputDropdownComponent implements OnInit, AfterViewInit,
20
20
  label: string;
21
21
  optionValue: string;
22
22
  inputHoveredItem: number;
23
+ dropDownIsOpen: boolean;
23
24
  _template: string;
24
25
  _canAddNew: boolean;
25
26
  searchText: string;
@@ -71,7 +72,7 @@ export declare class CaInputDropdownComponent implements OnInit, AfterViewInit,
71
72
  constructor(superControl: NgControl, imageBase64Service: ImageBase64Service, cdRef: ChangeDetectorRef, renderer: Renderer2);
72
73
  get getSuperControl(): import("@angular/forms").AbstractControl<any, any> | null;
73
74
  inputFormControl: FormControl;
74
- writeValue(_: any): void;
75
+ writeValue(value: any): void;
75
76
  onTouched: () => void;
76
77
  onChange(_: any): void;
77
78
  registerOnChange(fn: any): void;
@@ -96,7 +97,6 @@ export declare class CaInputDropdownComponent implements OnInit, AfterViewInit,
96
97
  toggleNestedList(option: OptionModel): void;
97
98
  onBlurInput(event: boolean): void;
98
99
  onClearInputEvent(event: boolean): void;
99
- dropDownIsOpen: boolean;
100
100
  handleHiddenDropdown(): void;
101
101
  handleOpenDropdown(): void;
102
102
  showHideDropdown(action: boolean): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.13",
6
6
  "@angular/core": "^18.2.13",
package/public-api.d.ts CHANGED
@@ -56,3 +56,4 @@ export * from './lib/components/ca-chart-manager/ca-chart-manager.component';
56
56
  export * from './lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component';
57
57
  export * from './lib/components/ca-map/utils/services';
58
58
  export * from './lib/components/ca-input/input-test/input-test.component';
59
+ export * from './lib/components/ca-modal-button/enums';