@zohodesk/dot 1.7.21 → 1.7.23
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 -0
- package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +7 -0
- package/assets/Appearance/light/mode/Dot_LightMode.module.css +7 -0
- package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +7 -0
- package/es/AudioPlayer/AudioPlayer.js +580 -0
- package/es/AudioPlayer/AudioPlayer.module.css +146 -0
- package/es/AudioPlayer/Timer/Timer.js +67 -0
- package/es/AudioPlayer/Timer/Timer.module.css +5 -0
- package/es/AudioPlayer/Timer/__tests__/Timer.spec.js +20 -0
- package/es/AudioPlayer/Timer/__tests__/__snapshots__/Timer.spec.js.snap +14 -0
- package/es/AudioPlayer/Timer/propTypes/defaultProps.js +4 -0
- package/es/AudioPlayer/Timer/propTypes/propTypes.js +11 -0
- package/es/AudioPlayer/__tests__/AudioPlayer.spec.js +44 -0
- package/es/AudioPlayer/__tests__/__snapshots__/AudioPlayer.spec.js.snap +145 -0
- package/es/AudioPlayer/propTypes/defaultProps.js +14 -0
- package/es/AudioPlayer/propTypes/propTypes.js +33 -0
- package/es/AudioPlayer/utils/utils.js +24 -0
- package/es/Hooks/Dragger/useDragger.js +52 -33
- package/es/dot_layer.module.css +1 -0
- package/es/form/fields/ValidationMessage/ValidationMessage.module.css +1 -0
- package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +1 -0
- package/lib/AudioPlayer/AudioPlayer.js +662 -0
- package/lib/AudioPlayer/AudioPlayer.module.css +146 -0
- package/lib/AudioPlayer/Timer/Timer.js +117 -0
- package/lib/AudioPlayer/Timer/Timer.module.css +5 -0
- package/lib/AudioPlayer/Timer/__tests__/Timer.spec.js +26 -0
- package/lib/AudioPlayer/Timer/__tests__/__snapshots__/Timer.spec.js.snap +14 -0
- package/lib/AudioPlayer/Timer/propTypes/defaultProps.js +11 -0
- package/lib/AudioPlayer/Timer/propTypes/propTypes.js +22 -0
- package/lib/AudioPlayer/__tests__/AudioPlayer.spec.js +50 -0
- package/lib/AudioPlayer/__tests__/__snapshots__/AudioPlayer.spec.js.snap +145 -0
- package/lib/AudioPlayer/propTypes/defaultProps.js +24 -0
- package/lib/AudioPlayer/propTypes/propTypes.js +44 -0
- package/lib/AudioPlayer/utils/utils.js +33 -0
- package/lib/Hooks/Dragger/useDragger.js +51 -28
- package/lib/dot_layer.module.css +1 -0
- package/lib/form/fields/ValidationMessage/ValidationMessage.module.css +1 -0
- package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +1 -0
- package/package.json +14 -6
- package/.cli/MissedPropType_Keys.html +0 -101
- package/.cli/PropLessFiles.html +0 -101
- package/.cli/PropUnificationExcludeFilesArray.js +0 -345
- package/.cli/PropValidationExcludeFilesArray.js +0 -8
- package/.cli/ThemeValidationExcludeFiles.js +0 -1
- package/.cli/UnValidatedFiles.html +0 -101
- package/.cli/propValidation_report.html +0 -182
- package/.cli/stringContains.js +0 -1
- package/css_error.log +0 -1
- package/images/audio_thumbnail.png +0 -0
- package/install.md +0 -12
- package/postPublish.js +0 -8
- package/prePublish.js +0 -70
- package/propValidationArg.json +0 -12
- package/react-cli.config.js +0 -27
- package/result.json +0 -1
- package/unittest/index.html +0 -37
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
6
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
7
|
-
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
|
8
|
-
|
|
9
|
-
<title>Prop Validation Report</title>
|
|
10
|
-
<style>
|
|
11
|
-
body {
|
|
12
|
-
margin: 0;
|
|
13
|
-
padding: 0;
|
|
14
|
-
font-family: 'Asap Condensed', sans-serif;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
table {
|
|
18
|
-
border-collapse: collapse;
|
|
19
|
-
font-size: 14px
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
tr {
|
|
23
|
-
vertical-align: top
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
th {
|
|
27
|
-
position: sticky;
|
|
28
|
-
top: 0;
|
|
29
|
-
background-color: #001C30;
|
|
30
|
-
color: #F5F5F5;
|
|
31
|
-
vertical-align: middle
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
th,
|
|
35
|
-
td {
|
|
36
|
-
border: 1px solid black;
|
|
37
|
-
padding: 8px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
tr:nth-child(even) {
|
|
41
|
-
background-color: #EDEEF7;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.table-container {
|
|
45
|
-
margin-bottom: 20px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/* tr:hover{
|
|
49
|
-
background:#ecedff
|
|
50
|
-
} */
|
|
51
|
-
td>div>span {
|
|
52
|
-
margin: 2px 3px;
|
|
53
|
-
display: inline-flex;
|
|
54
|
-
background-color: #ededed;
|
|
55
|
-
color: #212121;
|
|
56
|
-
padding: 3px 5px;
|
|
57
|
-
border-radius: 5px;
|
|
58
|
-
font-size: 14px;
|
|
59
|
-
border: 1px solid #000;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
td>div>span:hover {
|
|
63
|
-
background-color: #fff;
|
|
64
|
-
}
|
|
65
|
-
</style>
|
|
66
|
-
</head>
|
|
67
|
-
|
|
68
|
-
<body>
|
|
69
|
-
<div id="table-container"></div>
|
|
70
|
-
<script>
|
|
71
|
-
const jsonData = {"ActionButtonComponent":{"props":["openPopupOnly","defaultPosition","togglePopup","isLoading","onClick","size","dataId","dataSelectorId","isArrow","text","subText","arrowBoxSize","palette","onHover","position","className","iconName","iconSize","dataTitle","isDisabled","isPopupOpen","removeClose","children","dropBoxClass","isBoxPaddingNeed","getContainerRef","getTargetRef","removeChildrenTooltip","innerClassName","popupGroup","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ActionButton/ActionButton.js"},"AlphabeticList":{"props":["onSelect","selectedCharacter","align","type","i18nKeys","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AlphabeticList/AlphabeticList.js"},"Attachment":{"props":["onClick","dataId","size","iconName","fileName","fileSize","downloadLink","palette","tooltip","fileInfo","i18nKeys","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Attachment/Attachment.js"},"AttachmentImage":{"props":["src","onClick","alt","id","dataId","isCover","customClass","onLoad","onError","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AttachmentViewer/AttachmentImage.js"},"AttachmentViewer":{"props":["previewObj","allowedPreviewExtensionsData","maintainZoom","hideAttachmentViewer","customProps","dataId","i18nKeys","renderUnSupportedElement","responsiveId","needDownload","isActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/AttachmentViewer/AttachmentViewer.js"},"ChannelIcon":{"props":["name","action","iconSize","iconTitle","size","topicIcon","topicIconTitle","topicIconSize","topicIconColor","iconClass","dataId","className","palette","textPalette","customTextClass","iconColor","needTopicBorder","topicClass","renderIconOnly","iconName","title","dataSelectorId","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ChannelIcon/ChannelIcon.js"},"Drawer":{"innerComponent":{"Header":{"props":["title","onClose","children","className","paddingSize","closeTitle","iconName","iconSize","onIconClick","isIconBold","dataId","flexible","getChildren","iconTitle","isBoxIcon","getTitleChildren"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js"},"Content":{"props":["children","className","paddingSize","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js"},"Footer":{"props":["paddingLeftSize","paddingRightClass","children","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js"},"Drawer":{"props":["children","size","paddingSize","subDrawerActive","subDrawerChildren","onBodyClick","onClose","needFocusScope","customProps","a11y","customDrawerClass","needFreeze","palette","isActive","forwardRef","responsiveId","subDrawerSize","subDrawerClass","customClass","needAutoZindex","innerPortalName","onAnimateEnter","postAnimateStyles","onAnimateExit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Drawer/Drawer.js"}}},"ExternalLink":{"props":["href","title","target","className","children","rel","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ExternalLink/ExternalLink.js"},"FlipCard":{"props":["noNeedFlip","onChange","id","action","name","initial","isChecked","size","channel","isPaidUser","isPortalUser","src","icon","iconSize","iconClass","ticListContainer","ticList","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","iconColor","tourId","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FlipCard/FlipCard.js"},"FormAction":{"props":["size","children","paddingLeftSize","paddingRightClass","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FormAction/FormAction.js"},"FreezeLayer":{"props":["zIndex","palette","isSvgMask","customClass","isActive","children","align","childAnimationName","onClick","animationName","runOnMount","forwardRef","needAutoZindex","customStyle","onAnimateEnter","postAnimateStyles","onAnimateExit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/FreezeLayer/FreezeLayer.js"},"IconButton":{"props":["onClick","isDisabled","onMouseOver","onMouseDown","palette","iconSize","size","iconName","className","iconClass","dataId","dataSelectorId","eleRef","isActive","tourId","children","hoverType","title","isBold","isNeedEffect","needButtonTag","a11y","dataIsHtml","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/IconButton/IconButton.js"},"Image":{"props":["alt","src","className","isCover","title","onClick","dataId","htmlId","eleRef","original","onLoad","onError"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Image/Image.js"},"ImportantNotes":{"props":["text","iconName","iconSize","children","iconClass","isCover","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ImportantNotes/ImportantNotes.js"},"Link":{"props":["onClick","hasReload","target","children","href","urlData","urlName","className","title","download","rel","dataId","customProps","ariaLabel","key"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Link/Link.js"},"MessageBanner":{"props":["type","message","onClose","href","onClick","urlText","palette","customClass","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/MessageBanner/MessageBanner.js"},"NewStar":{"props":["palette","customClass","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/NewStar/NewStar.js"},"CarouselDot":{"props":["onClick","isActive","index","isAnimationPaused","testId","customId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Onboarding/CarouselDots/CarouselDot/CarouselDot.js"},"CarouselDots":{"props":["sliderDetails","currentSliderIndex","isAnimationPaused","onClick","onMouseEnter","onMouseLeave","testId","customId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Onboarding/CarouselDots/CarouselDots.js"},"Onboarding":{"props":["hasCloseIcon","onClose","ribbonText","hasRibbon","videoLookupCloseText","customStyle","sliderData","isAutoPlayAnimation","hasBouncAnimationOnMount","customId","testId","hasExpandedButton","onPrimaryButtonClick","onSecondaryButtonClick","customProps","tagAttributes","a11yAttributes","closeIconTooltip","dragBoundaryLimit","isDraggable","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Onboarding/Onboarding.js"},"PlusIcon":{"props":["dataId","iconName","iconClass","iconSize","size","onClick","title","customClass","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/PlusIcon/PlusIcon.js"},"Separator":{"props":["children","type","customSeparatorType","palette","wrap","shrink","aligndirection","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Separator/Separator.js"},"TagWithIcon":{"props":["text","iconName","iconSize","palette","iconClass","isBold","size","dataId","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/TagWithIcon/TagWithIcon.js"},"ToastMessage":{"props":["messageState","type","subject","info","submitText","cancelText","iconName","iconSize","submitType","isIconMid","needClose","iconPalette","isMore","message","isAnimate","getLeftContainer","getInnerBottomContainer","getBottomContainer","getSubmitContainer","onSubmit","onCancel","dataId","dataSelectorId","isClose","onClose","needAutoZindex","a11y","Element","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/ToastMessage/ToastMessage.js"},"Upload":{"props":["isPreview","tooltip","dataId","dataSelectorId","progressValue","onClick","iconName","fileSize","imgSrc","isPreviewType","onRemove","size","getRef","palette"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/Upload/Upload.js"},"VideoLookup":{"props":["isOpened","link","onClose","closeText","isEmbeddedLink","customStyle","testId","customId","videoFormat"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/VideoLookup/VideoLookup.js"},"AutoClose":{"props":["Element","isClose","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/actions/AutoClose.js"},"AlertHeader":{"props":["title","palette","needIcon","iconType","onClose","iconName","iconSize","closeTitle","children","breakChildren","dataId","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/alert/AlertHeader/AlertHeader.js"},"AlertLookup":{"props":["isActive","palette","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","sectionClassName","dataId","onLookupClick","customClass","needIcon","iconName","iconClass","iconSize","customProps","isHtmlContent","onEsc"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/alert/AlertLookup/AlertLookup.js"},"AvatarClose":{"props":["title","src","name","size","isClose","onClick","customProps","dataSelectorId","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarClose/AvatarClose.js"},"AvatarCollision":{"props":["title","src","name","size","onClick","needCreateChat","isLeft","isIdle","initial","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarCollision/AvatarCollision.js"},"AvatarIcon":{"props":["name","size","iconSize","iconClass","iconColor","onClick","palette","dataId","className","isIconBold","title","borderOnActive","borderOnHover","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarIcon/AvatarIcon.js"},"AvatarStatus":{"props":["src","name","size","onClick","title","state","dataId","initial","shape","needTitle","className","needBorder","palette","textPalette","customTextClass","statusTitle","customProps","dataSelectorId","needDefaultBorder"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarStatus/AvatarStatus.js"},"AvatarThread":{"props":["src","name","size","iconColor","iconName","iconSize","borderPalette","onClick","title","iconTitle","onIconClick","showOnHover","dataId","initial","needBorder","needBackground","palette","textPalette","customTextClass","needTitle","customProps","iconClass","getCustomThread","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarThread/AvatarThread.js"},"AvatarUser":{"props":["src","alternateSrc","name","size","onClick","onDelete","title","isPaid","isPortal","isLocked","dataId","dataSelectorId","needTitle","needDelete","initial","palette","textPalette","customTextClass","iconName","iconSize","iconClass","iconColor","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarUser/AvatarUser.js"},"AvatarWithTeam":{"props":["name","size","src","teamName","isTeam","needTitle","initial","title","palette","textPalette","customTextClass","teamClassName","borderOnActive","customProps","dataSelectorId","teamBorderActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/avatar/AvatarWithTeam/AvatarWithTeam.js"},"deprecated-FreezeLayer":{"props":["isActive","children","align","childAnimationName","palette","onClick","animationName","zIndex","runOnMount","forwardRef","isSvgMask","customClass","needAutoZindex"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/deprecated/FreezeLayer/FreezeLayer.js"},"SelectDropdown":{"props":["onClick","togglePopup","title","selectedText","isPopupOpen","isPopupReady","getTargetRef","getContainerRef","removeClose","suggestions","selectedId","isSearchRequired"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":true,"FilePath":"src/deprecated/SelectDropdown/SelectDropdown.js"},"ToggleDropDown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","removeClose","onClick","preventPopupClose","isPopupReady","isSearch","idName","onDropDownOpen","onDropDownClose","from","keyName","isGroupDropDown","groupOptionsKey","groupNameKey","searchFields","needSearchFetching","onSearch","isNextOptions","getNextOptions","value","boxSize","title","isArrow","placeHolderText","className","right","left","top","bottom","isPopupActive","needExternalPopupState","position","getTargetRef","getContainerRef","dataId","dataSelectorId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","iconName","iconSize","needTick","dataTitle","isDataLoaded","children","needResponsive","arrowIconPosition","isToggleStateNeeded","selectedId","isPadding","isNeedEffect","hoverType","palette","getFooter","customProps","needMultiLineText","isAbsolutePositioningNeeded","positionsOffset","targetOffset","isRestrictScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/dropdown/ToggleDropDown/ToggleDropDown.js"},"CommonEmptyState":{"props":["title","description","linkDescription","linkUrl","linkText","linkTarget","onUrlClick","getEmptyState","className","dataId","isFluid","children","size","palette","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/emptystate/CommonEmptyState/CommonEmptyState.js"},"EditionPage":{"props":["title","subtitle","information","dataId","footerText","onButtonClick","butttonText","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/emptystate/EditionPage/EditionPage.js"},"Inconvenience":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/Inconvenience/Inconvenience.js"},"LinkText":{"props":["text","href","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/LinkText/LinkText.js"},"NoRequestFound":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/NoRequestFound/NoRequestFound.js"},"PermissionPlay":{"props":["subtitle","title","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/PermissionPlay/PermissionPlay.js"},"RequestUrlNotFound":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/RequestUrlNotFound/RequestUrlNotFound.js"},"UnableToProcess":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/UnableToProcess/UnableToProcess.js"},"UnauthorizedLogin":{"props":["title","subtitle","description","urlText","url","onClick","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/UnauthorizedLogin/UnauthorizedLogin.js"},"WillBack":{"props":["dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/errorstate/WillBack/WillBack.js"},"CheckBoxField":{"props":["id","onChange","getRef","checked","labelName","isMandatory","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","getContainerRef","infoText","fieldSize","labelPalette","labelCustomClass","direction","lineClamp","isLocked","lockedInfoText","customProps","renderLabelProps","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/CheckBoxField/CheckBoxField.js"},"CurrencyField":{"props":["id","onChange","getRef","onFocus","onBlur","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","dataSelectorId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","userCurrencyType","customProps","formatCurrency","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/CurrencyField/CurrencyField.js"},"DateField":{"props":["id","onChange","getRef","openPopupOnMount","isFocusOnLabelClick","labelName","isMandatory","isDateTime","validationMessage","validationPalette","textBoxSize","textBoxVariant","isReadOnly","value","errorType","isDisabled","title","popupGroup","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","fieldSize","datePattern","isLocked","lockedInfoText","lockedValueText","labelPalette","labelCustomClass","htmlId","timeZone","i18nKeys","iconOnHover","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/DateField/DateField.js"},"FieldContainer":{"props":["children","ePhiData","isLocked","lockedInfoText","infoText","dataId","renderProps","alignContainer","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/FieldContainer/FieldContainer.js"},"MultiSelectField":{"props":["id","onChange","onDropBoxOpen","onSearch","getNextOptions","getRef","labelName","isMandatory","options","selectedOptions","needSelectAll","selectAllText","isAnimate","emptyMessage","size","variant","textBoxSize","animationStyle","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","placeHolder","fieldSize","valueField","textField","isNextOptions","isSearching","popupGroup","labelPalette","palette","lockedInfoText","isLocked","htmlId","children","customChildrenClass","onFocus","customProps","i18nKeys","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/MultiSelectField/MultiSelectField.js"},"PhoneField":{"props":["onChange","getRef","id","onFocus","onBlur","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","dataSelectorId","onKeyDown","placeHolder","infoText","isTelephony","providerName","ticketId","contactId","borderColor","fieldSize","labelPalette","labelCustomClass","i18nKeys","onCall","ePhiData","type","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/PhoneField/PhoneField.js"},"RadioField":{"props":["getRef","id","onChange","selectedValue","options","labelName","isMandatory","validationMessage","validationPalette","errorType","isDisabled","title","labelPalette","labelSize","size","isActive","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","isReadOnly","isBoxStyle","variant","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/RadioField/RadioField.js"},"SelectField":{"props":["id","onChange","selectedValue","getRef","labelName","isMandatory","options","needSearch","emptyMessage","animationStyle","textBoxSize","textBoxVariant","searchBoxSize","searchBoxPlaceHolder","validationMessage","validationPalette","isReadOnly","valueField","textField","excludeOptions","errorType","isDisabled","title","dataId","dataSelectorId","fieldClass","validationRuleMessage","validationRulePalette","onKeyDown","infoText","isLocked","lockedInfoText","borderColor","fieldSize","isNextOptions","getNextOptions","popupGroup","onSearch","labelPalette","labelCustomClass","htmlId","needLocalSearch","isDefaultSelectValue","placeHolder","children","onFocus","iconOnHover","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/SelectField/SelectField.js"},"TagsMultiSelect":{"props":["getTextInputRef","onScroll","name","noMoreData","searchList","isTagListLoading","tagsList","isPopupReady","selectSearchIndex","deleteTag","isReadOnly","className","handleKeyUp","handleChange","addTag","getContainerRef","getTargetRef","isPopupOpen","boxPosition","handleTogglePopup","listDisabled","chipNeedToShow","i18nKeys","dataId","needBorder","borderColor","getTextBoxChildren","htmlId","boxSize","onSelectTag","clickableTag","dataSelectorId","handleSelectAll","selectAllText","needSelectAll","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","customClass","customProps","isFocus"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TagsMultiSelect/TagsMultiSelect.js"},"TagsMultiSelectField_Component":{"props":["searchValue","fieldProperties","styleProperties","actions","dataId","htmlId","isLoading","isListDisabled","isNewNeeded","isPopupOpen","isPopupReady","removeClose","position","togglePopup","noMoreData","numberOfDisplayedValues","getTargetRef","getContainerRef","i18nKeys","getTextBoxChildren","children","ePhiData","customProps","clickableTag","dataSelectorId","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TagsMultiSelectField/TagsMultiSelectField.js"},"TextBoxField":{"props":["id","onChange","getRef","labelName","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","onFocus","ePhiData","children","customProps","renderLabelProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextBoxField/TextBoxField.js"},"TextEditor":{"props":["EDITORURL","value","editorMode","editorOptions","needEditorFocus","fontFamily","fontSize","initCallback","handleAlertMessage","needInlineAttachment","customInitOption","plainTextSwitchCallback","id","getRef","changeEditorContent","shouldUpdateContent","mode","onFocus","onChange","editorCallback","isCustomScroll","customCSS","setInlineAttachmentInProgress","i18nKeys","inlineImageProps","blurCallback","onUpload","getCSRFCookieName","getCSRFCookie","isEditorDefaultOpen","toggleEdit","dataId","type","border","ImgLazyLoad","loadingComponent","isNightMode","isReadOnly","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditor/TextEditor.js"},"TextEditorField":{"props":["id","onChange","getRef","isFocusOnLabelClick","isDisabled","isReadOnly","children","labelName","isMandatory","value","validationMessage","validationPalette","onAttachmentUpload","needEditor","dataId","dataSelectorId","fieldSize","textBoxSize","textBoxVariant","labelPalette","labelCustomClass","infoText","isLocked","lockedInfoText","errorType","EDITORURL","editorMode","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","onFocus","isEditorDefaultOpen","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","needInlineAttachment","i18nKeys","className","ePhiData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditorField/TextEditorField.js"},"TextEditorWrapper":{"props":["value","isEditorDefaultOpen","isReadOnly","isDisabled","id","onFocus","onChange","onAttachmentUpload","needEditor","dataId","getRef","textBoxSize","textBoxVariant","editorMode","editorSize","editorBorder","EDITORURL","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","i18nKeys","needInlineAttachment","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextEditorWrapper/TextEditorWrapper.js"},"TextareaField":{"props":["id","onChange","onBlur","getRef","labelName","isMandatory","textBoxSize","animated","textBoxVariant","isReadOnly","validationMessage","validationPalette","maxLength","value","errorType","isDisabled","title","placeHolder","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onFocus","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","customProps","renderLabelProps","renderRightPlaceholderNode","rightPlaceholderCustomClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/TextareaField/TextareaField.js"},"ValidationMessage":{"props":["palette","text","htmlFor","onClick","type","size","dataId","clipped","a11y","tooltip","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/fields/ValidationMessage/ValidationMessage.js"},"Field":{"props":["width","children","rowBreak","column","className","containerClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/layout/Field/Field.js"},"Section":{"props":["title","dataId","containerClass","titleClass","className","column","formName","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/form/layout/Section/Section.js"},"SetupDetailLayout":{"innerComponent":{"SetupDetailLayout":{"props":["children","needHelpInfo","getHelpInfo","helpInfoTitle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js"},"SetupHeader":{"props":["title","needBack","onBackClick","openHelpInfo","needHelpInfo","needHelpInfoWrapper","getLeftPlaceHolder","getRightPlaceHolder","leftClassName","rightClassName","isCustomizedHeader","headerCustomStyle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js"},"SetupContent":{"props":["children","needPadding","className","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js"},"SetupFooter":{"props":["children","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/layout/SetupDetailLayout/SetupDetailLayout.js"}}},"AvatarFlip":{"props":["id","action","name","isChecked","onChange","noNeedFlip","size","onClick","isPaidUser","isPortalUser","channel","src","icon","initial","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","tourId","iconSize","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/AvatarFlip/AvatarFlip.js"},"BluePrintStatus":{"props":["title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/BluePrintStatus/BluePrintStatus.js"},"Comment":{"props":["count","onClick","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Comment/Comment.js"},"DepartmentDropDown":{"props":["getDepartment","onSearch","onMoveDepartment","departmentName","departmentList","onSelectLabel","isEditable","dataId","isFetching","isPopupActive","getNextOptions","isNextOptions","needSearchFetching","searchStr","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/DepartmentDropDown/DepartmentDropDown.js"},"Dot":{"props":["className","spacingType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Dot/Dot.js"},"DotNew":{"props":["className","dataTitle","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/DotNew/DotNew.js"},"GridStencils":{"props":["lineBar","from","isThreeLayout","styles","order"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/GridStencils/GridStencils.js"},"AddNewIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/AddNewIcon.js"},"CompleteIcon":{"props":["onClick","dataId","dataTitle","iconClass","className","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/CompleteIcon.js"},"DeleteComponent":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/DeleteIcon.js"},"EditIcon":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/EditIcon.js"},"FloatingIcons":{"props":["children","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/FloatingIcons.js"},"ReadUnreadIcon":{"props":["onClick","dataId","dataTitle","iconClassName","iconClass","className","isRead","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/ReadUnreadIcon.js"},"SmartIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Icons/SmartIcon.js"},"ListStencils":{"props":["listType","testId","customId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/ListStencils/ListStencils.js"},"AccountName":{"props":["dataTitle","dataId","urlName","urlData","onClick","isLink","className","text","href","notAccessible","fontWeight","secondaryAccountHref","secondaryAccountClick","secondaryAccountText","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/AccountName.js"},"ContactName":{"props":["dataTitle","dataId","isPaidUser","urlName","urlData","onClick","sentimentType","isLink","className","text","href","notAccessible","fontWeight","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/ContactName.js"},"DepartmentText":{"props":["className","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/DepartmentText.js"},"Email":{"props":["text","urlData","urlName","className","title","href","isLink","target","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/Email.js"},"HappinessRating":{"props":["text","className","src"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/HappinessRating.js"},"PhoneNumber":{"props":["text","urlData","urlName","className","title","href","dataId","isLink","target","hasReload","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/PhoneNumber.js"},"PriorityText":{"props":["className","color","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/PriorityText.js"},"SecondaryText":{"props":["className","text","dataTitle","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/SecondaryText.js"},"StatusText":{"props":["className","color","text","dataTitle","fontWeight","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/StatusText.js"},"TicketId":{"props":["text","className","dataId","isLink","dataTitle","onClick","url","target","urlName","urlData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/TicketId.js"},"Website":{"props":["text","className","title","href","dataId","isLink","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondaryText/Website.js"},"SecondryPanel":{"innerComponent":{"SecondryPanel":{"props":["children","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js"},"SecondryPanelUL":{"props":["children","className","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js"},"SecondryPanelLI":{"props":["children","className","isShrink","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js"},"SecondryPanelItem":{"props":["children","className","dotClass","isDot","flex","clipped","dotSpacingType","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SecondryPanel/SecondryPanel.js"}}},"SentimentStatus":{"props":["type","dataTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/SentimentStatus/SentimentStatus.js"},"Subject":{"props":["text","dataId","urlName","href","urlData","onClick","isLink","target","fontWeight","className","isDotted","children","customProps","whiteSpace"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Subject/Subject.js"},"TagNew":{"props":["className","text","animate","onClick","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/TagNew/TagNew.js"},"Thread":{"props":["count","className","iconTitle","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/Thread/Thread.js"},"StatusDropdown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","onTogglePopup","onClick","keyName","getNextOptions","value","removeClose","boxSize","idName","title","isSearch","isArrow","placeHolderText","className","right","left","top","bottom","isPopupReady","position","getTargetRef","getContainerRef","dataId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","needTick","dataTitle","isDataLoaded","children","targetAlign","needResponsive","arrowIconPosition","statusColor","needExternalPopupState","isPopupActive","needMultiLineText","isFetchingOptions","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","renderTargetElement","renderFooterElement","a11y"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/status/StatusDropdown/StatusDropdown.js"},"StatusListItem":{"props":["index","getRef","id","onClick","value","onMouseEnter","size","active","highlight","autoHover","palette","title","disableTitle","needTick","isLink","href","target","needBorder","isDisabled","bulletColor","a11y","needMultiLineText","customClass","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/list/status/StatusListItem/StatusListItem.js"},"EmptyPage":{"props":["type","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/EmptyPage/EmptyPage.js"},"Lookup":{"props":["isActive","onKeyDown","children","size","dataId","forwardRef","onClick","customClass","htmlId","a11y","childAnimationName","onClose","needFocusScope","customProps","isMinHeight","containerClass","lookupClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/Lookup/Lookup.js"},"lookup-Section":{"props":["alignBox","className","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/Section/Section.js"},"Close":{"props":["onClose","dataId","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Close/Close.js"},"MemoizedModuleHeader":{"props":["title","needSearch","onLookupClose","searchStr","onSearch","onSearchChange","searchPlaceHolder","needOnTypeSearch","getSearchBoxRef","miniDescription","dataId","closeTitle","onSearchKeyDown","palette","dragBoundaryLimit","children","childNearTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/ModuleHeader/ModuleHeader.js"},"Search":{"props":["onFocus","onBlur","getRef","value","selectedId","renderChildren","options","onSelect"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Search/Search.js"},"MemoizedTicketHeader":{"props":["needSearch","onLookupClose","searchStr","onSearchChange","searchPlaceHolder","title","selectedViewId","onSelectView","allViews","onSearch","needOnTypeSearch","getSearchBoxRef","needViewsList","i18nKeys","palette","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/TicketHeader/TicketHeader.js"},"Title":{"props":["text","palette","isBold"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/lookup/header/Title/Title.js"},"Button":{"props":["palette","text","onClick","id"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Button/Button.js"},"header-Link":{"props":["url","text","iconName","iconClass","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Link/Link.js"},"header-Search":{"props":["value","onFocus","onBlur","placeHolder","maxLength","onChange","onKeyPress","customClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Search/Search.js"},"Views":{"props":["isGrid","isList","gridTitle","listTitle","onListClick","onGridClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/header/Views/Views.js"},"Description":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Description/Description.js"},"helptips-Link":{"props":["text","url","onClick","isDangerous"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Link/Link.js"},"ListGroup":{"props":["isOrder","data"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/ListGroup/ListGroup.js"},"helptips-Title":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/helptips/Title/Title.js"},"Table":{"props":["children","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/Table/Table.js"},"TableBody":{"props":["children","eleRef","onScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableBody/TableBody.js"},"TableData":{"props":["children","flexible","shrink","align","type","dataId","customClass","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableData/TableData.js"},"TableHead":{"props":["children","className","onMouseEnter","onMouseLeave","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableHead/TableHead.js"},"TableRow":{"props":["children","eleRef","eleStyle","className","dataId","onMouseEnter","onMouseLeave","onClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/TableRow/TableRow.js"},"Text":{"props":["text","url","onClick","type","palette","className","size","dataId","title","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/setup/table/Text/Text.js"},"src-PlusIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/PlusIcon.js"},"SnippetIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/SnippetIcon.js"},"TemplateIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/svg/TemplateIcon.js"},"v1-ActionButtonComponent":{"props":["isLoading","onClick","size","dataId","dataSelectorId","isArrow","text","subText","arrowBoxSize","palette","onHover","position","className","iconName","iconSize","dataTitle","isDisabled","isPopupOpen","removeClose","children","dropBoxClass","isBoxPaddingNeed","getContainerRef","getTargetRef","removeChildrenTooltip","innerClassName","popupGroup","togglePopup","defaultPosition","openPopupOnly","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ActionButton/ActionButton.js"},"MemoizedAlphabeticList":{"props":["onSelect","selectedCharacter","align","type","i18nKeys","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AlphabeticList/AlphabeticList.js"},"v1-Attachment":{"props":["onClick","dataId","size","iconName","fileName","fileSize","downloadLink","palette","tooltip","fileInfo","i18nKeys","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Attachment/Attachment.js"},"v1-AttachmentImage":{"props":["onLoad","onError","src","onClick","alt","dataId","id","customClass","isCover","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AttachmentViewer/AttachmentImage.js"},"v1-AttachmentViewer":{"props":["previewObj","maintainZoom","hideAttachmentViewer","dataId","responsiveId","needDownload","i18nKeys","isActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/AttachmentViewer/AttachmentViewer.js"},"v1-ChannelIcon":{"props":["name","action","iconSize","iconTitle","size","topicIcon","topicIconTitle","topicIconSize","topicIconColor","iconClass","dataId","className","palette","textPalette","customTextClass","iconColor","needTopicBorder","topicClass","renderIconOnly","iconName","title","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ChannelIcon/ChannelIcon.js"},"v1-Drawer":{"innerComponent":{"Header":{"props":["title","onClose","children","className","paddingSize","closeTitle","iconName","iconSize","onIconClick","isIconBold","dataId","flexible","getChildren","iconTitle","isBoxIcon","getTitleChildren"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js"},"Content":{"props":["children","className","paddingSize","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js"},"Footer":{"props":["paddingLeftSize","paddingRightClass","children","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js"},"Drawer":{"props":["children","size","paddingSize","subDrawerActive","subDrawerChildren","onBodyClick","onClose","needFocusScope","customProps","a11y","needFreeze","palette","isActive","forwardRef","responsiveId","subDrawerSize","subDrawerClass","customClass","needAutoZindex","innerPortalName"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Drawer/Drawer.js"}}},"v1-ExternalLink":{"props":["href","title","target","className","children","rel","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ExternalLink/ExternalLink.js"},"v1-FlipCard":{"props":["id","action","name","initial","isChecked","noNeedFlip","size","channel","isPaidUser","isPortalUser","src","icon","iconSize","iconClass","ticListContainer","ticList","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","iconColor","tourId","isFilledCheckbox","channelTitle","customProps","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FlipCard/FlipCard.js"},"v1-FormAction":{"props":["size","children","paddingLeftSize","paddingRightClass","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FormAction/FormAction.js"},"v1-FreezeLayer":{"props":["zIndex","palette","isSvgMask","customClass","isActive","children","align","childAnimationName","onClick","animationName","runOnMount","forwardRef","needAutoZindex","customStyle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/FreezeLayer/FreezeLayer.js"},"v1-IconButton":{"props":["palette","iconSize","iconName","className","iconClass","dataId","dataSelectorId","eleRef","isActive","tourId","isDisabled","children","hoverType","title","isBold","isNeedEffect","needButtonTag","a11y","dataIsHtml","customProps","onClick","onMouseOver","onMouseDown"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/IconButton/IconButton.js"},"v1-Image":{"props":["alt","src","className","isCover","title","onClick","dataId","htmlId","eleRef","original","onLoad","onError"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Image/Image.js"},"v1-ImportantNotes":{"props":["text","iconName","iconSize","children","iconClass","isCover","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ImportantNotes/ImportantNotes.js"},"v1-Link":{"props":["children","href","target","urlData","urlName","className","title","download","rel","dataId","customProps","ariaLabel","hasReload","onClick","key"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Link/Link.js"},"v1-MessageBanner":{"props":["type","message","onClose","href","onClick","urlText","palette","customClass","dataId","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/MessageBanner/MessageBanner.js"},"v1-NewStar":{"props":["palette","customClass","position"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/NewStar/NewStar.js"},"v1-PlusIcon":{"props":["dataId","iconName","iconClass","iconSize","size","onClick","title","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/PlusIcon/PlusIcon.js"},"v1-Separator":{"props":["children","type","customSeparatorType","palette","wrap","shrink","aligndirection","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Separator/Separator.js"},"v1-TagWithIcon":{"props":["text","iconName","iconSize","palette","iconClass","isBold","size","dataId","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/TagWithIcon/TagWithIcon.js"},"v1-ToastMessage":{"props":["messageState","type","subject","info","submitText","cancelText","iconName","iconSize","submitType","isIconMid","needClose","iconPalette","isMore","message","isAnimate","getLeftContainer","getInnerBottomContainer","getBottomContainer","getSubmitContainer","onSubmit","onCancel","dataId","dataSelectorId","isClose","onClose","needAutoZindex","a11y","Element","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/ToastMessage/ToastMessage.js"},"v1-Upload":{"props":["isPreview","tooltip","dataId","dataSelectorId","progressValue","onClick","iconName","fileSize","imgSrc","isPreviewType","onRemove","size","getRef","palette"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/Upload/Upload.js"},"v1-AutoClose":{"props":["Element","isClose","onPortalClose","autoClose","hideTime"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/actions/AutoClose.js"},"MemoizedAlertClose":{"props":["onClose","dataId","dataTitle","type","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertClose/AlertClose.js"},"alert-AlertHeader":{"props":["children","type","title","needIcon","onClose","closeTitle","breakChildren","dataId","htmlId","customStyle","dragBoundaryLimit","renderAlertIcon"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertHeader/AlertHeader.js"},"alert-AlertLookup":{"props":["isActive","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","dataId","onLookupClick","customClass","needIcon","a11y","customProps","align","childAnimationName","isHtmlContent","scroll","isDefaultFocus","onEsc","renderAlertIcon"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/AlertLookup/AlertLookup.js"},"AlarmAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/AlarmAlertIcon.js"},"AlertIcons":{"props":["type","variant","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/AlertIcons.js"},"DangerAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/DangerAlertIcon.js"},"ErrorAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/ErrorAlertIcon.js"},"InfoAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/InfoAlertIcon.js"},"NotificationAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/NotificationAlertIcon.js"},"SuccessAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/SuccessAlertIcon.js"},"WarningAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/alert/alertIcons/WarningAlertIcon.js"},"avatar-AvatarClose":{"props":["title","src","name","size","isClose","onClick","customProps","dataSelectorId","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarClose/AvatarClose.js"},"avatar-AvatarCollision":{"props":["title","src","name","size","onClick","needCreateChat","isLeft","isIdle","initial","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarCollision/AvatarCollision.js"},"avatar-AvatarIcon":{"props":["name","size","iconSize","iconClass","iconColor","onClick","palette","dataId","className","isIconBold","title","borderOnActive","borderOnHover","customProps","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarIcon/AvatarIcon.js"},"avatar-AvatarStatus":{"props":["src","name","size","onClick","title","state","dataId","initial","shape","needTitle","className","needBorder","palette","textPalette","customTextClass","statusTitle","customProps","dataSelectorId","needDefaultBorder"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarStatus/AvatarStatus.js"},"avatar-AvatarThread":{"props":["src","name","size","iconColor","iconName","iconSize","borderPalette","onClick","title","iconTitle","onIconClick","showOnHover","dataId","initial","needBorder","needBackground","palette","textPalette","customTextClass","needTitle","customProps","iconClass","getCustomThread","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarThread/AvatarThread.js"},"avatar-AvatarUser":{"props":["src","alternateSrc","name","size","onClick","onDelete","title","isPaid","isPortal","isLocked","dataId","dataSelectorId","needTitle","needDelete","initial","palette","textPalette","customTextClass","iconName","iconSize","iconClass","iconColor","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarUser/AvatarUser.js"},"avatar-AvatarWithTeam":{"props":["name","size","src","teamName","isTeam","needTitle","initial","title","palette","textPalette","customTextClass","teamClassName","borderOnActive","customProps","dataSelectorId","teamBorderActive"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/avatar/AvatarWithTeam/AvatarWithTeam.js"},"dropdown-ToggleDropDown_Component":{"props":["options","togglePopup","boxPosition","onSelectLabel","isPopupOpen","removeClose","onClick","preventPopupClose","isPopupReady","isSearch","idName","onDropDownOpen","onDropDownClose","from","keyName","isGroupDropDown","groupOptionsKey","groupNameKey","needSearchFetching","onSearch","isNextOptions","getNextOptions","value","boxSize","title","isArrow","placeHolderText","className","right","left","top","bottom","isPopupActive","needExternalPopupState","position","getTargetRef","getContainerRef","dataId","dataSelectorId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","iconName","iconSize","needTick","dataTitle","isDataLoaded","children","needResponsive","arrowIconPosition","isToggleStateNeeded","selectedId","isPadding","isNeedEffect","hoverType","palette","getFooter","customProps","needMultiLineText","isAbsolutePositioningNeeded","positionsOffset","targetOffset","isRestrictScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/dropdown/ToggleDropDown/ToggleDropDown.js"},"emptystate-CommonEmptyState":{"props":["title","description","linkDescription","linkUrl","linkText","linkTarget","onUrlClick","getEmptyState","className","dataId","isFluid","children","size","palette","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/emptystate/CommonEmptyState/CommonEmptyState.js"},"emptystate-EditionPage":{"props":["title","subtitle","information","dataId","footerText","onButtonClick","butttonText","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/emptystate/EditionPage/EditionPage.js"},"errorstate-Inconvenience":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/Inconvenience/Inconvenience.js"},"OopsSomethingMiss":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/OopsSomethingMiss/OopsSomethingMiss.js"},"UnableToProcessRequest":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UnableToProcessRequest/UnableToProcessRequest.js"},"errorstate-UnauthorizedLogin":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","buttonPalette","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UnauthorizedLogin/UnauthorizedLogin.js"},"UrlNotFound":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/UrlNotFound/UrlNotFound.js"},"WillBeRightBack":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/errorstate/WillBeRightBack/WillBeRightBack.js"},"MemoizedCheckBoxField":{"props":["labelName","id","isMandatory","validationMessage","validationPalette","isReadOnly","checked","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","infoText","fieldSize","labelPalette","labelCustomClass","direction","lineClamp","isLocked","lockedInfoText","customProps","renderLabelProps","getRef","getContainerRef","onChange","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/CheckBoxField/CheckBoxField.js"},"MemoizedCurrencyField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","dataId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","dataSelectorId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","userCurrencyType","customProps","formatCurrency","renderLabelProps","onBlur","onFocus","getRef","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/CurrencyField/CurrencyField.js"},"MemoizedDateField":{"props":["labelName","isMandatory","isDateTime","validationMessage","validationPalette","textBoxSize","textBoxVariant","isReadOnly","value","errorType","isDisabled","title","popupGroup","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","fieldSize","datePattern","isLocked","lockedInfoText","lockedValueText","labelPalette","labelCustomClass","htmlId","timeZone","i18nKeys","iconOnHover","customProps","renderLabelProps","onChange","id","getRef","openPopupOnMount","isFocusOnLabelClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/DateField/DateField.js"},"MemoizedFieldContainer":{"props":["children","ePhiData","isLocked","lockedInfoText","infoText","dataId","renderProps","alignContainer","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/FieldContainer/FieldContainer.js"},"MemoizedMultiSelectField":{"props":["labelName","id","isMandatory","options","selectedOptions","needSelectAll","selectAllText","isAnimate","emptyMessage","size","variant","textBoxSize","animationStyle","validationMessage","validationPalette","isReadOnly","errorType","isDisabled","title","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","infoText","borderColor","placeHolder","fieldSize","valueField","textField","isNextOptions","isSearching","popupGroup","labelPalette","palette","lockedInfoText","isLocked","htmlId","children","customChildrenClass","onFocus","customProps","i18nKeys","renderLabelProps","onChange","onDropBoxOpen","onSearch","getNextOptions","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/MultiSelectField/MultiSelectField.js"},"MemoizedPhoneField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","onKeyDown","placeHolder","infoText","isTelephony","providerName","ticketId","contactId","borderColor","fieldSize","labelPalette","labelCustomClass","i18nKeys","onCall","ePhiData","type","onFocus","onChange","getRef","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/PhoneField/PhoneField.js"},"MemoizedRadioField":{"props":["labelName","id","isMandatory","options","validationMessage","validationPalette","errorType","isDisabled","title","labelPalette","labelSize","size","selectedValue","isActive","getRef","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","isReadOnly","isBoxStyle","variant","customProps","onChange"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/RadioField/RadioField.js"},"MemoizedSelectField":{"props":["labelName","isMandatory","options","selectedValue","needSearch","emptyMessage","animationStyle","textBoxSize","textBoxVariant","searchBoxSize","searchBoxPlaceHolder","validationMessage","validationPalette","isReadOnly","valueField","textField","excludeOptions","errorType","isDisabled","title","dataId","dataSelectorId","fieldClass","validationRuleMessage","validationRulePalette","onKeyDown","infoText","isLocked","lockedInfoText","borderColor","fieldSize","isNextOptions","getNextOptions","popupGroup","onSearch","labelPalette","labelCustomClass","htmlId","needLocalSearch","isDefaultSelectValue","placeHolder","children","onFocus","iconOnHover","customProps","renderLabelProps","id","onChange","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/SelectField/SelectField.js"},"fields-TagsMultiSelect":{"props":["getTextInputRef","onScroll","name","noMoreData","searchList","isTagListLoading","tagsList","isPopupReady","selectSearchIndex","deleteTag","isReadOnly","className","handleKeyUp","handleChange","addTag","getContainerRef","getTargetRef","isPopupOpen","boxPosition","handleTogglePopup","listDisabled","chipNeedToShow","i18nKeys","dataId","needBorder","borderColor","getTextBoxChildren","htmlId","boxSize","onSelectTag","clickableTag","dataSelectorId","handleSelectAll","selectAllText","needSelectAll","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","customClass","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js"},"fields-TagsMultiSelectField_Component":{"props":["searchValue","fieldProperties","styleProperties","actions","dataId","htmlId","isLoading","isListDisabled","isNewNeeded","isPopupOpen","isPopupReady","removeClose","position","togglePopup","noMoreData","numberOfDisplayedValues","getTargetRef","getContainerRef","i18nKeys","getTextBoxChildren","children","ePhiData","customProps","clickableTag","dataSelectorId","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js"},"fields-TextBoxField":{"props":["labelName","id","textBoxSize","textBoxVariant","textBoxType","isMandatory","validationMessage","validationPalette","maxLength","isReadOnly","value","errorType","isDisabled","title","onBlur","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onKeyDown","placeHolder","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","needReadOnlyStyle","isClickable","onFocus","ePhiData","children","customProps","renderLabelProps","onChange","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextBoxField/TextBoxField.js"},"fields-TextEditor":{"props":["EDITORURL","value","editorMode","editorOptions","needEditorFocus","fontFamily","fontSize","initCallback","handleAlertMessage","needInlineAttachment","customInitOption","plainTextSwitchCallback","id","getRef","changeEditorContent","shouldUpdateContent","mode","onFocus","onChange","editorCallback","isCustomScroll","customCSS","setInlineAttachmentInProgress","i18nKeys","inlineImageProps","blurCallback","onUpload","getCSRFCookieName","getCSRFCookie","isEditorDefaultOpen","toggleEdit","dataId","type","border","ImgLazyLoad","loadingComponent","isNightMode","isReadOnly","dataSelectorId","isDisabled"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditor/TextEditor.js"},"fields-TextEditorField":{"props":["labelName","id","isMandatory","value","validationMessage","validationPalette","isReadOnly","onAttachmentUpload","needEditor","dataId","dataSelectorId","isDisabled","fieldSize","textBoxSize","textBoxVariant","labelPalette","labelCustomClass","infoText","isLocked","lockedInfoText","errorType","EDITORURL","editorMode","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","onFocus","isEditorDefaultOpen","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","needInlineAttachment","i18nKeys","className","children","ePhiData","customProps","onChange","getRef","isFocusOnLabelClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditorField/TextEditorField.js"},"fields-TextEditorWrapper":{"props":["id","onChange","value","onAttachmentUpload","needEditor","dataId","isReadOnly","isDisabled","getRef","textBoxSize","textBoxVariant","editorMode","editorSize","editorBorder","EDITORURL","isCustomScroll","initCallback","loadingComponent","handleAlertMessage","editorCallback","editorBlurCallback","editorOptions","changeEditorContent","shouldEditorUpdateContent","setInlineAttachmentInProgress","handleEditorDropUpload","ImgLazyLoad","i18nKeys","isEditorDefaultOpen","needInlineAttachment","customProps","dataSelectorId","onFocus"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js"},"fields-TextareaField":{"props":["labelName","id","isMandatory","textBoxSize","animated","textBoxVariant","isReadOnly","validationMessage","validationPalette","maxLength","value","errorType","isDisabled","title","placeHolder","dataId","dataSelectorId","validationRuleMessage","validationRulePalette","onFocus","infoText","borderColor","fieldSize","labelPalette","labelCustomClass","htmlId","lockedInfoText","isLocked","customProps","renderLabelProps","onChange","onBlur","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/TextareaField/TextareaField.js"},"fields-ValidationMessage":{"props":["palette","text","htmlFor","onClick","type","size","dataId","clipped","a11y","tooltip","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/fields/ValidationMessage/ValidationMessage.js"},"layout-Field":{"props":["width","children","rowBreak","column","className","containerClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/layout/Field/Field.js"},"layout-Section":{"props":["title","dataId","containerClass","titleClass","className","column","formName","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/form/layout/Section/Section.js"},"layout-SetupDetailLayout":{"innerComponent":{"SetupDetailLayout":{"props":["children","needHelpInfo","getHelpInfo","helpInfoTitle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js"},"SetupHeader":{"props":["title","needBack","onBackClick","openHelpInfo","needHelpInfo","needHelpInfoWrapper","getLeftPlaceHolder","getRightPlaceHolder","leftClassName","rightClassName","isCustomizedHeader","headerCustomStyle","dataId","i18nKeys"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js"},"SetupContent":{"props":["children","needPadding","className","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js"},"SetupFooter":{"props":["children","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/layout/SetupDetailLayout/SetupDetailLayout.js"}}},"list-AvatarFlip":{"props":["id","action","name","isChecked","onChange","noNeedFlip","size","onClick","isPaidUser","isPortalUser","channel","src","icon","initial","dataId","className","palette","textPalette","customTextClass","frontClass","needTitle","tourId","iconSize","isFilledCheckbox","channelTitle","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/AvatarFlip/AvatarFlip.js"},"list-BluePrintStatus":{"props":["title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/BluePrintStatus/BluePrintStatus.js"},"list-Comment":{"props":["count","onClick","className","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Comment/Comment.js"},"list-DepartmentDropDown":{"props":["departmentName","departmentList","onSelectLabel","isEditable","dataId","isFetching","isPopupActive","getNextOptions","isNextOptions","onSearch","needSearchFetching","searchStr","i18nKeys","onMoveDepartment","getDepartment"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/DepartmentDropDown/DepartmentDropDown.js"},"list-Dot":{"props":["className","spacingType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Dot/Dot.js"},"list-DotNew":{"props":["className","dataTitle","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/DotNew/DotNew.js"},"list-GridStencils":{"props":["lineBar","from","isThreeLayout","styles","order"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/GridStencils/GridStencils.js"},"list-AddNewIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/AddNewIcon.js"},"list-CompleteIcon":{"props":["onClick","dataId","dataTitle","iconClass","className","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/CompleteIcon.js"},"list-DeleteComponent":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/DeleteIcon.js"},"list-EditIcon":{"props":["onClick","dataId","dataTitle","iconClass","iconSize","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/EditIcon.js"},"list-FloatingIcons":{"props":["children","iconClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/FloatingIcons.js"},"list-ReadUnreadIcon":{"props":["onClick","dataId","dataTitle","iconClassName","iconClass","className","isRead","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/ReadUnreadIcon.js"},"list-SmartIcon":{"props":["onClick","dataId","dataTitle","iconClass","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Icons/SmartIcon.js"},"list-ListStencils":{"props":["listType"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/ListStencils/ListStencils.js"},"list-AccountName":{"props":["dataTitle","dataId","urlName","urlData","onClick","isLink","className","text","href","notAccessible","fontWeight","secondaryAccountHref","secondaryAccountClick","secondaryAccountText","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/AccountName.js"},"list-ContactName":{"props":["dataTitle","dataId","isPaidUser","urlName","urlData","onClick","sentimentType","isLink","className","text","href","notAccessible","fontWeight","i18nKeys","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/ContactName.js"},"list-DepartmentText":{"props":["className","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/DepartmentText.js"},"list-Email":{"props":["text","urlData","urlName","className","title","href","isLink","target","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/Email.js"},"list-HappinessRating":{"props":["text","className","src"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/HappinessRating.js"},"list-PhoneNumber":{"props":["text","urlData","urlName","className","title","href","dataId","isLink","target","hasReload","fontWeight","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/PhoneNumber.js"},"list-PriorityText":{"props":["className","color","text","dataTitle","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/PriorityText.js"},"list-SecondaryText":{"props":["className","text","dataTitle","dataId","onClick","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/SecondaryText.js"},"list-StatusText":{"props":["className","color","text","dataTitle","fontWeight","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/StatusText.js"},"list-TicketId":{"props":["text","className","dataId","isLink","dataTitle","onClick","url","target","urlName","urlData","customProps"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/TicketId.js"},"list-Website":{"props":["text","className","title","href","dataId","isLink","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondaryText/Website.js"},"list-SecondryPanel":{"innerComponent":{"SecondryPanel":{"props":["children","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js"},"SecondryPanelUL":{"props":["children","className","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js"},"SecondryPanelLI":{"props":["children","className","isShrink","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js"},"SecondryPanelItem":{"props":["children","className","dotClass","isDot","flex","clipped","dotSpacingType","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SecondryPanel/SecondryPanel.js"}}},"list-SentimentStatus":{"props":["type","dataTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/SentimentStatus/SentimentStatus.js"},"list-Subject":{"props":["text","dataId","urlName","href","urlData","onClick","isLink","target","fontWeight","className","isDotted","children","customProps","whiteSpace"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Subject/Subject.js"},"list-TagNew":{"props":["className","text","animate","onClick","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/TagNew/TagNew.js"},"list-Thread":{"props":["count","className","iconTitle","dataId","align"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/Thread/Thread.js"},"status-StatusDropdown_Component":{"props":["value","removeClose","boxSize","keyName","idName","title","isSearch","isArrow","placeHolderText","className","right","left","top","bottom","isPopupOpen","isPopupReady","position","getTargetRef","getContainerRef","dataId","searchBoxSize","searchEmptyHint","searchErrorText","activeStyle","showOnHover","isDisabled","showIconOnHover","isReadOnly","hoverStyle","isEditable","needTick","dataTitle","isDataLoaded","children","targetAlign","needResponsive","arrowIconPosition","statusColor","needExternalPopupState","isPopupActive","needMultiLineText","boxPosition","togglePopup","onTogglePopup","onClick","onSelectLabel","isFetchingOptions","getNextOptions","options","isAbsolutePositioningNeeded","isRestrictScroll","positionsOffset","targetOffset","renderTargetElement","renderFooterElement","a11y"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/status/StatusDropdown/StatusDropdown.js"},"status-StatusListItem":{"props":["size","active","highlight","value","autoHover","palette","title","disableTitle","needTick","isLink","href","target","needBorder","isDisabled","bulletColor","a11y","needMultiLineText","index","getRef","id","onClick","onMouseEnter","customClass","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/list/status/StatusListItem/StatusListItem.js"},"lookup-EmptyPage":{"props":["type","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/EmptyPage/EmptyPage.js"},"lookup-Lookup":{"props":["isActive","children","size","dataId","forwardRef","onClick","customClass","htmlId","a11y","childAnimationName","onClose","needFocusScope","customProps","onKeyDown","isMinHeight","lookupClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/Lookup/Lookup.js"},"v1-lookup-Section":{"props":["alignBox","className","children"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/Section/Section.js"},"MemoizedClose":{"props":["onClose","dataId","title"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Close/Close.js"},"header-MemoizedModuleHeader":{"props":["title","needSearch","onLookupClose","searchStr","onSearch","onSearchChange","searchPlaceHolder","needOnTypeSearch","getSearchBoxRef","miniDescription","dataId","closeTitle","onSearchKeyDown","palette","dragBoundaryLimit","children","childNearTitle"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/ModuleHeader/ModuleHeader.js"},"lookup-header-Search":{"props":["options","onSelect","value","selectedId","onFocus","onBlur","getRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Search/Search.js"},"header-MemoizedTicketHeader":{"props":["needSearch","onLookupClose","searchStr","onSearchChange","searchPlaceHolder","title","selectedViewId","onSelectView","allViews","onSearch","needOnTypeSearch","getSearchBoxRef","needViewsList","i18nKeys","palette","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/TicketHeader/TicketHeader.js"},"MemoizedTitle":{"props":["text","palette","isBold"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/lookup/header/Title/Title.js"},"DesktopNotificationHeader":{"props":["onClose","closeTitle","dataId","variant","type","needIcon","title","renderAlertIcon","needClose","responsiveId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js"},"header-Button":{"props":["palette","text","onClick","id"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Button/Button.js"},"setup-header-Link":{"props":["url","text","iconName","iconClass","iconSize"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Link/Link.js"},"setup-header-Search":{"props":["placeHolder","maxLength","value","onChange","onKeyPress","onFocus","onBlur","customClass","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Search/Search.js"},"header-Views":{"props":["isGrid","isList","gridTitle","listTitle","onListClick","onGridClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/header/Views/Views.js"},"helptips-Description":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Description/Description.js"},"setup-helptips-Link":{"props":["text","url","onClick","isDangerous"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Link/Link.js"},"helptips-ListGroup":{"props":["isOrder","data"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/ListGroup/ListGroup.js"},"setup-helptips-Title":{"props":["text"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/helptips/Title/Title.js"},"table-Table":{"props":["children","dataId","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/Table/Table.js"},"table-TableBody":{"props":["children","eleRef","onScroll","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableBody/TableBody.js"},"table-TableData":{"props":["children","flexible","shrink","align","type","dataId","customClass","eleRef"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableData/TableData.js"},"table-TableHead":{"props":["children","className","onMouseEnter","onMouseLeave","dataId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableHead/TableHead.js"},"table-TableRow":{"props":["children","eleRef","eleStyle","className","dataId","onMouseEnter","onMouseLeave","onClick"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/TableRow/TableRow.js"},"table-Text":{"props":["text","url","onClick","type","palette","className","size","dataId","title","target"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/setup/table/Text/Text.js"},"src-v1-PlusIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/PlusIcon.js"},"v1-SnippetIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/SnippetIcon.js"},"v1-TemplateIcon":{"props":["isRender","isSymbol","className"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/v1/svg/TemplateIcon.js"},"AlertClose":{"props":["onClose","dataId","dataTitle","type","customClass"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/AlertClose/AlertClose.js"},"version2-AlarmAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/AlarmAlertIcon.js"},"version2-AlertIcons":{"props":["type","variant","dataSelectorId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/AlertIcons.js"},"version2-DangerAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/DangerAlertIcon.js"},"version2-ErrorAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/ErrorAlertIcon.js"},"version2-InfoAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/InfoAlertIcon.js"},"version2-NotificationAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/NotificationAlertIcon.js"},"version2-SuccessAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/SuccessAlertIcon.js"},"version2-WarningAlertIcon":{"props":["variant","type"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/alertIcons/WarningAlertIcon.js"},"version2-errorstate-Inconvenience":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/Inconvenience/Inconvenience.js"},"errorstate-OopsSomethingMiss":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/OopsSomethingMiss/OopsSomethingMiss.js"},"errorstate-UnableToProcessRequest":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UnableToProcessRequest/UnableToProcessRequest.js"},"version2-errorstate-UnauthorizedLogin":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","buttonPalette","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UnauthorizedLogin/UnauthorizedLogin.js"},"errorstate-UrlNotFound":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/UrlNotFound/UrlNotFound.js"},"errorstate-WillBeRightBack":{"props":["title","description","isButtonNeeded","className","isFluid","dataId","buttonText","onButtonClick","urlText","url","onClick","urlTarget","size"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/errorstate/WillBeRightBack/WillBeRightBack.js"},"lookup-AlertHeader":{"props":["children","type","title","needIcon","onClose","closeTitle","breakChildren","dataId","htmlId","customStyle","dragBoundaryLimit"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/lookup/AlertHeader/AlertHeader.js"},"lookup-AlertLookup":{"props":["isActive","size","type","title","message","confirmationMessage","submitText","cancelText","onSubmitClick","onCancelClick","children","forwardRef","onClose","headerChildren","wrapHeader","dataId","onLookupClick","customClass","needIcon","a11y","customProps","align","childAnimationName","isHtmlContent","scroll","isDefaultFocus","onEsc"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/lookup/AlertLookup/AlertLookup.js"},"notification-DesktopNotificationHeader":{"props":["onClose","closeTitle","dataId","variant","type","needIcon","title","needClose","responsiveId"],"unusedPropsInFile":[],"notValidatedProps":[],"UnUsedValidatedProps":[],"noSeperatePropsFile":false,"FilePath":"src/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js"}};
|
|
72
|
-
const tableContainer = document.getElementById( 'table-container' );
|
|
73
|
-
const table = document.createElement( 'table' );
|
|
74
|
-
const thead = document.createElement( 'thead' );
|
|
75
|
-
const tbody = document.createElement( 'tbody' );
|
|
76
|
-
|
|
77
|
-
// Create table header
|
|
78
|
-
const headerRow = document.createElement( 'tr' );
|
|
79
|
-
let headers = [ 'No', 'Component Name', 'Props List', 'Unused Props', "Not Validated Props", " UnUsed Validated Props ", 'Prop Structure (UCL / OLD)', 'Inaccurate Props', 'FilePath', 'Inner Components Of' ];
|
|
80
|
-
function checkInaccurateProps(jsonData, headers) {
|
|
81
|
-
let components = Object.keys(jsonData)
|
|
82
|
-
|
|
83
|
-
if(!!jsonData[components[0]].innerComponent){
|
|
84
|
-
let newdata=Object.keys(jsonData[components[0]].innerComponent)
|
|
85
|
-
if(!jsonData[components[0]].innerComponent[newdata[0]]["InaccurateProps"]){
|
|
86
|
-
headers = headers.filter(header => header !== "Inaccurate Props")
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
else if (!jsonData[components[0]]["InaccurateProps"]) {
|
|
90
|
-
headers = headers.filter(header => header !== "Inaccurate Props")
|
|
91
|
-
}
|
|
92
|
-
return headers
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
headers = checkInaccurateProps(jsonData, headers) // here header is modified based on report for inaccurate props
|
|
96
|
-
headers.forEach( header => {
|
|
97
|
-
const th = document.createElement( 'th' );
|
|
98
|
-
th.textContent = header;
|
|
99
|
-
headerRow.appendChild( th );
|
|
100
|
-
} );
|
|
101
|
-
thead.appendChild( headerRow );
|
|
102
|
-
table.appendChild( thead );
|
|
103
|
-
|
|
104
|
-
function convertJsonIntoHtml( data ) {
|
|
105
|
-
const newNode = document.createElement( "div" );
|
|
106
|
-
data.forEach( ( item ) => {
|
|
107
|
-
// const newNode = document.createElement("div");
|
|
108
|
-
const textNode = document.createElement( "span" ); // Create a new <div> element
|
|
109
|
-
textNode.innerText = item; // Set the content of the <div> to the array item
|
|
110
|
-
newNode.appendChild( textNode );
|
|
111
|
-
// htmlText.push(newNode); // Append the new <div> to the container
|
|
112
|
-
} );
|
|
113
|
-
return newNode;
|
|
114
|
-
}
|
|
115
|
-
var componentCount = 1;
|
|
116
|
-
// Function to recursively generate table rows for inner components
|
|
117
|
-
function generateRows( component, data, innerComponent = '' ) {
|
|
118
|
-
const props = data.props ? convertJsonIntoHtml( data.props ) : '';
|
|
119
|
-
const unusedProps = data.unusedPropsInFile ? convertJsonIntoHtml( data.unusedPropsInFile ) : '';
|
|
120
|
-
const notValidatedProps = data.notValidatedProps ? convertJsonIntoHtml( data.notValidatedProps ) : '';
|
|
121
|
-
const unusedValidatedProps = data.UnUsedValidatedProps ? convertJsonIntoHtml( data.UnUsedValidatedProps ) : '';
|
|
122
|
-
const propsTypeDeclared = data.noSeperatePropsFile ? "Old " : "UCL";
|
|
123
|
-
const filePath = data.FilePath ? data.FilePath : '';
|
|
124
|
-
const InaccurateProps = data.InaccurateProps ? convertJsonIntoHtml(data.InaccurateProps) : '';
|
|
125
|
-
|
|
126
|
-
const row = document.createElement( 'tr' );
|
|
127
|
-
const numbers = document.createElement( 'td' );
|
|
128
|
-
const componentCell = document.createElement( 'td' );
|
|
129
|
-
const propsCell = document.createElement( 'td' );
|
|
130
|
-
const unusedPropsCell = document.createElement( 'td' );
|
|
131
|
-
const notValidatedPropsCell = document.createElement( 'td' );
|
|
132
|
-
const unusedValidatedPropsCell = document.createElement( 'td' );
|
|
133
|
-
const propsTypeDeclaredCell = document.createElement( 'td' );
|
|
134
|
-
const InaccuratePropsCell = document.createElement( 'td' );
|
|
135
|
-
const filePathCell = document.createElement( 'td' );
|
|
136
|
-
const innerComponentCell = document.createElement( 'td' );
|
|
137
|
-
|
|
138
|
-
numbers.textContent = componentCount;
|
|
139
|
-
componentCell.textContent = component;
|
|
140
|
-
props && propsCell.appendChild( props );
|
|
141
|
-
unusedProps && unusedPropsCell.appendChild( unusedProps );
|
|
142
|
-
notValidatedProps && notValidatedPropsCell.appendChild( notValidatedProps );
|
|
143
|
-
unusedValidatedProps && unusedValidatedPropsCell.appendChild( unusedValidatedProps );
|
|
144
|
-
propsTypeDeclaredCell.textContent = propsTypeDeclared;
|
|
145
|
-
InaccurateProps && InaccuratePropsCell.appendChild(InaccurateProps);
|
|
146
|
-
filePathCell.textContent = filePath;
|
|
147
|
-
innerComponentCell.textContent = innerComponent;
|
|
148
|
-
row.appendChild( numbers );
|
|
149
|
-
row.appendChild( componentCell );
|
|
150
|
-
row.appendChild( propsCell );
|
|
151
|
-
row.appendChild( unusedPropsCell );
|
|
152
|
-
row.appendChild( notValidatedPropsCell );
|
|
153
|
-
row.appendChild( unusedValidatedPropsCell );
|
|
154
|
-
row.appendChild( propsTypeDeclaredCell );
|
|
155
|
-
if (data.InaccurateProps) {
|
|
156
|
-
row.appendChild(InaccuratePropsCell);
|
|
157
|
-
}
|
|
158
|
-
row.appendChild( filePathCell );
|
|
159
|
-
row.appendChild( innerComponentCell );
|
|
160
|
-
tbody.appendChild( row );
|
|
161
|
-
|
|
162
|
-
if ( data.innerComponent ) {
|
|
163
|
-
Object.entries( data.innerComponent ).forEach( ( [ innerComp, innerData ] ) => {
|
|
164
|
-
generateRows( innerComp, innerData, component );
|
|
165
|
-
} );
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
// Generate table rows for the JSON data
|
|
170
|
-
Object.entries( jsonData ).forEach( ( [ component, data ] ) => {
|
|
171
|
-
generateRows( component, data );
|
|
172
|
-
componentCount++;
|
|
173
|
-
} );
|
|
174
|
-
|
|
175
|
-
table.appendChild( tbody );
|
|
176
|
-
tableContainer.appendChild( table );
|
|
177
|
-
|
|
178
|
-
//generateTable(jsonData);
|
|
179
|
-
</script>
|
|
180
|
-
</body>
|
|
181
|
-
|
|
182
|
-
</html>
|
package/.cli/stringContains.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = ['--zdt_'];
|
package/css_error.log
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
DOT Package error log:
|
|
Binary file
|
package/install.md
DELETED
package/postPublish.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
const { execSync } = require('child_process');
|
|
2
|
-
const { version, name } = require('./package.json');
|
|
3
|
-
const tagName = `${name}@${version}`;
|
|
4
|
-
// const tagName = `${name.replace(/^@/g, "").replace(/\//g, "-")}-v-${version}}@${version}`;
|
|
5
|
-
console.log(`going to add git tag... ${tagName}`);
|
|
6
|
-
|
|
7
|
-
execSync(`git tag -a ${tagName} -m ${tagName}`, { stdio: 'inherit' });
|
|
8
|
-
execSync(`git push origin ${tagName}`, { stdio: 'inherit' });
|