@zohodesk/components 1.0.0-temp-168 → 1.0.0-temp-169
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/PropLessFiles.html +1 -1
- package/.cli/PropValidationExcludeFilesArray.js +13 -3
- package/.cli/propValidation_report.html +1 -1
- package/README.md +48 -0
- package/assets/Appearance/dark/mode/Component_DarkMode.module.css +1 -0
- package/assets/Appearance/light/mode/Component_LightMode.module.css +1 -0
- package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +1 -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 +3 -6
- package/coverage/Button/props/index.html +1 -1
- package/coverage/Button/props/propTypes.js.html +9 -3
- 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/coverage-final.json +10 -10
- package/coverage/coverage-summary.json +10 -10
- 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/Button/__tests__/__snapshots__/Button.spec.js.snap +0 -28
- package/es/Button/props/defaultProps.js +1 -2
- package/es/Button/props/propTypes.js +3 -1
- package/es/DateTime/DateTime.module.css +2 -0
- package/es/DateTime/DateWidget.js +2 -1
- package/es/DateTime/dateFormatUtils/dayChange.js +2 -1
- package/es/DateTime/dateFormatUtils/index.js +1 -1
- package/es/DateTime/dateFormatUtils/monthChange.js +2 -1
- package/es/DateTime/dateFormatUtils/timeChange.js +4 -4
- package/es/DateTime/dateFormatUtils/yearChange.js +2 -1
- package/es/DropBox/DropBox.js +10 -10
- package/es/DropDown/DropDown.js +1 -7
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +7 -5
- package/es/MultiSelect/AdvancedMultiSelect.js +4 -4
- package/es/MultiSelect/MobileHeader/MobileHeader.js +50 -0
- package/es/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
- package/es/MultiSelect/MobileHeader/props/defaultProps.js +7 -0
- package/es/MultiSelect/MobileHeader/props/propTypes.js +7 -0
- package/es/MultiSelect/MultiSelect.js +112 -91
- package/es/MultiSelect/MultiSelect.module.css +2 -5
- package/es/MultiSelect/MultiSelectHeader.js +1 -2
- package/es/MultiSelect/MultiSelectWithAvatar.js +15 -112
- package/es/MultiSelect/props/defaultProps.js +3 -1
- package/es/MultiSelect/props/propTypes.js +9 -57
- package/es/Responsive/RefWrapper.js +2 -1
- package/es/Select/GroupSelect.js +3 -5
- package/es/Select/Select.js +2 -5
- package/es/Select/SelectWithAvatar.js +2 -1
- package/es/Select/SelectWithIcon.js +5 -2
- package/es/TextBox/TextBox.js +3 -3
- package/es/TextBox/TextBox.module.css +5 -4
- package/es/Textarea/Textarea.module.css +3 -4
- package/es/deprecated/PortalLayer/props/propTypes.js +3 -1
- package/es/index.js +2 -1
- package/es/utils/Common.js +3 -0
- package/es/v1/Accordion/Accordion.js +66 -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 +139 -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 +176 -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 +800 -0
- package/es/v1/Select/Select.js +966 -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/Button/__tests__/__snapshots__/Button.spec.js.snap +0 -28
- package/lib/Button/props/defaultProps.js +1 -2
- package/lib/Button/props/propTypes.js +3 -1
- package/lib/DateTime/DateTime.module.css +2 -0
- package/lib/DateTime/DateWidget.js +2 -1
- package/lib/DateTime/dateFormatUtils/dayChange.js +3 -1
- package/lib/DateTime/dateFormatUtils/index.js +1 -1
- package/lib/DateTime/dateFormatUtils/monthChange.js +3 -1
- package/lib/DateTime/dateFormatUtils/timeChange.js +3 -3
- package/lib/DateTime/dateFormatUtils/yearChange.js +3 -1
- package/lib/DropBox/DropBox.js +15 -15
- package/lib/DropDown/DropDown.js +1 -6
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +7 -6
- package/lib/MultiSelect/AdvancedMultiSelect.js +4 -4
- package/lib/MultiSelect/MobileHeader/MobileHeader.js +62 -0
- package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
- package/lib/MultiSelect/MobileHeader/props/defaultProps.js +14 -0
- package/lib/MultiSelect/MobileHeader/props/propTypes.js +18 -0
- package/lib/MultiSelect/MultiSelect.js +116 -96
- package/lib/MultiSelect/MultiSelect.module.css +2 -5
- package/lib/MultiSelect/MultiSelectHeader.js +1 -2
- package/lib/MultiSelect/MultiSelectWithAvatar.js +18 -113
- package/lib/MultiSelect/props/defaultProps.js +3 -1
- package/lib/MultiSelect/props/propTypes.js +19 -60
- package/lib/Responsive/RefWrapper.js +2 -1
- package/lib/Select/GroupSelect.js +2 -2
- package/lib/Select/Select.js +1 -2
- package/lib/Select/SelectWithAvatar.js +2 -1
- package/lib/Select/SelectWithIcon.js +5 -3
- package/lib/TextBox/TextBox.js +10 -10
- package/lib/TextBox/TextBox.module.css +5 -4
- package/lib/Textarea/Textarea.module.css +3 -4
- package/lib/deprecated/PortalLayer/props/propTypes.js +3 -1
- package/lib/index.js +10 -1
- package/lib/utils/Common.js +5 -0
- package/lib/v1/Accordion/Accordion.js +98 -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 +190 -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 +197 -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 +876 -0
- package/lib/v1/Select/Select.js +1012 -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 +10 -10
- package/result.json +1 -1
|
@@ -0,0 +1,143 @@
|
|
|
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 _Layout = require("../Layout");
|
|
11
|
+
|
|
12
|
+
var _icons = require("@zohodesk/icons");
|
|
13
|
+
|
|
14
|
+
var _ListContainer = _interopRequireDefault(require("./ListContainer"));
|
|
15
|
+
|
|
16
|
+
var _defaultProps = require("../../ListItem/props/defaultProps");
|
|
17
|
+
|
|
18
|
+
var _propTypes = require("../../ListItem/props/propTypes");
|
|
19
|
+
|
|
20
|
+
var _ListItemModule = _interopRequireDefault(require("../../ListItem/ListItem.module.css"));
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
24
|
+
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); }
|
|
25
|
+
|
|
26
|
+
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; }
|
|
27
|
+
|
|
28
|
+
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; }
|
|
29
|
+
|
|
30
|
+
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; }
|
|
31
|
+
|
|
32
|
+
var ListItemWithIcon = function ListItemWithIcon(props) {
|
|
33
|
+
var size = props.size,
|
|
34
|
+
active = props.active,
|
|
35
|
+
highlight = props.highlight,
|
|
36
|
+
value = props.value,
|
|
37
|
+
iconName = props.iconName,
|
|
38
|
+
iconSize = props.iconSize,
|
|
39
|
+
autoHover = props.autoHover,
|
|
40
|
+
palette = props.palette,
|
|
41
|
+
iconClass = props.iconClass,
|
|
42
|
+
dataId = props.dataId,
|
|
43
|
+
dataSelectorId = props.dataSelectorId,
|
|
44
|
+
title = props.title,
|
|
45
|
+
needTick = props.needTick,
|
|
46
|
+
isLink = props.isLink,
|
|
47
|
+
href = props.href,
|
|
48
|
+
target = props.target,
|
|
49
|
+
needBorder = props.needBorder,
|
|
50
|
+
isDisabled = props.isDisabled,
|
|
51
|
+
disableTitle = props.disableTitle,
|
|
52
|
+
a11y = props.a11y,
|
|
53
|
+
customClass = props.customClass,
|
|
54
|
+
customProps = props.customProps,
|
|
55
|
+
needMultiLineText = props.needMultiLineText,
|
|
56
|
+
getRef = props.getRef,
|
|
57
|
+
onClick = props.onClick,
|
|
58
|
+
onMouseEnter = props.onMouseEnter,
|
|
59
|
+
index = props.index,
|
|
60
|
+
id = props.id;
|
|
61
|
+
|
|
62
|
+
function handleRef(ele) {
|
|
63
|
+
getRef && getRef(ele, index, id);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function handleClick(e) {
|
|
67
|
+
onClick && onClick(id, value, index, e);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
function handleMouseEnter(e) {
|
|
71
|
+
onMouseEnter && onMouseEnter(id, value, index, e);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
var _customProps$ListItem = customProps.ListItemProps,
|
|
75
|
+
ListItemProps = _customProps$ListItem === void 0 ? {} : _customProps$ListItem,
|
|
76
|
+
_customProps$Containe = customProps.ContainerProps,
|
|
77
|
+
ContainerProps = _customProps$Containe === void 0 ? {} : _customProps$Containe;
|
|
78
|
+
|
|
79
|
+
var listA11y = _objectSpread({
|
|
80
|
+
ariaHidden: true,
|
|
81
|
+
role: 'option'
|
|
82
|
+
}, a11y);
|
|
83
|
+
|
|
84
|
+
var ariaHidden = listA11y.ariaHidden;
|
|
85
|
+
var dataIdString = dataId ? "".concat(dataId.replace("'", '_')) : value.toLowerCase().replace("'", '_');
|
|
86
|
+
return /*#__PURE__*/_react["default"].createElement(_ListContainer["default"], _extends({
|
|
87
|
+
a11y: listA11y,
|
|
88
|
+
size: size,
|
|
89
|
+
palette: palette,
|
|
90
|
+
highlight: highlight,
|
|
91
|
+
isDisabled: isDisabled,
|
|
92
|
+
active: active,
|
|
93
|
+
autoHover: autoHover,
|
|
94
|
+
needTick: needTick,
|
|
95
|
+
needBorder: needBorder,
|
|
96
|
+
customClass: customClass,
|
|
97
|
+
dataId: dataIdString,
|
|
98
|
+
dataSelectorId: dataSelectorId,
|
|
99
|
+
isLink: isLink,
|
|
100
|
+
href: href,
|
|
101
|
+
target: target,
|
|
102
|
+
onClick: handleClick,
|
|
103
|
+
onMouseOver: handleMouseEnter,
|
|
104
|
+
eleRef: handleRef,
|
|
105
|
+
disableTitle: disableTitle,
|
|
106
|
+
title: null,
|
|
107
|
+
customProps: ListItemProps
|
|
108
|
+
}, ContainerProps), iconName && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
109
|
+
"aria-hidden": true,
|
|
110
|
+
className: _ListItemModule["default"].iconBox,
|
|
111
|
+
dataId: dataId ? "".concat(dataId, "_Icon") : "".concat(value.toLowerCase().replace("'", '_'), "_Icon")
|
|
112
|
+
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
113
|
+
iconClass: iconClass,
|
|
114
|
+
name: iconName,
|
|
115
|
+
size: iconSize
|
|
116
|
+
})), iconClass && !iconName ? /*#__PURE__*/_react["default"].createElement("span", {
|
|
117
|
+
className: iconClass
|
|
118
|
+
}) : null, value && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
119
|
+
flexible: true,
|
|
120
|
+
shrink: true,
|
|
121
|
+
className: needMultiLineText ? _ListItemModule["default"].multiLineValue : _ListItemModule["default"].value,
|
|
122
|
+
"data-title": isDisabled ? null : title,
|
|
123
|
+
dataId: "".concat(dataIdString, "_Text")
|
|
124
|
+
}, value), needTick && active ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
125
|
+
className: _ListItemModule["default"].tickIcon,
|
|
126
|
+
"aria-hidden": ariaHidden,
|
|
127
|
+
dataId: "".concat(dataIdString, "_tickIcon"),
|
|
128
|
+
dataSelectorId: "".concat(dataSelectorId, "_tickIcon")
|
|
129
|
+
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
130
|
+
name: "ZD-ticknew",
|
|
131
|
+
size: "8"
|
|
132
|
+
})) : null);
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
var _default = ListItemWithIcon;
|
|
136
|
+
exports["default"] = _default;
|
|
137
|
+
ListItemWithIcon.defaultProps = _defaultProps.ListItemWithIconDefaultProps;
|
|
138
|
+
ListItemWithIcon.propTypes = _propTypes.ListItemWithIcon_Props; // if (__DOCS__) {
|
|
139
|
+
// ListItemWithIcon.docs = {
|
|
140
|
+
// componentGroup: 'Molecule',
|
|
141
|
+
// folderName: 'Style Guide'
|
|
142
|
+
// };
|
|
143
|
+
// }
|
|
@@ -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 _Radio = _interopRequireDefault(require("../Radio/Radio"));
|
|
11
|
+
|
|
12
|
+
var _Layout = require("../Layout");
|
|
13
|
+
|
|
14
|
+
var _ListContainer = _interopRequireDefault(require("./ListContainer"));
|
|
15
|
+
|
|
16
|
+
var _defaultProps = require("../../ListItem/props/defaultProps");
|
|
17
|
+
|
|
18
|
+
var _propTypes = require("../../ListItem/props/propTypes");
|
|
19
|
+
|
|
20
|
+
var _ListItemModule = _interopRequireDefault(require("../../ListItem/ListItem.module.css"));
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
23
|
+
|
|
24
|
+
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); }
|
|
25
|
+
|
|
26
|
+
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; }
|
|
27
|
+
|
|
28
|
+
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; }
|
|
29
|
+
|
|
30
|
+
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; }
|
|
31
|
+
|
|
32
|
+
var ListItemWithRadio = function ListItemWithRadio(props) {
|
|
33
|
+
var size = props.size,
|
|
34
|
+
active = props.active,
|
|
35
|
+
highlight = props.highlight,
|
|
36
|
+
value = props.value,
|
|
37
|
+
checked = props.checked,
|
|
38
|
+
autoHover = props.autoHover,
|
|
39
|
+
palette = props.palette,
|
|
40
|
+
id = props.id,
|
|
41
|
+
dataId = props.dataId,
|
|
42
|
+
dataSelectorId = props.dataSelectorId,
|
|
43
|
+
title = props.title,
|
|
44
|
+
isDisabled = props.isDisabled,
|
|
45
|
+
disableTitle = props.disableTitle,
|
|
46
|
+
a11y = props.a11y,
|
|
47
|
+
customClass = props.customClass,
|
|
48
|
+
customProps = props.customProps,
|
|
49
|
+
needMultiLineText = props.needMultiLineText,
|
|
50
|
+
getRef = props.getRef,
|
|
51
|
+
onClick = props.onClick,
|
|
52
|
+
onHover = props.onHover,
|
|
53
|
+
index = props.index;
|
|
54
|
+
var _customProps$ListItem = customProps.ListItemProps,
|
|
55
|
+
ListItemProps = _customProps$ListItem === void 0 ? {} : _customProps$ListItem,
|
|
56
|
+
_customProps$Containe = customProps.ContainerProps,
|
|
57
|
+
ContainerProps = _customProps$Containe === void 0 ? {} : _customProps$Containe;
|
|
58
|
+
|
|
59
|
+
var listA11y = _objectSpread({
|
|
60
|
+
role: 'option'
|
|
61
|
+
}, a11y);
|
|
62
|
+
|
|
63
|
+
function handleRef(ele) {
|
|
64
|
+
getRef && getRef(ele, index);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function handleClick(e) {
|
|
68
|
+
onClick && onClick(id, value, index, e);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function handleHover(e) {
|
|
72
|
+
onHover && onHover(id, value, index, e);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
var _customClass$customLi = customClass.customListItem,
|
|
76
|
+
customListItem = _customClass$customLi === void 0 ? '' : _customClass$customLi,
|
|
77
|
+
_customClass$customRa = customClass.customRadio,
|
|
78
|
+
customRadio = _customClass$customRa === void 0 ? '' : _customClass$customRa,
|
|
79
|
+
_customClass$customRa2 = customClass.customRadioWrap,
|
|
80
|
+
customRadioWrap = _customClass$customRa2 === void 0 ? '' : _customClass$customRa2;
|
|
81
|
+
return /*#__PURE__*/_react["default"].createElement(_ListContainer["default"], _extends({
|
|
82
|
+
a11y: listA11y,
|
|
83
|
+
size: size,
|
|
84
|
+
palette: palette,
|
|
85
|
+
highlight: highlight,
|
|
86
|
+
isDisabled: isDisabled,
|
|
87
|
+
active: active,
|
|
88
|
+
autoHover: autoHover,
|
|
89
|
+
customClass: customListItem,
|
|
90
|
+
dataId: dataId,
|
|
91
|
+
dataSelectorId: dataSelectorId,
|
|
92
|
+
onClick: handleClick,
|
|
93
|
+
onMouseOver: handleHover,
|
|
94
|
+
eleRef: handleRef,
|
|
95
|
+
disableTitle: disableTitle,
|
|
96
|
+
title: null,
|
|
97
|
+
customProps: ListItemProps
|
|
98
|
+
}, ContainerProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
99
|
+
className: _ListItemModule["default"].iconBox
|
|
100
|
+
}, /*#__PURE__*/_react["default"].createElement(_Radio["default"], {
|
|
101
|
+
checked: checked,
|
|
102
|
+
id: id,
|
|
103
|
+
a11y: {
|
|
104
|
+
ariaHidden: true
|
|
105
|
+
},
|
|
106
|
+
customClass: {
|
|
107
|
+
customRadio: customRadio,
|
|
108
|
+
customRadioWrap: customRadioWrap
|
|
109
|
+
}
|
|
110
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
111
|
+
flexible: true,
|
|
112
|
+
shrink: true,
|
|
113
|
+
"data-title": disableTitle ? null : title,
|
|
114
|
+
className: needMultiLineText ? _ListItemModule["default"].multiLineValue : _ListItemModule["default"].value
|
|
115
|
+
}, value));
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
var _default = ListItemWithRadio;
|
|
119
|
+
exports["default"] = _default;
|
|
120
|
+
ListItemWithRadio.defaultProps = _defaultProps.ListItemWithRadioDefaultProps;
|
|
121
|
+
ListItemWithRadio.propTypes = _propTypes.ListItemWithRadio_Props; // if (__DOCS__) {
|
|
122
|
+
// ListItemWithRadio.docs = {
|
|
123
|
+
// componentGroup: 'Molecule',
|
|
124
|
+
// folderName: 'Style Guide'
|
|
125
|
+
// };
|
|
126
|
+
// }
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "ListContainer", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _ListContainer["default"];
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "ListItem", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _ListItem["default"];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "ListItemWithAvatar", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function get() {
|
|
21
|
+
return _ListItemWithAvatar["default"];
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "ListItemWithCheckBox", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return _ListItemWithCheckBox["default"];
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "ListItemWithIcon", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function get() {
|
|
33
|
+
return _ListItemWithIcon["default"];
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "ListItemWithRadio", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function get() {
|
|
39
|
+
return _ListItemWithRadio["default"];
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
var _ListContainer = _interopRequireDefault(require("./ListContainer"));
|
|
44
|
+
|
|
45
|
+
var _ListItem = _interopRequireDefault(require("./ListItem"));
|
|
46
|
+
|
|
47
|
+
var _ListItemWithAvatar = _interopRequireDefault(require("./ListItemWithAvatar"));
|
|
48
|
+
|
|
49
|
+
var _ListItemWithCheckBox = _interopRequireDefault(require("./ListItemWithCheckBox"));
|
|
50
|
+
|
|
51
|
+
var _ListItemWithIcon = _interopRequireDefault(require("./ListItemWithIcon"));
|
|
52
|
+
|
|
53
|
+
var _ListItemWithRadio = _interopRequireDefault(require("./ListItemWithRadio"));
|
|
54
|
+
|
|
55
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -0,0 +1,212 @@
|
|
|
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 _reactDom = _interopRequireDefault(require("react-dom"));
|
|
13
|
+
|
|
14
|
+
var _defaultProps = require("../../Modal/props/defaultProps");
|
|
15
|
+
|
|
16
|
+
var _propTypes = require("../../Modal/props/propTypes");
|
|
17
|
+
|
|
18
|
+
var _AppContainerModule = _interopRequireDefault(require("../../AppContainer/AppContainer.module.css"));
|
|
19
|
+
|
|
20
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
21
|
+
|
|
22
|
+
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); }
|
|
23
|
+
|
|
24
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
25
|
+
|
|
26
|
+
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); } }
|
|
27
|
+
|
|
28
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
29
|
+
|
|
30
|
+
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); }
|
|
31
|
+
|
|
32
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
33
|
+
|
|
34
|
+
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); }; }
|
|
35
|
+
|
|
36
|
+
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); }
|
|
37
|
+
|
|
38
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
39
|
+
|
|
40
|
+
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; } }
|
|
41
|
+
|
|
42
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
43
|
+
|
|
44
|
+
var createdPortalIds = [];
|
|
45
|
+
var newPortalPrefix = 'CPortal';
|
|
46
|
+
var portalChildrenTopIndexValues;
|
|
47
|
+
|
|
48
|
+
var Modal = /*#__PURE__*/function (_React$Component) {
|
|
49
|
+
_inherits(Modal, _React$Component);
|
|
50
|
+
|
|
51
|
+
var _super = _createSuper(Modal);
|
|
52
|
+
|
|
53
|
+
function Modal(props) {
|
|
54
|
+
var _this;
|
|
55
|
+
|
|
56
|
+
_classCallCheck(this, Modal);
|
|
57
|
+
|
|
58
|
+
_this = _super.call(this, props);
|
|
59
|
+
_this.handleAddPortalId = _this.handleAddPortalId.bind(_assertThisInitialized(_this));
|
|
60
|
+
_this.handleRemovePortalId = _this.handleRemovePortalId.bind(_assertThisInitialized(_this));
|
|
61
|
+
_this.handleInsertPortalDiv = _this.handleInsertPortalDiv.bind(_assertThisInitialized(_this));
|
|
62
|
+
_this.getPortalDiv = _this.getPortalDiv.bind(_assertThisInitialized(_this));
|
|
63
|
+
_this.state = {
|
|
64
|
+
isMounted: false
|
|
65
|
+
};
|
|
66
|
+
_this.portalId = props.portalId;
|
|
67
|
+
_this.setRef = _this.setRef.bind(_assertThisInitialized(_this));
|
|
68
|
+
_this.ref = null; // this.portalDiv = document.createDocumentFragment();
|
|
69
|
+
|
|
70
|
+
return _this;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
_createClass(Modal, [{
|
|
74
|
+
key: "setRef",
|
|
75
|
+
value: function setRef(ele) {
|
|
76
|
+
this.ref = ele;
|
|
77
|
+
|
|
78
|
+
if (this.isZIndexAppendNeeded) {
|
|
79
|
+
this.ref.style.zIndex = this.zIndex;
|
|
80
|
+
this.isZIndexAppendNeeded = false;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}, {
|
|
84
|
+
key: "getPortalDiv",
|
|
85
|
+
value: function getPortalDiv() {
|
|
86
|
+
this.modalRoot = this.props.portalId ? document.querySelector("[data-portal=".concat(this.props.portalId, "]")) : '';
|
|
87
|
+
|
|
88
|
+
if (!this.modalRoot) {
|
|
89
|
+
this.portalId = this.handleAddPortalId();
|
|
90
|
+
this.newModalRoot = document.createElement('div');
|
|
91
|
+
this.newModalRoot.className = _AppContainerModule["default"].container;
|
|
92
|
+
this.newModalRoot.setAttribute('data-portal', this.portalId);
|
|
93
|
+
this.containerDiv && this.containerDiv.appendChild(this.newModalRoot);
|
|
94
|
+
this.modalRoot = this.newModalRoot;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
return this.modalRoot;
|
|
98
|
+
}
|
|
99
|
+
}, {
|
|
100
|
+
key: "componentDidMount",
|
|
101
|
+
value: function componentDidMount() {
|
|
102
|
+
var _this2 = this;
|
|
103
|
+
|
|
104
|
+
this.containerDiv = document.getElementsByTagName('desk')[0] ? document.getElementsByTagName('desk')[0] : document.getElementsByTagName('body')[0];
|
|
105
|
+
this.portalDiv = this.getPortalDiv();
|
|
106
|
+
this.setState({
|
|
107
|
+
isMounted: true
|
|
108
|
+
}, function () {
|
|
109
|
+
_this2.handleInsertPortalDiv();
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
}, {
|
|
113
|
+
key: "componentWillUnmount",
|
|
114
|
+
value: function componentWillUnmount() {
|
|
115
|
+
//this.modalRoot && this.modalRoot.removeChild(this.portalDiv);
|
|
116
|
+
if (this.newModalRoot) {
|
|
117
|
+
this.containerDiv && this.containerDiv.removeChild(this.newModalRoot);
|
|
118
|
+
this.handleRemovePortalId();
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
if (this.zIndex && portalChildrenTopIndexValues === this.zIndex) {
|
|
122
|
+
portalChildrenTopIndexValues -= 1;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}, {
|
|
126
|
+
key: "componentDidUpdate",
|
|
127
|
+
value: function componentDidUpdate(prevProps) {
|
|
128
|
+
if (prevProps.isActive != this.props.isActive) {
|
|
129
|
+
if (this.props.isActive) {
|
|
130
|
+
this.handleInsertPortalDiv();
|
|
131
|
+
} else if (this.zIndex && portalChildrenTopIndexValues === this.zIndex) {
|
|
132
|
+
portalChildrenTopIndexValues -= 1;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}, {
|
|
137
|
+
key: "handleInsertPortalDiv",
|
|
138
|
+
value: function handleInsertPortalDiv() {
|
|
139
|
+
var autoZIndexNeeded = this.props.autoZIndexNeeded;
|
|
140
|
+
|
|
141
|
+
if (autoZIndexNeeded) {
|
|
142
|
+
var isActive = this.props.isActive;
|
|
143
|
+
|
|
144
|
+
if (isActive) {
|
|
145
|
+
var newHighValue = Number(portalChildrenTopIndexValues || 10) + 1;
|
|
146
|
+
portalChildrenTopIndexValues = newHighValue;
|
|
147
|
+
this.zIndex = newHighValue;
|
|
148
|
+
|
|
149
|
+
if (this.ref) {
|
|
150
|
+
this.ref.style.zIndex = newHighValue;
|
|
151
|
+
} else {
|
|
152
|
+
this.isZIndexAppendNeeded = true;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}, {
|
|
158
|
+
key: "handleAddPortalId",
|
|
159
|
+
value: function handleAddPortalId() {
|
|
160
|
+
var createdPortalIdsLen = createdPortalIds.length;
|
|
161
|
+
var newPortalId = createdPortalIdsLen ? createdPortalIds[createdPortalIdsLen - 1] + 1 : 1;
|
|
162
|
+
createdPortalIds.push(newPortalId);
|
|
163
|
+
this.portalId = newPortalId;
|
|
164
|
+
this.isCustomPortalId = true;
|
|
165
|
+
return "".concat(newPortalPrefix).concat(newPortalId);
|
|
166
|
+
}
|
|
167
|
+
}, {
|
|
168
|
+
key: "handleRemovePortalId",
|
|
169
|
+
value: function handleRemovePortalId() {
|
|
170
|
+
var _this3 = this;
|
|
171
|
+
|
|
172
|
+
if (this.isCustomPortalId) {
|
|
173
|
+
createdPortalIds = createdPortalIds.filter(function (id) {
|
|
174
|
+
return id !== _this3.portalId;
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}, {
|
|
179
|
+
key: "render",
|
|
180
|
+
value: function render() {
|
|
181
|
+
var children = this.props.children,
|
|
182
|
+
isMounted = this.state.isMounted;
|
|
183
|
+
var Element = children.type,
|
|
184
|
+
elementProps = children.props;
|
|
185
|
+
|
|
186
|
+
if (isMounted) {
|
|
187
|
+
if (Element) {
|
|
188
|
+
return /*#__PURE__*/_reactDom["default"].createPortal( /*#__PURE__*/_react["default"].createElement(Element, _extends({
|
|
189
|
+
ref: this.setRef
|
|
190
|
+
}, elementProps)), this.portalDiv);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
return null;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
return null;
|
|
197
|
+
}
|
|
198
|
+
}]);
|
|
199
|
+
|
|
200
|
+
return Modal;
|
|
201
|
+
}(_react["default"].Component);
|
|
202
|
+
|
|
203
|
+
exports["default"] = Modal;
|
|
204
|
+
Modal.defaultProps = _defaultProps.defaultProps;
|
|
205
|
+
Modal.propTypes = _propTypes.propTypes; // if (__DOCS__) {
|
|
206
|
+
// Modal.docs = {
|
|
207
|
+
// componentGroup: 'Atom',
|
|
208
|
+
// folderName: 'Style Guide',
|
|
209
|
+
// external: false,
|
|
210
|
+
// description: ' '
|
|
211
|
+
// };
|
|
212
|
+
// }
|