Limitations
bcx-aurelia-reorderable-repeat
doesn’t support repeat on template
element.
Following html generates an Aurelia error.
<template reorderable-repeat.for="obj of array">
<!-- inner html -->
</template>
bcx-aurelia-reorderable-repeat
only supports Array
model, not Set
, Map
or Object
(Those 3 are supported by standard Aurelia repeater). We are trying to reorder something, only array makes sense here.