@zohodesk/dot 1.4.0 → 1.4.2

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 (155) hide show
  1. package/.cli/AppearanceThemeValidationExcludeFiles.js +1 -0
  2. package/.cli/PropLessFiles.html +1 -1
  3. package/.cli/PropUnificationExcludeFilesArray.js +345 -0
  4. package/.cli/PropValidationExcludeFilesArray.js +8 -1
  5. package/.cli/propValidation_report.html +24 -2
  6. package/README.md +12 -0
  7. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +3 -0
  8. package/assets/Appearance/light/mode/Dot_LightMode.module.css +3 -0
  9. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +3 -0
  10. package/coverage/ExternalLink/ExternalLink.js.html +1 -1
  11. package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
  12. package/coverage/ExternalLink/index.html +1 -1
  13. package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
  14. package/coverage/ExternalLink/props/index.html +1 -1
  15. package/coverage/ExternalLink/props/propTypes.js.html +1 -1
  16. package/coverage/IconButton/IconButton.js.html +1 -1
  17. package/coverage/IconButton/IconButton.module.css.html +5 -2
  18. package/coverage/IconButton/index.html +1 -1
  19. package/coverage/IconButton/props/defaultProps.js.html +1 -1
  20. package/coverage/IconButton/props/index.html +1 -1
  21. package/coverage/IconButton/props/propTypes.js.html +1 -1
  22. package/coverage/Image/Image.js.html +1 -1
  23. package/coverage/Image/Image.module.css.html +1 -1
  24. package/coverage/Image/index.html +1 -1
  25. package/coverage/Image/props/defaultProps.js.html +1 -1
  26. package/coverage/Image/props/index.html +1 -1
  27. package/coverage/Image/props/propTypes.js.html +1 -1
  28. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
  29. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
  30. package/coverage/avatar/AvatarWithTeam/index.html +1 -1
  31. package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
  32. package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
  33. package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
  34. package/coverage/coverage-final.json +16 -16
  35. package/coverage/coverage-summary.json +16 -16
  36. package/coverage/index.html +1 -1
  37. package/es/ActionButton/ActionButton.js +10 -1
  38. package/es/ActionButton/ActionButton.module.css +7 -0
  39. package/es/ActionButton/props/propTypes.js +2 -1
  40. package/es/AlphabeticList/AlphabeticList.module.css +2 -0
  41. package/es/AttachmentViewer/AttachmentViewer.module.css +2 -0
  42. package/es/ChannelIcon/ChannelIcon.module.css +4 -0
  43. package/es/Drawer/Drawer.js +2 -5
  44. package/es/FormAction/FormAction.module.css +2 -0
  45. package/es/IconButton/IconButton.module.css +1 -0
  46. package/es/Link/Link.js +1 -2
  47. package/es/Provider/Config.js +2 -1
  48. package/es/TagWithIcon/TagWithIcon.module.css +19 -5
  49. package/es/avatar/AvatarIcon/AvatarIcon.module.css +6 -0
  50. package/es/avatar/AvatarStatus/AvatarStatus.js +0 -1
  51. package/es/emptystate/CommonEmptyState/CommonEmptyState.module.css +4 -0
  52. package/es/form/fields/ValidationMessage/ValidationMessage.module.css +1 -0
  53. package/es/layout/SubtabLayout/SubtabLayout.module.css +2 -0
  54. package/es/list/Comment/Comment.module.css +1 -0
  55. package/es/list/Dot/Dot.module.css +1 -0
  56. package/es/list/ListLayout/ListLayout.js +1 -1
  57. package/es/list/ListLayout/ListLayout.module.css +12 -0
  58. package/es/list/Subject/Subject.module.css +1 -0
  59. package/es/list/Thread/Thread.module.css +1 -0
  60. package/es/list/status/StatusDropdown/StatusDropdown.js +6 -6
  61. package/es/lookup/Lookup/Lookup.js +1 -1
  62. package/es/setup/header/Search/Search.module.css +1 -0
  63. package/es/setup/table/TableRow/SetupTableRow.module.css +3 -2
  64. package/es/v1/ActionButton/ActionButton.js +7 -2
  65. package/es/v1/Drawer/Drawer.js +2 -5
  66. package/es/v1/Link/Link.js +1 -2
  67. package/es/v1/avatar/AvatarStatus/AvatarStatus.js +0 -1
  68. package/es/v1/list/ListLayout/ListLayout.js +1 -1
  69. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +6 -6
  70. package/es/v1/lookup/Lookup/Lookup.js +1 -1
  71. package/es/v1/notification/DesktopNotification/DesktopNotification.js +79 -55
  72. package/es/v1/notification/DesktopNotification/props/defaultProps.js +3 -1
  73. package/es/v1/notification/DesktopNotification/props/propTypes.js +2 -1
  74. package/es/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +59 -23
  75. package/es/v1/notification/DesktopNotificationHeader/props/defaultProps.js +3 -1
  76. package/es/v1/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  77. package/es/v1/setup/header/Button/Button.js +17 -29
  78. package/es/v1/setup/header/Link/Link.js +23 -35
  79. package/es/v1/setup/header/Search/Search.js +43 -69
  80. package/es/v1/setup/header/Views/Views.js +27 -39
  81. package/es/v1/setup/helptips/Description/Description.js +8 -20
  82. package/es/v1/setup/helptips/Link/Link.js +20 -32
  83. package/es/v1/setup/helptips/ListGroup/ListGroup.js +18 -30
  84. package/es/v1/setup/helptips/Title/Title.js +8 -20
  85. package/es/version2/GlobalNotification/GlobalNotification.module.css +3 -0
  86. package/es/version2/lookup/AlertHeader/css/AlertHeaderNew.module.css +1 -0
  87. package/es/version2/notification/DesktopNotification/DesktopNotification.js +78 -55
  88. package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +10 -4
  89. package/es/version2/notification/DesktopNotification/props/defaultProps.js +3 -1
  90. package/es/version2/notification/DesktopNotification/props/propTypes.js +2 -1
  91. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +59 -23
  92. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +14 -17
  93. package/es/version2/notification/DesktopNotificationHeader/props/defaultProps.js +3 -1
  94. package/es/version2/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  95. package/lib/ActionButton/ActionButton.js +41 -32
  96. package/lib/ActionButton/ActionButton.module.css +7 -0
  97. package/lib/ActionButton/props/propTypes.js +2 -1
  98. package/lib/AlphabeticList/AlphabeticList.module.css +2 -0
  99. package/lib/AttachmentViewer/AttachmentViewer.module.css +2 -0
  100. package/lib/ChannelIcon/ChannelIcon.module.css +4 -0
  101. package/lib/Drawer/Drawer.js +2 -5
  102. package/lib/FormAction/FormAction.module.css +2 -0
  103. package/lib/IconButton/IconButton.module.css +1 -0
  104. package/lib/Link/Link.js +1 -2
  105. package/lib/Provider/Config.js +2 -1
  106. package/lib/TagWithIcon/TagWithIcon.module.css +19 -5
  107. package/lib/avatar/AvatarIcon/AvatarIcon.module.css +6 -0
  108. package/lib/avatar/AvatarStatus/AvatarStatus.js +0 -1
  109. package/lib/emptystate/CommonEmptyState/CommonEmptyState.module.css +4 -0
  110. package/lib/form/fields/ValidationMessage/ValidationMessage.module.css +1 -0
  111. package/lib/layout/SubtabLayout/SubtabLayout.module.css +2 -0
  112. package/lib/list/Comment/Comment.module.css +1 -0
  113. package/lib/list/Dot/Dot.module.css +1 -0
  114. package/lib/list/ListLayout/ListLayout.js +1 -1
  115. package/lib/list/ListLayout/ListLayout.module.css +12 -0
  116. package/lib/list/Subject/Subject.module.css +1 -0
  117. package/lib/list/Thread/Thread.module.css +1 -0
  118. package/lib/list/status/StatusDropdown/StatusDropdown.js +6 -6
  119. package/lib/lookup/Lookup/Lookup.js +1 -1
  120. package/lib/setup/header/Search/Search.module.css +1 -0
  121. package/lib/setup/table/TableRow/SetupTableRow.module.css +3 -2
  122. package/lib/v1/ActionButton/ActionButton.js +7 -2
  123. package/lib/v1/Drawer/Drawer.js +2 -5
  124. package/lib/v1/Link/Link.js +1 -2
  125. package/lib/v1/avatar/AvatarStatus/AvatarStatus.js +0 -1
  126. package/lib/v1/list/ListLayout/ListLayout.js +1 -1
  127. package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +6 -6
  128. package/lib/v1/lookup/Lookup/Lookup.js +1 -1
  129. package/lib/v1/notification/DesktopNotification/DesktopNotification.js +74 -55
  130. package/lib/v1/notification/DesktopNotification/props/defaultProps.js +5 -1
  131. package/lib/v1/notification/DesktopNotification/props/propTypes.js +2 -1
  132. package/lib/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +57 -23
  133. package/lib/v1/notification/DesktopNotificationHeader/props/defaultProps.js +5 -1
  134. package/lib/v1/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  135. package/lib/v1/setup/header/Button/Button.js +17 -63
  136. package/lib/v1/setup/header/Link/Link.js +23 -69
  137. package/lib/v1/setup/header/Search/Search.js +57 -89
  138. package/lib/v1/setup/header/Views/Views.js +27 -73
  139. package/lib/v1/setup/helptips/Description/Description.js +8 -53
  140. package/lib/v1/setup/helptips/Link/Link.js +23 -69
  141. package/lib/v1/setup/helptips/ListGroup/ListGroup.js +26 -72
  142. package/lib/v1/setup/helptips/Title/Title.js +8 -53
  143. package/lib/version2/GlobalNotification/GlobalNotification.module.css +3 -0
  144. package/lib/version2/lookup/AlertHeader/css/AlertHeaderNew.module.css +1 -0
  145. package/lib/version2/notification/DesktopNotification/DesktopNotification.js +74 -55
  146. package/lib/version2/notification/DesktopNotification/DesktopNotification.module.css +10 -4
  147. package/lib/version2/notification/DesktopNotification/props/defaultProps.js +5 -1
  148. package/lib/version2/notification/DesktopNotification/props/propTypes.js +2 -1
  149. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +57 -23
  150. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +14 -17
  151. package/lib/version2/notification/DesktopNotificationHeader/props/defaultProps.js +5 -1
  152. package/lib/version2/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  153. package/package.json +15 -13
  154. package/propValidationArg.json +8 -0
  155. package/result.json +1 -1
@@ -9,6 +9,7 @@
9
9
  margin-left: var(--zd_size40) ;
10
10
  margin-right: var(--zd_size40) ;
11
11
  }
12
+
12
13
  .container:hover {
13
- background-color: var( --zdt_setuptablerow_hover_bg);
14
- }
14
+ background-color: var(--zdt_setuptablerow_hover_bg);
15
+ }
@@ -58,12 +58,17 @@ function ActionButton(props) {
58
58
  innerClassName = props.innerClassName,
59
59
  popupGroup = props.popupGroup,
60
60
  togglePopup = props.togglePopup,
61
- defaultPosition = props.defaultPosition;
61
+ defaultPosition = props.defaultPosition,
62
+ openPopupOnly = props.openPopupOnly;
62
63
 
63
64
  var handleTogglePopup = function handleTogglePopup(e) {
64
65
  togglePopup(e, defaultPosition);
65
66
  };
66
67
 
68
+ var handlePopupOpen = function handlePopupOpen(e) {
69
+ openPopupOnly(e, defaultPosition);
70
+ };
71
+
67
72
  return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
68
73
  alignBox: "row",
69
74
  isCover: false,
@@ -111,7 +116,7 @@ function ActionButton(props) {
111
116
  "data-title": removeChildrenTooltip ? null : subText,
112
117
  className: _ActionButtonModule["default"].subTxt
113
118
  }, subText) : null)), children ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
114
- onClick: onClick ? !onHover && handleTogglePopup : undefined,
119
+ onClick: onClick && !onHover ? handleTogglePopup : handlePopupOpen,
115
120
  onMouseEnter: onClick ? onHover && handleTogglePopup : undefined,
116
121
  onMouseLeave: onClick ? onHover && handleTogglePopup : undefined,
117
122
  className: "".concat(_semanticButtonModule["default"].buttonReset, " ").concat(_ActionButtonModule["default"][arrowBoxSize + '_arrowBox'], " ").concat(_ActionButtonModule["default"][palette + 'Arw'], " ").concat(_ActionButtonModule["default"].arrowWrapper, " ").concat(isPopupOpen ? _ActionButtonModule["default"].arrowActive : ''),
@@ -103,10 +103,7 @@ function Header(props) {
103
103
  shrink: true
104
104
  }, /*#__PURE__*/_react["default"].createElement(_Heading["default"], {
105
105
  title: title,
106
- className: _DrawerModule["default"].title,
107
- a11y: {
108
- tabindex: '0'
109
- }
106
+ className: _DrawerModule["default"].title
110
107
  })) : null, getTitleChildren ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, getTitleChildren()) : null)) : null, children ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, children) : null)), onClose ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_IconButton["default"], {
111
108
  onClick: onClose,
112
109
  dataId: "closeButton",
@@ -181,7 +178,7 @@ function Drawer(props) {
181
178
  _focusScopeProps$need4 = focusScopeProps.needFocusLoop,
182
179
  needFocusLoop = _focusScopeProps$need4 === void 0 ? true : _focusScopeProps$need4,
183
180
  _focusScopeProps$need5 = focusScopeProps.needEnterAction,
184
- needEnterAction = _focusScopeProps$need5 === void 0 ? false : _focusScopeProps$need5;
181
+ needEnterAction = _focusScopeProps$need5 === void 0 ? true : _focusScopeProps$need5;
185
182
 
186
183
  var childrenWithProps = _react["default"].Children.map(children, function (child) {
187
184
  if (child.type === Header || child.type === Footer || child.type === Content) {
@@ -104,8 +104,7 @@ function Link(props) {
104
104
  }, others, {
105
105
  onClick: callBack
106
106
  }, customProps, {
107
- "aria-label": ariaLabel,
108
- tabIndex: "0"
107
+ "aria-label": ariaLabel
109
108
  }), children);
110
109
  }
111
110
 
@@ -46,7 +46,6 @@ function AvatarStatus(props) {
46
46
  return /*#__PURE__*/_react["default"].createElement("div", _extends({
47
47
  className: "".concat(_AvatarStatusModule["default"].container, " ").concat(className, " ")
48
48
  }, AvatarStatusProps, {
49
- tabIndex: "0",
50
49
  "aria-label": "".concat(title, ", ").concat(name, ", ").concat(statusTitle),
51
50
  "data-selector-id": dataSelectorId
52
51
  }), /*#__PURE__*/_react["default"].createElement(_Avatar["default"], _extends({
@@ -50,7 +50,7 @@ function ListLayout(props) {
50
50
  "data-id": dataId,
51
51
  "data-test-id": dataId,
52
52
  "data-title": dataTitle,
53
- tabIndex: "0",
53
+ tabIndex: onClick ? '0' : null,
54
54
  role: role,
55
55
  "data-a11y-inset-focus": true,
56
56
  "aria-label": ariaLabel,
@@ -306,8 +306,8 @@ function StatusDropdown(props) {
306
306
  dataId: dataId,
307
307
  onClick: removeClose,
308
308
  disabled: isDisabled || isReadOnly ? true : false,
309
- "aria-haspopup": true,
310
- "aria-expanded": isPopupOpen && isEditable ? true : false,
309
+ "aria-haspopup": isSearch ? 'listbox' : 'menu',
310
+ "aria-expanded": isPopupReady && isEditable ? true : false,
311
311
  tabIndex: tabIndex,
312
312
  "aria-labelledby": ariaLabelledby,
313
313
  "aria-label": ariaLabel,
@@ -364,10 +364,10 @@ function StatusDropdown(props) {
364
364
  inputRef: searchInputRef,
365
365
  onKeyDown: handleKeyDown,
366
366
  a11y: {
367
- ariaHaspopup: true,
368
- ariaExpanded: true,
367
+ ariaHaspopup: isSearch ? 'listbox' : 'menu',
368
+ ariaExpanded: isPopupReady,
369
369
  role: 'combobox',
370
- ariaActivedescendant: value,
370
+ ariaActivedescendant: isPopupReady ? value : '',
371
371
  ariaOwns: ariaTitleId
372
372
  }
373
373
  })) : null, title && optionsList.length != 0 && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
@@ -389,7 +389,7 @@ function StatusDropdown(props) {
389
389
  onScroll: handleScroll,
390
390
  role: isSearch ? 'listbox' : 'menu',
391
391
  "aria-labelledby": ariaTitleId,
392
- tabindex: "0"
392
+ tabindex: "-1"
393
393
  }, optionsList.length != 0 && isDataLoaded ? /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, optionsList.map(function (item, i) {
394
394
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, {
395
395
  key: i
@@ -69,7 +69,7 @@ function Lookup(props) {
69
69
  _focusScopeProps$need4 = focusScopeProps.needFocusLoop,
70
70
  needFocusLoop = _focusScopeProps$need4 === void 0 ? true : _focusScopeProps$need4,
71
71
  _focusScopeProps$need5 = focusScopeProps.needEnterAction,
72
- needEnterAction = _focusScopeProps$need5 === void 0 ? false : _focusScopeProps$need5;
72
+ needEnterAction = _focusScopeProps$need5 === void 0 ? true : _focusScopeProps$need5;
73
73
  var createRef = (0, _react.useRef)(null);
74
74
  var handleKeyDown = (0, _react.useCallback)(function (e) {
75
75
  onKeyDown && onKeyDown(e);
@@ -24,6 +24,8 @@ var _FormAction = _interopRequireDefault(require("../../../FormAction/FormAction
24
24
 
25
25
  var _DesktopNotificationHeader = _interopRequireDefault(require("../DesktopNotificationHeader/DesktopNotificationHeader"));
26
26
 
27
+ var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
28
+
27
29
  var _DesktopNotificationModule = _interopRequireDefault(require("../../../version2/notification/DesktopNotification/DesktopNotification.module.css"));
28
30
 
29
31
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -84,7 +86,8 @@ function DesktopNotificationUI(props) {
84
86
  customClass = _props$customClass === void 0 ? {} : _props$customClass,
85
87
  _props$i18nKeys = props.i18nKeys,
86
88
  i18nKeys = _props$i18nKeys === void 0 ? {} : _props$i18nKeys,
87
- customProps = props.customProps;
89
+ customProps = props.customProps,
90
+ responsiveId = props.responsiveId;
88
91
  var _i18nKeys$closeTitle = i18nKeys.closeTitle,
89
92
  closeTitle = _i18nKeys$closeTitle === void 0 ? 'Close' : _i18nKeys$closeTitle;
90
93
  var containerClass = customClass.containerClass;
@@ -110,66 +113,82 @@ function DesktopNotificationUI(props) {
110
113
  var Zindex = isAnimate ? getNextIndex() : null;
111
114
  var uiVariantOne = title && (info || secondaryInfo);
112
115
  var uiVariantTwo = title && !(info || secondaryInfo) && !getSectionContainer;
116
+
117
+ function responsiveFunc(_ref2) {
118
+ var mediaQueryOR = _ref2.mediaQueryOR;
119
+ return {
120
+ uptoTablet: mediaQueryOR([{
121
+ maxWidth: 760
122
+ }])
123
+ };
124
+ }
125
+
113
126
  return /*#__PURE__*/_react["default"].createElement("div", {
114
127
  className: _DesktopNotificationModule["default"].parentElement,
115
128
  style: needAutoZindex && isAnimate ? {
116
129
  zIndex: "".concat(Zindex)
117
130
  } : {},
118
131
  "data-selector-id": dataSelectorId
119
- }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, _extends({
120
- className: "".concat(_DesktopNotificationModule["default"].container, " ").concat(isAnimate ? animateClass : animateRemoveClass, " ").concat(_DesktopNotificationModule["default"]["".concat(size)] ? _DesktopNotificationModule["default"]["".concat(size)] : '', " ").concat(isShrinkView ? _DesktopNotificationModule["default"].globalNotify : '', " ").concat(containerClass),
121
- isCover: false,
122
- dataId: dataId,
123
- isInline: uiVariantTwo
124
- }, ExtraProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_DesktopNotificationHeader["default"], {
125
- type: type,
126
- title: title,
127
- variant: titleVariant,
128
- needIcon: needIcon,
129
- onClose: onClose,
130
- closeTitle: closeTitle,
131
- renderAlertIcon: renderAlertIcon,
132
- dataId: "".concat(dataId, "_close"),
133
- needClose: needClose
134
- })), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
135
- alignBox: "column"
136
- }, uiVariantOne && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
137
- flexible: true
138
- }, /*#__PURE__*/_react["default"].createElement("div", {
139
- className: "".concat(_DesktopNotificationModule["default"].section, " ").concat(_DesktopNotificationModule["default"].infoText)
140
- }, subTitle && /*#__PURE__*/_react["default"].createElement("div", {
141
- className: "".concat(_DesktopNotificationModule["default"].subTitle, " ").concat(info || secondaryInfo ? _DesktopNotificationModule["default"].subTitleMargin : '')
142
- }, subTitle), info && /*#__PURE__*/_react["default"].createElement("div", null, info), secondaryInfo && /*#__PURE__*/_react["default"].createElement("div", {
143
- className: "".concat(info ? _DesktopNotificationModule["default"].secondaryInfo : '')
144
- }, secondaryInfo))), getSectionContainer && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
145
- flexible: true
146
- }, getSectionContainer()), submitText || cancelText ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement("div", {
147
- className: _DesktopNotificationModule["default"].footer
148
- }, isMore ? /*#__PURE__*/_react["default"].createElement("div", {
149
- className: "".concat(_DesktopNotificationModule["default"].message)
150
- }, message) : null, /*#__PURE__*/_react["default"].createElement(_FormAction["default"], {
151
- size: "small",
152
- paddingLeftSize: "xmedium"
153
- }, submitText ? /*#__PURE__*/_react["default"].createElement("div", {
154
- onClick: onClickSubmit,
155
- "data-id": "".concat(dataId, "_submitButton"),
156
- "data-test-id": "".concat(dataId, "_submitButton")
157
- }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
158
- align: "vertical",
159
- alignBox: "row"
160
- }, getSubmitContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
161
- flexible: true
162
- }, getSubmitContainer()) : /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
163
- flexible: true
164
- }, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
165
- text: submitText,
166
- palette: submitType ? submitType : buttonPalette
167
- })))) : null, cancelText ? /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
168
- text: cancelText,
169
- palette: "secondary",
170
- dataId: "".concat(dataId, "_cancelButton"),
171
- onClick: onClickCancel
172
- })) : null))) : null)), getBottomContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, getBottomContainer()) : null));
132
+ }, /*#__PURE__*/_react["default"].createElement(_CustomResponsive.ResponsiveReceiver, {
133
+ query: responsiveFunc,
134
+ responsiveId: responsiveId
135
+ }, function (_ref3) {
136
+ var uptoTablet = _ref3.uptoTablet;
137
+ return /*#__PURE__*/_react["default"].createElement(_Layout.Container, _extends({
138
+ className: "".concat(_DesktopNotificationModule["default"].container, " ").concat(isAnimate ? animateClass : animateRemoveClass, "\n ").concat(isShrinkView ? _DesktopNotificationModule["default"].globalNotify : '', " ").concat(containerClass, "\n ").concat(uptoTablet ? _DesktopNotificationModule["default"].tapWidth : _DesktopNotificationModule["default"]["".concat(size)]),
139
+ isCover: false,
140
+ dataId: dataId,
141
+ isInline: uiVariantTwo
142
+ }, ExtraProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_DesktopNotificationHeader["default"], {
143
+ type: type,
144
+ title: title,
145
+ variant: titleVariant,
146
+ needIcon: needIcon,
147
+ onClose: onClose,
148
+ closeTitle: closeTitle,
149
+ renderAlertIcon: renderAlertIcon,
150
+ dataId: "".concat(dataId, "_close"),
151
+ needClose: needClose
152
+ })), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
153
+ alignBox: "column"
154
+ }, uiVariantOne && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
155
+ flexible: true
156
+ }, /*#__PURE__*/_react["default"].createElement("div", {
157
+ className: "".concat(_DesktopNotificationModule["default"].section, " ").concat(_DesktopNotificationModule["default"].infoText)
158
+ }, subTitle && /*#__PURE__*/_react["default"].createElement("div", {
159
+ className: "".concat(_DesktopNotificationModule["default"].subTitle, " ").concat(info || secondaryInfo ? _DesktopNotificationModule["default"].subTitleMargin : '')
160
+ }, subTitle), info && /*#__PURE__*/_react["default"].createElement("div", null, info), secondaryInfo && /*#__PURE__*/_react["default"].createElement("div", {
161
+ className: "".concat(info ? _DesktopNotificationModule["default"].secondaryInfo : '')
162
+ }, secondaryInfo))), getSectionContainer && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
163
+ flexible: true
164
+ }, getSectionContainer()), submitText || cancelText ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement("div", {
165
+ className: _DesktopNotificationModule["default"].footer
166
+ }, isMore ? /*#__PURE__*/_react["default"].createElement("div", {
167
+ className: "".concat(_DesktopNotificationModule["default"].message)
168
+ }, message) : null, /*#__PURE__*/_react["default"].createElement(_FormAction["default"], {
169
+ size: "small",
170
+ paddingLeftSize: "xmedium"
171
+ }, submitText ? /*#__PURE__*/_react["default"].createElement("div", {
172
+ onClick: onClickSubmit,
173
+ "data-id": "".concat(dataId, "_submitButton"),
174
+ "data-test-id": "".concat(dataId, "_submitButton")
175
+ }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
176
+ align: "vertical",
177
+ alignBox: "row"
178
+ }, getSubmitContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
179
+ flexible: true
180
+ }, getSubmitContainer()) : /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
181
+ flexible: true
182
+ }, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
183
+ text: submitText,
184
+ palette: submitType ? submitType : buttonPalette
185
+ })))) : null, cancelText ? /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
186
+ text: cancelText,
187
+ palette: "secondary",
188
+ dataId: "".concat(dataId, "_cancelButton"),
189
+ onClick: onClickCancel
190
+ })) : null))) : null)), getBottomContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, getBottomContainer()) : null);
191
+ }));
173
192
  }
174
193
 
175
194
  DesktopNotificationUI.propTypes = _propTypes.DesktopNotificationUI_propTypes;
@@ -4,6 +4,9 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = void 0;
7
+
8
+ var _Config = require("../../../../Provider/Config");
9
+
7
10
  var _default = {
8
11
  isMore: false,
9
12
  isAnimate: true,
@@ -17,6 +20,7 @@ var _default = {
17
20
  isShrinkView: false,
18
21
  needClose: true,
19
22
  customProps: {},
20
- dataSelectorId: 'desktopNotification'
23
+ dataSelectorId: 'desktopNotification',
24
+ responsiveId: (0, _Config.getDotLibraryConfig)('desktopNotificationResponsiveId')
21
25
  };
22
26
  exports["default"] = _default;
@@ -14,7 +14,8 @@ var propTypes = {
14
14
  onPortalClose: _propTypes["default"].func,
15
15
  autoClose: _propTypes["default"].bool,
16
16
  hideTime: _propTypes["default"].string,
17
- Element: _propTypes["default"].element
17
+ Element: _propTypes["default"].element,
18
+ responsiveId: _propTypes["default"].string
18
19
  };
19
20
  exports.propTypes = propTypes;
20
21
  var DesktopNotificationUI_propTypes = {
@@ -17,6 +17,10 @@ var _AlertClose = _interopRequireDefault(require("../../alert/AlertClose/AlertCl
17
17
 
18
18
  var _AlertIcons = _interopRequireDefault(require("../../alert/alertIcons/AlertIcons"));
19
19
 
20
+ var _CustomResponsive = require("@zohodesk/components/lib/Responsive/CustomResponsive");
21
+
22
+ var _Typography = _interopRequireDefault(require("@zohodesk/components/es/v1/Typography/Typography"));
23
+
20
24
  var _DesktopNotificationHeaderModule = _interopRequireDefault(require("../../../version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css"));
21
25
 
22
26
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -31,35 +35,65 @@ function DesktopNotificationHeader(props) {
31
35
  needIcon = props.needIcon,
32
36
  title = props.title,
33
37
  renderAlertIcon = props.renderAlertIcon,
34
- needClose = props.needClose;
38
+ needClose = props.needClose,
39
+ responsiveId = props.responsiveId;
40
+
41
+ function responsiveFunc(_ref) {
42
+ var mediaQueryOR = _ref.mediaQueryOR;
43
+ return {
44
+ uptoTablet: mediaQueryOR([{
45
+ maxWidth: 760
46
+ }])
47
+ };
48
+ }
49
+
35
50
  return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
36
51
  align: "vertical",
37
52
  alignBox: "row",
38
53
  className: "".concat(_DesktopNotificationHeaderModule["default"].container, " ").concat(_DesktopNotificationHeaderModule["default"][variant], " ").concat(_DesktopNotificationHeaderModule["default"][type]),
39
54
  isCover: false,
40
55
  wrap: "wrap"
41
- }, needIcon ? /*#__PURE__*/_react["default"].createElement("div", {
42
- className: _DesktopNotificationHeaderModule["default"].iconContainer
43
- }, renderAlertIcon ? renderAlertIcon() : /*#__PURE__*/_react["default"].createElement(_AlertIcons["default"], {
44
- type: type
45
- })) : null, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
46
- flexible: true
47
- }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
48
- alignBox: "row",
49
- align: "center"
50
- }, variant === 'primary' ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
51
- className: _DesktopNotificationHeaderModule["default"].title,
52
- shrink: true
53
- }, title) : /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
54
- className: "".concat(_DesktopNotificationHeaderModule["default"].infoText)
55
- }, title))), needClose ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
56
- className: _DesktopNotificationHeaderModule["default"].close
57
- }, /*#__PURE__*/_react["default"].createElement(_AlertClose["default"], {
58
- onClose: onClose,
59
- dataTitle: closeTitle,
60
- dataId: dataId,
61
- type: "light"
62
- })) : null);
56
+ }, /*#__PURE__*/_react["default"].createElement(_CustomResponsive.ResponsiveReceiver, {
57
+ query: responsiveFunc,
58
+ responsiveId: responsiveId
59
+ }, function (_ref2) {
60
+ var uptoTablet = _ref2.uptoTablet;
61
+ return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, needIcon ? /*#__PURE__*/_react["default"].createElement("div", {
62
+ className: _DesktopNotificationHeaderModule["default"].iconContainer
63
+ }, renderAlertIcon ? renderAlertIcon() : /*#__PURE__*/_react["default"].createElement(_AlertIcons["default"], {
64
+ type: type
65
+ })) : null, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
66
+ flexible: true
67
+ }, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
68
+ alignBox: "row",
69
+ align: "center"
70
+ }, variant === 'primary' ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
71
+ shrink: true
72
+ }, /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
73
+ $i18n_dataTitle: title,
74
+ $ui_className: _DesktopNotificationHeaderModule["default"].title,
75
+ $ui_tagName: "h1",
76
+ $ui_size: uptoTablet ? '16' : '18',
77
+ $ui_lineHeight: "20",
78
+ $ui_weight: "bold",
79
+ $flag_reset: true,
80
+ $ui_wordBreak: "breakWord"
81
+ }, title)) : /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
82
+ className: "".concat(_DesktopNotificationHeaderModule["default"].infoText)
83
+ }, /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
84
+ $i18n_dataTitle: title,
85
+ $ui_className: _DesktopNotificationHeaderModule["default"].title,
86
+ $ui_size: "14",
87
+ $ui_wordBreak: "breakWord"
88
+ }, title)))), needClose ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
89
+ className: _DesktopNotificationHeaderModule["default"].close
90
+ }, /*#__PURE__*/_react["default"].createElement(_AlertClose["default"], {
91
+ onClose: onClose,
92
+ dataTitle: closeTitle,
93
+ dataId: dataId,
94
+ type: "light"
95
+ })) : null);
96
+ }));
63
97
  }
64
98
 
65
99
  DesktopNotificationHeader.propTypes = _propTypes["default"];
@@ -4,9 +4,13 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = void 0;
7
+
8
+ var _Config = require("../../../../Provider/Config");
9
+
7
10
  var _default = {
8
11
  needIcon: true,
9
12
  variant: 'primary',
10
- needClose: true
13
+ needClose: true,
14
+ responsiveId: (0, _Config.getDotLibraryConfig)('desktopNotificationResponsiveId')
11
15
  };
12
16
  exports["default"] = _default;
@@ -18,6 +18,7 @@ var _default = {
18
18
  title: _propTypes["default"].string,
19
19
  renderAlertIcon: _propTypes["default"].func,
20
20
  type: _propTypes["default"].oneOf(['success', 'error', 'danger', 'warning', 'info', 'notification', 'alarm']),
21
- variant: _propTypes["default"].oneOf(['primary', 'secondary'])
21
+ variant: _propTypes["default"].oneOf(['primary', 'secondary']),
22
+ responsiveId: _propTypes["default"].string
22
23
  };
23
24
  exports["default"] = _default;
@@ -1,11 +1,9 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
5
3
  Object.defineProperty(exports, "__esModule", {
6
4
  value: true
7
5
  });
8
- exports["default"] = void 0;
6
+ exports["default"] = Button;
9
7
 
10
8
  var _react = _interopRequireDefault(require("react"));
11
9
 
@@ -19,65 +17,21 @@ var _HeaderButtonModule = _interopRequireDefault(require("../../../../setup/head
19
17
 
20
18
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
21
19
 
22
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
23
-
24
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
25
-
26
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
27
-
28
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
29
-
30
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
31
-
32
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
33
-
34
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
35
-
36
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
20
+ function Button(props) {
21
+ var palette = props.palette,
22
+ text = props.text,
23
+ onClick = props.onClick,
24
+ id = props.id;
25
+ return /*#__PURE__*/_react["default"].createElement("div", {
26
+ className: _HeaderButtonModule["default"].container
27
+ }, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
28
+ id: id,
29
+ onClick: onClick,
30
+ palette: palette,
31
+ size: "medium",
32
+ text: text
33
+ }));
34
+ }
37
35
 
38
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
39
-
40
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
41
-
42
- var Button = /*#__PURE__*/function (_React$Component) {
43
- _inherits(Button, _React$Component);
44
-
45
- var _super = _createSuper(Button);
46
-
47
- function Button(props) {
48
- _classCallCheck(this, Button);
49
-
50
- return _super.call(this, props);
51
- }
52
-
53
- _createClass(Button, [{
54
- key: "render",
55
- value: function render() {
56
- var _this$props = this.props,
57
- palette = _this$props.palette,
58
- text = _this$props.text,
59
- onClick = _this$props.onClick,
60
- id = _this$props.id;
61
- return /*#__PURE__*/_react["default"].createElement("div", {
62
- className: _HeaderButtonModule["default"].container
63
- }, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
64
- id: id,
65
- onClick: onClick,
66
- palette: palette,
67
- size: "medium",
68
- text: text
69
- }));
70
- }
71
- }]);
72
-
73
- return Button;
74
- }(_react["default"].Component);
75
-
76
- exports["default"] = Button;
77
36
  Button.defaultProps = _defaultProps.defaultProps;
78
- Button.propTypes = _propTypes.propTypes; // if (__DOCS__) {
79
- // Button.docs = {
80
- // componentGroup: 'Header',
81
- // folderName: 'Setup'
82
- // };
83
- // }
37
+ Button.propTypes = _propTypes.propTypes;