cloud-ide-element 1.1.101 → 1.1.103
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 +67 -14
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +69 -3
- package/package.json +1 -1
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;
|
|
@@ -3801,6 +3806,67 @@ declare class CideEleFloatingContainerDynamicDirective implements OnInit, OnDest
|
|
|
3801
3806
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CideEleFloatingContainerDynamicDirective, "[cideEleFloatingDynamic]", never, { "componentId": { "alias": "componentId"; "required": false; }; "componentConfig": { "alias": "componentConfig"; "required": false; }; "isVisible": { "alias": "isVisible"; "required": false; }; }, {}, never, never, true, never>;
|
|
3802
3807
|
}
|
|
3803
3808
|
|
|
3809
|
+
declare class FloatingContainerShortcutsService {
|
|
3810
|
+
private keyboardShortcutService;
|
|
3811
|
+
private containerService;
|
|
3812
|
+
private readonly Z_INDEX_LAYERS;
|
|
3813
|
+
constructor();
|
|
3814
|
+
/**
|
|
3815
|
+
* Register default floating container shortcuts
|
|
3816
|
+
*/
|
|
3817
|
+
private registerDefaultShortcuts;
|
|
3818
|
+
/**
|
|
3819
|
+
* Register number shortcuts (Alt + 1, Alt + 2, etc.)
|
|
3820
|
+
*/
|
|
3821
|
+
private registerNumberShortcuts;
|
|
3822
|
+
/**
|
|
3823
|
+
* Open new floating container
|
|
3824
|
+
*/
|
|
3825
|
+
private openNewContainer;
|
|
3826
|
+
/**
|
|
3827
|
+
* Focus previous container
|
|
3828
|
+
*/
|
|
3829
|
+
private focusPreviousContainer;
|
|
3830
|
+
/**
|
|
3831
|
+
* Hide all containers
|
|
3832
|
+
*/
|
|
3833
|
+
private hideAllContainers;
|
|
3834
|
+
/**
|
|
3835
|
+
* Show all containers
|
|
3836
|
+
*/
|
|
3837
|
+
private showAllContainers;
|
|
3838
|
+
/**
|
|
3839
|
+
* Minimize all containers
|
|
3840
|
+
*/
|
|
3841
|
+
private minimizeAllContainers;
|
|
3842
|
+
/**
|
|
3843
|
+
* Focus container by index
|
|
3844
|
+
*/
|
|
3845
|
+
private focusContainerByIndex;
|
|
3846
|
+
/**
|
|
3847
|
+
* Open file uploader
|
|
3848
|
+
*/
|
|
3849
|
+
private openFileUploader;
|
|
3850
|
+
/**
|
|
3851
|
+
* Open entity rights sharing
|
|
3852
|
+
*/
|
|
3853
|
+
private openEntityRightsSharing;
|
|
3854
|
+
/**
|
|
3855
|
+
* Duplicate current container
|
|
3856
|
+
*/
|
|
3857
|
+
private duplicateCurrentContainer;
|
|
3858
|
+
/**
|
|
3859
|
+
* Close current container
|
|
3860
|
+
*/
|
|
3861
|
+
private closeCurrentContainer;
|
|
3862
|
+
/**
|
|
3863
|
+
* Toggle container visibility
|
|
3864
|
+
*/
|
|
3865
|
+
private toggleContainerVisibility;
|
|
3866
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FloatingContainerShortcutsService, never>;
|
|
3867
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FloatingContainerShortcutsService>;
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3804
3870
|
interface JsonEditorConfig {
|
|
3805
3871
|
/** Enable syntax highlighting */
|
|
3806
3872
|
syntaxHighlighting?: boolean;
|
|
@@ -3926,5 +3992,5 @@ declare class CideEleSkeletonLoaderComponent {
|
|
|
3926
3992
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideEleSkeletonLoaderComponent, "cide-ele-skeleton-loader", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "count": { "alias": "count"; "required": false; }; "circle": { "alias": "circle"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; }, {}, never, never, true, never>;
|
|
3927
3993
|
}
|
|
3928
3994
|
|
|
3929
|
-
export { CapitalizePipe, CideCoreFileManagerService, CideEleBreadcrumbComponent, CideEleButtonComponent, CideEleConfirmationModalComponent, CideEleDataGridComponent, CideEleDropdownComponent, CideEleFileImageDirective, CideEleFileInputComponent, CideEleFileManagerService, CideEleFloatingContainerComponent, CideEleFloatingContainerDynamicDirective, CideEleFloatingContainerManagerComponent, CideEleFloatingContainerService, CideEleFloatingFeaturesService, CideEleFloatingFileUploaderComponent, CideEleFloatingFileUploaderService, CideEleGlobalNotificationsComponent, CideEleJsonEditorComponent, CideEleResizerDirective, CideEleSkeletonLoaderComponent, CideEleTabComponent, CideEleThemeToggleComponent, CideEleToastNotificationComponent, CideElementsService, CideFormFieldErrorComponent, CideIconComponent, CideInputComponent, CideSelectComponent, CideSelectOptionComponent, CideSpinnerComponent, CideTextareaComponent, CideThemeService, ConfirmationService, CoreFileManagerInsertUpdatePayload, CurrencyPipe, CurrencyService, DEFAULT_CURRENCY_CONFIG, DEFAULT_GRID_CONFIG, DropdownManagerService, ExportService, ICoreCyfmSave, KeyboardShortcutService, MFileManager, NotificationApiService, NotificationService, PortalService, TooltipDirective, WebSocketNotificationService, cidePath, hostManagerRoutesUrl, notificationRoutesUrl };
|
|
3995
|
+
export { CapitalizePipe, CideCoreFileManagerService, CideEleBreadcrumbComponent, CideEleButtonComponent, CideEleConfirmationModalComponent, CideEleDataGridComponent, CideEleDropdownComponent, CideEleFileImageDirective, CideEleFileInputComponent, CideEleFileManagerService, CideEleFloatingContainerComponent, CideEleFloatingContainerDynamicDirective, CideEleFloatingContainerManagerComponent, CideEleFloatingContainerService, CideEleFloatingFeaturesService, CideEleFloatingFileUploaderComponent, CideEleFloatingFileUploaderService, CideEleGlobalNotificationsComponent, CideEleJsonEditorComponent, CideEleResizerDirective, CideEleSkeletonLoaderComponent, CideEleTabComponent, CideEleThemeToggleComponent, CideEleToastNotificationComponent, CideElementsService, CideFormFieldErrorComponent, CideIconComponent, CideInputComponent, CideSelectComponent, CideSelectOptionComponent, CideSpinnerComponent, CideTextareaComponent, CideThemeService, ConfirmationService, CoreFileManagerInsertUpdatePayload, CurrencyPipe, CurrencyService, DEFAULT_CURRENCY_CONFIG, DEFAULT_GRID_CONFIG, DropdownManagerService, ExportService, FloatingContainerShortcutsService, ICoreCyfmSave, KeyboardShortcutService, MFileManager, NotificationApiService, NotificationService, PortalService, TooltipDirective, WebSocketNotificationService, cidePath, hostManagerRoutesUrl, notificationRoutesUrl };
|
|
3930
3996
|
export type { BreadcrumbConfig, BreadcrumbDropdownOption, BreadcrumbItem, BreadcrumbSeparator, BreadcrumbStyle, ButtonElevation, ButtonShape, ButtonSize, ButtonType, ButtonVariant, CideEleResizerDirection, CideEleResizerDirectionTo, CideTheme, CideThemeConfig, ColumnFilter, ColumnGroup, ColumnSort, ColumnType, ColumnWidth, ConfirmationOptions, ConfirmationRequest, ConnectionStatus, CoreFileManagerInsertUpdateResponse, CreateNotificationDto, CurrencyConfig, CurrencyDisplayFormat, DropdownConfig, DropdownInstance, DropdownItem, DropdownPosition, ErrorValidationStatus, FileUploadData, FileUploadOptions, FileUploaderData, FloatingComponentConfig, FloatingContainerConfig, FloatingContainerInstance, FloatingFileUploaderData, GridAction, GridColumn, GridColumnMenuConfig, GridConfiguration, GridCustomFormatter, GridCustomRenderer, GridDragDropConfig, GridEvent, GridEventHandler, GridExportConfig, GridFormatter, GridLoadingConfig, GridPaginationConfig, GridScrollConfig, GridSearchConfig, GridState, GridTreeConfig, ICoreCyfm, ICoreFileManager, IFileDeleteResponse, IFileFilterOptions, IFileGroupingOptions, IFileListRequest, IFileListResponse, IFileManagerErrorLogger, IFileUpdateRequest, IFileUpdateResponse, IFileUploadProgress, IFileUploadQueueItem, IFileUploadRequest, IFileUploadResponse, JsonEditorConfig, JsonEditorError, KeyboardShortcut, NotificationItem, NotificationListResponse, NotificationOptions, NotificationPayload, NotificationResponse, PortalConfig, PortalPosition, SelectOption, SelectOptionObject, ServerNotification, ServiceState, ShortcutOverride, StatusConfig, TabItem, TemplateContext, TemplatePortalConfig, TemplateRenderer, TextAlign, TooltipPlacement, TooltipType, UnreadCountResponse, UploadProgress, ValidationStatus, controllerResponse, fileManagerControllerResponse, fileManagerResponseData, mongooseObjectIdCreateControllerResponse };
|