cloud-ide-element 1.0.12 → 1.0.13
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 +757 -759
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +63 -63
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2582,67 +2582,6 @@ declare class CideEleFloatingContainerComponent implements AfterViewInit, OnDest
|
|
|
2582
2582
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideEleFloatingContainerComponent, "cide-ele-floating-container", never, { "config": { "alias": "config"; "required": false; }; "isMinimized": { "alias": "isMinimized"; "required": false; }; "isMaximized": { "alias": "isMaximized"; "required": false; }; "isVisible": { "alias": "isVisible"; "required": false; }; }, { "closeEvent": "closeEvent"; "minimizeEvent": "minimizeEvent"; "maximizeEvent": "maximizeEvent"; "clickEvent": "clickEvent"; }, never, ["*"], true, never>;
|
|
2583
2583
|
}
|
|
2584
2584
|
|
|
2585
|
-
declare class FloatingContainerShortcutsService {
|
|
2586
|
-
private keyboardShortcutService;
|
|
2587
|
-
private containerService;
|
|
2588
|
-
private readonly Z_INDEX_LAYERS;
|
|
2589
|
-
constructor();
|
|
2590
|
-
/**
|
|
2591
|
-
* Register default floating container shortcuts
|
|
2592
|
-
*/
|
|
2593
|
-
private registerDefaultShortcuts;
|
|
2594
|
-
/**
|
|
2595
|
-
* Register number shortcuts (Alt + 1, Alt + 2, etc.)
|
|
2596
|
-
*/
|
|
2597
|
-
private registerNumberShortcuts;
|
|
2598
|
-
/**
|
|
2599
|
-
* Open new floating container
|
|
2600
|
-
*/
|
|
2601
|
-
private openNewContainer;
|
|
2602
|
-
/**
|
|
2603
|
-
* Focus previous container
|
|
2604
|
-
*/
|
|
2605
|
-
private focusPreviousContainer;
|
|
2606
|
-
/**
|
|
2607
|
-
* Hide all containers
|
|
2608
|
-
*/
|
|
2609
|
-
private hideAllContainers;
|
|
2610
|
-
/**
|
|
2611
|
-
* Show all containers
|
|
2612
|
-
*/
|
|
2613
|
-
private showAllContainers;
|
|
2614
|
-
/**
|
|
2615
|
-
* Minimize all containers
|
|
2616
|
-
*/
|
|
2617
|
-
private minimizeAllContainers;
|
|
2618
|
-
/**
|
|
2619
|
-
* Focus container by index
|
|
2620
|
-
*/
|
|
2621
|
-
private focusContainerByIndex;
|
|
2622
|
-
/**
|
|
2623
|
-
* Open file uploader
|
|
2624
|
-
*/
|
|
2625
|
-
private openFileUploader;
|
|
2626
|
-
/**
|
|
2627
|
-
* Open entity rights sharing
|
|
2628
|
-
*/
|
|
2629
|
-
private openEntityRightsSharing;
|
|
2630
|
-
/**
|
|
2631
|
-
* Duplicate current container
|
|
2632
|
-
*/
|
|
2633
|
-
private duplicateCurrentContainer;
|
|
2634
|
-
/**
|
|
2635
|
-
* Close current container
|
|
2636
|
-
*/
|
|
2637
|
-
private closeCurrentContainer;
|
|
2638
|
-
/**
|
|
2639
|
-
* Toggle container visibility
|
|
2640
|
-
*/
|
|
2641
|
-
private toggleContainerVisibility;
|
|
2642
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FloatingContainerShortcutsService, never>;
|
|
2643
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FloatingContainerShortcutsService>;
|
|
2644
|
-
}
|
|
2645
|
-
|
|
2646
2585
|
interface FloatingComponentConfig {
|
|
2647
2586
|
componentId: string;
|
|
2648
2587
|
componentType?: Type<any>;
|
|
@@ -2667,13 +2606,12 @@ interface FloatingContainerInstance {
|
|
|
2667
2606
|
}
|
|
2668
2607
|
declare class CideEleFloatingContainerService {
|
|
2669
2608
|
private injector;
|
|
2670
|
-
private shortcutsService;
|
|
2671
2609
|
private containers;
|
|
2672
2610
|
private nextZIndex;
|
|
2673
2611
|
private instanceCounter;
|
|
2674
2612
|
private componentRegistry;
|
|
2675
2613
|
private activeComponents;
|
|
2676
|
-
constructor(injector: Injector
|
|
2614
|
+
constructor(injector: Injector);
|
|
2677
2615
|
visibleContainers: _angular_core.Signal<FloatingContainerInstance[]>;
|
|
2678
2616
|
minimizedContainers: _angular_core.Signal<FloatingContainerInstance[]>;
|
|
2679
2617
|
maximizedContainers: _angular_core.Signal<FloatingContainerInstance[]>;
|
|
@@ -2800,6 +2738,7 @@ declare class CideEleFloatingContainerManagerComponent {
|
|
|
2800
2738
|
|
|
2801
2739
|
declare class CideEleFloatingFeaturesService {
|
|
2802
2740
|
private containerService;
|
|
2741
|
+
private shortcutsService;
|
|
2803
2742
|
constructor();
|
|
2804
2743
|
showFeature(featureId: string, config: FloatingContainerConfig): string;
|
|
2805
2744
|
showComponent(containerId: string, componentId: string, title: string, componentType?: any, config?: Partial<FloatingContainerConfig>): string;
|
|
@@ -2875,5 +2814,66 @@ declare class CideEleFloatingContainerDynamicDirective implements OnInit, OnDest
|
|
|
2875
2814
|
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>;
|
|
2876
2815
|
}
|
|
2877
2816
|
|
|
2817
|
+
declare class FloatingContainerShortcutsService {
|
|
2818
|
+
private keyboardShortcutService;
|
|
2819
|
+
private containerService;
|
|
2820
|
+
private readonly Z_INDEX_LAYERS;
|
|
2821
|
+
constructor();
|
|
2822
|
+
/**
|
|
2823
|
+
* Register default floating container shortcuts
|
|
2824
|
+
*/
|
|
2825
|
+
private registerDefaultShortcuts;
|
|
2826
|
+
/**
|
|
2827
|
+
* Register number shortcuts (Alt + 1, Alt + 2, etc.)
|
|
2828
|
+
*/
|
|
2829
|
+
private registerNumberShortcuts;
|
|
2830
|
+
/**
|
|
2831
|
+
* Open new floating container
|
|
2832
|
+
*/
|
|
2833
|
+
private openNewContainer;
|
|
2834
|
+
/**
|
|
2835
|
+
* Focus previous container
|
|
2836
|
+
*/
|
|
2837
|
+
private focusPreviousContainer;
|
|
2838
|
+
/**
|
|
2839
|
+
* Hide all containers
|
|
2840
|
+
*/
|
|
2841
|
+
private hideAllContainers;
|
|
2842
|
+
/**
|
|
2843
|
+
* Show all containers
|
|
2844
|
+
*/
|
|
2845
|
+
private showAllContainers;
|
|
2846
|
+
/**
|
|
2847
|
+
* Minimize all containers
|
|
2848
|
+
*/
|
|
2849
|
+
private minimizeAllContainers;
|
|
2850
|
+
/**
|
|
2851
|
+
* Focus container by index
|
|
2852
|
+
*/
|
|
2853
|
+
private focusContainerByIndex;
|
|
2854
|
+
/**
|
|
2855
|
+
* Open file uploader
|
|
2856
|
+
*/
|
|
2857
|
+
private openFileUploader;
|
|
2858
|
+
/**
|
|
2859
|
+
* Open entity rights sharing
|
|
2860
|
+
*/
|
|
2861
|
+
private openEntityRightsSharing;
|
|
2862
|
+
/**
|
|
2863
|
+
* Duplicate current container
|
|
2864
|
+
*/
|
|
2865
|
+
private duplicateCurrentContainer;
|
|
2866
|
+
/**
|
|
2867
|
+
* Close current container
|
|
2868
|
+
*/
|
|
2869
|
+
private closeCurrentContainer;
|
|
2870
|
+
/**
|
|
2871
|
+
* Toggle container visibility
|
|
2872
|
+
*/
|
|
2873
|
+
private toggleContainerVisibility;
|
|
2874
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FloatingContainerShortcutsService, never>;
|
|
2875
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FloatingContainerShortcutsService>;
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
2878
|
export { CideCoreFileManagerService, CideEleButtonComponent, CideEleConfirmationModalComponent, CideEleDataGridComponent, CideEleDropdownComponent, CideEleFileImageDirective, CideEleFileInputComponent, CideEleFileManagerService, CideEleFloatingContainerComponent, CideEleFloatingContainerDynamicDirective, CideEleFloatingContainerManagerComponent, CideEleFloatingContainerService, CideEleFloatingFeaturesService, CideEleFloatingFileUploaderComponent, CideEleFloatingFileUploaderService, CideEleGlobalNotificationsComponent, CideEleJsonEditorComponent, CideEleResizerDirective, CideEleSkeletonLoaderComponent, CideEleTabComponent, CideEleToastNotificationComponent, CideElementsService, CideIconComponent, CideInputComponent, CideSelectComponent, CideSelectOptionComponent, CideSpinnerComponent, CideTextareaComponent, ConfirmationService, CoreFileManagerInsertUpdatePayload, DEFAULT_GRID_CONFIG, DropdownManagerService, FloatingContainerShortcutsService, ICoreCyfmSave, KeyboardShortcutService, MFileManager, NotificationService, TooltipDirective };
|
|
2879
2879
|
export type { ButtonElevation, ButtonShape, ButtonSize, ButtonType, ButtonVariant, CideEleResizerDirection, CideEleResizerDirectionTo, ColumnType, ColumnWidth, ConfirmationOptions, ConfirmationRequest, CoreFileManagerInsertUpdateResponse, DropdownConfig, DropdownInstance, DropdownItem, DropdownPosition, ErrorValidationStatus, FileUploadData, FileUploadOptions, FileUploaderData, FloatingComponentConfig, FloatingContainerConfig, FloatingContainerInstance, FloatingFileUploaderData, GridAction, GridColumn, 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, NotificationOptions, SelectOption, SelectOptionObject, ServiceState, ShortcutOverride, StatusConfig, TabItem, TemplateContext, TemplateRenderer, TextAlign, TooltipPlacement, TooltipType, UploadProgress, ValidationStatus, controllerResponse, fileManagerControllerResponse, fileManagerResponseData, mongooseObjectIdCreateControllerResponse };
|