@zohodesk/components 1.2.4 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/README.md +4 -0
  2. package/coverage/Button/Button.js.html +1 -1
  3. package/coverage/Button/css/Button.module.css.html +1 -1
  4. package/coverage/Button/css/cssJSLogic.js.html +1 -1
  5. package/coverage/Button/css/index.html +1 -1
  6. package/coverage/Button/index.html +1 -1
  7. package/coverage/Button/props/defaultProps.js.html +1 -1
  8. package/coverage/Button/props/index.html +1 -1
  9. package/coverage/Button/props/propTypes.js.html +1 -1
  10. package/coverage/Buttongroup/Buttongroup.js.html +1 -1
  11. package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
  12. package/coverage/Buttongroup/index.html +1 -1
  13. package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
  14. package/coverage/Buttongroup/props/index.html +1 -1
  15. package/coverage/Buttongroup/props/propTypes.js.html +1 -1
  16. package/coverage/index.html +1 -1
  17. package/coverage/utils/dummyFunction.js.html +1 -1
  18. package/coverage/utils/index.html +1 -1
  19. package/es/v1/Accordion/Accordion.js +65 -0
  20. package/es/v1/Accordion/AccordionItem.js +57 -0
  21. package/es/v1/Accordion/index.js +2 -0
  22. package/es/v1/Animation/Animation.js +127 -0
  23. package/es/v1/AppContainer/AppContainer.js +134 -0
  24. package/es/v1/Avatar/Avatar.js +189 -0
  25. package/es/v1/AvatarTeam/AvatarTeam.js +70 -0
  26. package/es/v1/Button/Button.js +68 -0
  27. package/es/v1/Buttongroup/Buttongroup.js +31 -0
  28. package/es/v1/Card/Card.js +271 -0
  29. package/es/v1/CheckBox/CheckBox.js +155 -0
  30. package/es/v1/DateTime/CalendarView.js +218 -0
  31. package/es/v1/DateTime/DateTime.js +783 -0
  32. package/es/v1/DateTime/DateTimePopupFooter.js +47 -0
  33. package/es/v1/DateTime/DateTimePopupHeader.js +105 -0
  34. package/es/v1/DateTime/DateWidget.js +1098 -0
  35. package/es/v1/DateTime/DaysRow.js +31 -0
  36. package/es/v1/DateTime/Time.js +166 -0
  37. package/es/v1/DateTime/YearView.js +264 -0
  38. package/es/v1/DateTime/index.js +1 -0
  39. package/es/v1/DropBox/DropBox.js +91 -0
  40. package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +132 -0
  41. package/es/v1/DropDown/DropDown.js +73 -0
  42. package/es/v1/DropDown/DropDownHeading.js +44 -0
  43. package/es/v1/DropDown/DropDownItem.js +76 -0
  44. package/es/v1/DropDown/DropDownSearch.js +63 -0
  45. package/es/v1/DropDown/DropDownSeparator.js +15 -0
  46. package/es/v1/Heading/Heading.js +32 -0
  47. package/es/v1/Label/Label.js +40 -0
  48. package/es/v1/Layout/Box.js +115 -0
  49. package/es/v1/Layout/Container.js +132 -0
  50. package/es/v1/Layout/index.js +2 -0
  51. package/es/v1/ListItem/ListContainer.js +102 -0
  52. package/es/v1/ListItem/ListItem.js +124 -0
  53. package/es/v1/ListItem/ListItemWithAvatar.js +145 -0
  54. package/es/v1/ListItem/ListItemWithCheckBox.js +104 -0
  55. package/es/v1/ListItem/ListItemWithIcon.js +127 -0
  56. package/es/v1/ListItem/ListItemWithRadio.js +105 -0
  57. package/es/v1/ListItem/index.js +6 -0
  58. package/es/v1/Modal/Modal.js +154 -0
  59. package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1079 -0
  60. package/es/v1/MultiSelect/AdvancedMultiSelect.js +568 -0
  61. package/es/v1/MultiSelect/EmptyState.js +64 -0
  62. package/es/v1/MultiSelect/MobileHeader/MobileHeader.js +50 -0
  63. package/es/v1/MultiSelect/MultiSelect.js +1120 -0
  64. package/es/v1/MultiSelect/MultiSelectHeader.js +32 -0
  65. package/es/v1/MultiSelect/MultiSelectWithAvatar.js +216 -0
  66. package/es/v1/MultiSelect/SelectedOptions.js +82 -0
  67. package/es/v1/MultiSelect/Suggestions.js +142 -0
  68. package/es/v1/MultiSelect/index.js +4 -0
  69. package/es/v1/PopOver/PopOver.js +211 -0
  70. package/es/v1/Popup/Popup.js +645 -0
  71. package/es/v1/Radio/Radio.js +115 -0
  72. package/es/v1/Responsive/CustomResponsive.js +195 -0
  73. package/es/v1/Responsive/RefWrapper.js +39 -0
  74. package/es/v1/Responsive/ResizeComponent.js +197 -0
  75. package/es/v1/Responsive/ResizeObserver.js +140 -0
  76. package/es/v1/Responsive/Responsive.js +194 -0
  77. package/es/v1/Responsive/index.js +9 -0
  78. package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +58 -0
  79. package/es/v1/Ribbon/Ribbon.js +33 -0
  80. package/es/v1/RippleEffect/RippleEffect.js +24 -0
  81. package/es/v1/Select/GroupSelect.js +803 -0
  82. package/es/v1/Select/Select.js +969 -0
  83. package/es/v1/Select/SelectWithAvatar.js +344 -0
  84. package/es/v1/Select/SelectWithIcon.js +535 -0
  85. package/es/v1/Select/index.js +4 -0
  86. package/es/v1/Stencils/Stencils.js +26 -0
  87. package/es/v1/Switch/Switch.js +94 -0
  88. package/es/v1/Tab/Tab.js +108 -0
  89. package/es/v1/Tab/TabContent.js +30 -0
  90. package/es/v1/Tab/TabContentWrapper.js +29 -0
  91. package/es/v1/Tab/TabWrapper.js +57 -0
  92. package/es/v1/Tab/Tabs.js +612 -0
  93. package/es/v1/Tab/index.js +5 -0
  94. package/es/v1/Tag/Tag.js +134 -0
  95. package/es/v1/TextBox/TextBox.js +154 -0
  96. package/es/v1/TextBoxIcon/TextBoxIcon.js +158 -0
  97. package/es/v1/Textarea/Textarea.js +102 -0
  98. package/es/v1/Tooltip/Tooltip.js +518 -0
  99. package/es/v1/Typography/Typography.js +38 -0
  100. package/es/v1/Typography/css/Typography.module.css +376 -0
  101. package/es/v1/Typography/css/cssJSLogic.js +46 -0
  102. package/es/v1/Typography/css/letterSpacingMap.js +12 -0
  103. package/es/v1/Typography/props/defaultProps.js +8 -0
  104. package/es/v1/Typography/props/propTypes.js +24 -0
  105. package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +69 -0
  106. package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +100 -0
  107. package/es/v1/semantic/Button/Button.js +53 -0
  108. package/es/v1/semantic/index.js +1 -0
  109. package/lib/v1/Accordion/Accordion.js +96 -0
  110. package/lib/v1/Accordion/AccordionItem.js +68 -0
  111. package/lib/v1/Accordion/index.js +23 -0
  112. package/lib/v1/Animation/Animation.js +143 -0
  113. package/lib/v1/AppContainer/AppContainer.js +204 -0
  114. package/lib/v1/Avatar/Avatar.js +246 -0
  115. package/lib/v1/AvatarTeam/AvatarTeam.js +81 -0
  116. package/lib/v1/Button/Button.js +82 -0
  117. package/lib/v1/Buttongroup/Buttongroup.js +44 -0
  118. package/lib/v1/Card/Card.js +365 -0
  119. package/lib/v1/CheckBox/CheckBox.js +166 -0
  120. package/lib/v1/DateTime/CalendarView.js +285 -0
  121. package/lib/v1/DateTime/DateTime.js +872 -0
  122. package/lib/v1/DateTime/DateTimePopupFooter.js +96 -0
  123. package/lib/v1/DateTime/DateTimePopupHeader.js +166 -0
  124. package/lib/v1/DateTime/DateWidget.js +1125 -0
  125. package/lib/v1/DateTime/DaysRow.js +80 -0
  126. package/lib/v1/DateTime/Time.js +254 -0
  127. package/lib/v1/DateTime/YearView.js +325 -0
  128. package/lib/v1/DateTime/index.js +15 -0
  129. package/lib/v1/DropBox/DropBox.js +119 -0
  130. package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +145 -0
  131. package/lib/v1/DropDown/DropDown.js +170 -0
  132. package/lib/v1/DropDown/DropDownHeading.js +93 -0
  133. package/lib/v1/DropDown/DropDownItem.js +127 -0
  134. package/lib/v1/DropDown/DropDownSearch.js +113 -0
  135. package/lib/v1/DropDown/DropDownSeparator.js +64 -0
  136. package/lib/v1/Heading/Heading.js +49 -0
  137. package/lib/v1/Label/Label.js +51 -0
  138. package/lib/v1/Layout/Box.js +128 -0
  139. package/lib/v1/Layout/Container.js +145 -0
  140. package/lib/v1/Layout/index.js +23 -0
  141. package/lib/v1/ListItem/ListContainer.js +120 -0
  142. package/lib/v1/ListItem/ListItem.js +138 -0
  143. package/lib/v1/ListItem/ListItemWithAvatar.js +162 -0
  144. package/lib/v1/ListItem/ListItemWithCheckBox.js +125 -0
  145. package/lib/v1/ListItem/ListItemWithIcon.js +143 -0
  146. package/lib/v1/ListItem/ListItemWithRadio.js +126 -0
  147. package/lib/v1/ListItem/index.js +55 -0
  148. package/lib/v1/Modal/Modal.js +212 -0
  149. package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1167 -0
  150. package/lib/v1/MultiSelect/AdvancedMultiSelect.js +634 -0
  151. package/lib/v1/MultiSelect/EmptyState.js +112 -0
  152. package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +62 -0
  153. package/lib/v1/MultiSelect/MultiSelect.js +1201 -0
  154. package/lib/v1/MultiSelect/MultiSelectHeader.js +78 -0
  155. package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +270 -0
  156. package/lib/v1/MultiSelect/SelectedOptions.js +126 -0
  157. package/lib/v1/MultiSelect/Suggestions.js +195 -0
  158. package/lib/v1/MultiSelect/index.js +39 -0
  159. package/lib/v1/PopOver/PopOver.js +293 -0
  160. package/lib/v1/Popup/Popup.js +715 -0
  161. package/lib/v1/Radio/Radio.js +126 -0
  162. package/lib/v1/Responsive/CustomResponsive.js +242 -0
  163. package/lib/v1/Responsive/RefWrapper.js +57 -0
  164. package/lib/v1/Responsive/ResizeComponent.js +268 -0
  165. package/lib/v1/Responsive/ResizeObserver.js +168 -0
  166. package/lib/v1/Responsive/Responsive.js +274 -0
  167. package/lib/v1/Responsive/index.js +55 -0
  168. package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +79 -0
  169. package/lib/v1/Ribbon/Ribbon.js +44 -0
  170. package/lib/v1/RippleEffect/RippleEffect.js +39 -0
  171. package/lib/v1/Select/GroupSelect.js +877 -0
  172. package/lib/v1/Select/Select.js +1013 -0
  173. package/lib/v1/Select/SelectWithAvatar.js +394 -0
  174. package/lib/v1/Select/SelectWithIcon.js +597 -0
  175. package/lib/v1/Select/index.js +39 -0
  176. package/lib/v1/Stencils/Stencils.js +43 -0
  177. package/lib/v1/Switch/Switch.js +108 -0
  178. package/lib/v1/Tab/Tab.js +132 -0
  179. package/lib/v1/Tab/TabContent.js +42 -0
  180. package/lib/v1/Tab/TabContentWrapper.js +42 -0
  181. package/lib/v1/Tab/TabWrapper.js +89 -0
  182. package/lib/v1/Tab/Tabs.js +680 -0
  183. package/lib/v1/Tab/index.js +47 -0
  184. package/lib/v1/Tag/Tag.js +154 -0
  185. package/lib/v1/TextBox/TextBox.js +168 -0
  186. package/lib/v1/TextBoxIcon/TextBoxIcon.js +196 -0
  187. package/lib/v1/Textarea/Textarea.js +118 -0
  188. package/lib/v1/Tooltip/Tooltip.js +586 -0
  189. package/lib/v1/Typography/Typography.js +56 -0
  190. package/lib/v1/Typography/css/Typography.module.css +376 -0
  191. package/lib/v1/Typography/css/cssJSLogic.js +41 -0
  192. package/lib/v1/Typography/css/letterSpacingMap.js +20 -0
  193. package/lib/v1/Typography/props/defaultProps.js +15 -0
  194. package/lib/v1/Typography/props/propTypes.js +35 -0
  195. package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +90 -0
  196. package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +126 -0
  197. package/lib/v1/semantic/Button/Button.js +63 -0
  198. package/lib/v1/semantic/index.js +15 -0
  199. package/package.json +1 -1
  200. package/result.json +1 -1
@@ -0,0 +1,126 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _defaultProps = require("../../Radio/props/defaultProps");
11
+
12
+ var _propTypes = require("../../Radio/props/propTypes");
13
+
14
+ var _Label = _interopRequireDefault(require("../Label/Label"));
15
+
16
+ var _Layout = require("../Layout");
17
+
18
+ var _RadioModule = _interopRequireDefault(require("../../Radio/Radio.module.css"));
19
+
20
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
21
+
22
+ var Radio = function Radio(props) {
23
+ var id = props.id,
24
+ name = props.name,
25
+ value = props.value,
26
+ checked = props.checked,
27
+ disabled = props.disabled,
28
+ isReadOnly = props.isReadOnly,
29
+ palette = props.palette,
30
+ disabledTitle = props.disabledTitle,
31
+ title = props.title,
32
+ text = props.text,
33
+ labelPalette = props.labelPalette,
34
+ size = props.size,
35
+ labelSize = props.labelSize,
36
+ variant = props.variant,
37
+ active = props.active,
38
+ isFilled = props.isFilled,
39
+ customClass = props.customClass,
40
+ a11y = props.a11y;
41
+ var _customClass$customRa = customClass.customRadioWrap,
42
+ customRadioWrap = _customClass$customRa === void 0 ? '' : _customClass$customRa,
43
+ _customClass$customRa2 = customClass.customRadio,
44
+ customRadio = _customClass$customRa2 === void 0 ? '' : _customClass$customRa2,
45
+ _customClass$customLa = customClass.customLabel,
46
+ customLabel = _customClass$customLa === void 0 ? '' : _customClass$customLa;
47
+ var accessMode = isReadOnly ? _RadioModule["default"].readonly : disabled ? _RadioModule["default"].disabled : _RadioModule["default"].pointer;
48
+ var toolTip = disabled ? disabledTitle : title ? title : null;
49
+ var ariaHidden = a11y.ariaHidden,
50
+ _a11y$role = a11y.role,
51
+ role = _a11y$role === void 0 ? 'radio' : _a11y$role,
52
+ _a11y$ariaChecked = a11y.ariaChecked,
53
+ ariaChecked = _a11y$ariaChecked === void 0 ? checked : _a11y$ariaChecked,
54
+ ariaLabel = a11y.ariaLabel,
55
+ ariaLabelledby = a11y.ariaLabelledby,
56
+ _a11y$ariaReadonly = a11y.ariaReadonly,
57
+ ariaReadonly = _a11y$ariaReadonly === void 0 ? isReadOnly || disabled ? true : false : _a11y$ariaReadonly;
58
+
59
+ function onChange(e) {
60
+ var onChange = props.onChange;
61
+ onChange && onChange(value, e);
62
+ }
63
+
64
+ return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
65
+ dataId: value ? value.toLowerCase() : 'RadioComp',
66
+ isCover: false,
67
+ isInline: text ? false : true,
68
+ alignBox: "row",
69
+ align: "both",
70
+ className: "".concat(_RadioModule["default"].container, " ").concat(active && !disabled ? _RadioModule["default"].active : '', " ").concat(accessMode, " ").concat(isReadOnly || disabled ? '' : _RadioModule["default"].hoverEfffect, " ").concat(checked ? _RadioModule["default"].checked : '', " ").concat(customRadioWrap),
71
+ "data-title": toolTip,
72
+ onClick: !isReadOnly && !disabled ? onChange : '',
73
+ "aria-checked": ariaChecked,
74
+ tabindex: isReadOnly || disabled || ariaHidden ? '-1' : '0',
75
+ role: role,
76
+ "aria-Hidden": ariaHidden,
77
+ "aria-label": ariaLabel,
78
+ "aria-labelledby": ariaLabelledby,
79
+ "aria-readonly": ariaReadonly
80
+ }, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
81
+ className: "".concat(_RadioModule["default"].radio, " ").concat(checked ? "".concat(_RadioModule["default"]["rdBox".concat(palette)]) : '', " \n ").concat(isReadOnly || disabled ? '' : "".concat(_RadioModule["default"]["hover".concat(palette)]), " ").concat(_RadioModule["default"][size], " ").concat(isFilled ? _RadioModule["default"].filled : '', " ").concat(_RadioModule["default"]["centerPath".concat(palette)], " ").concat(customRadio)
82
+ }, /*#__PURE__*/_react["default"].createElement("input", {
83
+ type: "hidden",
84
+ id: id,
85
+ name: name,
86
+ value: value
87
+ }), /*#__PURE__*/_react["default"].createElement("label", {
88
+ className: "".concat(_RadioModule["default"].radioLabel, " ").concat(accessMode)
89
+ }, /*#__PURE__*/_react["default"].createElement("svg", {
90
+ xmlns: "http://www.w3.org/2000/svg",
91
+ viewBox: "0 0 40 40"
92
+ }, /*#__PURE__*/_react["default"].createElement("circle", {
93
+ cx: "20",
94
+ cy: "20",
95
+ r: "19",
96
+ className: "".concat(_RadioModule["default"].rdBox)
97
+ }), checked ? /*#__PURE__*/_react["default"].createElement("circle", {
98
+ cx: "20",
99
+ cy: "20",
100
+ r: "11.03",
101
+ className: "".concat(_RadioModule["default"].centerPath)
102
+ }) : null))), text && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
103
+ flexible: true,
104
+ className: _RadioModule["default"].text
105
+ }, /*#__PURE__*/_react["default"].createElement(_Label["default"], {
106
+ text: text,
107
+ palette: disabled ? 'disable' : labelPalette,
108
+ size: labelSize,
109
+ type: "title",
110
+ clipped: true,
111
+ dataId: "".concat(text, "_label"),
112
+ variant: variant,
113
+ title: toolTip ? toolTip : text,
114
+ customClass: "".concat(checked && active && !disabled ? "".concat(_RadioModule["default"]["".concat(palette, "checkedActive")]) : '', " \n ").concat(_RadioModule["default"]["".concat(palette, "Label")], " ").concat(accessMode, " ").concat(customLabel)
115
+ })));
116
+ };
117
+
118
+ var _default = Radio;
119
+ exports["default"] = _default;
120
+ Radio.defaultProps = _defaultProps.defaultProps;
121
+ Radio.propTypes = _propTypes.propTypes; // if (__DOCS__) {
122
+ // Radio.docs = {
123
+ // componentGroup: 'Form Elements',
124
+ // folderName: 'Style Guide'
125
+ // };
126
+ // }
@@ -0,0 +1,242 @@
1
+ "use strict";
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
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.ResponsiveReceiver = ResponsiveReceiver;
9
+ exports.ResponsiveSender = ResponsiveSender;
10
+ exports.useResponsiveReceiver = useResponsiveReceiver;
11
+
12
+ var _react = _interopRequireWildcard(require("react"));
13
+
14
+ var _defaultProps = require("../../Responsive/props/defaultProps");
15
+
16
+ var _propTypes = require("../../Responsive/props/propTypes");
17
+
18
+ var _ResizeObserver = _interopRequireDefault(require("./ResizeObserver"));
19
+
20
+ var _RefWrapper = _interopRequireDefault(require("./RefWrapper"));
21
+
22
+ var _shallowCompare = _interopRequireDefault(require("../../Responsive/utils/shallowCompare"));
23
+
24
+ var _sizeObservers = require("../../Responsive/sizeObservers");
25
+
26
+ var _ContextOptimizer = require("../../utils/ContextOptimizer");
27
+
28
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
29
+
30
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
31
+
32
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
33
+
34
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
35
+
36
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
37
+
38
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
39
+
40
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
41
+
42
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
43
+
44
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
45
+
46
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
47
+
48
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
49
+
50
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
51
+
52
+ // const commonBreakPoints = [ 480, 640, 768, 1024, 1440 ];
53
+ // const otherBreakPoints = [320, 360, 375, 720, 1280, 1600, 1920];
54
+ // defaultResponsiveId means if ResponsiveSender do not recive id This will be id
55
+ var defaultResponsiveId = 'parent_sender'; // validSizeResponsiveId means in some parent's height and with is caluclated ( readed )
56
+
57
+ var validSizeResponsiveId = 'valid_sender';
58
+
59
+ var ResponsiveContext = /*#__PURE__*/_react["default"].createContext(_defineProperty({}, validSizeResponsiveId, _sizeObservers.windowResizeObserver));
60
+
61
+ function ResponsiveSender(props) {
62
+ // variables
63
+ var children = props.children,
64
+ domRefKey = props.domRefKey,
65
+ responsiveId = props.responsiveId;
66
+
67
+ function init() {
68
+ var size = {
69
+ height: 0,
70
+ width: 0
71
+ };
72
+
73
+ function getSize() {
74
+ return size;
75
+ }
76
+
77
+ var childContext = {
78
+ resize: new _sizeObservers.Subscribale(),
79
+ getSize: getSize,
80
+ // TODO: rename isParentSize ==> isSizeReaded (or) isMySize (or) isOriginalSize
81
+ isParentSize: false
82
+ };
83
+
84
+ function onResize(newSize) {
85
+ childContext.isParentSize = true;
86
+ size = newSize;
87
+ setTimeout(function () {
88
+ childContext.resize.dispatch(newSize);
89
+ });
90
+ }
91
+
92
+ var observer = new _ResizeObserver["default"](onResize);
93
+
94
+ function containerRef(node) {
95
+ observer.replaceObservationElement(node);
96
+ }
97
+
98
+ return {
99
+ containerRef: containerRef,
100
+ childContext: childContext
101
+ };
102
+ }
103
+
104
+ var _useMemo = (0, _react.useMemo)(init, []),
105
+ containerRef = _useMemo.containerRef,
106
+ childContext = _useMemo.childContext;
107
+
108
+ function contextSelector(context) {
109
+ var totalContext = _objectSpread({}, context);
110
+
111
+ totalContext[responsiveId] = childContext; // NOTE: this for fallback of if responsive receiver id wrong or not avelable Responcive id
112
+
113
+ totalContext[defaultResponsiveId] = childContext;
114
+
115
+ if (childContext.isParentSize) {
116
+ totalContext[validSizeResponsiveId] = childContext;
117
+ }
118
+
119
+ return totalContext;
120
+ }
121
+
122
+ return /*#__PURE__*/_react["default"].createElement(_ContextOptimizer.ContextOptimizer, {
123
+ Context: ResponsiveContext,
124
+ calculation: contextSelector
125
+ }, function (totalContext) {
126
+ return /*#__PURE__*/_react["default"].createElement(ResponsiveContext.Provider, {
127
+ value: totalContext
128
+ }, /*#__PURE__*/_react["default"].createElement(_RefWrapper["default"], {
129
+ domRefKey: domRefKey,
130
+ ref: containerRef
131
+ }, children));
132
+ });
133
+ }
134
+
135
+ ResponsiveSender.defaultProps = _objectSpread(_objectSpread({}, _defaultProps.CustomResponsiveSender_defaultProps), {}, {
136
+ responsiveId: defaultResponsiveId
137
+ });
138
+ ResponsiveSender.contextType = ResponsiveContext;
139
+ ResponsiveSender.propTypes = _propTypes.CustomResponsiveSender_propTypes;
140
+
141
+ function useResponsiveReceiver() {
142
+ var responsiveId = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultResponsiveId;
143
+ var query = arguments.length > 1 ? arguments[1] : undefined;
144
+
145
+ var _useState = (0, _react.useState)(),
146
+ _useState2 = _slicedToArray(_useState, 2),
147
+ forceUpdate = _useState2[1];
148
+
149
+ var totalContextData = (0, _react.useContext)(ResponsiveContext);
150
+ var validSizeContextData = totalContextData[validSizeResponsiveId];
151
+ var contextData = totalContextData[responsiveId] || totalContextData[defaultResponsiveId] || validSizeContextData; // NOTE: this for fallback of if responsive receiver id wrong
152
+
153
+ var resizeHandlerRef = (0, _react.useRef)();
154
+ var data = (0, _react.useRef)();
155
+
156
+ function updateLatestData() {
157
+ var size = contextData.isParentSize ? contextData.getSize() : validSizeContextData.getSize();
158
+ var prevData = data.current;
159
+ data.current = query({
160
+ isTouchDevice: _sizeObservers.isTouchDevice,
161
+ isParentSize: contextData.isParentSize,
162
+ currentScreenSize: size,
163
+ mediaQueryOR: function mediaQueryOR(breakPointArray) {
164
+ return breakPointArray.some(function (breakPoint) {
165
+ var _isBreackPointMatched = (0, _sizeObservers.isBreackPointMatched)(breakPoint, size),
166
+ isHeight = _isBreackPointMatched.isHeight,
167
+ isWidth = _isBreackPointMatched.isWidth;
168
+
169
+ return isHeight || isWidth;
170
+ });
171
+ },
172
+ mediaQueryAND: function mediaQueryAND(breakPointArray) {
173
+ return breakPointArray.every(function (breakPoint) {
174
+ var _isBreackPointMatched2 = (0, _sizeObservers.isBreackPointMatched)(breakPoint, size),
175
+ isHeight = _isBreackPointMatched2.isHeight,
176
+ isWidth = _isBreackPointMatched2.isWidth;
177
+
178
+ return (isHeight === undefined ? true : isHeight) && (isWidth === undefined ? true : isWidth);
179
+ });
180
+ }
181
+ });
182
+ var isSameValues = (0, _shallowCompare["default"])(data.current, prevData);
183
+
184
+ if (isSameValues) {
185
+ data.current = prevData;
186
+ }
187
+
188
+ return isSameValues;
189
+ }
190
+
191
+ resizeHandlerRef.current = updateLatestData;
192
+ (0, _react.useEffect)(function () {
193
+ function handleResize(size) {
194
+ var isSameValues = resizeHandlerRef.current(size);
195
+ !isSameValues && forceUpdate({});
196
+ }
197
+
198
+ contextData.resize.subscribe(handleResize);
199
+ return function () {
200
+ return contextData.resize.unsubscribe(handleResize);
201
+ };
202
+ }, [contextData]); // const prevContextDataRef = useRef();
203
+ // function handleResize(size) {
204
+ // const prevData = data.current;
205
+ // resizeHandlerRef.current(size);
206
+ // const isSammeValues = shallowCompare(data.current, prevData);
207
+ // !isSammeValues && forceUpdate({});
208
+ // }
209
+ // if(prevContextDataRef.current !== contextData) {
210
+ // prevContextDataRef.current = contextData;
211
+ // contextData.resize.unsubscribe(handleResize);
212
+ // windowResizeObserver.unobserve(handleResize);
213
+ // if (contextData) {
214
+ // contextData.resize.subscribe(handleResize);
215
+ // } else {
216
+ // windowResizeObserver.observe(handleResize);
217
+ // }
218
+ // }
219
+ // NOTE: this call for we must give updated value
220
+
221
+ updateLatestData();
222
+ return data.current;
223
+ }
224
+
225
+ function ResponsiveReceiver(_ref) {
226
+ var children = _ref.children,
227
+ responsiveId = _ref.responsiveId,
228
+ query = _ref.query,
229
+ eleRef = _ref.eleRef,
230
+ domRefKey = _ref.domRefKey;
231
+ var data = useResponsiveReceiver(responsiveId, query);
232
+ var child = children(data);
233
+ return eleRef ? /*#__PURE__*/_react["default"].createElement(_RefWrapper["default"], {
234
+ domRefKey: domRefKey,
235
+ ref: eleRef
236
+ }, child) : child;
237
+ }
238
+
239
+ ResponsiveReceiver.defaultProps = _objectSpread(_objectSpread({}, _defaultProps.CustomResponsiveReceiver_defaultProps), {}, {
240
+ responsiveId: defaultResponsiveId
241
+ });
242
+ ResponsiveReceiver.propTypes = _propTypes.CustomResponsiveReceiver_propTypes;
@@ -0,0 +1,57 @@
1
+ "use strict";
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
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+
10
+ var _react = _interopRequireWildcard(require("react"));
11
+
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
15
+
16
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
+
18
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
19
+
20
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
+
22
+ function setRef(refFunc, value) {
23
+ if (typeof refFunc === 'function') {
24
+ refFunc(value);
25
+ } else if (refFunc instanceof Object) {
26
+ refFunc.current = value;
27
+ }
28
+ }
29
+
30
+ var DOMRefWrapper = /*#__PURE__*/(0, _react.forwardRef)(function (props, refFunc) {
31
+ var ele = _react.Children.only(props.children);
32
+
33
+ var _props$domRefKey = props.domRefKey,
34
+ domRefKey = _props$domRefKey === void 0 ? 'eleRef' : _props$domRefKey; // NOTE: need to check for forward Ref function, Because in Froward Ref case refKey is "ref"
35
+
36
+ var refKey = typeof ele.type !== 'string' ? domRefKey : 'ref'; // const setAttribute = useCallback(node => {
37
+
38
+ var eleRealRefFunc = ele.props[refKey];
39
+ var setAttribute = (0, _react.useCallback)(function (ref) {
40
+ setRef(refFunc, ref);
41
+ setRef(eleRealRefFunc, ref);
42
+ }, [refFunc, eleRealRefFunc]); // let refKey = typeof ele.type === 'string' ? 'ref' : 'eleRef';
43
+
44
+ var childProps = _defineProperty({}, refKey, setAttribute);
45
+
46
+ return /*#__PURE__*/(0, _react.cloneElement)(ele, childProps);
47
+ });
48
+ DOMRefWrapper.defaultProps = {
49
+ domRefKey: 'eleRef'
50
+ };
51
+ DOMRefWrapper.propTypes = {
52
+ domRefKey: _propTypes["default"].any,
53
+ children: _propTypes["default"].any
54
+ };
55
+ DOMRefWrapper.displayName = 'DOMRefWrapper';
56
+ var _default = DOMRefWrapper;
57
+ exports["default"] = _default;