cloud-ide-element 1.1.102 → 1.1.104
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 +29 -34
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +62 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3561,9 +3561,6 @@ declare class CideEleFloatingContainerComponent implements AfterViewInit, OnDest
|
|
|
3561
3561
|
startResize(event: MouseEvent): void;
|
|
3562
3562
|
onResizeMove(event: MouseEvent): void;
|
|
3563
3563
|
onResizeEnd(): void;
|
|
3564
|
-
onMouseDown(event: MouseEvent): void;
|
|
3565
|
-
onMouseMove(event: MouseEvent): void;
|
|
3566
|
-
onMouseUp(event: MouseEvent): void;
|
|
3567
3564
|
onHeaderClick(event: MouseEvent): void;
|
|
3568
3565
|
minimize(): void;
|
|
3569
3566
|
bringToFront(): void;
|
|
@@ -3806,6 +3803,67 @@ declare class CideEleFloatingContainerDynamicDirective implements OnInit, OnDest
|
|
|
3806
3803
|
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>;
|
|
3807
3804
|
}
|
|
3808
3805
|
|
|
3806
|
+
declare class FloatingContainerShortcutsService {
|
|
3807
|
+
private keyboardShortcutService;
|
|
3808
|
+
private containerService;
|
|
3809
|
+
private readonly Z_INDEX_LAYERS;
|
|
3810
|
+
constructor();
|
|
3811
|
+
/**
|
|
3812
|
+
* Register default floating container shortcuts
|
|
3813
|
+
*/
|
|
3814
|
+
private registerDefaultShortcuts;
|
|
3815
|
+
/**
|
|
3816
|
+
* Register number shortcuts (Alt + 1, Alt + 2, etc.)
|
|
3817
|
+
*/
|
|
3818
|
+
private registerNumberShortcuts;
|
|
3819
|
+
/**
|
|
3820
|
+
* Open new floating container
|
|
3821
|
+
*/
|
|
3822
|
+
private openNewContainer;
|
|
3823
|
+
/**
|
|
3824
|
+
* Focus previous container
|
|
3825
|
+
*/
|
|
3826
|
+
private focusPreviousContainer;
|
|
3827
|
+
/**
|
|
3828
|
+
* Hide all containers
|
|
3829
|
+
*/
|
|
3830
|
+
private hideAllContainers;
|
|
3831
|
+
/**
|
|
3832
|
+
* Show all containers
|
|
3833
|
+
*/
|
|
3834
|
+
private showAllContainers;
|
|
3835
|
+
/**
|
|
3836
|
+
* Minimize all containers
|
|
3837
|
+
*/
|
|
3838
|
+
private minimizeAllContainers;
|
|
3839
|
+
/**
|
|
3840
|
+
* Focus container by index
|
|
3841
|
+
*/
|
|
3842
|
+
private focusContainerByIndex;
|
|
3843
|
+
/**
|
|
3844
|
+
* Open file uploader
|
|
3845
|
+
*/
|
|
3846
|
+
private openFileUploader;
|
|
3847
|
+
/**
|
|
3848
|
+
* Open entity rights sharing
|
|
3849
|
+
*/
|
|
3850
|
+
private openEntityRightsSharing;
|
|
3851
|
+
/**
|
|
3852
|
+
* Duplicate current container
|
|
3853
|
+
*/
|
|
3854
|
+
private duplicateCurrentContainer;
|
|
3855
|
+
/**
|
|
3856
|
+
* Close current container
|
|
3857
|
+
*/
|
|
3858
|
+
private closeCurrentContainer;
|
|
3859
|
+
/**
|
|
3860
|
+
* Toggle container visibility
|
|
3861
|
+
*/
|
|
3862
|
+
private toggleContainerVisibility;
|
|
3863
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FloatingContainerShortcutsService, never>;
|
|
3864
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FloatingContainerShortcutsService>;
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3809
3867
|
interface JsonEditorConfig {
|
|
3810
3868
|
/** Enable syntax highlighting */
|
|
3811
3869
|
syntaxHighlighting?: boolean;
|
|
@@ -3931,5 +3989,5 @@ declare class CideEleSkeletonLoaderComponent {
|
|
|
3931
3989
|
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>;
|
|
3932
3990
|
}
|
|
3933
3991
|
|
|
3934
|
-
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 };
|
|
3992
|
+
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 };
|
|
3935
3993
|
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 };
|