@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,57 @@
1
+ import React from 'react';
2
+ import { AccordionItem_defaultProps } from '../../Accordion/props/defaultProps';
3
+ import { AccordionItem_propTypes } from '../../Accordion/props/propTypes';
4
+ import VelocityAnimation from '../VelocityAnimation/VelocityAnimation/VelocityAnimation';
5
+ import VelocityAnimationGroup from '../VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup';
6
+ export default function AccordionItem(props) {
7
+ let {
8
+ id,
9
+ selectMenu,
10
+ className,
11
+ children,
12
+ dataId,
13
+ dataSelectorId,
14
+ unMount,
15
+ unMountItem,
16
+ a11y,
17
+ innerClass,
18
+ equalityCheck,
19
+ selectedItem
20
+ } = props;
21
+ unMountItem = unMountItem !== undefined ? unMountItem : unMount;
22
+ let {
23
+ role
24
+ } = a11y;
25
+
26
+ function equalityChecking() {
27
+ return equalityCheck ? equalityCheck(id, selectedItem) : selectedItem == id;
28
+ }
29
+
30
+ function handleSelectMenu() {
31
+ selectMenu(id);
32
+ }
33
+
34
+ return /*#__PURE__*/React.createElement("div", {
35
+ className: className ? className : '',
36
+ "data-id": dataId,
37
+ "data-test-id": dataId,
38
+ role: role,
39
+ "data-selector-id": dataSelectorId
40
+ }, /*#__PURE__*/React.createElement("div", {
41
+ className: innerClass ? innerClass : '',
42
+ onClick: handleSelectMenu
43
+ }, children[0]), unMountItem ? /*#__PURE__*/React.createElement(VelocityAnimationGroup, {
44
+ name: "slideDown",
45
+ isActive: equalityChecking()
46
+ }, children[1]) : /*#__PURE__*/React.createElement(VelocityAnimation, {
47
+ name: "slideDown",
48
+ isActive: equalityChecking()
49
+ }, children[1]));
50
+ }
51
+ AccordionItem.propTypes = AccordionItem_propTypes;
52
+ AccordionItem.defaultProps = AccordionItem_defaultProps; // if (__DOCS__) {
53
+ // AccordionItem.docs = {
54
+ // componentGroup: 'Animation',
55
+ // folderName: 'Style Guide'
56
+ // };
57
+ // }
@@ -0,0 +1,2 @@
1
+ export { default as Accordion } from './Accordion';
2
+ export { default as AccordionItem } from './AccordionItem';
@@ -0,0 +1,127 @@
1
+ import React from 'react';
2
+ import { defaultProps } from '../../Animation/props/defaultProps';
3
+ import { propTypes } from '../../Animation/props/propTypes';
4
+ import { CSSTransition } from 'react-transition-group';
5
+ import style from '../../common/transition.module.css';
6
+ export default function Animation(props) {
7
+ let {
8
+ name,
9
+ enterDuration,
10
+ exitDuration,
11
+ children,
12
+ isActive,
13
+ unmountOnExit,
14
+ onEntered = () => {},
15
+ onExit = () => {},
16
+ delayClassName = null
17
+ } = props;
18
+ const animation = {
19
+ zoomIn: {
20
+ enter: style.zoomInEnter,
21
+ enterActive: style.zoomInEnterActive,
22
+ enterDone: style.zoomInEnterActive,
23
+ exit: style.zoomInLeave,
24
+ exitActive: style.zoomInLeaveActive,
25
+ exitDone: style.zoomInLeaveActive,
26
+ appear: style.zoomInEnter,
27
+ appearActive: style.zoomInEnterActive
28
+ },
29
+ scaleIn: {
30
+ enter: style.scaleInEnter,
31
+ enterActive: style.scaleInEnterActive,
32
+ enterDone: style.scaleInEnterActive,
33
+ exit: style.scaleInLeave,
34
+ exitActive: style.scaleInLeaveActive,
35
+ exitDone: style.scaleInLeaveActive,
36
+ appear: style.scaleInEnter,
37
+ appearActive: style.scaleInEnterActive
38
+ },
39
+ fadeIn: {
40
+ enter: style.fadeInEnter,
41
+ enterActive: style.fadeInEnterActive,
42
+ enterDone: style.fadeInEnterActive,
43
+ exit: style.fadeInLeave,
44
+ exitActive: style.fadeInLeaveActive,
45
+ exitDone: style.fadeInLeaveActive,
46
+ appear: style.fadeInEnter,
47
+ appearActive: style.fadeInEnterActive
48
+ },
49
+ slideLeft: {
50
+ enter: style.slideLeftEnter,
51
+ enterActive: style.slideLeftEnterActive,
52
+ enterDone: style.slideLeftEnterActive,
53
+ exit: style.slideLeftLeave,
54
+ exitActive: style.slideLeftLeaveActive,
55
+ exitDone: style.slideLeftLeaveActive,
56
+ appear: style.slideLeftEnter,
57
+ appearActive: style.slideLeftEnterActive
58
+ },
59
+ slideDown: {
60
+ enter: style.slideDownEnter,
61
+ enterActive: style.slideDownEnterActive,
62
+ enterDone: style.slideDownEnterActive,
63
+ exit: style.slideDownLeave,
64
+ exitActive: style.slideDownLeaveActive,
65
+ exitDone: style.slideDownLeaveActive,
66
+ appear: style.slideDownEnter,
67
+ appearActive: style.slideDownEnterActive
68
+ },
69
+ skewIn: {
70
+ enter: style.skewInEnter,
71
+ enterActive: style.skewInEnterActive,
72
+ enterDone: style.skewInEnterActive,
73
+ exit: style.skewInLeave,
74
+ exitActive: style.skewInLeaveActive,
75
+ exitDone: style.skewInLeaveActive,
76
+ appear: style.skewInEnter,
77
+ appearActive: style.skewInEnterActive
78
+ },
79
+ none: {
80
+ enter: style.noneEnter,
81
+ enterActive: style.noneEnterActive,
82
+ enterDone: style.noneEnterActive,
83
+ exit: style.noneLeave,
84
+ exitActive: style.noneLeaveActive,
85
+ exitDone: style.noneLeaveActive,
86
+ appear: style.noneEnter,
87
+ appearActive: style.noneEnterActive
88
+ },
89
+ default: {
90
+ enter: style.defaultEnter,
91
+ enterActive: style.defaultEnterActive,
92
+ enterDone: style.defaultEnterActive,
93
+ exit: style.defaultLeave,
94
+ exitActive: style.defaultLeaveActive,
95
+ exitDone: style.defaultLeaveActive,
96
+ appear: style.defaultEnter,
97
+ appearActive: style.defaultEnterActive
98
+ }
99
+ };
100
+ let newClassNames = delayClassName ? Object.assign({}, animation[name], {
101
+ exit: `${delayClassName} ${animation[name].exit}`
102
+ }) : animation[name];
103
+ return /*#__PURE__*/React.createElement(CSSTransition, {
104
+ classNames: newClassNames && newClassNames,
105
+ in: isActive,
106
+ appear: true,
107
+ enter: true,
108
+ exit: true,
109
+ mountOnEnter: false,
110
+ unmountOnExit: unmountOnExit,
111
+ timeout: {
112
+ enter: enterDuration,
113
+ exit: exitDuration
114
+ },
115
+ onEntered: onEntered,
116
+ onExit: onExit
117
+ }, /*#__PURE__*/React.createElement(React.Fragment, null, children));
118
+ }
119
+ Animation.propTypes = propTypes;
120
+ Animation.defaultProps = defaultProps; // if (__DOCS__) {
121
+ // Animation.docs = {
122
+ // componentGroup: 'Animation',
123
+ // folderName: 'Style Guide',
124
+ // external: true,
125
+ // description: ' '
126
+ // };
127
+ // }
@@ -0,0 +1,137 @@
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 { defaultProps } from '../../AppContainer/props/defaultProps';
5
+ import { propTypes } from '../../AppContainer/props/propTypes';
6
+ import { Container, Box } from '../Layout';
7
+ import Tooltip from '../Tooltip/Tooltip';
8
+ import '../../common/basic.module.css';
9
+ import '@zohodesk/variables/assets/colorVariables.module.css';
10
+ import '@zohodesk/variables/assets/dotVariables.module.css';
11
+ import '@zohodesk/variables/assets/sizeVariables.module.css';
12
+ import '@zohodesk/variables/assets/fontsizeVariables.module.css';
13
+ import '@zohodesk/variables/lib/fontFamilyVariables.module.css';
14
+ import '@zohodesk/variables/assets/transitionVariables.module.css';
15
+ import '@zohodesk/variables/assets/no_transitionVariables.module.css';
16
+ import '../../common/a11y.module.css';
17
+ import '../../common/boxShadow.module.css';
18
+ import style from '../../AppContainer/AppContainer.module.css';
19
+ import { getLibraryConfig, setLibraryConfig } from '../../Provider/Config';
20
+ export default class AppContainer extends React.Component {
21
+ constructor(props) {
22
+ super(props);
23
+ this.setTooltipRef = this.setTooltipRef.bind(this);
24
+ this.handleOver = this.handleOver.bind(this);
25
+ this.mouseOverDispatch = this.mouseOverDispatch.bind(this);
26
+ this.removeTimeout = this.removeTimeout.bind(this);
27
+ this.getContainerRef = this.getContainerRef.bind(this);
28
+ this.timer = null;
29
+ this.tooltipDebounce = getLibraryConfig('tooltipDebounce');
30
+ setLibraryConfig({
31
+ getTooltipContainer: () => this.containerElement
32
+ });
33
+ }
34
+
35
+ mouseOverDispatch(e) {
36
+ if (this.tooltipRef) {
37
+ this.tooltipRef.handleOver(e, this.containerElement);
38
+ }
39
+ }
40
+
41
+ removeTimeout() {
42
+ if (this.timer) {
43
+ this.timer = clearTimeout(this.timer);
44
+ }
45
+ }
46
+
47
+ handleOver(e) {
48
+ if (this.timer) {
49
+ this.timer = clearTimeout(this.timer);
50
+ }
51
+
52
+ this.timer = setTimeout(() => this.mouseOverDispatch(e), this.tooltipDebounce);
53
+ }
54
+
55
+ getContainerRef(ref) {
56
+ let {
57
+ eleRef
58
+ } = this.props;
59
+ this.containerElement = ref;
60
+ eleRef && eleRef(ref);
61
+ }
62
+
63
+ setTooltipRef(ref) {
64
+ this.tooltipRef = ref;
65
+ }
66
+
67
+ componentDidMount() {
68
+ let {
69
+ needTooltip
70
+ } = this.props;
71
+
72
+ if (this.containerElement && needTooltip) {
73
+ this.containerElement.addEventListener('mouseover', this.handleOver, false);
74
+ this.containerElement.addEventListener('mouseout', this.removeTimeout, false);
75
+ this.tooltipRef.observeElement();
76
+ }
77
+ }
78
+
79
+ componentWillUnmount() {
80
+ let {
81
+ needTooltip
82
+ } = this.props;
83
+
84
+ if (this.containerElement && needTooltip) {
85
+ this.containerElement.removeEventListener('mouseover', this.handleOver, false);
86
+ this.containerElement.addEventListener('mouseout', this.removeTimeout, false);
87
+ this.tooltipRef.unObserveElement();
88
+ setLibraryConfig({
89
+ getTooltipContainer: () => null
90
+ });
91
+ }
92
+ }
93
+
94
+ render() {
95
+ let {
96
+ className,
97
+ children,
98
+ tagName,
99
+ dataId,
100
+ dataSelectorId,
101
+ tooltipClass,
102
+ tooltipParentClass,
103
+ needTooltip,
104
+ customProps
105
+ } = this.props;
106
+ let {
107
+ ContainerProps = {},
108
+ TooltipProps = {},
109
+ ExtraProps = {}
110
+ } = customProps;
111
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Container, _extends({
112
+ className: `${style.container} ${className}`,
113
+ dataId: dataId,
114
+ dataSelectorId: dataSelectorId,
115
+ tagName: tagName,
116
+ eleRef: this.getContainerRef
117
+ }, ContainerProps, ExtraProps), /*#__PURE__*/React.createElement(Box, {
118
+ flexible: true
119
+ }, children)), needTooltip ? /*#__PURE__*/React.createElement("div", _extends({}, ExtraProps, {
120
+ className: `${style.container} ${style.tooltip} ${tooltipParentClass}`,
121
+ "data-id": `${dataId}_tooltip`,
122
+ "data-test-id": `${dataId}_tooltip`,
123
+ "data-selector-id": `${dataSelectorId}_tooltip`
124
+ }), /*#__PURE__*/React.createElement(Tooltip, _extends({
125
+ ref: this.setTooltipRef,
126
+ customClass: tooltipClass
127
+ }, TooltipProps))) : null);
128
+ }
129
+
130
+ }
131
+ AppContainer.propTypes = propTypes;
132
+ AppContainer.defaultProps = defaultProps; // if (__DOCS__) {
133
+ // AppContainer.docs = {
134
+ // componentGroup: 'Template',
135
+ // folderName: 'Style Guide'
136
+ // };
137
+ // }
@@ -0,0 +1,139 @@
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, { useState } from 'react';
4
+ import { useEffectCallOnlyAfterState } from '@zohodesk/hooks';
5
+ import { defaultProps } from '../../Avatar/props/defaultProps';
6
+ import { propTypes } from '../../Avatar/props/propTypes';
7
+ import { getInitial } from '../../utils/getInitial';
8
+ import AvatarSize from '../../Provider/AvatarSize';
9
+ import style from '../../Avatar/Avatar.module.css';
10
+ /*
11
+ 1. need to change name into firstName lastName
12
+ 2. pattern support via context as well as props
13
+ 3. prop high priority to arrange firstName lastName
14
+ 4. team pass name as lastName and pass pattern via prop
15
+ */
16
+
17
+ function Avatar(props) {
18
+ let {
19
+ src,
20
+ name,
21
+ size,
22
+ palette,
23
+ onClick,
24
+ title,
25
+ shape,
26
+ needTitle,
27
+ dataId,
28
+ initial,
29
+ needBorder,
30
+ borderOnActive,
31
+ borderOnHover,
32
+ textPalette,
33
+ customClass,
34
+ alternateSrc,
35
+ isAnimate,
36
+ dataSelectorId,
37
+ customProps,
38
+ needInnerBorder,
39
+ needDefaultBorder
40
+ } = props;
41
+ let {
42
+ AvatarProps = {}
43
+ } = customProps;
44
+ const [isLoaded, setLoaded] = useState(false);
45
+
46
+ const putInvalidImageURLJSON = () => {
47
+ let _validImgArr = [...Avatar.validImageURLs];
48
+ let _invalidImgArr = [...Avatar.invalidImageURLs]; // if (alternateSrc) {
49
+ // _validImgArr.push(alternateSrc);
50
+ // }
51
+
52
+ const validIndex = _validImgArr.indexOf(src);
53
+
54
+ if (validIndex !== -1) {
55
+ _validImgArr.splice(validIndex, 1);
56
+ }
57
+
58
+ _invalidImgArr.push(src);
59
+
60
+ Avatar.invalidImageURLs = _invalidImgArr;
61
+ Avatar.validImageURLs = _validImgArr;
62
+ setLoaded(isLoaded => !isLoaded);
63
+ };
64
+
65
+ const putValidImageURLJSON = () => {
66
+ const validImgArr = Avatar.validImageURLs;
67
+ const invalidImgArr = Avatar.invalidImageURLs;
68
+
69
+ if (src && validImgArr.indexOf(src) === -1 && invalidImgArr.indexOf(src) === -1) {
70
+ let _validImgArr = [...validImgArr];
71
+
72
+ _validImgArr.push(src);
73
+
74
+ Avatar.validImageURLs = _validImgArr;
75
+ setLoaded(isLoaded => !isLoaded);
76
+ }
77
+ };
78
+ /* this will cause error if user name already have some space need to move firstName lastName user preference pattern*/
79
+
80
+
81
+ const getInitialByFullName = function () {
82
+ let fullName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
83
+ fullName = (fullName || '').trim();
84
+ let nameList = fullName.split(' ');
85
+
86
+ if (nameList.length === 1) {
87
+ return getInitial('', nameList[0]);
88
+ }
89
+
90
+ return getInitial(nameList[0], nameList[1]);
91
+ };
92
+
93
+ useEffectCallOnlyAfterState(() => {
94
+ setLoaded(isLoaded => !isLoaded);
95
+ }, [src]);
96
+ let textStyle = textPalette ? style[textPalette] : palette === 'secondary' ? style.white : style.black;
97
+ let shapeStyle = shape === 'circle' ? 'circle' : `square_${size}`;
98
+ initial = initial || getInitialByFullName(name);
99
+ let isInvalidImageList = Avatar.invalidImageURLs.indexOf(src) !== -1; //let isValidImageList = Avatar.validImageURLs.indexOf(src) !== -1;
100
+
101
+ let showAvatar = src && !isInvalidImageList;
102
+ let showInitial = !showAvatar || showAvatar && isInvalidImageList;
103
+ const showAlternateAvatar = alternateSrc ? showInitial : false;
104
+ let border = borderOnHover || onClick;
105
+ let showDefaultBorder = src && !isInvalidImageList && needDefaultBorder;
106
+ let borderStyle = (showDefaultBorder || !src || !showAvatar || showInitial) && needBorder ? `${style.border} ${borderOnActive ? style.borderOnActive : border ? style.borderOnHover : ''} ` : '';
107
+ borderStyle = showAlternateAvatar ? '' : borderStyle;
108
+ return /*#__PURE__*/React.createElement("div", _extends({
109
+ className: `${style.avatar} ${style[size]} ${AvatarSize(size)} ${style[shapeStyle]} ${style[palette]} ${textStyle} ${borderStyle} ${customClass ? customClass : ''}`,
110
+ "data-title": needTitle ? title ? title : name : null,
111
+ "data-id": dataId,
112
+ "data-test-id": dataId,
113
+ onClick: onClick,
114
+ "data-selector-id": dataSelectorId
115
+ }, AvatarProps), showInitial && !showAlternateAvatar && /*#__PURE__*/React.createElement("span", {
116
+ className: `${style.initial}`,
117
+ "data-id": `${dataId}_AvatarInitial`,
118
+ "data-test-id": `${dataId}_AvatarInitial`,
119
+ "data-selector-id": `${dataSelectorId}_AvatarInitial`
120
+ }, initial), (showAvatar || showAlternateAvatar) && /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("img", {
121
+ className: `${style.image} ${isAnimate ? style.animate : ''} ${needInnerBorder ? style.innerBorder : ''}`,
122
+ "data-id": `${dataId}_AvatarImg`,
123
+ "data-test-id": `${dataId}_AvatarImg`,
124
+ "data-selector-id": `${dataSelectorId}_AvatarImg`,
125
+ name: name,
126
+ onError: putInvalidImageURLJSON,
127
+ onLoad: putValidImageURLJSON,
128
+ src: showAlternateAvatar ? alternateSrc : src,
129
+ alt: name
130
+ }), showDefaultBorder ? null : /*#__PURE__*/React.createElement("span", {
131
+ className: `${style.shadow} ${textStyle} `
132
+ })));
133
+ }
134
+
135
+ export default Avatar;
136
+ Avatar.defaultProps = defaultProps;
137
+ Avatar.propTypes = propTypes;
138
+ Avatar.invalidImageURLs = [];
139
+ Avatar.validImageURLs = [];
@@ -0,0 +1,70 @@
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 { defaultProps } from '../../AvatarTeam/props/defaultProps';
5
+ import { propTypes } from '../../AvatarTeam/props/propTypes';
6
+ import Avatar from '../Avatar/Avatar';
7
+ import style from '../../AvatarTeam/AvatarTeam.module.css';
8
+ /* once avatar support firstname lastname and pattern
9
+ pass lastName as team name and pattern ["FIRST_NAME","LAST_NAME"] as props
10
+
11
+ Not going to export to external then can kept inside supportapp
12
+ */
13
+
14
+ export default function AvatarTeam(props) {
15
+ const {
16
+ src,
17
+ name,
18
+ size,
19
+ palette,
20
+ textPalette,
21
+ onClick,
22
+ title,
23
+ isFilled,
24
+ dataId,
25
+ needTitle,
26
+ customClass,
27
+ borderOnActive,
28
+ borderOnHover,
29
+ dataSelectorId,
30
+ customProps,
31
+ needInnerBorder,
32
+ needBorder,
33
+ needDefaultBorder
34
+ } = props;
35
+ const {
36
+ AvatarTeamProps = {},
37
+ AvatarProps = {}
38
+ } = customProps;
39
+ const {
40
+ customAvatar = '',
41
+ customAvatarTeam = ''
42
+ } = customClass;
43
+ const border = borderOnHover || onClick;
44
+ return /*#__PURE__*/React.createElement("span", _extends({
45
+ className: `${style.container} ${borderOnActive ? style.borderOnActive : border ? style.borderOnHover : ''} `,
46
+ "data-id": dataId,
47
+ "data-test-id": dataId,
48
+ "data-selector-id": dataSelectorId
49
+ }, AvatarTeamProps), /*#__PURE__*/React.createElement(Avatar, _extends({
50
+ name: name,
51
+ onClick: onClick,
52
+ palette: palette,
53
+ textPalette: textPalette,
54
+ size: size,
55
+ src: src,
56
+ title: title,
57
+ needTitle: needTitle,
58
+ customClass: customAvatar,
59
+ borderOnActive: borderOnActive,
60
+ borderOnHover: border,
61
+ needInnerBorder: needInnerBorder,
62
+ needBorder: needBorder,
63
+ needDefaultBorder: needDefaultBorder
64
+ }, AvatarProps)), /*#__PURE__*/React.createElement("span", {
65
+ className: `${style.team} ${isFilled ? `${style[`${palette}Filled`]}` : style.nofill}
66
+ ${style[`${size}team`]} ${customAvatarTeam}`
67
+ }));
68
+ }
69
+ AvatarTeam.defaultProps = defaultProps;
70
+ AvatarTeam.propTypes = propTypes;
@@ -0,0 +1,68 @@
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 { defaultProps } from '../../Button/props/defaultProps';
5
+ import { propTypes } from '../../Button/props/propTypes';
6
+ import cssJSLogic from '../../Button/css/cssJSLogic';
7
+ import { mergeStyle } from '@zohodesk/utils';
8
+ import style from '../../Button/css/Button.module.css';
9
+ /*
10
+ Button text and children props?
11
+ use children for both cases
12
+ toLowerCase check needed?
13
+ */
14
+
15
+ export default function Button(props) {
16
+ let {
17
+ text,
18
+ disabled,
19
+ onClick,
20
+ status,
21
+ children,
22
+ dataId,
23
+ needAppearance,
24
+ getRef,
25
+ title,
26
+ dataSelectorId,
27
+ customProps,
28
+ customStyle,
29
+ a11y,
30
+ id
31
+ } = props;
32
+ const finalStyle = mergeStyle(style, customStyle);
33
+ const {
34
+ buttonClass,
35
+ loaderParentClass,
36
+ loaderChildClass
37
+ } = cssJSLogic({
38
+ props,
39
+ style: finalStyle
40
+ });
41
+ let statusLower = status.toLowerCase();
42
+ return /*#__PURE__*/React.createElement("button", _extends({
43
+ className: buttonClass,
44
+ "data-id": disabled ? `${dataId}_disabled` : dataId,
45
+ "data-test-id": disabled ? `${dataId}_disabled` : dataId,
46
+ disabled: disabled || statusLower === 'loading',
47
+ onClick: onClick,
48
+ "data-title": title,
49
+ type: "button",
50
+ ref: getRef,
51
+ "data-selector-id": dataSelectorId
52
+ }, customProps, a11y, {
53
+ id: id
54
+ }), children ? children : text, statusLower !== 'none' && needAppearance && /*#__PURE__*/React.createElement("div", {
55
+ className: finalStyle.overlay
56
+ }, /*#__PURE__*/React.createElement("div", {
57
+ className: loaderParentClass
58
+ }, /*#__PURE__*/React.createElement("div", {
59
+ className: loaderChildClass
60
+ }))));
61
+ }
62
+ Button.defaultProps = defaultProps;
63
+ Button.propTypes = propTypes; // if (__DOCS__) {
64
+ // Button.docs = {
65
+ // componentGroup: 'Form Elements',
66
+ // folderName: 'Style Guide'
67
+ // };
68
+ // }
@@ -0,0 +1,31 @@
1
+ import React from 'react';
2
+ import { defaultProps } from '../../Buttongroup/props/defaultProps';
3
+ import { propTypes } from '../../Buttongroup/props/propTypes';
4
+ import style from '../../Buttongroup/Buttongroup.module.css';
5
+ export default function Buttongroup(props) {
6
+ const {
7
+ children,
8
+ type,
9
+ buttonPosition,
10
+ customClass,
11
+ dataId,
12
+ dataSelectorId
13
+ } = props;
14
+ const btnGroup = [];
15
+ children && children.forEach(child => {
16
+ let btnRight = /*#__PURE__*/React.createElement("span", {
17
+ className: style[type]
18
+ }, child);
19
+ btnGroup.push(btnRight);
20
+ });
21
+ return /*#__PURE__*/React.createElement("div", {
22
+ className: `${style.buttonGroup} ${style[type]} ${customClass ? customClass : ''}`,
23
+ "data-id": dataId,
24
+ "data-test-id": dataId,
25
+ "data-selector-id": dataSelectorId
26
+ }, /*#__PURE__*/React.createElement("div", {
27
+ className: style[`align${buttonPosition}`]
28
+ }, children));
29
+ }
30
+ Buttongroup.defaultProps = defaultProps;
31
+ Buttongroup.propTypes = propTypes;