cloud-ide-element 1.1.3 → 1.1.6
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 +181 -442
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +179 -151
- package/package.json +1 -1
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,
|
|
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<"
|
|
499
|
+
readonly uploadStatus: _angular_core.WritableSignal<"start" | "error" | "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: "
|
|
626
|
+
uploadStatus: "start" | "error" | "uploading" | "success" | "idle";
|
|
627
627
|
isUploading: boolean;
|
|
628
628
|
uploadProgress: number;
|
|
629
629
|
files: {
|
|
@@ -955,9 +955,8 @@ 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?;
|
|
959
|
+
constructor();
|
|
961
960
|
ngOnInit(): void;
|
|
962
961
|
ngOnDestroy(): void;
|
|
963
962
|
onDocumentClick(event: Event): void;
|
|
@@ -1166,6 +1165,24 @@ declare class CideIconComponent {
|
|
|
1166
1165
|
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
1166
|
}
|
|
1168
1167
|
|
|
1168
|
+
declare class CideSpinnerComponent {
|
|
1169
|
+
/**
|
|
1170
|
+
* @description
|
|
1171
|
+
* Holds the size of the component like Small, Extra small, Large
|
|
1172
|
+
* by Default it takes small size
|
|
1173
|
+
* or the size set by the project setup service
|
|
1174
|
+
* or it will beset for individual component
|
|
1175
|
+
*
|
|
1176
|
+
* Size Appled
|
|
1177
|
+
* Component level then setup service then finally default md
|
|
1178
|
+
* Options: "xs" | "sm" | "md" | "lg" | "xl" | "xxl"
|
|
1179
|
+
*/
|
|
1180
|
+
size: themeSize;
|
|
1181
|
+
type: spinnerType;
|
|
1182
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideSpinnerComponent, never>;
|
|
1183
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideSpinnerComponent, "cide-ele-spinner", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1169
1186
|
interface NotificationOptions {
|
|
1170
1187
|
message: string;
|
|
1171
1188
|
type?: 'success' | 'error' | 'warning' | 'info';
|
|
@@ -1636,134 +1653,6 @@ declare class CideEleFileManagerService {
|
|
|
1636
1653
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<CideEleFileManagerService>;
|
|
1637
1654
|
}
|
|
1638
1655
|
|
|
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
1656
|
declare class CideCoreFileManagerService {
|
|
1768
1657
|
private http;
|
|
1769
1658
|
private apiUrl;
|
|
@@ -1963,6 +1852,159 @@ declare class KeyboardShortcutService implements OnDestroy {
|
|
|
1963
1852
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<KeyboardShortcutService>;
|
|
1964
1853
|
}
|
|
1965
1854
|
|
|
1855
|
+
interface ConfirmationRequest<T = unknown> {
|
|
1856
|
+
id: string;
|
|
1857
|
+
title: string;
|
|
1858
|
+
message: string;
|
|
1859
|
+
type: 'danger' | 'warning' | 'info' | 'success';
|
|
1860
|
+
icon?: string;
|
|
1861
|
+
confirmText?: string;
|
|
1862
|
+
cancelText?: string;
|
|
1863
|
+
customTemplate?: TemplateRef<unknown>;
|
|
1864
|
+
customData?: T;
|
|
1865
|
+
resolve: (value: boolean | T) => void;
|
|
1866
|
+
reject: (reason?: unknown) => void;
|
|
1867
|
+
}
|
|
1868
|
+
interface ConfirmationOptions<T = unknown> {
|
|
1869
|
+
title: string;
|
|
1870
|
+
message: string;
|
|
1871
|
+
type?: 'danger' | 'warning' | 'info' | 'success';
|
|
1872
|
+
icon?: string;
|
|
1873
|
+
confirmText?: string;
|
|
1874
|
+
cancelText?: string;
|
|
1875
|
+
customTemplate?: TemplateRef<unknown>;
|
|
1876
|
+
customData?: T;
|
|
1877
|
+
}
|
|
1878
|
+
declare class ConfirmationService implements OnDestroy {
|
|
1879
|
+
private readonly confirmationQueue;
|
|
1880
|
+
private readonly currentRequest;
|
|
1881
|
+
readonly hasActiveConfirmation: _angular_core.Signal<boolean>;
|
|
1882
|
+
readonly queueLength: _angular_core.Signal<number>;
|
|
1883
|
+
constructor();
|
|
1884
|
+
ngOnDestroy(): void;
|
|
1885
|
+
/**
|
|
1886
|
+
* Ask for confirmation with a simple yes/no dialog
|
|
1887
|
+
*/
|
|
1888
|
+
ask(options: ConfirmationOptions<unknown>): Promise<boolean>;
|
|
1889
|
+
/**
|
|
1890
|
+
* Ask for confirmation with custom template and return custom data
|
|
1891
|
+
*/
|
|
1892
|
+
askWithTemplate<T = unknown>(options: ConfirmationOptions<T> & {
|
|
1893
|
+
customTemplate: TemplateRef<unknown>;
|
|
1894
|
+
}): Promise<T>;
|
|
1895
|
+
/**
|
|
1896
|
+
* Quick confirmation for dangerous actions
|
|
1897
|
+
*/
|
|
1898
|
+
confirmDelete(itemName?: string): Promise<boolean>;
|
|
1899
|
+
/**
|
|
1900
|
+
* Quick confirmation for permanent actions
|
|
1901
|
+
*/
|
|
1902
|
+
confirmPermanentAction(action: string, itemName?: string): Promise<boolean>;
|
|
1903
|
+
/**
|
|
1904
|
+
* Quick confirmation for safe actions
|
|
1905
|
+
*/
|
|
1906
|
+
confirmSafeAction(action: string, itemName?: string): Promise<boolean>;
|
|
1907
|
+
private addToQueue;
|
|
1908
|
+
private processQueue;
|
|
1909
|
+
confirmCurrentRequest(data?: unknown): void;
|
|
1910
|
+
cancelCurrentRequest(): void;
|
|
1911
|
+
private removeCurrentRequest;
|
|
1912
|
+
private generateId;
|
|
1913
|
+
private getDefaultIcon;
|
|
1914
|
+
getCurrentRequest(): _angular_core.WritableSignal<ConfirmationRequest<unknown> | null>;
|
|
1915
|
+
getHasActiveConfirmation(): _angular_core.Signal<boolean>;
|
|
1916
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfirmationService, never>;
|
|
1917
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ConfirmationService>;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
interface PortalPosition {
|
|
1921
|
+
top: number;
|
|
1922
|
+
left: number;
|
|
1923
|
+
maxHeight?: number;
|
|
1924
|
+
maxWidth?: number;
|
|
1925
|
+
minWidth?: number;
|
|
1926
|
+
}
|
|
1927
|
+
interface PortalConfig {
|
|
1928
|
+
triggerElement: HTMLElement;
|
|
1929
|
+
content: string;
|
|
1930
|
+
className?: string;
|
|
1931
|
+
position?: 'bottom' | 'top' | 'auto';
|
|
1932
|
+
align?: 'left' | 'right' | 'center' | 'auto';
|
|
1933
|
+
offsetX?: number;
|
|
1934
|
+
offsetY?: number;
|
|
1935
|
+
maxHeight?: number;
|
|
1936
|
+
minWidth?: number;
|
|
1937
|
+
closeOnClickOutside?: boolean;
|
|
1938
|
+
closeOnEscape?: boolean;
|
|
1939
|
+
}
|
|
1940
|
+
interface TemplatePortalConfig {
|
|
1941
|
+
triggerElement: HTMLElement;
|
|
1942
|
+
template: TemplateRef<any>;
|
|
1943
|
+
viewContainerRef: ViewContainerRef;
|
|
1944
|
+
context?: any;
|
|
1945
|
+
className?: string;
|
|
1946
|
+
position?: 'bottom' | 'top' | 'auto';
|
|
1947
|
+
align?: 'left' | 'right' | 'center' | 'auto';
|
|
1948
|
+
offsetX?: number;
|
|
1949
|
+
offsetY?: number;
|
|
1950
|
+
maxHeight?: number;
|
|
1951
|
+
minWidth?: number;
|
|
1952
|
+
closeOnClickOutside?: boolean;
|
|
1953
|
+
closeOnEscape?: boolean;
|
|
1954
|
+
}
|
|
1955
|
+
declare class PortalService {
|
|
1956
|
+
private portals;
|
|
1957
|
+
private templatePortals;
|
|
1958
|
+
private boundClickOutsideHandler;
|
|
1959
|
+
private boundEscapeHandler;
|
|
1960
|
+
private closeCallbacks;
|
|
1961
|
+
constructor();
|
|
1962
|
+
/**
|
|
1963
|
+
* Create a portal with the given configuration
|
|
1964
|
+
*/
|
|
1965
|
+
createPortal(id: string, config: PortalConfig): HTMLElement;
|
|
1966
|
+
/**
|
|
1967
|
+
* Create a template-based portal with Angular template
|
|
1968
|
+
*/
|
|
1969
|
+
createTemplatePortal(id: string, config: TemplatePortalConfig): HTMLElement;
|
|
1970
|
+
/**
|
|
1971
|
+
* Update portal content
|
|
1972
|
+
*/
|
|
1973
|
+
updatePortal(id: string, content: string): void;
|
|
1974
|
+
/**
|
|
1975
|
+
* Update portal position
|
|
1976
|
+
*/
|
|
1977
|
+
updatePortalPosition(id: string, config: PortalConfig): void;
|
|
1978
|
+
/**
|
|
1979
|
+
* Destroy a portal
|
|
1980
|
+
*/
|
|
1981
|
+
destroyPortal(id: string): void;
|
|
1982
|
+
/**
|
|
1983
|
+
* Destroy all portals
|
|
1984
|
+
*/
|
|
1985
|
+
destroyAllPortals(): void;
|
|
1986
|
+
/**
|
|
1987
|
+
* Register a close callback for a portal
|
|
1988
|
+
*/
|
|
1989
|
+
registerCloseCallback(id: string, callback: () => void): void;
|
|
1990
|
+
/**
|
|
1991
|
+
* Get portal element by ID
|
|
1992
|
+
*/
|
|
1993
|
+
getPortal(id: string): HTMLElement | undefined;
|
|
1994
|
+
/**
|
|
1995
|
+
* Check if portal exists
|
|
1996
|
+
*/
|
|
1997
|
+
hasPortal(id: string): boolean;
|
|
1998
|
+
private calculatePosition;
|
|
1999
|
+
private adjustPosition;
|
|
2000
|
+
private setupEventListeners;
|
|
2001
|
+
private cleanupEventListeners;
|
|
2002
|
+
private handleClickOutside;
|
|
2003
|
+
private handleEscape;
|
|
2004
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PortalService, never>;
|
|
2005
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PortalService>;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
1966
2008
|
/**
|
|
1967
2009
|
* Directive to display images from file manager by ID
|
|
1968
2010
|
* Usage: <img cideEleFileImage [fileId]="yourFileId" [altText]="'Image'" class="your-css-classes" />
|
|
@@ -2008,24 +2050,10 @@ declare class CideFormFieldErrorComponent implements OnInit, OnChanges {
|
|
|
2008
2050
|
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
2051
|
}
|
|
2010
2052
|
|
|
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
2053
|
declare class CideEleConfirmationModalComponent implements OnInit, OnDestroy {
|
|
2026
2054
|
private readonly confirmationService;
|
|
2027
2055
|
readonly hasActiveConfirmation: _angular_core.Signal<boolean>;
|
|
2028
|
-
readonly currentRequest: _angular_core.WritableSignal<ConfirmationRequest<unknown> | null>;
|
|
2056
|
+
readonly currentRequest: _angular_core.WritableSignal<cloud_ide_element.ConfirmationRequest<unknown> | null>;
|
|
2029
2057
|
readonly customData: _angular_core.WritableSignal<unknown>;
|
|
2030
2058
|
ngOnInit(): void;
|
|
2031
2059
|
ngOnDestroy(): void;
|
|
@@ -3001,5 +3029,5 @@ declare class CideEleSkeletonLoaderComponent {
|
|
|
3001
3029
|
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
3030
|
}
|
|
3003
3031
|
|
|
3004
|
-
export {
|
|
3005
|
-
export type { BreadcrumbConfig,
|
|
3032
|
+
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 };
|
|
3033
|
+
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 };
|