@hitgrab/finder 0.1.15-alpha → 0.1.16-alpha
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/core/core-constants.d.ts +1 -0
- package/dist/core/types/core-types.d.ts +2 -0
- package/dist/index.js +789 -786
- package/dist/index.umd.cjs +12 -12
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare const EVENTS: {
|
|
|
16
16
|
readonly SET_GROUP_SORT_BY_DIRECTION: "setGroupBySortDirection";
|
|
17
17
|
readonly SET_PAGE: "setPage";
|
|
18
18
|
readonly SET_NUM_ITEMS_PER_PAGE: "setNumItemsPerPage";
|
|
19
|
+
readonly SYNC_UPDATED_AT: "syncUpdatedAt";
|
|
19
20
|
};
|
|
20
21
|
export declare const EVENT_SOURCE: {
|
|
21
22
|
readonly CORE: "core";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DebounceCallbackRegistry } from "../debounce-callback-registry";
|
|
2
|
+
import { FinderCore } from "../finder-core";
|
|
2
3
|
import { RuleBook } from "../rule-book";
|
|
3
4
|
import { RuleEffect, SearchEffect } from "./effect-types";
|
|
4
5
|
import { FinderOnChangeCallback, FinderOnFirstUserInteractCallback, FinderOnInitCallback, FinderOnReadyCallback, FinderTouchCallback } from "./event-types";
|
|
@@ -91,3 +92,4 @@ export interface PaginationMixinInterface {
|
|
|
91
92
|
setPage: (value: number) => void;
|
|
92
93
|
setNumItemsPerPage: (value: number) => void;
|
|
93
94
|
}
|
|
95
|
+
export type SyncListenerFn = (instance: FinderCore) => void;
|