@zohodesk/components 1.0.0-temp-190.2 → 1.0.0-temp-192
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 +16 -5
- package/es/Avatar/Avatar.module.css +0 -12
- package/es/AvatarTeam/AvatarTeam.module.css +0 -4
- package/es/Button/css/Button.module.css +0 -6
- package/es/Buttongroup/Buttongroup.module.css +0 -2
- package/es/CheckBox/CheckBox.js +10 -0
- package/es/CheckBox/CheckBox.module.css +0 -2
- package/es/CheckBox/props/propTypes.js +1 -0
- package/es/DateTime/DateTime.module.css +0 -1
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +0 -7
- package/es/DropBox/css/DropBox.module.css +0 -1
- package/es/DropDown/DropDownHeading.module.css +0 -6
- package/es/DropDown/DropDownItem.module.css +0 -3
- package/es/Label/Label.module.css +0 -1
- package/es/ListItem/ListItem.js +2 -2
- package/es/ListItem/ListItem.module.css +85 -39
- package/es/ListItem/ListItemWithAvatar.js +3 -3
- package/es/ListItem/ListItemWithIcon.js +2 -2
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +9 -3
- package/es/MultiSelect/MultiSelect.js +9 -3
- package/es/MultiSelect/MultiSelectWithAvatar.js +3 -1
- package/es/MultiSelect/Suggestions.js +8 -4
- package/es/MultiSelect/props/defaultProps.js +9 -3
- package/es/MultiSelect/props/propTypes.js +7 -3
- package/es/PopOver/PopOver.module.css +3 -3
- package/es/Radio/Radio.js +26 -7
- package/es/Radio/Radio.module.css +3 -1
- package/es/Radio/__tests__/__snapshots__/Radio.spec.js.snap +3 -3
- package/es/Radio/props/defaultProps.js +1 -0
- package/es/Radio/props/propTypes.js +7 -0
- package/es/Ribbon/Ribbon.module.css +0 -4
- package/es/Select/GroupSelect.js +9 -3
- package/es/Select/SelectWithAvatar.js +9 -3
- package/es/Select/SelectWithIcon.js +9 -3
- package/es/Select/props/defaultProps.js +6 -3
- package/es/Select/props/propTypes.js +6 -3
- package/es/Switch/Switch.module.css +0 -2
- package/es/Tag/Tag.module.css +0 -6
- package/es/TextBox/TextBox.module.css +1 -21
- package/es/TextBoxIcon/TextBoxIcon.module.css +0 -5
- package/es/Textarea/Textarea.module.css +0 -6
- package/es/common/customscroll.module.css +27 -3
- package/es/v1/Animation/Animation.js +1 -1
- package/es/v1/Card/Card.js +1 -1
- package/es/v1/CheckBox/CheckBox.js +7 -1
- package/es/v1/CheckBox/props/propTypes.js +1 -0
- package/es/v1/DropBox/utils/isMobilePopover.js +1 -1
- package/es/v1/ListItem/ListContainer.js +1 -1
- package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/es/v1/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/es/v1/MultiSelect/MultiSelectWithAvatar.js +1 -1
- package/es/v1/MultiSelect/props/defaultProps.js +5 -3
- package/es/v1/Radio/Radio.js +22 -7
- package/es/v1/Radio/props/defaultProps.js +1 -0
- package/es/v1/Radio/props/propTypes.js +7 -0
- package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/es/v1/Select/GroupSelect.js +1 -1
- package/es/v1/Select/Select.js +1 -1
- package/es/v1/Select/SelectWithAvatar.js +5 -7
- package/es/v1/Select/SelectWithIcon.js +1 -1
- package/es/v1/Select/props/defaultProps.js +1 -1
- package/es/v1/Select/props/propTypes.js +1 -3
- package/es/v1/Tab/Tabs.js +2 -2
- package/es/v1/Tooltip/Tooltip.js +1 -1
- package/lib/Avatar/Avatar.module.css +0 -12
- package/lib/AvatarTeam/AvatarTeam.module.css +0 -4
- package/lib/Button/css/Button.module.css +0 -6
- package/lib/Buttongroup/Buttongroup.module.css +0 -2
- package/lib/CheckBox/CheckBox.js +34 -24
- package/lib/CheckBox/CheckBox.module.css +0 -2
- package/lib/CheckBox/props/propTypes.js +1 -0
- package/lib/DateTime/DateTime.module.css +0 -1
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +0 -7
- package/lib/DropBox/css/DropBox.module.css +0 -1
- package/lib/DropDown/DropDownHeading.module.css +0 -6
- package/lib/DropDown/DropDownItem.module.css +0 -3
- package/lib/Label/Label.module.css +0 -1
- package/lib/ListItem/ListItem.js +2 -2
- package/lib/ListItem/ListItem.module.css +85 -39
- package/lib/ListItem/ListItemWithAvatar.js +3 -3
- package/lib/ListItem/ListItemWithIcon.js +2 -2
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +7 -3
- package/lib/MultiSelect/MultiSelect.js +8 -3
- package/lib/MultiSelect/MultiSelectWithAvatar.js +3 -1
- package/lib/MultiSelect/Suggestions.js +8 -4
- package/lib/MultiSelect/props/defaultProps.js +9 -3
- package/lib/MultiSelect/props/propTypes.js +9 -6
- package/lib/PopOver/PopOver.module.css +3 -3
- package/lib/Radio/Radio.js +45 -26
- package/lib/Radio/Radio.module.css +3 -1
- package/lib/Radio/__tests__/__snapshots__/Radio.spec.js.snap +3 -3
- package/lib/Radio/props/defaultProps.js +1 -0
- package/lib/Radio/props/propTypes.js +7 -0
- package/lib/Ribbon/Ribbon.module.css +0 -4
- package/lib/Select/GroupSelect.js +8 -3
- package/lib/Select/SelectWithAvatar.js +8 -3
- package/lib/Select/SelectWithIcon.js +8 -3
- package/lib/Select/props/defaultProps.js +5 -3
- package/lib/Select/props/propTypes.js +6 -3
- package/lib/Switch/Switch.module.css +0 -2
- package/lib/Tag/Tag.module.css +0 -6
- package/lib/TextBox/TextBox.module.css +1 -21
- package/lib/TextBoxIcon/TextBoxIcon.module.css +0 -5
- package/lib/Textarea/Textarea.module.css +0 -6
- package/lib/common/customscroll.module.css +27 -3
- package/lib/v1/Animation/Animation.js +1 -1
- package/lib/v1/Card/Card.js +1 -1
- package/lib/v1/CheckBox/CheckBox.js +7 -1
- package/lib/v1/CheckBox/props/propTypes.js +1 -0
- package/lib/v1/DropBox/utils/isMobilePopover.js +1 -1
- package/lib/v1/ListItem/ListContainer.js +1 -1
- package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/lib/v1/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/lib/v1/MultiSelect/props/defaultProps.js +5 -3
- package/lib/v1/Radio/Radio.js +22 -7
- package/lib/v1/Radio/props/defaultProps.js +1 -0
- package/lib/v1/Radio/props/propTypes.js +7 -0
- package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/lib/v1/Select/GroupSelect.js +1 -1
- package/lib/v1/Select/Select.js +1 -1
- package/lib/v1/Select/SelectWithAvatar.js +4 -6
- package/lib/v1/Select/SelectWithIcon.js +1 -1
- package/lib/v1/Select/props/defaultProps.js +1 -1
- package/lib/v1/Select/props/propTypes.js +1 -3
- package/lib/v1/Tab/Tabs.js +2 -2
- package/lib/v1/Tooltip/Tooltip.js +1 -1
- package/package.json +10 -10
- package/result.json +1 -1
- package/es/v1/Provider/AvatarSize.js +0 -13
- package/es/v1/Provider/Config.js +0 -18
- package/es/v1/Provider/CssProvider.js +0 -16
- package/es/v1/Provider/IdProvider.js +0 -66
- package/es/v1/Provider/LibraryContext.js +0 -37
- package/es/v1/Provider/LibraryContextInit.js +0 -3
- package/es/v1/Provider/NumberGenerator/NumberGenerator.js +0 -136
- package/es/v1/Provider/ZindexProvider.js +0 -57
- package/es/v1/Provider/index.js +0 -4
- package/es/v1/Responsive/CustomResponsive.js +0 -195
- package/es/v1/Responsive/RefWrapper.js +0 -39
- package/es/v1/Responsive/ResizeComponent.js +0 -197
- package/es/v1/Responsive/ResizeObserver.js +0 -140
- package/es/v1/Responsive/Responsive.js +0 -194
- package/es/v1/Responsive/index.js +0 -9
- package/es/v1/Responsive/props/defaultProps.js +0 -13
- package/es/v1/Responsive/props/propTypes.js +0 -25
- package/lib/v1/Provider/AvatarSize.js +0 -24
- package/lib/v1/Provider/Config.js +0 -27
- package/lib/v1/Provider/CssProvider.js +0 -27
- package/lib/v1/Provider/IdProvider.js +0 -79
- package/lib/v1/Provider/LibraryContext.js +0 -76
- package/lib/v1/Provider/LibraryContextInit.js +0 -15
- package/lib/v1/Provider/NumberGenerator/NumberGenerator.js +0 -174
- package/lib/v1/Provider/ZindexProvider.js +0 -69
- package/lib/v1/Provider/index.js +0 -81
- package/lib/v1/Responsive/CustomResponsive.js +0 -242
- package/lib/v1/Responsive/RefWrapper.js +0 -57
- package/lib/v1/Responsive/ResizeComponent.js +0 -268
- package/lib/v1/Responsive/ResizeObserver.js +0 -168
- package/lib/v1/Responsive/Responsive.js +0 -274
- package/lib/v1/Responsive/index.js +0 -55
- package/lib/v1/Responsive/props/defaultProps.js +0 -23
- package/lib/v1/Responsive/props/propTypes.js +0 -39
|
@@ -37,7 +37,7 @@ var _IdProvider = require("../../Provider/IdProvider");
|
|
|
37
37
|
|
|
38
38
|
var _ResponsiveDropBox = _interopRequireDefault(require("../ResponsiveDropBox/ResponsiveDropBox"));
|
|
39
39
|
|
|
40
|
-
var _CustomResponsive = require("
|
|
40
|
+
var _CustomResponsive = require("../../Responsive/CustomResponsive");
|
|
41
41
|
|
|
42
42
|
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
43
43
|
|
|
@@ -208,9 +208,7 @@ var SelectWithAvatarComponent = /*#__PURE__*/function (_SelectComponent) {
|
|
|
208
208
|
htmlId = _this$props.htmlId,
|
|
209
209
|
needEffect = _this$props.needEffect,
|
|
210
210
|
isLoading = _this$props.isLoading,
|
|
211
|
-
dataSelectorId = _this$props.dataSelectorId
|
|
212
|
-
getHeader = _this$props.getHeader,
|
|
213
|
-
getFooter = _this$props.getFooter;
|
|
211
|
+
dataSelectorId = _this$props.dataSelectorId;
|
|
214
212
|
i18nKeys = Object.assign({}, i18nKeys, {
|
|
215
213
|
emptyText: i18nKeys.emptyText || emptyMessage,
|
|
216
214
|
searchEmptyText: i18nKeys.searchEmptyText || searchEmptyMessage
|
|
@@ -343,7 +341,7 @@ var SelectWithAvatarComponent = /*#__PURE__*/function (_SelectComponent) {
|
|
|
343
341
|
a11y: {
|
|
344
342
|
role: 'heading'
|
|
345
343
|
}
|
|
346
|
-
})) : null,
|
|
344
|
+
})) : null, suggestions.length ? /*#__PURE__*/_react["default"].createElement(_Suggestions["default"], {
|
|
347
345
|
activeId: selectedId,
|
|
348
346
|
suggestions: suggestions,
|
|
349
347
|
getRef: _this2.suggestionItemRef,
|
|
@@ -370,7 +368,7 @@ var SelectWithAvatarComponent = /*#__PURE__*/function (_SelectComponent) {
|
|
|
370
368
|
}), isFetchingOptions && /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
371
369
|
isCover: false,
|
|
372
370
|
align: "both"
|
|
373
|
-
}, /*#__PURE__*/_react["default"].createElement(_Loader["default"], null)))
|
|
371
|
+
}, /*#__PURE__*/_react["default"].createElement(_Loader["default"], null))))));
|
|
374
372
|
}) : null);
|
|
375
373
|
}
|
|
376
374
|
}]);
|
|
@@ -31,7 +31,7 @@ var _IdProvider = require("../../Provider/IdProvider");
|
|
|
31
31
|
|
|
32
32
|
var _ResponsiveDropBox = _interopRequireDefault(require("../ResponsiveDropBox/ResponsiveDropBox"));
|
|
33
33
|
|
|
34
|
-
var _CustomResponsive = require("
|
|
34
|
+
var _CustomResponsive = require("../../Responsive/CustomResponsive");
|
|
35
35
|
|
|
36
36
|
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
37
37
|
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.Select_defaultProps = exports.SelectWithIcon_defaultProps = exports.SelectWithAvatar_defaultProps = exports.GroupSelect_defaultProps = void 0;
|
|
7
7
|
|
|
8
|
-
var _Config = require("
|
|
8
|
+
var _Config = require("../../../Provider/Config");
|
|
9
9
|
|
|
10
10
|
var _SelectWithIcon_defau;
|
|
11
11
|
|
|
@@ -249,9 +249,7 @@ var SelectWithAvatar_propTypes = _objectSpread(_objectSpread({}, Select_propType
|
|
|
249
249
|
htmlId: _propTypes["default"].string,
|
|
250
250
|
needEffect: _propTypes["default"].bool,
|
|
251
251
|
isLoading: _propTypes["default"].bool,
|
|
252
|
-
dataSelectorId: _propTypes["default"].string
|
|
253
|
-
getFooter: _propTypes["default"].func,
|
|
254
|
-
getHeader: _propTypes["default"].func
|
|
252
|
+
dataSelectorId: _propTypes["default"].string
|
|
255
253
|
});
|
|
256
254
|
|
|
257
255
|
exports.SelectWithAvatar_propTypes = SelectWithAvatar_propTypes;
|
package/lib/v1/Tab/Tabs.js
CHANGED
|
@@ -21,7 +21,7 @@ var _Common = require("../../utils/Common");
|
|
|
21
21
|
|
|
22
22
|
var _Layout = require("../Layout");
|
|
23
23
|
|
|
24
|
-
var _ResizeObserver = _interopRequireDefault(require("
|
|
24
|
+
var _ResizeObserver = _interopRequireDefault(require("../../Responsive/ResizeObserver"));
|
|
25
25
|
|
|
26
26
|
var _ListItem = _interopRequireDefault(require("../ListItem/ListItem"));
|
|
27
27
|
|
|
@@ -33,7 +33,7 @@ var _Popup = _interopRequireDefault(require("../Popup/Popup"));
|
|
|
33
33
|
|
|
34
34
|
var _ResponsiveDropBox = _interopRequireDefault(require("../ResponsiveDropBox/ResponsiveDropBox"));
|
|
35
35
|
|
|
36
|
-
var _CustomResponsive = require("
|
|
36
|
+
var _CustomResponsive = require("../../Responsive/CustomResponsive");
|
|
37
37
|
|
|
38
38
|
var _semanticButtonModule = _interopRequireDefault(require("../../semantic/Button/semanticButton.module.css"));
|
|
39
39
|
|
|
@@ -17,7 +17,7 @@ var _Config = require("../../Provider/Config");
|
|
|
17
17
|
|
|
18
18
|
var _TooltipModule = _interopRequireDefault(require("../../Tooltip/Tooltip.module.css"));
|
|
19
19
|
|
|
20
|
-
var _ResizeObserver = _interopRequireDefault(require("
|
|
20
|
+
var _ResizeObserver = _interopRequireDefault(require("../../Responsive/ResizeObserver"));
|
|
21
21
|
|
|
22
22
|
var _selectn = _interopRequireDefault(require("selectn"));
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/components",
|
|
3
|
-
"version": "1.0.0-temp-
|
|
3
|
+
"version": "1.0.0-temp-192",
|
|
4
4
|
"main": "es/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -65,13 +65,13 @@
|
|
|
65
65
|
"@testing-library/user-event": "^13.0.10",
|
|
66
66
|
"@zohodesk-private/color-variable-preprocessor": "1.2.0",
|
|
67
67
|
"@zohodesk-private/css-variable-migrator": "^1.0.7",
|
|
68
|
-
"@zohodesk-private/node-plugins": "1.1.
|
|
68
|
+
"@zohodesk-private/node-plugins": "1.1.8",
|
|
69
69
|
"@zohodesk-private/react-prop-validator": "1.2.3",
|
|
70
|
-
"@zohodesk/a11y": "2.2.
|
|
70
|
+
"@zohodesk/a11y": "2.2.1",
|
|
71
71
|
"@zohodesk/docstool": "1.0.0-alpha-2",
|
|
72
|
-
"@zohodesk/hooks": "2.0.
|
|
73
|
-
"@zohodesk/icons": "1.0.
|
|
74
|
-
"@zohodesk/svg": "1.1.
|
|
72
|
+
"@zohodesk/hooks": "2.0.4",
|
|
73
|
+
"@zohodesk/icons": "1.0.41",
|
|
74
|
+
"@zohodesk/svg": "1.1.14",
|
|
75
75
|
"@zohodesk/utils": "1.3.13",
|
|
76
76
|
"@zohodesk/variables": "1.0.0",
|
|
77
77
|
"@zohodesk/virtualizer": "1.0.3",
|
|
@@ -85,14 +85,14 @@
|
|
|
85
85
|
"selectn": "1.1.2"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
|
-
"@zohodesk/icons": "1.0.
|
|
88
|
+
"@zohodesk/icons": "1.0.41",
|
|
89
89
|
"@zohodesk/variables": "1.0.0",
|
|
90
|
-
"@zohodesk/svg": "1.1.
|
|
90
|
+
"@zohodesk/svg": "1.1.14",
|
|
91
91
|
"@zohodesk/virtualizer": "1.0.3",
|
|
92
92
|
"velocity-react": "1.4.3",
|
|
93
93
|
"react-sortable-hoc": "^0.8.3",
|
|
94
|
-
"@zohodesk/hooks": "2.0.
|
|
94
|
+
"@zohodesk/hooks": "2.0.4",
|
|
95
95
|
"@zohodesk/utils": "1.3.13",
|
|
96
|
-
"@zohodesk/a11y": "2.2.
|
|
96
|
+
"@zohodesk/a11y": "2.2.1"
|
|
97
97
|
}
|
|
98
98
|
}
|
package/result.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"jobDetails":{"isRunByLocal":true,"hostName":"muthu-zt371","platForm":"Darwin","branchName":"KaruppiahRK"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":218,"numberOfFails":0,"numberOfCases":218,"numberOfSuites":10,"endTime":1713366692507,"startTime":1713366686658,"coverageDetail":{"codeCoveragePercentage":91.98,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-zt371/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/MuthuReact_Library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}}]}}}
|
|
1
|
+
{"jobDetails":{"isRunByLocal":true,"hostName":"muthu-19990","platForm":"Darwin","branchName":"Amutha_ListItemWrappingCase"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":218,"numberOfFails":0,"numberOfCases":218,"numberOfSuites":10,"endTime":1718340485223,"startTime":1718340479619,"coverageDetail":{"codeCoveragePercentage":92.36,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the type of- title","rendering the type of- subtitle","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- danger","rendering the palette of- mandatory","rendering the palette of- disable","rendering the palette of- dark","rendering the size of- xsmall","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the clipped is true","rendering the title","rendering the variant of- primary","rendering the variant of- default","rendering the customClass","rendering the Id","rendering the htmlFor","rendering the onClick prop with asFragment and toMatchSnapshot"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/RippleEffect/__tests__/RippleEffect.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true","rendering isDisabled is true","rendering the palette of- default","rendering the palette of- primary","rendering the palette of- primaryLight","rendering the palette of- primaryFilled","rendering the palette of- primaryDark","rendering the palette of- green","rendering the palette of- danger","rendering hoverType of- default","rendering hoverType of- border","rendering hoverType of- bg","rendering hoverType of- test","rendering isNeedEffect is false","rendering needBorder is false","rendering isCopyTextEnabled is false"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- default","rendering the shape of- circle","rendering the shape of- square","rendering the size of- xxsmall","rendering the size of- small","rendering the size of- xsmall","rendering the size of- medium","rendering the size of- xmedium","rendering the size of- large","rendering the size of- xlarge","rendering the size of- white","rendering the size of- black","rendering src","rendering Name in 2 Word","rendering title","rendering needTitle","rendering initial","rendering NeedBorder false","rendering BorderOnActive true","rendering borderOnHover true","rendering customClass true","rendering alternateSrc","rendering showAlternateAvatar is enabled border get disabled","rendering isAnimate is false","rendering needInnerBorder is true","rendering showDefaultBorder is true","rendering the Custom props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Switch/__tests__/Switch.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the checked","rendering the dataId","rendering the disabled and disableTitle","rendering the text","rendering the ID","rendering the isReadOnly","rendering the size of- small","rendering the size of- medium","rendering the labelSize of- small","rendering the labelSize of- medium","rendering the labelSize of- large","rendering the labelSize of- default","rendering the labelSize of- primary","rendering the labelSize of- secondary","rendering the labelSize of- danger","rendering the labelSize of- mandatory","rendering the Name","rendering the Title","rendering the Value","rendering the CustomClass","rendering the CustomProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the Props of Avatar","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the sizes of- xxsmall","rendering the sizes of- small","rendering the sizes of- xsmall","rendering the sizes of- medium","rendering the sizes of- xmedium","rendering the sizes of- large","rendering the sizes of- xlarge","rendering the textPalette of- white","rendering the textPalette of- black","rendering borderOnActive","rendering border is true","rendering the onClick prop with asFragment and toMatchSnapshot","rendering the palette with isFilled of- primary","rendering the palette with isFilled of- secondary","rendering the palette with isFilled of- info","rendering CustomClass - customAvatar","rendering CustomClass - customAvatarTeam","rendering customProps - AvatarTeamProps","rendering customProps - AvatarProps"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Radio/__tests__/Radio.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the ID","rendering the Name","rendering the Value","rendering palette - primary","rendering palette - danger","rendering the Checked is true","rendering the disabled is true","rendering the isReadOnly is true","rendering the disabledTitle","rendering the title","rendering the text","rendering labelPalette - default","rendering labelPalette - primary","rendering labelPalette - danger","rendering labelPalette - mandatory","rendering size - small","rendering size - medium","rendering labelSize - small","rendering labelSize - medium","rendering labelSize - large","rendering labelSize - primary","rendering labelSize - default","rendering the active is true - primary","rendering the active is true - danger","rendering the isFilled is false","rendering the customClass of customRadioWrap,customRadio,customLabel ","rendering ally ariaChecked true","rendering ally ariaHidden , ariaChecked, ariaReadonly fasle true","rendering ally ariaHidden , ariaChecked, ariaReadonly is false","rendering the accessMode when isReadOnly ","rendering the accessMode when disabled ","eleRef prop is a function","renders with different onClick props"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- default","rendering the palette of- danger","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- info","rendering the palette of- dark","rendering the type - default","rendering the type - flag","rendering the type - plain","rendering the type - ribbon","rendering the type - box","rendering the type - stamp","rendering the type - sticker","rendering the type - tag","rendering children ","rendering the size - small","rendering the size - medium","rendering the size - large","rendering the size - xlarge","rendering the customClass"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/muthu-19990/REACT/Library/desk-library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- secondary","rendering the palette of- dark","rendering the shape of- rect","rendering the shape of- circle","rendering the size of- small","rendering the size of- medium","rendering the size of- large","rendering the size of- default","rendering the customClass"],"failedCaseList":[]}}]}}}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import style from '../../common/avatarsizes.module.css';
|
|
2
|
-
let styleList = {
|
|
3
|
-
small: style.small,
|
|
4
|
-
xsmall: style.xsmall,
|
|
5
|
-
xxsmall: style.xxsmall,
|
|
6
|
-
medium: style.medium,
|
|
7
|
-
xmedium: style.xmedium,
|
|
8
|
-
large: style.large,
|
|
9
|
-
xlarge: style.xlarge
|
|
10
|
-
};
|
|
11
|
-
export default function CssProvider(name) {
|
|
12
|
-
return styleList[name] || '';
|
|
13
|
-
}
|
package/es/v1/Provider/Config.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
let id = {
|
|
2
|
-
mobileWidth: 640,
|
|
3
|
-
zindexCounter: 3,
|
|
4
|
-
idCounter: 0,
|
|
5
|
-
idPrefix: 'ZD',
|
|
6
|
-
scrollFetchLimit: 80,
|
|
7
|
-
isReducedMotion: false,
|
|
8
|
-
direction: 'ltr',
|
|
9
|
-
tooltipDebounce: 175,
|
|
10
|
-
getTooltipContainer: () => {},
|
|
11
|
-
autoComplete: false
|
|
12
|
-
};
|
|
13
|
-
export function getLibraryConfig(key) {
|
|
14
|
-
return id[key];
|
|
15
|
-
}
|
|
16
|
-
export function setLibraryConfig(configObj) {
|
|
17
|
-
id = Object.assign({}, id, configObj);
|
|
18
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import style from '../../common/common.module.css';
|
|
2
|
-
let styleList = {
|
|
3
|
-
hide: style.hide,
|
|
4
|
-
isDisabled: style.disabled,
|
|
5
|
-
isDisable: style.disable,
|
|
6
|
-
isBlock: style.blockEvent,
|
|
7
|
-
isFlexible: style.flexgrow,
|
|
8
|
-
dotted: style.dotted,
|
|
9
|
-
vMiddle: style.yMiddle,
|
|
10
|
-
hMiddle: style.xMiddle,
|
|
11
|
-
smooth: style.ftsmooth,
|
|
12
|
-
clamp: style.clamp
|
|
13
|
-
};
|
|
14
|
-
export default function CssProvider(name) {
|
|
15
|
-
return styleList[name] || '';
|
|
16
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { useNumberGenerator, getNumberGenerators } from './NumberGenerator/NumberGenerator';
|
|
2
|
-
import { getLibraryConfig } from './Config';
|
|
3
|
-
let globalId = getLibraryConfig('idCounter'),
|
|
4
|
-
deletedIndexes = [],
|
|
5
|
-
globalPrefix;
|
|
6
|
-
export function setGlobalIdPrefix(value) {
|
|
7
|
-
globalPrefix = value;
|
|
8
|
-
}
|
|
9
|
-
export function removeGlobalIdPrefix() {
|
|
10
|
-
globalPrefix = undefined;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
function getGlobalIdPrefix() {
|
|
14
|
-
return globalPrefix;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
function setGlobalId(id) {
|
|
18
|
-
globalId = id;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
function getGlobalId() {
|
|
22
|
-
return globalId;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
function setDeletedIndexes(array) {
|
|
26
|
-
deletedIndexes = array;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
function getDeletedIndexes() {
|
|
30
|
-
return deletedIndexes;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
function callback(_ref) {
|
|
34
|
-
let {
|
|
35
|
-
globalId,
|
|
36
|
-
deletedIndexes
|
|
37
|
-
} = _ref;
|
|
38
|
-
setGlobalId(globalId);
|
|
39
|
-
setDeletedIndexes(deletedIndexes);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export function useUniqueId(prefix) {
|
|
43
|
-
return useNumberGenerator({
|
|
44
|
-
getGlobalId,
|
|
45
|
-
prefix,
|
|
46
|
-
getGlobalPrefix: getGlobalIdPrefix,
|
|
47
|
-
getDeletedIndexes,
|
|
48
|
-
callback
|
|
49
|
-
});
|
|
50
|
-
}
|
|
51
|
-
export function getUniqueId(Component, prefix) {
|
|
52
|
-
return getNumberGenerators({
|
|
53
|
-
Component,
|
|
54
|
-
prefix,
|
|
55
|
-
getGlobalPrefix: getGlobalIdPrefix,
|
|
56
|
-
getGlobalId,
|
|
57
|
-
getDeletedIndexes,
|
|
58
|
-
callback
|
|
59
|
-
});
|
|
60
|
-
} // let Provider = {
|
|
61
|
-
// docs: {
|
|
62
|
-
// componentGroup: 'Provider',
|
|
63
|
-
// folderName: 'Functions'
|
|
64
|
-
// }
|
|
65
|
-
// };
|
|
66
|
-
// export { Provider };
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import React, { useState, useEffect } from 'react';
|
|
2
|
-
import PropTypes from 'prop-types';
|
|
3
|
-
import LibraryContextInit from './LibraryContextInit';
|
|
4
|
-
import { getLibraryConfig } from './Config';
|
|
5
|
-
|
|
6
|
-
const LibraryContextProvider = _ref => {
|
|
7
|
-
let {
|
|
8
|
-
isReducedMotion = getLibraryConfig('isReducedMotion'),
|
|
9
|
-
direction = getLibraryConfig('direction'),
|
|
10
|
-
children
|
|
11
|
-
} = _ref;
|
|
12
|
-
const [value, setValue] = useState({
|
|
13
|
-
isReducedMotion,
|
|
14
|
-
direction
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
function setGlobalContext(key, data) {
|
|
18
|
-
if (value[key] != data) {
|
|
19
|
-
setValue({ ...value,
|
|
20
|
-
[key]: data
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
return /*#__PURE__*/React.createElement(LibraryContextInit.Provider, {
|
|
26
|
-
value: { ...value,
|
|
27
|
-
setGlobalContext
|
|
28
|
-
}
|
|
29
|
-
}, children);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
LibraryContextProvider.propTypes = {
|
|
33
|
-
children: PropTypes.node.isRequired,
|
|
34
|
-
isReducedMotion: PropTypes.bool,
|
|
35
|
-
direction: PropTypes.string
|
|
36
|
-
};
|
|
37
|
-
export default LibraryContextProvider;
|