本文整理汇总了TypeScript中ngx-bootstrap.CollapseModule.forRoot方法的典型用法代码示例。如果您正苦于以下问题:TypeScript CollapseModule.forRoot方法的具体用法?TypeScript CollapseModule.forRoot怎么用?TypeScript CollapseModule.forRoot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ngx-bootstrap.CollapseModule
的用法示例。
在下文中一共展示了CollapseModule.forRoot方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: beforeEach
beforeEach(() => {
const configServiceStub = {
getSettings: (...params) => APP_NAME
};
TestBed.configureTestingModule({
imports: [
CoreModule.forRoot(),
SyndesisStoreModule,
SyndesisCommonModule.forRoot(),
ModalModule.forRoot(),
RouterTestingModule.withRoutes([]),
CollapseModule.forRoot(),
BsDropdownModule.forRoot(),
NotificationModule,
NgRxStoreModule.forRoot(platformReducer),
],
providers: [
ERROR_HANDLER_PROVIDERS,
ConfigService,
UserService,
TestSupportService,
NavigationService,
ApiHttpService,
{ provide: ConfigService, useValue: configServiceStub }
],
declarations: [AppComponent]
});
TestBed.compileComponents();
});
示例2: async
async(() => {
TestBed.configureTestingModule({
imports: [
CoreModule.forRoot(),
ApiModule.forRoot(),
CommonModule,
FormsModule,
RouterTestingModule.withRoutes([]),
ConnectionsModule,
ModalModule.forRoot(),
TabsModule.forRoot(),
PopoverModule.forRoot(),
CollapseModule.forRoot(),
SyndesisCommonModule.forRoot(),
IntegrationSupportModule,
CollapseModule
],
declarations: [FlowViewComponent, FlowViewStepComponent],
providers: [
CurrentFlowService,
FlowPageService,
IntegrationStore,
IntegrationService,
EventsService,
StepStore
]
}).compileComponents();
})
示例3: async
async(() => {
TestBed.configureTestingModule({
imports: [
CollapseModule,
CommonModule,
FormsModule,
SyndesisCommonModule,
ModalModule,
RouterTestingModule.withRoutes([]),
PopoverModule.forRoot(),
CollapseModule.forRoot(),
SyndesisStoreModule,
ToolbarModule
],
declarations: [
IntegrationEditPage,
ConnectionsListComponent,
FlowViewComponent,
FlowViewStepComponent
],
providers: [
CurrentFlowService,
NavigationService,
]
}).compileComponents();
})
示例4: beforeEach
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
SharedModule,
RouterTestingModule,
HttpClientTestingModule,
CollapseModule.forRoot(),
PopoverModule.forRoot()
],
declarations: [
NavigationComponent,
NotificationsComponent,
LogoutComponent,
TaskManagerComponent
],
providers: [{ provide: NotificationService, useValue: fakeService }]
}).compileComponents();
}));
示例5: async
async(() => {
TestBed.configureTestingModule({
imports: [
CollapseModule,
CommonModule,
FormsModule,
SyndesisCommonModule,
ModalModule,
RestangularModule.forRoot(),
RouterTestingModule.withRoutes([]),
PopoverModule.forRoot(),
CollapseModule.forRoot(),
StoreModule,
ToolbarModule
],
declarations: [
IntegrationsEditPage,
ConnectionsListComponent,
FlowViewComponent,
FlowViewStepComponent
],
providers: [
MockBackend,
{
provide: RequestOptions,
useClass: BaseRequestOptions
},
{
provide: Http,
useFactory: (backend, options) => {
return new Http(backend, options);
},
deps: [MockBackend, RequestOptions]
},
NavigationService,
CurrentFlow
]
}).compileComponents();
})
示例6: beforeEach
beforeEach(() => {
const configServiceStub = {
getSettings: (...params) => APP_NAME
};
TestBed.configureTestingModule({
imports: [
RestangularModule,
StoreModule,
SyndesisCommonModule.forRoot(),
ModalModule.forRoot(),
RouterTestingModule.withRoutes([]),
CollapseModule.forRoot(),
BsDropdownModule.forRoot(),
NotificationModule,
TourNgxBootstrapModule.forRoot()
],
providers: [
ConfigService,
UserService,
TestSupportService,
NavigationService,
MockBackend,
{ provide: RequestOptions, useClass: BaseRequestOptions },
{
provide: Http,
useFactory: (backend, options) => {
return new Http(backend, options);
},
deps: [MockBackend, RequestOptions]
},
{ provide: ConfigService, useValue: configServiceStub }
],
declarations: [AppComponent]
});
TestBed.compileComponents();
});
示例7:
BsDropdownModule,
ComponentLoaderFactory
} from 'ngx-bootstrap';
import {
ActionModule,
NotificationModule,
CardModule,
ListModule,
ToolbarModule,
PaginationModule,
} from 'patternfly-ng';
const imports = [
AlertModule.forRoot(),
CollapseModule.forRoot(),
ModalModule.forRoot(),
PopoverModule.forRoot(),
TabsModule.forRoot(),
TooltipModule.forRoot(),
TypeaheadModule.forRoot(),
BsDropdownModule.forRoot(),
ActionModule,
NotificationModule,
CardModule,
ListModule,
ToolbarModule
];
const _exports = [
AlertModule,