@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,124 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
/**** Libraries ****/
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Box } from '../Layout';
|
|
6
|
+
import ListContainer from './ListContainer';
|
|
7
|
+
import { ListItemDefaultProps } from '../../ListItem/props/defaultProps';
|
|
8
|
+
import { ListItem_Props } from '../../ListItem/props/propTypes';
|
|
9
|
+
/**** Components ****/
|
|
10
|
+
|
|
11
|
+
import { Icon } from '@zohodesk/icons';
|
|
12
|
+
/**** CSS ****/
|
|
13
|
+
|
|
14
|
+
import style from '../../ListItem/ListItem.module.css';
|
|
15
|
+
|
|
16
|
+
const ListItem = props => {
|
|
17
|
+
let {
|
|
18
|
+
size,
|
|
19
|
+
active,
|
|
20
|
+
highlight,
|
|
21
|
+
value,
|
|
22
|
+
autoHover,
|
|
23
|
+
palette,
|
|
24
|
+
title,
|
|
25
|
+
disableTitle,
|
|
26
|
+
needTick,
|
|
27
|
+
isLink,
|
|
28
|
+
href,
|
|
29
|
+
target,
|
|
30
|
+
needBorder,
|
|
31
|
+
isDisabled,
|
|
32
|
+
children,
|
|
33
|
+
dataId,
|
|
34
|
+
dataSelectorId,
|
|
35
|
+
a11y,
|
|
36
|
+
customClass,
|
|
37
|
+
customProps,
|
|
38
|
+
needMultiLineText,
|
|
39
|
+
getRef,
|
|
40
|
+
index,
|
|
41
|
+
id,
|
|
42
|
+
onClick,
|
|
43
|
+
onMouseEnter
|
|
44
|
+
} = props;
|
|
45
|
+
|
|
46
|
+
function handleRef(ele) {
|
|
47
|
+
getRef && getRef(ele, index, id);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function handleClick(e) {
|
|
51
|
+
onClick && onClick(id, value, index, e);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function handleMouseEnter(e) {
|
|
55
|
+
onMouseEnter && onMouseEnter(id, value, index, e);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
let {
|
|
59
|
+
ListItemProps = {},
|
|
60
|
+
ContainerProps = {}
|
|
61
|
+
} = customProps;
|
|
62
|
+
let {
|
|
63
|
+
customListItem = '',
|
|
64
|
+
customTickIcon = ''
|
|
65
|
+
} = customClass;
|
|
66
|
+
const listA11y = {
|
|
67
|
+
ariaHidden: true,
|
|
68
|
+
role: 'option',
|
|
69
|
+
...a11y
|
|
70
|
+
};
|
|
71
|
+
let {
|
|
72
|
+
ariaHidden
|
|
73
|
+
} = listA11y;
|
|
74
|
+
let tickIconPalette = style[`${palette}Tick`] ? style[`${palette}Tick`] : '';
|
|
75
|
+
let dataIdString = dataId ? dataId : value ? String(value).replace("'", '_') : 'listItem';
|
|
76
|
+
return /*#__PURE__*/React.createElement(ListContainer, _extends({
|
|
77
|
+
a11y: listA11y,
|
|
78
|
+
size: size,
|
|
79
|
+
palette: palette,
|
|
80
|
+
highlight: highlight,
|
|
81
|
+
isDisabled: isDisabled,
|
|
82
|
+
active: active,
|
|
83
|
+
autoHover: autoHover,
|
|
84
|
+
needTick: needTick,
|
|
85
|
+
needBorder: needBorder,
|
|
86
|
+
customClass: customListItem,
|
|
87
|
+
dataId: dataIdString,
|
|
88
|
+
dataSelectorId: `${dataSelectorId}`,
|
|
89
|
+
isLink: isLink,
|
|
90
|
+
href: href,
|
|
91
|
+
target: target,
|
|
92
|
+
disableTitle: disableTitle,
|
|
93
|
+
title: title,
|
|
94
|
+
onClick: handleClick,
|
|
95
|
+
onMouseEnter: handleMouseEnter,
|
|
96
|
+
eleRef: handleRef,
|
|
97
|
+
customProps: ListItemProps
|
|
98
|
+
}, ContainerProps), value ? /*#__PURE__*/React.createElement(Box, {
|
|
99
|
+
shrink: true,
|
|
100
|
+
adjust: true,
|
|
101
|
+
className: needMultiLineText ? style.multiLineValue : style.value
|
|
102
|
+
}, value) : null, children ? /*#__PURE__*/React.createElement(Box, {
|
|
103
|
+
shrink: true,
|
|
104
|
+
adjust: true,
|
|
105
|
+
className: style.children
|
|
106
|
+
}, children) : null, needTick && active ? /*#__PURE__*/React.createElement(Box, {
|
|
107
|
+
className: `${style.tickIcon} ${tickIconPalette} ${customTickIcon}`,
|
|
108
|
+
"aria-hidden": ariaHidden,
|
|
109
|
+
dataId: `${dataIdString}_tickIcon`,
|
|
110
|
+
dataSelectorId: `${dataSelectorId}_tickIcon`
|
|
111
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
112
|
+
name: "ZD-ticknew",
|
|
113
|
+
size: "8"
|
|
114
|
+
})) : null);
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
export default ListItem;
|
|
118
|
+
ListItem.defaultProps = ListItemDefaultProps;
|
|
119
|
+
ListItem.propTypes = ListItem_Props; // if (__DOCS__) {
|
|
120
|
+
// ListItem.docs = {
|
|
121
|
+
// componentGroup: 'Molecule',
|
|
122
|
+
// folderName: 'Style Guide'
|
|
123
|
+
// };
|
|
124
|
+
// }
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
/**** Libraries ****/
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Box } from '../Layout';
|
|
6
|
+
import ListContainer from './ListContainer';
|
|
7
|
+
import { ListItemWithAvatarDefaultProps } from '../../ListItem/props/defaultProps';
|
|
8
|
+
import { ListItemWithAvatar_Props } from '../../ListItem/props/propTypes';
|
|
9
|
+
/**** Components ****/
|
|
10
|
+
|
|
11
|
+
import Avatar from '../Avatar/Avatar';
|
|
12
|
+
import AvatarTeam from '../AvatarTeam/AvatarTeam';
|
|
13
|
+
import { Icon } from '@zohodesk/icons';
|
|
14
|
+
/**** CSS ****/
|
|
15
|
+
|
|
16
|
+
import style from '../../ListItem/ListItem.module.css';
|
|
17
|
+
|
|
18
|
+
const ListItemWithAvatar = props => {
|
|
19
|
+
let {
|
|
20
|
+
size,
|
|
21
|
+
active,
|
|
22
|
+
highlight,
|
|
23
|
+
value,
|
|
24
|
+
name,
|
|
25
|
+
imgSrc,
|
|
26
|
+
autoHover,
|
|
27
|
+
isTeam,
|
|
28
|
+
palette,
|
|
29
|
+
title,
|
|
30
|
+
needTick,
|
|
31
|
+
dataId,
|
|
32
|
+
dataSelectorId,
|
|
33
|
+
initial,
|
|
34
|
+
isDisabled,
|
|
35
|
+
needBorder,
|
|
36
|
+
disableTitle,
|
|
37
|
+
needAvatarTitle,
|
|
38
|
+
avatarPalette,
|
|
39
|
+
a11y,
|
|
40
|
+
customClass,
|
|
41
|
+
customProps,
|
|
42
|
+
needMultiLineText,
|
|
43
|
+
index,
|
|
44
|
+
id,
|
|
45
|
+
getRef,
|
|
46
|
+
onClick,
|
|
47
|
+
onMouseEnter
|
|
48
|
+
} = props;
|
|
49
|
+
|
|
50
|
+
function handleRef(ele) {
|
|
51
|
+
getRef && getRef(ele, index, id);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function handleClick(e) {
|
|
55
|
+
onClick && onClick(id, value, index, e);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function handleMouseEnter(e) {
|
|
59
|
+
onMouseEnter && onMouseEnter(id, value, index, e);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
let {
|
|
63
|
+
ListItemProps = {},
|
|
64
|
+
ContainerProps = {}
|
|
65
|
+
} = customProps;
|
|
66
|
+
let {
|
|
67
|
+
customListItem = '',
|
|
68
|
+
customAvatar = '',
|
|
69
|
+
customAvatarTeam = ''
|
|
70
|
+
} = customClass;
|
|
71
|
+
const listA11y = {
|
|
72
|
+
ariaHidden: true,
|
|
73
|
+
role: 'option',
|
|
74
|
+
...a11y
|
|
75
|
+
};
|
|
76
|
+
let {
|
|
77
|
+
ariaHidden
|
|
78
|
+
} = listA11y;
|
|
79
|
+
let isDarkPalette = palette === 'dark';
|
|
80
|
+
let dataIdString = value ? value : dataId;
|
|
81
|
+
return /*#__PURE__*/React.createElement(ListContainer, _extends({
|
|
82
|
+
a11y: listA11y,
|
|
83
|
+
size: size,
|
|
84
|
+
palette: palette,
|
|
85
|
+
highlight: highlight,
|
|
86
|
+
isDisabled: isDisabled,
|
|
87
|
+
active: active,
|
|
88
|
+
autoHover: autoHover,
|
|
89
|
+
needTick: needTick,
|
|
90
|
+
needBorder: needBorder,
|
|
91
|
+
customClass: customListItem,
|
|
92
|
+
dataId: `${dataIdString}_ListItemWithAvatar`,
|
|
93
|
+
dataSelectorId: `${dataSelectorId}`,
|
|
94
|
+
onClick: handleClick,
|
|
95
|
+
onMouseEnter: handleMouseEnter,
|
|
96
|
+
eleRef: handleRef,
|
|
97
|
+
disableTitle: disableTitle,
|
|
98
|
+
title: null,
|
|
99
|
+
customProps: ListItemProps
|
|
100
|
+
}, ContainerProps), name || imgSrc ? /*#__PURE__*/React.createElement(Box, {
|
|
101
|
+
className: style.leftAvatar
|
|
102
|
+
}, isTeam ? /*#__PURE__*/React.createElement(AvatarTeam, {
|
|
103
|
+
name: name,
|
|
104
|
+
size: "small",
|
|
105
|
+
src: imgSrc,
|
|
106
|
+
needTitle: needAvatarTitle,
|
|
107
|
+
textPalette: isDarkPalette ? 'white' : '',
|
|
108
|
+
palette: isDarkPalette ? 'info' : avatarPalette,
|
|
109
|
+
customClass: {
|
|
110
|
+
customAvatar: customAvatar,
|
|
111
|
+
customAvatarTeam: customAvatarTeam
|
|
112
|
+
}
|
|
113
|
+
}) : /*#__PURE__*/React.createElement(Avatar, {
|
|
114
|
+
name: name,
|
|
115
|
+
size: "small",
|
|
116
|
+
src: imgSrc,
|
|
117
|
+
initial: initial,
|
|
118
|
+
textPalette: isDarkPalette ? 'white' : '',
|
|
119
|
+
needTitle: needAvatarTitle,
|
|
120
|
+
palette: isDarkPalette ? 'info' : avatarPalette,
|
|
121
|
+
customClass: customAvatar
|
|
122
|
+
})) : null, value ? /*#__PURE__*/React.createElement(Box, {
|
|
123
|
+
flexible: true,
|
|
124
|
+
shrink: true,
|
|
125
|
+
"data-title": isDisabled ? null : title,
|
|
126
|
+
className: needMultiLineText ? style.multiLineValue : style.value
|
|
127
|
+
}, value) : null, needTick && active ? /*#__PURE__*/React.createElement(Box, {
|
|
128
|
+
className: style.tickIcon,
|
|
129
|
+
"aria-hidden": ariaHidden,
|
|
130
|
+
dataId: `${dataIdString}_tickIcon`,
|
|
131
|
+
dataSelectorId: `${dataSelectorId}_tickIcon`
|
|
132
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
133
|
+
name: "ZD-ticknew",
|
|
134
|
+
size: "8"
|
|
135
|
+
})) : null);
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
export default ListItemWithAvatar;
|
|
139
|
+
ListItemWithAvatar.defaultProps = ListItemWithAvatarDefaultProps;
|
|
140
|
+
ListItemWithAvatar.propTypes = ListItemWithAvatar_Props; // if (__DOCS__) {
|
|
141
|
+
// ListItemWithAvatar.docs = {
|
|
142
|
+
// componentGroup: 'Molecule',
|
|
143
|
+
// folderName: 'Style Guide'
|
|
144
|
+
// };
|
|
145
|
+
// }
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import ListContainer from './ListContainer';
|
|
5
|
+
import { ListItemWithCheckBoxDefaultProps } from '../../ListItem/props/defaultProps';
|
|
6
|
+
import { ListItemWithCheckBox_Props } from '../../ListItem/props/propTypes';
|
|
7
|
+
import CheckBox from '../CheckBox/CheckBox';
|
|
8
|
+
import { Box } from '../Layout';
|
|
9
|
+
import style from '../../ListItem/ListItem.module.css';
|
|
10
|
+
|
|
11
|
+
const ListItemWithCheckBox = props => {
|
|
12
|
+
let {
|
|
13
|
+
size,
|
|
14
|
+
active,
|
|
15
|
+
highlight,
|
|
16
|
+
value,
|
|
17
|
+
checked,
|
|
18
|
+
autoHover,
|
|
19
|
+
palette,
|
|
20
|
+
dataId,
|
|
21
|
+
dataSelectorId,
|
|
22
|
+
title,
|
|
23
|
+
isDisabled,
|
|
24
|
+
disableTitle,
|
|
25
|
+
a11y,
|
|
26
|
+
customClass,
|
|
27
|
+
customProps,
|
|
28
|
+
needMultiLineText,
|
|
29
|
+
id,
|
|
30
|
+
index,
|
|
31
|
+
onHover,
|
|
32
|
+
onClick,
|
|
33
|
+
getRef
|
|
34
|
+
} = props;
|
|
35
|
+
|
|
36
|
+
function handleRef(ele) {
|
|
37
|
+
getRef && getRef(ele, index);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function handleClick(e) {
|
|
41
|
+
onClick && onClick(id, value, index, e);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function handleHover(e) {
|
|
45
|
+
onHover && onHover(id, value, index, e);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
const listA11y = {
|
|
49
|
+
role: 'option',
|
|
50
|
+
...a11y
|
|
51
|
+
};
|
|
52
|
+
let {
|
|
53
|
+
ListItemProps = {},
|
|
54
|
+
ContainerProps = {}
|
|
55
|
+
} = customProps;
|
|
56
|
+
let {
|
|
57
|
+
customListItem = '',
|
|
58
|
+
customCheckBox = '',
|
|
59
|
+
customLabel = ''
|
|
60
|
+
} = customClass;
|
|
61
|
+
return /*#__PURE__*/React.createElement(ListContainer, _extends({
|
|
62
|
+
a11y: listA11y,
|
|
63
|
+
size: size,
|
|
64
|
+
palette: palette,
|
|
65
|
+
highlight: highlight,
|
|
66
|
+
isDisabled: isDisabled,
|
|
67
|
+
active: active,
|
|
68
|
+
autoHover: autoHover,
|
|
69
|
+
customClass: customListItem,
|
|
70
|
+
dataId: `${dataId ? dataId : value}_ListItemWithCheckBox`,
|
|
71
|
+
dataSelectorId: dataSelectorId,
|
|
72
|
+
onClick: handleClick,
|
|
73
|
+
onMouseOver: handleHover,
|
|
74
|
+
eleRef: handleRef,
|
|
75
|
+
disableTitle: disableTitle,
|
|
76
|
+
title: null,
|
|
77
|
+
customProps: ListItemProps
|
|
78
|
+
}, ContainerProps), /*#__PURE__*/React.createElement(Box, {
|
|
79
|
+
className: style.iconBox
|
|
80
|
+
}, /*#__PURE__*/React.createElement(CheckBox, {
|
|
81
|
+
checked: checked,
|
|
82
|
+
a11y: {
|
|
83
|
+
ariaHidden: true
|
|
84
|
+
},
|
|
85
|
+
customClass: {
|
|
86
|
+
customCheckBox: customCheckBox,
|
|
87
|
+
customLabel: customLabel
|
|
88
|
+
}
|
|
89
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
90
|
+
flexible: true,
|
|
91
|
+
shrink: true,
|
|
92
|
+
"data-title": isDisabled ? null : title,
|
|
93
|
+
className: needMultiLineText ? style.multiLineValue : style.value
|
|
94
|
+
}, value));
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
export default ListItemWithCheckBox;
|
|
98
|
+
ListItemWithCheckBox.defaultProps = ListItemWithCheckBoxDefaultProps;
|
|
99
|
+
ListItemWithCheckBox.propTypes = ListItemWithCheckBox_Props; // if (__DOCS__) {
|
|
100
|
+
// ListItemWithCheckBox.docs = {
|
|
101
|
+
// componentGroup: 'Molecule',
|
|
102
|
+
// folderName: 'Style Guide'
|
|
103
|
+
// };
|
|
104
|
+
// }
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
/**** Libraries ****/
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Box } from '../Layout';
|
|
6
|
+
import { Icon } from '@zohodesk/icons';
|
|
7
|
+
import ListContainer from './ListContainer';
|
|
8
|
+
import { ListItemWithIconDefaultProps } from '../../ListItem/props/defaultProps';
|
|
9
|
+
import { ListItemWithIcon_Props } from '../../ListItem/props/propTypes';
|
|
10
|
+
/**** CSS ****/
|
|
11
|
+
|
|
12
|
+
import style from '../../ListItem/ListItem.module.css';
|
|
13
|
+
|
|
14
|
+
const ListItemWithIcon = props => {
|
|
15
|
+
let {
|
|
16
|
+
size,
|
|
17
|
+
active,
|
|
18
|
+
highlight,
|
|
19
|
+
value,
|
|
20
|
+
iconName,
|
|
21
|
+
iconSize,
|
|
22
|
+
autoHover,
|
|
23
|
+
palette,
|
|
24
|
+
iconClass,
|
|
25
|
+
dataId,
|
|
26
|
+
dataSelectorId,
|
|
27
|
+
title,
|
|
28
|
+
needTick,
|
|
29
|
+
isLink,
|
|
30
|
+
href,
|
|
31
|
+
target,
|
|
32
|
+
needBorder,
|
|
33
|
+
isDisabled,
|
|
34
|
+
disableTitle,
|
|
35
|
+
a11y,
|
|
36
|
+
customClass,
|
|
37
|
+
customProps,
|
|
38
|
+
needMultiLineText,
|
|
39
|
+
getRef,
|
|
40
|
+
onClick,
|
|
41
|
+
onMouseEnter,
|
|
42
|
+
index,
|
|
43
|
+
id
|
|
44
|
+
} = props;
|
|
45
|
+
|
|
46
|
+
function handleRef(ele) {
|
|
47
|
+
getRef && getRef(ele, index, id);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function handleClick(e) {
|
|
51
|
+
onClick && onClick(id, value, index, e);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function handleMouseEnter(e) {
|
|
55
|
+
onMouseEnter && onMouseEnter(id, value, index, e);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
let {
|
|
59
|
+
ListItemProps = {},
|
|
60
|
+
ContainerProps = {}
|
|
61
|
+
} = customProps;
|
|
62
|
+
const listA11y = {
|
|
63
|
+
ariaHidden: true,
|
|
64
|
+
role: 'option',
|
|
65
|
+
...a11y
|
|
66
|
+
};
|
|
67
|
+
let {
|
|
68
|
+
ariaHidden
|
|
69
|
+
} = listA11y;
|
|
70
|
+
let dataIdString = dataId ? `${dataId.replace("'", '_')}` : value.toLowerCase().replace("'", '_');
|
|
71
|
+
return /*#__PURE__*/React.createElement(ListContainer, _extends({
|
|
72
|
+
a11y: listA11y,
|
|
73
|
+
size: size,
|
|
74
|
+
palette: palette,
|
|
75
|
+
highlight: highlight,
|
|
76
|
+
isDisabled: isDisabled,
|
|
77
|
+
active: active,
|
|
78
|
+
autoHover: autoHover,
|
|
79
|
+
needTick: needTick,
|
|
80
|
+
needBorder: needBorder,
|
|
81
|
+
customClass: customClass,
|
|
82
|
+
dataId: dataIdString,
|
|
83
|
+
dataSelectorId: dataSelectorId,
|
|
84
|
+
isLink: isLink,
|
|
85
|
+
href: href,
|
|
86
|
+
target: target,
|
|
87
|
+
onClick: handleClick,
|
|
88
|
+
onMouseOver: handleMouseEnter,
|
|
89
|
+
eleRef: handleRef,
|
|
90
|
+
disableTitle: disableTitle,
|
|
91
|
+
title: null,
|
|
92
|
+
customProps: ListItemProps
|
|
93
|
+
}, ContainerProps), iconName && /*#__PURE__*/React.createElement(Box, {
|
|
94
|
+
"aria-hidden": true,
|
|
95
|
+
className: style.iconBox,
|
|
96
|
+
dataId: dataId ? `${dataId}_Icon` : `${value.toLowerCase().replace("'", '_')}_Icon`
|
|
97
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
98
|
+
iconClass: iconClass,
|
|
99
|
+
name: iconName,
|
|
100
|
+
size: iconSize
|
|
101
|
+
})), iconClass && !iconName ? /*#__PURE__*/React.createElement("span", {
|
|
102
|
+
className: iconClass
|
|
103
|
+
}) : null, value && /*#__PURE__*/React.createElement(Box, {
|
|
104
|
+
flexible: true,
|
|
105
|
+
shrink: true,
|
|
106
|
+
className: needMultiLineText ? style.multiLineValue : style.value,
|
|
107
|
+
"data-title": isDisabled ? null : title,
|
|
108
|
+
dataId: `${dataIdString}_Text`
|
|
109
|
+
}, value), needTick && active ? /*#__PURE__*/React.createElement(Box, {
|
|
110
|
+
className: style.tickIcon,
|
|
111
|
+
"aria-hidden": ariaHidden,
|
|
112
|
+
dataId: `${dataIdString}_tickIcon`,
|
|
113
|
+
dataSelectorId: `${dataSelectorId}_tickIcon`
|
|
114
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
115
|
+
name: "ZD-ticknew",
|
|
116
|
+
size: "8"
|
|
117
|
+
})) : null);
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
export default ListItemWithIcon;
|
|
121
|
+
ListItemWithIcon.defaultProps = ListItemWithIconDefaultProps;
|
|
122
|
+
ListItemWithIcon.propTypes = ListItemWithIcon_Props; // if (__DOCS__) {
|
|
123
|
+
// ListItemWithIcon.docs = {
|
|
124
|
+
// componentGroup: 'Molecule',
|
|
125
|
+
// folderName: 'Style Guide'
|
|
126
|
+
// };
|
|
127
|
+
// }
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import Radio from '../Radio/Radio';
|
|
5
|
+
import { Box } from '../Layout';
|
|
6
|
+
import ListContainer from './ListContainer';
|
|
7
|
+
import { ListItemWithRadioDefaultProps } from '../../ListItem/props/defaultProps';
|
|
8
|
+
import { ListItemWithRadio_Props } from '../../ListItem/props/propTypes';
|
|
9
|
+
import style from '../../ListItem/ListItem.module.css';
|
|
10
|
+
|
|
11
|
+
const ListItemWithRadio = props => {
|
|
12
|
+
let {
|
|
13
|
+
size,
|
|
14
|
+
active,
|
|
15
|
+
highlight,
|
|
16
|
+
value,
|
|
17
|
+
checked,
|
|
18
|
+
autoHover,
|
|
19
|
+
palette,
|
|
20
|
+
id,
|
|
21
|
+
dataId,
|
|
22
|
+
dataSelectorId,
|
|
23
|
+
title,
|
|
24
|
+
isDisabled,
|
|
25
|
+
disableTitle,
|
|
26
|
+
a11y,
|
|
27
|
+
customClass,
|
|
28
|
+
customProps,
|
|
29
|
+
needMultiLineText,
|
|
30
|
+
getRef,
|
|
31
|
+
onClick,
|
|
32
|
+
onHover,
|
|
33
|
+
index
|
|
34
|
+
} = props;
|
|
35
|
+
let {
|
|
36
|
+
ListItemProps = {},
|
|
37
|
+
ContainerProps = {}
|
|
38
|
+
} = customProps;
|
|
39
|
+
const listA11y = {
|
|
40
|
+
role: 'option',
|
|
41
|
+
...a11y
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
function handleRef(ele) {
|
|
45
|
+
getRef && getRef(ele, index);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function handleClick(e) {
|
|
49
|
+
onClick && onClick(id, value, index, e);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function handleHover(e) {
|
|
53
|
+
onHover && onHover(id, value, index, e);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
let {
|
|
57
|
+
customListItem = '',
|
|
58
|
+
customRadio = '',
|
|
59
|
+
customRadioWrap = ''
|
|
60
|
+
} = customClass;
|
|
61
|
+
return /*#__PURE__*/React.createElement(ListContainer, _extends({
|
|
62
|
+
a11y: listA11y,
|
|
63
|
+
size: size,
|
|
64
|
+
palette: palette,
|
|
65
|
+
highlight: highlight,
|
|
66
|
+
isDisabled: isDisabled,
|
|
67
|
+
active: active,
|
|
68
|
+
autoHover: autoHover,
|
|
69
|
+
customClass: customListItem,
|
|
70
|
+
dataId: dataId,
|
|
71
|
+
dataSelectorId: dataSelectorId,
|
|
72
|
+
onClick: handleClick,
|
|
73
|
+
onMouseOver: handleHover,
|
|
74
|
+
eleRef: handleRef,
|
|
75
|
+
disableTitle: disableTitle,
|
|
76
|
+
title: null,
|
|
77
|
+
customProps: ListItemProps
|
|
78
|
+
}, ContainerProps), /*#__PURE__*/React.createElement(Box, {
|
|
79
|
+
className: style.iconBox
|
|
80
|
+
}, /*#__PURE__*/React.createElement(Radio, {
|
|
81
|
+
checked: checked,
|
|
82
|
+
id: id,
|
|
83
|
+
a11y: {
|
|
84
|
+
ariaHidden: true
|
|
85
|
+
},
|
|
86
|
+
customClass: {
|
|
87
|
+
customRadio: customRadio,
|
|
88
|
+
customRadioWrap: customRadioWrap
|
|
89
|
+
}
|
|
90
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
91
|
+
flexible: true,
|
|
92
|
+
shrink: true,
|
|
93
|
+
"data-title": disableTitle ? null : title,
|
|
94
|
+
className: needMultiLineText ? style.multiLineValue : style.value
|
|
95
|
+
}, value));
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
export default ListItemWithRadio;
|
|
99
|
+
ListItemWithRadio.defaultProps = ListItemWithRadioDefaultProps;
|
|
100
|
+
ListItemWithRadio.propTypes = ListItemWithRadio_Props; // if (__DOCS__) {
|
|
101
|
+
// ListItemWithRadio.docs = {
|
|
102
|
+
// componentGroup: 'Molecule',
|
|
103
|
+
// folderName: 'Style Guide'
|
|
104
|
+
// };
|
|
105
|
+
// }
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { default as ListContainer } from './ListContainer';
|
|
2
|
+
export { default as ListItem } from './ListItem';
|
|
3
|
+
export { default as ListItemWithAvatar } from './ListItemWithAvatar';
|
|
4
|
+
export { default as ListItemWithCheckBox } from './ListItemWithCheckBox';
|
|
5
|
+
export { default as ListItemWithIcon } from './ListItemWithIcon';
|
|
6
|
+
export { default as ListItemWithRadio } from './ListItemWithRadio';
|