File tree 18 files changed +104
-51
lines changed
apps/ngx-bootstrap-docs/src/assets/css
18 files changed +104
-51
lines changed Original file line number Diff line number Diff line change 2
2
@import " bs-datepicker" ;
3
3
4
4
/* HEADER */
5
-
5
+ .bs-datepicker-head {
6
+ width : 150px ;
7
+ }
6
8
header {
7
9
padding : 10px 50px 10px 30px ;
8
10
height : $header-height ;
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { AccordionComponent } from './accordion.component' ;
4
4
import { AccordionPanelComponent } from './accordion-group.component' ;
@@ -9,7 +9,10 @@ import { AccordionPanelComponent } from './accordion-group.component';
9
9
} )
10
10
export class AccordionModule {
11
11
// @deprecated method not required anymore, will be deleted in v19.0.0
12
- static forRoot ( ) {
13
- return AccordionModule ;
12
+ static forRoot ( ) : ModuleWithProviders < AccordionModule > {
13
+ return {
14
+ ngModule : AccordionModule ,
15
+ providers : [ ]
16
+ } ;
14
17
}
15
18
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
import { AlertComponent } from './alert.component' ;
3
3
4
4
@NgModule ( {
@@ -7,7 +7,10 @@ import { AlertComponent } from './alert.component';
7
7
} )
8
8
export class AlertModule {
9
9
// @deprecated method not required anymore, will be deleted in v19.0.0
10
- static forRoot ( ) {
11
- return AlertModule ;
10
+ static forRoot ( ) : ModuleWithProviders < AlertModule > {
11
+ return {
12
+ ngModule : AlertModule ,
13
+ providers : [ ]
14
+ } ;
12
15
}
13
16
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { ButtonCheckboxDirective } from './button-checkbox.directive' ;
4
4
import { ButtonRadioDirective } from './button-radio.directive' ;
@@ -10,7 +10,10 @@ import { ButtonRadioGroupDirective } from './button-radio-group.directive';
10
10
} )
11
11
export class ButtonsModule {
12
12
// @deprecated method not required anymore, will be deleted in v19.0.0
13
- static forRoot ( ) {
14
- return ButtonsModule ;
13
+ static forRoot ( ) : ModuleWithProviders < ButtonsModule > {
14
+ return {
15
+ ngModule : ButtonsModule ,
16
+ providers : [ ]
17
+ } ;
15
18
}
16
19
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { CarouselComponent } from './carousel.component' ;
4
4
import { SlideComponent } from './slide.component' ;
@@ -9,7 +9,10 @@ import { SlideComponent } from './slide.component';
9
9
} )
10
10
export class CarouselModule {
11
11
// @deprecated method not required anymore, will be deleted in v19.0.0
12
- static forRoot ( ) {
13
- return CarouselModule ;
12
+ static forRoot ( ) : ModuleWithProviders < CarouselModule > {
13
+ return {
14
+ ngModule : CarouselModule ,
15
+ providers : [ ]
16
+ } ;
14
17
}
15
18
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { CollapseDirective } from './collapse.directive' ;
4
4
@@ -8,7 +8,10 @@ import { CollapseDirective } from './collapse.directive';
8
8
} )
9
9
export class CollapseModule {
10
10
// @deprecated method not required anymore, will be deleted in v19.0.0
11
- static forRoot ( ) {
12
- return CollapseModule ;
11
+ static forRoot ( ) : ModuleWithProviders < CollapseModule > {
12
+ return {
13
+ ngModule : CollapseModule ,
14
+ providers : [ ]
15
+ } ;
13
16
}
14
17
}
Original file line number Diff line number Diff line change 1
1
import { CommonModule } from '@angular/common' ;
2
- import { NgModule } from '@angular/core' ;
2
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
3
3
4
4
import { TooltipModule } from 'ngx-bootstrap/tooltip' ;
5
5
import { TimepickerModule } from 'ngx-bootstrap/timepicker' ;
@@ -64,7 +64,10 @@ import { BsYearsCalendarViewComponent } from './themes/bs/bs-years-calendar-view
64
64
} )
65
65
export class BsDatepickerModule {
66
66
// @deprecated method not required anymore, will be deleted in v19.0.0
67
- static forRoot ( ) {
68
- return BsDatepickerModule ;
67
+ static forRoot ( ) : ModuleWithProviders < BsDatepickerModule > {
68
+ return {
69
+ ngModule : BsDatepickerModule ,
70
+ providers : [ ]
71
+ } ;
69
72
}
70
73
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { BsDropdownContainerComponent } from './bs-dropdown-container.component' ;
4
4
import { BsDropdownMenuDirective } from './bs-dropdown-menu.directive' ;
@@ -21,7 +21,10 @@ import { BsDropdownDirective } from './bs-dropdown.directive';
21
21
} )
22
22
export class BsDropdownModule {
23
23
// @deprecated method not required anymore, will be deleted in v19.0.0
24
- static forRoot ( ) {
25
- return BsDropdownModule ;
24
+ static forRoot ( ) : ModuleWithProviders < BsDropdownModule > {
25
+ return {
26
+ ngModule : BsDropdownModule ,
27
+ providers : [ ]
28
+ } ;
26
29
}
27
30
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
import { CommonModule } from '@angular/common' ;
3
3
4
4
import { FocusTrapDirective } from './focus-trap' ;
@@ -9,7 +9,10 @@ import { FocusTrapDirective } from './focus-trap';
9
9
} )
10
10
export class FocusTrapModule {
11
11
// @deprecated method not required anymore, will be deleted in v19.0.0
12
- static forRoot ( ) {
13
- return FocusTrapModule ;
12
+ static forRoot ( ) : ModuleWithProviders < FocusTrapModule > {
13
+ return {
14
+ ngModule : FocusTrapModule ,
15
+ providers : [ ]
16
+ } ;
14
17
}
15
18
}
Original file line number Diff line number Diff line change 1
1
import { CommonModule } from '@angular/common' ;
2
- import { NgModule } from '@angular/core' ;
2
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
3
3
4
4
import { PagerComponent } from './pager.component' ;
5
5
import { PaginationComponent } from './pagination.component' ;
@@ -10,7 +10,10 @@ import { PaginationComponent } from './pagination.component';
10
10
} )
11
11
export class PaginationModule {
12
12
// @deprecated method not required anymore, will be deleted in v19.0.0
13
- static forRoot ( ) {
14
- return PaginationModule ;
13
+ static forRoot ( ) : ModuleWithProviders < PaginationModule > {
14
+ return {
15
+ ngModule : PaginationModule ,
16
+ providers : [ ]
17
+ } ;
15
18
}
16
19
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
import { CommonModule } from '@angular/common' ;
3
3
4
4
import { PopoverDirective } from './popover.directive' ;
@@ -10,7 +10,10 @@ import { PopoverContainerComponent } from './popover-container.component';
10
10
} )
11
11
export class PopoverModule {
12
12
// @deprecated method not required anymore, will be deleted in v19.0.0
13
- static forRoot ( ) {
14
- return PopoverModule ;
13
+ static forRoot ( ) : ModuleWithProviders < PopoverModule > {
14
+ return {
15
+ ngModule : PopoverModule ,
16
+ providers : [ ]
17
+ } ;
15
18
}
16
19
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { BarComponent } from './bar.component' ;
4
4
import { ProgressbarComponent } from './progressbar.component' ;
@@ -9,7 +9,10 @@ import { ProgressbarComponent } from './progressbar.component';
9
9
} )
10
10
export class ProgressbarModule {
11
11
// @deprecated method not required anymore, will be deleted in v19.0.0
12
- static forRoot ( ) {
13
- return ProgressbarModule ;
12
+ static forRoot ( ) : ModuleWithProviders < ProgressbarModule > {
13
+ return {
14
+ ngModule : ProgressbarModule ,
15
+ providers : [ ]
16
+ } ;
14
17
}
15
18
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { RatingComponent } from './rating.component' ;
4
4
@@ -8,7 +8,10 @@ import { RatingComponent } from './rating.component';
8
8
} )
9
9
export class RatingModule {
10
10
// @deprecated method not required anymore, will be deleted in v19.0.0
11
- static forRoot ( ) {
12
- return RatingModule ;
11
+ static forRoot ( ) : ModuleWithProviders < RatingModule > {
12
+ return {
13
+ ngModule : RatingModule ,
14
+ providers : [ ]
15
+ } ;
13
16
}
14
17
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { SortableComponent } from './sortable.component' ;
4
4
@@ -8,7 +8,10 @@ import { SortableComponent } from './sortable.component';
8
8
} )
9
9
export class SortableModule {
10
10
// @deprecated method not required anymore, will be deleted in v19.0.0
11
- static forRoot ( ) {
12
- return SortableModule ;
11
+ static forRoot ( ) : ModuleWithProviders < SortableModule > {
12
+ return {
13
+ ngModule : SortableModule ,
14
+ providers : [ ]
15
+ } ;
13
16
}
14
17
}
Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ import { TabsetComponent } from './tabset.component';
20
20
} )
21
21
export class TabsModule {
22
22
// @deprecated method not required anymore, will be deleted in v19.0.0
23
- static forRoot ( ) {
24
- return TabsModule ;
23
+ static forRoot ( ) : ModuleWithProviders < TabsModule > {
24
+ return {
25
+ ngModule : TabsModule ,
26
+ providers : [ ]
27
+ } ;
25
28
}
26
29
}
Original file line number Diff line number Diff line change 1
- import { NgModule } from '@angular/core' ;
1
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
2
2
3
3
import { TimepickerComponent } from './timepicker.component' ;
4
4
@@ -8,7 +8,10 @@ import { TimepickerComponent } from './timepicker.component';
8
8
} )
9
9
export class TimepickerModule {
10
10
// @deprecated method not required anymore, will be deleted in v19.0.0
11
- static forRoot ( ) {
12
- return TimepickerModule ;
11
+ static forRoot ( ) : ModuleWithProviders < TimepickerModule > {
12
+ return {
13
+ ngModule : TimepickerModule ,
14
+ providers : [ ]
15
+ } ;
13
16
}
14
17
}
Original file line number Diff line number Diff line change 1
1
import { CommonModule } from '@angular/common' ;
2
- import { NgModule } from '@angular/core' ;
2
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
3
3
import { TooltipContainerComponent } from './tooltip-container.component' ;
4
4
import { TooltipDirective } from './tooltip.directive' ;
5
5
@@ -9,7 +9,10 @@ import { TooltipDirective } from './tooltip.directive';
9
9
} )
10
10
export class TooltipModule {
11
11
// @deprecated method not required anymore, will be deleted in v19.0.0
12
- static forRoot ( ) {
13
- return TooltipModule ;
12
+ static forRoot ( ) : ModuleWithProviders < TooltipModule > {
13
+ return {
14
+ ngModule : TooltipModule ,
15
+ providers : [ ]
16
+ } ;
14
17
}
15
18
}
Original file line number Diff line number Diff line change 1
1
import { CommonModule } from '@angular/common' ;
2
- import { NgModule } from '@angular/core' ;
2
+ import { ModuleWithProviders , NgModule } from '@angular/core' ;
3
3
4
4
import { TypeaheadContainerComponent } from './typeahead-container.component' ;
5
5
import { TypeaheadDirective } from './typeahead.directive' ;
@@ -10,7 +10,10 @@ import { TypeaheadDirective } from './typeahead.directive';
10
10
} )
11
11
export class TypeaheadModule {
12
12
// @deprecated method not required anymore, will be deleted in v19.0.0
13
- static forRoot ( ) {
14
- return TypeaheadModule ;
13
+ static forRoot ( ) : ModuleWithProviders < TypeaheadModule > {
14
+ return {
15
+ ngModule : TypeaheadModule ,
16
+ providers : [ ]
17
+ } ;
15
18
}
16
19
}
You can’t perform that action at this time.
0 commit comments