@fundamental-ngx/platform 0.63.2-rc.4 → 0.63.2-rc.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/fundamental-ngx-platform-approval-flow.mjs +47 -44
- package/fesm2022/fundamental-ngx-platform-approval-flow.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-button.mjs +51 -32
- package/fesm2022/fundamental-ngx-platform-button.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-dynamic-page.mjs +52 -49
- package/fesm2022/fundamental-ngx-platform-dynamic-page.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-feed-input.mjs +9 -8
- package/fesm2022/fundamental-ngx-platform-feed-input.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-form.mjs +339 -333
- package/fesm2022/fundamental-ngx-platform-form.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs +159 -117
- package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-link.mjs +7 -7
- package/fesm2022/fundamental-ngx-platform-list.mjs +59 -59
- package/fesm2022/fundamental-ngx-platform-list.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-menu-button.mjs +7 -7
- package/fesm2022/fundamental-ngx-platform-menu.mjs +16 -15
- package/fesm2022/fundamental-ngx-platform-menu.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-message-popover.mjs +36 -26
- package/fesm2022/fundamental-ngx-platform-message-popover.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-object-marker.mjs +7 -7
- package/fesm2022/fundamental-ngx-platform-object-status.mjs +11 -11
- package/fesm2022/fundamental-ngx-platform-object-status.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-page-footer.mjs +7 -7
- package/fesm2022/fundamental-ngx-platform-panel.mjs +18 -18
- package/fesm2022/fundamental-ngx-platform-panel.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-search-field.mjs +107 -66
- package/fesm2022/fundamental-ngx-platform-search-field.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-settings-generator.mjs +58 -47
- package/fesm2022/fundamental-ngx-platform-settings-generator.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-shared.mjs +28 -28
- package/fesm2022/fundamental-ngx-platform-slider.mjs +7 -7
- package/fesm2022/fundamental-ngx-platform-smart-filter-bar.mjs +44 -39
- package/fesm2022/fundamental-ngx-platform-smart-filter-bar.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-split-menu-button.mjs +9 -8
- package/fesm2022/fundamental-ngx-platform-split-menu-button.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-table-helpers.mjs +110 -96
- package/fesm2022/fundamental-ngx-platform-table-helpers.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-table.mjs +280 -207
- package/fesm2022/fundamental-ngx-platform-table.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-value-help-dialog.mjs +35 -32
- package/fesm2022/fundamental-ngx-platform-value-help-dialog.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-variant-management.mjs +19 -19
- package/fesm2022/fundamental-ngx-platform-wizard-generator.mjs +44 -44
- package/fesm2022/fundamental-ngx-platform-wizard-generator.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform.mjs +4 -4
- package/package.json +6 -5
- package/schematics/ng-add/index.js +1 -1
- package/schematics/package.json +7 -0
- package/schematics/tsconfig.json +12 -1
- package/schematics/utils/package-utils.js +34 -1
- package/schematics/utils/package-utils.js.map +1 -1
|
@@ -72,19 +72,26 @@ class TableService {
|
|
|
72
72
|
/** Table state stream. */
|
|
73
73
|
this.tableState$ = new BehaviorSubject(DEFAULT_TABLE_STATE);
|
|
74
74
|
/** @hidden */
|
|
75
|
-
this._semanticHighlighting$ = signal('',
|
|
75
|
+
this._semanticHighlighting$ = signal('', /* @ts-ignore */
|
|
76
|
+
...(ngDevMode ? [{ debugName: "_semanticHighlighting$" }] : /* istanbul ignore next */ []));
|
|
76
77
|
/** @hidden */
|
|
77
|
-
this._isFilteringFromHeaderDisabled$ = signal(false,
|
|
78
|
+
this._isFilteringFromHeaderDisabled$ = signal(false, /* @ts-ignore */
|
|
79
|
+
...(ngDevMode ? [{ debugName: "_isFilteringFromHeaderDisabled$" }] : /* istanbul ignore next */ []));
|
|
78
80
|
/** @hidden */
|
|
79
|
-
this._isShownNavigationColumn$ = signal(false,
|
|
81
|
+
this._isShownNavigationColumn$ = signal(false, /* @ts-ignore */
|
|
82
|
+
...(ngDevMode ? [{ debugName: "_isShownNavigationColumn$" }] : /* istanbul ignore next */ []));
|
|
80
83
|
/** @hidden */
|
|
81
|
-
this._semanticHighlightingColumnWidth$ = signal(0,
|
|
84
|
+
this._semanticHighlightingColumnWidth$ = signal(0, /* @ts-ignore */
|
|
85
|
+
...(ngDevMode ? [{ debugName: "_semanticHighlightingColumnWidth$" }] : /* istanbul ignore next */ []));
|
|
82
86
|
/** Visible columns stream. */
|
|
83
|
-
this.visibleColumns$ = signal([],
|
|
87
|
+
this.visibleColumns$ = signal([], /* @ts-ignore */
|
|
88
|
+
...(ngDevMode ? [{ debugName: "visibleColumns$" }] : /* istanbul ignore next */ []));
|
|
84
89
|
/** Visible columns length. */
|
|
85
|
-
this.visibleColumnsLength = computed(() => this.visibleColumns$().length,
|
|
90
|
+
this.visibleColumnsLength = computed(() => this.visibleColumns$().length, /* @ts-ignore */
|
|
91
|
+
...(ngDevMode ? [{ debugName: "visibleColumnsLength" }] : /* istanbul ignore next */ []));
|
|
86
92
|
/** Popping columns stream. */
|
|
87
|
-
this.poppingColumns$ = signal([],
|
|
93
|
+
this.poppingColumns$ = signal([], /* @ts-ignore */
|
|
94
|
+
...(ngDevMode ? [{ debugName: "poppingColumns$" }] : /* istanbul ignore next */ []));
|
|
88
95
|
/** Popping columns length. */
|
|
89
96
|
this._poppingColumnsLength = 0;
|
|
90
97
|
/** Table columns stream. */
|
|
@@ -116,12 +123,14 @@ class TableService {
|
|
|
116
123
|
/** Listen for immediate changes in table subcomponents (mostly table column) */
|
|
117
124
|
this.detectChanges$ = new Subject();
|
|
118
125
|
/** Sort rules stream. */
|
|
119
|
-
this.sortRules$ = signal(new Map(),
|
|
126
|
+
this.sortRules$ = signal(new Map(), /* @ts-ignore */
|
|
127
|
+
...(ngDevMode ? [{ debugName: "sortRules$" }] : /* istanbul ignore next */ []));
|
|
120
128
|
/**
|
|
121
129
|
* Filter Rules Map stream. Where key is column key, and value is the associated filter rules.
|
|
122
130
|
* Many filters can be applied to one column.
|
|
123
131
|
*/
|
|
124
|
-
this.filterRules$ = signal(new Map(),
|
|
132
|
+
this.filterRules$ = signal(new Map(), /* @ts-ignore */
|
|
133
|
+
...(ngDevMode ? [{ debugName: "filterRules$" }] : /* istanbul ignore next */ []));
|
|
125
134
|
/**
|
|
126
135
|
* Group Rules Map stream. Where key is column key and value is associated group rule
|
|
127
136
|
*/
|
|
@@ -439,10 +448,10 @@ class TableService {
|
|
|
439
448
|
const column = this.tableColumns$.getValue().find((col) => col.key === field);
|
|
440
449
|
return column ? column.name : (fieldName ?? field);
|
|
441
450
|
}
|
|
442
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
443
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
451
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
452
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableService }); }
|
|
444
453
|
}
|
|
445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableService, decorators: [{
|
|
446
455
|
type: Injectable
|
|
447
456
|
}] });
|
|
448
457
|
/** @hidden */
|
|
@@ -528,10 +537,10 @@ class TableResponsiveService {
|
|
|
528
537
|
});
|
|
529
538
|
this._tableService.columnsChange$.next({ previous: currentTableColumns, current: currentTableColumns });
|
|
530
539
|
}
|
|
531
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
532
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResponsiveService, deps: [{ token: Table }, { token: TableService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
541
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResponsiveService }); }
|
|
533
542
|
}
|
|
534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResponsiveService, decorators: [{
|
|
535
544
|
type: Injectable
|
|
536
545
|
}], ctorParameters: () => [{ type: Table, decorators: [{
|
|
537
546
|
type: Inject,
|
|
@@ -563,10 +572,10 @@ class PlatformTableColumnResponsiveDirective {
|
|
|
563
572
|
/** @hidden */
|
|
564
573
|
this._breakpoints = {};
|
|
565
574
|
}
|
|
566
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
567
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PlatformTableColumnResponsiveDirective, deps: [{ token: TableResponsiveService }, { token: TableColumn, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
576
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: PlatformTableColumnResponsiveDirective, isStandalone: true, selector: "[fdpTableColumnResponsive]", inputs: { breakpoints: ["fdpTableColumnResponsive", "breakpoints"] }, ngImport: i0 }); }
|
|
568
577
|
}
|
|
569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PlatformTableColumnResponsiveDirective, decorators: [{
|
|
570
579
|
type: Directive,
|
|
571
580
|
args: [{
|
|
572
581
|
selector: '[fdpTableColumnResponsive]',
|
|
@@ -591,10 +600,10 @@ class TableCellHeaderPopoverDirective {
|
|
|
591
600
|
static ngTemplateContextGuard(directive, context) {
|
|
592
601
|
return true;
|
|
593
602
|
}
|
|
594
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
595
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellHeaderPopoverDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
604
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableCellHeaderPopoverDirective, isStandalone: true, selector: "[fdpTableCellHeaderPopover]", ngImport: i0 }); }
|
|
596
605
|
}
|
|
597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellHeaderPopoverDirective, decorators: [{
|
|
598
607
|
type: Directive,
|
|
599
608
|
args: [{
|
|
600
609
|
selector: '[fdpTableCellHeaderPopover]',
|
|
@@ -649,10 +658,10 @@ class TableScrollDispatcherService {
|
|
|
649
658
|
Array.from(this._scrollableSubscriptionsMap.values()).forEach((subscription) => subscription.unsubscribe());
|
|
650
659
|
this._scrollableSubscriptionsMap.clear();
|
|
651
660
|
}
|
|
652
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
653
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
661
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableScrollDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
662
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableScrollDispatcherService }); }
|
|
654
663
|
}
|
|
655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableScrollDispatcherService, decorators: [{
|
|
656
665
|
type: Injectable
|
|
657
666
|
}] });
|
|
658
667
|
|
|
@@ -688,7 +697,8 @@ class TableColumnResizeService {
|
|
|
688
697
|
/** Resize progress stream. */
|
|
689
698
|
this.resizeInProgress$ = new BehaviorSubject(false);
|
|
690
699
|
/** Whether cell mock should be visible. */
|
|
691
|
-
this.cellMockVisible$ = signal(false,
|
|
700
|
+
this.cellMockVisible$ = signal(false, /* @ts-ignore */
|
|
701
|
+
...(ngDevMode ? [{ debugName: "cellMockVisible$" }] : /* istanbul ignore next */ []));
|
|
692
702
|
/** Resizer position stream. */
|
|
693
703
|
this.resizerPosition$ = new BehaviorSubject(0);
|
|
694
704
|
/** @hidden */
|
|
@@ -724,7 +734,8 @@ class TableColumnResizeService {
|
|
|
724
734
|
/** @hidden */
|
|
725
735
|
this._initialTableWidth = null;
|
|
726
736
|
/** @hidden */
|
|
727
|
-
this._isRtl = computed(() => this._rtlService?.rtl() ?? false,
|
|
737
|
+
this._isRtl = computed(() => this._rtlService?.rtl() ?? false, /* @ts-ignore */
|
|
738
|
+
...(ngDevMode ? [{ debugName: "_isRtl" }] : /* istanbul ignore next */ []));
|
|
728
739
|
/** @hidden */
|
|
729
740
|
this._rtlService = inject(RtlService, {
|
|
730
741
|
optional: true
|
|
@@ -952,10 +963,10 @@ class TableColumnResizeService {
|
|
|
952
963
|
}
|
|
953
964
|
visibleColumn.headerOverflows = headerTextElem.scrollWidth > updatedWidth;
|
|
954
965
|
}
|
|
955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
956
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
966
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableColumnResizeService, deps: [{ token: TableScrollDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
967
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableColumnResizeService }); }
|
|
957
968
|
}
|
|
958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableColumnResizeService, decorators: [{
|
|
959
970
|
type: Injectable
|
|
960
971
|
}], ctorParameters: () => [{ type: TableScrollDispatcherService }] });
|
|
961
972
|
|
|
@@ -969,7 +980,8 @@ class PlatformTableCellResizableDirective extends TableCellDirective {
|
|
|
969
980
|
/** @hidden */
|
|
970
981
|
this._resizableSide = 'both';
|
|
971
982
|
/** @hidden */
|
|
972
|
-
this._isRtl = computed(() => !!this._rtlService?.rtl(),
|
|
983
|
+
this._isRtl = computed(() => !!this._rtlService?.rtl(), /* @ts-ignore */
|
|
984
|
+
...(ngDevMode ? [{ debugName: "_isRtl" }] : /* istanbul ignore next */ []));
|
|
973
985
|
/** @hidden */
|
|
974
986
|
this._tableColumnResizeService = inject(TableColumnResizeService);
|
|
975
987
|
/** @hidden */
|
|
@@ -1047,8 +1059,8 @@ class PlatformTableCellResizableDirective extends TableCellDirective {
|
|
|
1047
1059
|
return null;
|
|
1048
1060
|
}
|
|
1049
1061
|
}
|
|
1050
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1051
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1062
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PlatformTableCellResizableDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1063
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: PlatformTableCellResizableDirective, isStandalone: true, selector: "[fdpTableCellResizable]", inputs: { resizableSide: ["fdpTableCellResizable", "resizableSide"], columnName: "columnName" }, providers: [
|
|
1052
1064
|
{
|
|
1053
1065
|
provide: FDK_FOCUSABLE_ITEM_DIRECTIVE,
|
|
1054
1066
|
useExisting: PlatformTableCellResizableDirective
|
|
@@ -1063,7 +1075,7 @@ class PlatformTableCellResizableDirective extends TableCellDirective {
|
|
|
1063
1075
|
}
|
|
1064
1076
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1065
1077
|
}
|
|
1066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1078
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PlatformTableCellResizableDirective, decorators: [{
|
|
1067
1079
|
type: Directive,
|
|
1068
1080
|
args: [{
|
|
1069
1081
|
selector: '[fdpTableCellResizable]',
|
|
@@ -1096,10 +1108,10 @@ class EditableTableCell {
|
|
|
1096
1108
|
/** Column cell container. */
|
|
1097
1109
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
1098
1110
|
class FdpTableCell {
|
|
1099
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1100
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1111
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpTableCell, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1112
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpTableCell, isStandalone: true, selector: "fdp-table-cell", ngImport: i0 }); }
|
|
1101
1113
|
}
|
|
1102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpTableCell, decorators: [{
|
|
1103
1115
|
type: Directive,
|
|
1104
1116
|
args: [{ selector: 'fdp-table-cell', standalone: true }]
|
|
1105
1117
|
}] });
|
|
@@ -1116,10 +1128,10 @@ class FdpCellDef {
|
|
|
1116
1128
|
static ngTemplateContextGuard(dir, ctx) {
|
|
1117
1129
|
return true;
|
|
1118
1130
|
}
|
|
1119
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1120
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1131
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpCellDef, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1132
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpCellDef, isStandalone: true, selector: "[fdpCellDef]", inputs: { fdpCellDefAs: "fdpCellDefAs" }, ngImport: i0 }); }
|
|
1121
1133
|
}
|
|
1122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpCellDef, decorators: [{
|
|
1123
1135
|
type: Directive,
|
|
1124
1136
|
args: [{ selector: '[fdpCellDef]', standalone: true }]
|
|
1125
1137
|
}], ctorParameters: () => [{ type: i0.TemplateRef }], propDecorators: { fdpCellDefAs: [{
|
|
@@ -1130,10 +1142,10 @@ class FdpEditableCellDef {
|
|
|
1130
1142
|
constructor(templateRef) {
|
|
1131
1143
|
this.templateRef = templateRef;
|
|
1132
1144
|
}
|
|
1133
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1134
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1145
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpEditableCellDef, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1146
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpEditableCellDef, isStandalone: true, selector: "[fdpEditableCellDef]", ngImport: i0 }); }
|
|
1135
1147
|
}
|
|
1136
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpEditableCellDef, decorators: [{
|
|
1137
1149
|
type: Directive,
|
|
1138
1150
|
args: [{ selector: '[fdpEditableCellDef]', standalone: true }]
|
|
1139
1151
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
@@ -1142,10 +1154,10 @@ class FdpEditableCellFormDirective {
|
|
|
1142
1154
|
constructor(form) {
|
|
1143
1155
|
this.form = form;
|
|
1144
1156
|
}
|
|
1145
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1146
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpEditableCellFormDirective, deps: [{ token: i1.NgForm }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1158
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpEditableCellFormDirective, isStandalone: true, selector: "[fdpEditableCellForm]", providers: [{ provide: EditableTableCell, useExisting: FdpEditableCellFormDirective }], ngImport: i0 }); }
|
|
1147
1159
|
}
|
|
1148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpEditableCellFormDirective, decorators: [{
|
|
1149
1161
|
type: Directive,
|
|
1150
1162
|
args: [{
|
|
1151
1163
|
selector: '[fdpEditableCellForm]',
|
|
@@ -1976,7 +1988,8 @@ class TableDataSourceDirective extends DataSourceDirective {
|
|
|
1976
1988
|
/** Event emitted when data loading is finished. */
|
|
1977
1989
|
this.onDataReceived = new EventEmitter();
|
|
1978
1990
|
/** Total items count stream. */
|
|
1979
|
-
this.totalItems$ = signal(0,
|
|
1991
|
+
this.totalItems$ = signal(0, /* @ts-ignore */
|
|
1992
|
+
...(ngDevMode ? [{ debugName: "totalItems$" }] : /* istanbul ignore next */ []));
|
|
1980
1993
|
/** Items stream. */
|
|
1981
1994
|
this.items$ = new BehaviorSubject([]);
|
|
1982
1995
|
/** Child items stream. */
|
|
@@ -2117,15 +2130,15 @@ class TableDataSourceDirective extends DataSourceDirective {
|
|
|
2117
2130
|
this._tableDsSubscription = null;
|
|
2118
2131
|
this._table.clearTableRows();
|
|
2119
2132
|
}
|
|
2120
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2121
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDataSourceDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2134
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableDataSourceDirective, isStandalone: true, selector: "[fdpTableDataSource]", inputs: { childDataSource: "childDataSource" }, outputs: { childDataSourceChanged: "childDataSourceChanged", onDataRequested: "onDataRequested", onDataReceived: "onDataReceived" }, providers: [
|
|
2122
2135
|
{
|
|
2123
2136
|
provide: FD_DATA_SOURCE_TRANSFORMER,
|
|
2124
2137
|
useClass: TableDataSourceParser
|
|
2125
2138
|
}
|
|
2126
2139
|
], usesInheritance: true, ngImport: i0 }); }
|
|
2127
2140
|
}
|
|
2128
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDataSourceDirective, decorators: [{
|
|
2129
2142
|
type: Directive,
|
|
2130
2143
|
args: [{
|
|
2131
2144
|
selector: '[fdpTableDataSource]',
|
|
@@ -3084,15 +3097,15 @@ class TableDraggableDirective extends TableDraggable {
|
|
|
3084
3097
|
}
|
|
3085
3098
|
this._table.tableContainer.nativeElement.removeEventListener('keydown', preventDefaultForScrollKeys, false);
|
|
3086
3099
|
}
|
|
3087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3088
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDraggableDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3101
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableDraggableDirective, isStandalone: true, selector: "fdp-table[isTreeTable], fdp-table[enableRowReordering]", inputs: { enableRowReordering: "enableRowReordering", isTreeTable: "isTreeTable", dropMode: "dropMode", dropPredicate: "dropPredicate", dragoverPredicate: "dragoverPredicate" }, outputs: { rowsRearrange: "rowsRearrange" }, host: { properties: { "class.fd-table--tree": "this.isTreeTable" } }, providers: [
|
|
3089
3102
|
{
|
|
3090
3103
|
provide: FDP_TABLE_DRAGGABLE_DIRECTIVE,
|
|
3091
3104
|
useExisting: forwardRef(() => TableDraggableDirective)
|
|
3092
3105
|
}
|
|
3093
3106
|
], usesInheritance: true, ngImport: i0 }); }
|
|
3094
3107
|
}
|
|
3095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDraggableDirective, decorators: [{
|
|
3096
3109
|
type: Directive,
|
|
3097
3110
|
args: [{
|
|
3098
3111
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -3227,10 +3240,10 @@ class TableRowService {
|
|
|
3227
3240
|
}
|
|
3228
3241
|
this.loadChildRows$.next(expandableRows);
|
|
3229
3242
|
}
|
|
3230
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3231
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3243
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRowService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3244
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRowService }); }
|
|
3232
3245
|
}
|
|
3233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRowService, decorators: [{
|
|
3234
3247
|
type: Injectable
|
|
3235
3248
|
}], ctorParameters: () => [] });
|
|
3236
3249
|
|
|
@@ -3243,7 +3256,8 @@ class TableHeaderResizerDirective {
|
|
|
3243
3256
|
optional: true
|
|
3244
3257
|
});
|
|
3245
3258
|
/** @hidden */
|
|
3246
|
-
this._isRtl = computed(() => this._rtlService?.rtl() ?? false,
|
|
3259
|
+
this._isRtl = computed(() => this._rtlService?.rtl() ?? false, /* @ts-ignore */
|
|
3260
|
+
...(ngDevMode ? [{ debugName: "_isRtl" }] : /* istanbul ignore next */ []));
|
|
3247
3261
|
/** @hidden */
|
|
3248
3262
|
this._elmRef = inject(ElementRef);
|
|
3249
3263
|
/** @hidden */
|
|
@@ -3307,10 +3321,10 @@ class TableHeaderResizerDirective {
|
|
|
3307
3321
|
_onCellFocused(position) {
|
|
3308
3322
|
this.focusedCellPosition = { rowIndex: position.rowIndex, colIndex: position.colIndex };
|
|
3309
3323
|
}
|
|
3310
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3311
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3324
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableHeaderResizerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3325
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableHeaderResizerDirective, isStandalone: true, selector: "[fdpTableHeaderResizer]", ngImport: i0 }); }
|
|
3312
3326
|
}
|
|
3313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableHeaderResizerDirective, decorators: [{
|
|
3314
3328
|
type: Directive,
|
|
3315
3329
|
args: [{
|
|
3316
3330
|
selector: '[fdpTableHeaderResizer]',
|
|
@@ -3321,10 +3335,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
3321
3335
|
/** Column header container. */
|
|
3322
3336
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
3323
3337
|
class FdpTableHeader {
|
|
3324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3325
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3338
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpTableHeader, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3339
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpTableHeader, isStandalone: true, selector: "fdp-table-header", ngImport: i0 }); }
|
|
3326
3340
|
}
|
|
3327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3341
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpTableHeader, decorators: [{
|
|
3328
3342
|
type: Directive,
|
|
3329
3343
|
args: [{ selector: 'fdp-table-header', standalone: true }]
|
|
3330
3344
|
}] });
|
|
@@ -3341,10 +3355,10 @@ class FdpHeaderCellDef {
|
|
|
3341
3355
|
static ngTemplateContextGuard(dir, ctx) {
|
|
3342
3356
|
return true;
|
|
3343
3357
|
}
|
|
3344
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3345
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3358
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpHeaderCellDef, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3359
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpHeaderCellDef, isStandalone: true, selector: "[fdpHeaderCellDef]", ngImport: i0 }); }
|
|
3346
3360
|
}
|
|
3347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpHeaderCellDef, decorators: [{
|
|
3348
3362
|
type: Directive,
|
|
3349
3363
|
args: [{ selector: '[fdpHeaderCellDef]', standalone: true }]
|
|
3350
3364
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
@@ -3416,15 +3430,15 @@ class TableInitialStateDirective extends TableInitialState {
|
|
|
3416
3430
|
setTableState(state) {
|
|
3417
3431
|
this._tableService.setTableState(state);
|
|
3418
3432
|
}
|
|
3419
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3420
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3433
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableInitialStateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3434
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableInitialStateDirective, isStandalone: true, selector: "[fdpTableInitialState],\n fdp-table", inputs: { initialVisibleColumns: "initialVisibleColumns", initialSortBy: "initialSortBy", initialFilterBy: "initialFilterBy", initialGroupBy: "initialGroupBy", initialPage: "initialPage", state: "state" }, providers: [
|
|
3421
3435
|
{
|
|
3422
3436
|
provide: FDP_TABLE_STATE_DIRECTIVE,
|
|
3423
3437
|
useExisting: TableInitialStateDirective
|
|
3424
3438
|
}
|
|
3425
3439
|
], usesInheritance: true, ngImport: i0 }); }
|
|
3426
3440
|
}
|
|
3427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableInitialStateDirective, decorators: [{
|
|
3428
3442
|
type: Directive,
|
|
3429
3443
|
args: [{
|
|
3430
3444
|
selector: `[fdpTableInitialState],
|
|
@@ -3589,10 +3603,10 @@ class TableScrollableDirective {
|
|
|
3589
3603
|
});
|
|
3590
3604
|
});
|
|
3591
3605
|
}
|
|
3592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3593
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3606
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableScrollableDirective, deps: [{ token: i0.ElementRef }, { token: TableScrollDispatcherService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3607
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableScrollableDirective, isStandalone: true, selector: "[fdpTableScrollable]", providers: [{ provide: TABLE_SCROLLABLE, useExisting: forwardRef(() => TableScrollableDirective) }], exportAs: ["tableScrollable"], ngImport: i0 }); }
|
|
3594
3608
|
}
|
|
3595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableScrollableDirective, decorators: [{
|
|
3596
3610
|
type: Directive,
|
|
3597
3611
|
args: [{
|
|
3598
3612
|
selector: '[fdpTableScrollable]',
|
|
@@ -3611,10 +3625,10 @@ class FdpViewSettingsFilterCustomDef {
|
|
|
3611
3625
|
static ngTemplateContextGuard(dir, ctx) {
|
|
3612
3626
|
return true;
|
|
3613
3627
|
}
|
|
3614
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3615
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3628
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpViewSettingsFilterCustomDef, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3629
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: FdpViewSettingsFilterCustomDef, isStandalone: true, selector: "[fdpViewSettingsFilterCustomDef]", ngImport: i0 }); }
|
|
3616
3630
|
}
|
|
3617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FdpViewSettingsFilterCustomDef, decorators: [{
|
|
3618
3632
|
type: Directive,
|
|
3619
3633
|
args: [{ selector: '[fdpViewSettingsFilterCustomDef]', standalone: true }]
|
|
3620
3634
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
@@ -3908,15 +3922,15 @@ class TableVirtualScrollDirective extends TableVirtualScroll {
|
|
|
3908
3922
|
this._previousStartNodeIndex = startingNode;
|
|
3909
3923
|
this._tableService.getTableState().scrollTopPosition = this.rowHeight * startingNode;
|
|
3910
3924
|
}
|
|
3911
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3912
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3925
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableVirtualScrollDirective, deps: [{ token: TableService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3926
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.5", type: TableVirtualScrollDirective, isStandalone: true, selector: "fdp-table[virtualScroll]", inputs: { virtualScroll: "virtualScroll", renderAhead: "renderAhead", bodyHeight: "bodyHeight", rowHeight: "rowHeight", secondaryRowHeight: "secondaryRowHeight", scrollWholeRows: "scrollWholeRows" }, host: { listeners: { "keydown": "_keydownHandler($event)" } }, providers: [
|
|
3913
3927
|
{
|
|
3914
3928
|
provide: FDP_TABLE_VIRTUAL_SCROLL_DIRECTIVE,
|
|
3915
3929
|
useExisting: TableVirtualScrollDirective
|
|
3916
3930
|
}
|
|
3917
3931
|
], usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
3918
3932
|
}
|
|
3919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3933
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableVirtualScrollDirective, decorators: [{
|
|
3920
3934
|
type: Directive,
|
|
3921
3935
|
args: [{
|
|
3922
3936
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -3991,10 +4005,10 @@ class TableCellStylesPipe {
|
|
|
3991
4005
|
}
|
|
3992
4006
|
return styles;
|
|
3993
4007
|
}
|
|
3994
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3995
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4008
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellStylesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4009
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: TableCellStylesPipe, isStandalone: true, name: "tableCellStyles" }); }
|
|
3996
4010
|
}
|
|
3997
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellStylesPipe, decorators: [{
|
|
3998
4012
|
type: Pipe,
|
|
3999
4013
|
args: [{ name: 'tableCellStyles', standalone: true }]
|
|
4000
4014
|
}] });
|
|
@@ -4011,10 +4025,10 @@ class ColumnResizableSidePipe {
|
|
|
4011
4025
|
}
|
|
4012
4026
|
return 'both';
|
|
4013
4027
|
}
|
|
4014
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4015
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4028
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ColumnResizableSidePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4029
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: ColumnResizableSidePipe, isStandalone: true, name: "columnResizableSide" }); }
|
|
4016
4030
|
}
|
|
4017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ColumnResizableSidePipe, decorators: [{
|
|
4018
4032
|
type: Pipe,
|
|
4019
4033
|
args: [{ name: 'columnResizableSide', standalone: true }]
|
|
4020
4034
|
}] });
|
|
@@ -4032,10 +4046,10 @@ class TableColumnSortingDirectionPipe {
|
|
|
4032
4046
|
}
|
|
4033
4047
|
return ARIA_SORT[sorting.direction];
|
|
4034
4048
|
}
|
|
4035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4036
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4049
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableColumnSortingDirectionPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4050
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: TableColumnSortingDirectionPipe, isStandalone: true, name: "fdpTableColumnSortingDirection" }); }
|
|
4037
4051
|
}
|
|
4038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableColumnSortingDirectionPipe, decorators: [{
|
|
4039
4053
|
type: Pipe,
|
|
4040
4054
|
args: [{
|
|
4041
4055
|
pure: true,
|
|
@@ -4065,10 +4079,10 @@ class RowClassesPipe {
|
|
|
4065
4079
|
}
|
|
4066
4080
|
return rowClasses.trim();
|
|
4067
4081
|
}
|
|
4068
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4069
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4082
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RowClassesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4083
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: RowClassesPipe, isStandalone: true, name: "rowClasses" }); }
|
|
4070
4084
|
}
|
|
4071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RowClassesPipe, decorators: [{
|
|
4072
4086
|
type: Pipe,
|
|
4073
4087
|
args: [{ name: 'rowClasses', standalone: true }]
|
|
4074
4088
|
}] });
|
|
@@ -4087,10 +4101,10 @@ class SelectionCellStylesPipe {
|
|
|
4087
4101
|
'max-width': selectionColumnWidth
|
|
4088
4102
|
};
|
|
4089
4103
|
}
|
|
4090
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4091
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
4104
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SelectionCellStylesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4105
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: SelectionCellStylesPipe, isStandalone: true, name: "selectionCellStyles" }); }
|
|
4092
4106
|
}
|
|
4093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SelectionCellStylesPipe, decorators: [{
|
|
4094
4108
|
type: Pipe,
|
|
4095
4109
|
args: [{ name: 'selectionCellStyles', standalone: true }]
|
|
4096
4110
|
}] });
|
|
@@ -4125,8 +4139,8 @@ const importExports = [
|
|
|
4125
4139
|
* Use direct imports of components and directives.
|
|
4126
4140
|
*/
|
|
4127
4141
|
class TableHelpersModule {
|
|
4128
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4129
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
4142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableHelpersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4143
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: TableHelpersModule, imports: [TableInitialStateDirective,
|
|
4130
4144
|
TableDraggableDirective,
|
|
4131
4145
|
TableVirtualScrollDirective,
|
|
4132
4146
|
PlatformTableColumnResponsiveDirective,
|
|
@@ -4171,9 +4185,9 @@ class TableHelpersModule {
|
|
|
4171
4185
|
TableCellStylesPipe,
|
|
4172
4186
|
ColumnResizableSidePipe,
|
|
4173
4187
|
RowClassesPipe] }); }
|
|
4174
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4188
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableHelpersModule }); }
|
|
4175
4189
|
}
|
|
4176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableHelpersModule, decorators: [{
|
|
4177
4191
|
type: NgModule,
|
|
4178
4192
|
args: [{
|
|
4179
4193
|
imports: [...importExports],
|