Skip to content

Commit 46a6ab6

Browse files
author
Donielle Berg
committed
Make flippable prop NOT default to true
1 parent 5f8b29e commit 46a6ab6

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

RELEASENOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
# React Components: design-system-react
33
# Release notes
44

5+
## Release 0.0.34
6+
**BREAKING CHANGES**
7+
- Flippable prop on Timepicker and Datepicker used to default to true. Now, it defaults to false and you must explicitly add it.
8+
9+
510
## Release 0.0.33
611

712
**MAJOR CHANGES**

components/date-picker/index.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ const propTypes = {
4949
};
5050
const defaultProps = {
5151
abbrWeekDayLabels: ['S','M','T','W','T','F','S'],
52-
flippable: true,
5352
formatter (date) {
5453
if(date){
5554
return (date.getMonth()+1) +

components/time-picker/index.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ const propTypes = {
5050

5151
};
5252
const defaultProps = {
53-
flippable: true,
5453
formatter (date) {
5554
if(date){
5655
return date.toLocaleTimeString(navigator.language, {hour: '2-digit', minute:'2-digit'});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "design-system-react",
3-
"version": "0.0.33",
3+
"version": "0.0.34",
44
"description": "Salesforce Lightning Design System React components",
55
"license": "BSD-3-Clause",
66
"scripts": {

0 commit comments

Comments
 (0)