Skip to content

Commit

Permalink
refactor(core/date-components): set range default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
lzeiml committed Nov 27, 2023
1 parent 99c8083 commit b455531
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/components/date-input/date-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class DateInput {
/**
* If true a date range can be selected (from/to).
*/
@Prop() range: boolean = true;
@Prop() range: boolean = false;

/**
* Corner style
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class DatePickerRework {
/**
* If true a date-range can be selected (from/to).
*/
@Prop() range: boolean = true;
@Prop() range: boolean = false;

/**
* Corner style
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class DatetimeInput {
/**
* Set range size
*/
@Prop() range = true;
@Prop() range = false;

/**
* Show hour input
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class DatetimePickerRework {
/**
* If true a date-range can be selected (from/to).
*/
@Prop() range = true;
@Prop() range = false;

/**
* Show hour input
Expand Down

0 comments on commit b455531

Please sign in to comment.