@zohodesk/components 1.2.4 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/coverage/Button/Button.js.html +1 -1
- package/coverage/Button/css/Button.module.css.html +1 -1
- package/coverage/Button/css/cssJSLogic.js.html +1 -1
- package/coverage/Button/css/index.html +1 -1
- package/coverage/Button/index.html +1 -1
- package/coverage/Button/props/defaultProps.js.html +1 -1
- package/coverage/Button/props/index.html +1 -1
- package/coverage/Button/props/propTypes.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
- package/coverage/Buttongroup/index.html +1 -1
- package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
- package/coverage/Buttongroup/props/index.html +1 -1
- package/coverage/Buttongroup/props/propTypes.js.html +1 -1
- package/coverage/index.html +1 -1
- package/coverage/utils/dummyFunction.js.html +1 -1
- package/coverage/utils/index.html +1 -1
- package/es/AppContainer/AppContainer.js +3 -0
- package/es/v1/Accordion/Accordion.js +65 -0
- package/es/v1/Accordion/AccordionItem.js +57 -0
- package/es/v1/Accordion/index.js +2 -0
- package/es/v1/Animation/Animation.js +127 -0
- package/es/v1/AppContainer/AppContainer.js +137 -0
- package/es/v1/Avatar/Avatar.js +189 -0
- package/es/v1/AvatarTeam/AvatarTeam.js +70 -0
- package/es/v1/Button/Button.js +68 -0
- package/es/v1/Buttongroup/Buttongroup.js +31 -0
- package/es/v1/Card/Card.js +271 -0
- package/es/v1/CheckBox/CheckBox.js +155 -0
- package/es/v1/DateTime/CalendarView.js +218 -0
- package/es/v1/DateTime/DateTime.js +783 -0
- package/es/v1/DateTime/DateTimePopupFooter.js +47 -0
- package/es/v1/DateTime/DateTimePopupHeader.js +105 -0
- package/es/v1/DateTime/DateWidget.js +1098 -0
- package/es/v1/DateTime/DaysRow.js +31 -0
- package/es/v1/DateTime/Time.js +166 -0
- package/es/v1/DateTime/YearView.js +264 -0
- package/es/v1/DateTime/index.js +1 -0
- package/es/v1/DropBox/DropBox.js +91 -0
- package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +132 -0
- package/es/v1/DropDown/DropDown.js +73 -0
- package/es/v1/DropDown/DropDownHeading.js +44 -0
- package/es/v1/DropDown/DropDownItem.js +76 -0
- package/es/v1/DropDown/DropDownSearch.js +63 -0
- package/es/v1/DropDown/DropDownSeparator.js +15 -0
- package/es/v1/Heading/Heading.js +32 -0
- package/es/v1/Label/Label.js +40 -0
- package/es/v1/Layout/Box.js +115 -0
- package/es/v1/Layout/Container.js +132 -0
- package/es/v1/Layout/index.js +2 -0
- package/es/v1/ListItem/ListContainer.js +102 -0
- package/es/v1/ListItem/ListItem.js +124 -0
- package/es/v1/ListItem/ListItemWithAvatar.js +145 -0
- package/es/v1/ListItem/ListItemWithCheckBox.js +104 -0
- package/es/v1/ListItem/ListItemWithIcon.js +127 -0
- package/es/v1/ListItem/ListItemWithRadio.js +105 -0
- package/es/v1/ListItem/index.js +6 -0
- package/es/v1/Modal/Modal.js +154 -0
- package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1079 -0
- package/es/v1/MultiSelect/AdvancedMultiSelect.js +568 -0
- package/es/v1/MultiSelect/EmptyState.js +64 -0
- package/es/v1/MultiSelect/MobileHeader/MobileHeader.js +50 -0
- package/es/v1/MultiSelect/MultiSelect.js +1120 -0
- package/es/v1/MultiSelect/MultiSelectHeader.js +32 -0
- package/es/v1/MultiSelect/MultiSelectWithAvatar.js +216 -0
- package/es/v1/MultiSelect/SelectedOptions.js +82 -0
- package/es/v1/MultiSelect/Suggestions.js +142 -0
- package/es/v1/MultiSelect/index.js +4 -0
- package/es/v1/PopOver/PopOver.js +211 -0
- package/es/v1/Popup/Popup.js +645 -0
- package/es/v1/Radio/Radio.js +115 -0
- package/es/v1/Responsive/CustomResponsive.js +195 -0
- package/es/v1/Responsive/RefWrapper.js +39 -0
- package/es/v1/Responsive/ResizeComponent.js +197 -0
- package/es/v1/Responsive/ResizeObserver.js +140 -0
- package/es/v1/Responsive/Responsive.js +194 -0
- package/es/v1/Responsive/index.js +9 -0
- package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +58 -0
- package/es/v1/Ribbon/Ribbon.js +33 -0
- package/es/v1/RippleEffect/RippleEffect.js +24 -0
- package/es/v1/Select/GroupSelect.js +803 -0
- package/es/v1/Select/Select.js +969 -0
- package/es/v1/Select/SelectWithAvatar.js +344 -0
- package/es/v1/Select/SelectWithIcon.js +535 -0
- package/es/v1/Select/index.js +4 -0
- package/es/v1/Stencils/Stencils.js +26 -0
- package/es/v1/Switch/Switch.js +94 -0
- package/es/v1/Tab/Tab.js +108 -0
- package/es/v1/Tab/TabContent.js +30 -0
- package/es/v1/Tab/TabContentWrapper.js +29 -0
- package/es/v1/Tab/TabWrapper.js +57 -0
- package/es/v1/Tab/Tabs.js +612 -0
- package/es/v1/Tab/index.js +5 -0
- package/es/v1/Tag/Tag.js +134 -0
- package/es/v1/TextBox/TextBox.js +154 -0
- package/es/v1/TextBoxIcon/TextBoxIcon.js +158 -0
- package/es/v1/Textarea/Textarea.js +102 -0
- package/es/v1/Tooltip/Tooltip.js +518 -0
- package/es/v1/Typography/Typography.js +38 -0
- package/es/v1/Typography/css/Typography.module.css +376 -0
- package/es/v1/Typography/css/cssJSLogic.js +46 -0
- package/es/v1/Typography/css/letterSpacingMap.js +12 -0
- package/es/v1/Typography/props/defaultProps.js +8 -0
- package/es/v1/Typography/props/propTypes.js +24 -0
- package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +69 -0
- package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +100 -0
- package/es/v1/semantic/Button/Button.js +53 -0
- package/es/v1/semantic/index.js +1 -0
- package/lib/AppContainer/AppContainer.js +5 -0
- package/lib/v1/Accordion/Accordion.js +96 -0
- package/lib/v1/Accordion/AccordionItem.js +68 -0
- package/lib/v1/Accordion/index.js +23 -0
- package/lib/v1/Animation/Animation.js +143 -0
- package/lib/v1/AppContainer/AppContainer.js +209 -0
- package/lib/v1/Avatar/Avatar.js +246 -0
- package/lib/v1/AvatarTeam/AvatarTeam.js +81 -0
- package/lib/v1/Button/Button.js +82 -0
- package/lib/v1/Buttongroup/Buttongroup.js +44 -0
- package/lib/v1/Card/Card.js +365 -0
- package/lib/v1/CheckBox/CheckBox.js +166 -0
- package/lib/v1/DateTime/CalendarView.js +285 -0
- package/lib/v1/DateTime/DateTime.js +872 -0
- package/lib/v1/DateTime/DateTimePopupFooter.js +96 -0
- package/lib/v1/DateTime/DateTimePopupHeader.js +166 -0
- package/lib/v1/DateTime/DateWidget.js +1125 -0
- package/lib/v1/DateTime/DaysRow.js +80 -0
- package/lib/v1/DateTime/Time.js +254 -0
- package/lib/v1/DateTime/YearView.js +325 -0
- package/lib/v1/DateTime/index.js +15 -0
- package/lib/v1/DropBox/DropBox.js +119 -0
- package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +145 -0
- package/lib/v1/DropDown/DropDown.js +170 -0
- package/lib/v1/DropDown/DropDownHeading.js +93 -0
- package/lib/v1/DropDown/DropDownItem.js +127 -0
- package/lib/v1/DropDown/DropDownSearch.js +113 -0
- package/lib/v1/DropDown/DropDownSeparator.js +64 -0
- package/lib/v1/Heading/Heading.js +49 -0
- package/lib/v1/Label/Label.js +51 -0
- package/lib/v1/Layout/Box.js +128 -0
- package/lib/v1/Layout/Container.js +145 -0
- package/lib/v1/Layout/index.js +23 -0
- package/lib/v1/ListItem/ListContainer.js +120 -0
- package/lib/v1/ListItem/ListItem.js +138 -0
- package/lib/v1/ListItem/ListItemWithAvatar.js +162 -0
- package/lib/v1/ListItem/ListItemWithCheckBox.js +125 -0
- package/lib/v1/ListItem/ListItemWithIcon.js +143 -0
- package/lib/v1/ListItem/ListItemWithRadio.js +126 -0
- package/lib/v1/ListItem/index.js +55 -0
- package/lib/v1/Modal/Modal.js +212 -0
- package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1167 -0
- package/lib/v1/MultiSelect/AdvancedMultiSelect.js +634 -0
- package/lib/v1/MultiSelect/EmptyState.js +112 -0
- package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +62 -0
- package/lib/v1/MultiSelect/MultiSelect.js +1201 -0
- package/lib/v1/MultiSelect/MultiSelectHeader.js +78 -0
- package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +270 -0
- package/lib/v1/MultiSelect/SelectedOptions.js +126 -0
- package/lib/v1/MultiSelect/Suggestions.js +195 -0
- package/lib/v1/MultiSelect/index.js +39 -0
- package/lib/v1/PopOver/PopOver.js +293 -0
- package/lib/v1/Popup/Popup.js +715 -0
- package/lib/v1/Radio/Radio.js +126 -0
- package/lib/v1/Responsive/CustomResponsive.js +242 -0
- package/lib/v1/Responsive/RefWrapper.js +57 -0
- package/lib/v1/Responsive/ResizeComponent.js +268 -0
- package/lib/v1/Responsive/ResizeObserver.js +168 -0
- package/lib/v1/Responsive/Responsive.js +274 -0
- package/lib/v1/Responsive/index.js +55 -0
- package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +79 -0
- package/lib/v1/Ribbon/Ribbon.js +44 -0
- package/lib/v1/RippleEffect/RippleEffect.js +39 -0
- package/lib/v1/Select/GroupSelect.js +877 -0
- package/lib/v1/Select/Select.js +1013 -0
- package/lib/v1/Select/SelectWithAvatar.js +394 -0
- package/lib/v1/Select/SelectWithIcon.js +597 -0
- package/lib/v1/Select/index.js +39 -0
- package/lib/v1/Stencils/Stencils.js +43 -0
- package/lib/v1/Switch/Switch.js +108 -0
- package/lib/v1/Tab/Tab.js +132 -0
- package/lib/v1/Tab/TabContent.js +42 -0
- package/lib/v1/Tab/TabContentWrapper.js +42 -0
- package/lib/v1/Tab/TabWrapper.js +89 -0
- package/lib/v1/Tab/Tabs.js +680 -0
- package/lib/v1/Tab/index.js +47 -0
- package/lib/v1/Tag/Tag.js +154 -0
- package/lib/v1/TextBox/TextBox.js +168 -0
- package/lib/v1/TextBoxIcon/TextBoxIcon.js +196 -0
- package/lib/v1/Textarea/Textarea.js +118 -0
- package/lib/v1/Tooltip/Tooltip.js +586 -0
- package/lib/v1/Typography/Typography.js +56 -0
- package/lib/v1/Typography/css/Typography.module.css +376 -0
- package/lib/v1/Typography/css/cssJSLogic.js +41 -0
- package/lib/v1/Typography/css/letterSpacingMap.js +20 -0
- package/lib/v1/Typography/props/defaultProps.js +15 -0
- package/lib/v1/Typography/props/propTypes.js +35 -0
- package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +90 -0
- package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +126 -0
- package/lib/v1/semantic/Button/Button.js +63 -0
- package/lib/v1/semantic/index.js +15 -0
- package/package.json +1 -1
- package/result.json +1 -1
|
@@ -0,0 +1,96 @@
|
|
|
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"] = Accordion;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _defaultProps = require("../../Accordion/props/defaultProps");
|
|
13
|
+
|
|
14
|
+
var _propTypes = require("../../Accordion/props/propTypes");
|
|
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 _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
21
|
+
|
|
22
|
+
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."); }
|
|
23
|
+
|
|
24
|
+
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); }
|
|
25
|
+
|
|
26
|
+
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; }
|
|
27
|
+
|
|
28
|
+
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; }
|
|
29
|
+
|
|
30
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
31
|
+
|
|
32
|
+
function Accordion(props) {
|
|
33
|
+
var className = props.className,
|
|
34
|
+
height = props.height,
|
|
35
|
+
unMount = props.unMount,
|
|
36
|
+
disableInternalState = props.disableInternalState,
|
|
37
|
+
propSelectedItem = props.selectedItem,
|
|
38
|
+
a11y = props.a11y,
|
|
39
|
+
dataId = props.dataId,
|
|
40
|
+
dataSelectorId = props.dataSelectorId,
|
|
41
|
+
onSelect = props.onSelect,
|
|
42
|
+
children = props.children;
|
|
43
|
+
var role = a11y.role,
|
|
44
|
+
ariaExpanded = a11y.ariaExpanded,
|
|
45
|
+
ariaHaspopup = a11y.ariaHaspopup;
|
|
46
|
+
|
|
47
|
+
var _useState = (0, _react.useState)(propSelectedItem),
|
|
48
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
49
|
+
selectedItem = _useState2[0],
|
|
50
|
+
setSelectedItem = _useState2[1];
|
|
51
|
+
|
|
52
|
+
function selectMenu(selectedItem) {
|
|
53
|
+
if (onSelect) {
|
|
54
|
+
onSelect(selectedItem);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
!disableInternalState && setSelectedItem(selectedItem);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
(0, _react.useEffect)(function () {
|
|
61
|
+
if (!disableInternalState) {
|
|
62
|
+
setSelectedItem(propSelectedItem);
|
|
63
|
+
}
|
|
64
|
+
}, [propSelectedItem]);
|
|
65
|
+
|
|
66
|
+
var renderChildren = _react["default"].Children.map(children, function (child) {
|
|
67
|
+
if (child) {
|
|
68
|
+
return /*#__PURE__*/_react["default"].cloneElement(child, {
|
|
69
|
+
selectedItem: disableInternalState ? propSelectedItem : selectedItem,
|
|
70
|
+
selectMenu: selectMenu,
|
|
71
|
+
unMount: unMount
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
77
|
+
className: className ? className : '',
|
|
78
|
+
style: {
|
|
79
|
+
height: height
|
|
80
|
+
},
|
|
81
|
+
role: role,
|
|
82
|
+
"aria-expanded": ariaExpanded,
|
|
83
|
+
"aria-haspopup": ariaHaspopup,
|
|
84
|
+
"data-id": dataId,
|
|
85
|
+
"data-test-id": dataId,
|
|
86
|
+
"data-selector-id": dataSelectorId
|
|
87
|
+
}, renderChildren);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
Accordion.propTypes = _propTypes.Accordion_propTypes;
|
|
91
|
+
Accordion.defaultProps = _defaultProps.Accordion_defaultProps; // if (__DOCS__) {
|
|
92
|
+
// Accordion.docs = {
|
|
93
|
+
// componentGroup: 'Animation',
|
|
94
|
+
// folderName: 'Style Guide'
|
|
95
|
+
// };
|
|
96
|
+
// }
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = AccordionItem;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _defaultProps = require("../../Accordion/props/defaultProps");
|
|
11
|
+
|
|
12
|
+
var _propTypes = require("../../Accordion/props/propTypes");
|
|
13
|
+
|
|
14
|
+
var _VelocityAnimation = _interopRequireDefault(require("../VelocityAnimation/VelocityAnimation/VelocityAnimation"));
|
|
15
|
+
|
|
16
|
+
var _VelocityAnimationGroup = _interopRequireDefault(require("../VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup"));
|
|
17
|
+
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
20
|
+
function AccordionItem(props) {
|
|
21
|
+
var id = props.id,
|
|
22
|
+
selectMenu = props.selectMenu,
|
|
23
|
+
className = props.className,
|
|
24
|
+
children = props.children,
|
|
25
|
+
dataId = props.dataId,
|
|
26
|
+
dataSelectorId = props.dataSelectorId,
|
|
27
|
+
unMount = props.unMount,
|
|
28
|
+
unMountItem = props.unMountItem,
|
|
29
|
+
a11y = props.a11y,
|
|
30
|
+
innerClass = props.innerClass,
|
|
31
|
+
equalityCheck = props.equalityCheck,
|
|
32
|
+
selectedItem = props.selectedItem;
|
|
33
|
+
unMountItem = unMountItem !== undefined ? unMountItem : unMount;
|
|
34
|
+
var role = a11y.role;
|
|
35
|
+
|
|
36
|
+
function equalityChecking() {
|
|
37
|
+
return equalityCheck ? equalityCheck(id, selectedItem) : selectedItem == id;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function handleSelectMenu() {
|
|
41
|
+
selectMenu(id);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
45
|
+
className: className ? className : '',
|
|
46
|
+
"data-id": dataId,
|
|
47
|
+
"data-test-id": dataId,
|
|
48
|
+
role: role,
|
|
49
|
+
"data-selector-id": dataSelectorId
|
|
50
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
51
|
+
className: innerClass ? innerClass : '',
|
|
52
|
+
onClick: handleSelectMenu
|
|
53
|
+
}, children[0]), unMountItem ? /*#__PURE__*/_react["default"].createElement(_VelocityAnimationGroup["default"], {
|
|
54
|
+
name: "slideDown",
|
|
55
|
+
isActive: equalityChecking()
|
|
56
|
+
}, children[1]) : /*#__PURE__*/_react["default"].createElement(_VelocityAnimation["default"], {
|
|
57
|
+
name: "slideDown",
|
|
58
|
+
isActive: equalityChecking()
|
|
59
|
+
}, children[1]));
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
AccordionItem.propTypes = _propTypes.AccordionItem_propTypes;
|
|
63
|
+
AccordionItem.defaultProps = _defaultProps.AccordionItem_defaultProps; // if (__DOCS__) {
|
|
64
|
+
// AccordionItem.docs = {
|
|
65
|
+
// componentGroup: 'Animation',
|
|
66
|
+
// folderName: 'Style Guide'
|
|
67
|
+
// };
|
|
68
|
+
// }
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Accordion", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _Accordion["default"];
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "AccordionItem", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _AccordionItem["default"];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
var _Accordion = _interopRequireDefault(require("./Accordion"));
|
|
20
|
+
|
|
21
|
+
var _AccordionItem = _interopRequireDefault(require("./AccordionItem"));
|
|
22
|
+
|
|
23
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = Animation;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _defaultProps = require("../../Animation/props/defaultProps");
|
|
11
|
+
|
|
12
|
+
var _propTypes = require("../../Animation/props/propTypes");
|
|
13
|
+
|
|
14
|
+
var _reactTransitionGroup = require("react-transition-group");
|
|
15
|
+
|
|
16
|
+
var _transitionModule = _interopRequireDefault(require("../../common/transition.module.css"));
|
|
17
|
+
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
+
|
|
20
|
+
function Animation(props) {
|
|
21
|
+
var name = props.name,
|
|
22
|
+
enterDuration = props.enterDuration,
|
|
23
|
+
exitDuration = props.exitDuration,
|
|
24
|
+
children = props.children,
|
|
25
|
+
isActive = props.isActive,
|
|
26
|
+
unmountOnExit = props.unmountOnExit,
|
|
27
|
+
_props$onEntered = props.onEntered,
|
|
28
|
+
onEntered = _props$onEntered === void 0 ? function () {} : _props$onEntered,
|
|
29
|
+
_props$onExit = props.onExit,
|
|
30
|
+
onExit = _props$onExit === void 0 ? function () {} : _props$onExit,
|
|
31
|
+
_props$delayClassName = props.delayClassName,
|
|
32
|
+
delayClassName = _props$delayClassName === void 0 ? null : _props$delayClassName;
|
|
33
|
+
var animation = {
|
|
34
|
+
zoomIn: {
|
|
35
|
+
enter: _transitionModule["default"].zoomInEnter,
|
|
36
|
+
enterActive: _transitionModule["default"].zoomInEnterActive,
|
|
37
|
+
enterDone: _transitionModule["default"].zoomInEnterActive,
|
|
38
|
+
exit: _transitionModule["default"].zoomInLeave,
|
|
39
|
+
exitActive: _transitionModule["default"].zoomInLeaveActive,
|
|
40
|
+
exitDone: _transitionModule["default"].zoomInLeaveActive,
|
|
41
|
+
appear: _transitionModule["default"].zoomInEnter,
|
|
42
|
+
appearActive: _transitionModule["default"].zoomInEnterActive
|
|
43
|
+
},
|
|
44
|
+
scaleIn: {
|
|
45
|
+
enter: _transitionModule["default"].scaleInEnter,
|
|
46
|
+
enterActive: _transitionModule["default"].scaleInEnterActive,
|
|
47
|
+
enterDone: _transitionModule["default"].scaleInEnterActive,
|
|
48
|
+
exit: _transitionModule["default"].scaleInLeave,
|
|
49
|
+
exitActive: _transitionModule["default"].scaleInLeaveActive,
|
|
50
|
+
exitDone: _transitionModule["default"].scaleInLeaveActive,
|
|
51
|
+
appear: _transitionModule["default"].scaleInEnter,
|
|
52
|
+
appearActive: _transitionModule["default"].scaleInEnterActive
|
|
53
|
+
},
|
|
54
|
+
fadeIn: {
|
|
55
|
+
enter: _transitionModule["default"].fadeInEnter,
|
|
56
|
+
enterActive: _transitionModule["default"].fadeInEnterActive,
|
|
57
|
+
enterDone: _transitionModule["default"].fadeInEnterActive,
|
|
58
|
+
exit: _transitionModule["default"].fadeInLeave,
|
|
59
|
+
exitActive: _transitionModule["default"].fadeInLeaveActive,
|
|
60
|
+
exitDone: _transitionModule["default"].fadeInLeaveActive,
|
|
61
|
+
appear: _transitionModule["default"].fadeInEnter,
|
|
62
|
+
appearActive: _transitionModule["default"].fadeInEnterActive
|
|
63
|
+
},
|
|
64
|
+
slideLeft: {
|
|
65
|
+
enter: _transitionModule["default"].slideLeftEnter,
|
|
66
|
+
enterActive: _transitionModule["default"].slideLeftEnterActive,
|
|
67
|
+
enterDone: _transitionModule["default"].slideLeftEnterActive,
|
|
68
|
+
exit: _transitionModule["default"].slideLeftLeave,
|
|
69
|
+
exitActive: _transitionModule["default"].slideLeftLeaveActive,
|
|
70
|
+
exitDone: _transitionModule["default"].slideLeftLeaveActive,
|
|
71
|
+
appear: _transitionModule["default"].slideLeftEnter,
|
|
72
|
+
appearActive: _transitionModule["default"].slideLeftEnterActive
|
|
73
|
+
},
|
|
74
|
+
slideDown: {
|
|
75
|
+
enter: _transitionModule["default"].slideDownEnter,
|
|
76
|
+
enterActive: _transitionModule["default"].slideDownEnterActive,
|
|
77
|
+
enterDone: _transitionModule["default"].slideDownEnterActive,
|
|
78
|
+
exit: _transitionModule["default"].slideDownLeave,
|
|
79
|
+
exitActive: _transitionModule["default"].slideDownLeaveActive,
|
|
80
|
+
exitDone: _transitionModule["default"].slideDownLeaveActive,
|
|
81
|
+
appear: _transitionModule["default"].slideDownEnter,
|
|
82
|
+
appearActive: _transitionModule["default"].slideDownEnterActive
|
|
83
|
+
},
|
|
84
|
+
skewIn: {
|
|
85
|
+
enter: _transitionModule["default"].skewInEnter,
|
|
86
|
+
enterActive: _transitionModule["default"].skewInEnterActive,
|
|
87
|
+
enterDone: _transitionModule["default"].skewInEnterActive,
|
|
88
|
+
exit: _transitionModule["default"].skewInLeave,
|
|
89
|
+
exitActive: _transitionModule["default"].skewInLeaveActive,
|
|
90
|
+
exitDone: _transitionModule["default"].skewInLeaveActive,
|
|
91
|
+
appear: _transitionModule["default"].skewInEnter,
|
|
92
|
+
appearActive: _transitionModule["default"].skewInEnterActive
|
|
93
|
+
},
|
|
94
|
+
none: {
|
|
95
|
+
enter: _transitionModule["default"].noneEnter,
|
|
96
|
+
enterActive: _transitionModule["default"].noneEnterActive,
|
|
97
|
+
enterDone: _transitionModule["default"].noneEnterActive,
|
|
98
|
+
exit: _transitionModule["default"].noneLeave,
|
|
99
|
+
exitActive: _transitionModule["default"].noneLeaveActive,
|
|
100
|
+
exitDone: _transitionModule["default"].noneLeaveActive,
|
|
101
|
+
appear: _transitionModule["default"].noneEnter,
|
|
102
|
+
appearActive: _transitionModule["default"].noneEnterActive
|
|
103
|
+
},
|
|
104
|
+
"default": {
|
|
105
|
+
enter: _transitionModule["default"].defaultEnter,
|
|
106
|
+
enterActive: _transitionModule["default"].defaultEnterActive,
|
|
107
|
+
enterDone: _transitionModule["default"].defaultEnterActive,
|
|
108
|
+
exit: _transitionModule["default"].defaultLeave,
|
|
109
|
+
exitActive: _transitionModule["default"].defaultLeaveActive,
|
|
110
|
+
exitDone: _transitionModule["default"].defaultLeaveActive,
|
|
111
|
+
appear: _transitionModule["default"].defaultEnter,
|
|
112
|
+
appearActive: _transitionModule["default"].defaultEnterActive
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
var newClassNames = delayClassName ? Object.assign({}, animation[name], {
|
|
116
|
+
exit: "".concat(delayClassName, " ").concat(animation[name].exit)
|
|
117
|
+
}) : animation[name];
|
|
118
|
+
return /*#__PURE__*/_react["default"].createElement(_reactTransitionGroup.CSSTransition, {
|
|
119
|
+
classNames: newClassNames && newClassNames,
|
|
120
|
+
"in": isActive,
|
|
121
|
+
appear: true,
|
|
122
|
+
enter: true,
|
|
123
|
+
exit: true,
|
|
124
|
+
mountOnEnter: false,
|
|
125
|
+
unmountOnExit: unmountOnExit,
|
|
126
|
+
timeout: {
|
|
127
|
+
enter: enterDuration,
|
|
128
|
+
exit: exitDuration
|
|
129
|
+
},
|
|
130
|
+
onEntered: onEntered,
|
|
131
|
+
onExit: onExit
|
|
132
|
+
}, /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, children));
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
Animation.propTypes = _propTypes.propTypes;
|
|
136
|
+
Animation.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
|
|
137
|
+
// Animation.docs = {
|
|
138
|
+
// componentGroup: 'Animation',
|
|
139
|
+
// folderName: 'Style Guide',
|
|
140
|
+
// external: true,
|
|
141
|
+
// description: ' '
|
|
142
|
+
// };
|
|
143
|
+
// }
|
|
@@ -0,0 +1,209 @@
|
|
|
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 = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _defaultProps = require("../../AppContainer/props/defaultProps");
|
|
13
|
+
|
|
14
|
+
var _propTypes = require("../../AppContainer/props/propTypes");
|
|
15
|
+
|
|
16
|
+
var _Layout = require("../Layout");
|
|
17
|
+
|
|
18
|
+
var _Tooltip = _interopRequireDefault(require("../Tooltip/Tooltip"));
|
|
19
|
+
|
|
20
|
+
require("../../common/basic.module.css");
|
|
21
|
+
|
|
22
|
+
require("@zohodesk/variables/assets/colorVariables.module.css");
|
|
23
|
+
|
|
24
|
+
require("@zohodesk/variables/assets/dotVariables.module.css");
|
|
25
|
+
|
|
26
|
+
require("@zohodesk/variables/assets/sizeVariables.module.css");
|
|
27
|
+
|
|
28
|
+
require("@zohodesk/variables/assets/fontsizeVariables.module.css");
|
|
29
|
+
|
|
30
|
+
require("@zohodesk/variables/lib/fontFamilyVariables.module.css");
|
|
31
|
+
|
|
32
|
+
require("@zohodesk/variables/assets/transitionVariables.module.css");
|
|
33
|
+
|
|
34
|
+
require("@zohodesk/variables/assets/no_transitionVariables.module.css");
|
|
35
|
+
|
|
36
|
+
require("../../common/a11y.module.css");
|
|
37
|
+
|
|
38
|
+
require("../../common/boxShadow.module.css");
|
|
39
|
+
|
|
40
|
+
var _AppContainerModule = _interopRequireDefault(require("../../AppContainer/AppContainer.module.css"));
|
|
41
|
+
|
|
42
|
+
var _Config = require("../../Provider/Config");
|
|
43
|
+
|
|
44
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
45
|
+
|
|
46
|
+
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); }
|
|
47
|
+
|
|
48
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
49
|
+
|
|
50
|
+
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); } }
|
|
51
|
+
|
|
52
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
53
|
+
|
|
54
|
+
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); }
|
|
55
|
+
|
|
56
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
57
|
+
|
|
58
|
+
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); }; }
|
|
59
|
+
|
|
60
|
+
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); }
|
|
61
|
+
|
|
62
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
63
|
+
|
|
64
|
+
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; } }
|
|
65
|
+
|
|
66
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
67
|
+
|
|
68
|
+
var AppContainer = /*#__PURE__*/function (_React$Component) {
|
|
69
|
+
_inherits(AppContainer, _React$Component);
|
|
70
|
+
|
|
71
|
+
var _super = _createSuper(AppContainer);
|
|
72
|
+
|
|
73
|
+
function AppContainer(props) {
|
|
74
|
+
var _this;
|
|
75
|
+
|
|
76
|
+
_classCallCheck(this, AppContainer);
|
|
77
|
+
|
|
78
|
+
_this = _super.call(this, props);
|
|
79
|
+
_this.setTooltipRef = _this.setTooltipRef.bind(_assertThisInitialized(_this));
|
|
80
|
+
_this.handleOver = _this.handleOver.bind(_assertThisInitialized(_this));
|
|
81
|
+
_this.mouseOverDispatch = _this.mouseOverDispatch.bind(_assertThisInitialized(_this));
|
|
82
|
+
_this.removeTimeout = _this.removeTimeout.bind(_assertThisInitialized(_this));
|
|
83
|
+
_this.getContainerRef = _this.getContainerRef.bind(_assertThisInitialized(_this));
|
|
84
|
+
_this.timer = null;
|
|
85
|
+
_this.tooltipDebounce = (0, _Config.getLibraryConfig)('tooltipDebounce');
|
|
86
|
+
(0, _Config.setLibraryConfig)({
|
|
87
|
+
getTooltipContainer: function getTooltipContainer() {
|
|
88
|
+
return _this.containerElement;
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
return _this;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
_createClass(AppContainer, [{
|
|
95
|
+
key: "mouseOverDispatch",
|
|
96
|
+
value: function mouseOverDispatch(e) {
|
|
97
|
+
if (this.tooltipRef) {
|
|
98
|
+
this.tooltipRef.handleOver(e, this.containerElement);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}, {
|
|
102
|
+
key: "removeTimeout",
|
|
103
|
+
value: function removeTimeout() {
|
|
104
|
+
if (this.timer) {
|
|
105
|
+
this.timer = clearTimeout(this.timer);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}, {
|
|
109
|
+
key: "handleOver",
|
|
110
|
+
value: function handleOver(e) {
|
|
111
|
+
var _this2 = this;
|
|
112
|
+
|
|
113
|
+
if (this.timer) {
|
|
114
|
+
this.timer = clearTimeout(this.timer);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
this.timer = setTimeout(function () {
|
|
118
|
+
return _this2.mouseOverDispatch(e);
|
|
119
|
+
}, this.tooltipDebounce);
|
|
120
|
+
}
|
|
121
|
+
}, {
|
|
122
|
+
key: "getContainerRef",
|
|
123
|
+
value: function getContainerRef(ref) {
|
|
124
|
+
var eleRef = this.props.eleRef;
|
|
125
|
+
this.containerElement = ref;
|
|
126
|
+
eleRef && eleRef(ref);
|
|
127
|
+
}
|
|
128
|
+
}, {
|
|
129
|
+
key: "setTooltipRef",
|
|
130
|
+
value: function setTooltipRef(ref) {
|
|
131
|
+
this.tooltipRef = ref;
|
|
132
|
+
}
|
|
133
|
+
}, {
|
|
134
|
+
key: "componentDidMount",
|
|
135
|
+
value: function componentDidMount() {
|
|
136
|
+
var needTooltip = this.props.needTooltip;
|
|
137
|
+
|
|
138
|
+
if (this.containerElement && needTooltip) {
|
|
139
|
+
this.containerElement.addEventListener('mouseover', this.handleOver, false);
|
|
140
|
+
this.containerElement.addEventListener('mouseout', this.removeTimeout, false);
|
|
141
|
+
this.tooltipRef.observeElement();
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}, {
|
|
145
|
+
key: "componentWillUnmount",
|
|
146
|
+
value: function componentWillUnmount() {
|
|
147
|
+
var needTooltip = this.props.needTooltip;
|
|
148
|
+
|
|
149
|
+
if (this.containerElement && needTooltip) {
|
|
150
|
+
this.containerElement.removeEventListener('mouseover', this.handleOver, false);
|
|
151
|
+
this.containerElement.addEventListener('mouseout', this.removeTimeout, false);
|
|
152
|
+
this.tooltipRef.unObserveElement();
|
|
153
|
+
(0, _Config.setLibraryConfig)({
|
|
154
|
+
getTooltipContainer: function getTooltipContainer() {
|
|
155
|
+
return null;
|
|
156
|
+
}
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}, {
|
|
161
|
+
key: "render",
|
|
162
|
+
value: function render() {
|
|
163
|
+
var _this$props = this.props,
|
|
164
|
+
className = _this$props.className,
|
|
165
|
+
children = _this$props.children,
|
|
166
|
+
tagName = _this$props.tagName,
|
|
167
|
+
dataId = _this$props.dataId,
|
|
168
|
+
dataSelectorId = _this$props.dataSelectorId,
|
|
169
|
+
tooltipClass = _this$props.tooltipClass,
|
|
170
|
+
tooltipParentClass = _this$props.tooltipParentClass,
|
|
171
|
+
needTooltip = _this$props.needTooltip,
|
|
172
|
+
customProps = _this$props.customProps;
|
|
173
|
+
var _customProps$Containe = customProps.ContainerProps,
|
|
174
|
+
ContainerProps = _customProps$Containe === void 0 ? {} : _customProps$Containe,
|
|
175
|
+
_customProps$TooltipP = customProps.TooltipProps,
|
|
176
|
+
TooltipProps = _customProps$TooltipP === void 0 ? {} : _customProps$TooltipP,
|
|
177
|
+
_customProps$ExtraPro = customProps.ExtraProps,
|
|
178
|
+
ExtraProps = _customProps$ExtraPro === void 0 ? {} : _customProps$ExtraPro;
|
|
179
|
+
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, _extends({
|
|
180
|
+
className: "".concat(_AppContainerModule["default"].container, " ").concat(className),
|
|
181
|
+
dataId: dataId,
|
|
182
|
+
dataSelectorId: dataSelectorId,
|
|
183
|
+
tagName: tagName,
|
|
184
|
+
eleRef: this.getContainerRef
|
|
185
|
+
}, ContainerProps, ExtraProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
186
|
+
flexible: true
|
|
187
|
+
}, children)), needTooltip ? /*#__PURE__*/_react["default"].createElement("div", _extends({}, ExtraProps, {
|
|
188
|
+
className: "".concat(_AppContainerModule["default"].container, " ").concat(_AppContainerModule["default"].tooltip, " ").concat(tooltipParentClass),
|
|
189
|
+
"data-id": "".concat(dataId, "_tooltip"),
|
|
190
|
+
"data-test-id": "".concat(dataId, "_tooltip"),
|
|
191
|
+
"data-selector-id": "".concat(dataSelectorId, "_tooltip")
|
|
192
|
+
}), /*#__PURE__*/_react["default"].createElement(_Tooltip["default"], _extends({
|
|
193
|
+
ref: this.setTooltipRef,
|
|
194
|
+
customClass: tooltipClass
|
|
195
|
+
}, TooltipProps))) : null);
|
|
196
|
+
}
|
|
197
|
+
}]);
|
|
198
|
+
|
|
199
|
+
return AppContainer;
|
|
200
|
+
}(_react["default"].Component);
|
|
201
|
+
|
|
202
|
+
exports["default"] = AppContainer;
|
|
203
|
+
AppContainer.propTypes = _propTypes.propTypes;
|
|
204
|
+
AppContainer.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
|
|
205
|
+
// AppContainer.docs = {
|
|
206
|
+
// componentGroup: 'Template',
|
|
207
|
+
// folderName: 'Style Guide'
|
|
208
|
+
// };
|
|
209
|
+
// }
|