@zohodesk/dot 1.2.2 → 1.2.4
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 +9 -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/Drawer/Drawer.js +10 -10
- 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/Lookup/Lookup.js +10 -10
- 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 +11 -11
- 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 +12 -10
- 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/Drawer/Drawer.js +15 -15
- 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/Lookup/Lookup.js +15 -15
- 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 +16 -16
- 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 +17 -15
- 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 +9 -9
- 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,193 @@
|
|
|
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.DesktopNotificationUI = DesktopNotificationUI;
|
|
9
|
+
exports["default"] = DesktopNotification;
|
|
10
|
+
|
|
11
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
12
|
+
|
|
13
|
+
var _defaultProps = require("../../../../version2/notification/DesktopNotification/props/defaultProps");
|
|
14
|
+
|
|
15
|
+
var _propTypes = require("../../../../version2/notification/DesktopNotification/props/propTypes");
|
|
16
|
+
|
|
17
|
+
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
18
|
+
|
|
19
|
+
var _ZindexProvider = require("@zohodesk/components/lib/Provider/ZindexProvider");
|
|
20
|
+
|
|
21
|
+
var _AutoClose = _interopRequireDefault(require("../../../actions/AutoClose"));
|
|
22
|
+
|
|
23
|
+
var _Button = _interopRequireDefault(require("@zohodesk/components/lib/Button/Button"));
|
|
24
|
+
|
|
25
|
+
var _FormAction = _interopRequireDefault(require("../../../FormAction/FormAction"));
|
|
26
|
+
|
|
27
|
+
var _DesktopNotificationHeader = _interopRequireDefault(require("../DesktopNotificationHeader/DesktopNotificationHeader"));
|
|
28
|
+
|
|
29
|
+
var _DesktopNotificationModule = _interopRequireDefault(require("../../../../version2/notification/DesktopNotification/DesktopNotification.module.css"));
|
|
30
|
+
|
|
31
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
32
|
+
|
|
33
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
34
|
+
|
|
35
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
36
|
+
|
|
37
|
+
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); }
|
|
38
|
+
|
|
39
|
+
var buttonPaletteObject = {
|
|
40
|
+
success: {
|
|
41
|
+
buttonPalette: 'successFilled'
|
|
42
|
+
},
|
|
43
|
+
error: {
|
|
44
|
+
buttonPalette: 'dangerFilled'
|
|
45
|
+
},
|
|
46
|
+
danger: {
|
|
47
|
+
buttonPalette: 'dangerFilled'
|
|
48
|
+
},
|
|
49
|
+
warning: {
|
|
50
|
+
buttonPalette: 'dangerFilled'
|
|
51
|
+
},
|
|
52
|
+
info: {
|
|
53
|
+
buttonPalette: 'primaryFilled'
|
|
54
|
+
},
|
|
55
|
+
notification: {
|
|
56
|
+
buttonPalette: 'primaryFilled'
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
function DesktopNotificationUI(props) {
|
|
61
|
+
var _props$type = props.type,
|
|
62
|
+
type = _props$type === void 0 ? '' : _props$type,
|
|
63
|
+
submitText = props.submitText,
|
|
64
|
+
cancelText = props.cancelText,
|
|
65
|
+
submitType = props.submitType,
|
|
66
|
+
isMore = props.isMore,
|
|
67
|
+
message = props.message,
|
|
68
|
+
isAnimate = props.isAnimate,
|
|
69
|
+
getBottomContainer = props.getBottomContainer,
|
|
70
|
+
getSubmitContainer = props.getSubmitContainer,
|
|
71
|
+
onSubmit = props.onSubmit,
|
|
72
|
+
onCancel = props.onCancel,
|
|
73
|
+
dataId = props.dataId,
|
|
74
|
+
dataSelectorId = props.dataSelectorId,
|
|
75
|
+
isClose = props.isClose,
|
|
76
|
+
needAutoZindex = props.needAutoZindex,
|
|
77
|
+
title = props.title,
|
|
78
|
+
subTitle = props.subTitle,
|
|
79
|
+
needIcon = props.needIcon,
|
|
80
|
+
info = props.info,
|
|
81
|
+
secondaryInfo = props.secondaryInfo,
|
|
82
|
+
titleVariant = props.titleVariant,
|
|
83
|
+
getSectionContainer = props.getSectionContainer,
|
|
84
|
+
isShrinkView = props.isShrinkView,
|
|
85
|
+
size = props.size,
|
|
86
|
+
onClose = props.onClose,
|
|
87
|
+
needClose = props.needClose,
|
|
88
|
+
_props$customClass = props.customClass,
|
|
89
|
+
customClass = _props$customClass === void 0 ? {} : _props$customClass,
|
|
90
|
+
_props$i18nKeys = props.i18nKeys,
|
|
91
|
+
i18nKeys = _props$i18nKeys === void 0 ? {} : _props$i18nKeys,
|
|
92
|
+
customProps = props.customProps;
|
|
93
|
+
var _i18nKeys$closeTitle = i18nKeys.closeTitle,
|
|
94
|
+
closeTitle = _i18nKeys$closeTitle === void 0 ? 'Close' : _i18nKeys$closeTitle;
|
|
95
|
+
var containerClass = customClass.containerClass;
|
|
96
|
+
|
|
97
|
+
var _ref = buttonPaletteObject[type] || {},
|
|
98
|
+
_ref$buttonPalette = _ref.buttonPalette,
|
|
99
|
+
buttonPalette = _ref$buttonPalette === void 0 ? 'dangerFilled' : _ref$buttonPalette;
|
|
100
|
+
|
|
101
|
+
var _customProps$ExtraPro = customProps.ExtraProps,
|
|
102
|
+
ExtraProps = _customProps$ExtraPro === void 0 ? {} : _customProps$ExtraPro;
|
|
103
|
+
|
|
104
|
+
function onClickSubmit(e) {
|
|
105
|
+
onSubmit && onSubmit();
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function onClickCancel(e) {
|
|
109
|
+
onCancel && onCancel();
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
var animateClass = isClose ? _DesktopNotificationModule["default"].rightanimate : _DesktopNotificationModule["default"].leftanimate;
|
|
113
|
+
var animateRemoveClass = isClose ? _DesktopNotificationModule["default"].rightanimate : _DesktopNotificationModule["default"].leftnoanimate;
|
|
114
|
+
var getNextIndex = (0, _ZindexProvider.useZIndex)();
|
|
115
|
+
var Zindex = isAnimate ? getNextIndex() : null;
|
|
116
|
+
var uiVariantOne = title && (info || secondaryInfo);
|
|
117
|
+
var uiVariantTwo = title && !(info || secondaryInfo) && !getSectionContainer;
|
|
118
|
+
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
119
|
+
className: _DesktopNotificationModule["default"].parentElement,
|
|
120
|
+
style: needAutoZindex && isAnimate ? {
|
|
121
|
+
zIndex: "".concat(Zindex)
|
|
122
|
+
} : {},
|
|
123
|
+
"data-selector-id": dataSelectorId
|
|
124
|
+
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, _extends({
|
|
125
|
+
className: "".concat(_DesktopNotificationModule["default"].container, " ").concat(isAnimate ? animateClass : animateRemoveClass, " ").concat(_DesktopNotificationModule["default"]["".concat(size)] ? _DesktopNotificationModule["default"]["".concat(size)] : '', " ").concat(isShrinkView ? _DesktopNotificationModule["default"].globalNotify : '', " ").concat(containerClass),
|
|
126
|
+
isCover: false,
|
|
127
|
+
dataId: dataId,
|
|
128
|
+
isInline: uiVariantTwo
|
|
129
|
+
}, ExtraProps), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_DesktopNotificationHeader["default"], {
|
|
130
|
+
type: type,
|
|
131
|
+
title: title,
|
|
132
|
+
variant: titleVariant,
|
|
133
|
+
needIcon: needIcon,
|
|
134
|
+
onClose: onClose,
|
|
135
|
+
closeTitle: closeTitle,
|
|
136
|
+
dataId: "".concat(dataId, "_close"),
|
|
137
|
+
needClose: needClose
|
|
138
|
+
})), /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
139
|
+
alignBox: "column"
|
|
140
|
+
}, uiVariantOne && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
141
|
+
flexible: true
|
|
142
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
143
|
+
className: "".concat(_DesktopNotificationModule["default"].section, " ").concat(_DesktopNotificationModule["default"].infoText)
|
|
144
|
+
}, subTitle && /*#__PURE__*/_react["default"].createElement("div", {
|
|
145
|
+
className: "".concat(_DesktopNotificationModule["default"].subTitle, " ").concat(info || secondaryInfo ? _DesktopNotificationModule["default"].subTitleMargin : '')
|
|
146
|
+
}, subTitle), info && /*#__PURE__*/_react["default"].createElement("div", null, info), secondaryInfo && /*#__PURE__*/_react["default"].createElement("div", {
|
|
147
|
+
className: "".concat(info ? _DesktopNotificationModule["default"].secondaryInfo : '')
|
|
148
|
+
}, secondaryInfo))), getSectionContainer && /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
149
|
+
flexible: true
|
|
150
|
+
}, getSectionContainer()), submitText || cancelText ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, /*#__PURE__*/_react["default"].createElement("div", {
|
|
151
|
+
className: _DesktopNotificationModule["default"].footer
|
|
152
|
+
}, isMore ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
153
|
+
className: "".concat(_DesktopNotificationModule["default"].message)
|
|
154
|
+
}, message) : null, /*#__PURE__*/_react["default"].createElement(_FormAction["default"], {
|
|
155
|
+
size: "small",
|
|
156
|
+
paddingLeftSize: "xmedium"
|
|
157
|
+
}, submitText ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
158
|
+
onClick: onClickSubmit,
|
|
159
|
+
"data-id": "".concat(dataId, "_submitButton"),
|
|
160
|
+
"data-test-id": "".concat(dataId, "_submitButton")
|
|
161
|
+
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
162
|
+
align: "vertical",
|
|
163
|
+
alignBox: "row"
|
|
164
|
+
}, getSubmitContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
165
|
+
flexible: true
|
|
166
|
+
}, getSubmitContainer()) : /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
167
|
+
flexible: true
|
|
168
|
+
}, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
169
|
+
text: submitText,
|
|
170
|
+
palette: submitType ? submitType : buttonPalette
|
|
171
|
+
})))) : null, cancelText ? /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
172
|
+
text: cancelText,
|
|
173
|
+
palette: "secondary",
|
|
174
|
+
dataId: "".concat(dataId, "_cancelButton"),
|
|
175
|
+
onClick: onClickCancel
|
|
176
|
+
})) : null))) : null)), getBottomContainer ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, getBottomContainer()) : null));
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
DesktopNotificationUI.propTypes = _propTypes.DesktopNotificationUI_propTypes;
|
|
180
|
+
|
|
181
|
+
function DesktopNotification(props) {
|
|
182
|
+
return /*#__PURE__*/_react["default"].createElement(_AutoClose["default"], _extends({}, props, {
|
|
183
|
+
Element: DesktopNotificationUI
|
|
184
|
+
}));
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
DesktopNotification.propTypes = _propTypes.propTypes;
|
|
188
|
+
DesktopNotification.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
|
|
189
|
+
// DesktopNotification.docs = {
|
|
190
|
+
// componentGroup: 'DesktopNotification',
|
|
191
|
+
// folderName: 'Alert'
|
|
192
|
+
// };
|
|
193
|
+
// }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/dot",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"main": "lib/index",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
"variable:addignore": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableIgnore.js ./src",
|
|
45
45
|
"variable:convert": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/pxParserPostcss.js ./src",
|
|
46
46
|
"variable:check": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableErrorCheck.js ./src ./node_modules/@zohodesk-private/css-variable-migrator/es/config/cssVariableReplacementOptions.json",
|
|
47
|
-
"review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js ./src/ ./.cli ./.cli
|
|
47
|
+
"review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js ./src/ ./.cli ./.cli "
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@zohodesk-private/css-variable-migrator": "^1.0.7",
|
|
51
51
|
"@zohodesk-private/node-plugins": "^1.0.0",
|
|
52
52
|
"@zohodesk-private/color-variable-preprocessor": "1.0.6",
|
|
53
|
-
"@zohodesk-private/react-prop-validator": "0.0
|
|
54
|
-
"@zohodesk/components": "1.2.
|
|
55
|
-
"@zohodesk/a11y": "2.
|
|
53
|
+
"@zohodesk-private/react-prop-validator": "0.1.0",
|
|
54
|
+
"@zohodesk/components": "1.2.8",
|
|
55
|
+
"@zohodesk/a11y": "2.1.0",
|
|
56
56
|
"@zohodesk/i18n": "1.0.0-beta.23",
|
|
57
|
-
"@zohodesk/icons": "1.0.
|
|
57
|
+
"@zohodesk/icons": "1.0.2",
|
|
58
58
|
"@zohodesk/svg": "1.1.1",
|
|
59
59
|
"@zohodesk/variables": "1.0.0",
|
|
60
60
|
"@zohodesk/virtualizer": "1.0.3",
|
|
@@ -71,13 +71,13 @@
|
|
|
71
71
|
"velocity-react": "1.4.3",
|
|
72
72
|
"@zohodesk/variables": "1.0.0",
|
|
73
73
|
"@zohodesk/i18n": "1.0.0-beta.23",
|
|
74
|
-
"@zohodesk/components": "1.2.
|
|
75
|
-
"@zohodesk/icons": "1.0.
|
|
74
|
+
"@zohodesk/components": "1.2.8",
|
|
75
|
+
"@zohodesk/icons": "1.0.2",
|
|
76
76
|
"@zohodesk/svg": "1.1.1",
|
|
77
77
|
"@zohodesk/virtualizer": "1.0.3",
|
|
78
78
|
"react-sortable-hoc": "^0.8.3",
|
|
79
79
|
"@zohodesk/hooks": "2.0.1",
|
|
80
80
|
"@zohodesk/utils": "1.3.13",
|
|
81
|
-
"@zohodesk/a11y": "1.
|
|
81
|
+
"@zohodesk/a11y": "2.1.0"
|
|
82
82
|
}
|
|
83
83
|
}
|
package/result.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"jobDetails":{"isRunByLocal":true,"hostName":"lakshmi-zt257","platForm":"Darwin","branchName":"
|
|
1
|
+
{"jobDetails":{"isRunByLocal":true,"hostName":"lakshmi-zt257","platForm":"Darwin","branchName":"LibraryNavigation"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":14,"numberOfFails":0,"numberOfCases":14,"numberOfSuites":3,"endTime":1693489129943,"startTime":1693489125794,"coverageDetail":{"codeCoveragePercentage":98.03,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}}]}}}
|
package/es/docs/formDocs.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export { default as FieldLayout } from '../form/layout/Field/Field';
|
|
2
|
-
export { default as New_Section } from '../form/layout/Section/Section';
|
|
3
|
-
export { default as ValidationMessage } from '../form/fields/ValidationMessage/ValidationMessage';
|
|
4
|
-
export { default as TextBoxField } from '../form/fields/TextBoxField/TextBoxField';
|
|
5
|
-
export { default as TextareaField } from '../form/fields/TextareaField/TextareaField';
|
|
6
|
-
export { default as SelectField } from '../form/fields/SelectField/SelectField';
|
|
7
|
-
export { default as PhoneField } from '../form/fields/PhoneField/PhoneField';
|
|
8
|
-
export { default as MultiSelectField } from '../form/fields/MultiSelectField/MultiSelectField';
|
|
9
|
-
export { default as DateField } from '../form/fields/DateField/DateField';
|
|
10
|
-
export { default as CheckBoxField } from '../form/fields/CheckBoxField/CheckBoxField';
|
|
11
|
-
export { default as CurrencyField } from '../form/fields/CurrencyField/CurrencyField';
|
|
12
|
-
export { default as TagsMultiSelect } from '../form/fields/TagsMultiSelect/TagsMultiSelect';
|
|
13
|
-
export { default as TagsMultiSelectField } from '../form/fields/TagsMultiSelectField/TagsMultiSelectField';
|
|
14
|
-
export { default as TextEditorField } from '../form/fields/TextEditorField/TextEditorField';
|
|
15
|
-
export { default as FieldContainer } from '../form/fields/FieldContainer/FieldContainer';
|
package/es/docs/generalDocs.js
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
export { default as Image } from '../Image/Image';
|
|
2
|
-
export { default as AvatarStatus } from '../avatar/AvatarStatus/AvatarStatus';
|
|
3
|
-
export { default as AvatarIcon } from '../avatar/AvatarIcon/AvatarIcon';
|
|
4
|
-
export { default as AvatarUser } from '../avatar/AvatarUser/AvatarUser';
|
|
5
|
-
export { default as AvatarClose } from '../avatar/AvatarClose/AvatarClose';
|
|
6
|
-
export { default as AvatarCollision } from '../avatar/AvatarCollision/AvatarCollision';
|
|
7
|
-
export { default as AvatarThread } from '../avatar/AvatarThread/AvatarThread';
|
|
8
|
-
export { default as AvatarWithTeam } from '../avatar/AvatarWithTeam/AvatarWithTeam';
|
|
9
|
-
export { default as ChannelIcon } from '../ChannelIcon/ChannelIcon';
|
|
10
|
-
export { default as FlipCard } from '../FlipCard/FlipCard';
|
|
11
|
-
export { default as ListAvatarFlip } from '../list/AvatarFlip/AvatarFlip';
|
|
12
|
-
export { default as ListComment } from '../list/Comment/Comment';
|
|
13
|
-
export { default as ListDotNew } from '../list/DotNew/DotNew';
|
|
14
|
-
export { default as GridStencils } from '../list/GridStencils/GridStencils';
|
|
15
|
-
export { default as ListUserTime } from '../list/UserTime/UserTime';
|
|
16
|
-
export { default as ListThread } from '../list/Thread/Thread';
|
|
17
|
-
export { default as ListTagNew } from '../list/TagNew/TagNew';
|
|
18
|
-
export { default as ListItemLayout } from '../list/ListLayout/ListLayout';
|
|
19
|
-
export { default as ListStencils } from '../list/ListStencils/ListStencils';
|
|
20
|
-
export { default as SecondryPanel } from '../list/SecondryPanel/SecondryPanel';
|
|
21
|
-
export { default as ListFloatingIcons } from '../list/Icons/FloatingIcons';
|
|
22
|
-
export { default as Link } from '../Link/Link';
|
|
23
|
-
export { default as ListSubject } from '../list/Subject/Subject';
|
|
24
|
-
export { default as ListStatusDropdown } from '../list/status/StatusDropdown/StatusDropdown';
|
|
25
|
-
export { default as StatusListItem } from '../list/status/StatusListItem/StatusListItem';
|
|
26
|
-
export { default as ToggleDropDown } from '../dropdown/ToggleDropDown/ToggleDropDown';
|
|
27
|
-
export { default as SubtabLayout } from '../layout/SubtabLayout/SubtabLayout';
|
|
28
|
-
export { default as FreezeLayer } from '../FreezeLayer/FreezeLayer';
|
|
29
|
-
export { default as PlusIcon } from '../PlusIcon/PlusIcon';
|
|
30
|
-
export { default as FormAction } from '../FormAction/FormAction';
|
|
31
|
-
export { default as ToastMessage } from '../ToastMessage/ToastMessage';
|
|
32
|
-
export { default as Drawer } from '../Drawer/Drawer';
|
|
33
|
-
export { default as CommonEmptyState } from '../emptystate/CommonEmptyState/CommonEmptyState';
|
|
34
|
-
export { default as EditionPage } from '../emptystate/EditionPage/EditionPage';
|
|
35
|
-
export { default as EmState_Inconvenience } from '../errorstate/Inconvenience/Inconvenience';
|
|
36
|
-
export { default as EmState_NoRequestFound } from '../errorstate/NoRequestFound/NoRequestFound';
|
|
37
|
-
export { default as EmState_PermissionPlay } from '../errorstate/PermissionPlay/PermissionPlay';
|
|
38
|
-
export { default as EmState_RequestUrlNotFound } from '../errorstate/RequestUrlNotFound/RequestUrlNotFound';
|
|
39
|
-
export { default as EmState_UnableToProcess } from '../errorstate/UnableToProcess/UnableToProcess';
|
|
40
|
-
export { default as EmState_UnauthorizedLogin } from '../errorstate/UnauthorizedLogin/UnauthorizedLogin';
|
|
41
|
-
export { default as EmState_WillBack } from '../errorstate/WillBack/WillBack';
|
|
42
|
-
export { default as EmState_LinkText } from '../errorstate/LinkText/LinkText';
|
|
43
|
-
export { default as IconButton } from '../IconButton/IconButton';
|
|
44
|
-
export { default as AlphabeticList } from '../AlphabeticList/AlphabeticList';
|
|
45
|
-
export { default as ImportantNotes } from '../ImportantNotes/ImportantNotes';
|
|
46
|
-
export { default as Attachment } from '../Attachment/Attachment';
|
|
47
|
-
export { default as Upload } from '../Upload/Upload';
|
|
48
|
-
export { default as MessageBanner } from '../MessageBanner/MessageBanner';
|
|
49
|
-
export { default as Loader } from '../Loader/Loader';
|
|
50
|
-
export { default as NewStar } from '../NewStar/NewStar';
|
|
51
|
-
export { default as Message } from '../Message/Message';
|
|
52
|
-
export { default as ActionButton } from '../ActionButton/ActionButton';
|
|
53
|
-
/* version 2 error states */
|
|
54
|
-
|
|
55
|
-
export { default as V2_ErrState_Inconvenience } from '../version2/errorstate/Inconvenience/Inconvenience';
|
|
56
|
-
export { default as V2_ErrState_UnableToProcessRequest } from '../version2/errorstate/UnableToProcessRequest/UnableToProcessRequest';
|
|
57
|
-
export { default as V2_ErrState_UrlNotFound } from '../version2/errorstate/UrlNotFound/UrlNotFound';
|
|
58
|
-
export { default as V2_ErrState_UnauthorizedLogin } from '../version2/errorstate/UnauthorizedLogin/UnauthorizedLogin';
|
|
59
|
-
export { default as V2_ErrState_WillBeRightBack } from '../version2/errorstate/WillBeRightBack/WillBeRightBack';
|
|
60
|
-
export { default as V2_ErrState_OopsSomethingMiss } from '../version2/errorstate/OopsSomethingMiss/OopsSomethingMiss';
|
|
61
|
-
/* Attachment Viewer */
|
|
62
|
-
|
|
63
|
-
export { default as AttachmentViewer } from '../AttachmentViewer/AttachmentViewer';
|
package/es/docs/lookupDocs.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export { default as LookupClose } from '../lookup/header/Close/Close';
|
|
2
|
-
export { default as ModuleLookupHeader } from '../lookup/header/ModuleHeader/ModuleHeader';
|
|
3
|
-
export { default as LookupSearch } from '../lookup/header/Search/Search';
|
|
4
|
-
export { default as TicketLookupHeader } from '../lookup/header/TicketHeader/TicketHeader';
|
|
5
|
-
export { default as LookupTitle } from '../lookup/header/Title/Title';
|
|
6
|
-
export { default as LookupViewDropdown } from '../lookup/header/ViewDropDown/ViewDropDown';
|
|
7
|
-
export { default as AlertLookup } from '../alert/AlertLookup/AlertLookup';
|
|
8
|
-
export { default as AlertHeader } from '../alert/AlertHeader/AlertHeader';
|
|
9
|
-
export { default as LookupEmptyPage } from '../lookup/EmptyPage/EmptyPage'; // New alerts
|
|
10
|
-
|
|
11
|
-
export { default as AlertLookupNew } from '../version2/lookup/AlertLookup/AlertLookup';
|
|
12
|
-
export { default as AlertHeaderNew } from '../version2/lookup/AlertHeader/AlertHeader';
|
|
13
|
-
export { default as AlertIconsNew } from '../version2/alertIcons/AlertIcons';
|
|
14
|
-
export { default as AlertCloseNew } from '../version2/AlertClose/AlertClose';
|
|
15
|
-
export { default as GlobalNotification } from '../version2/GlobalNotification/GlobalNotification';
|
|
16
|
-
export { default as DesktopNotification } from '../version2/notification/DesktopNotification/DesktopNotification';
|
|
17
|
-
export { default as DesktopNotificationHeader } from '../version2/notification/DesktopNotificationHeader/DesktopNotificationHeader';
|
package/es/docs/setupDocs.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export { default as SetupDetailLayout } from '../layout/SetupDetailLayout/SetupDetailLayout';
|
|
2
|
-
export { default as HelpLink } from '../setup/helptips/Link/Link';
|
|
3
|
-
export { default as HelpDescription } from '../setup/helptips/Description/Description';
|
|
4
|
-
export { default as HelpTitle } from '../setup/helptips/Title/Title';
|
|
5
|
-
export { default as HelpListGroup } from '../setup/helptips/ListGroup/ListGroup';
|
|
6
|
-
export { default as SetupHeaderViews } from '../setup/header/Views/Views';
|
|
7
|
-
export { default as SetupHeaderSearch } from '../setup/header/Search/Search';
|
|
8
|
-
export { default as SetupHeaderLink } from '../setup/header/Link/Link';
|
|
9
|
-
export { default as SetupHeaderButton } from '../setup/header/Button/Button';
|
|
10
|
-
export { default as Text } from '../setup/table/Text/Text.js';
|
|
11
|
-
export { default as Table } from '../setup/table/Table/Table.js';
|