slickgrid-vue 10.7.1 → 10.8.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/dist/index.d.ts CHANGED
@@ -3,7 +3,6 @@ import { BackendService } from '@slickgrid-universal/common';
3
3
  import { BasePaginationComponent } from '@slickgrid-universal/common';
4
4
  import { BasePaginationModel } from '@slickgrid-universal/common';
5
5
  import { Column } from '@slickgrid-universal/common';
6
- import { ColumnSort } from '@slickgrid-universal/common';
7
6
  import { ComponentOptionsMixin } from 'vue';
8
7
  import { ComponentProvideOptions } from 'vue';
9
8
  import { CurrentFilter } from '@slickgrid-universal/common';
@@ -71,6 +70,7 @@ import { OnHeaderContextMenuEventArgs } from '@slickgrid-universal/common';
71
70
  import { OnHeaderMouseEventArgs } from '@slickgrid-universal/common';
72
71
  import { OnHeaderRowCellRenderedEventArgs } from '@slickgrid-universal/common';
73
72
  import { OnKeyDownEventArgs } from '@slickgrid-universal/common';
73
+ import { OnLocalSortChangedArgs } from '@slickgrid-universal/common';
74
74
  import { OnRenderedEventArgs } from '@slickgrid-universal/common';
75
75
  import { OnRowCountChangedEventArgs } from '@slickgrid-universal/common';
76
76
  import { OnRowsChangedEventArgs } from '@slickgrid-universal/common';
@@ -383,9 +383,7 @@ export declare interface SlickgridVueProps {
383
383
  columnId: string;
384
384
  } | boolean>;
385
385
  onOnBeforeSearchChange?: VueRegularEventHandler<OnSearchChangeEventArgs, boolean | void>;
386
- onOnBeforeSortChange?: VueRegularEventHandler<Array<ColumnSort & {
387
- clearSortTriggered?: boolean;
388
- }>>;
386
+ onOnBeforeSortChange?: VueRegularEventHandler<OnLocalSortChangedArgs>;
389
387
  onOnContextMenuClearGrouping?: VueRegularEventHandler<void>;
390
388
  onOnContextMenuCollapseAllGroups?: VueRegularEventHandler<void>;
391
389
  onOnContextMenuExpandAllGroups?: VueRegularEventHandler<void>;