Skip to content

Commit 62fa949

Browse files
committed
rc3 fixes
1 parent 6b46ae0 commit 62fa949

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Make sure to add **all the information needed to understand the bug** so that someone can help. If the info is missing we'll add the 'Needs more information' label and close the issue until there is enough information.
22

33
- [ ] Provide a **minimal code snippet**, please make sure it is well formatted.
4-
- [ ] Provide a **stackblitz** demo / [stackblitz](https://stackblitz.com/edit/angular-srgmj3) example that reproduces the bug.
4+
- [ ] Provide a **stackblitz** demo / [stackblitz](https://stackblitz.com/edit/angular-8xjgx8?file=src%2Fapp%2Fapp.component.ts) example that reproduces the bug.
55
- [ ] Provide **screenshots** where appropriate
66
- [ ] What's the **version** of Angular you're using?
77
- [ ] Does this occur on specific browser?

angular.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"src/favicon.ico"
2222
],
2323
"styles": [
24-
"src/styles.less"
24+
"src/styles.less",
25+
"node_modules/@angular/cdk/overlay-prebuilt.css"
2526
],
2627
"scripts": [],
2728
"vendorChunk": true,

projects/ng2-date-picker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng2-date-picker",
3-
"version": "13.1.0-rc2",
3+
"version": "13.1.0-rc3",
44
"author": "Vlad Ioffe",
55
"repository": {
66
"type": "git",

projects/ng2-date-picker/src/lib/date-picker/date-picker.component.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
.dp-popup {
2828
position: relative;
29+
display: inline-block;
2930
background: @c-white;
3031
box-shadow: 1px 1px 5px 0 fade(@c-black, 10);
3132
border-left: 1px solid fade(@c-black, 10);

src/app/demo/common/conts/consts.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export const DEF_CONF: IDatePickerConfig = {
44
firstDayOfWeek: 'su',
55
monthFormat: 'MMM, YYYY',
66
disableKeypress: false,
7-
allowMultiSelect: false,
87
closeOnSelect: undefined,
98
closeOnSelectDelay: 100,
109
openOnFocus: true,

src/styles.less

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@import '~@angular/cdk/overlay-prebuilt.css';
2-
31
& {
42
html, body {
53
height: 100%;

0 commit comments

Comments
 (0)