@masterteam/dashboard-builder 0.0.14 → 0.0.16
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/assets/dashboard-builder.css +1 -1
- package/assets/i18n/ar.json +53 -42
- package/assets/i18n/en.json +23 -12
- package/fesm2022/{masterteam-dashboard-builder-dashboard-dialog.component-CF1Lnyxf.mjs → masterteam-dashboard-builder-dashboard-dialog.component-CMNlOHiK.mjs} +3 -4
- package/fesm2022/masterteam-dashboard-builder-dashboard-dialog.component-CMNlOHiK.mjs.map +1 -0
- package/fesm2022/masterteam-dashboard-builder.mjs +809 -285
- package/fesm2022/masterteam-dashboard-builder.mjs.map +1 -1
- package/package.json +3 -3
- package/types/masterteam-dashboard-builder.d.ts +244 -123
- package/fesm2022/masterteam-dashboard-builder-dashboard-dialog.component-CF1Lnyxf.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/dashboard-builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/dashboard-builder",
|
|
6
6
|
"linkDirectory": true,
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"primeng": "21.0.1",
|
|
22
22
|
"rxjs": "^7.8.2",
|
|
23
23
|
"tailwindcss": "^4.1.17",
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/
|
|
24
|
+
"@masterteam/icons": "^0.0.14",
|
|
25
|
+
"@masterteam/components": "^0.0.135"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"tslib": "^2.8.1",
|
|
@@ -6,6 +6,7 @@ import { ContextMenu } from 'primeng/contextmenu';
|
|
|
6
6
|
import { MenuItem } from 'primeng/api';
|
|
7
7
|
import * as _angular_forms from '@angular/forms';
|
|
8
8
|
import { ControlValueAccessor, FormGroup, FormArray, ValidationErrors } from '@angular/forms';
|
|
9
|
+
import { EntityData as EntityData$1 } from '@masterteam/components/entities';
|
|
9
10
|
import { MTIcon } from '@masterteam/icons';
|
|
10
11
|
import * as rxjs from 'rxjs';
|
|
11
12
|
import { Observable } from 'rxjs';
|
|
@@ -683,6 +684,8 @@ declare class DashboardBuilder implements OnInit, OnDestroy {
|
|
|
683
684
|
readonly pageId: _angular_core.InputSignal<string | number | null>;
|
|
684
685
|
/** Standalone mode (when true, builder runs without API calls) */
|
|
685
686
|
readonly standalone: _angular_core.InputSignal<boolean>;
|
|
687
|
+
/** Optional services filter used by manage-item metadata tree loading */
|
|
688
|
+
readonly services: _angular_core.InputSignal<readonly string[] | null>;
|
|
686
689
|
/** Standalone dashboard data model */
|
|
687
690
|
readonly dashboardData: _angular_core.ModelSignal<DashboardBuilderData | null>;
|
|
688
691
|
/** Read-only mode */
|
|
@@ -734,6 +737,9 @@ declare class DashboardBuilder implements OnInit, OnDestroy {
|
|
|
734
737
|
private dragStartY;
|
|
735
738
|
private applyingDashboardData;
|
|
736
739
|
private emittingDashboardData;
|
|
740
|
+
private readonly boundHandleDragOver;
|
|
741
|
+
private readonly boundHandleDrop;
|
|
742
|
+
private readonly boundHandleDragEnd;
|
|
737
743
|
readonly menuItems: _angular_core.Signal<MenuItem[]>;
|
|
738
744
|
ngOnInit(): void;
|
|
739
745
|
ngOnDestroy(): void;
|
|
@@ -801,7 +807,7 @@ declare class DashboardBuilder implements OnInit, OnDestroy {
|
|
|
801
807
|
private applyDashboardData;
|
|
802
808
|
private emitDashboardDataChange;
|
|
803
809
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DashboardBuilder, never>;
|
|
804
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardBuilder, "mt-dashboard-builder", never, { "isPage": { "alias": "isPage"; "required": false; "isSignal": true; }; "pageTitle": { "alias": "pageTitle"; "required": false; "isSignal": true; }; "backButton": { "alias": "backButton"; "required": false; "isSignal": true; }; "pageId": { "alias": "pageId"; "required": false; "isSignal": true; }; "standalone": { "alias": "standalone"; "required": false; "isSignal": true; }; "dashboardData": { "alias": "dashboardData"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "dashboardData": "dashboardDataChange"; "pageChange": "pageChange"; "chartsChange": "chartsChange"; "onSave": "onSave"; "onBack": "onBack"; "onAddChart": "onAddChart"; "onEditChart": "onEditChart"; }, never, never, true, never>;
|
|
810
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardBuilder, "mt-dashboard-builder", never, { "isPage": { "alias": "isPage"; "required": false; "isSignal": true; }; "pageTitle": { "alias": "pageTitle"; "required": false; "isSignal": true; }; "backButton": { "alias": "backButton"; "required": false; "isSignal": true; }; "pageId": { "alias": "pageId"; "required": false; "isSignal": true; }; "standalone": { "alias": "standalone"; "required": false; "isSignal": true; }; "services": { "alias": "services"; "required": false; "isSignal": true; }; "dashboardData": { "alias": "dashboardData"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "dashboardData": "dashboardDataChange"; "pageChange": "pageChange"; "chartsChange": "chartsChange"; "onSave": "onSave"; "onBack": "onBack"; "onAddChart": "onAddChart"; "onEditChart": "onEditChart"; }, never, never, true, never>;
|
|
805
811
|
}
|
|
806
812
|
|
|
807
813
|
/**
|
|
@@ -919,10 +925,6 @@ declare class DashboardViewer implements OnInit, OnDestroy {
|
|
|
919
925
|
* Get icon from configAsType
|
|
920
926
|
*/
|
|
921
927
|
getItemIcon(item: DashboardChartItem): string | null;
|
|
922
|
-
/**
|
|
923
|
-
* Get breadcrumb items for topbar
|
|
924
|
-
*/
|
|
925
|
-
getBreadcrumb(item: DashboardChartItem): any[];
|
|
926
928
|
/**
|
|
927
929
|
* Get chart type
|
|
928
930
|
*/
|
|
@@ -1092,7 +1094,7 @@ type RequestType = 'level' | 'levellog' | 'log' | 'custom' | 'snapShot' | 'level
|
|
|
1092
1094
|
/**
|
|
1093
1095
|
* Chart type to component mapping
|
|
1094
1096
|
*/
|
|
1095
|
-
type ComponentType = 'chart' | 'map' | 'BackgroundTextChart' | 'chartCustomWithCardInfo' | 'listOfcharts' | 'listOfCardsStatistic' | 'cardsStatistic' | 'header' | 'footer' | 'label' | 'listOfLevelCards' | 'dialog' | 'table' | 'phaseGateTable' | 'topbar' | 'timeline' | 'timelineProjectDependencies' | 'lastHistoryLevelCard' | 'entityPreview' | 'clusterStackedChart' | 'listComponentSplusCard' | 'splitterChart' | 'repeater' | 'levelCardsWithStatic' | 'phaseGateStepperCard' | 'Group';
|
|
1097
|
+
type ComponentType = 'chart' | 'map' | 'BackgroundTextChart' | 'chartCustomWithCardInfo' | 'listOfcharts' | 'listOfCardsStatistic' | 'cardsStatistic' | 'header' | 'footer' | 'label' | 'listOfLevelCards' | 'dialog' | 'table' | 'phaseGateTable' | 'topbar' | 'timeline' | 'timelineProjectDependencies' | 'lastHistoryLevelCard' | 'entitiesPreview' | 'entityPreview' | 'clusterStackedChart' | 'listComponentSplusCard' | 'splitterChart' | 'repeater' | 'levelCardsWithStatic' | 'phaseGateStepperCard' | 'Group';
|
|
1096
1098
|
/**
|
|
1097
1099
|
* EChart series data item
|
|
1098
1100
|
*/
|
|
@@ -1253,6 +1255,8 @@ declare class DashboardItem implements OnInit, OnDestroy {
|
|
|
1253
1255
|
readonly chartTypeId: _angular_core.InputSignal<string | number | undefined>;
|
|
1254
1256
|
/** Read-only mode */
|
|
1255
1257
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
1258
|
+
/** Parent page/dashboard name for topbar breadcrumb fallbacks */
|
|
1259
|
+
readonly pageName: _angular_core.InputSignal<string>;
|
|
1256
1260
|
/** Whether this item is inside a group */
|
|
1257
1261
|
readonly inGroup: _angular_core.InputSignal<boolean>;
|
|
1258
1262
|
/** Whether this item is rendered inside a dialog */
|
|
@@ -1325,7 +1329,7 @@ declare class DashboardItem implements OnInit, OnDestroy {
|
|
|
1325
1329
|
private buildParentFilter;
|
|
1326
1330
|
private mergeRequestFilters;
|
|
1327
1331
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DashboardItem, never>;
|
|
1328
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardItem, "mt-dashboard-item", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "chartTypeId": { "alias": "chartTypeId"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "inGroup": { "alias": "inGroup"; "required": false; "isSignal": true; }; "isDialog": { "alias": "isDialog"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; "extraFilters": { "alias": "extraFilters"; "required": false; "isSignal": true; }; "ignoreQueryFilter": { "alias": "ignoreQueryFilter"; "required": false; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
1332
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardItem, "mt-dashboard-item", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "chartTypeId": { "alias": "chartTypeId"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "pageName": { "alias": "pageName"; "required": false; "isSignal": true; }; "inGroup": { "alias": "inGroup"; "required": false; "isSignal": true; }; "isDialog": { "alias": "isDialog"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; "extraFilters": { "alias": "extraFilters"; "required": false; "isSignal": true; }; "ignoreQueryFilter": { "alias": "ignoreQueryFilter"; "required": false; "isSignal": true; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
1329
1333
|
}
|
|
1330
1334
|
|
|
1331
1335
|
interface HeaderCardConfig$1 {
|
|
@@ -1838,6 +1842,116 @@ declare class EntityInfoComponent {
|
|
|
1838
1842
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityInfoComponent, "mt-entity-info", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "displayType": { "alias": "displayType"; "required": false; "isSignal": true; }; "extraInfoData": { "alias": "extraInfoData"; "required": false; "isSignal": true; }; "limitWords": { "alias": "limitWords"; "required": false; "isSignal": true; }; "customClass": { "alias": "customClass"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1839
1843
|
}
|
|
1840
1844
|
|
|
1845
|
+
interface DisplayAreaItem {
|
|
1846
|
+
key?: string;
|
|
1847
|
+
order?: number;
|
|
1848
|
+
}
|
|
1849
|
+
interface DashboardStatusDetails {
|
|
1850
|
+
color?: string;
|
|
1851
|
+
description?: string;
|
|
1852
|
+
}
|
|
1853
|
+
interface DashboardStatusValue {
|
|
1854
|
+
name?: string;
|
|
1855
|
+
details?: DashboardStatusDetails;
|
|
1856
|
+
}
|
|
1857
|
+
interface DashboardStatus {
|
|
1858
|
+
value?: DashboardStatusValue;
|
|
1859
|
+
name?: string;
|
|
1860
|
+
color?: string;
|
|
1861
|
+
details?: DashboardStatusDetails;
|
|
1862
|
+
}
|
|
1863
|
+
interface DashboardCounter {
|
|
1864
|
+
value?: string | number;
|
|
1865
|
+
}
|
|
1866
|
+
interface DashboardCardProperty extends EntityData$1 {
|
|
1867
|
+
label?: string | Record<string, string>;
|
|
1868
|
+
displayAreas?: DisplayAreaItem[];
|
|
1869
|
+
displayArea?: DisplayAreaItem[];
|
|
1870
|
+
}
|
|
1871
|
+
interface DashboardCardData {
|
|
1872
|
+
id?: number | string;
|
|
1873
|
+
name?: string;
|
|
1874
|
+
label?: string;
|
|
1875
|
+
title?: string;
|
|
1876
|
+
currentPhase?: string;
|
|
1877
|
+
status?: DashboardStatus;
|
|
1878
|
+
props?: DashboardCardProperty[];
|
|
1879
|
+
properties?: DashboardCardProperty[];
|
|
1880
|
+
issuesCounts?: DashboardCounter;
|
|
1881
|
+
risksCounts?: DashboardCounter;
|
|
1882
|
+
milestonesCounts?: DashboardCounter;
|
|
1883
|
+
[key: string]: unknown;
|
|
1884
|
+
}
|
|
1885
|
+
interface DashboardCardGroup {
|
|
1886
|
+
name?: string;
|
|
1887
|
+
label?: string;
|
|
1888
|
+
title?: string;
|
|
1889
|
+
data?: DashboardCardData[];
|
|
1890
|
+
[key: string]: unknown;
|
|
1891
|
+
}
|
|
1892
|
+
type DashboardTabItem = DashboardCardGroup | DashboardCardData;
|
|
1893
|
+
interface PropsConfigAsIndexItem$1 {
|
|
1894
|
+
width?: string;
|
|
1895
|
+
hidden?: boolean;
|
|
1896
|
+
}
|
|
1897
|
+
interface DashboardCardTabOption {
|
|
1898
|
+
label: string;
|
|
1899
|
+
value: number;
|
|
1900
|
+
}
|
|
1901
|
+
interface DashboardCardViewModel {
|
|
1902
|
+
trackId: string | number;
|
|
1903
|
+
card: DashboardCardData;
|
|
1904
|
+
entities: EntityData$1[];
|
|
1905
|
+
bodyProps: DashboardCardProperty[];
|
|
1906
|
+
attachments: unknown[];
|
|
1907
|
+
hasCounters: boolean;
|
|
1908
|
+
}
|
|
1909
|
+
declare class PropertiesCardComponent implements OnInit, OnDestroy {
|
|
1910
|
+
private readonly storeService;
|
|
1911
|
+
private readonly transloco;
|
|
1912
|
+
private readonly subscription;
|
|
1913
|
+
readonly dashboardId: _angular_core.InputSignal<string | number>;
|
|
1914
|
+
readonly inGroup: _angular_core.InputSignal<boolean>;
|
|
1915
|
+
readonly onAction: _angular_core.OutputEmitterRef<{
|
|
1916
|
+
type: string;
|
|
1917
|
+
data: unknown;
|
|
1918
|
+
}>;
|
|
1919
|
+
readonly configurationItem: _angular_core.WritableSignal<ItemConfig | null>;
|
|
1920
|
+
readonly cardData: _angular_core.WritableSignal<DashboardTabItem[][]>;
|
|
1921
|
+
readonly tabSelected: _angular_core.WritableSignal<number>;
|
|
1922
|
+
readonly langCode: _angular_core.Signal<string>;
|
|
1923
|
+
readonly isPropertiesCard: _angular_core.Signal<boolean>;
|
|
1924
|
+
readonly galleryMode: _angular_core.Signal<boolean>;
|
|
1925
|
+
readonly currentTabItems: _angular_core.Signal<DashboardTabItem[]>;
|
|
1926
|
+
readonly selectedProperties: _angular_core.Signal<string[]>;
|
|
1927
|
+
readonly propsConfigAsIndex: _angular_core.Signal<PropsConfigAsIndexItem$1[]>;
|
|
1928
|
+
readonly tabOptions: _angular_core.Signal<DashboardCardTabOption[]>;
|
|
1929
|
+
readonly showTabs: _angular_core.Signal<boolean>;
|
|
1930
|
+
readonly currentTabCards: _angular_core.Signal<DashboardCardViewModel[]>;
|
|
1931
|
+
constructor();
|
|
1932
|
+
ngOnInit(): void;
|
|
1933
|
+
ngOnDestroy(): void;
|
|
1934
|
+
onCardClick(card: DashboardCardData): void;
|
|
1935
|
+
private normalizePropertyKey;
|
|
1936
|
+
private clampEntitySize;
|
|
1937
|
+
private resolveEntitySize;
|
|
1938
|
+
private isCardGroup;
|
|
1939
|
+
private extractCards;
|
|
1940
|
+
private getCardProps;
|
|
1941
|
+
private orderProperties;
|
|
1942
|
+
private buildPropertiesCardEntities;
|
|
1943
|
+
private buildLegacyBodyProps;
|
|
1944
|
+
private getAttachments;
|
|
1945
|
+
private hasCounters;
|
|
1946
|
+
private resolveTabLabel;
|
|
1947
|
+
private readString;
|
|
1948
|
+
private normalizeEntityProperty;
|
|
1949
|
+
private resolveEntityName;
|
|
1950
|
+
private readLocalizedText;
|
|
1951
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PropertiesCardComponent, never>;
|
|
1952
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PropertiesCardComponent, "mt-properties-card, mt-entities-preview-card", never, { "dashboardId": { "alias": "dashboardId"; "required": true; "isSignal": true; }; "inGroup": { "alias": "inGroup"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1841
1955
|
interface PropertyConfig {
|
|
1842
1956
|
width?: string;
|
|
1843
1957
|
border?: string[];
|
|
@@ -1845,7 +1959,7 @@ interface PropertyConfig {
|
|
|
1845
1959
|
colorAsProperty?: string;
|
|
1846
1960
|
}
|
|
1847
1961
|
interface ProcessedProperty {
|
|
1848
|
-
propInfo:
|
|
1962
|
+
propInfo: EntityData$1;
|
|
1849
1963
|
config: PropertyConfig;
|
|
1850
1964
|
}
|
|
1851
1965
|
declare class EntityPreviewCardComponent implements OnInit, OnDestroy {
|
|
@@ -1870,6 +1984,9 @@ declare class EntityPreviewCardComponent implements OnInit, OnDestroy {
|
|
|
1870
1984
|
* Get current language code
|
|
1871
1985
|
*/
|
|
1872
1986
|
private getLanguageCode;
|
|
1987
|
+
private normalizeEntityProperty;
|
|
1988
|
+
private resolveEntityName;
|
|
1989
|
+
private readLocalizedText;
|
|
1873
1990
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EntityPreviewCardComponent, never>;
|
|
1874
1991
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EntityPreviewCardComponent, "mt-entity-preview-card", never, { "dashboardId": { "alias": "dashboardId"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1875
1992
|
}
|
|
@@ -1904,6 +2021,8 @@ declare class HeaderCardComponent implements OnInit, OnDestroy {
|
|
|
1904
2021
|
readonly styleConfig: _angular_core.Signal<_masterteam_dashboard_builder.StyleConfig>;
|
|
1905
2022
|
/** Card style config */
|
|
1906
2023
|
readonly cardStyleConfig: _angular_core.Signal<any>;
|
|
2024
|
+
/** Config as type */
|
|
2025
|
+
readonly configAsType: _angular_core.Signal<Record<string, any>>;
|
|
1907
2026
|
/** Cols from dimensions */
|
|
1908
2027
|
readonly cols: _angular_core.Signal<number>;
|
|
1909
2028
|
/** Is full width (cols == 36) */
|
|
@@ -1920,6 +2039,12 @@ declare class HeaderCardComponent implements OnInit, OnDestroy {
|
|
|
1920
2039
|
readonly iconColor: _angular_core.Signal<any>;
|
|
1921
2040
|
/** Icon background color */
|
|
1922
2041
|
readonly iconBgColor: _angular_core.Signal<any>;
|
|
2042
|
+
/** Inner card padding */
|
|
2043
|
+
readonly padding: _angular_core.Signal<number>;
|
|
2044
|
+
/** Quick border color */
|
|
2045
|
+
readonly borderColor: _angular_core.Signal<string>;
|
|
2046
|
+
/** Whether explicit side borders are configured */
|
|
2047
|
+
readonly hasExplicitSideBorders: _angular_core.Signal<boolean>;
|
|
1923
2048
|
/** Font size for title */
|
|
1924
2049
|
readonly fontSizeTitle: _angular_core.Signal<string>;
|
|
1925
2050
|
/** Container styles from StyleConfig */
|
|
@@ -1942,82 +2067,6 @@ declare class HeaderCardComponent implements OnInit, OnDestroy {
|
|
|
1942
2067
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderCardComponent, "mt-header-card", never, { "dashboardId": { "alias": "dashboardId"; "required": true; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
1943
2068
|
}
|
|
1944
2069
|
|
|
1945
|
-
interface LevelCardData$1 {
|
|
1946
|
-
id: number;
|
|
1947
|
-
name: string;
|
|
1948
|
-
currentPhase?: string;
|
|
1949
|
-
props: PropertyData[];
|
|
1950
|
-
status?: PropertyData;
|
|
1951
|
-
[key: string]: any;
|
|
1952
|
-
}
|
|
1953
|
-
interface PropertyData {
|
|
1954
|
-
key: string;
|
|
1955
|
-
normalizedKey: string;
|
|
1956
|
-
viewType: string;
|
|
1957
|
-
value: any;
|
|
1958
|
-
displayAreas?: {
|
|
1959
|
-
key: string;
|
|
1960
|
-
order: number;
|
|
1961
|
-
}[];
|
|
1962
|
-
displayArea?: {
|
|
1963
|
-
key: string;
|
|
1964
|
-
order: number;
|
|
1965
|
-
}[];
|
|
1966
|
-
}
|
|
1967
|
-
declare class LevelCardListComponent implements OnInit, OnDestroy {
|
|
1968
|
-
private readonly storeService;
|
|
1969
|
-
private readonly transloco;
|
|
1970
|
-
private readonly subscription;
|
|
1971
|
-
/** Dashboard ID */
|
|
1972
|
-
readonly dashboardId: _angular_core.InputSignal<string | number>;
|
|
1973
|
-
/** Whether inside a group */
|
|
1974
|
-
readonly inGroup: _angular_core.InputSignal<boolean>;
|
|
1975
|
-
/** Properties to hide */
|
|
1976
|
-
readonly hideProperties: _angular_core.InputSignal<string[]>;
|
|
1977
|
-
/** Action event output */
|
|
1978
|
-
readonly onAction: _angular_core.OutputEmitterRef<{
|
|
1979
|
-
type: string;
|
|
1980
|
-
data: any;
|
|
1981
|
-
}>;
|
|
1982
|
-
/** Configuration item */
|
|
1983
|
-
readonly configurationItem: _angular_core.WritableSignal<ItemConfig | null>;
|
|
1984
|
-
/** Card data from handler */
|
|
1985
|
-
readonly cardData: _angular_core.WritableSignal<any[][]>;
|
|
1986
|
-
/** Currently selected tab index */
|
|
1987
|
-
readonly tabSelected: _angular_core.WritableSignal<number>;
|
|
1988
|
-
/** Language code */
|
|
1989
|
-
readonly langCode: _angular_core.Signal<string>;
|
|
1990
|
-
/** Gallery mode flag */
|
|
1991
|
-
readonly galleryMode: _angular_core.Signal<boolean>;
|
|
1992
|
-
/** Tabs from config */
|
|
1993
|
-
readonly tabs: _angular_core.Signal<{
|
|
1994
|
-
ar: string | undefined;
|
|
1995
|
-
en: string | undefined;
|
|
1996
|
-
}[]>;
|
|
1997
|
-
/** Current tab data */
|
|
1998
|
-
readonly currentTabData: _angular_core.Signal<any[]>;
|
|
1999
|
-
ngOnInit(): void;
|
|
2000
|
-
ngOnDestroy(): void;
|
|
2001
|
-
/**
|
|
2002
|
-
* Get properties for card body (displayArea: levelCard_body)
|
|
2003
|
-
*/
|
|
2004
|
-
getBodyProps(card: LevelCardData$1): PropertyData[];
|
|
2005
|
-
/**
|
|
2006
|
-
* Get attachments for gallery mode
|
|
2007
|
-
*/
|
|
2008
|
-
getAttachments(card: LevelCardData$1): any[];
|
|
2009
|
-
/**
|
|
2010
|
-
* Check if card has any counters
|
|
2011
|
-
*/
|
|
2012
|
-
hasCounters(card: any): boolean;
|
|
2013
|
-
/**
|
|
2014
|
-
* Handle card click
|
|
2015
|
-
*/
|
|
2016
|
-
onCardClick(card: LevelCardData$1): void;
|
|
2017
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LevelCardListComponent, never>;
|
|
2018
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LevelCardListComponent, "mt-level-card-list", never, { "dashboardId": { "alias": "dashboardId"; "required": true; "isSignal": true; }; "inGroup": { "alias": "inGroup"; "required": false; "isSignal": true; }; "hideProperties": { "alias": "hideProperties"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
2019
|
-
}
|
|
2020
|
-
|
|
2021
2070
|
declare class ListStatisticCardComponent implements OnInit, OnDestroy {
|
|
2022
2071
|
private readonly storeService;
|
|
2023
2072
|
private readonly subscription;
|
|
@@ -2216,6 +2265,42 @@ declare class TableCardComponent implements OnInit, OnDestroy {
|
|
|
2216
2265
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableCardComponent, "mt-table-card", never, { "dashboardId": { "alias": "dashboardId"; "required": true; "isSignal": true; }; "inGroup": { "alias": "inGroup"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
2217
2266
|
}
|
|
2218
2267
|
|
|
2268
|
+
interface TopbarBreadcrumbItem {
|
|
2269
|
+
label: string;
|
|
2270
|
+
link: string;
|
|
2271
|
+
}
|
|
2272
|
+
declare class TopbarCardComponent implements OnInit, OnDestroy {
|
|
2273
|
+
private readonly storeService;
|
|
2274
|
+
private readonly itemStoreService;
|
|
2275
|
+
private readonly subscription;
|
|
2276
|
+
readonly dashboardId: _angular_core.InputSignal<string | number>;
|
|
2277
|
+
readonly defaultBreadcrumbLabel: _angular_core.InputSignal<string>;
|
|
2278
|
+
readonly configurationItem: _angular_core.WritableSignal<ItemConfig | null>;
|
|
2279
|
+
readonly languageCode: _angular_core.Signal<string>;
|
|
2280
|
+
readonly queryParams: _angular_core.Signal<Record<string, any>>;
|
|
2281
|
+
readonly styleConfig: _angular_core.Signal<Record<string, any>>;
|
|
2282
|
+
readonly configAsType: _angular_core.Signal<Record<string, any>>;
|
|
2283
|
+
readonly cardStyleConfig: _angular_core.Signal<Record<string, any>>;
|
|
2284
|
+
readonly title: _angular_core.Signal<string>;
|
|
2285
|
+
readonly subtitleText: _angular_core.Signal<string>;
|
|
2286
|
+
readonly showSubtitle: _angular_core.Signal<boolean>;
|
|
2287
|
+
readonly icon: _angular_core.Signal<any>;
|
|
2288
|
+
readonly iconColor: _angular_core.Signal<any>;
|
|
2289
|
+
readonly iconBackgroundColor: _angular_core.Signal<any>;
|
|
2290
|
+
readonly borderColor: _angular_core.Signal<any>;
|
|
2291
|
+
readonly borderWidth: _angular_core.Signal<0 | 1>;
|
|
2292
|
+
readonly padding: _angular_core.Signal<number>;
|
|
2293
|
+
readonly titleFontSize: _angular_core.Signal<number>;
|
|
2294
|
+
readonly subtitleFontSize: _angular_core.Signal<number>;
|
|
2295
|
+
readonly subtitleColor: _angular_core.Signal<any>;
|
|
2296
|
+
readonly breadcrumbs: _angular_core.Signal<TopbarBreadcrumbItem[]>;
|
|
2297
|
+
ngOnInit(): void;
|
|
2298
|
+
ngOnDestroy(): void;
|
|
2299
|
+
isExternalLink(link: string): boolean;
|
|
2300
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TopbarCardComponent, never>;
|
|
2301
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TopbarCardComponent, "mt-topbar-card", never, { "dashboardId": { "alias": "dashboardId"; "required": true; "isSignal": true; }; "defaultBreadcrumbLabel": { "alias": "defaultBreadcrumbLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2219
2304
|
declare class DashboardItemStoreService {
|
|
2220
2305
|
/** Store for all dashboard items, keyed by dashboardId */
|
|
2221
2306
|
private itemsStore;
|
|
@@ -3211,6 +3296,10 @@ declare class DashboardBuilderService {
|
|
|
3211
3296
|
* Tree data cache for building selector name map
|
|
3212
3297
|
*/
|
|
3213
3298
|
readonly treeData: _angular_core.WritableSignal<ServiceItem[]>;
|
|
3299
|
+
/**
|
|
3300
|
+
* Optional services filter for the modules tree request.
|
|
3301
|
+
*/
|
|
3302
|
+
readonly modulesTreeServices: _angular_core.WritableSignal<readonly string[] | null>;
|
|
3214
3303
|
/**
|
|
3215
3304
|
* Fixed selections that cannot be removed or edited in SelectionConfiguration.
|
|
3216
3305
|
* These selections are always shown and are read-only.
|
|
@@ -3241,6 +3330,7 @@ declare class DashboardBuilderService {
|
|
|
3241
3330
|
* Clear all fixed selections
|
|
3242
3331
|
*/
|
|
3243
3332
|
clearFixedSelections(): void;
|
|
3333
|
+
setModulesTreeServices(services: readonly string[] | null | undefined): void;
|
|
3244
3334
|
/**
|
|
3245
3335
|
* Add a single fixed selection
|
|
3246
3336
|
* @param selection Selection to add as fixed
|
|
@@ -3570,6 +3660,41 @@ declare class DynamicFiltersConfig implements ControlValueAccessor {
|
|
|
3570
3660
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DynamicFiltersConfig, "mt-dynamic-filters-config", never, { "lookups": { "alias": "lookups"; "required": false; "isSignal": true; }; "levelsSchema": { "alias": "levelsSchema"; "required": false; "isSignal": true; }; "levelLogs": { "alias": "levelLogs"; "required": false; "isSignal": true; }; "productType": { "alias": "productType"; "required": false; "isSignal": true; }; }, { "loadLevelLogs": "loadLevelLogs"; }, never, never, true, never>;
|
|
3571
3661
|
}
|
|
3572
3662
|
|
|
3663
|
+
interface DefaultControlConfig {
|
|
3664
|
+
title: string;
|
|
3665
|
+
titleFontSize: number;
|
|
3666
|
+
titleColor: string;
|
|
3667
|
+
showSubtitle: boolean;
|
|
3668
|
+
subtitle: string;
|
|
3669
|
+
subtitleFontSize: number;
|
|
3670
|
+
subtitleColor: string;
|
|
3671
|
+
icon: string;
|
|
3672
|
+
iconColor: string;
|
|
3673
|
+
iconBackgroundColor: string;
|
|
3674
|
+
backgroundColor: string;
|
|
3675
|
+
borderColor: string;
|
|
3676
|
+
borderRadius: number;
|
|
3677
|
+
padding: number;
|
|
3678
|
+
}
|
|
3679
|
+
declare class DefaultControlUi implements ControlValueAccessor {
|
|
3680
|
+
readonly showIconSettings: _angular_core.InputSignal<boolean>;
|
|
3681
|
+
readonly layoutComponent: _angular_core.InputSignal<"header" | "topbar" | null>;
|
|
3682
|
+
readonly config: _angular_core.WritableSignal<DefaultControlConfig>;
|
|
3683
|
+
readonly fontSizeOptions: {
|
|
3684
|
+
label: string;
|
|
3685
|
+
value: number;
|
|
3686
|
+
}[];
|
|
3687
|
+
private onChange;
|
|
3688
|
+
private onTouched;
|
|
3689
|
+
readonly supportsSubtitle: _angular_core.Signal<boolean>;
|
|
3690
|
+
writeValue(value: DefaultControlConfig): void;
|
|
3691
|
+
registerOnChange(fn: (value: DefaultControlConfig) => void): void;
|
|
3692
|
+
registerOnTouched(fn: () => void): void;
|
|
3693
|
+
updateConfig(partial: Partial<DefaultControlConfig>): void;
|
|
3694
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DefaultControlUi, never>;
|
|
3695
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DefaultControlUi, "mt-default-control-ui", never, { "showIconSettings": { "alias": "showIconSettings"; "required": false; "isSignal": true; }; "layoutComponent": { "alias": "layoutComponent"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3573
3698
|
declare class ChartSettingsDrawer {
|
|
3574
3699
|
private dialogRef;
|
|
3575
3700
|
private drawerConfig;
|
|
@@ -3579,7 +3704,11 @@ declare class ChartSettingsDrawer {
|
|
|
3579
3704
|
constructor();
|
|
3580
3705
|
/** Active tab: 'display' or 'chartControls' */
|
|
3581
3706
|
readonly activeTab: _angular_core.WritableSignal<string>;
|
|
3582
|
-
/**
|
|
3707
|
+
/** Layout widgets use quick controls only */
|
|
3708
|
+
readonly showDisplayTab: _angular_core.Signal<boolean>;
|
|
3709
|
+
readonly isLayoutItem: _angular_core.Signal<boolean>;
|
|
3710
|
+
readonly layoutComponentName: _angular_core.Signal<"header" | "topbar" | null>;
|
|
3711
|
+
/** Tab options - hide Display for layout widgets, show Chart Controls when a chart control UI exists */
|
|
3583
3712
|
readonly tabOptions: _angular_core.Signal<{
|
|
3584
3713
|
label: string;
|
|
3585
3714
|
value: string;
|
|
@@ -3591,8 +3720,8 @@ declare class ChartSettingsDrawer {
|
|
|
3591
3720
|
readonly itemConfig: _angular_core.Signal<ItemConfig | null>;
|
|
3592
3721
|
/** Determine the type of manage UI to show */
|
|
3593
3722
|
readonly manageType: _angular_core.Signal<QuickManageType>;
|
|
3594
|
-
/** Default config
|
|
3595
|
-
readonly
|
|
3723
|
+
/** Default control config mapped from item config */
|
|
3724
|
+
readonly defaultControlConfig: _angular_core.Signal<DefaultControlConfig>;
|
|
3596
3725
|
/** Pie chart config - note: typo "Overried" matches old implementation */
|
|
3597
3726
|
readonly pieConfig: _angular_core.Signal<any>;
|
|
3598
3727
|
/** Bar chart config */
|
|
@@ -3602,7 +3731,7 @@ declare class ChartSettingsDrawer {
|
|
|
3602
3731
|
/** Snapshot bar chart config */
|
|
3603
3732
|
readonly snapshotBarConfig: _angular_core.Signal<any>;
|
|
3604
3733
|
/** Update default config */
|
|
3605
|
-
onDefaultConfigChange(config:
|
|
3734
|
+
onDefaultConfigChange(config: DefaultControlConfig): void;
|
|
3606
3735
|
/** Update pie chart config - note: typo "Overried" matches old implementation */
|
|
3607
3736
|
onPieConfigChange(config: any): void;
|
|
3608
3737
|
/** Update bar chart config */
|
|
@@ -3617,6 +3746,7 @@ declare class ChartSettingsDrawer {
|
|
|
3617
3746
|
apply(): void;
|
|
3618
3747
|
/** Close without changes */
|
|
3619
3748
|
close(): void;
|
|
3749
|
+
private isLayoutComponent;
|
|
3620
3750
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartSettingsDrawer, never>;
|
|
3621
3751
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartSettingsDrawer, "mt-chart-settings-drawer", never, {}, {}, never, never, true, never>;
|
|
3622
3752
|
}
|
|
@@ -3752,6 +3882,16 @@ interface PropsConfigAsIndexItem {
|
|
|
3752
3882
|
hidden?: boolean;
|
|
3753
3883
|
border?: string[];
|
|
3754
3884
|
}
|
|
3885
|
+
interface PropertyOption {
|
|
3886
|
+
label: string;
|
|
3887
|
+
value: string;
|
|
3888
|
+
}
|
|
3889
|
+
interface PropertiesViewRow {
|
|
3890
|
+
key: string;
|
|
3891
|
+
label: string;
|
|
3892
|
+
index: number;
|
|
3893
|
+
config: PropsConfigAsIndexItem;
|
|
3894
|
+
}
|
|
3755
3895
|
/** Format X-Axis configuration */
|
|
3756
3896
|
interface FormatXAxisConfig {
|
|
3757
3897
|
type?: string | null;
|
|
@@ -3807,6 +3947,7 @@ declare class DisplaySettings {
|
|
|
3807
3947
|
readonly fieldsToShow: _angular_core.Signal<string>;
|
|
3808
3948
|
/** Check if a field should be shown */
|
|
3809
3949
|
shouldShowField(fieldName: string): boolean;
|
|
3950
|
+
shouldShowPropertiesViewSettings(): boolean;
|
|
3810
3951
|
/** Position options */
|
|
3811
3952
|
readonly positionOptions: {
|
|
3812
3953
|
label: string;
|
|
@@ -3931,14 +4072,24 @@ declare class DisplaySettings {
|
|
|
3931
4072
|
/** Toggle association */
|
|
3932
4073
|
readonly toggleAssociation: _angular_core.Signal<boolean>;
|
|
3933
4074
|
/** Selected properties resolved from input or config */
|
|
3934
|
-
readonly resolvedSelectedProperties: _angular_core.Signal<
|
|
4075
|
+
readonly resolvedSelectedProperties: _angular_core.Signal<string[]>;
|
|
3935
4076
|
/** Available properties resolved from input or selected properties */
|
|
3936
4077
|
readonly resolvedAvailableProperties: _angular_core.Signal<any[]>;
|
|
4078
|
+
/** Selected properties as ordered options */
|
|
4079
|
+
readonly selectedPropertyOptions: _angular_core.Signal<PropertyOption[]>;
|
|
3937
4080
|
/** Available properties as options */
|
|
3938
4081
|
readonly propertyOptions: _angular_core.Signal<{
|
|
3939
4082
|
label: any;
|
|
3940
4083
|
value: any;
|
|
3941
4084
|
}[]>;
|
|
4085
|
+
/** Properties view rows driven by selected properties order */
|
|
4086
|
+
readonly propertiesViewRows: _angular_core.Signal<PropertiesViewRow[]>;
|
|
4087
|
+
/** Property translations rows driven by selected properties order */
|
|
4088
|
+
readonly propertyTranslationRows: _angular_core.Signal<{
|
|
4089
|
+
key: string;
|
|
4090
|
+
label: string;
|
|
4091
|
+
translation: PropertyTranslation;
|
|
4092
|
+
}[]>;
|
|
3942
4093
|
/** Available translation options (exclude used) */
|
|
3943
4094
|
readonly availableTranslationOptions: _angular_core.Signal<{
|
|
3944
4095
|
label: any;
|
|
@@ -4034,10 +4185,6 @@ declare class DisplaySettings {
|
|
|
4034
4185
|
updateRingGaugeConfig(key: keyof RingGaugeConfig, value: any): void;
|
|
4035
4186
|
/** Update card list hide properties */
|
|
4036
4187
|
updateCardListHideProperties(properties: string[]): void;
|
|
4037
|
-
/** Add props config item */
|
|
4038
|
-
addPropsConfigItem(): void;
|
|
4039
|
-
/** Remove props config item */
|
|
4040
|
-
removePropsConfigItem(index: number): void;
|
|
4041
4188
|
/** Update props config item */
|
|
4042
4189
|
updatePropsConfigItem(index: number, key: keyof PropsConfigAsIndexItem, value: any): void;
|
|
4043
4190
|
/** Update order config field */
|
|
@@ -4092,39 +4239,11 @@ declare class DisplaySettings {
|
|
|
4092
4239
|
readonly selectedPropertyForTranslation: _angular_core.WritableSignal<string>;
|
|
4093
4240
|
/** Selected property for adding colors */
|
|
4094
4241
|
readonly selectedPropertyForColor: _angular_core.WritableSignal<string>;
|
|
4242
|
+
private resolvePropertyKey;
|
|
4095
4243
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DisplaySettings, never>;
|
|
4096
4244
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DisplaySettings, "mt-display-settings", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "chartType": { "alias": "chartType"; "required": false; "isSignal": true; }; "availableProperties": { "alias": "availableProperties"; "required": false; "isSignal": true; }; "selectedProperties": { "alias": "selectedProperties"; "required": false; "isSignal": true; }; "lookups": { "alias": "lookups"; "required": false; "isSignal": true; }; }, { "clientConfigChange": "clientConfigChange"; }, never, never, true, never>;
|
|
4097
4245
|
}
|
|
4098
4246
|
|
|
4099
|
-
interface DefaultControlConfig {
|
|
4100
|
-
title: string;
|
|
4101
|
-
titleFontSize: number;
|
|
4102
|
-
titleColor: string;
|
|
4103
|
-
showSubtitle: boolean;
|
|
4104
|
-
subtitle: string;
|
|
4105
|
-
subtitleFontSize: number;
|
|
4106
|
-
subtitleColor: string;
|
|
4107
|
-
backgroundColor: string;
|
|
4108
|
-
borderColor: string;
|
|
4109
|
-
borderRadius: number;
|
|
4110
|
-
padding: number;
|
|
4111
|
-
}
|
|
4112
|
-
declare class DefaultControlUi implements ControlValueAccessor {
|
|
4113
|
-
readonly config: _angular_core.WritableSignal<DefaultControlConfig>;
|
|
4114
|
-
readonly fontSizeOptions: {
|
|
4115
|
-
label: string;
|
|
4116
|
-
value: number;
|
|
4117
|
-
}[];
|
|
4118
|
-
private onChange;
|
|
4119
|
-
private onTouched;
|
|
4120
|
-
writeValue(value: DefaultControlConfig): void;
|
|
4121
|
-
registerOnChange(fn: (value: DefaultControlConfig) => void): void;
|
|
4122
|
-
registerOnTouched(fn: () => void): void;
|
|
4123
|
-
updateConfig(partial: Partial<DefaultControlConfig>): void;
|
|
4124
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DefaultControlUi, never>;
|
|
4125
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DefaultControlUi, "mt-default-control-ui", never, {}, {}, never, never, true, never>;
|
|
4126
|
-
}
|
|
4127
|
-
|
|
4128
4247
|
/**
|
|
4129
4248
|
* Pie Chart Configuration - Matches old implementation exactly
|
|
4130
4249
|
*/
|
|
@@ -4373,6 +4492,7 @@ declare class ManageItem implements OnInit {
|
|
|
4373
4492
|
cols: number;
|
|
4374
4493
|
rows: number;
|
|
4375
4494
|
};
|
|
4495
|
+
services?: readonly string[] | null;
|
|
4376
4496
|
} | null>;
|
|
4377
4497
|
/** Whether chart type is pre-selected (hides type selection) */
|
|
4378
4498
|
readonly hasPreselectedType: _angular_core.Signal<boolean>;
|
|
@@ -4403,6 +4523,7 @@ declare class ManageItem implements OnInit {
|
|
|
4403
4523
|
cancel(): void;
|
|
4404
4524
|
/** Update config from child components */
|
|
4405
4525
|
onConfigUpdate(partialConfig: Partial<ItemConfig>): void;
|
|
4526
|
+
onChartTypeChange(type: ChartTypeConfig): void;
|
|
4406
4527
|
/** Update service config */
|
|
4407
4528
|
onServiceConfigUpdate(partialConfig: Partial<ItemConfig['serviceConfig']>): void;
|
|
4408
4529
|
/** Update client config */
|
|
@@ -4923,5 +5044,5 @@ declare class GetChartActionsPipe implements PipeTransform {
|
|
|
4923
5044
|
*/
|
|
4924
5045
|
declare function cloneDeep<T>(obj: T): T;
|
|
4925
5046
|
|
|
4926
|
-
export { ActionsSettings, BarChartHandler, BarControlUi, CHART_TYPES, CardContentComponent, CardFilterComponent, CardInfoComponent, ChartCardComponent, ChartDataService, ChartSettingsDrawer, ChartViewer, ComparisonChartHandler, DashboardBuilder, DashboardBuilderService, DashboardItem, DashboardItemStoreService, DashboardList, DashboardStoreService, DashboardViewer, DataSourceSettings, DefaultControlUi, DisplaySettings, DynamicFiltersComponent, DynamicFiltersConfig, EChartComponent, EntityInfoComponent, EntityPreviewCardComponent, FilterByGroupPipe, GaugeChartHandler, GeneralSettings, GetChartActionsPipe, HTTPMethod, HeaderCardComponent, LevelCardHandler,
|
|
5047
|
+
export { ActionsSettings, BarChartHandler, BarControlUi, CHART_TYPES, CardContentComponent, CardFilterComponent, CardInfoComponent, ChartCardComponent, ChartDataService, ChartSettingsDrawer, ChartViewer, ComparisonChartHandler, DashboardBuilder, DashboardBuilderService, DashboardItem, DashboardItemStoreService, DashboardList, DashboardStoreService, DashboardViewer, DataSourceSettings, DefaultControlUi, DisplaySettings, DynamicFiltersComponent, DynamicFiltersConfig, EChartComponent, PropertiesCardComponent as EntitiesPreviewCardComponent, EntityInfoComponent, EntityPreviewCardComponent, FilterByGroupPipe, GaugeChartHandler, GeneralSettings, GetChartActionsPipe, HTTPMethod, HeaderCardComponent, LevelCardHandler, LineChartHandler, ListStatisticCardComponent, ManageBreadcrumb, ManageFilterOnPage, ManageItem, ManageItemService, ManagePages, MapChartHandler, OverviewCardHandler, PhaseGateStepperHandler, PieChartHandler, PieControlUi, PropertiesCardComponent, RingGaugeChartHandler, SPlusChartHandler, SkeletonCardComponent, SnapshotHandler, SplitterChartHandler, StackBarChartHandler, StackBarControlUi, StaticFiltersComponent, StatisticCardComponent, TableCardComponent, TableViewHandler, TimelineHandler, TopbarCardComponent, addCommasToNumber, axisFormatters, cloneDeep, createAxisFormatter, createTooltipFormatter, dynamicReorder, dynamicTextReplace, formatCurrency, formatDate, formatNumber, formatPercentage, formatValue, formatWordsUnderBar, formatXAxis, generalConfiguration, getColorFromConditions, getLanguageCode, getLocalizedTitle, getNestedData, groupDatesByYearAndMonth, handleFilterForCard, handleFilterForSnapshot, handleFiltersForCustom, isMobilePlatform, sortChartData, sortDataTableView, switchAllKeysSmall, switchAllKeysToLower };
|
|
4927
5048
|
export type { ActionConfig, ApiResponse, BarChartData, BreadcrumbItem, BulkLinkChartRequest, BulkLinkChartResponse, BulkPropertiesRequest, BulkPropertiesResponse, BulkPropertiesResponseItem, BulkPropertiesResponseItemDto, BulkPropertyRequestItem, CardBorderStyleConfig, CardInfoConfig$1 as CardInfoConfig, CardStyleConfig$1 as CardStyleConfig, CatalogPropertyDto, ChartActionEvent, ChartActionsContext, ChartData, ChartDataHandled, ChartLabel, ChartLinkConfiguration, ChartTypeConfig, ClientConfig, ComponentType, CustomApi, DashboardBuilderData, DashboardChartItem, DashboardDialogItem, DashboardItemStore, DashboardListEvent, DashboardPage, DisplayConfig, EChartSeriesItem, ExcelSheet, FilterConfig, FilterOption, FormatXAxisConfig$1 as FormatXAxisConfig, GroupedModuleOption, HandleAction, HeaderCardConfig$1 as HeaderCardConfig, IModule, IModuleType, IProperty, IPropertyWithGroup, ISelection, ItemConfig, LevelCardData, LevelCardProperty, LinkChartRequest, LocalizedName, ModuleItem, ModuleSelectOption, ModuleType, ModuleValue, ModulesTreeRequest, ModulesTreeResponse, PhaseGateProperty, PhaseGateStep, PieChartData, PropertiesResponse, PropertyItem, PropertyItemOption, PropertyItemsResponse, QuickManageType, Report, ReportChartLink, ReportDashboardConfig, ReportExcelConfig, ReportType, ReportUrl, RequestType, SelectionFilter, ServiceConfig, ServiceItem, SourceLink, StaticFilterConfig, StaticFilterItem, StatisticCardData, StyleConfig, TableColumn$1 as TableColumn, TableViewData, TimelineData, TimelineItem, UnlinkChartRequest };
|