aurelia-bootstrap-select
Version:
An Aurelia Custom Element for the 3rd party addon [Bootstrap-Select]
18 lines (13 loc) • 366 B
JavaScript
import {AbpSelectCustomElement} from './abp-select';
import {PickerConfig} from './picker-config';
export function configure(aurelia, callback) {
aurelia.globalResources('./abp-select');
let config = new PickerConfig();
if (typeof callback === 'function') {
callback(config);
}
}
export {
AbpSelectCustomElement,
PickerConfig
};