UNPKG
activator-oce-exporter
Version:
latest (0.9.1)
0.9.1
0.9.0
Extract Activator binder and convert it to valid OCE mono pacakge
activator-oce-exporter
/
test
/
activator
/
shared
/
src
/
fusion
/
mixins
/
elements-aligner.js
13 lines
(11 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
FusionAligner
}
from
'../services/fusion-aligner'
;
export
function
ElementsAligner
(
superClass
) {
return
class
extends
superClass {
static
get
options
() {
return
{ ...
super
.
options
,
alignConfig
:
FusionAligner
.
config
, }; } }; }