@zohodesk/dot 1.0.0-temp-213 → 1.0.0-temp-214

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/.cli/propValidation_report.html +1 -1
  2. package/README.md +8 -0
  3. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +1 -1
  4. package/assets/Appearance/light/mode/Dot_LightMode.module.css +1 -1
  5. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +1 -1
  6. package/es/Attachment/Attachment.module.css +7 -3
  7. package/es/AttachmentViewer/Attachment.js +106 -1
  8. package/es/AttachmentViewer/AttachmentViewer.js +114 -28
  9. package/es/AttachmentViewer/AttachmentViewer.module.css +32 -9
  10. package/es/AttachmentViewer/props/defaultProps.js +1 -1
  11. package/es/AttachmentViewer/props/propTypes.js +9 -1
  12. package/es/AttachmentViewer/utils.js +98 -13
  13. package/es/form/fields/CheckBoxField/CheckBoxField.js +7 -9
  14. package/es/form/fields/CurrencyField/CurrencyField.js +5 -5
  15. package/es/form/fields/DateField/DateField.js +7 -8
  16. package/es/form/fields/Fields.module.css +3 -0
  17. package/es/form/fields/MultiSelectField/MultiSelectField.js +5 -6
  18. package/es/form/fields/RadioField/RadioField.js +1 -1
  19. package/es/form/fields/SelectField/SelectField.js +5 -6
  20. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +6 -8
  21. package/es/form/fields/TextBoxField/TextBoxField.js +7 -7
  22. package/es/form/fields/TextareaField/TextareaField.js +6 -6
  23. package/es/lookup/Lookup/Lookup.js +2 -1
  24. package/es/lookup/Lookup/Lookup.module.css +6 -1
  25. package/es/lookup/Lookup/props/propTypes.js +1 -0
  26. package/es/utils/General.js +23 -1
  27. package/lib/Attachment/Attachment.module.css +7 -3
  28. package/lib/AttachmentViewer/Attachment.js +109 -1
  29. package/lib/AttachmentViewer/AttachmentViewer.js +121 -25
  30. package/lib/AttachmentViewer/AttachmentViewer.module.css +32 -9
  31. package/lib/AttachmentViewer/props/defaultProps.js +1 -1
  32. package/lib/AttachmentViewer/props/propTypes.js +9 -1
  33. package/lib/AttachmentViewer/utils.js +102 -8
  34. package/lib/form/fields/CheckBoxField/CheckBoxField.js +7 -10
  35. package/lib/form/fields/CurrencyField/CurrencyField.js +4 -5
  36. package/lib/form/fields/DateField/DateField.js +6 -9
  37. package/lib/form/fields/Fields.module.css +3 -0
  38. package/lib/form/fields/MultiSelectField/MultiSelectField.js +5 -7
  39. package/lib/form/fields/RadioField/RadioField.js +1 -1
  40. package/lib/form/fields/SelectField/SelectField.js +5 -7
  41. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +5 -8
  42. package/lib/form/fields/TextBoxField/TextBoxField.js +6 -8
  43. package/lib/form/fields/TextareaField/TextareaField.js +5 -6
  44. package/lib/lookup/Lookup/Lookup.js +2 -1
  45. package/lib/lookup/Lookup/Lookup.module.css +6 -1
  46. package/lib/lookup/Lookup/props/propTypes.js +1 -0
  47. package/lib/utils/General.js +25 -1
  48. package/package.json +9 -11
  49. package/result.json +1 -0
  50. package/unittest/index.html +37 -0
  51. package/es/common/dot_common.module.css +0 -4
  52. package/lib/common/dot_common.module.css +0 -4
@@ -182,7 +182,7 @@ var RadioField = /*#__PURE__*/function (_PureComponent) {
182
182
  customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
183
183
  dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
184
184
  }, LabelProps)), /*#__PURE__*/_react["default"].createElement("div", {
185
- className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(isBoxStyle ? _FieldsModule["default"].radiosWrapper : '', " ").concat(labelName ? _FieldsModule["default"].fieldMargin_medium : '', " ").concat(_FieldsModule["default"].radioContainer)
185
+ className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(isBoxStyle ? _FieldsModule["default"].radiosWrapper : '', " ").concat(labelName ? isBoxStyle ? _FieldsModule["default"].fieldMargin_large : _FieldsModule["default"].fieldMargin_medium : '', " ").concat(_FieldsModule["default"].radioContainer)
186
186
  }, options.map(function (option, index) {
187
187
  var text = option.text,
188
188
  value = option.value,
@@ -13,7 +13,7 @@ var _defaultProps = require("./props/defaultProps");
13
13
 
14
14
  var _propTypes = require("./props/propTypes");
15
15
 
16
- var _Label = _interopRequireDefault(require("@zohodesk/components/lib/Label/Label"));
16
+ var _Label = _interopRequireDefault(require("@zohodesk/components/es/v1/Label/Label"));
17
17
 
18
18
  var _Select = _interopRequireDefault(require("@zohodesk/components/lib/Select/Select"));
19
19
 
@@ -166,13 +166,11 @@ var SelectField = /*#__PURE__*/function (_PureComponent) {
166
166
  renderProps: renderLabelProps
167
167
  }, /*#__PURE__*/_react["default"].createElement(_Label["default"], _extends({
168
168
  text: labelName,
169
- size: fieldSize === 'small' ? 'small' : 'medium',
170
- palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
171
- customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(labelCustomClass, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
172
- htmlFor: uniqueId,
173
- dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
169
+ isRequired: isMandatory,
170
+ htmlFor: uniqueId
174
171
  }, LabelProps, {
175
- id: uniqueId
172
+ testId: uniqueId,
173
+ customId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
176
174
  }))), /*#__PURE__*/_react["default"].createElement("div", {
177
175
  className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"]["fieldMargin_".concat(fieldSize)] : '', " ").concat(fieldClass ? fieldClass : '')
178
176
  }, /*#__PURE__*/_react["default"].createElement(_Select["default"], _extends({
@@ -15,7 +15,7 @@ var _propTypes = require("./props/propTypes");
15
15
 
16
16
  var _Layout = require("@zohodesk/components/lib/Layout");
17
17
 
18
- var _Label = _interopRequireDefault(require("@zohodesk/components/lib/Label/Label"));
18
+ var _Label = _interopRequireDefault(require("@zohodesk/components/es/v1/Label/Label"));
19
19
 
20
20
  var _Popup = _interopRequireDefault(require("@zohodesk/components/lib/Popup/Popup"));
21
21
 
@@ -247,13 +247,10 @@ var TagsMultiSelectField = function TagsMultiSelectField(props) {
247
247
  }
248
248
  }, /*#__PURE__*/_react["default"].createElement(_Label["default"], _extends({
249
249
  text: labelName,
250
- title: labelName,
251
- id: id,
252
- size: labelSize,
253
- palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
254
- customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : '', " ").concat(labelClass ? labelClass : ''),
255
- dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label"),
256
- htmlFor: htmlId
250
+ isRequired: isMandatory,
251
+ htmlFor: htmlId,
252
+ testId: id,
253
+ customId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
257
254
  }, LabelProps)), selectedValueCount ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
258
255
  dataId: "".concat(dataId, "_tagCount"),
259
256
  className: _TagsMultiSelectFieldModule["default"].count
@@ -13,7 +13,7 @@ var _defaultProps = require("./props/defaultProps");
13
13
 
14
14
  var _propTypes = require("./props/propTypes");
15
15
 
16
- var _Label = _interopRequireDefault(require("@zohodesk/components/lib/Label/Label"));
16
+ var _Label = _interopRequireDefault(require("@zohodesk/components/es/v1/Label/Label"));
17
17
 
18
18
  var _TextBoxIcon = _interopRequireDefault(require("@zohodesk/components/lib/TextBoxIcon/TextBoxIcon"));
19
19
 
@@ -156,14 +156,12 @@ var TextBoxField = /*#__PURE__*/function (_PureComponent) {
156
156
  renderProps: renderLabelProps
157
157
  }, /*#__PURE__*/_react["default"].createElement(_Label["default"], _extends({
158
158
  text: labelName,
159
- size: fieldSize === 'small' ? 'small' : 'medium',
160
- palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
161
- customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(labelCustomClass, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
159
+ isRequired: isMandatory,
160
+ customStyle: labelCustomClass,
161
+ testId: labelName,
162
162
  htmlFor: uniqueId,
163
- dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
164
- }, LabelProps, {
165
- id: labelName
166
- }))), /*#__PURE__*/_react["default"].createElement("div", {
163
+ customId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
164
+ }, LabelProps))), /*#__PURE__*/_react["default"].createElement("div", {
167
165
  className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"]["fieldMargin_".concat(fieldSize)] : '')
168
166
  }, /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], _extends({
169
167
  htmlId: uniqueId,
@@ -13,7 +13,7 @@ var _defaultProps = require("./props/defaultProps");
13
13
 
14
14
  var _propTypes = require("./props/propTypes");
15
15
 
16
- var _Label = _interopRequireDefault(require("@zohodesk/components/lib/Label/Label"));
16
+ var _Label = _interopRequireDefault(require("@zohodesk/components/es/v1/Label/Label"));
17
17
 
18
18
  var _Textarea = _interopRequireDefault(require("@zohodesk/components/lib/Textarea/Textarea"));
19
19
 
@@ -185,12 +185,11 @@ var TextareaField = /*#__PURE__*/function (_PureComponent) {
185
185
  renderProps: renderLabelProps
186
186
  }, /*#__PURE__*/_react["default"].createElement(_Label["default"], _extends({
187
187
  text: labelName,
188
- id: id,
189
- size: fieldSize === 'small' ? 'small' : 'medium',
190
- palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
191
- customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(labelCustomClass, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
188
+ isRequired: isMandatory,
189
+ customStyle: labelCustomClass,
190
+ testId: id,
192
191
  htmlFor: uniqueId,
193
- dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
192
+ customId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
194
193
  }, LabelProps))), /*#__PURE__*/_react["default"].createElement("div", {
195
194
  className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"]["fieldMargin_".concat(fieldSize)] : '')
196
195
  }, !renderRightPlaceholderNode ? textAreaContent : /*#__PURE__*/_react["default"].createElement("div", {
@@ -110,6 +110,7 @@ var Lookup = /*#__PURE__*/function (_Component) {
110
110
  needFocusScope = _this$props.needFocusScope,
111
111
  customProps = _this$props.customProps,
112
112
  isMinHeight = _this$props.isMinHeight,
113
+ containerClass = _this$props.containerClass,
113
114
  lookupClass = _this$props.lookupClass;
114
115
 
115
116
  var _a11y$role = a11y.role,
@@ -150,7 +151,7 @@ var Lookup = /*#__PURE__*/function (_Component) {
150
151
  }, a11yAttributes), /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
151
152
  "data-drag-container": "true",
152
153
  isCover: false,
153
- className: isMinHeight ? "".concat(_LookupModule["default"].wrapper) : "".concat(_LookupModule["default"].coverwrap)
154
+ className: "".concat(isMinHeight ? _LookupModule["default"].wrapper : _LookupModule["default"].coverwrap, " ").concat(_LookupModule["default"].containerWidth, " ").concat(containerClass)
154
155
  }, children));
155
156
 
156
157
  return /*#__PURE__*/_react["default"].createElement(_FreezeLayer["default"], {
@@ -19,6 +19,10 @@
19
19
  margin: auto ;
20
20
  }
21
21
 
22
+ .containerWidth {
23
+ width: 100% ;
24
+ }
25
+
22
26
  /* Size */
23
27
  .smallSize {
24
28
  max-width: var(--zd_size470) ;
@@ -35,10 +39,11 @@
35
39
  .largeSize {
36
40
  max-width: 70% ;
37
41
  }
42
+
38
43
  .xlargeSize {
39
44
  max-width: 80% ;
40
45
  }
41
46
 
42
47
  .fullSize {
43
48
  max-width: 90% ;
44
- }
49
+ }
@@ -30,6 +30,7 @@ var propTypes = {
30
30
  onClick: _propTypes["default"].func,
31
31
  onClose: _propTypes["default"].func,
32
32
  isMinHeight: _propTypes["default"].bool,
33
+ containerClass: _propTypes["default"].string,
33
34
  lookupClass: _propTypes["default"].string
34
35
  };
35
36
  exports.propTypes = propTypes;
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.DUMMY_OBJECT = void 0;
7
7
  exports.formatPhoneUrl = formatPhoneUrl;
8
+ exports.getBrowserWithVersion = getBrowserWithVersion;
8
9
  exports.getFullName = getFullName;
9
10
  exports.shallowDiff = shallowDiff;
10
11
  exports.stopBubbling = stopBubbling;
@@ -59,4 +60,27 @@ function formatPhoneUrl(phone) {
59
60
  }
60
61
 
61
62
  var DUMMY_OBJECT = Object.freeze({});
62
- exports.DUMMY_OBJECT = DUMMY_OBJECT;
63
+ exports.DUMMY_OBJECT = DUMMY_OBJECT;
64
+
65
+ function getBrowserWithVersion() {
66
+ var userAgent = navigator.userAgent;
67
+ var tempMatch;
68
+ var browserMatch = userAgent.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*([\d\.]+)/i) || [];
69
+
70
+ if (userAgent.toLowerCase().indexOf('edge') !== -1) {
71
+ return userAgent.substring(userAgent.toLowerCase().indexOf('edge'));
72
+ }
73
+
74
+ if (/trident/i.test(browserMatch[1])) {
75
+ tempMatch = /\brv[ :]+(\d+(\.\d+)?)/g.exec(userAgent) || [];
76
+ return "IE ".concat(tempMatch[1] || '');
77
+ }
78
+
79
+ browserMatch = browserMatch[2] ? [browserMatch[1], browserMatch[2]] : [navigator.appName, navigator.appVersion, '-?'];
80
+
81
+ if ((tempMatch = userAgent.match(/version\/([\.\d]+)/i)) !== null) {
82
+ browserMatch[2] = tempMatch[1];
83
+ }
84
+
85
+ return browserMatch.join(' ');
86
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.0.0-temp-213",
3
+ "version": "1.0.0-temp-214",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -62,33 +62,31 @@
62
62
  "@zohodesk-private/css-variable-migrator": "1.0.9",
63
63
  "@zohodesk-private/node-plugins": "1.1.8",
64
64
  "@zohodesk-private/react-prop-validator": "1.2.3",
65
- "@zohodesk/a11y": "2.3.6",
66
- "@zohodesk/components": "1.0.0-temp-231",
65
+ "@zohodesk/a11y": "2.3.7",
66
+ "@zohodesk/components": "1.0.0-temp-232",
67
67
  "@zohodesk/hooks": "2.0.5",
68
68
  "@zohodesk/icons": "1.1.0",
69
69
  "@zohodesk/layout": "^3.1.0",
70
- "@zohodesk/svg": "1.2.1",
70
+ "@zohodesk/svg": "1.2.2",
71
71
  "@zohodesk/utils": "1.3.14",
72
72
  "@zohodesk/variables": "1.1.0",
73
73
  "@zohodesk/virtualizer": "1.0.3",
74
74
  "react-sortable-hoc": "^0.8.3",
75
75
  "velocity-react": "1.4.3",
76
- "@zohodesk/dotkit": "1.0.3"
76
+ "@zohodesk/dotkit": "1.0.3",
77
+ "@zohodesk/react-cli": "1.1.27"
77
78
  },
78
79
  "peerDependencies": {
79
80
  "velocity-react": "1.4.3",
80
81
  "@zohodesk/variables": "1.1.0",
81
- "@zohodesk/components": "1.0.0-temp-231",
82
+ "@zohodesk/components": "1.0.0-temp-232",
82
83
  "@zohodesk/icons": "1.1.0",
83
- "@zohodesk/svg": "1.2.1",
84
+ "@zohodesk/svg": "1.2.2",
84
85
  "@zohodesk/virtualizer": "1.0.3",
85
86
  "react-sortable-hoc": "^0.8.3",
86
87
  "@zohodesk/hooks": "2.0.5",
87
88
  "@zohodesk/utils": "1.3.14",
88
- "@zohodesk/a11y": "2.3.6",
89
+ "@zohodesk/a11y": "2.3.7",
89
90
  "@zohodesk/layout": "3.1.0"
90
- },
91
- "dependencies": {
92
- "@zohodesk/react-cli": "^1.1.27"
93
91
  }
94
92
  }
package/result.json ADDED
@@ -0,0 +1 @@
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"karuppiah-19823","platForm":"Darwin","branchName":"DeskLib"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":50,"numberOfFails":0,"numberOfCases":50,"numberOfSuites":1,"endTime":1752666297494,"startTime":1752666292434,"coverageDetail":{"codeCoveragePercentage":100,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/DeskLib/jsapps/dot/dot/src/DotProvider/__tests__/DotProvider.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the default attributes, styles and modified the tag props","rendering the providerRef props","rendering the additional ...rest props","rendering the wrong themeAppearance and themeColor","rendering the theme-appearance of light along with theme-color of blue","rendering the theme-appearance of light along with theme-color of green","rendering the theme-appearance of light along with theme-color of orange","rendering the theme-appearance of light along with theme-color of red","rendering the theme-appearance of light along with theme-color of yellow","rendering the theme-appearance of dark along with theme-color of blue","rendering the theme-appearance of dark along with theme-color of green","rendering the theme-appearance of dark along with theme-color of orange","rendering the theme-appearance of dark along with theme-color of red","rendering the theme-appearance of dark along with theme-color of yellow","rendering the theme-appearance of pureDark along with theme-color of blue","rendering the theme-appearance of pureDark along with theme-color of green","rendering the theme-appearance of pureDark along with theme-color of orange","rendering the theme-appearance of pureDark along with theme-color of red","rendering the theme-appearance of pureDark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of yellow","rendering the baseZoomUnit props of 0.5","rendering the baseZoomUnit props of 0.8","rendering the baseZoomUnit props of 1","rendering the baseZoomUnit props of 1.2","rendering the baseFontUnit props of 1px","rendering the baseFontUnit props of 1rem","rendering the baseFontUnit props of 1em","rendering the baseFontUnit props of 1","rendering the zoomUnitVariable prop along with baseZoomUnit props","rendering the fontUnitVariable prop along with baseFontUnit props","rendering the ref function type props","rendering the onAssetsDownloadSuccess props","rendering the getAssetsPromises props"],"failedCaseList":["rendering the default attributes, styles and modifying the tag prop to React.Fragment","rendering the ref object type props"]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/DeskLib/jsapps/dot/dot/src/DotProvider/__tests__/DotProvider.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the default attributes, styles and modified the tag props","rendering the default attributes, styles and modifying the tag prop to React.Fragment","rendering the providerRef props","rendering the additional ...rest props","rendering the wrong themeAppearance and themeColor","rendering the theme-appearance of light along with theme-color of blue","rendering the theme-appearance of light along with theme-color of green","rendering the theme-appearance of light along with theme-color of orange","rendering the theme-appearance of light along with theme-color of red","rendering the theme-appearance of light along with theme-color of yellow","rendering the theme-appearance of dark along with theme-color of blue","rendering the theme-appearance of dark along with theme-color of green","rendering the theme-appearance of dark along with theme-color of orange","rendering the theme-appearance of dark along with theme-color of red","rendering the theme-appearance of dark along with theme-color of yellow","rendering the theme-appearance of pureDark along with theme-color of blue","rendering the theme-appearance of pureDark along with theme-color of green","rendering the theme-appearance of pureDark along with theme-color of orange","rendering the theme-appearance of pureDark along with theme-color of red","rendering the theme-appearance of pureDark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of yellow","rendering the baseZoomUnit props of 0.5","rendering the baseZoomUnit props of 0.8","rendering the baseZoomUnit props of 1","rendering the baseZoomUnit props of 1.2","rendering the baseFontUnit props of 1px","rendering the baseFontUnit props of 1rem","rendering the baseFontUnit props of 1em","rendering the baseFontUnit props of 1","rendering the zoomUnitVariable prop along with baseZoomUnit props","rendering the fontUnitVariable prop along with baseFontUnit props","rendering the ref function type props","rendering the onAssetsDownloadSuccess props","rendering the getAssetsPromises props"],"failedCaseList":["rendering the ref object type props"]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/DeskLib/jsapps/dot/dot/src/DotProvider/__tests__/DotProvider.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["rendering the default props","rendering the default attributes, styles and modified the tag props","rendering the default attributes, styles and modifying the tag prop to React.Fragment","rendering the providerRef props","rendering the additional ...rest props","rendering the wrong themeAppearance and themeColor","rendering the theme-appearance of light along with theme-color of blue","rendering the theme-appearance of light along with theme-color of green","rendering the theme-appearance of light along with theme-color of orange","rendering the theme-appearance of light along with theme-color of red","rendering the theme-appearance of light along with theme-color of yellow","rendering the theme-appearance of dark along with theme-color of blue","rendering the theme-appearance of dark along with theme-color of green","rendering the theme-appearance of dark along with theme-color of orange","rendering the theme-appearance of dark along with theme-color of red","rendering the theme-appearance of dark along with theme-color of yellow","rendering the theme-appearance of pureDark along with theme-color of blue","rendering the theme-appearance of pureDark along with theme-color of green","rendering the theme-appearance of pureDark along with theme-color of orange","rendering the theme-appearance of pureDark along with theme-color of red","rendering the theme-appearance of pureDark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of yellow","rendering the baseZoomUnit props of 0.5","rendering the baseZoomUnit props of 0.8","rendering the baseZoomUnit props of 1","rendering the baseZoomUnit props of 1.2","rendering the baseFontUnit props of 1px","rendering the baseFontUnit props of 1rem","rendering the baseFontUnit props of 1em","rendering the baseFontUnit props of 1","rendering the zoomUnitVariable prop along with baseZoomUnit props","rendering the fontUnitVariable prop along with baseFontUnit props","rendering the ref function type props","rendering the ref object type props","rendering the onAssetsDownloadSuccess props","rendering the getAssetsPromises props"]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/DeskLib/jsapps/dot/dot/src/DotProvider/__tests__/DotProvider.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the default attributes, styles and modified the tag props","rendering the providerRef props","rendering the additional ...rest props","rendering the wrong themeAppearance and themeColor","rendering the theme-appearance of light along with theme-color of blue","rendering the theme-appearance of light along with theme-color of green","rendering the theme-appearance of light along with theme-color of orange","rendering the theme-appearance of light along with theme-color of red","rendering the theme-appearance of light along with theme-color of yellow","rendering the theme-appearance of dark along with theme-color of blue","rendering the theme-appearance of dark along with theme-color of green","rendering the theme-appearance of dark along with theme-color of orange","rendering the theme-appearance of dark along with theme-color of red","rendering the theme-appearance of dark along with theme-color of yellow","rendering the theme-appearance of pureDark along with theme-color of blue","rendering the theme-appearance of pureDark along with theme-color of green","rendering the theme-appearance of pureDark along with theme-color of orange","rendering the theme-appearance of pureDark along with theme-color of red","rendering the theme-appearance of pureDark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of yellow","rendering the baseZoomUnit props of 0.5","rendering the baseZoomUnit props of 0.8","rendering the baseZoomUnit props of 1","rendering the baseZoomUnit props of 1.2","rendering the baseFontUnit props of 1px","rendering the baseFontUnit props of 1rem","rendering the baseFontUnit props of 1em","rendering the baseFontUnit props of 1","rendering the zoomUnitVariable prop along with baseZoomUnit props","rendering the fontUnitVariable prop along with baseFontUnit props","rendering the ref function type props","rendering the ref object type props","rendering the onAssetsDownloadSuccess props","rendering the getAssetsPromises props"],"failedCaseList":["rendering the default attributes, styles and modifying the tag prop to React.Fragment"]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/DeskLib/jsapps/dot/dot/src/DotProvider/__tests__/DotProvider.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the default attributes, styles and modified the tag props","rendering the default attributes, styles and modifying the tag prop to React.Fragment","rendering the providerRef props","rendering the additional ...rest props","rendering the wrong themeAppearance and themeColor","rendering the theme-appearance of light along with theme-color of blue","rendering the theme-appearance of light along with theme-color of green","rendering the theme-appearance of light along with theme-color of orange","rendering the theme-appearance of light along with theme-color of red","rendering the theme-appearance of light along with theme-color of yellow","rendering the theme-appearance of dark along with theme-color of blue","rendering the theme-appearance of dark along with theme-color of green","rendering the theme-appearance of dark along with theme-color of orange","rendering the theme-appearance of dark along with theme-color of red","rendering the theme-appearance of dark along with theme-color of yellow","rendering the theme-appearance of pureDark along with theme-color of blue","rendering the theme-appearance of pureDark along with theme-color of green","rendering the theme-appearance of pureDark along with theme-color of orange","rendering the theme-appearance of pureDark along with theme-color of red","rendering the theme-appearance of pureDark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of yellow","rendering the baseZoomUnit props of 0.5","rendering the baseZoomUnit props of 0.8","rendering the baseZoomUnit props of 1","rendering the baseZoomUnit props of 1.2","rendering the baseFontUnit props of 1px","rendering the baseFontUnit props of 1rem","rendering the baseFontUnit props of 1em","rendering the baseFontUnit props of 1","rendering the zoomUnitVariable prop along with baseZoomUnit props","rendering the fontUnitVariable prop along with baseFontUnit props","rendering the ref function type props","rendering the ref object type props","rendering the onAssetsDownloadSuccess props","rendering the getAssetsPromises props"],"failedCaseList":[]}}]}}}
@@ -0,0 +1,37 @@
1
+ <html>
2
+ <head>
3
+ <style>
4
+ .red{
5
+ font-weight:bold;
6
+ color:red;
7
+ }
8
+ .green{
9
+ font-weight:bold;
10
+ color:green;
11
+ }
12
+ table
13
+ {
14
+ font-family: arial, sans-serif;
15
+ border-collapse: collapse;
16
+ }
17
+
18
+ td, th
19
+ {
20
+ border: 1px solid #dddddd;
21
+ padding: 8px;
22
+ }
23
+ </style>
24
+ </head>
25
+ <body>
26
+ <table>
27
+ <tr>
28
+ <th>Title</th>
29
+ <th>FullName</th>
30
+ <th>Test Case Path</th>
31
+ </tr>
32
+
33
+ </table>
34
+ <br/>COVERAGE <span class="green">100%</span> <br/> less than 60% consider failure
35
+ </body>
36
+ </html>
37
+
@@ -1,4 +0,0 @@
1
- .audioImage {
2
- background-image: url('../../images/audio_thumbnail.png');
3
- background-repeat: no-repeat;
4
- }
@@ -1,4 +0,0 @@
1
- .audioImage {
2
- background-image: url('../../images/audio_thumbnail.png');
3
- background-repeat: no-repeat;
4
- }