cloud-ide-element 1.1.158 → 1.1.160
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/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 */
|
|
@@ -448,9 +452,6 @@ declare class CideSelectComponent implements ControlValueAccessor, Validator, On
|
|
|
448
452
|
};
|
|
449
453
|
private debugId;
|
|
450
454
|
private timeoutIds;
|
|
451
|
-
private el;
|
|
452
|
-
private cdr;
|
|
453
|
-
private ngControl;
|
|
454
455
|
private interactionCount;
|
|
455
456
|
private maxInteractionCount;
|
|
456
457
|
constructor(elementRef: ElementRef);
|
|
@@ -615,7 +616,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
615
616
|
readonly id: _angular_core.WritableSignal<string>;
|
|
616
617
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
617
618
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
618
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
619
|
+
readonly uploadStatus: _angular_core.WritableSignal<"start" | "error" | "uploading" | "success" | "idle">;
|
|
619
620
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
620
621
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
621
622
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -748,7 +749,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
748
749
|
multiple: boolean;
|
|
749
750
|
showPreview: boolean;
|
|
750
751
|
autoUpload: boolean;
|
|
751
|
-
uploadStatus: "
|
|
752
|
+
uploadStatus: "start" | "error" | "uploading" | "success" | "idle";
|
|
752
753
|
isUploading: boolean;
|
|
753
754
|
uploadProgress: number;
|
|
754
755
|
files: {
|