|
1 | | -import {FrameworkConfiguration} from 'aurelia-framework'; |
2 | | -import {AureliaUX} from './aurelia-ux'; |
| 1 | +import { FrameworkConfiguration } from 'aurelia-framework'; |
| 2 | +import { AureliaUX } from './aurelia-ux'; |
3 | 3 |
|
4 | | -export {swatches} from './colors/swatches'; |
5 | | -export {shadows} from './colors/shadows'; |
6 | | -export {UxButtonTheme} from './button/ux-button-theme'; |
7 | | -export {UxInputTheme} from './input/ux-input-theme'; |
8 | | -export {UxInputInfoTheme} from './input-info/ux-input-info-theme'; |
9 | | -export {UxTextareaTheme} from './textarea/ux-textarea-theme'; |
| 4 | +export { swatches } from './colors/swatches'; |
| 5 | +export { shadows } from './colors/shadows'; |
| 6 | +export { UxButtonTheme } from './button/ux-button-theme'; |
| 7 | +export { UxInputTheme } from './input/ux-input-theme'; |
| 8 | +export { UxInputInfoTheme } from './input-info/ux-input-info-theme'; |
| 9 | +export { UxTextareaTheme } from './textarea/ux-textarea-theme'; |
| 10 | +export { UxFormTheme } from './form/ux-form-theme'; |
10 | 11 | export * from './styles/decorators'; |
11 | | -export {AureliaUX} from './aurelia-ux'; |
12 | | -export {UXConfiguration} from './ux-configuration'; |
| 12 | +export { AureliaUX } from './aurelia-ux'; |
| 13 | +export { UXConfiguration } from './ux-configuration'; |
13 | 14 |
|
14 | 15 | export function configure(config: FrameworkConfiguration, callback?: (config: AureliaUX) => Promise<any>) { |
15 | 16 | config.globalResources([ |
16 | 17 | './button/ux-button', |
17 | 18 | './input/ux-input', |
18 | 19 | './input-info/ux-input-info', |
19 | | - './textarea/ux-textarea' |
| 20 | + './textarea/ux-textarea', |
| 21 | + './form/ux-form' |
20 | 22 | ]); |
21 | 23 |
|
22 | 24 | const ux = config.container.get(AureliaUX) as AureliaUX; |
|
0 commit comments