cloud-ide-element 1.1.99 → 1.1.102
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
|
@@ -82,6 +82,8 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
|
|
|
82
82
|
min: number | string;
|
|
83
83
|
/** @description max value for number type control or max date for date type control */
|
|
84
84
|
max: number | string;
|
|
85
|
+
/** @description step value for number type control */
|
|
86
|
+
step: number | string;
|
|
85
87
|
/**
|
|
86
88
|
* @description
|
|
87
89
|
* Holds the size of the component like Small, Extra small, Large
|
|
@@ -348,7 +350,7 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
|
|
|
348
350
|
*/
|
|
349
351
|
backToDateSelection(): void;
|
|
350
352
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideInputComponent, never>;
|
|
351
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideInputComponent, "cide-ele-input", never, { "fill": { "alias": "fill"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelHide": { "alias": "labelHide"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "clearInput": { "alias": "clearInput"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "labelDir": { "alias": "labelDir"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "helperTextCollapse": { "alias": "helperTextCollapse"; "required": false; }; "hideHelperAndErrorText": { "alias": "hideHelperAndErrorText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "type": { "alias": "type"; "required": false; }; "width": { "alias": "width"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ngModel": { "alias": "ngModel"; "required": false; }; "option": { "alias": "option"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "ngModelChange": "ngModelChange"; }, never, never, true, never>;
|
|
353
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideInputComponent, "cide-ele-input", never, { "fill": { "alias": "fill"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelHide": { "alias": "labelHide"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "clearInput": { "alias": "clearInput"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "labelDir": { "alias": "labelDir"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "trailingIcon": { "alias": "trailingIcon"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "helperTextCollapse": { "alias": "helperTextCollapse"; "required": false; }; "hideHelperAndErrorText": { "alias": "hideHelperAndErrorText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "type": { "alias": "type"; "required": false; }; "width": { "alias": "width"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ngModel": { "alias": "ngModel"; "required": false; }; "option": { "alias": "option"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "ngModelChange": "ngModelChange"; }, never, never, true, never>;
|
|
352
354
|
}
|
|
353
355
|
|
|
354
356
|
interface SelectOption {
|
|
@@ -604,7 +606,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
604
606
|
readonly id: _angular_core.WritableSignal<string>;
|
|
605
607
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
606
608
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
607
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
609
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
|
|
608
610
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
609
611
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
610
612
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -737,7 +739,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
737
739
|
multiple: boolean;
|
|
738
740
|
showPreview: boolean;
|
|
739
741
|
autoUpload: boolean;
|
|
740
|
-
uploadStatus: "
|
|
742
|
+
uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
|
|
741
743
|
isUploading: boolean;
|
|
742
744
|
uploadProgress: number;
|
|
743
745
|
files: {
|
|
@@ -2241,6 +2243,10 @@ interface KeyboardShortcut {
|
|
|
2241
2243
|
shiftKey?: boolean;
|
|
2242
2244
|
metaKey?: boolean;
|
|
2243
2245
|
description?: string;
|
|
2246
|
+
title?: string;
|
|
2247
|
+
featuredHTML?: string;
|
|
2248
|
+
category?: string;
|
|
2249
|
+
isUserDefined?: boolean;
|
|
2244
2250
|
action: () => void;
|
|
2245
2251
|
preventDefault?: boolean;
|
|
2246
2252
|
stopPropagation?: boolean;
|
|
@@ -3015,6 +3021,7 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
3015
3021
|
groupedColumns: _angular_core.WritableSignal<string[]>;
|
|
3016
3022
|
expandedGroups: _angular_core.WritableSignal<Set<string>>;
|
|
3017
3023
|
private hasAutoExpandedGroups;
|
|
3024
|
+
private pendingExpandedGroupsUpdate;
|
|
3018
3025
|
showExportMenu: _angular_core.WritableSignal<boolean>;
|
|
3019
3026
|
showFilterDropdown: _angular_core.WritableSignal<boolean>;
|
|
3020
3027
|
private exportService;
|