@one-paragon/angular-utilities 2.8.3 → 2.8.5
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
|
@@ -616,7 +616,9 @@ declare class TableSettings<T = any> {
|
|
|
616
616
|
tableId?: string | undefined;
|
|
617
617
|
trackBy?: string | undefined | ((item: T) => any);
|
|
618
618
|
includeIndexColumn: boolean;
|
|
619
|
+
indexColumnWidth?: TbSize | undefined;
|
|
619
620
|
includeSelectionColumn: boolean;
|
|
621
|
+
selectionColumnWidth?: TbSize | undefined;
|
|
620
622
|
usePaginator: boolean | undefined;
|
|
621
623
|
useVirtualScroll: boolean | undefined;
|
|
622
624
|
paginatorSettings: Partial<PaginatorOptions> | undefined;
|
|
@@ -666,6 +668,10 @@ declare class NotPersistedTableSettings {
|
|
|
666
668
|
key: Path<any>;
|
|
667
669
|
expanded?: boolean;
|
|
668
670
|
}[];
|
|
671
|
+
includeIndexColumn: boolean;
|
|
672
|
+
indexColumnWidth?: TbSize | undefined;
|
|
673
|
+
includeSelectionColumn: boolean;
|
|
674
|
+
selectionColumnWidth?: TbSize | undefined;
|
|
669
675
|
}
|
|
670
676
|
declare class VirtualScrollOptions {
|
|
671
677
|
rowHeight: TbSize;
|
|
@@ -1603,6 +1609,14 @@ declare class GenericTableComponent {
|
|
|
1603
1609
|
$selectFilterKey: _angular_core.Signal<string | undefined>;
|
|
1604
1610
|
$hasSelectFilter: _angular_core.Signal<boolean>;
|
|
1605
1611
|
_onSelect: _angular_core.EffectRef;
|
|
1612
|
+
$indexColumnWidth: _angular_core.Signal<{
|
|
1613
|
+
flex: string;
|
|
1614
|
+
maxWidth: string;
|
|
1615
|
+
} | undefined>;
|
|
1616
|
+
$selectionColumnWidth: _angular_core.Signal<{
|
|
1617
|
+
flex: string;
|
|
1618
|
+
maxWidth: string;
|
|
1619
|
+
} | undefined>;
|
|
1606
1620
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericTableComponent, never>;
|
|
1607
1621
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericTableComponent, "tb-generic-table", never, { "$displayData": { "alias": "displayData"; "required": true; "isSignal": true; }; "$data": { "alias": "data"; "required": true; "isSignal": true; }; "$rows": { "alias": "rows"; "required": false; "isSignal": true; }; "$columnInfos": { "alias": "columnInfos"; "required": true; "isSignal": true; }; "$dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "$trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; }, { "selection$": "selection"; }, never, never, true, never>;
|
|
1608
1622
|
}
|
|
@@ -1715,7 +1729,7 @@ declare class TableContainerComponent<T = any> {
|
|
|
1715
1729
|
}
|
|
1716
1730
|
|
|
1717
1731
|
declare class SpaceCasePipe implements PipeTransform {
|
|
1718
|
-
spaceCase:
|
|
1732
|
+
spaceCase: (arg: string) => string;
|
|
1719
1733
|
transform: (value: string) => string;
|
|
1720
1734
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SpaceCasePipe, never>;
|
|
1721
1735
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<SpaceCasePipe, "spaceCase", true>;
|