@zohodesk/components 1.0.0-temp-168 → 1.0.0-temp-169

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.
Files changed (280) hide show
  1. package/.cli/PropLessFiles.html +1 -1
  2. package/.cli/PropValidationExcludeFilesArray.js +13 -3
  3. package/.cli/propValidation_report.html +1 -1
  4. package/README.md +48 -0
  5. package/assets/Appearance/dark/mode/Component_DarkMode.module.css +1 -0
  6. package/assets/Appearance/light/mode/Component_LightMode.module.css +1 -0
  7. package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +1 -0
  8. package/coverage/Button/Button.js.html +1 -1
  9. package/coverage/Button/css/Button.module.css.html +1 -1
  10. package/coverage/Button/css/cssJSLogic.js.html +1 -1
  11. package/coverage/Button/css/index.html +1 -1
  12. package/coverage/Button/index.html +1 -1
  13. package/coverage/Button/props/defaultProps.js.html +3 -6
  14. package/coverage/Button/props/index.html +1 -1
  15. package/coverage/Button/props/propTypes.js.html +9 -3
  16. package/coverage/Buttongroup/Buttongroup.js.html +1 -1
  17. package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
  18. package/coverage/Buttongroup/index.html +1 -1
  19. package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
  20. package/coverage/Buttongroup/props/index.html +1 -1
  21. package/coverage/Buttongroup/props/propTypes.js.html +1 -1
  22. package/coverage/coverage-final.json +10 -10
  23. package/coverage/coverage-summary.json +10 -10
  24. package/coverage/index.html +1 -1
  25. package/coverage/utils/dummyFunction.js.html +1 -1
  26. package/coverage/utils/index.html +1 -1
  27. package/es/AppContainer/AppContainer.js +3 -0
  28. package/es/Button/__tests__/__snapshots__/Button.spec.js.snap +0 -28
  29. package/es/Button/props/defaultProps.js +1 -2
  30. package/es/Button/props/propTypes.js +3 -1
  31. package/es/DateTime/DateTime.module.css +2 -0
  32. package/es/DateTime/DateWidget.js +2 -1
  33. package/es/DateTime/dateFormatUtils/dayChange.js +2 -1
  34. package/es/DateTime/dateFormatUtils/index.js +1 -1
  35. package/es/DateTime/dateFormatUtils/monthChange.js +2 -1
  36. package/es/DateTime/dateFormatUtils/timeChange.js +4 -4
  37. package/es/DateTime/dateFormatUtils/yearChange.js +2 -1
  38. package/es/DropBox/DropBox.js +10 -10
  39. package/es/DropDown/DropDown.js +1 -7
  40. package/es/MultiSelect/AdvancedGroupMultiSelect.js +7 -5
  41. package/es/MultiSelect/AdvancedMultiSelect.js +4 -4
  42. package/es/MultiSelect/MobileHeader/MobileHeader.js +50 -0
  43. package/es/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
  44. package/es/MultiSelect/MobileHeader/props/defaultProps.js +7 -0
  45. package/es/MultiSelect/MobileHeader/props/propTypes.js +7 -0
  46. package/es/MultiSelect/MultiSelect.js +112 -91
  47. package/es/MultiSelect/MultiSelect.module.css +2 -5
  48. package/es/MultiSelect/MultiSelectHeader.js +1 -2
  49. package/es/MultiSelect/MultiSelectWithAvatar.js +15 -112
  50. package/es/MultiSelect/props/defaultProps.js +3 -1
  51. package/es/MultiSelect/props/propTypes.js +9 -57
  52. package/es/Responsive/RefWrapper.js +2 -1
  53. package/es/Select/GroupSelect.js +3 -5
  54. package/es/Select/Select.js +2 -5
  55. package/es/Select/SelectWithAvatar.js +2 -1
  56. package/es/Select/SelectWithIcon.js +5 -2
  57. package/es/TextBox/TextBox.js +3 -3
  58. package/es/TextBox/TextBox.module.css +5 -4
  59. package/es/Textarea/Textarea.module.css +3 -4
  60. package/es/deprecated/PortalLayer/props/propTypes.js +3 -1
  61. package/es/index.js +2 -1
  62. package/es/utils/Common.js +3 -0
  63. package/es/v1/Accordion/Accordion.js +66 -0
  64. package/es/v1/Accordion/AccordionItem.js +57 -0
  65. package/es/v1/Accordion/index.js +2 -0
  66. package/es/v1/Animation/Animation.js +127 -0
  67. package/es/v1/AppContainer/AppContainer.js +137 -0
  68. package/es/v1/Avatar/Avatar.js +139 -0
  69. package/es/v1/AvatarTeam/AvatarTeam.js +70 -0
  70. package/es/v1/Button/Button.js +68 -0
  71. package/es/v1/Buttongroup/Buttongroup.js +31 -0
  72. package/es/v1/Card/Card.js +271 -0
  73. package/es/v1/CheckBox/CheckBox.js +155 -0
  74. package/es/v1/DateTime/CalendarView.js +218 -0
  75. package/es/v1/DateTime/DateTime.js +783 -0
  76. package/es/v1/DateTime/DateTimePopupFooter.js +47 -0
  77. package/es/v1/DateTime/DateTimePopupHeader.js +105 -0
  78. package/es/v1/DateTime/DateWidget.js +1098 -0
  79. package/es/v1/DateTime/DaysRow.js +31 -0
  80. package/es/v1/DateTime/Time.js +166 -0
  81. package/es/v1/DateTime/YearView.js +264 -0
  82. package/es/v1/DateTime/index.js +1 -0
  83. package/es/v1/DropBox/DropBox.js +91 -0
  84. package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +132 -0
  85. package/es/v1/DropDown/DropDown.js +73 -0
  86. package/es/v1/DropDown/DropDownHeading.js +44 -0
  87. package/es/v1/DropDown/DropDownItem.js +76 -0
  88. package/es/v1/DropDown/DropDownSearch.js +63 -0
  89. package/es/v1/DropDown/DropDownSeparator.js +15 -0
  90. package/es/v1/Heading/Heading.js +32 -0
  91. package/es/v1/Label/Label.js +40 -0
  92. package/es/v1/Layout/Box.js +115 -0
  93. package/es/v1/Layout/Container.js +132 -0
  94. package/es/v1/Layout/index.js +2 -0
  95. package/es/v1/ListItem/ListContainer.js +102 -0
  96. package/es/v1/ListItem/ListItem.js +124 -0
  97. package/es/v1/ListItem/ListItemWithAvatar.js +145 -0
  98. package/es/v1/ListItem/ListItemWithCheckBox.js +104 -0
  99. package/es/v1/ListItem/ListItemWithIcon.js +127 -0
  100. package/es/v1/ListItem/ListItemWithRadio.js +105 -0
  101. package/es/v1/ListItem/index.js +6 -0
  102. package/es/v1/Modal/Modal.js +154 -0
  103. package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1079 -0
  104. package/es/v1/MultiSelect/AdvancedMultiSelect.js +568 -0
  105. package/es/v1/MultiSelect/EmptyState.js +64 -0
  106. package/es/v1/MultiSelect/MobileHeader/MobileHeader.js +50 -0
  107. package/es/v1/MultiSelect/MultiSelect.js +1120 -0
  108. package/es/v1/MultiSelect/MultiSelectHeader.js +32 -0
  109. package/es/v1/MultiSelect/MultiSelectWithAvatar.js +216 -0
  110. package/es/v1/MultiSelect/SelectedOptions.js +82 -0
  111. package/es/v1/MultiSelect/Suggestions.js +142 -0
  112. package/es/v1/MultiSelect/index.js +4 -0
  113. package/es/v1/PopOver/PopOver.js +176 -0
  114. package/es/v1/Popup/Popup.js +645 -0
  115. package/es/v1/Radio/Radio.js +115 -0
  116. package/es/v1/Responsive/CustomResponsive.js +195 -0
  117. package/es/v1/Responsive/RefWrapper.js +39 -0
  118. package/es/v1/Responsive/ResizeComponent.js +197 -0
  119. package/es/v1/Responsive/ResizeObserver.js +140 -0
  120. package/es/v1/Responsive/Responsive.js +194 -0
  121. package/es/v1/Responsive/index.js +9 -0
  122. package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +58 -0
  123. package/es/v1/Ribbon/Ribbon.js +33 -0
  124. package/es/v1/RippleEffect/RippleEffect.js +24 -0
  125. package/es/v1/Select/GroupSelect.js +800 -0
  126. package/es/v1/Select/Select.js +966 -0
  127. package/es/v1/Select/SelectWithAvatar.js +344 -0
  128. package/es/v1/Select/SelectWithIcon.js +535 -0
  129. package/es/v1/Select/index.js +4 -0
  130. package/es/v1/Stencils/Stencils.js +26 -0
  131. package/es/v1/Switch/Switch.js +94 -0
  132. package/es/v1/Tab/Tab.js +108 -0
  133. package/es/v1/Tab/TabContent.js +30 -0
  134. package/es/v1/Tab/TabContentWrapper.js +29 -0
  135. package/es/v1/Tab/TabWrapper.js +57 -0
  136. package/es/v1/Tab/Tabs.js +612 -0
  137. package/es/v1/Tab/index.js +5 -0
  138. package/es/v1/Tag/Tag.js +134 -0
  139. package/es/v1/TextBox/TextBox.js +154 -0
  140. package/es/v1/TextBoxIcon/TextBoxIcon.js +158 -0
  141. package/es/v1/Textarea/Textarea.js +102 -0
  142. package/es/v1/Tooltip/Tooltip.js +518 -0
  143. package/es/v1/Typography/Typography.js +38 -0
  144. package/es/v1/Typography/css/Typography.module.css +376 -0
  145. package/es/v1/Typography/css/cssJSLogic.js +46 -0
  146. package/es/v1/Typography/css/letterSpacingMap.js +12 -0
  147. package/es/v1/Typography/props/defaultProps.js +8 -0
  148. package/es/v1/Typography/props/propTypes.js +24 -0
  149. package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +69 -0
  150. package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +100 -0
  151. package/es/v1/semantic/Button/Button.js +53 -0
  152. package/es/v1/semantic/index.js +1 -0
  153. package/lib/AppContainer/AppContainer.js +5 -0
  154. package/lib/Button/__tests__/__snapshots__/Button.spec.js.snap +0 -28
  155. package/lib/Button/props/defaultProps.js +1 -2
  156. package/lib/Button/props/propTypes.js +3 -1
  157. package/lib/DateTime/DateTime.module.css +2 -0
  158. package/lib/DateTime/DateWidget.js +2 -1
  159. package/lib/DateTime/dateFormatUtils/dayChange.js +3 -1
  160. package/lib/DateTime/dateFormatUtils/index.js +1 -1
  161. package/lib/DateTime/dateFormatUtils/monthChange.js +3 -1
  162. package/lib/DateTime/dateFormatUtils/timeChange.js +3 -3
  163. package/lib/DateTime/dateFormatUtils/yearChange.js +3 -1
  164. package/lib/DropBox/DropBox.js +15 -15
  165. package/lib/DropDown/DropDown.js +1 -6
  166. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +7 -6
  167. package/lib/MultiSelect/AdvancedMultiSelect.js +4 -4
  168. package/lib/MultiSelect/MobileHeader/MobileHeader.js +62 -0
  169. package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
  170. package/lib/MultiSelect/MobileHeader/props/defaultProps.js +14 -0
  171. package/lib/MultiSelect/MobileHeader/props/propTypes.js +18 -0
  172. package/lib/MultiSelect/MultiSelect.js +116 -96
  173. package/lib/MultiSelect/MultiSelect.module.css +2 -5
  174. package/lib/MultiSelect/MultiSelectHeader.js +1 -2
  175. package/lib/MultiSelect/MultiSelectWithAvatar.js +18 -113
  176. package/lib/MultiSelect/props/defaultProps.js +3 -1
  177. package/lib/MultiSelect/props/propTypes.js +19 -60
  178. package/lib/Responsive/RefWrapper.js +2 -1
  179. package/lib/Select/GroupSelect.js +2 -2
  180. package/lib/Select/Select.js +1 -2
  181. package/lib/Select/SelectWithAvatar.js +2 -1
  182. package/lib/Select/SelectWithIcon.js +5 -3
  183. package/lib/TextBox/TextBox.js +10 -10
  184. package/lib/TextBox/TextBox.module.css +5 -4
  185. package/lib/Textarea/Textarea.module.css +3 -4
  186. package/lib/deprecated/PortalLayer/props/propTypes.js +3 -1
  187. package/lib/index.js +10 -1
  188. package/lib/utils/Common.js +5 -0
  189. package/lib/v1/Accordion/Accordion.js +98 -0
  190. package/lib/v1/Accordion/AccordionItem.js +68 -0
  191. package/lib/v1/Accordion/index.js +23 -0
  192. package/lib/v1/Animation/Animation.js +143 -0
  193. package/lib/v1/AppContainer/AppContainer.js +209 -0
  194. package/lib/v1/Avatar/Avatar.js +190 -0
  195. package/lib/v1/AvatarTeam/AvatarTeam.js +81 -0
  196. package/lib/v1/Button/Button.js +82 -0
  197. package/lib/v1/Buttongroup/Buttongroup.js +44 -0
  198. package/lib/v1/Card/Card.js +365 -0
  199. package/lib/v1/CheckBox/CheckBox.js +166 -0
  200. package/lib/v1/DateTime/CalendarView.js +285 -0
  201. package/lib/v1/DateTime/DateTime.js +872 -0
  202. package/lib/v1/DateTime/DateTimePopupFooter.js +96 -0
  203. package/lib/v1/DateTime/DateTimePopupHeader.js +166 -0
  204. package/lib/v1/DateTime/DateWidget.js +1125 -0
  205. package/lib/v1/DateTime/DaysRow.js +80 -0
  206. package/lib/v1/DateTime/Time.js +254 -0
  207. package/lib/v1/DateTime/YearView.js +325 -0
  208. package/lib/v1/DateTime/index.js +15 -0
  209. package/lib/v1/DropBox/DropBox.js +119 -0
  210. package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +145 -0
  211. package/lib/v1/DropDown/DropDown.js +170 -0
  212. package/lib/v1/DropDown/DropDownHeading.js +93 -0
  213. package/lib/v1/DropDown/DropDownItem.js +127 -0
  214. package/lib/v1/DropDown/DropDownSearch.js +113 -0
  215. package/lib/v1/DropDown/DropDownSeparator.js +64 -0
  216. package/lib/v1/Heading/Heading.js +49 -0
  217. package/lib/v1/Label/Label.js +51 -0
  218. package/lib/v1/Layout/Box.js +128 -0
  219. package/lib/v1/Layout/Container.js +145 -0
  220. package/lib/v1/Layout/index.js +23 -0
  221. package/lib/v1/ListItem/ListContainer.js +120 -0
  222. package/lib/v1/ListItem/ListItem.js +138 -0
  223. package/lib/v1/ListItem/ListItemWithAvatar.js +162 -0
  224. package/lib/v1/ListItem/ListItemWithCheckBox.js +125 -0
  225. package/lib/v1/ListItem/ListItemWithIcon.js +143 -0
  226. package/lib/v1/ListItem/ListItemWithRadio.js +126 -0
  227. package/lib/v1/ListItem/index.js +55 -0
  228. package/lib/v1/Modal/Modal.js +212 -0
  229. package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1167 -0
  230. package/lib/v1/MultiSelect/AdvancedMultiSelect.js +634 -0
  231. package/lib/v1/MultiSelect/EmptyState.js +112 -0
  232. package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +62 -0
  233. package/lib/v1/MultiSelect/MultiSelect.js +1201 -0
  234. package/lib/v1/MultiSelect/MultiSelectHeader.js +78 -0
  235. package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +270 -0
  236. package/lib/v1/MultiSelect/SelectedOptions.js +126 -0
  237. package/lib/v1/MultiSelect/Suggestions.js +195 -0
  238. package/lib/v1/MultiSelect/index.js +39 -0
  239. package/lib/v1/PopOver/PopOver.js +197 -0
  240. package/lib/v1/Popup/Popup.js +715 -0
  241. package/lib/v1/Radio/Radio.js +126 -0
  242. package/lib/v1/Responsive/CustomResponsive.js +242 -0
  243. package/lib/v1/Responsive/RefWrapper.js +57 -0
  244. package/lib/v1/Responsive/ResizeComponent.js +268 -0
  245. package/lib/v1/Responsive/ResizeObserver.js +168 -0
  246. package/lib/v1/Responsive/Responsive.js +274 -0
  247. package/lib/v1/Responsive/index.js +55 -0
  248. package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +79 -0
  249. package/lib/v1/Ribbon/Ribbon.js +44 -0
  250. package/lib/v1/RippleEffect/RippleEffect.js +39 -0
  251. package/lib/v1/Select/GroupSelect.js +876 -0
  252. package/lib/v1/Select/Select.js +1012 -0
  253. package/lib/v1/Select/SelectWithAvatar.js +394 -0
  254. package/lib/v1/Select/SelectWithIcon.js +597 -0
  255. package/lib/v1/Select/index.js +39 -0
  256. package/lib/v1/Stencils/Stencils.js +43 -0
  257. package/lib/v1/Switch/Switch.js +108 -0
  258. package/lib/v1/Tab/Tab.js +132 -0
  259. package/lib/v1/Tab/TabContent.js +42 -0
  260. package/lib/v1/Tab/TabContentWrapper.js +42 -0
  261. package/lib/v1/Tab/TabWrapper.js +89 -0
  262. package/lib/v1/Tab/Tabs.js +680 -0
  263. package/lib/v1/Tab/index.js +47 -0
  264. package/lib/v1/Tag/Tag.js +154 -0
  265. package/lib/v1/TextBox/TextBox.js +168 -0
  266. package/lib/v1/TextBoxIcon/TextBoxIcon.js +196 -0
  267. package/lib/v1/Textarea/Textarea.js +118 -0
  268. package/lib/v1/Tooltip/Tooltip.js +586 -0
  269. package/lib/v1/Typography/Typography.js +56 -0
  270. package/lib/v1/Typography/css/Typography.module.css +376 -0
  271. package/lib/v1/Typography/css/cssJSLogic.js +41 -0
  272. package/lib/v1/Typography/css/letterSpacingMap.js +20 -0
  273. package/lib/v1/Typography/props/defaultProps.js +15 -0
  274. package/lib/v1/Typography/props/propTypes.js +35 -0
  275. package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +90 -0
  276. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +126 -0
  277. package/lib/v1/semantic/Button/Button.js +63 -0
  278. package/lib/v1/semantic/index.js +15 -0
  279. package/package.json +10 -10
  280. package/result.json +1 -1
@@ -0,0 +1,271 @@
1
+ import React, { Component } from 'react';
2
+ import { CardHeader_propTypes, CardContent_propTypes, Card_propTypes, CardFooter_propTypes } from '../../Card/props/propTypes';
3
+ import { Card_defaultProps, CardHeader_defaultProps, CardContent_defaultProps, CardFooter_defaultProps } from '../../Card/props/defaultProps';
4
+ import { Container, Box } from '../Layout';
5
+ import { getLibraryConfig } from '../../Provider/Config';
6
+ import style from '../../Card/Card.module.css';
7
+ /* eslint-disable react/forbid-component-props */
8
+
9
+ /*
10
+ isscroll header border change use ref
11
+ scroll logic remove from here
12
+ scroll logic move to virtualizer list
13
+ */
14
+
15
+ /* performance handling pending in card component moving to ref instead of setState */
16
+
17
+ export class CardHeader extends Component {
18
+ constructor(props) {
19
+ super(props);
20
+ this.getCardHeaderDom = this.getCardHeaderDom.bind(this);
21
+ this.cardHeader = null;
22
+ }
23
+
24
+ getCardHeaderDom(ele) {
25
+ this.cardHeader = ele;
26
+ }
27
+
28
+ setScrollClassName() {
29
+ if (!this.cardHeader) {
30
+ return null;
31
+ }
32
+ }
33
+
34
+ render() {
35
+ let {
36
+ isScroll,
37
+ children,
38
+ dataId,
39
+ dataSelectorId,
40
+ customClass
41
+ } = this.props;
42
+ return /*#__PURE__*/React.createElement(Box, {
43
+ className: `${isScroll ? style.scroll : style.notScroll} ${customClass}`,
44
+ eleRef: this.getCardHeaderDom,
45
+ dataId: dataId,
46
+ dataSelectorId: dataSelectorId
47
+ }, children);
48
+ }
49
+
50
+ }
51
+ CardHeader.propTypes = CardHeader_propTypes;
52
+ CardHeader.defaultProps = CardHeader_defaultProps;
53
+ export class CardContent extends Component {
54
+ render() {
55
+ let {
56
+ onScroll,
57
+ eleRef,
58
+ children,
59
+ scroll,
60
+ isScrollAttribute,
61
+ dataId,
62
+ dataSelectorId,
63
+ shrink,
64
+ customClass,
65
+ preventParentScroll
66
+ } = this.props;
67
+ return /*#__PURE__*/React.createElement(Box, {
68
+ flexible: true,
69
+ onScroll: onScroll,
70
+ eleRef: eleRef,
71
+ scroll: scroll,
72
+ preventParentScroll: preventParentScroll,
73
+ isScrollAttribute: isScrollAttribute,
74
+ dataId: dataId,
75
+ shrink: shrink,
76
+ className: customClass,
77
+ dataSelectorId: dataSelectorId
78
+ }, children);
79
+ }
80
+
81
+ }
82
+ CardContent.propTypes = CardContent_propTypes;
83
+ CardContent.defaultProps = CardContent_defaultProps;
84
+ export default class Card extends Component {
85
+ constructor(props) {
86
+ super(props);
87
+ this.state = {
88
+ isScroll: false
89
+ };
90
+ let {
91
+ from,
92
+ limit
93
+ } = props;
94
+ this.from = from;
95
+ this.limit = limit;
96
+ this.to = from + 3 * limit;
97
+ this.isFetching = false;
98
+ this.lastScrollTop = 0;
99
+ this.onScroll = this.onScroll.bind(this); //this.onSetScroll = debounce(this.setScroll.bind(this, true), 10, true);
100
+ //this.onClearScroll = debounce(this.setScroll.bind(this, false), 500);
101
+ }
102
+
103
+ UNSAFE_componentWillReceiveProps(nextProps) {
104
+ if (this.from !== nextProps.from) {
105
+ this.from = nextProps.from;
106
+ }
107
+ }
108
+
109
+ onScroll(e) {
110
+ let scrollContainerObj = e.currentTarget;
111
+ let {
112
+ scrollHeight
113
+ } = scrollContainerObj;
114
+ let {
115
+ scrollTop
116
+ } = scrollContainerObj;
117
+ let {
118
+ offsetHeight
119
+ } = scrollContainerObj;
120
+ let {
121
+ onScroll
122
+ } = this.props;
123
+ onScroll && onScroll(e);
124
+ let {
125
+ fetchData,
126
+ noMoreData,
127
+ scrollAt,
128
+ noNeedUpScroll,
129
+ // isScrollShadow,
130
+ isPercentageScroll
131
+ } = this.props;
132
+
133
+ if (scrollTop > this.lastScrollTop) {
134
+ this.scrollDirection = 'down';
135
+ } else {
136
+ this.scrollDirection = 'up';
137
+ }
138
+
139
+ this.lastScrollTop = scrollTop;
140
+
141
+ if (fetchData && !this.isFetching) {
142
+ if (this.scrollDirection === 'down' && !noMoreData) {
143
+ const scrollingPercentage = (scrollTop + offsetHeight) / (scrollHeight - scrollAt) * 100;
144
+ const prefetch = isPercentageScroll ? scrollingPercentage >= getLibraryConfig('scrollFetchLimit') : scrollHeight - scrollAt <= scrollTop + offsetHeight;
145
+
146
+ if (prefetch) {
147
+ this.isFetching = true;
148
+ fetchData(this.from + this.limit, this.limit + this.to, this.scrollDirection).then(() => {
149
+ this.to = this.limit + this.to;
150
+ this.isFetching = false;
151
+ }, () => {
152
+ this.isFetching = false;
153
+ });
154
+ }
155
+ } else {
156
+ if (0 >= scrollTop - scrollAt && this.from !== 0 && !noNeedUpScroll) {
157
+ this.isFetching = true;
158
+ fetchData(this.from - this.limit, this.to - this.limit, this.scrollDirection).then(() => {
159
+ this.to = this.to - this.limit;
160
+ this.isFetching = false;
161
+ }, () => {
162
+ this.isFetching = false;
163
+ });
164
+ }
165
+ }
166
+ }
167
+
168
+ if (fetchData && !noNeedUpScroll) {
169
+ if (this.from !== 0 && scrollTop === 0 && !noNeedUpScroll) {
170
+ scrollContainerObj.scrollTop = scrollTop + offsetHeight / 3;
171
+ } else if (scrollHeight === scrollTop + offsetHeight && !noMoreData) {
172
+ scrollContainerObj.scrollTop = scrollTop - offsetHeight / 2;
173
+ }
174
+ } // if (isScrollShadow) {
175
+ // this.onSetScroll();
176
+ // }
177
+
178
+ } // setScroll(isScroll) {
179
+ // let { isScroll: stateIsScroll } = this.state;
180
+ // if (isScroll && !stateIsScroll) {
181
+ // this.setState({ isScroll: true }, () => {
182
+ // this.onClearScroll();
183
+ // });
184
+ // } else if (!isScroll && stateIsScroll) {
185
+ // this.setState({ isScroll: false });
186
+ // }
187
+ // }
188
+
189
+
190
+ render() {
191
+ let {
192
+ onClick,
193
+ children,
194
+ isScrollAttribute,
195
+ dataId,
196
+ eleRef,
197
+ customClass = '',
198
+ htmlId,
199
+ a11y
200
+ } = this.props;
201
+ let {
202
+ isScroll
203
+ } = this.state;
204
+ let {
205
+ role
206
+ } = a11y;
207
+ return /*#__PURE__*/React.createElement(Container, {
208
+ className: `${customClass}`,
209
+ isScrollAttribute: isScrollAttribute,
210
+ onClick: onClick,
211
+ dataId: dataId,
212
+ eleRef: eleRef
213
+ }, React.Children.map(children, child => {
214
+ if (!child) {
215
+ return child;
216
+ }
217
+
218
+ if (child.type === CardHeader || this.props.childTypes && child.type === this.props.childTypes.cardHeader) {
219
+ return /*#__PURE__*/React.cloneElement(child, {
220
+ isScroll
221
+ });
222
+ } else if (child.type === CardContent || this.props.childTypes && child.type === this.props.childTypes.cardContent) {
223
+ return /*#__PURE__*/React.createElement(Box, {
224
+ id: htmlId,
225
+ role: role,
226
+ flexible: true,
227
+ scroll: child.props.scroll,
228
+ preventParentScroll: child.props.preventParentScroll,
229
+ onScroll: this.onScroll,
230
+ eleRef: child.props.eleRef,
231
+ isScrollAttribute: child.props.isScrollAttribute,
232
+ dataId: child.props.dataId,
233
+ shrink: child.props.shrink,
234
+ className: child.props.customClass,
235
+ dataSelectorId: child.props.dataSelectorId
236
+ }, child.props.children);
237
+ }
238
+
239
+ return child;
240
+ }));
241
+ }
242
+
243
+ }
244
+ Card.propTypes = Card_propTypes;
245
+ Card.defaultProps = Card_defaultProps; // if (__DOCS__) {
246
+ // Card.docs = {
247
+ // componentGroup: 'Template',
248
+ // folderName: 'Style Guide',
249
+ // external: true,
250
+ // description: ' '
251
+ // };
252
+ // }
253
+
254
+ export class CardFooter extends Component {
255
+ render() {
256
+ let {
257
+ children,
258
+ dataId,
259
+ customClass,
260
+ dataSelectorId
261
+ } = this.props;
262
+ return /*#__PURE__*/React.createElement(Box, {
263
+ className: `${customClass}`,
264
+ dataId: dataId,
265
+ dataSelectorId: dataSelectorId
266
+ }, children);
267
+ }
268
+
269
+ }
270
+ CardFooter.propTypes = CardFooter_propTypes;
271
+ CardFooter.defaultProps = CardFooter_defaultProps;
@@ -0,0 +1,155 @@
1
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
+
3
+ import React from 'react';
4
+ import { propTypes } from '../../CheckBox/props/propTypes';
5
+ import { defaultProps } from '../../CheckBox/props/defaultProps';
6
+ import Label from '../Label/Label';
7
+ import { Container, Box } from '../Layout';
8
+ import CssProvider from '../../Provider/CssProvider';
9
+ import style from '../../CheckBox/CheckBox.module.css';
10
+
11
+ const CheckBox = props => {
12
+ let {
13
+ id,
14
+ checked,
15
+ disabled,
16
+ isReadOnly,
17
+ disabledTitle,
18
+ title,
19
+ palette,
20
+ text,
21
+ size,
22
+ labelPalette,
23
+ labelSize,
24
+ isFilled,
25
+ isClipped,
26
+ getRef,
27
+ variant,
28
+ active,
29
+ dataId,
30
+ name,
31
+ activeStyle,
32
+ a11y,
33
+ customClass,
34
+ customProps,
35
+ dataSelectorId
36
+ } = props;
37
+
38
+ function onChange(e) {
39
+ const {
40
+ onChange
41
+ } = props;
42
+ onChange && onChange(!checked, e);
43
+ }
44
+
45
+ let {
46
+ CheckBoxProps = {},
47
+ LabelProps = {}
48
+ } = customProps;
49
+ let {
50
+ customCheckBox = '',
51
+ customLabel = '',
52
+ customCBoxSize = '',
53
+ customTickSize = ''
54
+ } = customClass;
55
+ let accessMode = isReadOnly ? style.readonly : disabled ? CssProvider('isDisabled') : style.pointer;
56
+ let toolTip = disabled ? disabledTitle : title ? title : null;
57
+ let {
58
+ ariaLabel,
59
+ ariaLabelledby,
60
+ ariaHidden,
61
+ role = 'checkbox',
62
+ ariaChecked = checked
63
+ } = a11y;
64
+ return /*#__PURE__*/React.createElement(Container, _extends({
65
+ dataId: dataId,
66
+ isCover: false,
67
+ isInline: text ? false : true,
68
+ alignBox: "row",
69
+ align: "vertical",
70
+ className: `${style.container} ${accessMode} ${isReadOnly || disabled ? '' : `${style[palette]}`}
71
+ ${checked ? `${style[`checked${palette}`]}` : ''} ${customCheckBox}`,
72
+ "data-title": toolTip,
73
+ onClick: isReadOnly || disabled ? null : onChange,
74
+ tabIndex: isReadOnly || disabled || ariaHidden ? '-1' : '0',
75
+ "aria-checked": ariaChecked,
76
+ role: role,
77
+ "aria-label": ariaLabel,
78
+ "aria-labelledby": ariaLabelledby,
79
+ "aria-hidden": ariaHidden,
80
+ "data-selector-id": dataSelectorId || id
81
+ }, CheckBoxProps), /*#__PURE__*/React.createElement(Box, {
82
+ className: `${style.boxContainer} ${style[size]} ${customCBoxSize} ${isFilled ? style.filled : ''}`
83
+ }, /*#__PURE__*/React.createElement("input", {
84
+ type: "hidden",
85
+ id: id,
86
+ ref: getRef,
87
+ name: name
88
+ }), /*#__PURE__*/React.createElement("label", {
89
+ className: `${style.checkbox} ${accessMode} ${style[size]} ${customCBoxSize}`
90
+ }, activeStyle == 'tick' ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("svg", {
91
+ xmlns: "http://www.w3.org/2000/svg",
92
+ viewBox: "0 0 40 40"
93
+ }, checked ? /*#__PURE__*/React.createElement("path", {
94
+ xmlns: "http://www.w3.org/2000/svg",
95
+ d: "M39,20V35a4,4,0,0,1-4,4H5a4,4,0,0,1-4-4V5A4,4,0,0,1,5,1H28.44",
96
+ className: `${style.cbBox}`
97
+ }) : /*#__PURE__*/React.createElement("rect", {
98
+ xmlns: "http://www.w3.org/2000/svg",
99
+ x: "1",
100
+ y: "1",
101
+ width: "38",
102
+ height: "38",
103
+ rx: "4",
104
+ className: `${style.cbBox}`
105
+ })), checked ? /*#__PURE__*/React.createElement("svg", {
106
+ xmlns: "http://www.w3.org/2000/svg",
107
+ viewBox: "0 0 44 44",
108
+ className: `${style.tick} ${style[`${size}tick`]} ${customTickSize} ${disabled ? CssProvider('isDisabled') : ''}`
109
+ }, /*#__PURE__*/React.createElement("polyline", {
110
+ points: "12.56 19 19.61 26.06 40.39 5.28",
111
+ className: `${style.tickPath} ${style.checkedtickPath}`
112
+ })) : null) : /*#__PURE__*/React.createElement("svg", {
113
+ xmlns: "http://www.w3.org/2000/svg",
114
+ viewBox: "0 0 40 40"
115
+ }, /*#__PURE__*/React.createElement("rect", {
116
+ xmlns: "http://www.w3.org/2000/svg",
117
+ x: "1",
118
+ y: "1",
119
+ width: "38",
120
+ height: "38",
121
+ rx: "4",
122
+ className: `${style.cbBox}`
123
+ }), checked ? /*#__PURE__*/React.createElement("line", {
124
+ xmlns: "http://www.w3.org/2000/svg",
125
+ className: `${style.linePath} ${style.cbBox}`,
126
+ x1: "11.47",
127
+ y1: "20",
128
+ x2: "28.53",
129
+ y2: "20"
130
+ }) : null))), text && /*#__PURE__*/React.createElement(Box, {
131
+ flexible: true,
132
+ className: style.text
133
+ }, /*#__PURE__*/React.createElement(Label, _extends({
134
+ text: text,
135
+ palette: disabled ? 'disable' : labelPalette,
136
+ id: id,
137
+ size: labelSize,
138
+ type: "title",
139
+ clipped: isClipped,
140
+ variant: variant,
141
+ customClass: `${active && !disabled ? `${style[`active${palette}Label`]}` : ''}
142
+ ${checked && active ? `${style[`checked${palette}Label`]}` : ''}
143
+ ${accessMode} ${customLabel}`,
144
+ title: toolTip ? toolTip : text
145
+ }, LabelProps))));
146
+ };
147
+
148
+ export default CheckBox;
149
+ CheckBox.defaultProps = defaultProps;
150
+ CheckBox.propTypes = propTypes; // if (__DOCS__) {
151
+ // CheckBox.docs = {
152
+ // componentGroup: 'Form Elements',
153
+ // folderName: 'Style Guide'
154
+ // };
155
+ // }
@@ -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;