|
@@ -4,6 +4,8 @@ import { SwitchComponent } from './switch/switch.component';
|
|
import { UiButtonComponent } from './ui-button/ui-button.component';
|
|
import { UiButtonComponent } from './ui-button/ui-button.component';
|
|
import { FullSpellcardComponent } from './full-spellcard/full-spellcard.component';
|
|
import { FullSpellcardComponent } from './full-spellcard/full-spellcard.component';
|
|
import { IconButtonComponent } from './icon-button/icon-button.component';
|
|
import { IconButtonComponent } from './icon-button/icon-button.component';
|
|
|
|
+import { ValueBoxComponent } from './value-box/value-box.component';
|
|
|
|
+import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
@NgModule({
|
|
@NgModule({
|
|
declarations: [
|
|
declarations: [
|
|
@@ -11,13 +13,16 @@ import { IconButtonComponent } from './icon-button/icon-button.component';
|
|
UiButtonComponent,
|
|
UiButtonComponent,
|
|
FullSpellcardComponent,
|
|
FullSpellcardComponent,
|
|
IconButtonComponent,
|
|
IconButtonComponent,
|
|
|
|
+ ValueBoxComponent,
|
|
],
|
|
],
|
|
- imports: [CommonModule],
|
|
|
|
|
|
+ imports: [CommonModule, FormsModule],
|
|
exports: [
|
|
exports: [
|
|
SwitchComponent,
|
|
SwitchComponent,
|
|
UiButtonComponent,
|
|
UiButtonComponent,
|
|
FullSpellcardComponent,
|
|
FullSpellcardComponent,
|
|
IconButtonComponent,
|
|
IconButtonComponent,
|
|
|
|
+ ValueBoxComponent,
|
|
|
|
+ FormsModule,
|
|
],
|
|
],
|
|
})
|
|
})
|
|
export class SharedComponentsModule {}
|
|
export class SharedComponentsModule {}
|