当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript PopoverModule.forRoot方法代码示例

本文整理汇总了TypeScript中ngx-bootstrap.PopoverModule.forRoot方法的典型用法代码示例。如果您正苦于以下问题:TypeScript PopoverModule.forRoot方法的具体用法?TypeScript PopoverModule.forRoot怎么用?TypeScript PopoverModule.forRoot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ngx-bootstrap.PopoverModule的用法示例。


在下文中一共展示了PopoverModule.forRoot方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: 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();
 })
开发者ID:gnodet,项目名称:syndesis,代码行数:28,代码来源:flow-view.component.spec.ts

示例2: beforeEach

  beforeEach(async(() => {
    activeRoute = new MockActivatedRoute();

    TestBed.configureTestingModule({
      declarations: [
        RolesDirective,
        TruncatePipe,
        LoaderComponent,
        TaskScheduleSummaryComponent,
        StreamDslComponent
      ],
      imports: [
        NgxPaginationModule,
        ModalModule.forRoot(),
        PopoverModule.forRoot(),
        BsDropdownModule.forRoot(),
        BsDatepickerModule.forRoot(),
        FormsModule,
        FloModule,
        ReactiveFormsModule,
        RouterTestingModule.withRoutes([])
      ],
      providers: [
        { provide: SharedAboutService, useValue: aboutService },
        { provide: AuthService, useValue: authService },
        { provide: ActivatedRoute, useValue: activeRoute },
        { provide: TasksService, useValue: tasksService },
        { provide: LoggerService, useValue: loggerService },
        { provide: NotificationService, useValue: notificationService }
      ]
    })
      .compileComponents();
  }));
开发者ID:BoykoAlex,项目名称:spring-cloud-dataflow-ui,代码行数:33,代码来源:task-schedule-summary.component.spec.ts

示例3: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     imports: [ PopoverModule.forRoot() ],
     declarations: [ HelperComponent ]
   })
   .compileComponents();
 }));
开发者ID:Abhishekvrshny,项目名称:ceph,代码行数:7,代码来源:helper.component.spec.ts

示例4: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       AppsAddComponent,
       DATAFLOW_PAGE,
       DATAFLOW_LIST,
       PagerComponent
     ],
     imports: [
       ModalModule.forRoot(),
       PopoverModule.forRoot(),
       ReactiveFormsModule,
       FormsModule,
       NgxPaginationModule,
       BsDropdownModule.forRoot(),
       TooltipModule.forRoot(),
       RouterTestingModule.withRoutes([])
     ],
     providers: [
       { provide: AppsService, useValue: appsService },
       { provide: RoutingStateService, useValue: routingStateService },
       { provide: BsModalRef, useValue: bsModalRef },
       { provide: NotificationService, useValue: notificationService }
     ]
   })
     .compileComponents();
 }));
开发者ID:BoykoAlex,项目名称:spring-cloud-dataflow-ui,代码行数:27,代码来源:apps-add.component.spec.ts

示例5: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       AppsBulkImportPropertiesComponent,
       DATAFLOW_PAGE,
       DATAFLOW_LIST,
       FocusDirective,
       PagerComponent
     ],
     imports: [
       ModalModule.forRoot(),
       PopoverModule.forRoot(),
       ReactiveFormsModule,
       FormsModule,
       NgxPaginationModule,
       BsDropdownModule.forRoot(),
       TooltipModule.forRoot(),
       RouterTestingModule.withRoutes([])
     ],
     providers: [
       { provide: AuthService, useValue: authService },
       { provide: RoutingStateService, useValue: routingStateService },
       { provide: AppsService, useValue: appsService },
       { provide: SharedAboutService, useValue: sharedAboutService },
       { provide: BsModalRef, useValue: bsModalRef },
       { provide: NotificationService, useValue: notificationService },
       { provide: LoggerService, useValue: loggerService },
       BlockerService
     ]
   })
     .compileComponents();
 }));
开发者ID:BoykoAlex,项目名称:spring-cloud-dataflow-ui,代码行数:32,代码来源:apps-bulk-import-properties.component.spec.ts

示例6: 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();
 })
开发者ID:gnodet,项目名称:syndesis,代码行数:26,代码来源:edit-page.component.spec.ts

示例7: beforeEach

        beforeEach(async(() => {
            blockService.uploadImages = jasmine.createSpy("uploadImages").and.returnValue(Promise.resolve({}));

            TestBed.configureTestingModule({
                declarations: [SectionBlockComponent],
                providers: [
                    { provide: BlockService, useValue: blockService },
                    { provide: TranslatorService, useValue: mocks.translatorService }
                ],
                schemas: [CUSTOM_ELEMENTS_SCHEMA],
                imports: [PopoverModule.forRoot(), FormsModule, TranslateModule.forRoot()]
            });
            fixture = TestBed.createComponent(SectionBlockComponent);
            component = fixture.componentInstance;
            component.owner = person;
            component.designMode = true;

            block = {
                id: 1,
                settings: { name: 'some name', description: 'some description' },
                images: [{
                    id: 1, filename: "file1.png",
                    url: "/image_uploads/0000/0005/file1.png"
                },
                    {
                        id: 2, filename: "file2.png",
                        url: "/image_uploads/0000/0005/file2.png"
                    }
                ]
            };
            component.block = block;
            fixture.detectChanges();
            spyOn(component.popover, 'hide').and.callThrough();
        }));
开发者ID:vfcosta,项目名称:angular-theme,代码行数:34,代码来源:section-block.component.spec.ts

示例8: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     imports: [FormsModule, ReactiveFormsModule, PopoverModule.forRoot(), HttpClientModule],
     declarations: [NgxEditorToolbarComponent],
     providers: [CommandExecutorService, MessageService]
   })
     .compileComponents();
 }));
开发者ID:donhmorris,项目名称:ngx-editor,代码行数:8,代码来源:ngx-editor-toolbar.component.spec.ts

示例9: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     imports: [
       SharedModule,
       PopoverModule.forRoot(),
       HttpClientTestingModule
     ],
     declarations: [ TaskManagerComponent ]
   })
   .compileComponents();
 }));
开发者ID:Abhishekvrshny,项目名称:ceph,代码行数:11,代码来源:task-manager.component.spec.ts

示例10: describe

describe('SelectBadgesComponent', () => {
  let component: SelectBadgesComponent;
  let fixture: ComponentFixture<SelectBadgesComponent>;

  configureTestBed({
    declarations: [SelectBadgesComponent],
    imports: [PopoverModule.forRoot()]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(SelectBadgesComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });

  it('should add item', () => {
    component.options = [
      { name: 'option1', description: '', selected: false },
      { name: 'option2', description: '', selected: false }
    ];
    component.data = [];
    component.selectOption(component.options[1]);
    expect(component.data).toEqual(['option2']);
  });

  it('should update selected', () => {
    component.options = [
      { name: 'option1', description: '', selected: false },
      { name: 'option2', description: '', selected: false }
    ];
    component.data = ['option2'];
    component.ngOnChanges();
    expect(component.options[0].selected).toBe(false);
    expect(component.options[1].selected).toBe(true);
  });

  it('should remove item', () => {
    component.options = [
      { name: 'option1', description: '', selected: true },
      { name: 'option2', description: '', selected: true }
    ];
    component.data = ['option1', 'option2'];
    component.removeItem('option1');
    expect(component.data).toEqual(['option2']);
  });
});
开发者ID:ShiqiCooperation,项目名称:ceph,代码行数:50,代码来源:select-badges.component.spec.ts


注:本文中的ngx-bootstrap.PopoverModule.forRoot方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。