aurelia-bootstrap-select
Version:
An Aurelia Custom Element for the 3rd party addon [Bootstrap-Select]
14 lines (10 loc) • 348 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 };