@zohodesk/dot 1.2.2 → 1.2.3
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/propValidation_report.html +1 -1
- package/README.md +5 -0
- package/coverage/ExternalLink/ExternalLink.js.html +1 -1
- package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
- package/coverage/ExternalLink/index.html +1 -1
- package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
- package/coverage/ExternalLink/props/index.html +1 -1
- package/coverage/ExternalLink/props/propTypes.js.html +1 -1
- package/coverage/Image/Image.js.html +1 -1
- package/coverage/Image/Image.module.css.html +1 -1
- package/coverage/Image/index.html +1 -1
- package/coverage/Image/props/defaultProps.js.html +1 -1
- package/coverage/Image/props/index.html +1 -1
- package/coverage/Image/props/propTypes.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
- package/coverage/avatar/AvatarWithTeam/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
- package/coverage/coverage-final.json +12 -12
- package/coverage/coverage-summary.json +12 -12
- package/coverage/index.html +1 -1
- package/es/TagWithIcon/props/propTypes.js +1 -1
- package/es/dropdown/ToggleDropDown/ToggleDropDown.js +5 -2
- package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +7 -3
- package/es/layout/SubtabLayout/props/propTypes.js +1 -1
- package/es/list/status/StatusDropdown/StatusDropdown.js +4 -1
- package/es/list/status/StatusDropdown/props/propTypes.js +2 -1
- package/es/lookup/header/ViewDropDown/ViewDropDown.js +2 -1
- package/es/setup/helptips/ListGroup/ListGroup.js +1 -1
- package/es/v1/Attachment/Attachment.js +88 -0
- package/es/v1/AttachmentViewer/AttachmentImage.js +79 -0
- package/es/v1/AttachmentViewer/AttachmentViewer.js +541 -0
- package/es/v1/ChannelIcon/ChannelIcon.js +1 -1
- package/es/v1/Drawer/Drawer.js +1 -1
- package/es/v1/FlipCard/FlipCard.js +3 -3
- package/es/v1/FreezeLayer/FreezeLayer.js +74 -0
- package/es/v1/Image/Image.js +39 -0
- package/es/v1/Link/Link.js +2 -1
- package/es/v1/Loader/Loader.js +21 -0
- package/es/v1/Message/Message.js +118 -0
- package/es/v1/MessageBanner/MessageBanner.js +1 -1
- package/es/v1/PlusIcon/PlusIcon.js +44 -0
- package/es/v1/Separator/Separator.js +60 -0
- package/es/v1/ToastMessage/ToastMessage.js +203 -0
- package/es/v1/Upload/Upload.js +76 -0
- package/es/v1/actions/AutoClose.js +43 -0
- package/es/v1/alert/index.js +2 -0
- package/es/v1/avatar/AvatarClose/AvatarClose.js +53 -0
- package/es/v1/avatar/AvatarCollision/AvatarCollision.js +62 -0
- package/es/v1/avatar/AvatarIcon/AvatarIcon.js +54 -0
- package/es/v1/avatar/AvatarStatus/AvatarStatus.js +72 -0
- package/es/v1/avatar/AvatarThread/AvatarThread.js +79 -0
- package/es/v1/avatar/AvatarUser/AvatarUser.js +116 -0
- package/es/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +98 -0
- package/es/v1/avatar/index.js +7 -0
- package/es/v1/dropdown/ToggleDropDown/ToggleDropDown.js +861 -0
- package/es/v1/emptystate/CommonEmptyState/CommonEmptyState.js +1 -0
- package/es/v1/errorstate/Inconvenience/Inconvenience.js +86 -0
- package/es/v1/errorstate/LinkText/LinkText.js +29 -0
- package/es/v1/errorstate/NoRequestFound/NoRequestFound.js +84 -0
- package/es/v1/errorstate/PermissionPlay/PermissionPlay.js +83 -0
- package/es/v1/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +84 -0
- package/es/v1/errorstate/UnableToProcess/UnableToProcess.js +86 -0
- package/es/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +84 -0
- package/es/v1/errorstate/WillBack/WillBack.js +75 -0
- package/es/v1/errorstate/index.js +8 -0
- package/es/v1/form/fields/CheckBoxField/CheckBoxField.js +141 -0
- package/es/v1/form/fields/CurrencyField/CurrencyField.js +183 -0
- package/es/v1/form/fields/DateField/DateField.js +195 -0
- package/es/v1/form/fields/FieldContainer/FieldContainer.js +71 -0
- package/es/v1/form/fields/MultiSelectField/MultiSelectField.js +213 -0
- package/es/v1/form/fields/PhoneField/PhoneField.js +189 -0
- package/es/v1/form/fields/RadioField/RadioField.js +116 -0
- package/es/v1/form/fields/SelectField/SelectField.js +183 -0
- package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +292 -0
- package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +258 -0
- package/es/v1/form/fields/TextBoxField/TextBoxField.js +164 -0
- package/es/v1/form/fields/TextEditor/TextEditor.js +418 -0
- package/es/v1/form/fields/TextEditorField/TextEditorField.js +178 -0
- package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +203 -0
- package/es/v1/form/fields/TextareaField/TextareaField.js +161 -0
- package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +58 -0
- package/es/v1/form/fields/index.js +16 -0
- package/es/v1/form/layout/Field/Field.js +33 -0
- package/es/v1/form/layout/Section/Section.js +37 -0
- package/es/v1/form/layout/index.js +2 -0
- package/es/v1/layout/SetupDetailLayout/SetupDetailLayout.js +217 -0
- package/es/v1/layout/SetupDetailLayout/index.js +4 -0
- package/es/v1/layout/SubtabLayout/SubtabLayout.js +144 -0
- package/es/v1/layout/SubtabLayout/index.js +4 -0
- package/es/v1/list/AvatarFlip/AvatarFlip.js +76 -0
- package/es/v1/list/BluePrintStatus/BluePrintStatus.js +28 -0
- package/es/v1/list/Comment/Comment.js +45 -0
- package/es/v1/list/DepartmentDropDown/DepartmentDropDown.js +100 -0
- package/es/v1/list/Dot/Dot.js +22 -0
- package/es/v1/list/DotNew/DotNew.js +29 -0
- package/es/v1/list/GridStencils/GridStencils.js +34 -0
- package/es/v1/list/Icons/AddNewIcon.js +28 -0
- package/es/v1/list/Icons/CompleteIcon.js +30 -0
- package/es/v1/list/Icons/DeleteIcon.js +31 -0
- package/es/v1/list/Icons/EditIcon.js +31 -0
- package/es/v1/list/Icons/FloatingIcons.js +30 -0
- package/es/v1/list/Icons/ReadUnreadIcon.js +35 -0
- package/es/v1/list/Icons/SmartIcon.js +28 -0
- package/es/v1/list/Icons/index.js +7 -0
- package/es/v1/list/ListLayout/ListLayout.js +83 -0
- package/es/v1/list/ListStencils/ListStencils.js +47 -0
- package/es/v1/list/SecondaryText/AccountName.js +85 -0
- package/es/v1/list/SecondaryText/ContactName.js +85 -0
- package/es/v1/list/SecondaryText/DepartmentText.js +30 -0
- package/es/v1/list/SecondaryText/Email.js +55 -0
- package/es/v1/list/SecondaryText/HappinessRating.js +31 -0
- package/es/v1/list/SecondaryText/PhoneNumber.js +59 -0
- package/es/v1/list/SecondaryText/PriorityText.js +33 -0
- package/es/v1/list/SecondaryText/SecondaryText.js +40 -0
- package/es/v1/list/SecondaryText/StatusText.js +34 -0
- package/es/v1/list/SecondaryText/TicketId.js +53 -0
- package/es/v1/list/SecondaryText/Website.js +43 -0
- package/es/v1/list/SecondaryText/index.js +11 -0
- package/es/v1/list/SecondryPanel/SecondryPanel.js +105 -0
- package/es/v1/list/SentimentStatus/SentimentStatus.js +34 -0
- package/es/v1/list/Subject/Subject.js +57 -0
- package/es/v1/list/TagNew/TagNew.js +33 -0
- package/es/v1/list/Thread/Thread.js +43 -0
- package/es/v1/list/UserTime/UserTime.js +83 -0
- package/es/v1/list/index.js +17 -0
- package/es/v1/list/status/StatusDropdown/StatusDropdown.js +465 -0
- package/es/v1/list/status/StatusListItem/StatusListItem.js +122 -0
- package/es/v1/list/status/index.js +2 -0
- package/es/v1/lookup/EmptyPage/EmptyPage.js +65 -0
- package/es/v1/lookup/Lookup/Lookup.js +2 -0
- package/es/v1/lookup/Section/Section.js +25 -0
- package/es/v1/lookup/header/ViewDropDown/ViewDropDown.js +176 -0
- package/es/v1/lookup/header/index.js +5 -0
- package/es/v1/setup/header/Button/Button.js +36 -0
- package/es/v1/setup/header/Link/Link.js +44 -0
- package/es/v1/setup/header/Search/Search.js +81 -0
- package/es/v1/setup/header/Views/Views.js +46 -0
- package/es/v1/setup/header/index.js +4 -0
- package/es/v1/setup/helptips/Description/Description.js +24 -0
- package/es/v1/setup/helptips/Link/Link.js +41 -0
- package/es/v1/setup/helptips/ListGroup/ListGroup.js +39 -0
- package/es/v1/setup/helptips/Title/Title.js +24 -0
- package/es/v1/setup/helptips/index.js +4 -0
- package/es/v1/setup/index.js +6 -0
- package/es/v1/setup/table/index.js +5 -0
- package/es/v1/svg/PlusIcon.js +32 -0
- package/es/v1/svg/SnippetIcon.js +34 -0
- package/es/v1/svg/TemplateIcon.js +35 -0
- package/es/v1/svg/index.js +3 -0
- package/es/v1/version2/alertIcons/index.js +8 -0
- package/es/v1/version2/index.js +12 -0
- package/es/v1/version2/lookup/AlertHeader/AlertHeader.js +79 -0
- package/es/v1/version2/lookup/AlertLookup/AlertLookup.js +17 -5
- package/es/v1/version2/notification/DesktopNotification/DesktopNotification.js +164 -0
- package/lib/TagWithIcon/props/propTypes.js +1 -1
- package/lib/dropdown/ToggleDropDown/ToggleDropDown.js +5 -3
- package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +8 -5
- package/lib/layout/SubtabLayout/props/propTypes.js +1 -1
- package/lib/list/status/StatusDropdown/StatusDropdown.js +4 -3
- package/lib/list/status/StatusDropdown/props/propTypes.js +1 -1
- package/lib/lookup/header/ViewDropDown/ViewDropDown.js +2 -1
- package/lib/setup/helptips/ListGroup/ListGroup.js +1 -1
- package/lib/v1/Attachment/Attachment.js +140 -0
- package/lib/v1/AttachmentViewer/AttachmentImage.js +124 -0
- package/lib/v1/AttachmentViewer/AttachmentViewer.js +625 -0
- package/lib/v1/ChannelIcon/ChannelIcon.js +1 -1
- package/lib/v1/Drawer/Drawer.js +1 -1
- package/lib/v1/FlipCard/FlipCard.js +3 -3
- package/lib/v1/FreezeLayer/FreezeLayer.js +94 -0
- package/lib/v1/Image/Image.js +89 -0
- package/lib/v1/Link/Link.js +2 -1
- package/lib/v1/Loader/Loader.js +70 -0
- package/lib/v1/Message/Message.js +170 -0
- package/lib/v1/MessageBanner/MessageBanner.js +1 -1
- package/lib/v1/PlusIcon/PlusIcon.js +91 -0
- package/lib/v1/Separator/Separator.js +107 -0
- package/lib/v1/ToastMessage/ToastMessage.js +246 -0
- package/lib/v1/Upload/Upload.js +128 -0
- package/lib/v1/actions/AutoClose.js +75 -0
- package/lib/v1/alert/index.js +23 -0
- package/lib/v1/avatar/AvatarClose/AvatarClose.js +101 -0
- package/lib/v1/avatar/AvatarCollision/AvatarCollision.js +110 -0
- package/lib/v1/avatar/AvatarIcon/AvatarIcon.js +106 -0
- package/lib/v1/avatar/AvatarStatus/AvatarStatus.js +119 -0
- package/lib/v1/avatar/AvatarThread/AvatarThread.js +130 -0
- package/lib/v1/avatar/AvatarUser/AvatarUser.js +167 -0
- package/lib/v1/avatar/AvatarWithTeam/AvatarWithTeam.js +154 -0
- package/lib/v1/avatar/index.js +63 -0
- package/lib/v1/dropdown/ToggleDropDown/ToggleDropDown.js +932 -0
- package/lib/v1/emptystate/CommonEmptyState/CommonEmptyState.js +1 -0
- package/lib/v1/errorstate/Inconvenience/Inconvenience.js +137 -0
- package/lib/v1/errorstate/LinkText/LinkText.js +80 -0
- package/lib/v1/errorstate/NoRequestFound/NoRequestFound.js +135 -0
- package/lib/v1/errorstate/PermissionPlay/PermissionPlay.js +134 -0
- package/lib/v1/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +135 -0
- package/lib/v1/errorstate/UnableToProcess/UnableToProcess.js +137 -0
- package/lib/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +135 -0
- package/lib/v1/errorstate/WillBack/WillBack.js +125 -0
- package/lib/v1/errorstate/index.js +71 -0
- package/lib/v1/form/fields/CheckBoxField/CheckBoxField.js +197 -0
- package/lib/v1/form/fields/CurrencyField/CurrencyField.js +234 -0
- package/lib/v1/form/fields/DateField/DateField.js +249 -0
- package/lib/v1/form/fields/FieldContainer/FieldContainer.js +118 -0
- package/lib/v1/form/fields/MultiSelectField/MultiSelectField.js +268 -0
- package/lib/v1/form/fields/PhoneField/PhoneField.js +236 -0
- package/lib/v1/form/fields/RadioField/RadioField.js +169 -0
- package/lib/v1/form/fields/SelectField/SelectField.js +236 -0
- package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +346 -0
- package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +299 -0
- package/lib/v1/form/fields/TextBoxField/TextBoxField.js +219 -0
- package/lib/v1/form/fields/TextEditor/TextEditor.js +463 -0
- package/lib/v1/form/fields/TextEditorField/TextEditorField.js +230 -0
- package/lib/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +256 -0
- package/lib/v1/form/fields/TextareaField/TextareaField.js +215 -0
- package/lib/v1/form/fields/ValidationMessage/ValidationMessage.js +110 -0
- package/lib/{docs/formDocs.js → v1/form/fields/index.js} +33 -25
- package/lib/v1/form/layout/Field/Field.js +87 -0
- package/lib/v1/form/layout/Section/Section.js +86 -0
- package/lib/v1/form/layout/index.js +23 -0
- package/lib/v1/layout/SetupDetailLayout/SetupDetailLayout.js +305 -0
- package/lib/v1/layout/SetupDetailLayout/index.js +37 -0
- package/lib/v1/layout/SubtabLayout/SubtabLayout.js +245 -0
- package/lib/v1/layout/SubtabLayout/index.js +37 -0
- package/lib/v1/list/AvatarFlip/AvatarFlip.js +131 -0
- package/lib/v1/list/BluePrintStatus/BluePrintStatus.js +73 -0
- package/lib/v1/list/Comment/Comment.js +98 -0
- package/lib/v1/list/DepartmentDropDown/DepartmentDropDown.js +157 -0
- package/lib/v1/list/Dot/Dot.js +72 -0
- package/lib/v1/list/DotNew/DotNew.js +79 -0
- package/lib/v1/list/GridStencils/GridStencils.js +83 -0
- package/lib/v1/list/Icons/AddNewIcon.js +79 -0
- package/lib/v1/list/Icons/CompleteIcon.js +81 -0
- package/lib/v1/list/Icons/DeleteIcon.js +82 -0
- package/lib/v1/list/Icons/EditIcon.js +82 -0
- package/lib/v1/list/Icons/FloatingIcons.js +87 -0
- package/lib/v1/list/Icons/ReadUnreadIcon.js +87 -0
- package/lib/v1/list/Icons/SmartIcon.js +83 -0
- package/lib/v1/list/Icons/index.js +63 -0
- package/lib/v1/list/ListLayout/ListLayout.js +145 -0
- package/lib/v1/list/ListStencils/ListStencils.js +96 -0
- package/lib/v1/list/SecondaryText/AccountName.js +136 -0
- package/lib/v1/list/SecondaryText/ContactName.js +144 -0
- package/lib/v1/list/SecondaryText/DepartmentText.js +79 -0
- package/lib/v1/list/SecondaryText/Email.js +103 -0
- package/lib/v1/list/SecondaryText/HappinessRating.js +81 -0
- package/lib/v1/list/SecondaryText/PhoneNumber.js +107 -0
- package/lib/v1/list/SecondaryText/PriorityText.js +83 -0
- package/lib/v1/list/SecondaryText/SecondaryText.js +88 -0
- package/lib/v1/list/SecondaryText/StatusText.js +84 -0
- package/lib/v1/list/SecondaryText/TicketId.js +104 -0
- package/lib/v1/list/SecondaryText/Website.js +91 -0
- package/lib/v1/list/SecondaryText/index.js +95 -0
- package/lib/v1/list/SecondryPanel/SecondryPanel.js +205 -0
- package/lib/v1/list/SentimentStatus/SentimentStatus.js +80 -0
- package/lib/v1/list/Subject/Subject.js +108 -0
- package/lib/v1/list/TagNew/TagNew.js +83 -0
- package/lib/v1/list/Thread/Thread.js +95 -0
- package/lib/v1/list/UserTime/UserTime.js +136 -0
- package/lib/v1/list/index.js +173 -0
- package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +541 -0
- package/lib/v1/list/status/StatusListItem/StatusListItem.js +168 -0
- package/lib/v1/list/status/index.js +23 -0
- package/lib/v1/lookup/EmptyPage/EmptyPage.js +120 -0
- package/lib/v1/lookup/Lookup/Lookup.js +2 -0
- package/lib/v1/lookup/Section/Section.js +75 -0
- package/lib/v1/lookup/header/ViewDropDown/ViewDropDown.js +221 -0
- package/lib/v1/lookup/header/index.js +47 -0
- package/lib/v1/setup/header/Button/Button.js +83 -0
- package/lib/v1/setup/header/Link/Link.js +93 -0
- package/lib/v1/setup/header/Search/Search.js +126 -0
- package/lib/v1/setup/header/Views/Views.js +93 -0
- package/lib/v1/setup/header/index.js +39 -0
- package/lib/v1/setup/helptips/Description/Description.js +68 -0
- package/lib/v1/setup/helptips/Link/Link.js +88 -0
- package/lib/v1/setup/helptips/ListGroup/ListGroup.js +88 -0
- package/lib/v1/setup/helptips/Title/Title.js +68 -0
- package/lib/v1/setup/helptips/index.js +39 -0
- package/lib/v1/setup/index.js +24 -0
- package/lib/v1/setup/table/index.js +47 -0
- package/lib/v1/svg/PlusIcon.js +82 -0
- package/lib/v1/svg/SnippetIcon.js +84 -0
- package/lib/v1/svg/TemplateIcon.js +85 -0
- package/lib/v1/svg/index.js +31 -0
- package/lib/v1/version2/alertIcons/index.js +71 -0
- package/lib/v1/version2/index.js +58 -0
- package/lib/v1/version2/lookup/AlertHeader/AlertHeader.js +104 -0
- package/lib/v1/version2/lookup/AlertLookup/AlertLookup.js +17 -5
- package/lib/v1/version2/notification/DesktopNotification/DesktopNotification.js +193 -0
- package/package.json +10 -10
- package/result.json +1 -1
- package/es/docs/formDocs.js +0 -15
- package/es/docs/generalDocs.js +0 -63
- package/es/docs/lookupDocs.js +0 -17
- package/es/docs/setupDocs.js +0 -11
- package/lib/docs/generalDocs.js +0 -479
- package/lib/docs/lookupDocs.js +0 -135
- package/lib/docs/setupDocs.js +0 -95
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { propTypes } from '../../../list/GridStencils/props/propTypes';
|
|
3
|
+
import style from '../../../list/GridStencils/GridStencils.module.css';
|
|
4
|
+
export default class GridStencils extends React.Component {
|
|
5
|
+
render() {
|
|
6
|
+
let {
|
|
7
|
+
lineBar,
|
|
8
|
+
from,
|
|
9
|
+
isThreeLayout,
|
|
10
|
+
styles,
|
|
11
|
+
order
|
|
12
|
+
} = this.props;
|
|
13
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
14
|
+
className: from == 'leftPanel' && isThreeLayout ? `${style.stenLoading} ${style.threeLayout}` : from == 'leftPanel' ? `${style.stenLoading} ${style.leftCont}` : style.stenLoading,
|
|
15
|
+
style: styles,
|
|
16
|
+
order: order
|
|
17
|
+
}, lineBar ? /*#__PURE__*/React.createElement("div", {
|
|
18
|
+
className: style.stenLoadbody
|
|
19
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
20
|
+
className: `${style.lineBar} ${style.stenListBAr}`
|
|
21
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
22
|
+
className: `${style.lineBar2} ${style.stenListBAr}`
|
|
23
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
24
|
+
className: `${style.lineBar3} ${style.stenListBAr}`
|
|
25
|
+
})) : '');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
}
|
|
29
|
+
GridStencils.propTypes = propTypes; // if (__DOCS__) {
|
|
30
|
+
// GridStencils.docs = {
|
|
31
|
+
// folderName: 'List',
|
|
32
|
+
// componentGroup: 'GridStencils'
|
|
33
|
+
// };
|
|
34
|
+
// }
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { AddNewIcon_propTypes } from '../../../list/Icons/props/propTypes';
|
|
3
|
+
import { Icon } from '@zohodesk/icons';
|
|
4
|
+
import btnStyle from '@zohodesk/components/lib/semantic/Button/semanticButton.module.css';
|
|
5
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
6
|
+
export default class AddNewIcon extends React.Component {
|
|
7
|
+
render() {
|
|
8
|
+
let {
|
|
9
|
+
onClick,
|
|
10
|
+
dataId,
|
|
11
|
+
dataTitle,
|
|
12
|
+
iconClass,
|
|
13
|
+
className
|
|
14
|
+
} = this.props;
|
|
15
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
16
|
+
onClick: onClick,
|
|
17
|
+
className: `${style.iconStyle} ${style.blueHover} ${className ? className : ''} ${btnStyle.buttonReset}`,
|
|
18
|
+
"data-id": dataId,
|
|
19
|
+
"data-test-id": dataId,
|
|
20
|
+
"data-title": dataTitle
|
|
21
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
22
|
+
name: "ZD-SE-addTickets",
|
|
23
|
+
iconClass: iconClass ? iconClass : ''
|
|
24
|
+
}));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
AddNewIcon.propTypes = AddNewIcon_propTypes;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CompleteIcon_propTypes } from '../../../list/Icons/props/propTypes';
|
|
3
|
+
import { Icon } from '@zohodesk/icons';
|
|
4
|
+
import btnStyle from '@zohodesk/components/lib/semantic/Button/semanticButton.module.css';
|
|
5
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
6
|
+
export default class CompleteIcon extends React.Component {
|
|
7
|
+
render() {
|
|
8
|
+
let {
|
|
9
|
+
onClick,
|
|
10
|
+
dataId,
|
|
11
|
+
dataTitle,
|
|
12
|
+
iconClass,
|
|
13
|
+
className,
|
|
14
|
+
iconSize
|
|
15
|
+
} = this.props;
|
|
16
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
17
|
+
onClick: onClick,
|
|
18
|
+
className: `${style.iconStyle} ${style.blueHover} ${className ? className : ''} ${btnStyle.buttonReset}`,
|
|
19
|
+
"data-id": dataId,
|
|
20
|
+
"data-test-id": dataId,
|
|
21
|
+
"data-title": dataTitle
|
|
22
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
23
|
+
name: "ZD-GN-checkbox",
|
|
24
|
+
iconClass: iconClass ? iconClass : '',
|
|
25
|
+
size: iconSize
|
|
26
|
+
}));
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
CompleteIcon.propTypes = CompleteIcon_propTypes;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DeleteComponent_propTypes } from '../../../list/Icons/props/propTypes';
|
|
3
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
4
|
+
import { Icon } from '@zohodesk/icons';
|
|
5
|
+
import btnStyle from '@zohodesk/components/lib/semantic/Button/semanticButton.module.css';
|
|
6
|
+
export default class DeleteComponent extends React.Component {
|
|
7
|
+
render() {
|
|
8
|
+
let {
|
|
9
|
+
onClick,
|
|
10
|
+
dataId,
|
|
11
|
+
dataTitle,
|
|
12
|
+
iconClass,
|
|
13
|
+
iconSize,
|
|
14
|
+
className
|
|
15
|
+
} = this.props;
|
|
16
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
17
|
+
onClick: onClick,
|
|
18
|
+
className: `${style.iconStyle} ${style.redHover} ${className ? className : ''} ${btnStyle.buttonReset}`,
|
|
19
|
+
"data-id": dataId,
|
|
20
|
+
"data-test-id": dataId,
|
|
21
|
+
"data-title": dataTitle,
|
|
22
|
+
"aria-label": dataTitle
|
|
23
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
24
|
+
name: "ZD-GN-delete",
|
|
25
|
+
iconClass: iconClass ? iconClass : '',
|
|
26
|
+
size: iconSize
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
}
|
|
31
|
+
DeleteComponent.propTypes = DeleteComponent_propTypes;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { EditIcon_propTypes } from '../../../list/Icons/props/propTypes';
|
|
3
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
4
|
+
import { Icon } from '@zohodesk/icons';
|
|
5
|
+
import btnStyle from '@zohodesk/components/lib/semantic/Button/semanticButton.module.css';
|
|
6
|
+
export default class EditIcon extends React.Component {
|
|
7
|
+
render() {
|
|
8
|
+
let {
|
|
9
|
+
onClick,
|
|
10
|
+
dataId,
|
|
11
|
+
dataTitle,
|
|
12
|
+
iconClass,
|
|
13
|
+
iconSize,
|
|
14
|
+
className
|
|
15
|
+
} = this.props;
|
|
16
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
17
|
+
onClick: onClick,
|
|
18
|
+
className: `${style.iconStyle} ${style.blueHover} ${className ? className : ''} ${btnStyle.buttonReset}`,
|
|
19
|
+
"data-id": dataId,
|
|
20
|
+
"data-test-id": dataId,
|
|
21
|
+
"data-title": dataTitle,
|
|
22
|
+
"aria-label": dataTitle
|
|
23
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
24
|
+
name: "ZD-GN-edit",
|
|
25
|
+
iconClass: iconClass ? iconClass : '',
|
|
26
|
+
size: iconSize
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
}
|
|
31
|
+
EditIcon.propTypes = EditIcon_propTypes;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import { FloatingIcons_defaultProps } from '../../../list/Icons/props/defaultProps';
|
|
3
|
+
import { FloatingIcons_propTypes } from '../../../list/Icons/props/propTypes';
|
|
4
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
5
|
+
export default class FloatingIcons extends Component {
|
|
6
|
+
constructor(props) {
|
|
7
|
+
super(props);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
render() {
|
|
11
|
+
let {
|
|
12
|
+
children = [],
|
|
13
|
+
iconClass
|
|
14
|
+
} = this.props;
|
|
15
|
+
const icons = React.Children.toArray(children).filter(o => o);
|
|
16
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
17
|
+
className: `${style.container}`
|
|
18
|
+
}, icons.map(child => /*#__PURE__*/React.cloneElement(child, {
|
|
19
|
+
iconClass
|
|
20
|
+
})));
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
FloatingIcons.propTypes = FloatingIcons_propTypes;
|
|
25
|
+
FloatingIcons.defaultProps = FloatingIcons_defaultProps; // if (__DOCS__) {
|
|
26
|
+
// FloatingIcons.docs = {
|
|
27
|
+
// folderName: 'List',
|
|
28
|
+
// componentGroup: 'FloatingIcons'
|
|
29
|
+
// };
|
|
30
|
+
// }
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ReadUnreadIcon_defaultProps } from '../../../list/Icons/props/defaultProps';
|
|
3
|
+
import { ReadUnreadIcon_propTypes } from '../../../list/Icons/props/propTypes';
|
|
4
|
+
import { Icon } from '@zohodesk/icons';
|
|
5
|
+
import btnStyle from '@zohodesk/components/lib/semantic/Button/semanticButton.module.css';
|
|
6
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
7
|
+
export default class ReadUnreadIcon extends React.Component {
|
|
8
|
+
render() {
|
|
9
|
+
let {
|
|
10
|
+
onClick,
|
|
11
|
+
dataId,
|
|
12
|
+
dataTitle,
|
|
13
|
+
iconClassName,
|
|
14
|
+
iconClass,
|
|
15
|
+
className,
|
|
16
|
+
isRead,
|
|
17
|
+
iconSize
|
|
18
|
+
} = this.props;
|
|
19
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
20
|
+
onClick: onClick,
|
|
21
|
+
className: `${style.iconStyle} ${style.blueHover} ${className ? className : ''} ${btnStyle.buttonReset}`,
|
|
22
|
+
"data-id": dataId,
|
|
23
|
+
"data-test-id": dataId,
|
|
24
|
+
"data-title": dataTitle,
|
|
25
|
+
"aria-label": dataTitle
|
|
26
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
27
|
+
name: isRead ? 'ZD-GN-read' : 'ZD-GN-unread',
|
|
28
|
+
size: iconSize,
|
|
29
|
+
iconClass: `${iconClassName ? iconClassName : ''} ${iconClass ? iconClass : ''}`
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
}
|
|
34
|
+
ReadUnreadIcon.defaultProps = ReadUnreadIcon_defaultProps;
|
|
35
|
+
ReadUnreadIcon.propTypes = ReadUnreadIcon_propTypes;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import { SmartIcon_propTypes } from '../../../list/Icons/props/propTypes';
|
|
3
|
+
import style from '../../../list/Icons/Icons.module.css';
|
|
4
|
+
import { Icon } from '@zohodesk/icons';
|
|
5
|
+
import btnStyle from '@zohodesk/components/lib/semantic/Button/semanticButton.module.css';
|
|
6
|
+
export default class SmartIcon extends Component {
|
|
7
|
+
render() {
|
|
8
|
+
let {
|
|
9
|
+
onClick,
|
|
10
|
+
dataId,
|
|
11
|
+
dataTitle,
|
|
12
|
+
iconClass,
|
|
13
|
+
className
|
|
14
|
+
} = this.props;
|
|
15
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
16
|
+
onClick: onClick,
|
|
17
|
+
className: `${style.iconStyle} ${style.blueHover} ${className ? className : ''} ${btnStyle.buttonReset}`,
|
|
18
|
+
"data-id": dataId,
|
|
19
|
+
"data-test-id": dataId,
|
|
20
|
+
"data-title": dataTitle
|
|
21
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
22
|
+
name: "ZD-TK-peek",
|
|
23
|
+
iconClass: iconClass ? iconClass : ''
|
|
24
|
+
}));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
SmartIcon.propTypes = SmartIcon_propTypes;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as AddNewIcon } from './AddNewIcon';
|
|
2
|
+
export { default as CompleteIcon } from './CompleteIcon';
|
|
3
|
+
export { default as DeleteComponent } from './DeleteComponent';
|
|
4
|
+
export { default as EditIcon } from './EditIcon';
|
|
5
|
+
export { default as FloatingIcons } from './FloatingIcons';
|
|
6
|
+
export { default as ReadUnreadIcon } from './ReadUnreadIcon';
|
|
7
|
+
export { default as SmartIcon } from './SmartIcon';
|
|
@@ -0,0 +1,83 @@
|
|
|
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, { Component } from 'react';
|
|
4
|
+
import { ListLayout_defaultProps } from '../../../list/ListLayout/props/defaultProps';
|
|
5
|
+
import { ListLayout_propTypes, Column_propTypes } from '../../../list/ListLayout/props/propTypes';
|
|
6
|
+
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
7
|
+
import style from '../../../list/ListLayout/ListLayout.module.css';
|
|
8
|
+
export default class ListLayout extends Component {
|
|
9
|
+
constructor(props) {
|
|
10
|
+
super(props);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
render() {
|
|
14
|
+
let {
|
|
15
|
+
children,
|
|
16
|
+
className,
|
|
17
|
+
needHover,
|
|
18
|
+
align,
|
|
19
|
+
view,
|
|
20
|
+
containerClass,
|
|
21
|
+
isActive,
|
|
22
|
+
onClick,
|
|
23
|
+
onMouseLeave,
|
|
24
|
+
dataId,
|
|
25
|
+
dataTitle,
|
|
26
|
+
a11y,
|
|
27
|
+
isHovered,
|
|
28
|
+
onMouseEnter,
|
|
29
|
+
needPointer,
|
|
30
|
+
isKeyboardActive
|
|
31
|
+
} = this.props;
|
|
32
|
+
let {
|
|
33
|
+
role = 'listitem',
|
|
34
|
+
ariaLabel,
|
|
35
|
+
ariaPosinset,
|
|
36
|
+
ariaSetsize
|
|
37
|
+
} = a11y;
|
|
38
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
39
|
+
className: `${style.container} ${containerClass} ${needHover ? style.listHover : ''} ${isActive ? style.active : ''} ${style[view]} ${onClick && needPointer ? style.cursorPointer : ''} ${isHovered ? style.hoveredStyle : ''} ${isKeyboardActive ? style.keyboardActive : ''} `,
|
|
40
|
+
onClick: onClick,
|
|
41
|
+
onMouseEnter: onMouseEnter,
|
|
42
|
+
onMouseLeave: onMouseLeave,
|
|
43
|
+
"data-id": dataId,
|
|
44
|
+
"data-test-id": dataId,
|
|
45
|
+
"data-title": dataTitle,
|
|
46
|
+
tabIndex: "0",
|
|
47
|
+
role: role,
|
|
48
|
+
"data-a11y-inset-focus": true,
|
|
49
|
+
"aria-label": ariaLabel,
|
|
50
|
+
"aria-setsize": ariaSetsize,
|
|
51
|
+
"aria-posinset": ariaPosinset
|
|
52
|
+
}, /*#__PURE__*/React.createElement(Container, {
|
|
53
|
+
alignBox: "row",
|
|
54
|
+
align: align,
|
|
55
|
+
className: `${style.innerContainer} ${className ? className : ''}`
|
|
56
|
+
}, children));
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
}
|
|
60
|
+
ListLayout.propTypes = ListLayout_propTypes;
|
|
61
|
+
ListLayout.defaultProps = ListLayout_defaultProps;
|
|
62
|
+
export class Column extends Component {
|
|
63
|
+
constructor(props) {
|
|
64
|
+
super(props);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
render() {
|
|
68
|
+
let {
|
|
69
|
+
children,
|
|
70
|
+
className
|
|
71
|
+
} = this.props;
|
|
72
|
+
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
73
|
+
className: `${className ? className : ''}`
|
|
74
|
+
}, this.props), children);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
}
|
|
78
|
+
Column.propTypes = Column_propTypes; // if (__DOCS__) {
|
|
79
|
+
// ListLayout.docs = {
|
|
80
|
+
// folderName: 'List',
|
|
81
|
+
// componentGroup: 'ListLayout'
|
|
82
|
+
// };
|
|
83
|
+
// }
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/*** Libraries ***/
|
|
2
|
+
import React, { Component } from 'react';
|
|
3
|
+
import { defaultProps } from '../../../list/ListStencils/props/defaultProps';
|
|
4
|
+
import { propTypes } from '../../../list/ListStencils/props/propTypes';
|
|
5
|
+
/*** Components ***/
|
|
6
|
+
|
|
7
|
+
import Stencils from '@zohodesk/components/lib/Stencils/Stencils';
|
|
8
|
+
/*** CSS ***/
|
|
9
|
+
|
|
10
|
+
import style from '../../../list/ListStencils/ListStencils.module.css';
|
|
11
|
+
export default class ListStencils extends Component {
|
|
12
|
+
render() {
|
|
13
|
+
let {
|
|
14
|
+
listType
|
|
15
|
+
} = this.props;
|
|
16
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
17
|
+
className: `${style.container} ${style[listType]}`
|
|
18
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
19
|
+
className: style.innerContainer
|
|
20
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
21
|
+
className: style.avatar
|
|
22
|
+
}, /*#__PURE__*/React.createElement(Stencils, {
|
|
23
|
+
shape: "circle",
|
|
24
|
+
size: listType === 'classic' ? 'large' : listType === 'compact' ? 'medium' : 'small'
|
|
25
|
+
})), /*#__PURE__*/React.createElement("div", {
|
|
26
|
+
className: style.detailsColumn
|
|
27
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
28
|
+
className: `${style.detailsInnerColumn}`
|
|
29
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
30
|
+
className: style.primaryRow
|
|
31
|
+
}, /*#__PURE__*/React.createElement(Stencils, {
|
|
32
|
+
size: "default"
|
|
33
|
+
})), /*#__PURE__*/React.createElement("div", {
|
|
34
|
+
className: style.secondaryRow
|
|
35
|
+
}, /*#__PURE__*/React.createElement(Stencils, {
|
|
36
|
+
size: "medium"
|
|
37
|
+
}))))));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
}
|
|
41
|
+
ListStencils.propTypes = propTypes;
|
|
42
|
+
ListStencils.defaultProps = defaultProps; // if (__DOCS__) {
|
|
43
|
+
// ListStencils.docs = {
|
|
44
|
+
// folderName: 'List',
|
|
45
|
+
// componentGroup: 'ListStencils'
|
|
46
|
+
// };
|
|
47
|
+
// }
|
|
@@ -0,0 +1,85 @@
|
|
|
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
|
+
/* eslint-disable react/forbid-component-props */
|
|
4
|
+
|
|
5
|
+
/**** Libraries ****/
|
|
6
|
+
import React, { Component } from 'react';
|
|
7
|
+
import { AccountName_defaultProps } from '../../../list/SecondaryText/props/defaultProps';
|
|
8
|
+
import { AccountName_propTypes } from '../../../list/SecondaryText/props/propTypes';
|
|
9
|
+
/**** Components ****/
|
|
10
|
+
|
|
11
|
+
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
12
|
+
import Link from '../../Link/Link';
|
|
13
|
+
/**** CSS ****/
|
|
14
|
+
|
|
15
|
+
import style from '../../../list/SecondaryText/SecondaryText.module.css';
|
|
16
|
+
export default class AccountName extends Component {
|
|
17
|
+
render() {
|
|
18
|
+
let {
|
|
19
|
+
dataTitle,
|
|
20
|
+
dataId,
|
|
21
|
+
urlName,
|
|
22
|
+
urlData,
|
|
23
|
+
onClick,
|
|
24
|
+
isLink,
|
|
25
|
+
className,
|
|
26
|
+
text,
|
|
27
|
+
href,
|
|
28
|
+
notAccessible = false,
|
|
29
|
+
fontWeight,
|
|
30
|
+
secondaryAccountHref,
|
|
31
|
+
secondaryAccountClick,
|
|
32
|
+
secondaryAccountText,
|
|
33
|
+
customProps
|
|
34
|
+
} = this.props;
|
|
35
|
+
let {
|
|
36
|
+
LinkProps = {},
|
|
37
|
+
TextProps = {},
|
|
38
|
+
SecondaryTextProps = {}
|
|
39
|
+
} = customProps;
|
|
40
|
+
return /*#__PURE__*/React.createElement(Container, {
|
|
41
|
+
alignBox: "row",
|
|
42
|
+
align: "baseline",
|
|
43
|
+
isCover: false,
|
|
44
|
+
"data-title": dataTitle,
|
|
45
|
+
dataId: dataId
|
|
46
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
47
|
+
flexible: true
|
|
48
|
+
}, /*#__PURE__*/React.createElement(Container, {
|
|
49
|
+
alignBox: "row",
|
|
50
|
+
align: "baseline",
|
|
51
|
+
isCover: false,
|
|
52
|
+
className: style.primaryAccountNameCnt
|
|
53
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
54
|
+
className: style.primaryAccountName,
|
|
55
|
+
shrink: true
|
|
56
|
+
}, isLink ? /*#__PURE__*/React.createElement(Link, _extends({
|
|
57
|
+
href: href,
|
|
58
|
+
urlName: urlName,
|
|
59
|
+
urlData: urlData,
|
|
60
|
+
onClick: onClick,
|
|
61
|
+
dataId: `${dataId}_link`,
|
|
62
|
+
className: style.link
|
|
63
|
+
}, LinkProps, {
|
|
64
|
+
ariaLabel: `Account Name ${text}`
|
|
65
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
66
|
+
className: `${style.textStyle} ${style[`font_${fontWeight}`]} ${className ? className : ''}`
|
|
67
|
+
}, text)) : /*#__PURE__*/React.createElement("div", _extends({
|
|
68
|
+
className: `${style.secondaryText} ${style[`font_${fontWeight}`]} ${className ? className : ''} ${notAccessible ? style.disable : ''}`
|
|
69
|
+
}, TextProps), text)), secondaryAccountText && /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Link, {
|
|
70
|
+
href: secondaryAccountHref,
|
|
71
|
+
onClick: secondaryAccountClick,
|
|
72
|
+
className: style.link
|
|
73
|
+
}, /*#__PURE__*/React.createElement("div", _extends({
|
|
74
|
+
className: `${style.textStyle} ${style[`font_${fontWeight}`]} ${className ? className : ''}`
|
|
75
|
+
}, SecondaryTextProps), secondaryAccountText))))));
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
}
|
|
79
|
+
AccountName.propTypes = AccountName_propTypes;
|
|
80
|
+
AccountName.defaultProps = AccountName_defaultProps; // if (__DOCS__) {
|
|
81
|
+
// AccountName.docs = {
|
|
82
|
+
// folderName: 'List',
|
|
83
|
+
// componentGroup: 'AccountName'
|
|
84
|
+
// };
|
|
85
|
+
// }
|
|
@@ -0,0 +1,85 @@
|
|
|
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, { Component } from 'react';
|
|
4
|
+
import { ContactName_defaultProps } from '../../../list/SecondaryText/props/defaultProps';
|
|
5
|
+
import { ContactName_propTypes } from '../../../list/SecondaryText/props/propTypes';
|
|
6
|
+
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
7
|
+
import Link from '../../Link/Link';
|
|
8
|
+
import SentimentStatus from '../SentimentStatus/SentimentStatus';
|
|
9
|
+
import { Icon } from '@zohodesk/icons';
|
|
10
|
+
import style from '../../../list/SecondaryText/SecondaryText.module.css';
|
|
11
|
+
export default class ContactName extends Component {
|
|
12
|
+
render() {
|
|
13
|
+
let {
|
|
14
|
+
dataTitle,
|
|
15
|
+
dataId,
|
|
16
|
+
isPaidUser,
|
|
17
|
+
urlName,
|
|
18
|
+
urlData,
|
|
19
|
+
onClick,
|
|
20
|
+
sentimentType,
|
|
21
|
+
isLink,
|
|
22
|
+
className,
|
|
23
|
+
text,
|
|
24
|
+
href,
|
|
25
|
+
notAccessible = false,
|
|
26
|
+
fontWeight,
|
|
27
|
+
i18nKeys,
|
|
28
|
+
customProps
|
|
29
|
+
} = this.props;
|
|
30
|
+
let {
|
|
31
|
+
sentimentTitles = {
|
|
32
|
+
positive: 'Positive',
|
|
33
|
+
negative: 'Negative',
|
|
34
|
+
neutral: 'Neutral'
|
|
35
|
+
},
|
|
36
|
+
paidTitle = 'Paid User'
|
|
37
|
+
} = i18nKeys;
|
|
38
|
+
let sentimentDataTitle = sentimentTitles[sentimentType];
|
|
39
|
+
let {
|
|
40
|
+
LinkProps = {},
|
|
41
|
+
TextProps = {}
|
|
42
|
+
} = customProps;
|
|
43
|
+
return /*#__PURE__*/React.createElement(Container, {
|
|
44
|
+
alignBox: "row",
|
|
45
|
+
align: "baseline",
|
|
46
|
+
isCover: false,
|
|
47
|
+
dataId: dataId
|
|
48
|
+
}, isPaidUser && /*#__PURE__*/React.createElement(Box, {
|
|
49
|
+
className: style.paidUserIcon,
|
|
50
|
+
title: paidTitle,
|
|
51
|
+
"aria-label": "Paid user"
|
|
52
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
53
|
+
name: "ZD-paiduser",
|
|
54
|
+
iconClass: style.icon
|
|
55
|
+
})), /*#__PURE__*/React.createElement(Box, {
|
|
56
|
+
flexible: true
|
|
57
|
+
}, isLink ? /*#__PURE__*/React.createElement(Link, _extends({
|
|
58
|
+
urlName: urlName,
|
|
59
|
+
href: href,
|
|
60
|
+
urlData: urlData,
|
|
61
|
+
onClick: onClick,
|
|
62
|
+
title: dataTitle,
|
|
63
|
+
dataId: `${dataId}_link`,
|
|
64
|
+
className: style.link
|
|
65
|
+
}, LinkProps, {
|
|
66
|
+
ariaLabel: `Contact Name ${text}`
|
|
67
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
68
|
+
className: `${style.textStyle} ${style[`font_${fontWeight}`]} ${className ? className : ''}`
|
|
69
|
+
}, text)) : /*#__PURE__*/React.createElement("div", _extends({
|
|
70
|
+
className: `${style.secondaryText} ${style[`font_${fontWeight}`]} ${className ? className : ''} ${notAccessible ? style.disable : ''}`,
|
|
71
|
+
"data-title": dataTitle
|
|
72
|
+
}, TextProps), text)), sentimentType && /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(SentimentStatus, {
|
|
73
|
+
type: sentimentType,
|
|
74
|
+
dataTitle: sentimentDataTitle
|
|
75
|
+
})));
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
}
|
|
79
|
+
ContactName.propTypes = ContactName_propTypes;
|
|
80
|
+
ContactName.defaultProps = ContactName_defaultProps; // if (__DOCS__) {
|
|
81
|
+
// ContactName.docs = {
|
|
82
|
+
// folderName: 'List',
|
|
83
|
+
// componentGroup: 'ContactName'
|
|
84
|
+
// };
|
|
85
|
+
// }
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import { DepartmentText_propTypes } from '../../../list/SecondaryText/props/propTypes';
|
|
3
|
+
import style from '../../../list/SecondaryText/SecondaryText.module.css';
|
|
4
|
+
export default class DepartmentText extends Component {
|
|
5
|
+
constructor(props) {
|
|
6
|
+
super(props);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
render() {
|
|
10
|
+
let {
|
|
11
|
+
className,
|
|
12
|
+
text,
|
|
13
|
+
dataTitle,
|
|
14
|
+
dataId
|
|
15
|
+
} = this.props;
|
|
16
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
17
|
+
className: `${style.departmentText} ${className ? className : ''}`,
|
|
18
|
+
"data-title": dataTitle,
|
|
19
|
+
"data-id": dataId,
|
|
20
|
+
"data-test-id": dataId
|
|
21
|
+
}, text);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
}
|
|
25
|
+
DepartmentText.propTypes = DepartmentText_propTypes; // if (__DOCS__) {
|
|
26
|
+
// DepartmentText.docs = {
|
|
27
|
+
// folderName: 'List',
|
|
28
|
+
// componentGroup: 'DepartmentText'
|
|
29
|
+
// };
|
|
30
|
+
// }
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
/* eslint-disable react/forbid-component-props */
|
|
4
|
+
|
|
5
|
+
/**** Libraries ****/
|
|
6
|
+
import React, { Component } from 'react';
|
|
7
|
+
import { Email_defaultProps } from '../../../list/SecondaryText/props/defaultProps';
|
|
8
|
+
import { Email_propTypes } from '../../../list/SecondaryText/props/propTypes';
|
|
9
|
+
/**** Components ****/
|
|
10
|
+
|
|
11
|
+
import Link from '../../Link/Link';
|
|
12
|
+
/**** CSS ****/
|
|
13
|
+
|
|
14
|
+
import style from '../../../list/SecondaryText/SecondaryText.module.css';
|
|
15
|
+
export default class Email extends Component {
|
|
16
|
+
render() {
|
|
17
|
+
let {
|
|
18
|
+
text,
|
|
19
|
+
urlData,
|
|
20
|
+
urlName,
|
|
21
|
+
className,
|
|
22
|
+
title,
|
|
23
|
+
href,
|
|
24
|
+
isLink,
|
|
25
|
+
target,
|
|
26
|
+
fontWeight,
|
|
27
|
+
customProps
|
|
28
|
+
} = this.props;
|
|
29
|
+
let {
|
|
30
|
+
LinkProps = {},
|
|
31
|
+
TextProps = {}
|
|
32
|
+
} = customProps;
|
|
33
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, isLink ? /*#__PURE__*/React.createElement(Link, _extends({
|
|
34
|
+
href: href,
|
|
35
|
+
title: title,
|
|
36
|
+
urlData: urlData,
|
|
37
|
+
urlName: urlName,
|
|
38
|
+
target: target,
|
|
39
|
+
className: style.link
|
|
40
|
+
}, LinkProps), /*#__PURE__*/React.createElement("div", {
|
|
41
|
+
className: `${style.textStyle} ${style[`font_${fontWeight}`]} ${className ? className : ''}`
|
|
42
|
+
}, text)) : /*#__PURE__*/React.createElement("div", _extends({
|
|
43
|
+
className: `${style.secondaryText} ${style[`font_${fontWeight}`]} ${className ? className : ''}`,
|
|
44
|
+
"data-title": title
|
|
45
|
+
}, TextProps), text));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
}
|
|
49
|
+
Email.propTypes = Email_propTypes;
|
|
50
|
+
Email.defaultProps = Email_defaultProps; // if (__DOCS__) {
|
|
51
|
+
// Email.docs = {
|
|
52
|
+
// folderName: 'List',
|
|
53
|
+
// componentGroup: 'EmailText'
|
|
54
|
+
// };
|
|
55
|
+
// }
|