Skip to content

Commit

Permalink
remove rowType property
Browse files Browse the repository at this point in the history
  • Loading branch information
Ana Belciug committed Nov 25, 2021
1 parent 863d756 commit fe3c244
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,6 @@ RATING_TYPES.default
RATING_TYPES.pill
renderFlag
renderTarget
rowType
ROW_TYPES.start
ROW_TYPES.middle
ROW_TYPES.end
ROW_TYPES.both
selectionConfiguration
selectedDates
selectedId
Expand Down
1 change: 0 additions & 1 deletion packages/bpk-component-calendar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ The BpkCalendarDate component is used to render the content of a cell
| onClick | func | false | null |
| onDateKeyDown | func | false | null |
| preventKeyboardFocus | bool | false | true |
| rowType | oneOf(ROW_TYPES.start, ROW_TYPES.middle, ROW_TYPES.end, ROW_TYPES.both) | false | null |
| selectionType | oneOf(SELECTION_TYPES.single, SELECTION_TYPES.start, SELECTION_TYPES.middle, SELECTION_TYPES.end) | false | SELECTION_TYPES.single |
| style | object | false | null |

Expand Down
2 changes: 0 additions & 2 deletions packages/bpk-component-calendar/src/BpkCalendarDate.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ export const propTypes = {
onClick: PropTypes.func,
onDateKeyDown: PropTypes.func,
preventKeyboardFocus: PropTypes.bool,
rowType: PropTypes.oneOf(Object.keys(ROW_TYPES)),
selectionType: PropTypes.oneOf(Object.keys(SELECTION_TYPES)),
style: PropTypes.object,
};
Expand All @@ -217,7 +216,6 @@ export const defaultProps = {
onClick: null,
onDateKeyDown: null,
preventKeyboardFocus: true,
rowType: null,
selectionType: SELECTION_TYPES.none,
style: null,
};
Expand Down

0 comments on commit fe3c244

Please sign in to comment.