@zohodesk/dot 1.4.0 → 1.4.2

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.
Files changed (155) hide show
  1. package/.cli/AppearanceThemeValidationExcludeFiles.js +1 -0
  2. package/.cli/PropLessFiles.html +1 -1
  3. package/.cli/PropUnificationExcludeFilesArray.js +345 -0
  4. package/.cli/PropValidationExcludeFilesArray.js +8 -1
  5. package/.cli/propValidation_report.html +24 -2
  6. package/README.md +12 -0
  7. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +3 -0
  8. package/assets/Appearance/light/mode/Dot_LightMode.module.css +3 -0
  9. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +3 -0
  10. package/coverage/ExternalLink/ExternalLink.js.html +1 -1
  11. package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
  12. package/coverage/ExternalLink/index.html +1 -1
  13. package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
  14. package/coverage/ExternalLink/props/index.html +1 -1
  15. package/coverage/ExternalLink/props/propTypes.js.html +1 -1
  16. package/coverage/IconButton/IconButton.js.html +1 -1
  17. package/coverage/IconButton/IconButton.module.css.html +5 -2
  18. package/coverage/IconButton/index.html +1 -1
  19. package/coverage/IconButton/props/defaultProps.js.html +1 -1
  20. package/coverage/IconButton/props/index.html +1 -1
  21. package/coverage/IconButton/props/propTypes.js.html +1 -1
  22. package/coverage/Image/Image.js.html +1 -1
  23. package/coverage/Image/Image.module.css.html +1 -1
  24. package/coverage/Image/index.html +1 -1
  25. package/coverage/Image/props/defaultProps.js.html +1 -1
  26. package/coverage/Image/props/index.html +1 -1
  27. package/coverage/Image/props/propTypes.js.html +1 -1
  28. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
  29. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
  30. package/coverage/avatar/AvatarWithTeam/index.html +1 -1
  31. package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
  32. package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
  33. package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
  34. package/coverage/coverage-final.json +16 -16
  35. package/coverage/coverage-summary.json +16 -16
  36. package/coverage/index.html +1 -1
  37. package/es/ActionButton/ActionButton.js +10 -1
  38. package/es/ActionButton/ActionButton.module.css +7 -0
  39. package/es/ActionButton/props/propTypes.js +2 -1
  40. package/es/AlphabeticList/AlphabeticList.module.css +2 -0
  41. package/es/AttachmentViewer/AttachmentViewer.module.css +2 -0
  42. package/es/ChannelIcon/ChannelIcon.module.css +4 -0
  43. package/es/Drawer/Drawer.js +2 -5
  44. package/es/FormAction/FormAction.module.css +2 -0
  45. package/es/IconButton/IconButton.module.css +1 -0
  46. package/es/Link/Link.js +1 -2
  47. package/es/Provider/Config.js +2 -1
  48. package/es/TagWithIcon/TagWithIcon.module.css +19 -5
  49. package/es/avatar/AvatarIcon/AvatarIcon.module.css +6 -0
  50. package/es/avatar/AvatarStatus/AvatarStatus.js +0 -1
  51. package/es/emptystate/CommonEmptyState/CommonEmptyState.module.css +4 -0
  52. package/es/form/fields/ValidationMessage/ValidationMessage.module.css +1 -0
  53. package/es/layout/SubtabLayout/SubtabLayout.module.css +2 -0
  54. package/es/list/Comment/Comment.module.css +1 -0
  55. package/es/list/Dot/Dot.module.css +1 -0
  56. package/es/list/ListLayout/ListLayout.js +1 -1
  57. package/es/list/ListLayout/ListLayout.module.css +12 -0
  58. package/es/list/Subject/Subject.module.css +1 -0
  59. package/es/list/Thread/Thread.module.css +1 -0
  60. package/es/list/status/StatusDropdown/StatusDropdown.js +6 -6
  61. package/es/lookup/Lookup/Lookup.js +1 -1
  62. package/es/setup/header/Search/Search.module.css +1 -0
  63. package/es/setup/table/TableRow/SetupTableRow.module.css +3 -2
  64. package/es/v1/ActionButton/ActionButton.js +7 -2
  65. package/es/v1/Drawer/Drawer.js +2 -5
  66. package/es/v1/Link/Link.js +1 -2
  67. package/es/v1/avatar/AvatarStatus/AvatarStatus.js +0 -1
  68. package/es/v1/list/ListLayout/ListLayout.js +1 -1
  69. package/es/v1/list/status/StatusDropdown/StatusDropdown.js +6 -6
  70. package/es/v1/lookup/Lookup/Lookup.js +1 -1
  71. package/es/v1/notification/DesktopNotification/DesktopNotification.js +79 -55
  72. package/es/v1/notification/DesktopNotification/props/defaultProps.js +3 -1
  73. package/es/v1/notification/DesktopNotification/props/propTypes.js +2 -1
  74. package/es/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +59 -23
  75. package/es/v1/notification/DesktopNotificationHeader/props/defaultProps.js +3 -1
  76. package/es/v1/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  77. package/es/v1/setup/header/Button/Button.js +17 -29
  78. package/es/v1/setup/header/Link/Link.js +23 -35
  79. package/es/v1/setup/header/Search/Search.js +43 -69
  80. package/es/v1/setup/header/Views/Views.js +27 -39
  81. package/es/v1/setup/helptips/Description/Description.js +8 -20
  82. package/es/v1/setup/helptips/Link/Link.js +20 -32
  83. package/es/v1/setup/helptips/ListGroup/ListGroup.js +18 -30
  84. package/es/v1/setup/helptips/Title/Title.js +8 -20
  85. package/es/version2/GlobalNotification/GlobalNotification.module.css +3 -0
  86. package/es/version2/lookup/AlertHeader/css/AlertHeaderNew.module.css +1 -0
  87. package/es/version2/notification/DesktopNotification/DesktopNotification.js +78 -55
  88. package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +10 -4
  89. package/es/version2/notification/DesktopNotification/props/defaultProps.js +3 -1
  90. package/es/version2/notification/DesktopNotification/props/propTypes.js +2 -1
  91. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +59 -23
  92. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +14 -17
  93. package/es/version2/notification/DesktopNotificationHeader/props/defaultProps.js +3 -1
  94. package/es/version2/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  95. package/lib/ActionButton/ActionButton.js +41 -32
  96. package/lib/ActionButton/ActionButton.module.css +7 -0
  97. package/lib/ActionButton/props/propTypes.js +2 -1
  98. package/lib/AlphabeticList/AlphabeticList.module.css +2 -0
  99. package/lib/AttachmentViewer/AttachmentViewer.module.css +2 -0
  100. package/lib/ChannelIcon/ChannelIcon.module.css +4 -0
  101. package/lib/Drawer/Drawer.js +2 -5
  102. package/lib/FormAction/FormAction.module.css +2 -0
  103. package/lib/IconButton/IconButton.module.css +1 -0
  104. package/lib/Link/Link.js +1 -2
  105. package/lib/Provider/Config.js +2 -1
  106. package/lib/TagWithIcon/TagWithIcon.module.css +19 -5
  107. package/lib/avatar/AvatarIcon/AvatarIcon.module.css +6 -0
  108. package/lib/avatar/AvatarStatus/AvatarStatus.js +0 -1
  109. package/lib/emptystate/CommonEmptyState/CommonEmptyState.module.css +4 -0
  110. package/lib/form/fields/ValidationMessage/ValidationMessage.module.css +1 -0
  111. package/lib/layout/SubtabLayout/SubtabLayout.module.css +2 -0
  112. package/lib/list/Comment/Comment.module.css +1 -0
  113. package/lib/list/Dot/Dot.module.css +1 -0
  114. package/lib/list/ListLayout/ListLayout.js +1 -1
  115. package/lib/list/ListLayout/ListLayout.module.css +12 -0
  116. package/lib/list/Subject/Subject.module.css +1 -0
  117. package/lib/list/Thread/Thread.module.css +1 -0
  118. package/lib/list/status/StatusDropdown/StatusDropdown.js +6 -6
  119. package/lib/lookup/Lookup/Lookup.js +1 -1
  120. package/lib/setup/header/Search/Search.module.css +1 -0
  121. package/lib/setup/table/TableRow/SetupTableRow.module.css +3 -2
  122. package/lib/v1/ActionButton/ActionButton.js +7 -2
  123. package/lib/v1/Drawer/Drawer.js +2 -5
  124. package/lib/v1/Link/Link.js +1 -2
  125. package/lib/v1/avatar/AvatarStatus/AvatarStatus.js +0 -1
  126. package/lib/v1/list/ListLayout/ListLayout.js +1 -1
  127. package/lib/v1/list/status/StatusDropdown/StatusDropdown.js +6 -6
  128. package/lib/v1/lookup/Lookup/Lookup.js +1 -1
  129. package/lib/v1/notification/DesktopNotification/DesktopNotification.js +74 -55
  130. package/lib/v1/notification/DesktopNotification/props/defaultProps.js +5 -1
  131. package/lib/v1/notification/DesktopNotification/props/propTypes.js +2 -1
  132. package/lib/v1/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +57 -23
  133. package/lib/v1/notification/DesktopNotificationHeader/props/defaultProps.js +5 -1
  134. package/lib/v1/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  135. package/lib/v1/setup/header/Button/Button.js +17 -63
  136. package/lib/v1/setup/header/Link/Link.js +23 -69
  137. package/lib/v1/setup/header/Search/Search.js +57 -89
  138. package/lib/v1/setup/header/Views/Views.js +27 -73
  139. package/lib/v1/setup/helptips/Description/Description.js +8 -53
  140. package/lib/v1/setup/helptips/Link/Link.js +23 -69
  141. package/lib/v1/setup/helptips/ListGroup/ListGroup.js +26 -72
  142. package/lib/v1/setup/helptips/Title/Title.js +8 -53
  143. package/lib/version2/GlobalNotification/GlobalNotification.module.css +3 -0
  144. package/lib/version2/lookup/AlertHeader/css/AlertHeaderNew.module.css +1 -0
  145. package/lib/version2/notification/DesktopNotification/DesktopNotification.js +74 -55
  146. package/lib/version2/notification/DesktopNotification/DesktopNotification.module.css +10 -4
  147. package/lib/version2/notification/DesktopNotification/props/defaultProps.js +5 -1
  148. package/lib/version2/notification/DesktopNotification/props/propTypes.js +2 -1
  149. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +57 -23
  150. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +14 -17
  151. package/lib/version2/notification/DesktopNotificationHeader/props/defaultProps.js +5 -1
  152. package/lib/version2/notification/DesktopNotificationHeader/props/propTypes.js +2 -1
  153. package/package.json +15 -13
  154. package/propValidationArg.json +8 -0
  155. package/result.json +1 -1
@@ -5,32 +5,29 @@
5
5
  composes: varClass;
6
6
  min-height: var(--zd_size54) ;
7
7
  position: relative;
8
+ /* css:theme-validation:ignore */
9
+ /* css:theme-validation:ignore */
8
10
  color: var(--zdt_desktopnotification_text);
9
11
  background-color: var(--alert_lookup_bg_color);
10
12
  border-style: solid;
11
13
  border-color: var(--commonalert_border_color);
12
14
  border-width: 2px 0 0 0;
13
15
  }
14
-
16
+
15
17
  .title {
16
- font-size: var(--zd_font_size18) ;
17
- line-height: var(--zd_size22);
18
- font-family: var(--zd_bold);
19
- composes: ftsmooth wbreak from '~@zohodesk/components/lib/common/common.module.css';
18
+ composes: ftsmooth from '~@zohodesk/components/lib/common/common.module.css';
20
19
  }
21
-
20
+
22
21
  [dir=ltr] .title {
23
22
  margin: 0 var(--zd_size5) 0 var(--zd_size10) ;
24
23
  }
25
-
24
+
26
25
  [dir=rtl] .title {
27
26
  margin: 0 var(--zd_size10) 0 var(--zd_size5) ;
28
27
  }
29
28
 
30
29
  .infoText {
31
- font-size: var(--zd_font_size14) ;
32
30
  max-width: 100% ;
33
- composes: wbreak from '~@zohodesk/components/lib/common/common.module.css';
34
31
  }
35
32
 
36
33
  /* Palette */
@@ -38,19 +35,19 @@
38
35
  .success {
39
36
  --commonalert_border_color: var(--zdt_commonalert_success_border);
40
37
  }
41
-
38
+
42
39
  .info,.notification,.alarm {
43
40
  --commonalert_border_color: var(--zdt_commonalert_info_border);
44
41
  }
45
-
42
+
46
43
  .danger {
47
44
  --commonalert_border_color: var(--zdt_commonalert_danger_border);
48
45
  }
49
-
46
+
50
47
  .error {
51
48
  --commonalert_border_color: var(--zdt_commonalert_error_border);
52
49
  }
53
-
50
+
54
51
  .warning {
55
52
  --commonalert_border_color: var(--zdt_commonalert_warning_border);
56
53
  }
@@ -72,16 +69,16 @@
72
69
  .primary .infoText {
73
70
  line-height: var(--zd_size18);
74
71
  }
75
-
72
+
76
73
  .primary .close {
77
74
  position: absolute;
78
75
  top: var(--zd_size12) ;
79
76
  }
80
-
77
+
81
78
  [dir=ltr] .primary .close {
82
79
  right: var(--zd_size12) ;
83
80
  }
84
-
81
+
85
82
  [dir=rtl] .primary .close {
86
83
  left: var(--zd_size12) ;
87
84
  }
@@ -134,4 +131,4 @@
134
131
  [dir=rtl] .secondary .close {
135
132
  left: var(--zd_size12) ;
136
133
  margin: auto var(--zd_size25) auto 0 ;
137
- }
134
+ }
@@ -4,9 +4,13 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.defaultProps = void 0;
7
+
8
+ var _Config = require("../../../../Provider/Config");
9
+
7
10
  var defaultProps = {
8
11
  needIcon: true,
9
12
  variant: 'primary',
10
- needClose: true
13
+ needClose: true,
14
+ responsiveId: (0, _Config.getDotLibraryConfig)('desktopNotificationResponsiveId')
11
15
  };
12
16
  exports.defaultProps = defaultProps;
@@ -17,6 +17,7 @@ var propTypes = {
17
17
  onClose: _propTypes["default"].func,
18
18
  title: _propTypes["default"].string,
19
19
  type: _propTypes["default"].oneOf(['success', 'error', 'danger', 'warning', 'info', 'notification', 'alarm']),
20
- variant: _propTypes["default"].oneOf(['primary', 'secondary'])
20
+ variant: _propTypes["default"].oneOf(['primary', 'secondary']),
21
+ responsiveId: _propTypes["default"].string
21
22
  };
22
23
  exports.propTypes = propTypes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -21,22 +21,22 @@
21
21
  "dubCheck": "node ./node_modules/@zohodesk-private/node-plugins/es/dublication_css_file_finder node_modules/@zohodesk/components/lib node_modules/@zohodesk/icons/lib node_modules/@zohodesk/variables/lib",
22
22
  "build:lib": "react-cli build:component:cmjs",
23
23
  "build:es": "react-cli build:library:es",
24
- "build": "npm run build:lib && npm run build:es",
24
+ "build": "npm run theme:validate && npm run build:lib && npm run build:es",
25
25
  "build:local": " npm run build && npm run rtl && npm run cssVariableConvert ",
26
26
  "build:watch": "npm run build:variables && npm run build && npm run build:es --module:mode=dev -- -w",
27
27
  "rtl:watch": "react-cli rtl ./src ./es -w",
28
28
  "rtl": "react-cli rtl ./src ./lib && react-cli rtl ./src ./es",
29
29
  "prepare": "react-cli clean assets && npm run init && npm run build && npm run rtl && npm run cssVariableConvert ",
30
30
  "init": "npm run clean && npm run build:variables",
31
- "build:variables": "node ./preprocess/index",
31
+ "build:variables": "react-cli clean ./assets && node ./preprocess/index",
32
32
  "lint": "react-cli lint",
33
33
  "lintAll": "react-cli lint ./src",
34
34
  "lintAllFix": "npm run lintAll --eslint:fix=true",
35
35
  "test": "react-cli test",
36
36
  "sstest": "react-cli sstest",
37
37
  "common_package_build": "cd ../common && npm run build && cd ../dot",
38
- "docs": "npm run dubCheck && review:props && react-cli docs",
39
- "prepublishOnly": "node prePublish.js && npm run download && npm run test && npm run review:props",
38
+ "docs": "npm run dubCheck && npm run theme:validate && review:props && react-cli docs",
39
+ "prepublishOnly": "node prePublish.js && npm run download && npm run test && npm run theme:validate && npm run review:props",
40
40
  "postpublish": "node postPublish.js",
41
41
  "download": "react-cli clean ./node_modules ./package-lock.json && npm install",
42
42
  "expublish": "npm publish --tag experimental-version",
@@ -44,17 +44,19 @@
44
44
  "variable:addignore": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableIgnore.js ./src",
45
45
  "variable:convert": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/pxParserPostcss.js ./src",
46
46
  "variable:check": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableErrorCheck.js ./src ./node_modules/@zohodesk-private/css-variable-migrator/es/config/cssVariableReplacementOptions.json",
47
- "review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js ./src/ ./.cli ./.cli "
47
+ "theme:validate": "node ./node_modules/@zohodesk-private/node-plugins/es/appearance_theme_validation validate ./src ./.cli",
48
+ "theme:addignore": "node ./node_modules/@zohodesk-private/node-plugins/es/appearance_theme_validation addignore ./src ./.cli",
49
+ "review:props": "node ./node_modules/@zohodesk-private/react-prop-validator/es/propValidation.js propValidationArg.json"
48
50
  },
49
51
  "devDependencies": {
50
52
  "@zohodesk-private/css-variable-migrator": "^1.0.7",
51
- "@zohodesk-private/node-plugins": "^1.0.0",
53
+ "@zohodesk-private/node-plugins": "1.1.1",
52
54
  "@zohodesk-private/color-variable-preprocessor": "1.1.0",
53
- "@zohodesk-private/react-prop-validator": "1.1.0",
54
- "@zohodesk/components": "1.2.16",
55
- "@zohodesk/a11y": "2.1.0",
55
+ "@zohodesk-private/react-prop-validator": "1.2.0",
56
+ "@zohodesk/components": "1.2.20",
57
+ "@zohodesk/a11y": "2.1.1",
56
58
  "@zohodesk/icons": "1.0.19",
57
- "@zohodesk/svg": "1.1.6",
59
+ "@zohodesk/svg": "1.1.8",
58
60
  "@zohodesk/variables": "1.0.0",
59
61
  "@zohodesk/virtualizer": "1.0.3",
60
62
  "react-sortable-hoc": "^0.8.3",
@@ -69,9 +71,9 @@
69
71
  "peerDependencies": {
70
72
  "velocity-react": "1.4.3",
71
73
  "@zohodesk/variables": "1.0.0",
72
- "@zohodesk/components": "1.2.16",
74
+ "@zohodesk/components": "1.2.19",
73
75
  "@zohodesk/icons": "1.0.19",
74
- "@zohodesk/svg": "1.1.6",
76
+ "@zohodesk/svg": "1.1.8",
75
77
  "@zohodesk/virtualizer": "1.0.3",
76
78
  "react-sortable-hoc": "^0.8.3",
77
79
  "@zohodesk/hooks": "2.0.2",
@@ -0,0 +1,8 @@
1
+ {
2
+ "inputDir": "./src",
3
+ "outputDir": "./.cli",
4
+ "excludeDir":"./.cli",
5
+ "propUnifiExcludeDir":"./.cli",
6
+ "propUnifiReport":"propUnifi",
7
+ "strictMode":""
8
+ }
package/result.json CHANGED
@@ -1 +1 @@
1
- {"jobDetails":{"isRunByLocal":true,"hostName":"prakash-zt376","platForm":"Darwin","branchName":"setuplayouts_components"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":4,"endTime":1700896825140,"startTime":1700896820975,"coverageDetail":{"codeCoveragePercentage":84.23,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/prakash-zt376/Works/React/CodeReviewLibrary/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/prakash-zt376/Works/React/CodeReviewLibrary/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/prakash-zt376/Works/React/CodeReviewLibrary/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/prakash-zt376/Works/React/CodeReviewLibrary/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}}]}}}
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"lakshmi-zt257","platForm":"Darwin","branchName":"LibraryNavigation"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":4,"endTime":1702392925722,"startTime":1702392920224,"coverageDetail":{"codeCoveragePercentage":84.23,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/lakshmi-zt257/Documents/Git/Library/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}}]}}}