-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathevents.ts
More file actions
74 lines (63 loc) · 1.58 KB
/
events.ts
File metadata and controls
74 lines (63 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export enum Events {
/**
* Creates new widget
* @prop [selector: string] - Element where to inject widget
* @prop [type: string] - Type of widget
* @prop [config: object] - Config which will extend base config
*/
attach = 'attach',
/**
* Updates widget setup
* @prop [entity: object] - widget to remove
*/
update = 'update',
/**
* Removes exist widget
* @prop [entity: object] - widget to remove
*/
detach = 'detach',
/**
* Will rerender component
* @prop [entity: object] - widget to hydrate
*/
hydrate = 'hydrate',
/**
* Will navigate to search page with passed value as search query
* @prop [value: string] - search query
*/
search = 'search',
/**
* Will rerender widget with new config
* @prop [key: string|number] - widget key
* @prop [config: Immutable.Map] - new config
*/
updateConfig = 'updateConfig',
/**
* Input lost focus
* @prop [key: string|number] - widget key
* @prop [config: Immutable.Map]
*/
autocompleteFocusLost = 'autocompleteFocusLost',
/**
* Input lost focus
* @prop [key: string|number] - widget key
* @prop [config: Immutable.Map]
*/
autocompleteFocus = 'autocompleteFocus',
/**
* Invalidate widgets
*/
invalidate = 'invalidate',
/**
* Mobile elements
*/
showMobileFacets = 'showMobileFacets',
showMobileSort = 'showMobileSort',
hideMobileFacets = 'hideMobileFacets',
hideMobileSort = 'hideMobileSort',
/**
* Calls when collection was not set up
*/
collectionNotFound = 'collectionNotFound',
scrollTop = 'scrollTop',
}