@ascentgl/ads-ui 21.86.0 → 21.87.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
|
@@ -2758,7 +2758,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
|
|
|
2758
2758
|
/** All column sort/filter configs (all possible columns) */
|
|
2759
2759
|
columnSortFilterConfigs: ColumnSortFilterConfig[];
|
|
2760
2760
|
/** Current column sort states from the table */
|
|
2761
|
-
columnSortStates: Map<string, "
|
|
2761
|
+
columnSortStates: Map<string, "asc" | "desc" | null>;
|
|
2762
2762
|
/** Emits when sort configuration changes (order or direction) */
|
|
2763
2763
|
sortChanged: EventEmitter<SortMenuChangeEvent>;
|
|
2764
2764
|
/** Emits when sorts are removed for columns */
|
|
@@ -2958,7 +2958,7 @@ declare class AdsTableComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
|
2958
2958
|
/** @ignore */
|
|
2959
2959
|
activeColumnMenu: i0.WritableSignal<string | null>;
|
|
2960
2960
|
/** @ignore */
|
|
2961
|
-
columnSortStates: i0.WritableSignal<Map<string, "
|
|
2961
|
+
columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
|
|
2962
2962
|
/** @ignore */
|
|
2963
2963
|
columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
|
|
2964
2964
|
/** @ignore */
|