-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.next.js
54 lines (46 loc) · 900 Bytes
/
index.next.js
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
/**
* @module bianco
*/
// selector
export { default as $ } from 'bianco.query'
// events helpers
export {
add as addEvent,
remove as removeEvent,
once as onceEvent
} from 'bianco.events'
// attributes helpers
export {
get as getAttr,
set as setAttr,
remove as removeAttr,
has as hasAttr
} from 'bianco.attr'
// css helpers
export {
get as getCss,
set as setCss,
remove as removeCss
} from 'bianco.css'
// image helpers
export {
loadImage,
loadImages
} from 'bianco.images-loader'
// viewport helpers
export {
scrollbarWidth,
documentHeight,
documentWidth,
scrollTop,
scrollLeft,
elementOffsetTop,
elementOffsetLeft
} from 'bianco.viewport'
// pointer helpers
export {
position as pointerPosition
} from 'bianco.pointer'
// utils
export { default as forceReflow } from 'bianco.force-reflow'
export { default as domToArray } from 'bianco.dom-to-array'