@ascentgl/ads-ui 21.116.0 → 21.117.0
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
|
@@ -2916,14 +2916,17 @@ interface CustomHeaderParams extends IHeaderParams {
|
|
|
2916
2916
|
getFilterValues?: (field: string) => string[];
|
|
2917
2917
|
isColumnSorted?: (field: string) => boolean;
|
|
2918
2918
|
isColumnFiltered?: (field: string) => boolean;
|
|
2919
|
+
getColumnSortOrder?: (field: string) => number;
|
|
2919
2920
|
}
|
|
2920
2921
|
declare class AdsCustomHeaderComponent implements IHeaderAngularComp {
|
|
2921
2922
|
private registry;
|
|
2922
2923
|
params: CustomHeaderParams;
|
|
2923
2924
|
menuOpen: boolean;
|
|
2924
2925
|
constructor(registry: AdsIconRegistry);
|
|
2926
|
+
private static readonly ACTIVE_CLASS;
|
|
2925
2927
|
agInit(params: CustomHeaderParams): void;
|
|
2926
2928
|
refresh(params: CustomHeaderParams): boolean;
|
|
2929
|
+
private updateHeaderCellClass;
|
|
2927
2930
|
get displayName(): string;
|
|
2928
2931
|
get field(): string;
|
|
2929
2932
|
get hasSortFilterConfig(): boolean;
|
|
@@ -2931,8 +2934,10 @@ declare class AdsCustomHeaderComponent implements IHeaderAngularComp {
|
|
|
2931
2934
|
get sortDirection(): 'asc' | 'desc' | null;
|
|
2932
2935
|
get filterValues(): string[];
|
|
2933
2936
|
get isColumnSorted(): boolean;
|
|
2937
|
+
get sortOrder(): number;
|
|
2934
2938
|
get isColumnFiltered(): boolean;
|
|
2935
2939
|
get isActive(): boolean;
|
|
2940
|
+
get sortArrowColor(): keyof IconThemes;
|
|
2936
2941
|
get isLastColumn(): boolean;
|
|
2937
2942
|
onSortChanged(event: {
|
|
2938
2943
|
field: string;
|
|
@@ -3138,6 +3143,10 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
3138
3143
|
/** @ignore */
|
|
3139
3144
|
get hideColumnButtonLabel(): string;
|
|
3140
3145
|
/** @ignore */
|
|
3146
|
+
get filterButtonLabel(): string;
|
|
3147
|
+
/** @ignore */
|
|
3148
|
+
get sortButtonLabel(): string;
|
|
3149
|
+
/** @ignore */
|
|
3141
3150
|
get isSortedTable(): boolean;
|
|
3142
3151
|
/** @ignore */
|
|
3143
3152
|
get isFilteredTable(): boolean;
|
|
@@ -3242,6 +3251,8 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
3242
3251
|
/** @ignore */
|
|
3243
3252
|
isColumnSorted(field: string): boolean;
|
|
3244
3253
|
/** @ignore */
|
|
3254
|
+
getColumnSortOrder(field: string): number;
|
|
3255
|
+
/** @ignore */
|
|
3245
3256
|
isColumnFiltered(field: string): boolean;
|
|
3246
3257
|
/** @ignore */
|
|
3247
3258
|
onColumnSortChanged(event: {
|