@saydar/table-builder 1.0.2 → 1.0.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saydar/table-builder",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Yitzchak-Holtzberg/OodleTableBuilder"
@@ -1883,8 +1883,9 @@ declare class SortMenuComponent implements OnInit {
1883
1883
  constructor(tableState: TableStore, store: SortMenuComponentStore);
1884
1884
  reset(): void;
1885
1885
  ngOnInit(): void;
1886
- dropIntoSorted(event: CdkDragDrop<SortWithName[]>): void;
1887
- dropIntoNotSorted(event: CdkDragDrop<SortWithName[]>): void;
1886
+ addSort(sort: SortWithName): void;
1887
+ removeSort(sort: SortWithName): void;
1888
+ toggleDirection(sort: SortWithName): void;
1888
1889
  apply: (observableOrValue: Observable<null> | null) => rxjs.Subscription;
1889
1890
  setDirection(sort: SortWithName): void;
1890
1891
  static ɵfac: i0.ɵɵFactoryDeclaration<SortMenuComponent, never>;