Skip to content

Commit

Permalink
docs: remove unused inspector classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Oct 5, 2023
1 parent 13bb4f0 commit 344c6d5
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -366,15 +366,6 @@ const inspectData = [
openDatePicker();
},
},
{
class: "monthRowClass",
description: "Class of the table row when type is month",
action: (cmp, data) => {
data.type = "month";
data.monthClass = "datepicker__,table__month";
openDatePicker();
},
},
{
class: "monthCellClass",
description: "Class of the table cell when type is month",
Expand All @@ -384,17 +375,6 @@ const inspectData = [
openDatePicker();
},
},
{
class: "monthCellInvisibleClass",
description:
"Class of the table cell when nearby month days are hidden when type is month",
action: (cmp, data) => {
data.type = "month";
data.monthClass = "datepicker__,table__month";
data.nearbyMonthDays = false;
openDatePicker();
},
},
{
class: "monthCellSelectedClass",
description:
Expand Down

0 comments on commit 344c6d5

Please sign in to comment.