@zohodesk/dot 1.0.0-beta.211 → 1.0.0-beta.214
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 +10 -1
- package/assets/Appearance/dark/mode/dotDarkMode.module.css +521 -0
- package/assets/Appearance/dark/themes/blue/blueDarkDotTheme.module.css +10 -0
- package/assets/Appearance/dark/themes/green/greenDarkDotTheme.module.css +10 -0
- package/assets/Appearance/dark/themes/orange/orangeDarkDotTheme.module.css +10 -0
- package/assets/Appearance/dark/themes/red/redDarkDotTheme.module.css +10 -0
- package/assets/Appearance/dark/themes/yellow/yellowDarkDotTheme.module.css +10 -0
- package/assets/Appearance/default/mode/dotDefaultMode.module.css +521 -0
- package/assets/Appearance/default/themes/blue/blueDefaultDotTheme.module.css +10 -0
- package/assets/Appearance/default/themes/green/greenDefaultDotTheme.module.css +10 -0
- package/assets/Appearance/default/themes/orange/orangeDefaultDotTheme.module.css +10 -0
- package/assets/Appearance/default/themes/red/redDefaultDotTheme.module.css +10 -0
- package/assets/Appearance/default/themes/yellow/yellowDefaultDotTheme.module.css +10 -0
- package/es/ActionButton/ActionButton.js +169 -0
- package/es/ActionButton/ActionButton.module.css +136 -0
- package/es/AlphabeticList/AlphabeticList.js +138 -0
- package/es/AlphabeticList/AlphabeticList.module.css +57 -0
- package/es/Attachment/Attachment.js +104 -0
- package/es/Attachment/Attachment.module.css +132 -0
- package/es/ChannelIcon/ChannelIcon.js +126 -0
- package/es/ChannelIcon/ChannelIcon.module.css +217 -0
- package/es/Drawer/Drawer.js +314 -0
- package/es/Drawer/Drawer.module.css +151 -0
- package/es/ExternalLink/ExternalLink.js +66 -0
- package/es/ExternalLink/ExternalLink.module.css +4 -0
- package/es/ExternalLink/__tests__/ExternalLink.spec.js +27 -0
- package/es/FlipCard/FlipCard.js +183 -0
- package/es/FlipCard/FlipCard.module.css +44 -0
- package/es/FormAction/FormAction.js +83 -0
- package/es/FormAction/FormAction.module.css +82 -0
- package/es/FreezeLayer/FreezeLayer.js +161 -0
- package/es/FreezeLayer/FreezeLayer.module.css +42 -0
- package/es/IconButton/IconButton.js +188 -0
- package/es/IconButton/IconButton.module.css +22 -0
- package/es/Image/Image.js +53 -0
- package/es/Image/Image.module.css +11 -0
- package/es/ImportantNotes/ImportantNotes.js +60 -0
- package/es/ImportantNotes/ImportantNotes.module.css +20 -0
- package/es/Link/Link.js +118 -0
- package/es/Link/Link.module.css +4 -0
- package/es/Link/LinkContext.js +9 -0
- package/es/Loader/Loader.js +27 -0
- package/es/Loader/Loader.module.css +46 -0
- package/es/Message/Message.js +124 -0
- package/es/Message/Message.module.css +103 -0
- package/es/MessageBanner/MessageBanner.js +75 -0
- package/es/MessageBanner/MessageBanner.module.css +46 -0
- package/es/NewStar/NewStar.js +75 -0
- package/es/NewStar/NewStar.module.css +110 -0
- package/es/PlusIcon/PlusIcon.js +60 -0
- package/es/PlusIcon/PlusIcon.module.css +16 -0
- package/es/Provider/Config.js +12 -0
- package/es/Provider.js +205 -0
- package/es/ToastMessage/ToastMessage.js +257 -0
- package/es/ToastMessage/ToastMessage.module.css +328 -0
- package/es/Upload/Upload.js +92 -0
- package/es/Upload/Upload.module.css +125 -0
- package/es/actions/AutoClose.js +54 -0
- package/es/actions/index.js +28 -0
- package/es/alert/AlertHeader/AlertHeader.js +94 -0
- package/es/alert/AlertHeader/AlertHeader.module.css +81 -0
- package/es/alert/AlertLookup/AlertLookup.js +196 -0
- package/es/alert/AlertLookup/AlertLookup.module.css +27 -0
- package/es/avatar/AvatarClose/AvatarClose.js +67 -0
- package/es/avatar/AvatarClose/AvatarClose.module.css +37 -0
- package/es/avatar/AvatarCollision/AvatarCollision.js +80 -0
- package/es/avatar/AvatarCollision/AvatarCollision.module.css +69 -0
- package/es/avatar/AvatarIcon/AvatarIcon.js +84 -0
- package/es/avatar/AvatarIcon/AvatarIcon.module.css +58 -0
- package/es/avatar/AvatarStatus/AvatarStatus.js +95 -0
- package/es/avatar/AvatarStatus/AvatarStatus.module.css +146 -0
- package/es/avatar/AvatarThread/AvatarThread.js +111 -0
- package/es/avatar/AvatarThread/AvatarThread.module.css +163 -0
- package/es/avatar/AvatarUser/AvatarUser.js +148 -0
- package/es/avatar/AvatarUser/AvatarUser.module.css +171 -0
- package/es/avatar/AvatarWithTeam/AvatarWithTeam.js +121 -0
- package/es/avatar/AvatarWithTeam/AvatarWithTeam.module.css +23 -0
- package/es/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +47 -0
- package/es/deprecated/SelectDropdown/SelectDropdown.js +129 -0
- package/es/deprecated/SelectDropdown/SelectDropdown.module.css +55 -0
- package/es/deprecated/utils/General.js +19 -0
- package/es/dropdown/ToggleDropDown/ToggleDropDown.js +912 -0
- package/es/dropdown/ToggleDropDown/ToggleDropDown.module.css +97 -0
- package/es/emptystate/CommonEmptyState/CommonEmptyState.js +94 -0
- package/es/emptystate/CommonEmptyState/CommonEmptyState.module.css +85 -0
- package/es/emptystate/EditionPage/EditionPage.css +43 -0
- package/es/emptystate/EditionPage/EditionPage.js +65 -0
- package/es/errorstate/EmptyStates.module.css +88 -0
- package/es/errorstate/Inconvenience/Inconvenience.js +97 -0
- package/es/errorstate/Inconvenience/Inconvenience.module.css +7 -0
- package/es/errorstate/LinkText/LinkText.js +39 -0
- package/es/errorstate/LinkText/LinkText.module.css +6 -0
- package/es/errorstate/NoRequestFound/NoRequestFound.js +97 -0
- package/es/errorstate/NoRequestFound/NoRequestFound.module.css +3 -0
- package/es/errorstate/PermissionPlay/PermissionPlay.js +96 -0
- package/es/errorstate/PermissionPlay/PermissionPlay.module.css +34 -0
- package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +97 -0
- package/es/errorstate/RequestUrlNotFound/RequestUrlNotFound.module.css +3 -0
- package/es/errorstate/UnableToProcess/UnableToProcess.js +97 -0
- package/es/errorstate/UnableToProcess/UnableToProcess.module.css +3 -0
- package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +97 -0
- package/es/errorstate/UnauthorizedLogin/UnauthorizedLogin.module.css +3 -0
- package/es/errorstate/WillBack/WillBack.js +82 -0
- package/es/errorstate/WillBack/WillBack.module.css +34 -0
- package/es/form/fields/CheckBoxField/CheckBoxField.js +189 -0
- package/es/form/fields/CurrencyField/CurrencyField.js +246 -0
- package/es/form/fields/DateField/DateField.js +256 -0
- package/es/form/fields/Fields.module.css +183 -0
- package/es/form/fields/MultiSelectField/MultiSelectField.js +287 -0
- package/es/form/fields/PhoneField/PhoneField.js +240 -0
- package/es/form/fields/RadioField/RadioField.js +153 -0
- package/es/form/fields/SelectField/SelectField.js +254 -0
- package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +297 -0
- package/es/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +107 -0
- package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +320 -0
- package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.module.css +9 -0
- package/es/form/fields/TextBoxField/TextBoxField.js +234 -0
- package/es/form/fields/TextEditor/TextEditor.js +458 -0
- package/es/form/fields/TextEditor/TextEditor.module.css +655 -0
- package/es/form/fields/TextEditorField/TextEditorField.js +254 -0
- package/es/form/fields/TextEditorWrapper/TextEditorWrapper.js +244 -0
- package/es/form/fields/TextEditorWrapper/TextEditorWrapper.module.css +37 -0
- package/es/form/fields/TextareaField/TextareaField.js +215 -0
- package/es/form/fields/ValidationMessage/ValidationMessage.js +73 -0
- package/es/form/fields/ValidationMessage/ValidationMessage.module.css +27 -0
- package/es/form/layout/Field/Field.js +44 -0
- package/es/form/layout/Field/Field.module.css +22 -0
- package/es/form/layout/Section/ModuleFormSection.module.css +3 -0
- package/es/form/layout/Section/Section.js +44 -0
- package/es/i18n.js +4349 -0
- package/es/index.js +8 -0
- package/es/layout/SetupDetailLayout/SetupDetailLayout.js +243 -0
- package/es/layout/SetupDetailLayout/SetupDetailLayout.module.css +152 -0
- package/es/layout/SetupDetailLayout/index.js +4 -0
- package/es/layout/SubtabLayout/SubtabLayout.js +201 -0
- package/es/layout/SubtabLayout/SubtabLayout.module.css +146 -0
- package/es/layout/SubtabLayout/index.js +4 -0
- package/es/list/AvatarFlip/AvatarFlip.js +105 -0
- package/es/list/AvatarFlip/AvatarFlip.module.css +3 -0
- package/es/list/BluePrintStatus/BluePrintStatus.js +32 -0
- package/es/list/BluePrintStatus/BluePrintStatus.module.css +17 -0
- package/es/list/Comment/Comment.js +52 -0
- package/es/list/Comment/Comment.module.css +29 -0
- package/es/list/DepartmentDropDown/DepartmentDropDown.js +129 -0
- package/es/list/DepartmentDropDown/DepartmentDropDown.module.css +9 -0
- package/es/list/Dot/Dot.js +27 -0
- package/es/list/Dot/Dot.module.css +15 -0
- package/es/list/DotNew/DotNew.js +36 -0
- package/es/list/DotNew/DotNew.module.css +22 -0
- package/es/list/GridStencils/GridStencils.js +41 -0
- package/es/list/GridStencils/GridStencils.module.css +156 -0
- package/es/list/Icons/AddNewIcon.js +32 -0
- package/es/list/Icons/CompleteIcon.js +35 -0
- package/es/list/Icons/DeleteIcon.js +35 -0
- package/es/list/Icons/EditIcon.js +35 -0
- package/es/list/Icons/FloatingIcons.js +36 -0
- package/es/list/Icons/Icons.module.css +16 -0
- package/es/list/Icons/ReadUnreadIcon.js +42 -0
- package/es/list/Icons/SmartIcon.js +34 -0
- package/es/list/ListLayout/ListLayout.js +117 -0
- package/es/list/ListLayout/ListLayout.module.css +58 -0
- package/es/list/ListStencils/ListStencils.js +52 -0
- package/es/list/ListStencils/ListStencils.module.css +67 -0
- package/es/list/SecondaryText/AccountName.js +109 -0
- package/es/list/SecondaryText/ContactName.js +117 -0
- package/es/list/SecondaryText/DepartmentText.js +37 -0
- package/es/list/SecondaryText/Email.js +74 -0
- package/es/list/SecondaryText/HappinessRating.js +38 -0
- package/es/list/SecondaryText/PhoneNumber.js +81 -0
- package/es/list/SecondaryText/PriorityText.js +42 -0
- package/es/list/SecondaryText/SecondaryText.js +51 -0
- package/es/list/SecondaryText/SecondaryText.module.css +136 -0
- package/es/list/SecondaryText/StatusText.js +45 -0
- package/es/list/SecondaryText/TicketId.js +71 -0
- package/es/list/SecondaryText/Website.js +54 -0
- package/es/list/SecondaryText/index.js +11 -0
- package/es/list/SecondryPanel/SecondryPanel.js +142 -0
- package/es/list/SecondryPanel/SecondryPanel.module.css +6 -0
- package/es/list/SentimentStatus/SentimentStatus.js +39 -0
- package/es/list/SentimentStatus/SentimentStatus.module.css +12 -0
- package/es/list/Subject/Subject.js +80 -0
- package/es/list/Subject/Subject.module.css +27 -0
- package/es/list/TagNew/TagNew.js +42 -0
- package/es/list/TagNew/TagNew.module.css +115 -0
- package/es/list/Thread/Thread.js +50 -0
- package/es/list/Thread/Thread.module.css +43 -0
- package/es/list/UserTime/UserTime.js +95 -0
- package/es/list/UserTime/UserTime.module.css +58 -0
- package/es/list/listCommon.module.css +60 -0
- package/es/list/status/StatusDropdown/StatusDropdown.js +488 -0
- package/es/list/status/StatusDropdown/StatusDropdown.module.css +89 -0
- package/es/list/status/StatusListItem/StatusListItem.js +161 -0
- package/es/list/status/StatusListItem/StatusListItem.module.css +104 -0
- package/es/lookup/EmptyPage/EmptyPage.js +71 -0
- package/es/lookup/EmptyPage/LookupEmptyPage.module.css +12 -0
- package/es/lookup/Lookup/Lookup.js +112 -0
- package/es/lookup/Lookup/Lookup.module.css +26 -0
- package/es/lookup/Section/LookupSection.module.css +8 -0
- package/es/lookup/Section/Section.js +29 -0
- package/es/lookup/header/Close/Close.js +37 -0
- package/es/lookup/header/Close/LookupClose.module.css +15 -0
- package/es/lookup/header/ModuleHeader/ModuleHeader.js +89 -0
- package/es/lookup/header/Search/LookupSearch.module.css +57 -0
- package/es/lookup/header/Search/Search.js +260 -0
- package/es/lookup/header/TicketHeader/TicketHeader.js +116 -0
- package/es/lookup/header/TicketHeader/TicketHeader.module.css +23 -0
- package/es/lookup/header/Title/LookupTitle.module.css +20 -0
- package/es/lookup/header/Title/Title.js +34 -0
- package/es/lookup/header/ViewDropDown/ViewDropDown.js +183 -0
- package/es/lookup/header/ViewDropDown/ViewDropDown.module.css +50 -0
- package/es/lookup/header/lookupHeaderCommon.module.css +35 -0
- package/es/lookup/header/lookupHeaderCommonResponsive.module.css +24 -0
- package/es/setup/header/Button/Button.js +45 -0
- package/es/setup/header/Button/HeaderButton.module.css +5 -0
- package/es/setup/header/Link/HeaderLink.module.css +21 -0
- package/es/setup/header/Link/Link.js +54 -0
- package/es/setup/header/Search/Search.js +95 -0
- package/es/setup/header/Search/Search.module.css +68 -0
- package/es/setup/header/Views/Views.js +59 -0
- package/es/setup/header/Views/Views.module.css +37 -0
- package/es/setup/helptips/Description/Description.js +28 -0
- package/es/setup/helptips/Description/HelpTipsDescription.module.css +6 -0
- package/es/setup/helptips/Link/HelpTipsLink.module.css +7 -0
- package/es/setup/helptips/Link/Link.js +48 -0
- package/es/setup/helptips/ListGroup/ListGroup.js +44 -0
- package/es/setup/helptips/ListGroup/ListGroup.module.css +22 -0
- package/es/setup/helptips/Title/HelpTipsTitle.module.css +5 -0
- package/es/setup/helptips/Title/Title.js +28 -0
- package/es/setup/table/Table/Table.js +33 -0
- package/es/setup/table/TableBody/TableBody.js +37 -0
- package/es/setup/table/TableData/SetupTableData.module.css +44 -0
- package/es/setup/table/TableData/TableData.js +49 -0
- package/es/setup/table/TableData/Tablehover.module.css +6 -0
- package/es/setup/table/TableHead/SetupTableHead.module.css +12 -0
- package/es/setup/table/TableHead/TableHead.js +47 -0
- package/es/setup/table/TableRow/SetupTableRow.module.css +14 -0
- package/es/setup/table/TableRow/TableRow.js +56 -0
- package/es/setup/table/Text/TableText.module.css +37 -0
- package/es/setup/table/Text/Text.js +70 -0
- package/es/svg/PlusIcon.js +41 -0
- package/es/svg/SnippetIcon.js +43 -0
- package/es/svg/TemplateIcon.js +44 -0
- package/es/utils/ChannelIconMapping.js +129 -0
- package/es/utils/Common.js +24 -0
- package/es/utils/General.js +45 -0
- package/es/utils/KeyboardApi.js +294 -0
- package/es/utils/editorUtils.js +193 -0
- package/es/version2/AlertClose/AlertClose.js +47 -0
- package/es/version2/AlertClose/AlertClose.module.css +43 -0
- package/es/version2/GlobalNotification/GlobalNotification.js +149 -0
- package/es/version2/GlobalNotification/GlobalNotification.module.css +125 -0
- package/es/version2/alertIcons/AlarmAlertIcon.js +72 -0
- package/es/version2/alertIcons/AlertIcons.js +65 -0
- package/es/version2/alertIcons/AlertIcons.module.css +67 -0
- package/es/version2/alertIcons/DangerAlertIcon.js +73 -0
- package/es/version2/alertIcons/ErrorAlertIcon.js +77 -0
- package/es/version2/alertIcons/InfoAlertIcon.js +81 -0
- package/es/version2/alertIcons/NotificationAlertIcon.js +77 -0
- package/es/version2/alertIcons/SuccessAlertIcon.js +72 -0
- package/es/version2/alertIcons/WarningAlertIcon.js +72 -0
- package/es/version2/errorstate/Inconvenience/Inconvenience.js +93 -0
- package/es/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +94 -0
- package/es/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +93 -0
- package/es/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +97 -0
- package/es/version2/errorstate/UrlNotFound/UrlNotFound.js +93 -0
- package/es/version2/errorstate/V2_ErrorStates.module.css +46 -0
- package/es/version2/errorstate/WillBeRightBack/WillBeRightBack.js +93 -0
- package/es/version2/lookup/AlertHeader/AlertHeader.js +78 -0
- package/es/version2/lookup/AlertHeader/AlertHeaderNew.module.css +87 -0
- package/es/version2/lookup/AlertLookup/AlertLookup.js +254 -0
- package/es/version2/lookup/AlertLookup/AlertLookupNew.module.css +44 -0
- package/es/version2/lookup/alertLookupCommonNew.module.css +33 -0
- package/es/version2/notification/DesktopNotification/DesktopNotification.js +209 -0
- package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +106 -0
- package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +75 -0
- package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +137 -0
- package/lib/ActionButton/ActionButton.js +226 -0
- package/lib/ActionButton/ActionButton.module.css +136 -0
- package/lib/AlphabeticList/AlphabeticList.js +213 -0
- package/lib/AlphabeticList/AlphabeticList.module.css +57 -0
- package/lib/Attachment/Attachment.js +155 -0
- package/lib/Attachment/Attachment.module.css +132 -0
- package/lib/ChannelIcon/ChannelIcon.js +179 -0
- package/lib/ChannelIcon/ChannelIcon.module.css +217 -0
- package/lib/Drawer/Drawer.js +420 -0
- package/lib/Drawer/Drawer.module.css +151 -0
- package/lib/ExternalLink/ExternalLink.js +113 -0
- package/lib/ExternalLink/ExternalLink.module.css +4 -0
- package/lib/ExternalLink/__tests__/ExternalLink.spec.js +37 -0
- package/lib/FlipCard/FlipCard.js +240 -0
- package/lib/FlipCard/FlipCard.module.css +44 -0
- package/lib/FormAction/FormAction.js +146 -0
- package/lib/FormAction/FormAction.module.css +82 -0
- package/lib/FreezeLayer/FreezeLayer.js +216 -0
- package/lib/FreezeLayer/FreezeLayer.module.css +42 -0
- package/lib/IconButton/IconButton.js +236 -0
- package/lib/IconButton/IconButton.module.css +22 -0
- package/lib/Image/Image.js +102 -0
- package/lib/Image/Image.module.css +11 -0
- package/lib/ImportantNotes/ImportantNotes.js +107 -0
- package/lib/ImportantNotes/ImportantNotes.module.css +20 -0
- package/lib/Link/Link.js +169 -0
- package/lib/Link/Link.module.css +4 -0
- package/lib/Link/LinkContext.js +23 -0
- package/lib/Loader/Loader.js +76 -0
- package/lib/Loader/Loader.module.css +46 -0
- package/lib/Message/Message.js +173 -0
- package/lib/Message/Message.module.css +103 -0
- package/lib/MessageBanner/MessageBanner.js +127 -0
- package/lib/MessageBanner/MessageBanner.module.css +46 -0
- package/lib/NewStar/NewStar.js +126 -0
- package/lib/NewStar/NewStar.module.css +110 -0
- package/lib/PlusIcon/PlusIcon.js +106 -0
- package/lib/PlusIcon/PlusIcon.module.css +16 -0
- package/lib/Provider/Config.js +21 -0
- package/lib/Provider.js +309 -0
- package/lib/ToastMessage/ToastMessage.js +298 -0
- package/lib/ToastMessage/ToastMessage.module.css +328 -0
- package/lib/Upload/Upload.js +143 -0
- package/lib/Upload/Upload.module.css +125 -0
- package/lib/actions/AutoClose.js +85 -0
- package/lib/actions/index.js +37 -0
- package/lib/alert/AlertHeader/AlertHeader.js +151 -0
- package/lib/alert/AlertHeader/AlertHeader.module.css +81 -0
- package/lib/alert/AlertLookup/AlertLookup.js +249 -0
- package/lib/alert/AlertLookup/AlertLookup.module.css +27 -0
- package/lib/avatar/AvatarClose/AvatarClose.js +114 -0
- package/lib/avatar/AvatarClose/AvatarClose.module.css +37 -0
- package/lib/avatar/AvatarCollision/AvatarCollision.js +127 -0
- package/lib/avatar/AvatarCollision/AvatarCollision.module.css +69 -0
- package/lib/avatar/AvatarIcon/AvatarIcon.js +135 -0
- package/lib/avatar/AvatarIcon/AvatarIcon.module.css +58 -0
- package/lib/avatar/AvatarStatus/AvatarStatus.js +141 -0
- package/lib/avatar/AvatarStatus/AvatarStatus.module.css +146 -0
- package/lib/avatar/AvatarThread/AvatarThread.js +161 -0
- package/lib/avatar/AvatarThread/AvatarThread.module.css +163 -0
- package/lib/avatar/AvatarUser/AvatarUser.js +198 -0
- package/lib/avatar/AvatarUser/AvatarUser.module.css +171 -0
- package/lib/avatar/AvatarWithTeam/AvatarWithTeam.js +176 -0
- package/lib/avatar/AvatarWithTeam/AvatarWithTeam.module.css +23 -0
- package/lib/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js +53 -0
- package/lib/deprecated/SelectDropdown/SelectDropdown.js +186 -0
- package/lib/deprecated/SelectDropdown/SelectDropdown.module.css +55 -0
- package/lib/deprecated/utils/General.js +29 -0
- package/lib/dropdown/ToggleDropDown/ToggleDropDown.js +982 -0
- package/lib/dropdown/ToggleDropDown/ToggleDropDown.module.css +97 -0
- package/lib/emptystate/CommonEmptyState/CommonEmptyState.js +148 -0
- package/lib/emptystate/CommonEmptyState/CommonEmptyState.module.css +85 -0
- package/lib/emptystate/EditionPage/EditionPage.css +43 -0
- package/lib/emptystate/EditionPage/EditionPage.js +115 -0
- package/lib/errorstate/EmptyStates.module.css +88 -0
- package/lib/errorstate/Inconvenience/Inconvenience.js +147 -0
- package/lib/errorstate/Inconvenience/Inconvenience.module.css +7 -0
- package/lib/errorstate/LinkText/LinkText.js +89 -0
- package/lib/errorstate/LinkText/LinkText.module.css +6 -0
- package/lib/errorstate/NoRequestFound/NoRequestFound.js +147 -0
- package/lib/errorstate/NoRequestFound/NoRequestFound.module.css +3 -0
- package/lib/errorstate/PermissionPlay/PermissionPlay.js +146 -0
- package/lib/errorstate/PermissionPlay/PermissionPlay.module.css +34 -0
- package/lib/errorstate/RequestUrlNotFound/RequestUrlNotFound.js +147 -0
- package/lib/errorstate/RequestUrlNotFound/RequestUrlNotFound.module.css +3 -0
- package/lib/errorstate/UnableToProcess/UnableToProcess.js +147 -0
- package/lib/errorstate/UnableToProcess/UnableToProcess.module.css +3 -0
- package/lib/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +147 -0
- package/lib/errorstate/UnauthorizedLogin/UnauthorizedLogin.module.css +3 -0
- package/lib/errorstate/WillBack/WillBack.js +131 -0
- package/lib/errorstate/WillBack/WillBack.module.css +34 -0
- package/lib/form/fields/CheckBoxField/CheckBoxField.js +242 -0
- package/lib/form/fields/CurrencyField/CurrencyField.js +294 -0
- package/lib/form/fields/DateField/DateField.js +307 -0
- package/lib/form/fields/Fields.module.css +183 -0
- package/lib/form/fields/MultiSelectField/MultiSelectField.js +339 -0
- package/lib/form/fields/PhoneField/PhoneField.js +286 -0
- package/lib/form/fields/RadioField/RadioField.js +205 -0
- package/lib/form/fields/SelectField/SelectField.js +306 -0
- package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +353 -0
- package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +107 -0
- package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +362 -0
- package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.module.css +9 -0
- package/lib/form/fields/TextBoxField/TextBoxField.js +287 -0
- package/lib/form/fields/TextEditor/TextEditor.js +503 -0
- package/lib/form/fields/TextEditor/TextEditor.module.css +655 -0
- package/lib/form/fields/TextEditorField/TextEditorField.js +306 -0
- package/lib/form/fields/TextEditorWrapper/TextEditorWrapper.js +296 -0
- package/lib/form/fields/TextEditorWrapper/TextEditorWrapper.module.css +37 -0
- package/lib/form/fields/TextareaField/TextareaField.js +266 -0
- package/lib/form/fields/ValidationMessage/ValidationMessage.js +124 -0
- package/lib/form/fields/ValidationMessage/ValidationMessage.module.css +27 -0
- package/lib/form/layout/Field/Field.js +97 -0
- package/lib/form/layout/Field/Field.module.css +22 -0
- package/lib/form/layout/Section/ModuleFormSection.module.css +3 -0
- package/lib/form/layout/Section/Section.js +93 -0
- package/lib/i18n.js +3417 -0
- package/lib/index.js +101 -0
- package/lib/layout/SetupDetailLayout/SetupDetailLayout.js +331 -0
- package/lib/layout/SetupDetailLayout/SetupDetailLayout.module.css +152 -0
- package/lib/layout/SetupDetailLayout/index.js +37 -0
- package/lib/layout/SubtabLayout/SubtabLayout.js +301 -0
- package/lib/layout/SubtabLayout/SubtabLayout.module.css +146 -0
- package/lib/layout/SubtabLayout/index.js +37 -0
- package/lib/list/AvatarFlip/AvatarFlip.js +159 -0
- package/lib/list/AvatarFlip/AvatarFlip.module.css +3 -0
- package/lib/list/BluePrintStatus/BluePrintStatus.js +77 -0
- package/lib/list/BluePrintStatus/BluePrintStatus.module.css +17 -0
- package/lib/list/Comment/Comment.js +104 -0
- package/lib/list/Comment/Comment.module.css +29 -0
- package/lib/list/DepartmentDropDown/DepartmentDropDown.js +184 -0
- package/lib/list/DepartmentDropDown/DepartmentDropDown.module.css +9 -0
- package/lib/list/Dot/Dot.js +76 -0
- package/lib/list/Dot/Dot.module.css +15 -0
- package/lib/list/DotNew/DotNew.js +85 -0
- package/lib/list/DotNew/DotNew.module.css +22 -0
- package/lib/list/GridStencils/GridStencils.js +90 -0
- package/lib/list/GridStencils/GridStencils.module.css +156 -0
- package/lib/list/Icons/AddNewIcon.js +82 -0
- package/lib/list/Icons/CompleteIcon.js +85 -0
- package/lib/list/Icons/DeleteIcon.js +85 -0
- package/lib/list/Icons/EditIcon.js +85 -0
- package/lib/list/Icons/FloatingIcons.js +92 -0
- package/lib/list/Icons/Icons.module.css +16 -0
- package/lib/list/Icons/ReadUnreadIcon.js +92 -0
- package/lib/list/Icons/SmartIcon.js +88 -0
- package/lib/list/ListLayout/ListLayout.js +179 -0
- package/lib/list/ListLayout/ListLayout.module.css +58 -0
- package/lib/list/ListStencils/ListStencils.js +100 -0
- package/lib/list/ListStencils/ListStencils.module.css +67 -0
- package/lib/list/SecondaryText/AccountName.js +159 -0
- package/lib/list/SecondaryText/ContactName.js +175 -0
- package/lib/list/SecondaryText/DepartmentText.js +86 -0
- package/lib/list/SecondaryText/Email.js +121 -0
- package/lib/list/SecondaryText/HappinessRating.js +88 -0
- package/lib/list/SecondaryText/PhoneNumber.js +128 -0
- package/lib/list/SecondaryText/PriorityText.js +91 -0
- package/lib/list/SecondaryText/SecondaryText.js +98 -0
- package/lib/list/SecondaryText/SecondaryText.module.css +136 -0
- package/lib/list/SecondaryText/StatusText.js +94 -0
- package/lib/list/SecondaryText/TicketId.js +121 -0
- package/lib/list/SecondaryText/Website.js +101 -0
- package/lib/list/SecondaryText/index.js +95 -0
- package/lib/list/SecondryPanel/SecondryPanel.js +241 -0
- package/lib/list/SecondryPanel/SecondryPanel.module.css +6 -0
- package/lib/list/SentimentStatus/SentimentStatus.js +85 -0
- package/lib/list/SentimentStatus/SentimentStatus.module.css +12 -0
- package/lib/list/Subject/Subject.js +130 -0
- package/lib/list/Subject/Subject.module.css +27 -0
- package/lib/list/TagNew/TagNew.js +91 -0
- package/lib/list/TagNew/TagNew.module.css +115 -0
- package/lib/list/Thread/Thread.js +101 -0
- package/lib/list/Thread/Thread.module.css +43 -0
- package/lib/list/UserTime/UserTime.js +147 -0
- package/lib/list/UserTime/UserTime.module.css +58 -0
- package/lib/list/listCommon.module.css +60 -0
- package/lib/list/status/StatusDropdown/StatusDropdown.js +538 -0
- package/lib/list/status/StatusDropdown/StatusDropdown.module.css +89 -0
- package/lib/list/status/StatusListItem/StatusListItem.js +206 -0
- package/lib/list/status/StatusListItem/StatusListItem.module.css +104 -0
- package/lib/lookup/EmptyPage/EmptyPage.js +125 -0
- package/lib/lookup/EmptyPage/LookupEmptyPage.module.css +12 -0
- package/lib/lookup/Lookup/Lookup.js +159 -0
- package/lib/lookup/Lookup/Lookup.module.css +26 -0
- package/lib/lookup/Section/LookupSection.module.css +8 -0
- package/lib/lookup/Section/Section.js +79 -0
- package/lib/lookup/header/Close/Close.js +87 -0
- package/lib/lookup/header/Close/LookupClose.module.css +15 -0
- package/lib/lookup/header/ModuleHeader/ModuleHeader.js +144 -0
- package/lib/lookup/header/Search/LookupSearch.module.css +57 -0
- package/lib/lookup/header/Search/Search.js +315 -0
- package/lib/lookup/header/TicketHeader/TicketHeader.js +169 -0
- package/lib/lookup/header/TicketHeader/TicketHeader.module.css +23 -0
- package/lib/lookup/header/Title/LookupTitle.module.css +20 -0
- package/lib/lookup/header/Title/Title.js +84 -0
- package/lib/lookup/header/ViewDropDown/ViewDropDown.js +229 -0
- package/lib/lookup/header/ViewDropDown/ViewDropDown.module.css +50 -0
- package/lib/lookup/header/lookupHeaderCommon.module.css +35 -0
- package/lib/lookup/header/lookupHeaderCommonResponsive.module.css +24 -0
- package/lib/setup/header/Button/Button.js +91 -0
- package/lib/setup/header/Button/HeaderButton.module.css +5 -0
- package/lib/setup/header/Link/HeaderLink.module.css +21 -0
- package/lib/setup/header/Link/Link.js +102 -0
- package/lib/setup/header/Search/Search.js +139 -0
- package/lib/setup/header/Search/Search.module.css +68 -0
- package/lib/setup/header/Views/Views.js +105 -0
- package/lib/setup/header/Views/Views.module.css +37 -0
- package/lib/setup/helptips/Description/Description.js +72 -0
- package/lib/setup/helptips/Description/HelpTipsDescription.module.css +6 -0
- package/lib/setup/helptips/Link/HelpTipsLink.module.css +7 -0
- package/lib/setup/helptips/Link/Link.js +95 -0
- package/lib/setup/helptips/ListGroup/ListGroup.js +93 -0
- package/lib/setup/helptips/ListGroup/ListGroup.module.css +22 -0
- package/lib/setup/helptips/Title/HelpTipsTitle.module.css +5 -0
- package/lib/setup/helptips/Title/Title.js +72 -0
- package/lib/setup/table/Table/Table.js +82 -0
- package/lib/setup/table/TableBody/TableBody.js +87 -0
- package/lib/setup/table/TableData/SetupTableData.module.css +44 -0
- package/lib/setup/table/TableData/TableData.js +95 -0
- package/lib/setup/table/TableData/Tablehover.module.css +6 -0
- package/lib/setup/table/TableHead/SetupTableHead.module.css +12 -0
- package/lib/setup/table/TableHead/TableHead.js +93 -0
- package/lib/setup/table/TableRow/SetupTableRow.module.css +14 -0
- package/lib/setup/table/TableRow/TableRow.js +102 -0
- package/lib/setup/table/Text/TableText.module.css +37 -0
- package/lib/setup/table/Text/Text.js +121 -0
- package/lib/svg/PlusIcon.js +90 -0
- package/lib/svg/SnippetIcon.js +92 -0
- package/lib/svg/TemplateIcon.js +93 -0
- package/lib/utils/ChannelIconMapping.js +138 -0
- package/lib/utils/Common.js +33 -0
- package/lib/utils/General.js +58 -0
- package/lib/utils/KeyboardApi.js +299 -0
- package/lib/utils/editorUtils.js +223 -0
- package/lib/version2/AlertClose/AlertClose.js +101 -0
- package/lib/version2/AlertClose/AlertClose.module.css +43 -0
- package/lib/version2/GlobalNotification/GlobalNotification.js +202 -0
- package/lib/version2/GlobalNotification/GlobalNotification.module.css +125 -0
- package/lib/version2/alertIcons/AlarmAlertIcon.js +125 -0
- package/lib/version2/alertIcons/AlertIcons.js +127 -0
- package/lib/version2/alertIcons/AlertIcons.module.css +67 -0
- package/lib/version2/alertIcons/DangerAlertIcon.js +126 -0
- package/lib/version2/alertIcons/ErrorAlertIcon.js +130 -0
- package/lib/version2/alertIcons/InfoAlertIcon.js +134 -0
- package/lib/version2/alertIcons/NotificationAlertIcon.js +130 -0
- package/lib/version2/alertIcons/SuccessAlertIcon.js +125 -0
- package/lib/version2/alertIcons/WarningAlertIcon.js +125 -0
- package/lib/version2/errorstate/Inconvenience/Inconvenience.js +146 -0
- package/lib/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js +147 -0
- package/lib/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js +146 -0
- package/lib/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js +150 -0
- package/lib/version2/errorstate/UrlNotFound/UrlNotFound.js +146 -0
- package/lib/version2/errorstate/V2_ErrorStates.module.css +46 -0
- package/lib/version2/errorstate/WillBeRightBack/WillBeRightBack.js +146 -0
- package/lib/version2/lookup/AlertHeader/AlertHeader.js +134 -0
- package/lib/version2/lookup/AlertHeader/AlertHeaderNew.module.css +87 -0
- package/lib/version2/lookup/AlertLookup/AlertLookup.js +316 -0
- package/lib/version2/lookup/AlertLookup/AlertLookupNew.module.css +44 -0
- package/lib/version2/lookup/alertLookupCommonNew.module.css +33 -0
- package/lib/version2/notification/DesktopNotification/DesktopNotification.js +236 -0
- package/lib/version2/notification/DesktopNotification/DesktopNotification.module.css +106 -0
- package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +128 -0
- package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +137 -0
- package/package.json +4 -4
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
.tag {
|
|
2
|
+
max-width: 100%;
|
|
3
|
+
}
|
|
4
|
+
[dir=ltr] .moreLess, [dir=ltr] .tag {
|
|
5
|
+
margin: 0 var(--zd_size6) var(--zd_size6) 0;
|
|
6
|
+
}
|
|
7
|
+
[dir=rtl] .moreLess, [dir=rtl] .tag {
|
|
8
|
+
margin: 0 0 var(--zd_size6) var(--zd_size6);
|
|
9
|
+
}
|
|
10
|
+
.input {
|
|
11
|
+
height: var(--zd_size20);
|
|
12
|
+
width: 100%;
|
|
13
|
+
margin-bottom: var(--zd_size4);
|
|
14
|
+
}
|
|
15
|
+
.viewpopNew {
|
|
16
|
+
max-height: var(--zd_size250);
|
|
17
|
+
}
|
|
18
|
+
.tagDiv {
|
|
19
|
+
max-height: var(--zd_size160);
|
|
20
|
+
margin-top: var(--zd_size5);
|
|
21
|
+
}
|
|
22
|
+
.hasBorder {
|
|
23
|
+
transition: border var(--zd_transition2) linear 0s;
|
|
24
|
+
border-bottom-style: solid;
|
|
25
|
+
border-bottom-width: 1px;
|
|
26
|
+
}
|
|
27
|
+
.borderColor_transparent {
|
|
28
|
+
border-bottom-color: var(--zdt_tagsmultiselect_transparent_border);
|
|
29
|
+
}
|
|
30
|
+
.borderColor_transparent:hover {
|
|
31
|
+
border-bottom-color: var(--zdt_tagsmultiselect_transparent_hover_border);
|
|
32
|
+
}
|
|
33
|
+
.borderColor_transparent.active {
|
|
34
|
+
border-bottom-color: var(--zdt_tagsmultiselect_transparent_active_border);
|
|
35
|
+
}
|
|
36
|
+
.borderColor_default {
|
|
37
|
+
border-bottom-color: var(--zdt_tagsmultiselect_default_border);
|
|
38
|
+
}
|
|
39
|
+
.borderColor_default:hover {
|
|
40
|
+
border-bottom-color: var(--zdt_tagsmultiselect_default_hover_border);
|
|
41
|
+
}
|
|
42
|
+
.borderColor_default.active {
|
|
43
|
+
border-bottom-color: var(--zdt_tagsmultiselect_default_active_border);
|
|
44
|
+
}
|
|
45
|
+
.borderColor_dark {
|
|
46
|
+
border-bottom-color: var(--zdt_tagsmultiselect_dark_border);
|
|
47
|
+
}
|
|
48
|
+
.borderColor_dark:hover {
|
|
49
|
+
border-bottom-color: var(--zdt_tagsmultiselect_dark_hover_border);
|
|
50
|
+
}
|
|
51
|
+
.borderColor_dark.active {
|
|
52
|
+
border-bottom-color: var(--zdt_tagsmultiselect_dark_active_border);
|
|
53
|
+
}
|
|
54
|
+
.moreLess {
|
|
55
|
+
color: var(--zdt_tagsmultiselect_more_text);
|
|
56
|
+
font-size: var(--zd_font_size13);
|
|
57
|
+
cursor: pointer;
|
|
58
|
+
}
|
|
59
|
+
.moreLess:hover {
|
|
60
|
+
color: var(--zdt_tagsmultiselect_more_hover_text);
|
|
61
|
+
}
|
|
62
|
+
.inputWrapper {
|
|
63
|
+
position: relative;
|
|
64
|
+
max-width: 100%;
|
|
65
|
+
min-width: var(--zd_size5);
|
|
66
|
+
font-size: 0;
|
|
67
|
+
}
|
|
68
|
+
.newTagLabel {
|
|
69
|
+
color: var(--zdt_tagsmultiselect_labelt_text);
|
|
70
|
+
composes: semibold from '~@zohodesk/components/lib/common/common.module.css';
|
|
71
|
+
}
|
|
72
|
+
[dir=ltr] .newTagLabel {
|
|
73
|
+
margin-right: var(--zd_size5);
|
|
74
|
+
}
|
|
75
|
+
[dir=rtl] .newTagLabel {
|
|
76
|
+
margin-left: var(--zd_size5);
|
|
77
|
+
}
|
|
78
|
+
.dotted {
|
|
79
|
+
composes: dotted from '~@zohodesk/components/lib/common/common.module.css';
|
|
80
|
+
}
|
|
81
|
+
.dropdown {
|
|
82
|
+
margin-top: var(--zd_size1);
|
|
83
|
+
}
|
|
84
|
+
.custmSpan {
|
|
85
|
+
height: var(--zd_size25);
|
|
86
|
+
display: inline-block;
|
|
87
|
+
vertical-align: middle;
|
|
88
|
+
opacity: 0;
|
|
89
|
+
overflow: hidden;
|
|
90
|
+
white-space: nowrap;
|
|
91
|
+
max-width: 100%;
|
|
92
|
+
visibility: hidden;
|
|
93
|
+
}
|
|
94
|
+
.custmInp {
|
|
95
|
+
position: absolute;
|
|
96
|
+
top: 0;
|
|
97
|
+
width: 100%;
|
|
98
|
+
}
|
|
99
|
+
[dir=ltr] .custmInp {
|
|
100
|
+
left: 0;
|
|
101
|
+
}
|
|
102
|
+
[dir=rtl] .custmInp {
|
|
103
|
+
right: 0;
|
|
104
|
+
}
|
|
105
|
+
.newTagText {
|
|
106
|
+
color: var(--zdt_tagsmultiselect_more_text);
|
|
107
|
+
}
|
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign || 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, { useState, useEffect } from 'react';
|
|
4
|
+
import PropTypes from 'prop-types';
|
|
5
|
+
import { Container, Box } from '@zohodesk/components/lib/Layout';
|
|
6
|
+
import Label from '@zohodesk/components/lib/Label/Label';
|
|
7
|
+
import Popup from '@zohodesk/components/lib/Popup/Popup';
|
|
8
|
+
import ValidationMessage from '../ValidationMessage/ValidationMessage';
|
|
9
|
+
import TagsMultiSelect from '../TagsMultiSelect/TagsMultiSelect';
|
|
10
|
+
import fieldStyle from '../Fields.module.css';
|
|
11
|
+
import style from './TagsMultiSelectField.module.css';
|
|
12
|
+
|
|
13
|
+
const TagsMultiSelectField = props => {
|
|
14
|
+
const [selectedSuggestionIndex, updateSelectedSuggestionIndex] = useState(0);
|
|
15
|
+
const [isValueChanged, updateValueChangedState] = useState(false);
|
|
16
|
+
let [searchValue, changeSearchValue] = useState(props.searchValue || '');
|
|
17
|
+
const {
|
|
18
|
+
fieldProperties,
|
|
19
|
+
styleProperties,
|
|
20
|
+
actions,
|
|
21
|
+
dataId,
|
|
22
|
+
htmlId,
|
|
23
|
+
isLoading,
|
|
24
|
+
isListDisabled,
|
|
25
|
+
isNewNeeded,
|
|
26
|
+
isPopupOpen,
|
|
27
|
+
isPopupReady,
|
|
28
|
+
removeClose,
|
|
29
|
+
position,
|
|
30
|
+
togglePopup,
|
|
31
|
+
noMoreData,
|
|
32
|
+
numberOfDisplayedValues,
|
|
33
|
+
getTargetRef,
|
|
34
|
+
getContainerRef,
|
|
35
|
+
i18nKeys = {},
|
|
36
|
+
getTextBoxChildren,
|
|
37
|
+
children,
|
|
38
|
+
ePhiData,
|
|
39
|
+
customProps
|
|
40
|
+
} = props;
|
|
41
|
+
const {
|
|
42
|
+
LabelProps = {},
|
|
43
|
+
TagsMultiSelectProps = {},
|
|
44
|
+
ValidationMessageProps = {}
|
|
45
|
+
} = customProps;
|
|
46
|
+
const {
|
|
47
|
+
labelSize,
|
|
48
|
+
labelPalette,
|
|
49
|
+
labelClass,
|
|
50
|
+
containerClass,
|
|
51
|
+
needBorder,
|
|
52
|
+
borderColor,
|
|
53
|
+
validationPalette,
|
|
54
|
+
errorType
|
|
55
|
+
} = styleProperties;
|
|
56
|
+
let {
|
|
57
|
+
onChange,
|
|
58
|
+
onAdd,
|
|
59
|
+
onDelete,
|
|
60
|
+
onScroll,
|
|
61
|
+
onFocus
|
|
62
|
+
} = actions;
|
|
63
|
+
let {
|
|
64
|
+
id,
|
|
65
|
+
labelName,
|
|
66
|
+
isMandatory,
|
|
67
|
+
isDisabled,
|
|
68
|
+
isReadOnly,
|
|
69
|
+
value,
|
|
70
|
+
selectedValueCount,
|
|
71
|
+
validationMessage,
|
|
72
|
+
options
|
|
73
|
+
} = fieldProperties;
|
|
74
|
+
let {
|
|
75
|
+
ePhiTitle = '',
|
|
76
|
+
ePhiText = '',
|
|
77
|
+
ePhiStatus = false
|
|
78
|
+
} = ePhiData;
|
|
79
|
+
options = options || [];
|
|
80
|
+
|
|
81
|
+
const handleKeyUp = event => {
|
|
82
|
+
let {
|
|
83
|
+
keyCode
|
|
84
|
+
} = event;
|
|
85
|
+
onAdd = typeof onAdd !== 'function' ? () => {} : onAdd;
|
|
86
|
+
onDelete = typeof onDelete !== 'function' ? () => {} : onDelete;
|
|
87
|
+
|
|
88
|
+
if (keyCode === 13) {
|
|
89
|
+
if (selectedSuggestionIndex > -1 && options.length) {
|
|
90
|
+
if (options.length === 1 && options[0].isNew) {
|
|
91
|
+
searchValue = searchValue.replace(',', '');
|
|
92
|
+
onAdd({
|
|
93
|
+
name: searchValue
|
|
94
|
+
}, event);
|
|
95
|
+
} else {
|
|
96
|
+
onAdd(options[selectedSuggestionIndex], event);
|
|
97
|
+
}
|
|
98
|
+
} else {
|
|
99
|
+
searchValue = searchValue.replace(',', '');
|
|
100
|
+
onAdd({
|
|
101
|
+
name: searchValue
|
|
102
|
+
}, event);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
changeSearchValue('');
|
|
106
|
+
updateSelectedSuggestionIndex(prevSelectedSuggestionIndex => {
|
|
107
|
+
let newIndex = 0;
|
|
108
|
+
|
|
109
|
+
if (options.length) {
|
|
110
|
+
if (options.length === 1 && options[0].isNew) {
|
|
111
|
+
return newIndex;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
newIndex = prevSelectedSuggestionIndex === options.length - 1 ? options.length - 2 : prevSelectedSuggestionIndex;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
return newIndex;
|
|
118
|
+
});
|
|
119
|
+
} else if (keyCode === 188 && !event.shiftKey) {
|
|
120
|
+
searchValue = searchValue.replace(',', '');
|
|
121
|
+
|
|
122
|
+
if (options.length === 1 && options[0].isNew) {
|
|
123
|
+
onAdd({
|
|
124
|
+
name: searchValue
|
|
125
|
+
}, event);
|
|
126
|
+
changeSearchValue('');
|
|
127
|
+
}
|
|
128
|
+
} else if (keyCode === 40) {
|
|
129
|
+
updateSelectedSuggestionIndex(prevSelectedSuggestionIndex => {
|
|
130
|
+
let newIndex = prevSelectedSuggestionIndex >= options.length - 1 ? 0 : prevSelectedSuggestionIndex + 1;
|
|
131
|
+
return newIndex;
|
|
132
|
+
});
|
|
133
|
+
} else if (keyCode === 38) {
|
|
134
|
+
updateSelectedSuggestionIndex(prevSelectedSuggestionIndex => {
|
|
135
|
+
let newIndex = prevSelectedSuggestionIndex <= 0 || prevSelectedSuggestionIndex >= options.length - 1 ? options.length - 1 : prevSelectedSuggestionIndex - 1;
|
|
136
|
+
return newIndex;
|
|
137
|
+
});
|
|
138
|
+
} else if (keyCode === 8 && searchValue === '' & !isValueChanged) {
|
|
139
|
+
let valueLength = value.length;
|
|
140
|
+
value.length ? onDelete(value[valueLength - 1].name, event) : undefined;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
updateValueChangedState(false);
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
const handleChange = (searchValue, event) => {
|
|
147
|
+
updateValueChangedState(true);
|
|
148
|
+
updateSelectedSuggestionIndex(0);
|
|
149
|
+
changeSearchValue(searchValue);
|
|
150
|
+
typeof onChange === 'function' && onChange(searchValue, event);
|
|
151
|
+
|
|
152
|
+
if (!isPopupOpen) {
|
|
153
|
+
togglePopup(event);
|
|
154
|
+
}
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
const handleTogglePopup = event => {
|
|
158
|
+
if (isPopupReady) {
|
|
159
|
+
removeClose(event);
|
|
160
|
+
} else {
|
|
161
|
+
togglePopup(event, position);
|
|
162
|
+
!isPopupOpen && typeof onFocus === 'function' ? onFocus(event) : null;
|
|
163
|
+
updateSelectedSuggestionIndex(0);
|
|
164
|
+
}
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
const handleAdd = value => {
|
|
168
|
+
changeSearchValue('');
|
|
169
|
+
typeof onAdd === 'function' && onAdd(value);
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
const documentClick = () => {
|
|
173
|
+
changeSearchValue('');
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
useEffect(() => {
|
|
177
|
+
window.addEventListener('click', documentClick);
|
|
178
|
+
return () => {
|
|
179
|
+
window.removeEventListener('click', documentClick);
|
|
180
|
+
};
|
|
181
|
+
}, []);
|
|
182
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
183
|
+
className: `${style.container} ${isDisabled ? fieldStyle.disabled : isReadOnly ? fieldStyle.readonly : ''}`
|
|
184
|
+
}, /*#__PURE__*/React.createElement(Container, {
|
|
185
|
+
alignBox: "row",
|
|
186
|
+
align: "baseline",
|
|
187
|
+
isCover: false
|
|
188
|
+
}, labelName && /*#__PURE__*/React.createElement(Label, _extends({
|
|
189
|
+
text: labelName,
|
|
190
|
+
title: labelName,
|
|
191
|
+
id: id,
|
|
192
|
+
size: labelSize,
|
|
193
|
+
palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
|
|
194
|
+
customClass: `${fieldStyle.fieldLabel} ${isMandatory ? fieldStyle.labelMandatory : ''} ${labelClass ? labelClass : ''}`,
|
|
195
|
+
dataId: isDisabled ? `${dataId}_label_disabled` : isMandatory ? `${dataId}_label_mandatory` : `${dataId}_label`,
|
|
196
|
+
htmlFor: htmlId
|
|
197
|
+
}, LabelProps)), selectedValueCount ? /*#__PURE__*/React.createElement(Box, {
|
|
198
|
+
dataId: `${dataId}_tagCount`,
|
|
199
|
+
className: style.count
|
|
200
|
+
}, `(${selectedValueCount})`) : null, ePhiStatus ? /*#__PURE__*/React.createElement("span", {
|
|
201
|
+
"data-title": ePhiTitle,
|
|
202
|
+
"data-id": `${dataId}_ePHI`,
|
|
203
|
+
className: fieldStyle.ePhiTag
|
|
204
|
+
}, ePhiText) : null, children ? children : null), /*#__PURE__*/React.createElement(TagsMultiSelect, _extends({
|
|
205
|
+
addTag: handleAdd,
|
|
206
|
+
deleteTag: onDelete,
|
|
207
|
+
handleChange: handleChange,
|
|
208
|
+
handleKeyUp: handleKeyUp,
|
|
209
|
+
isReadOnly: isReadOnly,
|
|
210
|
+
name: searchValue,
|
|
211
|
+
noMoreData: noMoreData,
|
|
212
|
+
searchList: isNewNeeded && searchValue.length && !options.length ? [{
|
|
213
|
+
isNew: true,
|
|
214
|
+
name: searchValue
|
|
215
|
+
}] : options,
|
|
216
|
+
selectSearchIndex: selectedSuggestionIndex,
|
|
217
|
+
tagsList: value,
|
|
218
|
+
i18nKeys: i18nKeys,
|
|
219
|
+
boxPosition: position,
|
|
220
|
+
getTargetRef: getTargetRef,
|
|
221
|
+
getContainerRef: getContainerRef,
|
|
222
|
+
handleTogglePopup: handleTogglePopup,
|
|
223
|
+
isPopupReady: isPopupReady,
|
|
224
|
+
isPopupOpen: isPopupOpen,
|
|
225
|
+
onScroll: onScroll,
|
|
226
|
+
isTagListLoading: isLoading,
|
|
227
|
+
listDisabled: isListDisabled,
|
|
228
|
+
chipNeedToShow: numberOfDisplayedValues,
|
|
229
|
+
dataId: dataId,
|
|
230
|
+
needBorder: needBorder,
|
|
231
|
+
borderColor: borderColor,
|
|
232
|
+
htmlId: htmlId,
|
|
233
|
+
getTextBoxChildren: getTextBoxChildren,
|
|
234
|
+
className: containerClass
|
|
235
|
+
}, TagsMultiSelectProps)), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
|
|
236
|
+
text: validationMessage,
|
|
237
|
+
palette: validationPalette,
|
|
238
|
+
type: errorType,
|
|
239
|
+
dataId: `${dataId}_ValidationMessage`,
|
|
240
|
+
htmlFor: htmlId
|
|
241
|
+
}, ValidationMessageProps)));
|
|
242
|
+
};
|
|
243
|
+
|
|
244
|
+
export default Popup(TagsMultiSelectField);
|
|
245
|
+
TagsMultiSelectField.propTypes = {
|
|
246
|
+
fieldProperties: PropTypes.shape({
|
|
247
|
+
id: PropTypes.string.isRequired,
|
|
248
|
+
labelName: PropTypes.string,
|
|
249
|
+
isMandatory: PropTypes.bool,
|
|
250
|
+
isDisabled: PropTypes.bool,
|
|
251
|
+
isReadOnly: PropTypes.bool,
|
|
252
|
+
value: PropTypes.string,
|
|
253
|
+
selectedValueCount: PropTypes.string,
|
|
254
|
+
validationMessage: PropTypes.string,
|
|
255
|
+
options: PropTypes.array
|
|
256
|
+
}),
|
|
257
|
+
styleProperties: PropTypes.shape({
|
|
258
|
+
labelSize: PropTypes.string,
|
|
259
|
+
labelPalette: PropTypes.string,
|
|
260
|
+
labelClass: PropTypes.string,
|
|
261
|
+
containerClass: PropTypes.string,
|
|
262
|
+
needBorder: PropTypes.bool,
|
|
263
|
+
borderColor: PropTypes.string,
|
|
264
|
+
validationPalette: PropTypes.string,
|
|
265
|
+
errorType: PropTypes.string
|
|
266
|
+
}),
|
|
267
|
+
actions: PropTypes.shape({
|
|
268
|
+
onChange: PropTypes.func,
|
|
269
|
+
onAdd: PropTypes.func,
|
|
270
|
+
onDelete: PropTypes.func,
|
|
271
|
+
onScroll: PropTypes.func,
|
|
272
|
+
onFocus: PropTypes.func
|
|
273
|
+
}),
|
|
274
|
+
isNewNeeded: PropTypes.bool,
|
|
275
|
+
data: PropTypes.string,
|
|
276
|
+
htmlId: PropTypes.string,
|
|
277
|
+
isLoading: PropTypes.bool,
|
|
278
|
+
isListDisabled: PropTypes.bool,
|
|
279
|
+
numberOfDisplayedValues: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
280
|
+
getTextBoxChildren: PropTypes.func,
|
|
281
|
+
children: PropTypes.node,
|
|
282
|
+
i18nKeys: PropTypes.object,
|
|
283
|
+
noMoreData: PropTypes.bool,
|
|
284
|
+
position: PropTypes.string,
|
|
285
|
+
getContainerRef: PropTypes.func,
|
|
286
|
+
getTargetRef: PropTypes.func,
|
|
287
|
+
ePhiData: PropTypes.shape({
|
|
288
|
+
ePhiTitle: PropTypes.string,
|
|
289
|
+
ePhiText: PropTypes.string,
|
|
290
|
+
ePhiStatus: PropTypes.bool
|
|
291
|
+
}),
|
|
292
|
+
customProps: PropTypes.shape({
|
|
293
|
+
LabelProps: PropTypes.object,
|
|
294
|
+
TagsMultiSelectProps: PropTypes.object,
|
|
295
|
+
ValidationMessageProps: PropTypes.object
|
|
296
|
+
})
|
|
297
|
+
};
|
|
298
|
+
TagsMultiSelectField.defaultProps = {
|
|
299
|
+
fieldProperties: {
|
|
300
|
+
isDisabled: false,
|
|
301
|
+
isMandatory: false
|
|
302
|
+
},
|
|
303
|
+
styleProperties: {
|
|
304
|
+
containerClass: '',
|
|
305
|
+
needBorder: true,
|
|
306
|
+
borderColor: 'default',
|
|
307
|
+
errorType: 'primary'
|
|
308
|
+
},
|
|
309
|
+
isNewNeeded: false,
|
|
310
|
+
i18nKeys: {},
|
|
311
|
+
numberOfDisplayedValues: '5',
|
|
312
|
+
ePhiData: {},
|
|
313
|
+
customProps: {}
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
if (false) {
|
|
317
|
+
TagsMultiSelectField.docs = {
|
|
318
|
+
componentGroup: 'TagsMultiSelectField'
|
|
319
|
+
};
|
|
320
|
+
}
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign || 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, { PureComponent } from 'react';
|
|
5
|
+
import PropTypes from 'prop-types';
|
|
6
|
+
/**** Components ****/
|
|
7
|
+
|
|
8
|
+
import Label from '@zohodesk/components/lib/Label/Label';
|
|
9
|
+
import TextBoxIcon from '@zohodesk/components/lib/TextBoxIcon/TextBoxIcon';
|
|
10
|
+
import ValidationMessage from '../ValidationMessage/ValidationMessage';
|
|
11
|
+
import { getUniqueId } from '@zohodesk/components/lib/Provider/IdProvider';
|
|
12
|
+
/**** Icons ****/
|
|
13
|
+
|
|
14
|
+
import Icon from '@zohodesk/icons/lib/Icon';
|
|
15
|
+
/**** CSS ****/
|
|
16
|
+
|
|
17
|
+
import style from '../Fields.module.css';
|
|
18
|
+
export default class TextBoxField extends PureComponent {
|
|
19
|
+
constructor(props) {
|
|
20
|
+
super(props);
|
|
21
|
+
this.handleChange = this.handleChange.bind(this);
|
|
22
|
+
this.handleGetRef = this.handleGetRef.bind(this); // this.handleLabelClick = this.handleLabelClick.bind(this);
|
|
23
|
+
|
|
24
|
+
this.getNextId = getUniqueId(this);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
handleChange(value) {
|
|
28
|
+
let {
|
|
29
|
+
id,
|
|
30
|
+
onChange
|
|
31
|
+
} = this.props;
|
|
32
|
+
onChange && onChange(id, value);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
handleGetRef(el) {
|
|
36
|
+
let {
|
|
37
|
+
getRef,
|
|
38
|
+
id
|
|
39
|
+
} = this.props;
|
|
40
|
+
this.textBox = el;
|
|
41
|
+
getRef && getRef(el, id);
|
|
42
|
+
} // handleLabelClick() {
|
|
43
|
+
// // let { isFocusOnLabelClick } = this.props;
|
|
44
|
+
// // if (isFocusOnLabelClick && this.textBox && this.textBox.focus) {
|
|
45
|
+
// // this.textBox.focus();
|
|
46
|
+
// // }
|
|
47
|
+
// }
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
render() {
|
|
51
|
+
let {
|
|
52
|
+
labelName,
|
|
53
|
+
id,
|
|
54
|
+
textBoxSize,
|
|
55
|
+
textBoxVariant,
|
|
56
|
+
textBoxType,
|
|
57
|
+
isMandatory,
|
|
58
|
+
validationMessage,
|
|
59
|
+
validationPalette,
|
|
60
|
+
maxLength,
|
|
61
|
+
isReadOnly,
|
|
62
|
+
value,
|
|
63
|
+
errorType,
|
|
64
|
+
isDisabled,
|
|
65
|
+
title,
|
|
66
|
+
onBlur,
|
|
67
|
+
dataId,
|
|
68
|
+
validationRuleMessage,
|
|
69
|
+
validationRulePalette,
|
|
70
|
+
onKeyDown,
|
|
71
|
+
placeHolder,
|
|
72
|
+
infoText,
|
|
73
|
+
borderColor,
|
|
74
|
+
fieldSize,
|
|
75
|
+
labelPalette,
|
|
76
|
+
labelCustomClass,
|
|
77
|
+
htmlId,
|
|
78
|
+
lockedInfoText,
|
|
79
|
+
isLocked,
|
|
80
|
+
needReadOnlyStyle,
|
|
81
|
+
isClickable,
|
|
82
|
+
onFocus,
|
|
83
|
+
ePhiData,
|
|
84
|
+
children,
|
|
85
|
+
customProps
|
|
86
|
+
} = this.props;
|
|
87
|
+
const {
|
|
88
|
+
LabelProps = {},
|
|
89
|
+
TextBoxIconProps = {},
|
|
90
|
+
ValidationMessageProps1 = {},
|
|
91
|
+
ValidationMessageProps2 = {}
|
|
92
|
+
} = customProps;
|
|
93
|
+
let {
|
|
94
|
+
ePhiTitle = '',
|
|
95
|
+
ePhiText = '',
|
|
96
|
+
ePhiStatus = false
|
|
97
|
+
} = ePhiData;
|
|
98
|
+
let uniqueId = htmlId ? htmlId : this.getNextId();
|
|
99
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
100
|
+
className: `${style.container} ${isDisabled ? style.disabled : isReadOnly ? style.readonly : ''}`,
|
|
101
|
+
"data-title": isDisabled ? title : ''
|
|
102
|
+
}, labelName && /*#__PURE__*/React.createElement("div", {
|
|
103
|
+
className: style.labelContainer
|
|
104
|
+
}, /*#__PURE__*/React.createElement(Label, _extends({
|
|
105
|
+
text: labelName,
|
|
106
|
+
size: fieldSize === 'small' ? 'small' : 'medium',
|
|
107
|
+
palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
|
|
108
|
+
customClass: `${style.fieldLabel} ${labelCustomClass} ${isMandatory ? style.labelMandatory : ''}`,
|
|
109
|
+
htmlFor: uniqueId,
|
|
110
|
+
dataId: isDisabled ? `${dataId}_label_disabled` : isMandatory ? `${dataId}_label_mandatory` : `${dataId}_label`
|
|
111
|
+
}, LabelProps)), infoText ? /*#__PURE__*/React.createElement(Icon, {
|
|
112
|
+
name: "ZD-GN-info",
|
|
113
|
+
iconClass: style.infoIcon,
|
|
114
|
+
title: infoText,
|
|
115
|
+
size: "15"
|
|
116
|
+
}) : null, isLocked ? /*#__PURE__*/React.createElement(Icon, {
|
|
117
|
+
name: "ZD-GN-lock",
|
|
118
|
+
size: "13",
|
|
119
|
+
iconClass: style.lockIcon,
|
|
120
|
+
title: lockedInfoText
|
|
121
|
+
}) : null, ePhiStatus ? /*#__PURE__*/React.createElement("span", {
|
|
122
|
+
"data-title": ePhiTitle,
|
|
123
|
+
"data-id": `${dataId}_ePHI`,
|
|
124
|
+
className: style.ePhiTag
|
|
125
|
+
}, ePhiText) : null), /*#__PURE__*/React.createElement("div", {
|
|
126
|
+
className: `${style.fieldContainer} ${labelName ? style[`fieldMargin_${fieldSize}`] : ''}`
|
|
127
|
+
}, /*#__PURE__*/React.createElement(TextBoxIcon, _extends({
|
|
128
|
+
htmlId: uniqueId,
|
|
129
|
+
id: id,
|
|
130
|
+
type: textBoxType,
|
|
131
|
+
variant: textBoxVariant,
|
|
132
|
+
size: fieldSize === 'medium' ? textBoxSize : 'xsmall',
|
|
133
|
+
maxLength: maxLength,
|
|
134
|
+
isReadOnly: isReadOnly,
|
|
135
|
+
inputRef: this.handleGetRef,
|
|
136
|
+
value: value,
|
|
137
|
+
onChange: this.handleChange,
|
|
138
|
+
dataId: dataId,
|
|
139
|
+
onBlur: onBlur,
|
|
140
|
+
onKeyDown: onKeyDown,
|
|
141
|
+
placeHolder: placeHolder,
|
|
142
|
+
borderColor: borderColor,
|
|
143
|
+
onFocus: onFocus,
|
|
144
|
+
isDisabled: isDisabled,
|
|
145
|
+
needEffect: isReadOnly || isDisabled ? false : true,
|
|
146
|
+
isClickable: isClickable,
|
|
147
|
+
needReadOnlyStyle: needReadOnlyStyle
|
|
148
|
+
}, TextBoxIconProps), children ? children : null), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
|
|
149
|
+
text: validationMessage,
|
|
150
|
+
palette: validationPalette,
|
|
151
|
+
type: errorType,
|
|
152
|
+
dataId: `${dataId}_ValidationMessage`,
|
|
153
|
+
htmlFor: uniqueId
|
|
154
|
+
}, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
|
|
155
|
+
text: validationRuleMessage,
|
|
156
|
+
palette: validationRulePalette,
|
|
157
|
+
type: errorType,
|
|
158
|
+
htmlFor: uniqueId,
|
|
159
|
+
dataId: `${dataId}_ValidationRuleMessage`
|
|
160
|
+
}, ValidationMessageProps2))));
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
}
|
|
164
|
+
TextBoxField.propTypes = {
|
|
165
|
+
borderColor: PropTypes.oneOf(['transparent', 'default']),
|
|
166
|
+
dataId: PropTypes.string,
|
|
167
|
+
errorType: PropTypes.oneOf(['primary', 'secondary']),
|
|
168
|
+
fieldSize: PropTypes.oneOf(['small', 'medium']),
|
|
169
|
+
getRef: PropTypes.func,
|
|
170
|
+
id: PropTypes.string,
|
|
171
|
+
infoText: PropTypes.string,
|
|
172
|
+
isDisabled: PropTypes.bool,
|
|
173
|
+
// isFocusOnLabelClick: PropTypes.bool,
|
|
174
|
+
isMandatory: PropTypes.bool,
|
|
175
|
+
isReadOnly: PropTypes.bool,
|
|
176
|
+
labelCustomClass: PropTypes.string,
|
|
177
|
+
labelName: PropTypes.string.isRequired,
|
|
178
|
+
labelPalette: PropTypes.string,
|
|
179
|
+
maxLength: PropTypes.number,
|
|
180
|
+
onBlur: PropTypes.func,
|
|
181
|
+
onChange: PropTypes.func,
|
|
182
|
+
onKeyDown: PropTypes.func,
|
|
183
|
+
placeHolder: PropTypes.string,
|
|
184
|
+
textBoxSize: PropTypes.string,
|
|
185
|
+
textBoxType: PropTypes.string,
|
|
186
|
+
textBoxVariant: PropTypes.string,
|
|
187
|
+
title: PropTypes.string,
|
|
188
|
+
validationMessage: PropTypes.string,
|
|
189
|
+
validationPalette: PropTypes.string,
|
|
190
|
+
validationRuleMessage: PropTypes.string,
|
|
191
|
+
validationRulePalette: PropTypes.string,
|
|
192
|
+
value: PropTypes.string,
|
|
193
|
+
lockedInfoText: PropTypes.string,
|
|
194
|
+
isLocked: PropTypes.bool,
|
|
195
|
+
isClickable: PropTypes.bool,
|
|
196
|
+
needReadOnlyStyle: PropTypes.bool,
|
|
197
|
+
ePhiData: PropTypes.shape({
|
|
198
|
+
ePhiTitle: PropTypes.string,
|
|
199
|
+
ePhiText: PropTypes.string,
|
|
200
|
+
ePhiStatus: PropTypes.bool
|
|
201
|
+
}),
|
|
202
|
+
children: PropTypes.node,
|
|
203
|
+
customProps: PropTypes.shape({
|
|
204
|
+
LabelProps: PropTypes.object,
|
|
205
|
+
TextBoxIconProps: PropTypes.object,
|
|
206
|
+
ValidationMessageProps1: PropTypes.object,
|
|
207
|
+
ValidationMessageProps2: PropTypes.object
|
|
208
|
+
})
|
|
209
|
+
};
|
|
210
|
+
TextBoxField.defaultProps = {
|
|
211
|
+
errorType: 'primary',
|
|
212
|
+
isMandatory: false,
|
|
213
|
+
textBoxSize: 'xmedium',
|
|
214
|
+
textBoxType: 'text',
|
|
215
|
+
textBoxVariant: 'primary',
|
|
216
|
+
borderColor: 'default',
|
|
217
|
+
isDisabled: false,
|
|
218
|
+
isReadOnly: false,
|
|
219
|
+
fieldSize: 'medium',
|
|
220
|
+
// isFocusOnLabelClick: true,
|
|
221
|
+
labelPalette: 'default',
|
|
222
|
+
labelCustomClass: '',
|
|
223
|
+
isClickable: false,
|
|
224
|
+
needReadOnlyStyle: true,
|
|
225
|
+
ePhiData: {},
|
|
226
|
+
customProps: {}
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
if (false) {
|
|
230
|
+
TextBoxField.docs = {
|
|
231
|
+
componentGroup: 'Form Fields',
|
|
232
|
+
folderName: 'General'
|
|
233
|
+
};
|
|
234
|
+
}
|