cloud-ide-element 1.1.3 → 1.1.5

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
@@ -1,7 +1,7 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { PipeTransform, OnChanges, OnInit, OnDestroy, EventEmitter, TemplateRef, SimpleChanges, ElementRef, AfterContentInit, QueryList, ViewContainerRef, Renderer2, InjectionToken, Signal, AfterViewInit, Type, Injector, ComponentRef } from '@angular/core';
2
+ import { PipeTransform, OnChanges, OnInit, OnDestroy, EventEmitter, TemplateRef, SimpleChanges, ElementRef, AfterContentInit, QueryList, ViewContainerRef, Renderer2, Signal, AfterViewInit, Type, Injector, ComponentRef } from '@angular/core';
3
3
  import { ControlValueAccessor, Validator, AbstractControl, ValidationErrors, FormGroup } from '@angular/forms';
4
- import { elementStyleType, labelPlacementType, labelDirType, autocapitalizeType, autocompleteType, controlType, inputType, themeSize, selectSearchType, ICoreSype, GetElementDataRequest, iconType, fileManagerListByGroupIdControllerResponse } from 'cloud-ide-lms-model';
4
+ import { elementStyleType, labelPlacementType, labelDirType, autocapitalizeType, autocompleteType, controlType, inputType, themeSize, selectSearchType, ICoreSype, GetElementDataRequest, iconType, spinnerType, fileManagerListByGroupIdControllerResponse } from 'cloud-ide-lms-model';
5
5
  import * as cloud_ide_element from 'cloud-ide-element';
6
6
  import { BehaviorSubject, Observable } from 'rxjs';
7
7
  import { Router, NavigationExtras } from '@angular/router';
@@ -496,7 +496,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
496
496
  readonly id: _angular_core.WritableSignal<string>;
497
497
  readonly isUploading: _angular_core.WritableSignal<boolean>;
498
498
  readonly uploadProgress: _angular_core.WritableSignal<number>;
499
- readonly uploadStatus: _angular_core.WritableSignal<"success" | "error" | "start" | "uploading" | "idle">;
499
+ readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
500
500
  readonly files: _angular_core.WritableSignal<FileList | null>;
501
501
  readonly fileNames: _angular_core.WritableSignal<string[]>;
502
502
  readonly previewUrls: _angular_core.WritableSignal<string[]>;
@@ -623,7 +623,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
623
623
  multiple: boolean;
624
624
  showPreview: boolean;
625
625
  autoUpload: boolean;
626
- uploadStatus: "success" | "error" | "start" | "uploading" | "idle";
626
+ uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
627
627
  isUploading: boolean;
628
628
  uploadProgress: number;
629
629
  files: {
@@ -955,8 +955,6 @@ declare class CideEleBreadcrumbComponent implements OnInit, OnDestroy {
955
955
  hiddenItemsSignal: _angular_core.Signal<BreadcrumbItem[]>;
956
956
  config: _angular_core.Signal<BreadcrumbConfig>;
957
957
  effectiveLoading: _angular_core.Signal<boolean>;
958
- private breadcrumbService;
959
- private pagePathResolver;
960
958
  private cleanupEffect?;
961
959
  ngOnInit(): void;
962
960
  ngOnDestroy(): void;
@@ -1166,6 +1164,24 @@ declare class CideIconComponent {
1166
1164
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideIconComponent, "cide-ele-icon", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "toolTip": { "alias": "toolTip"; "required": false; }; }, {}, never, ["*"], true, never>;
1167
1165
  }
1168
1166
 
1167
+ declare class CideSpinnerComponent {
1168
+ /**
1169
+ * @description
1170
+ * Holds the size of the component like Small, Extra small, Large
1171
+ * by Default it takes small size
1172
+ * or the size set by the project setup service
1173
+ * or it will beset for individual component
1174
+ *
1175
+ * Size Appled
1176
+ * Component level then setup service then finally default md
1177
+ * Options: "xs" | "sm" | "md" | "lg" | "xl" | "xxl"
1178
+ */
1179
+ size: themeSize;
1180
+ type: spinnerType;
1181
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideSpinnerComponent, never>;
1182
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideSpinnerComponent, "cide-ele-spinner", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
1183
+ }
1184
+
1169
1185
  interface NotificationOptions {
1170
1186
  message: string;
1171
1187
  type?: 'success' | 'error' | 'warning' | 'info';
@@ -1636,134 +1652,6 @@ declare class CideEleFileManagerService {
1636
1652
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<CideEleFileManagerService>;
1637
1653
  }
1638
1654
 
1639
- interface BreadcrumbPageInfo {
1640
- pageId: string;
1641
- moduleName: string;
1642
- menuName: string;
1643
- icon?: string;
1644
- path?: string;
1645
- parentPageId?: string;
1646
- }
1647
- interface BreadcrumbNavigationItem {
1648
- id: string;
1649
- label: string;
1650
- icon?: string;
1651
- type: 'root' | 'module' | 'menu' | 'page';
1652
- path?: string;
1653
- }
1654
- interface BreadcrumbResolvedItem {
1655
- id: string;
1656
- label: string;
1657
- icon?: string;
1658
- path?: string;
1659
- }
1660
- type BreadcrumbContextId = string;
1661
- type PagePathResolver = (pageCode: string) => Promise<BreadcrumbResolvedItem[]>;
1662
- declare const PAGE_PATH_RESOLVER: InjectionToken<PagePathResolver>;
1663
- declare class BreadcrumbNavigationService {
1664
- private activeContextId;
1665
- private contextIdToItems;
1666
- private currentBreadcrumbItems;
1667
- private isLoading;
1668
- private pagePathResolver;
1669
- constructor(resolver?: PagePathResolver);
1670
- /**
1671
- * Generate breadcrumb items for a given page ID
1672
- * @param pageId - The page identifier
1673
- * @param additionalItems - Optional additional breadcrumb items to append
1674
- * @returns Promise<BreadcrumbNavigationItem[]> - Generated breadcrumb items
1675
- */
1676
- generateBreadcrumb(pageId: string, additionalItems?: BreadcrumbNavigationItem[], contextId?: BreadcrumbContextId): Promise<BreadcrumbNavigationItem[]>;
1677
- /**
1678
- * Generate breadcrumb with parent entity information
1679
- * @param pageId - The page identifier
1680
- * @param parentEntityInfo - Parent entity information
1681
- * @returns Promise<BreadcrumbNavigationItem[]> - Generated breadcrumb items
1682
- */
1683
- generateBreadcrumbWithParent(pageId: string, parentEntityInfo: {
1684
- id: string;
1685
- name: string;
1686
- type?: string;
1687
- }, contextId?: BreadcrumbContextId): Promise<BreadcrumbNavigationItem[]>;
1688
- /**
1689
- * Set or switch the active breadcrumb context (e.g., when focusing a tab/popup)
1690
- */
1691
- setActiveContext(contextId: BreadcrumbContextId): void;
1692
- /**
1693
- * Provide an external resolver that can translate a pageCode to full breadcrumb path
1694
- */
1695
- registerPagePathResolver(resolver: PagePathResolver): void;
1696
- /**
1697
- * Resolve and set breadcrumb by page code using external API/menu resolver
1698
- */
1699
- resolveAndSetByPageCode(pageCode: string, contextId?: BreadcrumbContextId): Promise<BreadcrumbNavigationItem[]>;
1700
- /**
1701
- * Register a new page in the registry
1702
- * @param pageInfo - Page information to register
1703
- */
1704
- registerPage(pageInfo: BreadcrumbPageInfo): void;
1705
- /**
1706
- * Register multiple pages at once
1707
- * @param pages - Array of page information to register
1708
- */
1709
- registerPages(pages: BreadcrumbPageInfo[]): void;
1710
- /**
1711
- * Get current breadcrumb items
1712
- * @returns BreadcrumbNavigationItem[] - Current breadcrumb items
1713
- */
1714
- getCurrentBreadcrumb(): BreadcrumbNavigationItem[];
1715
- /**
1716
- * Returns a signal of the current breadcrumb items for binding in UI
1717
- */
1718
- getCurrentBreadcrumbSignal(): Signal<BreadcrumbNavigationItem[]>;
1719
- /**
1720
- * Get loading state
1721
- * @returns boolean - Loading state
1722
- */
1723
- isLoadingBreadcrumb(): boolean;
1724
- /**
1725
- * Clear current breadcrumb
1726
- */
1727
- clearBreadcrumb(contextId?: BreadcrumbContextId): void;
1728
- /**
1729
- * Set default breadcrumb
1730
- */
1731
- private setDefaultBreadcrumb;
1732
- /**
1733
- * Get default breadcrumb
1734
- * @returns BreadcrumbNavigationItem[] - Default breadcrumb items
1735
- */
1736
- private getDefaultBreadcrumb;
1737
- /**
1738
- * Format page label from page ID
1739
- * @param pageId - Page identifier
1740
- * @returns string - Formatted page label
1741
- */
1742
- private formatPageLabel;
1743
- /**
1744
- * Get all registered pages
1745
- * @returns BreadcrumbPageInfo[] - All registered pages
1746
- */
1747
- getAllRegisteredPages(): BreadcrumbPageInfo[];
1748
- /**
1749
- * Get pages by module
1750
- * @param moduleName - Module name to filter by
1751
- * @returns BreadcrumbPageInfo[] - Pages in the specified module
1752
- */
1753
- getPagesByModule(moduleName: string): BreadcrumbPageInfo[];
1754
- /**
1755
- * Get pages by menu
1756
- * @param menuName - Menu name to filter by
1757
- * @returns BreadcrumbPageInfo[] - Pages in the specified menu
1758
- */
1759
- getPagesByMenu(menuName: string): BreadcrumbPageInfo[];
1760
- private ensureContext;
1761
- private getContextSignal;
1762
- private setContextItems;
1763
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbNavigationService, [{ optional: true; }]>;
1764
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<BreadcrumbNavigationService>;
1765
- }
1766
-
1767
1655
  declare class CideCoreFileManagerService {
1768
1656
  private http;
1769
1657
  private apiUrl;
@@ -1963,6 +1851,159 @@ declare class KeyboardShortcutService implements OnDestroy {
1963
1851
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<KeyboardShortcutService>;
1964
1852
  }
1965
1853
 
1854
+ interface ConfirmationRequest<T = unknown> {
1855
+ id: string;
1856
+ title: string;
1857
+ message: string;
1858
+ type: 'danger' | 'warning' | 'info' | 'success';
1859
+ icon?: string;
1860
+ confirmText?: string;
1861
+ cancelText?: string;
1862
+ customTemplate?: TemplateRef<unknown>;
1863
+ customData?: T;
1864
+ resolve: (value: boolean | T) => void;
1865
+ reject: (reason?: unknown) => void;
1866
+ }
1867
+ interface ConfirmationOptions<T = unknown> {
1868
+ title: string;
1869
+ message: string;
1870
+ type?: 'danger' | 'warning' | 'info' | 'success';
1871
+ icon?: string;
1872
+ confirmText?: string;
1873
+ cancelText?: string;
1874
+ customTemplate?: TemplateRef<unknown>;
1875
+ customData?: T;
1876
+ }
1877
+ declare class ConfirmationService implements OnDestroy {
1878
+ private readonly confirmationQueue;
1879
+ private readonly currentRequest;
1880
+ readonly hasActiveConfirmation: _angular_core.Signal<boolean>;
1881
+ readonly queueLength: _angular_core.Signal<number>;
1882
+ constructor();
1883
+ ngOnDestroy(): void;
1884
+ /**
1885
+ * Ask for confirmation with a simple yes/no dialog
1886
+ */
1887
+ ask(options: ConfirmationOptions<unknown>): Promise<boolean>;
1888
+ /**
1889
+ * Ask for confirmation with custom template and return custom data
1890
+ */
1891
+ askWithTemplate<T = unknown>(options: ConfirmationOptions<T> & {
1892
+ customTemplate: TemplateRef<unknown>;
1893
+ }): Promise<T>;
1894
+ /**
1895
+ * Quick confirmation for dangerous actions
1896
+ */
1897
+ confirmDelete(itemName?: string): Promise<boolean>;
1898
+ /**
1899
+ * Quick confirmation for permanent actions
1900
+ */
1901
+ confirmPermanentAction(action: string, itemName?: string): Promise<boolean>;
1902
+ /**
1903
+ * Quick confirmation for safe actions
1904
+ */
1905
+ confirmSafeAction(action: string, itemName?: string): Promise<boolean>;
1906
+ private addToQueue;
1907
+ private processQueue;
1908
+ confirmCurrentRequest(data?: unknown): void;
1909
+ cancelCurrentRequest(): void;
1910
+ private removeCurrentRequest;
1911
+ private generateId;
1912
+ private getDefaultIcon;
1913
+ getCurrentRequest(): _angular_core.WritableSignal<ConfirmationRequest<unknown> | null>;
1914
+ getHasActiveConfirmation(): _angular_core.Signal<boolean>;
1915
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfirmationService, never>;
1916
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<ConfirmationService>;
1917
+ }
1918
+
1919
+ interface PortalPosition {
1920
+ top: number;
1921
+ left: number;
1922
+ maxHeight?: number;
1923
+ maxWidth?: number;
1924
+ minWidth?: number;
1925
+ }
1926
+ interface PortalConfig {
1927
+ triggerElement: HTMLElement;
1928
+ content: string;
1929
+ className?: string;
1930
+ position?: 'bottom' | 'top' | 'auto';
1931
+ align?: 'left' | 'right' | 'center' | 'auto';
1932
+ offsetX?: number;
1933
+ offsetY?: number;
1934
+ maxHeight?: number;
1935
+ minWidth?: number;
1936
+ closeOnClickOutside?: boolean;
1937
+ closeOnEscape?: boolean;
1938
+ }
1939
+ interface TemplatePortalConfig {
1940
+ triggerElement: HTMLElement;
1941
+ template: TemplateRef<any>;
1942
+ viewContainerRef: ViewContainerRef;
1943
+ context?: any;
1944
+ className?: string;
1945
+ position?: 'bottom' | 'top' | 'auto';
1946
+ align?: 'left' | 'right' | 'center' | 'auto';
1947
+ offsetX?: number;
1948
+ offsetY?: number;
1949
+ maxHeight?: number;
1950
+ minWidth?: number;
1951
+ closeOnClickOutside?: boolean;
1952
+ closeOnEscape?: boolean;
1953
+ }
1954
+ declare class PortalService {
1955
+ private portals;
1956
+ private templatePortals;
1957
+ private boundClickOutsideHandler;
1958
+ private boundEscapeHandler;
1959
+ private closeCallbacks;
1960
+ constructor();
1961
+ /**
1962
+ * Create a portal with the given configuration
1963
+ */
1964
+ createPortal(id: string, config: PortalConfig): HTMLElement;
1965
+ /**
1966
+ * Create a template-based portal with Angular template
1967
+ */
1968
+ createTemplatePortal(id: string, config: TemplatePortalConfig): HTMLElement;
1969
+ /**
1970
+ * Update portal content
1971
+ */
1972
+ updatePortal(id: string, content: string): void;
1973
+ /**
1974
+ * Update portal position
1975
+ */
1976
+ updatePortalPosition(id: string, config: PortalConfig): void;
1977
+ /**
1978
+ * Destroy a portal
1979
+ */
1980
+ destroyPortal(id: string): void;
1981
+ /**
1982
+ * Destroy all portals
1983
+ */
1984
+ destroyAllPortals(): void;
1985
+ /**
1986
+ * Register a close callback for a portal
1987
+ */
1988
+ registerCloseCallback(id: string, callback: () => void): void;
1989
+ /**
1990
+ * Get portal element by ID
1991
+ */
1992
+ getPortal(id: string): HTMLElement | undefined;
1993
+ /**
1994
+ * Check if portal exists
1995
+ */
1996
+ hasPortal(id: string): boolean;
1997
+ private calculatePosition;
1998
+ private adjustPosition;
1999
+ private setupEventListeners;
2000
+ private cleanupEventListeners;
2001
+ private handleClickOutside;
2002
+ private handleEscape;
2003
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<PortalService, never>;
2004
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<PortalService>;
2005
+ }
2006
+
1966
2007
  /**
1967
2008
  * Directive to display images from file manager by ID
1968
2009
  * Usage: <img cideEleFileImage [fileId]="yourFileId" [altText]="'Image'" class="your-css-classes" />
@@ -2008,24 +2049,10 @@ declare class CideFormFieldErrorComponent implements OnInit, OnChanges {
2008
2049
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideFormFieldErrorComponent, "cide-form-field-error", never, { "control": { "alias": "control"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "fieldName": { "alias": "fieldName"; "required": false; }; "customMessages": { "alias": "customMessages"; "required": false; }; }, {}, never, never, true, never>;
2009
2050
  }
2010
2051
 
2011
- interface ConfirmationRequest<T = unknown> {
2012
- id: string;
2013
- title: string;
2014
- message: string;
2015
- type: 'danger' | 'warning' | 'info' | 'success';
2016
- icon?: string;
2017
- confirmText?: string;
2018
- cancelText?: string;
2019
- customTemplate?: TemplateRef<unknown>;
2020
- customData?: T;
2021
- resolve: (value: boolean | T) => void;
2022
- reject: (reason?: unknown) => void;
2023
- }
2024
-
2025
2052
  declare class CideEleConfirmationModalComponent implements OnInit, OnDestroy {
2026
2053
  private readonly confirmationService;
2027
2054
  readonly hasActiveConfirmation: _angular_core.Signal<boolean>;
2028
- readonly currentRequest: _angular_core.WritableSignal<ConfirmationRequest<unknown> | null>;
2055
+ readonly currentRequest: _angular_core.WritableSignal<cloud_ide_element.ConfirmationRequest<unknown> | null>;
2029
2056
  readonly customData: _angular_core.WritableSignal<unknown>;
2030
2057
  ngOnInit(): void;
2031
2058
  ngOnDestroy(): void;
@@ -3001,5 +3028,5 @@ declare class CideEleSkeletonLoaderComponent {
3001
3028
  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>;
3002
3029
  }
3003
3030
 
3004
- export { BreadcrumbNavigationService, CapitalizePipe, CideCoreFileManagerService, CideEleBreadcrumbComponent, CideEleButtonComponent, CideEleConfirmationModalComponent, CideEleDataGridComponent, CideEleDropdownComponent, CideEleFileImageDirective, CideEleFileInputComponent, CideEleFileManagerService, CideEleFloatingContainerComponent, CideEleFloatingContainerDynamicDirective, CideEleFloatingContainerManagerComponent, CideEleFloatingContainerService, CideEleFloatingFeaturesService, CideEleFloatingFileUploaderComponent, CideEleFloatingFileUploaderService, CideEleGlobalNotificationsComponent, CideEleJsonEditorComponent, CideEleResizerDirective, CideEleSkeletonLoaderComponent, CideEleTabComponent, CideEleToastNotificationComponent, CideElementsService, CideFormFieldErrorComponent, CideIconComponent, CideInputComponent, CideSelectComponent, CideSelectOptionComponent, CideTextareaComponent, CoreFileManagerInsertUpdatePayload, DEFAULT_GRID_CONFIG, DropdownManagerService, ICoreCyfmSave, KeyboardShortcutService, MFileManager, NotificationService, PAGE_PATH_RESOLVER, TooltipDirective };
3005
- export type { BreadcrumbConfig, BreadcrumbContextId, BreadcrumbDropdownOption, BreadcrumbItem, BreadcrumbNavigationItem, BreadcrumbPageInfo, BreadcrumbResolvedItem, BreadcrumbSeparator, BreadcrumbStyle, ButtonElevation, ButtonShape, ButtonSize, ButtonType, ButtonVariant, CideEleResizerDirection, CideEleResizerDirectionTo, ColumnType, ColumnWidth, 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, PagePathResolver, SelectOption, SelectOptionObject, ServiceState, ShortcutOverride, StatusConfig, TabItem, TemplateContext, TemplateRenderer, TextAlign, TooltipPlacement, TooltipType, UploadProgress, ValidationStatus, controllerResponse, fileManagerControllerResponse, fileManagerResponseData, mongooseObjectIdCreateControllerResponse };
3031
+ export { CapitalizePipe, CideCoreFileManagerService, CideEleBreadcrumbComponent, CideEleButtonComponent, CideEleConfirmationModalComponent, CideEleDataGridComponent, CideEleDropdownComponent, CideEleFileImageDirective, CideEleFileInputComponent, CideEleFileManagerService, CideEleFloatingContainerComponent, CideEleFloatingContainerDynamicDirective, CideEleFloatingContainerManagerComponent, CideEleFloatingContainerService, CideEleFloatingFeaturesService, CideEleFloatingFileUploaderComponent, CideEleFloatingFileUploaderService, CideEleGlobalNotificationsComponent, CideEleJsonEditorComponent, CideEleResizerDirective, CideEleSkeletonLoaderComponent, CideEleTabComponent, CideEleToastNotificationComponent, CideElementsService, CideFormFieldErrorComponent, CideIconComponent, CideInputComponent, CideSelectComponent, CideSelectOptionComponent, CideSpinnerComponent, CideTextareaComponent, ConfirmationService, CoreFileManagerInsertUpdatePayload, DEFAULT_GRID_CONFIG, DropdownManagerService, ICoreCyfmSave, KeyboardShortcutService, MFileManager, NotificationService, PortalService, TooltipDirective };
3032
+ export type { BreadcrumbConfig, BreadcrumbDropdownOption, BreadcrumbItem, BreadcrumbSeparator, BreadcrumbStyle, 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, PortalConfig, PortalPosition, SelectOption, SelectOptionObject, ServiceState, ShortcutOverride, StatusConfig, TabItem, TemplateContext, TemplatePortalConfig, TemplateRenderer, TextAlign, TooltipPlacement, TooltipType, UploadProgress, ValidationStatus, controllerResponse, fileManagerControllerResponse, fileManagerResponseData, mongooseObjectIdCreateControllerResponse };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"