@zohodesk/components 1.2.3 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/PropLessFiles.html +1 -1
- package/.cli/PropValidationExcludeFilesArray.js +10 -2
- package/.cli/propValidation_report.html +1 -1
- package/README.md +8 -0
- package/coverage/Button/Button.js.html +1 -1
- package/coverage/Button/css/Button.module.css.html +1 -1
- package/coverage/Button/css/cssJSLogic.js.html +1 -1
- package/coverage/Button/css/index.html +1 -1
- package/coverage/Button/index.html +1 -1
- package/coverage/Button/props/defaultProps.js.html +1 -1
- package/coverage/Button/props/index.html +1 -1
- package/coverage/Button/props/propTypes.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
- package/coverage/Buttongroup/index.html +1 -1
- package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
- package/coverage/Buttongroup/props/index.html +1 -1
- package/coverage/Buttongroup/props/propTypes.js.html +1 -1
- package/coverage/index.html +1 -1
- package/coverage/utils/dummyFunction.js.html +1 -1
- package/coverage/utils/index.html +1 -1
- package/es/index.js +2 -1
- package/es/v1/Accordion/Accordion.js +65 -0
- package/es/v1/Accordion/AccordionItem.js +57 -0
- package/es/v1/Accordion/index.js +2 -0
- package/es/v1/Animation/Animation.js +127 -0
- package/es/v1/AppContainer/AppContainer.js +134 -0
- package/es/v1/Avatar/Avatar.js +189 -0
- package/es/v1/AvatarTeam/AvatarTeam.js +70 -0
- package/es/v1/Button/Button.js +68 -0
- package/es/v1/Buttongroup/Buttongroup.js +31 -0
- package/es/v1/Card/Card.js +271 -0
- package/es/v1/CheckBox/CheckBox.js +155 -0
- package/es/v1/DateTime/CalendarView.js +218 -0
- package/es/v1/DateTime/DateTime.js +783 -0
- package/es/v1/DateTime/DateTimePopupFooter.js +47 -0
- package/es/v1/DateTime/DateTimePopupHeader.js +105 -0
- package/es/v1/DateTime/DateWidget.js +1098 -0
- package/es/v1/DateTime/DaysRow.js +31 -0
- package/es/v1/DateTime/Time.js +166 -0
- package/es/v1/DateTime/YearView.js +264 -0
- package/es/v1/DateTime/index.js +1 -0
- package/es/v1/DropBox/DropBox.js +91 -0
- package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +132 -0
- package/es/v1/DropDown/DropDown.js +73 -0
- package/es/v1/DropDown/DropDownHeading.js +44 -0
- package/es/v1/DropDown/DropDownItem.js +76 -0
- package/es/v1/DropDown/DropDownSearch.js +63 -0
- package/es/v1/DropDown/DropDownSeparator.js +15 -0
- package/es/v1/Heading/Heading.js +32 -0
- package/es/v1/Label/Label.js +40 -0
- package/es/v1/Layout/Box.js +115 -0
- package/es/v1/Layout/Container.js +132 -0
- package/es/v1/Layout/index.js +2 -0
- package/es/v1/ListItem/ListContainer.js +102 -0
- package/es/v1/ListItem/ListItem.js +124 -0
- package/es/v1/ListItem/ListItemWithAvatar.js +145 -0
- package/es/v1/ListItem/ListItemWithCheckBox.js +104 -0
- package/es/v1/ListItem/ListItemWithIcon.js +127 -0
- package/es/v1/ListItem/ListItemWithRadio.js +105 -0
- package/es/v1/ListItem/index.js +6 -0
- package/es/v1/Modal/Modal.js +154 -0
- package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1079 -0
- package/es/v1/MultiSelect/AdvancedMultiSelect.js +568 -0
- package/es/v1/MultiSelect/EmptyState.js +64 -0
- package/es/v1/MultiSelect/MobileHeader/MobileHeader.js +50 -0
- package/es/v1/MultiSelect/MultiSelect.js +1120 -0
- package/es/v1/MultiSelect/MultiSelectHeader.js +32 -0
- package/es/v1/MultiSelect/MultiSelectWithAvatar.js +216 -0
- package/es/v1/MultiSelect/SelectedOptions.js +82 -0
- package/es/v1/MultiSelect/Suggestions.js +142 -0
- package/es/v1/MultiSelect/index.js +4 -0
- package/es/v1/PopOver/PopOver.js +211 -0
- package/es/v1/Popup/Popup.js +645 -0
- package/es/v1/Radio/Radio.js +115 -0
- package/es/v1/Responsive/CustomResponsive.js +195 -0
- package/es/v1/Responsive/RefWrapper.js +39 -0
- package/es/v1/Responsive/ResizeComponent.js +197 -0
- package/es/v1/Responsive/ResizeObserver.js +140 -0
- package/es/v1/Responsive/Responsive.js +194 -0
- package/es/v1/Responsive/index.js +9 -0
- package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +58 -0
- package/es/v1/Ribbon/Ribbon.js +33 -0
- package/es/v1/RippleEffect/RippleEffect.js +24 -0
- package/es/v1/Select/GroupSelect.js +803 -0
- package/es/v1/Select/Select.js +969 -0
- package/es/v1/Select/SelectWithAvatar.js +344 -0
- package/es/v1/Select/SelectWithIcon.js +535 -0
- package/es/v1/Select/index.js +4 -0
- package/es/v1/Stencils/Stencils.js +26 -0
- package/es/v1/Switch/Switch.js +94 -0
- package/es/v1/Tab/Tab.js +108 -0
- package/es/v1/Tab/TabContent.js +30 -0
- package/es/v1/Tab/TabContentWrapper.js +29 -0
- package/es/v1/Tab/TabWrapper.js +57 -0
- package/es/v1/Tab/Tabs.js +612 -0
- package/es/v1/Tab/index.js +5 -0
- package/es/v1/Tag/Tag.js +134 -0
- package/es/v1/TextBox/TextBox.js +154 -0
- package/es/v1/TextBoxIcon/TextBoxIcon.js +158 -0
- package/es/v1/Textarea/Textarea.js +102 -0
- package/es/v1/Tooltip/Tooltip.js +518 -0
- package/es/v1/Typography/Typography.js +38 -0
- package/es/v1/Typography/css/Typography.module.css +376 -0
- package/es/v1/Typography/css/cssJSLogic.js +46 -0
- package/es/v1/Typography/css/letterSpacingMap.js +12 -0
- package/es/v1/Typography/props/defaultProps.js +8 -0
- package/es/v1/Typography/props/propTypes.js +24 -0
- package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +69 -0
- package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +100 -0
- package/es/v1/semantic/Button/Button.js +53 -0
- package/es/v1/semantic/index.js +1 -0
- package/lib/index.js +10 -1
- package/lib/v1/Accordion/Accordion.js +96 -0
- package/lib/v1/Accordion/AccordionItem.js +68 -0
- package/lib/v1/Accordion/index.js +23 -0
- package/lib/v1/Animation/Animation.js +143 -0
- package/lib/v1/AppContainer/AppContainer.js +204 -0
- package/lib/v1/Avatar/Avatar.js +246 -0
- package/lib/v1/AvatarTeam/AvatarTeam.js +81 -0
- package/lib/v1/Button/Button.js +82 -0
- package/lib/v1/Buttongroup/Buttongroup.js +44 -0
- package/lib/v1/Card/Card.js +365 -0
- package/lib/v1/CheckBox/CheckBox.js +166 -0
- package/lib/v1/DateTime/CalendarView.js +285 -0
- package/lib/v1/DateTime/DateTime.js +872 -0
- package/lib/v1/DateTime/DateTimePopupFooter.js +96 -0
- package/lib/v1/DateTime/DateTimePopupHeader.js +166 -0
- package/lib/v1/DateTime/DateWidget.js +1125 -0
- package/lib/v1/DateTime/DaysRow.js +80 -0
- package/lib/v1/DateTime/Time.js +254 -0
- package/lib/v1/DateTime/YearView.js +325 -0
- package/lib/v1/DateTime/index.js +15 -0
- package/lib/v1/DropBox/DropBox.js +119 -0
- package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +145 -0
- package/lib/v1/DropDown/DropDown.js +170 -0
- package/lib/v1/DropDown/DropDownHeading.js +93 -0
- package/lib/v1/DropDown/DropDownItem.js +127 -0
- package/lib/v1/DropDown/DropDownSearch.js +113 -0
- package/lib/v1/DropDown/DropDownSeparator.js +64 -0
- package/lib/v1/Heading/Heading.js +49 -0
- package/lib/v1/Label/Label.js +51 -0
- package/lib/v1/Layout/Box.js +128 -0
- package/lib/v1/Layout/Container.js +145 -0
- package/lib/v1/Layout/index.js +23 -0
- package/lib/v1/ListItem/ListContainer.js +120 -0
- package/lib/v1/ListItem/ListItem.js +138 -0
- package/lib/v1/ListItem/ListItemWithAvatar.js +162 -0
- package/lib/v1/ListItem/ListItemWithCheckBox.js +125 -0
- package/lib/v1/ListItem/ListItemWithIcon.js +143 -0
- package/lib/v1/ListItem/ListItemWithRadio.js +126 -0
- package/lib/v1/ListItem/index.js +55 -0
- package/lib/v1/Modal/Modal.js +212 -0
- package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1167 -0
- package/lib/v1/MultiSelect/AdvancedMultiSelect.js +634 -0
- package/lib/v1/MultiSelect/EmptyState.js +112 -0
- package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +62 -0
- package/lib/v1/MultiSelect/MultiSelect.js +1201 -0
- package/lib/v1/MultiSelect/MultiSelectHeader.js +78 -0
- package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +270 -0
- package/lib/v1/MultiSelect/SelectedOptions.js +126 -0
- package/lib/v1/MultiSelect/Suggestions.js +195 -0
- package/lib/v1/MultiSelect/index.js +39 -0
- package/lib/v1/PopOver/PopOver.js +293 -0
- package/lib/v1/Popup/Popup.js +715 -0
- package/lib/v1/Radio/Radio.js +126 -0
- package/lib/v1/Responsive/CustomResponsive.js +242 -0
- package/lib/v1/Responsive/RefWrapper.js +57 -0
- package/lib/v1/Responsive/ResizeComponent.js +268 -0
- package/lib/v1/Responsive/ResizeObserver.js +168 -0
- package/lib/v1/Responsive/Responsive.js +274 -0
- package/lib/v1/Responsive/index.js +55 -0
- package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +79 -0
- package/lib/v1/Ribbon/Ribbon.js +44 -0
- package/lib/v1/RippleEffect/RippleEffect.js +39 -0
- package/lib/v1/Select/GroupSelect.js +877 -0
- package/lib/v1/Select/Select.js +1013 -0
- package/lib/v1/Select/SelectWithAvatar.js +394 -0
- package/lib/v1/Select/SelectWithIcon.js +597 -0
- package/lib/v1/Select/index.js +39 -0
- package/lib/v1/Stencils/Stencils.js +43 -0
- package/lib/v1/Switch/Switch.js +108 -0
- package/lib/v1/Tab/Tab.js +132 -0
- package/lib/v1/Tab/TabContent.js +42 -0
- package/lib/v1/Tab/TabContentWrapper.js +42 -0
- package/lib/v1/Tab/TabWrapper.js +89 -0
- package/lib/v1/Tab/Tabs.js +680 -0
- package/lib/v1/Tab/index.js +47 -0
- package/lib/v1/Tag/Tag.js +154 -0
- package/lib/v1/TextBox/TextBox.js +168 -0
- package/lib/v1/TextBoxIcon/TextBoxIcon.js +196 -0
- package/lib/v1/Textarea/Textarea.js +118 -0
- package/lib/v1/Tooltip/Tooltip.js +586 -0
- package/lib/v1/Typography/Typography.js +56 -0
- package/lib/v1/Typography/css/Typography.module.css +376 -0
- package/lib/v1/Typography/css/cssJSLogic.js +41 -0
- package/lib/v1/Typography/css/letterSpacingMap.js +20 -0
- package/lib/v1/Typography/props/defaultProps.js +15 -0
- package/lib/v1/Typography/props/propTypes.js +35 -0
- package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +90 -0
- package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +126 -0
- package/lib/v1/semantic/Button/Button.js +63 -0
- package/lib/v1/semantic/index.js +15 -0
- package/package.json +4 -4
- package/result.json +1 -1
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Span_propTypes, CalendarView_propTypes } from '../../DateTime/props/propTypes';
|
|
3
|
+
import { CalendarView_defaultProps, Span_defaultProps } from '../../DateTime/props/defaultProps';
|
|
4
|
+
import { Container, Box } from '../Layout';
|
|
5
|
+
import style from '../../DateTime/DateTime.module.css';
|
|
6
|
+
import { getMonthEnd } from '../../utils/datetime/common';
|
|
7
|
+
import DaysRow from './DaysRow';
|
|
8
|
+
/* eslint css-modules/no-unused-class: [0, { markAsUsed: ['container', 'header', 'thArrowConatainer', 'thArrow', 'thMonYear', 'days', 'daysStr', 'timesection', 'timeStr', 'dropDownContainer', 'dropDown', 'footer', 'space'] }] */
|
|
9
|
+
|
|
10
|
+
export default class CalendarView extends React.PureComponent {
|
|
11
|
+
constructor(props) {
|
|
12
|
+
super(props);
|
|
13
|
+
this.handleSelect = this.handleSelect.bind(this);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
handleSelect(day, month, year, e) {
|
|
17
|
+
const {
|
|
18
|
+
onSelect
|
|
19
|
+
} = this.props;
|
|
20
|
+
onSelect(day, month, year, e);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
render() {
|
|
24
|
+
const {
|
|
25
|
+
date,
|
|
26
|
+
year,
|
|
27
|
+
month,
|
|
28
|
+
dataId,
|
|
29
|
+
needBorder,
|
|
30
|
+
dayNames,
|
|
31
|
+
dayNamesShort,
|
|
32
|
+
todayMonth,
|
|
33
|
+
todayDate,
|
|
34
|
+
todayYear
|
|
35
|
+
} = this.props;
|
|
36
|
+
const userSeeDate = new Date(year, month, 1);
|
|
37
|
+
const userSeeDay = userSeeDate.getDay() + 1;
|
|
38
|
+
const userSeeYear = userSeeDate.getFullYear();
|
|
39
|
+
const userSeeMonth = userSeeDate.getMonth();
|
|
40
|
+
const monthEnd = getMonthEnd(month, year);
|
|
41
|
+
const lastMonth = 11;
|
|
42
|
+
const firstMonth = 0; // let noOfRow = 5;
|
|
43
|
+
// if (
|
|
44
|
+
// (monthEnd === 31 && userSeeDay >= 6) ||
|
|
45
|
+
// (monthEnd === 30 && userSeeDay === 7)
|
|
46
|
+
// ) {
|
|
47
|
+
// noOfRow = 6;
|
|
48
|
+
// } else if (monthEnd === 28 && userSeeDay === 1) {
|
|
49
|
+
// noOfRow = 4;
|
|
50
|
+
// }
|
|
51
|
+
|
|
52
|
+
let incremday = 1;
|
|
53
|
+
let incremleti = 1;
|
|
54
|
+
let isSelectedDay = false;
|
|
55
|
+
let isToday = false;
|
|
56
|
+
|
|
57
|
+
const rows = (() => {
|
|
58
|
+
const rowArr = [];
|
|
59
|
+
|
|
60
|
+
for (let j = 1; j <= 6; j++) {
|
|
61
|
+
const dayArr = [];
|
|
62
|
+
let output = null;
|
|
63
|
+
|
|
64
|
+
for (let i = 1; i < 8; i++) {
|
|
65
|
+
let tdclass = `${style.datesStr} ${style.grid}`;
|
|
66
|
+
|
|
67
|
+
if (i === 1) {
|
|
68
|
+
tdclass += ` ${style.sunday}`;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (incremleti >= userSeeDay && incremday <= monthEnd) {
|
|
72
|
+
if (parseInt(date) === incremday && parseInt(month) === userSeeMonth && parseInt(year) === userSeeYear) {
|
|
73
|
+
isSelectedDay = true;
|
|
74
|
+
} else if (todayDate === incremday && todayMonth === userSeeMonth && todayYear === userSeeYear) {
|
|
75
|
+
isToday = true;
|
|
76
|
+
isSelectedDay = false;
|
|
77
|
+
} else {
|
|
78
|
+
isSelectedDay = false;
|
|
79
|
+
isToday = false;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
output = /*#__PURE__*/React.createElement(Span, {
|
|
83
|
+
i: i,
|
|
84
|
+
isActive: isSelectedDay,
|
|
85
|
+
tdclass: tdclass,
|
|
86
|
+
handleSelect: this.handleSelect,
|
|
87
|
+
incremday: incremday,
|
|
88
|
+
userSeeMonth: userSeeMonth,
|
|
89
|
+
userSeeYear: userSeeYear,
|
|
90
|
+
dataId: isSelectedDay ? `${dataId}_dateSelected` : `${dataId}_date`,
|
|
91
|
+
isToday: isToday
|
|
92
|
+
});
|
|
93
|
+
incremday++;
|
|
94
|
+
} else if (incremleti < userSeeDay) {
|
|
95
|
+
let prevMonth = userSeeMonth - 1;
|
|
96
|
+
let prevYear = userSeeYear;
|
|
97
|
+
|
|
98
|
+
if (userSeeMonth === firstMonth) {
|
|
99
|
+
prevMonth = lastMonth;
|
|
100
|
+
prevYear = userSeeYear - 1;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
const prevMonthEnd = getMonthEnd(prevMonth, prevYear);
|
|
104
|
+
const prevDate = prevMonthEnd - (userSeeDay - 1) + incremleti; // isSelectedDay =
|
|
105
|
+
|
|
106
|
+
prevDate === parseInt(date) && parseInt(month) === prevMonth && parseInt(year) === prevYear ? true : false; // isToday = prevDate === incremday && todayMonth === userSeeMonth && todayYear === userSeeYear ? true : false;
|
|
107
|
+
|
|
108
|
+
output = /*#__PURE__*/React.createElement(Span, {
|
|
109
|
+
i: i //isActive={isSelectedDay}
|
|
110
|
+
,
|
|
111
|
+
tdclass: `${tdclass} ${style.invalidDate}`,
|
|
112
|
+
handleSelect: this.handleSelect,
|
|
113
|
+
incremday: prevDate,
|
|
114
|
+
userSeeMonth: prevMonth,
|
|
115
|
+
userSeeYear: prevYear,
|
|
116
|
+
dataId: isSelectedDay ? `${dataId}_dateSelected` : `${dataId}_invalidDate` // isToday={isToday}
|
|
117
|
+
|
|
118
|
+
});
|
|
119
|
+
} else if (incremleti > monthEnd) {
|
|
120
|
+
let nextMonth = userSeeMonth + 1;
|
|
121
|
+
let nextYear = userSeeYear;
|
|
122
|
+
|
|
123
|
+
if (userSeeMonth === lastMonth) {
|
|
124
|
+
nextMonth = firstMonth;
|
|
125
|
+
nextYear = userSeeYear + 1;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const nextDate = incremleti - (userSeeDay - 1) - monthEnd; // isSelectedDay =
|
|
129
|
+
|
|
130
|
+
nextDate === parseInt(date) && parseInt(month) === nextMonth && parseInt(year) === nextYear ? true : false; // isToday = nextDate === incremday && todayMonth === userSeeMonth && todayYear === userSeeYear ? true : false;
|
|
131
|
+
|
|
132
|
+
output = /*#__PURE__*/React.createElement(Span, {
|
|
133
|
+
i: i // isActive={isSelectedDay}
|
|
134
|
+
,
|
|
135
|
+
tdclass: `${tdclass} ${style.invalidDate}`,
|
|
136
|
+
handleSelect: this.handleSelect,
|
|
137
|
+
incremday: nextDate,
|
|
138
|
+
userSeeMonth: nextMonth,
|
|
139
|
+
userSeeYear: nextYear,
|
|
140
|
+
dataId: isSelectedDay ? `${dataId}_dateSelected` : `${dataId}_invalidDate` //isToday={isToday}
|
|
141
|
+
|
|
142
|
+
});
|
|
143
|
+
} else {
|
|
144
|
+
output = /*#__PURE__*/React.createElement(Box, {
|
|
145
|
+
key: i,
|
|
146
|
+
className: `${style.grid}`
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
incremleti++;
|
|
151
|
+
dayArr.push(output);
|
|
152
|
+
}
|
|
153
|
+
/* eslint-disable react/forbid-component-props */
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
rowArr.push( /*#__PURE__*/React.createElement(Container, {
|
|
157
|
+
key: j,
|
|
158
|
+
alignBox: "row",
|
|
159
|
+
align: "center",
|
|
160
|
+
isCover: false,
|
|
161
|
+
className: style.dateRow
|
|
162
|
+
}, dayArr));
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
return rowArr;
|
|
166
|
+
})();
|
|
167
|
+
|
|
168
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(DaysRow, {
|
|
169
|
+
dayNames: dayNames,
|
|
170
|
+
dayNamesShort: dayNamesShort,
|
|
171
|
+
ariaLabel: dayNamesShort
|
|
172
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
173
|
+
"data-id": `${dataId}_dateContainer`,
|
|
174
|
+
"data-test-id": `${dataId}_dateContainer`,
|
|
175
|
+
className: `${style.dateContainer} ${needBorder ? style.separator : ''}`
|
|
176
|
+
}, rows));
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
}
|
|
180
|
+
CalendarView.propTypes = CalendarView_propTypes;
|
|
181
|
+
CalendarView.defaultProps = CalendarView_defaultProps;
|
|
182
|
+
export class Span extends React.PureComponent {
|
|
183
|
+
constructor(props) {
|
|
184
|
+
super(props);
|
|
185
|
+
this.handleSelectChild = this.handleSelectChild.bind(this);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
handleSelectChild(e) {
|
|
189
|
+
const {
|
|
190
|
+
handleSelect,
|
|
191
|
+
incremday,
|
|
192
|
+
userSeeMonth,
|
|
193
|
+
userSeeYear
|
|
194
|
+
} = this.props;
|
|
195
|
+
handleSelect(incremday, userSeeMonth, userSeeYear, e);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
render() {
|
|
199
|
+
const {
|
|
200
|
+
tdclass,
|
|
201
|
+
incremday,
|
|
202
|
+
i,
|
|
203
|
+
dataId,
|
|
204
|
+
isActive,
|
|
205
|
+
isToday
|
|
206
|
+
} = this.props;
|
|
207
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
208
|
+
dataId: dataId,
|
|
209
|
+
className: `${tdclass} ${isActive ? style.active : ''} ${isToday ? style.today : ''}`,
|
|
210
|
+
key: i,
|
|
211
|
+
onClick: this.handleSelectChild,
|
|
212
|
+
"aria-label": incremday
|
|
213
|
+
}, incremday);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
}
|
|
217
|
+
Span.propTypes = Span_propTypes;
|
|
218
|
+
Span.defaultProps = Span_defaultProps;
|