cloud-ide-element 1.1.21 → 1.1.22
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 +286 -239
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +27 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -573,7 +573,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
573
573
|
readonly id: _angular_core.WritableSignal<string>;
|
|
574
574
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
575
575
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
576
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
576
|
+
readonly uploadStatus: _angular_core.WritableSignal<"start" | "success" | "error" | "uploading" | "idle">;
|
|
577
577
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
578
578
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
579
579
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -700,7 +700,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
700
700
|
multiple: boolean;
|
|
701
701
|
showPreview: boolean;
|
|
702
702
|
autoUpload: boolean;
|
|
703
|
-
uploadStatus: "
|
|
703
|
+
uploadStatus: "start" | "success" | "error" | "uploading" | "idle";
|
|
704
704
|
isUploading: boolean;
|
|
705
705
|
uploadProgress: number;
|
|
706
706
|
files: {
|
|
@@ -2461,6 +2461,7 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2461
2461
|
showFilterPanel: _angular_core.WritableSignal<string | null>;
|
|
2462
2462
|
filterSearchTerm: _angular_core.WritableSignal<string>;
|
|
2463
2463
|
showExportMenu: _angular_core.WritableSignal<boolean>;
|
|
2464
|
+
showFilterDropdown: _angular_core.WritableSignal<boolean>;
|
|
2464
2465
|
private exportService;
|
|
2465
2466
|
hasNextPage: _angular_core.Signal<boolean>;
|
|
2466
2467
|
hasPreviousPage: _angular_core.Signal<boolean>;
|
|
@@ -2741,6 +2742,30 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2741
2742
|
* Close export menu
|
|
2742
2743
|
*/
|
|
2743
2744
|
closeExportMenu(): void;
|
|
2745
|
+
/**
|
|
2746
|
+
* Toggle filter dropdown visibility
|
|
2747
|
+
*/
|
|
2748
|
+
toggleFilterDropdown(event?: Event): void;
|
|
2749
|
+
/**
|
|
2750
|
+
* Clear all filters
|
|
2751
|
+
*/
|
|
2752
|
+
clearAllFilters(): void;
|
|
2753
|
+
/**
|
|
2754
|
+
* Get column header by key
|
|
2755
|
+
*/
|
|
2756
|
+
getColumnHeader(columnKey: string): string;
|
|
2757
|
+
/**
|
|
2758
|
+
* Remove a specific filter
|
|
2759
|
+
*/
|
|
2760
|
+
removeFilter(columnKey: string): void;
|
|
2761
|
+
/**
|
|
2762
|
+
* Check if value is an array (helper for template)
|
|
2763
|
+
*/
|
|
2764
|
+
isArray(value: unknown): boolean;
|
|
2765
|
+
/**
|
|
2766
|
+
* Get array length (helper for template)
|
|
2767
|
+
*/
|
|
2768
|
+
getArrayLength(value: unknown): number;
|
|
2744
2769
|
/**
|
|
2745
2770
|
* Handle export format selection
|
|
2746
2771
|
*/
|