Skip to content

Commit dd3e1c0

Browse files
committed
Merge branch 'development' of github.com:valor-software/ngx-bootstrap into development
2 parents cff6af6 + 0357a3a commit dd3e1c0

36 files changed

+39
-42
lines changed

apps/ngx-bootstrap-docs/src/assets/css/style.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
@import "bs-datepicker";
33

44
/* HEADER */
5-
.bs-datepicker-head {
6-
width: 150px;
7-
}
85
header {
96
padding: 10px 50px 10px 30px;
107
height: $header-height;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "20.0.1"
2+
"version": "20.0.2"
33
}

src/accordion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/accordion",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/alert/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/alert",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/buttons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/buttons",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/carousel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/carousel",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/chronos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/chronos",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/collapse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/collapse",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/component-loader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-bootstrap/component-loader",
3-
"version": "20.0.1",
3+
"version": "20.0.2",
44
"author": "Dmitriy Shekhovtsov <[email protected]>",
55
"license": "MIT"
66
}

src/datepicker/bs-datepicker-inline.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
} from '@angular/core';
1515

1616
import { ComponentLoader, ComponentLoaderFactory } from 'ngx-bootstrap/component-loader';
17+
import { PositioningService } from 'ngx-bootstrap/positioning';
1718

1819
import { Subscription } from 'rxjs';
1920
import { BsDatepickerInlineConfig } from './bs-datepicker-inline.config';
@@ -28,7 +29,7 @@ import { checkBsValue, setCurrentTimeOnDateSelect } from './utils/bs-calendar-ut
2829
selector: 'bs-datepicker-inline',
2930
exportAs: 'bsDatepickerInline',
3031
standalone: true,
31-
providers: [ComponentLoaderFactory]
32+
providers: [ComponentLoaderFactory, PositioningService]
3233
})
3334
export class BsDatepickerInlineDirective implements OnInit, OnDestroy, OnChanges {
3435
/**

0 commit comments

Comments
 (0)