cloud-ide-element 1.1.161 → 1.1.166
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
|
@@ -64,7 +64,7 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
|
|
|
64
64
|
/** @description minlength for control */
|
|
65
65
|
minlength: number;
|
|
66
66
|
/** @description is control is required or not input type is true | false */
|
|
67
|
-
required: boolean;
|
|
67
|
+
required: boolean | undefined;
|
|
68
68
|
/** @description Auto capatalization for the value and applicable to word or to complete sentance */
|
|
69
69
|
autocapitalize: autocapitalizeType;
|
|
70
70
|
/** @description auto complete type to help reader what is the type of value */
|
|
@@ -79,11 +79,11 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
|
|
|
79
79
|
ngModel: inputType;
|
|
80
80
|
option: string[];
|
|
81
81
|
/** @description min value for number type control or min date for date type control */
|
|
82
|
-
min: number | string;
|
|
82
|
+
min: number | string | undefined;
|
|
83
83
|
/** @description max value for number type control or max date for date type control */
|
|
84
|
-
max: number | string;
|
|
84
|
+
max: number | string | undefined;
|
|
85
85
|
/** @description step value for number type control */
|
|
86
|
-
step: number | string;
|
|
86
|
+
step: number | string | undefined;
|
|
87
87
|
/**
|
|
88
88
|
* @description
|
|
89
89
|
* Holds the size of the component like Small, Extra small, Large
|
|
@@ -620,6 +620,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
620
620
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
621
621
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
622
622
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
623
|
+
readonly downloadUrls: _angular_core.WritableSignal<string[]>;
|
|
623
624
|
readonly uploadNotificationId: _angular_core.WritableSignal<string | null>;
|
|
624
625
|
readonly isDragOver: _angular_core.WritableSignal<boolean>;
|
|
625
626
|
readonly groupId: _angular_core.WritableSignal<string | null>;
|
|
@@ -682,6 +683,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
682
683
|
private loadFilesFromGroupId;
|
|
683
684
|
private isImageFileFromName;
|
|
684
685
|
private isImageFileFromType;
|
|
686
|
+
downloadFile(index?: number): void;
|
|
685
687
|
removePreview(index: number): void;
|
|
686
688
|
ngOnDestroy(): void;
|
|
687
689
|
triggerFileSelect(): void;
|