cloud-ide-element 1.1.157 → 1.1.159
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/fesm2022/cloud-ide-element.mjs +107 -196
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -194,6 +194,10 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
|
|
|
194
194
|
ClearInputValue(): void;
|
|
195
195
|
/** @description when HTML is focuesd */
|
|
196
196
|
focusControl(): void;
|
|
197
|
+
/**
|
|
198
|
+
* @description Handle date input for masking DD/MM/YYYY
|
|
199
|
+
*/
|
|
200
|
+
onDateInput(event: Event): void;
|
|
197
201
|
/** @description If control value need to be processed, like UPPERCASE */
|
|
198
202
|
processValue(value: inputType, type: controlType): inputType;
|
|
199
203
|
/** @description for capitalization */
|
|
@@ -472,10 +476,9 @@ declare class CideSelectComponent implements ControlValueAccessor, Validator, On
|
|
|
472
476
|
private openDropdown;
|
|
473
477
|
private closeDropdown;
|
|
474
478
|
ngOnDestroy(): void;
|
|
479
|
+
portalContext: any;
|
|
475
480
|
private createDropdownPortal;
|
|
476
481
|
private destroyDropdownPortal;
|
|
477
|
-
private updatePortalContext;
|
|
478
|
-
private updateOptionsInDOM;
|
|
479
482
|
private setupDebouncedSearch;
|
|
480
483
|
private performSearch;
|
|
481
484
|
private cleanupOrphanedPortals;
|