Created
April 25, 2017 20:29
-
-
Save hmarcelodn/ad0e35b7089662545708ead6b7aeed9c to your computer and use it in GitHub Desktop.
resources/index.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { PLATFORM } from 'aurelia-pal'; | |
| export { NavBar } from './bar/nav-bar'; | |
| export function configure(config) { | |
| config.globalResources([ | |
| /*PLATFORM.moduleName('./bar/nav-bar'), | |
| PLATFORM.moduleName('./text-editor'), | |
| PLATFORM.moduleName('./search-bar'), | |
| PLATFORM.moduleName('./controls/check-box'), | |
| PLATFORM.moduleName('./controls/tabs'), | |
| PLATFORM.moduleName('./controls/range-slider'), | |
| PLATFORM.moduleName('./controls/dropdown'), | |
| PLATFORM.moduleName('./controls/fab-button'), | |
| PLATFORM.moduleName('./controls/numeric-box'), | |
| PLATFORM.moduleName('./controls/chips'), | |
| PLATFORM.moduleName('./controls/autocomplete-chips'), | |
| PLATFORM.moduleName('./controls/form-wizard'), | |
| PLATFORM.moduleName('./controls/switch'), | |
| PLATFORM.moduleName('./steps'), | |
| PLATFORM.moduleName('./code-console'), | |
| PLATFORM.moduleName('./modal/modal'), | |
| PLATFORM.moduleName('./ace-editor/ace-editor'), | |
| PLATFORM.moduleName('./content-tab')*/ | |
| ]); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment