@zohodesk/dot 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/PropLessFiles.html +1 -1
- package/.cli/propValidation_report.html +1 -1
- package/README.md +6 -0
- package/coverage/ExternalLink/ExternalLink.js.html +1 -1
- package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
- package/coverage/ExternalLink/index.html +1 -1
- package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
- package/coverage/ExternalLink/props/index.html +1 -1
- package/coverage/ExternalLink/props/propTypes.js.html +1 -1
- package/coverage/IconButton/IconButton.js.html +1 -1
- package/coverage/IconButton/IconButton.module.css.html +1 -1
- package/coverage/IconButton/index.html +1 -1
- package/coverage/IconButton/props/defaultProps.js.html +1 -1
- package/coverage/IconButton/props/index.html +1 -1
- package/coverage/IconButton/props/propTypes.js.html +1 -1
- package/coverage/Image/Image.js.html +1 -1
- package/coverage/Image/Image.module.css.html +1 -1
- package/coverage/Image/index.html +1 -1
- package/coverage/Image/props/defaultProps.js.html +1 -1
- package/coverage/Image/props/index.html +1 -1
- package/coverage/Image/props/propTypes.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
- package/coverage/avatar/AvatarWithTeam/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
- package/coverage/coverage-final.json +16 -16
- package/coverage/coverage-summary.json +16 -16
- package/coverage/index.html +1 -1
- package/es/Attachment/Attachment.js +8 -4
- package/es/Attachment/Attachment.module.css +19 -0
- package/es/Attachment/props/defaultProps.js +2 -1
- package/es/Attachment/props/propTypes.js +2 -1
- package/es/v1/Attachment/Attachment.js +8 -4
- package/es/v1/Attachment/props/defaultProps.js +2 -1
- package/es/v1/Attachment/props/propTypes.js +2 -1
- package/es/v1/form/fields/RadioField/RadioField.js +11 -3
- package/es/v1/form/fields/RadioField/props/propTypes.js +1 -0
- package/lib/Attachment/Attachment.js +8 -4
- package/lib/Attachment/Attachment.module.css +19 -0
- package/lib/Attachment/props/defaultProps.js +2 -1
- package/lib/Attachment/props/propTypes.js +2 -1
- package/lib/v1/Attachment/Attachment.js +8 -4
- package/lib/v1/Attachment/props/defaultProps.js +2 -1
- package/lib/v1/Attachment/props/propTypes.js +2 -1
- package/lib/v1/form/fields/RadioField/RadioField.js +13 -3
- package/lib/v1/form/fields/RadioField/props/propTypes.js +1 -0
- package/package.json +1 -1
- package/result.json +1 -1
|
@@ -6,6 +6,25 @@
|
|
|
6
6
|
border-radius: 2px;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
.disableAttachment {
|
|
10
|
+
opacity: .6;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.disableLayer {
|
|
14
|
+
height: 100% ;
|
|
15
|
+
width: 100% ;
|
|
16
|
+
position: absolute;
|
|
17
|
+
top:0
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
[dir=ltr] .disableLayer {
|
|
21
|
+
left:0
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
[dir=rtl] .disableLayer {
|
|
25
|
+
right:0
|
|
26
|
+
}
|
|
27
|
+
|
|
9
28
|
.attachmentHover {
|
|
10
29
|
cursor: pointer;
|
|
11
30
|
}
|
|
@@ -22,14 +22,15 @@ const Attachment = props => {
|
|
|
22
22
|
tooltip,
|
|
23
23
|
fileInfo,
|
|
24
24
|
i18nKeys,
|
|
25
|
-
dataSelectorId
|
|
25
|
+
dataSelectorId,
|
|
26
|
+
isDisabled
|
|
26
27
|
} = props;
|
|
27
28
|
let {
|
|
28
29
|
downloadTitle = 'Download'
|
|
29
30
|
} = i18nKeys;
|
|
30
31
|
return /*#__PURE__*/React.createElement(Container, {
|
|
31
32
|
isInline: true,
|
|
32
|
-
className: `${style.attachment} ${onClick ? style.attachmentHover : ''} ${style[`palette_${palette}`]} ${style[size]}`,
|
|
33
|
+
className: `${style.attachment} ${isDisabled ? style.disableAttachment : ""} ${onClick ? style.attachmentHover : ''} ${style[`palette_${palette}`]} ${style[size]}`,
|
|
33
34
|
onClick: onClick,
|
|
34
35
|
dataId: dataId,
|
|
35
36
|
"data-title": tooltip,
|
|
@@ -70,7 +71,7 @@ const Attachment = props => {
|
|
|
70
71
|
adjust: true,
|
|
71
72
|
shrink: true,
|
|
72
73
|
"data-title": fileInfo
|
|
73
|
-
}, fileInfo)) : null)))), downloadLink ? /*#__PURE__*/React.createElement(Link, {
|
|
74
|
+
}, fileInfo)) : null)))), downloadLink && !isDisabled ? /*#__PURE__*/React.createElement(Link, {
|
|
74
75
|
target: "_self",
|
|
75
76
|
href: downloadLink,
|
|
76
77
|
className: style.attachDownload,
|
|
@@ -79,7 +80,10 @@ const Attachment = props => {
|
|
|
79
80
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
80
81
|
name: "ZD-downloadNew",
|
|
81
82
|
iconClass: style.downIcon
|
|
82
|
-
})) : null
|
|
83
|
+
})) : null, isDisabled ? /*#__PURE__*/React.createElement("div", {
|
|
84
|
+
"data-title": tooltip,
|
|
85
|
+
className: style.disableLayer
|
|
86
|
+
}) : null);
|
|
83
87
|
};
|
|
84
88
|
|
|
85
89
|
Attachment.propTypes = propTypes;
|
|
@@ -6,6 +6,7 @@ import { defaultProps } from './props/defaultProps';
|
|
|
6
6
|
import { propTypes } from './props/propTypes';
|
|
7
7
|
/**** Components ****/
|
|
8
8
|
|
|
9
|
+
import Icon from '@zohodesk/icons/es/Icon';
|
|
9
10
|
import Label from '@zohodesk/components/es/v1/Label/Label';
|
|
10
11
|
import Radio from '@zohodesk/components/es/v1/Radio/Radio';
|
|
11
12
|
import ValidationMessage from '../ValidationMessage/ValidationMessage';
|
|
@@ -41,6 +42,7 @@ const RadioField = props => {
|
|
|
41
42
|
const {
|
|
42
43
|
LabelProps = {},
|
|
43
44
|
RadioProps = {},
|
|
45
|
+
InfoIconProps = {},
|
|
44
46
|
ValidationMessageProps1 = {},
|
|
45
47
|
ValidationMessageProps2 = {}
|
|
46
48
|
} = customProps;
|
|
@@ -65,11 +67,12 @@ const RadioField = props => {
|
|
|
65
67
|
}, options.map((option, index) => {
|
|
66
68
|
let {
|
|
67
69
|
text,
|
|
68
|
-
value
|
|
70
|
+
value,
|
|
71
|
+
infoTooltip
|
|
69
72
|
} = option;
|
|
70
73
|
return /*#__PURE__*/React.createElement("span", {
|
|
71
74
|
key: index,
|
|
72
|
-
className: `${style.radio}`
|
|
75
|
+
className: `${style.radio} ${!!infoTooltip ? style.labelContainer : ''}`
|
|
73
76
|
}, /*#__PURE__*/React.createElement(Radio, _extends({
|
|
74
77
|
id: index,
|
|
75
78
|
value: value,
|
|
@@ -85,7 +88,12 @@ const RadioField = props => {
|
|
|
85
88
|
dataId: dataId,
|
|
86
89
|
isReadOnly: isReadOnly,
|
|
87
90
|
variant: variant
|
|
88
|
-
}, RadioProps))
|
|
91
|
+
}, RadioProps)), !!infoTooltip ? /*#__PURE__*/React.createElement(Icon, _extends({
|
|
92
|
+
name: "ZD-GN-info",
|
|
93
|
+
size: "16",
|
|
94
|
+
title: infoTooltip,
|
|
95
|
+
iconClass: style.infoIcon
|
|
96
|
+
}, InfoIconProps)) : null);
|
|
89
97
|
})), validationMessage && /*#__PURE__*/React.createElement(ValidationMessage, _extends({
|
|
90
98
|
text: validationMessage,
|
|
91
99
|
palette: validationPalette,
|
|
@@ -69,12 +69,13 @@ var Attachment = /*#__PURE__*/function (_React$Component) {
|
|
|
69
69
|
tooltip = _this$props.tooltip,
|
|
70
70
|
fileInfo = _this$props.fileInfo,
|
|
71
71
|
i18nKeys = _this$props.i18nKeys,
|
|
72
|
-
dataSelectorId = _this$props.dataSelectorId
|
|
72
|
+
dataSelectorId = _this$props.dataSelectorId,
|
|
73
|
+
isDisabled = _this$props.isDisabled;
|
|
73
74
|
var _i18nKeys$downloadTit = i18nKeys.downloadTitle,
|
|
74
75
|
downloadTitle = _i18nKeys$downloadTit === void 0 ? 'Download' : _i18nKeys$downloadTit;
|
|
75
76
|
return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
76
77
|
isInline: true,
|
|
77
|
-
className: "".concat(_AttachmentModule["default"].attachment, " ").concat(onClick ? _AttachmentModule["default"].attachmentHover : '', " ").concat(_AttachmentModule["default"]["palette_".concat(palette)], " ").concat(_AttachmentModule["default"][size]),
|
|
78
|
+
className: "".concat(_AttachmentModule["default"].attachment, " ").concat(isDisabled ? _AttachmentModule["default"].disableAttachment : "", " ").concat(onClick ? _AttachmentModule["default"].attachmentHover : '', " ").concat(_AttachmentModule["default"]["palette_".concat(palette)], " ").concat(_AttachmentModule["default"][size]),
|
|
78
79
|
onClick: onClick,
|
|
79
80
|
dataId: dataId,
|
|
80
81
|
"data-title": tooltip,
|
|
@@ -115,7 +116,7 @@ var Attachment = /*#__PURE__*/function (_React$Component) {
|
|
|
115
116
|
adjust: true,
|
|
116
117
|
shrink: true,
|
|
117
118
|
"data-title": fileInfo
|
|
118
|
-
}, fileInfo)) : null)))), downloadLink ? /*#__PURE__*/_react["default"].createElement(_Link["default"], {
|
|
119
|
+
}, fileInfo)) : null)))), downloadLink && !isDisabled ? /*#__PURE__*/_react["default"].createElement(_Link["default"], {
|
|
119
120
|
target: "_self",
|
|
120
121
|
href: downloadLink,
|
|
121
122
|
className: _AttachmentModule["default"].attachDownload,
|
|
@@ -124,7 +125,10 @@ var Attachment = /*#__PURE__*/function (_React$Component) {
|
|
|
124
125
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
125
126
|
name: "ZD-downloadNew",
|
|
126
127
|
iconClass: _AttachmentModule["default"].downIcon
|
|
127
|
-
})) : null
|
|
128
|
+
})) : null, isDisabled ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
129
|
+
"data-title": tooltip,
|
|
130
|
+
className: _AttachmentModule["default"].disableLayer
|
|
131
|
+
}) : null);
|
|
128
132
|
}
|
|
129
133
|
}]);
|
|
130
134
|
|
|
@@ -6,6 +6,25 @@
|
|
|
6
6
|
border-radius: 2px;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
.disableAttachment {
|
|
10
|
+
opacity: .6;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.disableLayer {
|
|
14
|
+
height: 100% ;
|
|
15
|
+
width: 100% ;
|
|
16
|
+
position: absolute;
|
|
17
|
+
top:0
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
[dir=ltr] .disableLayer {
|
|
21
|
+
left:0
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
[dir=rtl] .disableLayer {
|
|
25
|
+
right:0
|
|
26
|
+
}
|
|
27
|
+
|
|
9
28
|
.attachmentHover {
|
|
10
29
|
cursor: pointer;
|
|
11
30
|
}
|
|
@@ -23,6 +23,7 @@ var propTypes = {
|
|
|
23
23
|
i18nKeys: _propTypes["default"].shape({
|
|
24
24
|
downloadTitle: _propTypes["default"].string
|
|
25
25
|
}),
|
|
26
|
-
tooltip: _propTypes["default"].string
|
|
26
|
+
tooltip: _propTypes["default"].string,
|
|
27
|
+
isDisabled: _propTypes["default"].bool
|
|
27
28
|
};
|
|
28
29
|
exports.propTypes = propTypes;
|
|
@@ -36,12 +36,13 @@ var Attachment = function Attachment(props) {
|
|
|
36
36
|
tooltip = props.tooltip,
|
|
37
37
|
fileInfo = props.fileInfo,
|
|
38
38
|
i18nKeys = props.i18nKeys,
|
|
39
|
-
dataSelectorId = props.dataSelectorId
|
|
39
|
+
dataSelectorId = props.dataSelectorId,
|
|
40
|
+
isDisabled = props.isDisabled;
|
|
40
41
|
var _i18nKeys$downloadTit = i18nKeys.downloadTitle,
|
|
41
42
|
downloadTitle = _i18nKeys$downloadTit === void 0 ? 'Download' : _i18nKeys$downloadTit;
|
|
42
43
|
return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
43
44
|
isInline: true,
|
|
44
|
-
className: "".concat(_AttachmentModule["default"].attachment, " ").concat(onClick ? _AttachmentModule["default"].attachmentHover : '', " ").concat(_AttachmentModule["default"]["palette_".concat(palette)], " ").concat(_AttachmentModule["default"][size]),
|
|
45
|
+
className: "".concat(_AttachmentModule["default"].attachment, " ").concat(isDisabled ? _AttachmentModule["default"].disableAttachment : "", " ").concat(onClick ? _AttachmentModule["default"].attachmentHover : '', " ").concat(_AttachmentModule["default"]["palette_".concat(palette)], " ").concat(_AttachmentModule["default"][size]),
|
|
45
46
|
onClick: onClick,
|
|
46
47
|
dataId: dataId,
|
|
47
48
|
"data-title": tooltip,
|
|
@@ -82,7 +83,7 @@ var Attachment = function Attachment(props) {
|
|
|
82
83
|
adjust: true,
|
|
83
84
|
shrink: true,
|
|
84
85
|
"data-title": fileInfo
|
|
85
|
-
}, fileInfo)) : null)))), downloadLink ? /*#__PURE__*/_react["default"].createElement(_Link["default"], {
|
|
86
|
+
}, fileInfo)) : null)))), downloadLink && !isDisabled ? /*#__PURE__*/_react["default"].createElement(_Link["default"], {
|
|
86
87
|
target: "_self",
|
|
87
88
|
href: downloadLink,
|
|
88
89
|
className: _AttachmentModule["default"].attachDownload,
|
|
@@ -91,7 +92,10 @@ var Attachment = function Attachment(props) {
|
|
|
91
92
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
92
93
|
name: "ZD-downloadNew",
|
|
93
94
|
iconClass: _AttachmentModule["default"].downIcon
|
|
94
|
-
})) : null
|
|
95
|
+
})) : null, isDisabled ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
96
|
+
"data-title": tooltip,
|
|
97
|
+
className: _AttachmentModule["default"].disableLayer
|
|
98
|
+
}) : null);
|
|
95
99
|
};
|
|
96
100
|
|
|
97
101
|
Attachment.propTypes = _propTypes.propTypes;
|
|
@@ -23,6 +23,7 @@ var propTypes = {
|
|
|
23
23
|
i18nKeys: _propTypes["default"].shape({
|
|
24
24
|
downloadTitle: _propTypes["default"].string
|
|
25
25
|
}),
|
|
26
|
-
tooltip: _propTypes["default"].string
|
|
26
|
+
tooltip: _propTypes["default"].string,
|
|
27
|
+
isDisabled: _propTypes["default"].bool
|
|
27
28
|
};
|
|
28
29
|
exports.propTypes = propTypes;
|
|
@@ -13,6 +13,8 @@ var _defaultProps = require("./props/defaultProps");
|
|
|
13
13
|
|
|
14
14
|
var _propTypes = require("./props/propTypes");
|
|
15
15
|
|
|
16
|
+
var _Icon = _interopRequireDefault(require("@zohodesk/icons/es/Icon"));
|
|
17
|
+
|
|
16
18
|
var _Label = _interopRequireDefault(require("@zohodesk/components/es/v1/Label/Label"));
|
|
17
19
|
|
|
18
20
|
var _Radio = _interopRequireDefault(require("@zohodesk/components/es/v1/Radio/Radio"));
|
|
@@ -56,6 +58,8 @@ var RadioField = function RadioField(props) {
|
|
|
56
58
|
LabelProps = _customProps$LabelPro === void 0 ? {} : _customProps$LabelPro,
|
|
57
59
|
_customProps$RadioPro = customProps.RadioProps,
|
|
58
60
|
RadioProps = _customProps$RadioPro === void 0 ? {} : _customProps$RadioPro,
|
|
61
|
+
_customProps$InfoIcon = customProps.InfoIconProps,
|
|
62
|
+
InfoIconProps = _customProps$InfoIcon === void 0 ? {} : _customProps$InfoIcon,
|
|
59
63
|
_customProps$Validati = customProps.ValidationMessageProps1,
|
|
60
64
|
ValidationMessageProps1 = _customProps$Validati === void 0 ? {} : _customProps$Validati,
|
|
61
65
|
_customProps$Validati2 = customProps.ValidationMessageProps2,
|
|
@@ -80,10 +84,11 @@ var RadioField = function RadioField(props) {
|
|
|
80
84
|
className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"].fieldMargin_medium : '', " ").concat(_FieldsModule["default"].radioContainer)
|
|
81
85
|
}, options.map(function (option, index) {
|
|
82
86
|
var text = option.text,
|
|
83
|
-
value = option.value
|
|
87
|
+
value = option.value,
|
|
88
|
+
infoTooltip = option.infoTooltip;
|
|
84
89
|
return /*#__PURE__*/_react["default"].createElement("span", {
|
|
85
90
|
key: index,
|
|
86
|
-
className: "".concat(_FieldsModule["default"].radio)
|
|
91
|
+
className: "".concat(_FieldsModule["default"].radio, " ").concat(!!infoTooltip ? _FieldsModule["default"].labelContainer : '')
|
|
87
92
|
}, /*#__PURE__*/_react["default"].createElement(_Radio["default"], _extends({
|
|
88
93
|
id: index,
|
|
89
94
|
value: value,
|
|
@@ -99,7 +104,12 @@ var RadioField = function RadioField(props) {
|
|
|
99
104
|
dataId: dataId,
|
|
100
105
|
isReadOnly: isReadOnly,
|
|
101
106
|
variant: variant
|
|
102
|
-
}, RadioProps))
|
|
107
|
+
}, RadioProps)), !!infoTooltip ? /*#__PURE__*/_react["default"].createElement(_Icon["default"], _extends({
|
|
108
|
+
name: "ZD-GN-info",
|
|
109
|
+
size: "16",
|
|
110
|
+
title: infoTooltip,
|
|
111
|
+
iconClass: _FieldsModule["default"].infoIcon
|
|
112
|
+
}, InfoIconProps)) : null);
|
|
103
113
|
})), validationMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
|
|
104
114
|
text: validationMessage,
|
|
105
115
|
palette: validationPalette,
|
|
@@ -33,6 +33,7 @@ var propTypes = {
|
|
|
33
33
|
customProps: _propTypes["default"].shape({
|
|
34
34
|
LabelProps: _propTypes["default"].object,
|
|
35
35
|
RadioProps: _propTypes["default"].object,
|
|
36
|
+
InfoIconProps: _propTypes["default"].object,
|
|
36
37
|
ValidationMessageProps1: _propTypes["default"].object,
|
|
37
38
|
ValidationMessageProps2: _propTypes["default"].object
|
|
38
39
|
}),
|
package/package.json
CHANGED
package/result.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"jobDetails":{"isRunByLocal":true,"hostName":"bharathi-zt93","platForm":"Darwin","branchName":"testcase_gowtham"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":4,"endTime":1704383957136,"startTime":1704383951309,"coverageDetail":{"codeCoveragePercentage":84.23,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}}]}}}
|
|
1
|
+
{"jobDetails":{"isRunByLocal":true,"hostName":"muthu-19990","platForm":"Darwin","branchName":"react-live-fix"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":4,"endTime":1704808233770,"startTime":1704808230176,"coverageDetail":{"codeCoveragePercentage":84.23,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}}]}}}
|