@acorex/platform 20.2.4-next.1 → 20.2.4-next.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/fesm2022/acorex-platform-layout-components.mjs +2 -2
- package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +48 -13
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-views.mjs +71 -2
- package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +57 -21
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/views/index.d.ts +28 -0
- package/package.json +1 -1
package/layout/views/index.d.ts
CHANGED
|
@@ -473,6 +473,10 @@ declare const AXPLayoutDetailsViewViewModel: _angular_core.Type<{
|
|
|
473
473
|
currentPage: _angular_core.Signal<AXPLayoutDetailsViewPage | null>;
|
|
474
474
|
currentTab: _angular_core.Signal<AXPLayoutDetailsViewTabItem | null>;
|
|
475
475
|
pageSelectedRows: _angular_core.Signal<any[]>;
|
|
476
|
+
renderedTabsCache: _angular_core.Signal<Record<string, {
|
|
477
|
+
tabId: string;
|
|
478
|
+
tab: AXPLayoutDetailsViewTabItem;
|
|
479
|
+
}[]>>;
|
|
476
480
|
icon: _angular_core.Signal<string | null>;
|
|
477
481
|
content: _angular_core.Signal<_acorex_platform_layout_builder.AXPWidgetNode[]>;
|
|
478
482
|
showPages: _angular_core.Signal<boolean>;
|
|
@@ -483,6 +487,10 @@ declare const AXPLayoutDetailsViewViewModel: _angular_core.Type<{
|
|
|
483
487
|
changesCount: _angular_core.Signal<number>;
|
|
484
488
|
isLoaded: _angular_core.Signal<boolean>;
|
|
485
489
|
currentPageSelectedRows: _angular_core.Signal<any[]>;
|
|
490
|
+
currentPageRenderedTabs: _angular_core.Signal<{
|
|
491
|
+
tabId: string;
|
|
492
|
+
tab: AXPLayoutDetailsViewTabItem;
|
|
493
|
+
}[]>;
|
|
486
494
|
loadAdapter: (adapter: AXPLayoutDetailsViewAdapter) => Promise<void>;
|
|
487
495
|
loadPage: (pageId?: string) => Promise<void>;
|
|
488
496
|
load: (adapter: AXPLayoutDetailsViewAdapter) => Promise<void>;
|
|
@@ -497,6 +505,8 @@ declare const AXPLayoutDetailsViewViewModel: _angular_core.Type<{
|
|
|
497
505
|
setCurrentPage: (page: AXPLayoutDetailsViewPage | null) => void;
|
|
498
506
|
setCurrentTab: (tab: AXPLayoutDetailsViewTabItem) => void;
|
|
499
507
|
getCurrentTabContent: () => _acorex_platform_layout_builder.AXPWidgetNode[];
|
|
508
|
+
getRenderedTabContent: (tabId: string) => _acorex_platform_layout_builder.AXPWidgetNode[];
|
|
509
|
+
clearPageTabCache: (pageId: string) => void;
|
|
500
510
|
title: () => string | null;
|
|
501
511
|
description: () => string | null;
|
|
502
512
|
primaryActions: () => Promise<any>;
|
|
@@ -519,6 +529,10 @@ declare const AXPLayoutDetailsViewViewModel: _angular_core.Type<{
|
|
|
519
529
|
currentPage: AXPLayoutDetailsViewPage | null;
|
|
520
530
|
currentTab: AXPLayoutDetailsViewTabItem | null;
|
|
521
531
|
pageSelectedRows: any[];
|
|
532
|
+
renderedTabsCache: Record<string, Array<{
|
|
533
|
+
tabId: string;
|
|
534
|
+
tab: AXPLayoutDetailsViewTabItem;
|
|
535
|
+
}>>;
|
|
522
536
|
}>>;
|
|
523
537
|
|
|
524
538
|
declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent implements OnInit, OnDestroy {
|
|
@@ -534,6 +548,10 @@ declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent i
|
|
|
534
548
|
currentPage: _angular_core.Signal<AXPLayoutDetailsViewPage | null>;
|
|
535
549
|
currentTab: _angular_core.Signal<_acorex_platform_layout_views.AXPLayoutDetailsViewTabItem | null>;
|
|
536
550
|
pageSelectedRows: _angular_core.Signal<any[]>;
|
|
551
|
+
renderedTabsCache: _angular_core.Signal<Record<string, {
|
|
552
|
+
tabId: string;
|
|
553
|
+
tab: _acorex_platform_layout_views.AXPLayoutDetailsViewTabItem;
|
|
554
|
+
}[]>>;
|
|
537
555
|
icon: _angular_core.Signal<string | null>;
|
|
538
556
|
content: _angular_core.Signal<_acorex_platform_layout_builder.AXPWidgetNode[]>;
|
|
539
557
|
showPages: _angular_core.Signal<boolean>;
|
|
@@ -544,6 +562,10 @@ declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent i
|
|
|
544
562
|
changesCount: _angular_core.Signal<number>;
|
|
545
563
|
isLoaded: _angular_core.Signal<boolean>;
|
|
546
564
|
currentPageSelectedRows: _angular_core.Signal<any[]>;
|
|
565
|
+
currentPageRenderedTabs: _angular_core.Signal<{
|
|
566
|
+
tabId: string;
|
|
567
|
+
tab: _acorex_platform_layout_views.AXPLayoutDetailsViewTabItem;
|
|
568
|
+
}[]>;
|
|
547
569
|
loadAdapter: (adapter: AXPLayoutDetailsViewAdapter) => Promise<void>;
|
|
548
570
|
loadPage: (pageId?: string) => Promise<void>;
|
|
549
571
|
load: (adapter: AXPLayoutDetailsViewAdapter) => Promise<void>;
|
|
@@ -558,6 +580,8 @@ declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent i
|
|
|
558
580
|
setCurrentPage: (page: AXPLayoutDetailsViewPage | null) => void;
|
|
559
581
|
setCurrentTab: (tab: _acorex_platform_layout_views.AXPLayoutDetailsViewTabItem) => void;
|
|
560
582
|
getCurrentTabContent: () => _acorex_platform_layout_builder.AXPWidgetNode[];
|
|
583
|
+
getRenderedTabContent: (tabId: string) => _acorex_platform_layout_builder.AXPWidgetNode[];
|
|
584
|
+
clearPageTabCache: (pageId: string) => void;
|
|
561
585
|
title: () => string | null;
|
|
562
586
|
description: () => string | null;
|
|
563
587
|
primaryActions: () => Promise<any>;
|
|
@@ -580,6 +604,10 @@ declare class AXPLayoutDetailsViewComponent extends AXPPageLayoutBaseComponent i
|
|
|
580
604
|
currentPage: AXPLayoutDetailsViewPage | null;
|
|
581
605
|
currentTab: _acorex_platform_layout_views.AXPLayoutDetailsViewTabItem | null;
|
|
582
606
|
pageSelectedRows: any[];
|
|
607
|
+
renderedTabsCache: Record<string, Array<{
|
|
608
|
+
tabId: string;
|
|
609
|
+
tab: _acorex_platform_layout_views.AXPLayoutDetailsViewTabItem;
|
|
610
|
+
}>>;
|
|
583
611
|
}>;
|
|
584
612
|
private onSelectionChangeSubscription?;
|
|
585
613
|
protected form: _angular_core.Signal<AXFormComponent | undefined>;
|