aurelia-materialize-bridge
Version:
Aurelia interface to http://materializecss.com/
29 lines • 1.32 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
// the following two imports are needed for consumer TS projects
// without them types will not be found
require("./augmentation/element");
require("./augmentation/materialize");
var aurelia_typed_observable_1 = require("./augmentation/aurelia-typed-observable");
require("./polyfills/append");
require("./polyfills/remove");
require("./polyfills/pad-start");
var config_builder_1 = require("./config-builder");
function configure(frameworkConfiguration, configCallback) {
var builder = frameworkConfiguration.container.get(config_builder_1.ConfigBuilder);
if (configCallback !== undefined && typeof (configCallback) === "function") {
configCallback(builder);
}
if (builder.useGlobalResources) {
frameworkConfiguration.globalResources(builder.globalResources);
}
}
exports.configure = configure;
// this is needed to enforce loading order for requirejs
// otherwise typescript optimises imports and loads augmentation/aurelia-typed-observable after exports
var d = new aurelia_typed_observable_1.Dummy();
// build-index-remove start
tslib_1.__exportStar(require("./exports"), exports);
// build-index-remove end
//# sourceMappingURL=index.js.map
;