Skip to content

Commit 79e5a21

Browse files
author
farfromrefuge
committed
chore: build fix
1 parent 495458c commit 79e5a21

38 files changed

Lines changed: 69 additions & 39 deletions

File tree

demo-snippets/ng/activity-indicator/activity-indicator.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialActivityIndicatorModule } from '@nativescript-commu
44
import { ActivityIndicatorComponent } from './activity-indicator.component';
55

66
@NgModule({
7-
declarations: [ActivityIndicatorComponent],
7+
imports: [ActivityIndicatorComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialActivityIndicatorModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/bottom-navigation-bar/bottom-navigation-bar.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ThirdTabComponent } from './third-tab/third-tab.component';
88

99
@NgModule({
1010
imports: [NativeScriptCommonModule, NativeScriptMaterialBottomNavigationBarModule],
11-
declarations: [BottomNavigationBarComponent, FirstTabComponent, ThirdTabComponent],
11+
imports: [BottomNavigationBarComponent, FirstTabComponent, ThirdTabComponent],
1212
schemas: [NO_ERRORS_SCHEMA]
1313
})
1414
export class BottomNavigationBarModule {}

demo-snippets/ng/bottom-sheet/bottom-sheet.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { LoginOptionsComponent } from './login-options.component';
66
import { BottomSheetComponent } from './bottom-sheet.component';
77

88
@NgModule({
9-
declarations: [BottomSheetComponent, LoginOptionsComponent],
9+
imports: [BottomSheetComponent, LoginOptionsComponent],
1010
// entryComponents: [LoginOptionsComponent],
1111
// Recommendation: The NativeScriptMaterialBottomSheetModule should be imported in your app.module
1212
// Right now the Module doesn't work well with HMR

demo-snippets/ng/buttons/buttons.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialButtonModule } from '@nativescript-community/ui-mat
44
import { ButtonsComponent } from './buttons.component';
55

66
@NgModule({
7-
declarations: [ButtonsComponent],
7+
imports: [ButtonsComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialButtonModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/cards/cards.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialCardViewModule } from '@nativescript-community/ui-m
44
import { CardsComponent } from './cards.component';
55

66
@NgModule({
7-
declarations: [CardsComponent],
7+
imports: [CardsComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialCardViewModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/progress/progress.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialProgressModule } from '@nativescript-community/ui-m
44
import { ProgressComponent } from './progress.component';
55

66
@NgModule({
7-
declarations: [ProgressComponent],
7+
imports: [ProgressComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialProgressModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/ripple/ripple.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialRippleModule } from '@nativescript-community/ui-mat
44
import { RippleComponent } from './ripple.component';
55

66
@NgModule({
7-
declarations: [RippleComponent],
7+
imports: [RippleComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialRippleModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/slider/slider.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialSliderModule } from '@nativescript-community/ui-mat
44
import { SliderComponent } from './slider.component';
55

66
@NgModule({
7-
declarations: [SliderComponent],
7+
imports: [SliderComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialSliderModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/tabs/tabs.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialTabsModule } from '@nativescript-community/ui-mater
44
import { TabsComponent } from './tabs.component';
55

66
@NgModule({
7-
declarations: [TabsComponent],
7+
imports: [TabsComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialTabsModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

demo-snippets/ng/text-field/text-field.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptMaterialTextFieldModule } from '@nativescript-community/ui-
44
import { TextFieldComponent } from './text-field.component';
55

66
@NgModule({
7-
declarations: [TextFieldComponent],
7+
imports: [TextFieldComponent],
88
imports: [NativeScriptCommonModule, NativeScriptMaterialTextFieldModule],
99
schemas: [NO_ERRORS_SCHEMA]
1010
})

0 commit comments

Comments
 (0)