cloud-ide-element 1.1.101 → 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
|
@@ -606,7 +606,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
606
606
|
readonly id: _angular_core.WritableSignal<string>;
|
|
607
607
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
608
608
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
609
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
609
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
|
|
610
610
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
611
611
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
612
612
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -739,7 +739,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
739
739
|
multiple: boolean;
|
|
740
740
|
showPreview: boolean;
|
|
741
741
|
autoUpload: boolean;
|
|
742
|
-
uploadStatus: "
|
|
742
|
+
uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
|
|
743
743
|
isUploading: boolean;
|
|
744
744
|
uploadProgress: number;
|
|
745
745
|
files: {
|
|
@@ -2243,6 +2243,10 @@ interface KeyboardShortcut {
|
|
|
2243
2243
|
shiftKey?: boolean;
|
|
2244
2244
|
metaKey?: boolean;
|
|
2245
2245
|
description?: string;
|
|
2246
|
+
title?: string;
|
|
2247
|
+
featuredHTML?: string;
|
|
2248
|
+
category?: string;
|
|
2249
|
+
isUserDefined?: boolean;
|
|
2246
2250
|
action: () => void;
|
|
2247
2251
|
preventDefault?: boolean;
|
|
2248
2252
|
stopPropagation?: boolean;
|
|
@@ -3017,6 +3021,7 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
3017
3021
|
groupedColumns: _angular_core.WritableSignal<string[]>;
|
|
3018
3022
|
expandedGroups: _angular_core.WritableSignal<Set<string>>;
|
|
3019
3023
|
private hasAutoExpandedGroups;
|
|
3024
|
+
private pendingExpandedGroupsUpdate;
|
|
3020
3025
|
showExportMenu: _angular_core.WritableSignal<boolean>;
|
|
3021
3026
|
showFilterDropdown: _angular_core.WritableSignal<boolean>;
|
|
3022
3027
|
private exportService;
|