@masterteam/dashboard-builder 0.0.1 → 0.0.2
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/package.json
CHANGED
|
@@ -327,6 +327,15 @@ interface DashboardDialogItem {
|
|
|
327
327
|
chartTypeId?: string;
|
|
328
328
|
loading?: boolean;
|
|
329
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* Standalone dashboard builder data payload
|
|
332
|
+
*/
|
|
333
|
+
interface DashboardBuilderData {
|
|
334
|
+
page?: DashboardPage | null;
|
|
335
|
+
charts?: DashboardChartItem[];
|
|
336
|
+
dialogs?: DashboardDialogItem[];
|
|
337
|
+
filters?: any[];
|
|
338
|
+
}
|
|
330
339
|
/**
|
|
331
340
|
* Dashboard page configuration
|
|
332
341
|
* Alias for Report with Dashboard type - used for backwards compatibility
|
|
@@ -650,6 +659,10 @@ declare class DashboardBuilder implements OnInit, OnDestroy {
|
|
|
650
659
|
readonly backButton: _angular_core.InputSignal<boolean>;
|
|
651
660
|
/** Dashboard/Page ID to load */
|
|
652
661
|
readonly pageId: _angular_core.InputSignal<string | number | null>;
|
|
662
|
+
/** Standalone mode (when true, builder runs without API calls) */
|
|
663
|
+
readonly standalone: _angular_core.InputSignal<boolean>;
|
|
664
|
+
/** Standalone dashboard data model */
|
|
665
|
+
readonly dashboardData: _angular_core.ModelSignal<DashboardBuilderData | null>;
|
|
653
666
|
/** Read-only mode */
|
|
654
667
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
655
668
|
/** Emit when page config changes */
|
|
@@ -697,6 +710,8 @@ declare class DashboardBuilder implements OnInit, OnDestroy {
|
|
|
697
710
|
private isDragging;
|
|
698
711
|
private scrollInterval;
|
|
699
712
|
private dragStartY;
|
|
713
|
+
private applyingDashboardData;
|
|
714
|
+
private emittingDashboardData;
|
|
700
715
|
readonly menuItems: _angular_core.Signal<MenuItem[]>;
|
|
701
716
|
ngOnInit(): void;
|
|
702
717
|
ngOnDestroy(): void;
|
|
@@ -760,8 +775,11 @@ declare class DashboardBuilder implements OnInit, OnDestroy {
|
|
|
760
775
|
private handleDragEnd;
|
|
761
776
|
private startAutoScroll;
|
|
762
777
|
private stopAutoScroll;
|
|
778
|
+
constructor();
|
|
779
|
+
private applyDashboardData;
|
|
780
|
+
private emitDashboardDataChange;
|
|
763
781
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DashboardBuilder, never>;
|
|
764
|
-
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; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; "chartsChange": "chartsChange"; "onSave": "onSave"; "onBack": "onBack"; "onAddChart": "onAddChart"; "onEditChart": "onEditChart"; }, never, never, true, never>;
|
|
782
|
+
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>;
|
|
765
783
|
}
|
|
766
784
|
|
|
767
785
|
/**
|
|
@@ -1321,7 +1339,7 @@ declare class CardFilterComponent implements OnInit {
|
|
|
1321
1339
|
/** Language code */
|
|
1322
1340
|
readonly langCode: _angular_core.Signal<string>;
|
|
1323
1341
|
/** Filter type */
|
|
1324
|
-
readonly filterType: _angular_core.Signal<"
|
|
1342
|
+
readonly filterType: _angular_core.Signal<"select" | "date" | "text" | "multiselect" | "multiSelect" | "daterange">;
|
|
1325
1343
|
/** Filter options */
|
|
1326
1344
|
readonly options: _angular_core.Signal<FilterOption[]>;
|
|
1327
1345
|
/** Placeholder text */
|
|
@@ -4613,4 +4631,4 @@ declare class GetChartActionsPipe implements PipeTransform {
|
|
|
4613
4631
|
declare function cloneDeep<T>(obj: T): T;
|
|
4614
4632
|
|
|
4615
4633
|
export { ActionsSettings, BarChartHandler, BarControlUi, CHART_TYPES, CardContentComponent, CardFilterComponent, ChartCardComponent, ChartDataService, ChartSettingsDrawer, ChartViewer, ComparisonChartHandler, DashboardBuilder, DashboardBuilderService, DashboardItem, DashboardItemStoreService, DashboardList, DashboardStoreService, DashboardViewer, DataSourceSettings, DefaultControlUi, DisplaySettings, DynamicFiltersConfig, EChartComponent, EntityInfoComponent, EntityPreviewCardComponent, FilterByGroupPipe, GaugeChartHandler, GeneralSettings, GetChartActionsPipe, HTTPMethod, HeaderCardComponent, LevelCardHandler, LevelCardListComponent, LineChartHandler, ListStatisticCardComponent, ManageBreadcrumb, ManageFilterOnPage, ManageItem, ManageItemService, ManagePages, MapChartHandler, OverviewCardHandler, PhaseGateStepperHandler, PieChartHandler, PieControlUi, RingGaugeChartHandler, SPlusChartHandler, SkeletonCardComponent, SnapshotHandler, SplitterChartHandler, StackBarChartHandler, StackBarControlUi, StatisticCardComponent, TableCardComponent, TableViewHandler, TimelineHandler, addCommasToNumber, axisFormatters, cloneDeep, createAxisFormatter, createTooltipFormatter, dynamicReorder, dynamicTextReplace, formatCurrency, formatDate, formatNumber, formatPercentage, formatValue, formatWordsUnderBar, generalConfiguration, getColorFromConditions, getLanguageCode, getLocalizedTitle, getNestedData, groupDatesByYearAndMonth, handleFilterForCard, handleFilterForSnapshot, handleFiltersForCustom, isMobilePlatform, sortChartData, sortDataTableView, switchAllKeysSmall, switchAllKeysToLower };
|
|
4616
|
-
export type { ActionConfig, ApiResponse, BarChartData, BreadcrumbItem, BulkLinkChartRequest, BulkLinkChartResponse, BulkPropertiesRequest, BulkPropertiesResponse, BulkPropertiesResponseItem, BulkPropertyRequestItem, CardBorderStyleConfig, CardStyleConfig$1 as CardStyleConfig, ChartActionEvent, ChartActionsContext, ChartData, ChartDataHandled, ChartLabel, ChartLinkConfiguration, ChartTypeConfig, ClientConfig, ComponentType, CustomApi, DashboardChartItem, DashboardDialogItem, DashboardItemStore, DashboardListEvent, DashboardPage, DisplayConfig, EChartSeriesItem, ExcelSheet, FilterConfig, FilterOption, 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$1 as PropertyItem, PropertyItemOption, PropertyItemsResponse, QuickManageType, Report, ReportChartLink, ReportDashboardConfig, ReportExcelConfig, ReportType, ReportUrl, RequestType, SelectionFilter, ServiceConfig, ServiceItem, SourceLink, StatisticCardData, StyleConfig, TableColumn$1 as TableColumn, TableViewData, TimelineData, TimelineItem, UnlinkChartRequest };
|
|
4634
|
+
export type { ActionConfig, ApiResponse, BarChartData, BreadcrumbItem, BulkLinkChartRequest, BulkLinkChartResponse, BulkPropertiesRequest, BulkPropertiesResponse, BulkPropertiesResponseItem, BulkPropertyRequestItem, CardBorderStyleConfig, CardStyleConfig$1 as CardStyleConfig, ChartActionEvent, ChartActionsContext, ChartData, ChartDataHandled, ChartLabel, ChartLinkConfiguration, ChartTypeConfig, ClientConfig, ComponentType, CustomApi, DashboardBuilderData, DashboardChartItem, DashboardDialogItem, DashboardItemStore, DashboardListEvent, DashboardPage, DisplayConfig, EChartSeriesItem, ExcelSheet, FilterConfig, FilterOption, 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$1 as PropertyItem, PropertyItemOption, PropertyItemsResponse, QuickManageType, Report, ReportChartLink, ReportDashboardConfig, ReportExcelConfig, ReportType, ReportUrl, RequestType, SelectionFilter, ServiceConfig, ServiceItem, SourceLink, StatisticCardData, StyleConfig, TableColumn$1 as TableColumn, TableViewData, TimelineData, TimelineItem, UnlinkChartRequest };
|