-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(datepicker): decompose Basic demo (remove presetting dates for d… #3673
docs(datepicker): decompose Basic demo (remove presetting dates for d… #3673
Conversation
Codecov Report
@@ Coverage Diff @@
## development #3673 +/- ##
==============================================
Coverage ? 72.03%
==============================================
Files ? 252
Lines ? 8159
Branches ? 1552
==============================================
Hits ? 5877
Misses ? 1859
Partials ? 423 Continue to review full report at Codecov.
|
c272f6a
to
cd96d65
Compare
}) | ||
export class DemoDatepickerDateInitialStateComponent { | ||
bsValue: Date = new Date(); | ||
bsRangeValue: any = [new Date(2017, 7, 4), new Date(2017, 7, 20)]; |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
outlet: DemoDatepickerBasicComponent | ||
}, | ||
{ | ||
title: 'Initial state of a date', |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
cd96d65
to
357f390
Compare
b69493a
to
df316bd
Compare
…atepicker and daterangepicker)
0cfd4c5
to
e3162cb
Compare
update and testing my branch according to Yevheniia comments(conflicts in files) which I can't see |
a58d632
to
0adc5eb
Compare
templateUrl: './date-initial-state.html' | ||
}) | ||
export class DemoDatepickerDateInitialStateComponent { | ||
bsValue: Date = new Date(); |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
export class DemoDatepickerDateInitialStateComponent { | ||
bsValue: Date = new Date(); | ||
bsRangeValue: Date[]; | ||
maxDate: Date = new Date(); |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
0adc5eb
to
24d9384
Compare
Tested, looks good |
1.remove presetting dates for datepicker and daterangepicker (basic section) http://joxi.ru/4AkgoOwtMpRdeA
2. add new section : Initial state of a date, which set using bsValue, [(ngModel)] http://joxi.ru/Vm6ZxbeHxl7wqm
related to #3669