@zohodesk/components 1.2.2 → 1.2.3
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/PropValidationExcludeFilesArray.js +1 -1
- package/.cli/propValidation_report.html +1 -1
- package/README.md +6 -0
- package/assets/Appearance/dark/mode/Component_DarkMode.module.css +1 -0
- package/assets/Appearance/light/mode/Component_LightMode.module.css +1 -0
- package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +1 -0
- package/coverage/Button/Button.js.html +1 -1
- package/coverage/Button/css/Button.module.css.html +1 -1
- package/coverage/Button/css/cssJSLogic.js.html +1 -1
- package/coverage/Button/css/index.html +1 -1
- package/coverage/Button/index.html +1 -1
- package/coverage/Button/props/defaultProps.js.html +1 -1
- package/coverage/Button/props/index.html +1 -1
- package/coverage/Button/props/propTypes.js.html +9 -3
- package/coverage/Buttongroup/Buttongroup.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
- package/coverage/Buttongroup/index.html +1 -1
- package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
- package/coverage/Buttongroup/props/index.html +1 -1
- package/coverage/Buttongroup/props/propTypes.js.html +1 -1
- package/coverage/coverage-final.json +10 -10
- package/coverage/coverage-summary.json +10 -10
- package/coverage/index.html +1 -1
- package/coverage/utils/dummyFunction.js.html +1 -1
- package/coverage/utils/index.html +1 -1
- package/es/Button/props/propTypes.js +3 -1
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +2 -3
- package/es/MultiSelect/AdvancedMultiSelect.js +2 -3
- package/es/MultiSelect/MobileHeader/MobileHeader.js +50 -0
- package/es/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
- package/es/MultiSelect/MobileHeader/props/defaultProps.js +7 -0
- package/es/MultiSelect/MobileHeader/props/propTypes.js +7 -0
- package/es/MultiSelect/MultiSelect.js +112 -91
- package/es/MultiSelect/MultiSelect.module.css +2 -5
- package/es/MultiSelect/MultiSelectHeader.js +1 -2
- package/es/MultiSelect/MultiSelectWithAvatar.js +14 -112
- package/es/MultiSelect/props/defaultProps.js +3 -1
- package/es/MultiSelect/props/propTypes.js +9 -57
- package/es/deprecated/PortalLayer/props/propTypes.js +3 -1
- package/lib/Button/props/propTypes.js +3 -1
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +2 -3
- package/lib/MultiSelect/AdvancedMultiSelect.js +2 -3
- package/lib/MultiSelect/MobileHeader/MobileHeader.js +62 -0
- package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
- package/lib/MultiSelect/MobileHeader/props/defaultProps.js +14 -0
- package/lib/MultiSelect/MobileHeader/props/propTypes.js +18 -0
- package/lib/MultiSelect/MultiSelect.js +116 -96
- package/lib/MultiSelect/MultiSelect.module.css +2 -5
- package/lib/MultiSelect/MultiSelectHeader.js +1 -2
- package/lib/MultiSelect/MultiSelectWithAvatar.js +17 -113
- package/lib/MultiSelect/props/defaultProps.js +3 -1
- package/lib/MultiSelect/props/propTypes.js +19 -60
- package/lib/deprecated/PortalLayer/props/propTypes.js +3 -1
- package/package.json +9 -9
- package/result.json +1 -1
|
@@ -55,11 +55,10 @@ var MultiSelectHeader = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
55
55
|
value: function render() {
|
|
56
56
|
var _this$props = this.props,
|
|
57
57
|
dataId = _this$props.dataId,
|
|
58
|
-
needSelectAll = _this$props.needSelectAll,
|
|
59
58
|
onSelect = _this$props.onSelect,
|
|
60
59
|
selectAllText = _this$props.selectAllText,
|
|
61
60
|
suggestions = _this$props.suggestions;
|
|
62
|
-
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, suggestions.length > 1
|
|
61
|
+
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, suggestions.length > 1 ? /*#__PURE__*/_react["default"].createElement(_ListItemWithIcon["default"], {
|
|
63
62
|
autoHover: false,
|
|
64
63
|
value: selectAllText,
|
|
65
64
|
iconName: "ZD-androidd",
|
|
@@ -13,24 +13,20 @@ var _propTypes = require("./props/propTypes");
|
|
|
13
13
|
|
|
14
14
|
var _defaultProps = require("./props/defaultProps");
|
|
15
15
|
|
|
16
|
+
var _defaultProps2 = require("./MobileHeader/props/defaultProps");
|
|
17
|
+
|
|
16
18
|
var _MultiSelect = require("./MultiSelect");
|
|
17
19
|
|
|
18
20
|
var _Popup = _interopRequireDefault(require("../Popup/Popup"));
|
|
19
21
|
|
|
20
|
-
var _TextBoxIcon = _interopRequireDefault(require("../TextBoxIcon/TextBoxIcon"));
|
|
21
|
-
|
|
22
22
|
var _Layout = require("../Layout");
|
|
23
23
|
|
|
24
24
|
var _Card = _interopRequireWildcard(require("../Card/Card"));
|
|
25
25
|
|
|
26
|
-
var _SelectedOptions = _interopRequireDefault(require("./SelectedOptions"));
|
|
27
|
-
|
|
28
26
|
var _Suggestions = _interopRequireDefault(require("./Suggestions"));
|
|
29
27
|
|
|
30
28
|
var _EmptyState = _interopRequireDefault(require("./EmptyState"));
|
|
31
29
|
|
|
32
|
-
var _MultiSelectHeader = _interopRequireDefault(require("./MultiSelectHeader"));
|
|
33
|
-
|
|
34
30
|
var _CssProvider = _interopRequireDefault(require("../Provider/CssProvider"));
|
|
35
31
|
|
|
36
32
|
var _IdProvider = require("../Provider/IdProvider");
|
|
@@ -41,10 +37,12 @@ var _CustomResponsive = require("../Responsive/CustomResponsive");
|
|
|
41
37
|
|
|
42
38
|
var _Loader = _interopRequireDefault(require("@zohodesk/svg/lib/Loader/Loader"));
|
|
43
39
|
|
|
44
|
-
var
|
|
40
|
+
var _MultiSelectHeader = _interopRequireDefault(require("./MultiSelectHeader"));
|
|
45
41
|
|
|
46
42
|
var _MultiSelectModule = _interopRequireDefault(require("./MultiSelect.module.css"));
|
|
47
43
|
|
|
44
|
+
var _MobileHeader = _interopRequireDefault(require("./MobileHeader/MobileHeader"));
|
|
45
|
+
|
|
48
46
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
49
47
|
|
|
50
48
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
@@ -133,7 +131,6 @@ var MultiSelectWithAvatarComponent = /*#__PURE__*/function (_MultiSelectComponen
|
|
|
133
131
|
emptyMessage = _this$props.emptyMessage,
|
|
134
132
|
noMoreOptionsMessage = _this$props.noMoreOptionsMessage,
|
|
135
133
|
dropBoxSize = _this$props.dropBoxSize,
|
|
136
|
-
placeHolder = _this$props.placeHolder,
|
|
137
134
|
isPopupOpen = _this$props.isPopupOpen,
|
|
138
135
|
isPopupReady = _this$props.isPopupReady,
|
|
139
136
|
position = _this$props.position,
|
|
@@ -143,39 +140,23 @@ var MultiSelectWithAvatarComponent = /*#__PURE__*/function (_MultiSelectComponen
|
|
|
143
140
|
removeClose = _this$props.removeClose,
|
|
144
141
|
isAnimate = _this$props.isAnimate,
|
|
145
142
|
animationStyle = _this$props.animationStyle,
|
|
146
|
-
textBoxSize = _this$props.textBoxSize,
|
|
147
|
-
variant = _this$props.variant,
|
|
148
|
-
size = _this$props.size,
|
|
149
143
|
isDisabled = _this$props.isDisabled,
|
|
150
144
|
title = _this$props.title,
|
|
151
145
|
dataId = _this$props.dataId,
|
|
152
146
|
dataSelectorId = _this$props.dataSelectorId,
|
|
153
147
|
needResponsive = _this$props.needResponsive,
|
|
154
148
|
borderColor = _this$props.borderColor,
|
|
155
|
-
textBoxClass = _this$props.textBoxClass,
|
|
156
|
-
needBorder = _this$props.needBorder,
|
|
157
149
|
disableAction = _this$props.disableAction,
|
|
158
150
|
palette = _this$props.palette,
|
|
159
|
-
htmlId = _this$props.htmlId,
|
|
160
151
|
i18nKeys = _this$props.i18nKeys,
|
|
161
|
-
a11y = _this$props.a11y,
|
|
162
|
-
children = _this$props.children,
|
|
163
|
-
customChildrenClass = _this$props.customChildrenClass,
|
|
164
152
|
isBoxPaddingNeed = _this$props.isBoxPaddingNeed,
|
|
165
153
|
needEffect = _this$props.needEffect,
|
|
166
154
|
isLoading = _this$props.isLoading,
|
|
167
155
|
keepSelectedOptions = _this$props.keepSelectedOptions,
|
|
168
156
|
customProps = _this$props.customProps;
|
|
169
|
-
var _customProps$
|
|
170
|
-
TextBoxProps = _customProps$TextBoxP === void 0 ? {} : _customProps$TextBoxP,
|
|
171
|
-
_customProps$Suggesti = customProps.SuggestionsProps,
|
|
157
|
+
var _customProps$Suggesti = customProps.SuggestionsProps,
|
|
172
158
|
SuggestionsProps = _customProps$Suggesti === void 0 ? {} : _customProps$Suggesti;
|
|
173
|
-
|
|
174
|
-
_i18nKeys$clearText = _i18nKeys.clearText,
|
|
175
|
-
clearText = _i18nKeys$clearText === void 0 ? 'Clear all' : _i18nKeys$clearText;
|
|
176
|
-
var _a11y$clearLabel = a11y.clearLabel,
|
|
177
|
-
clearLabel = _a11y$clearLabel === void 0 ? 'Clear all' : _a11y$clearLabel;
|
|
178
|
-
i18nKeys = Object.assign({}, i18nKeys, {
|
|
159
|
+
i18nKeys = Object.assign({}, _defaultProps2.defaultProps.i18nKeys, i18nKeys, {
|
|
179
160
|
emptyText: i18nKeys.emptyText || emptyMessage,
|
|
180
161
|
searchEmptyText: i18nKeys.searchEmptyText || searchEmptyMessage,
|
|
181
162
|
noMoreText: i18nKeys.noMoreText || noMoreOptionsMessage
|
|
@@ -184,16 +165,13 @@ var MultiSelectWithAvatarComponent = /*#__PURE__*/function (_MultiSelectComponen
|
|
|
184
165
|
selectedOptions = _this$state.selectedOptions,
|
|
185
166
|
searchStr = _this$state.searchStr,
|
|
186
167
|
hoverOption = _this$state.hoverOption,
|
|
187
|
-
highLightedSelectOptions = _this$state.highLightedSelectOptions,
|
|
188
168
|
options = _this$state.options,
|
|
189
169
|
isFetchingOptions = _this$state.isFetchingOptions,
|
|
190
|
-
isActive = _this$state.isActive,
|
|
191
170
|
selectedOptionIds = _this$state.selectedOptionIds;
|
|
192
171
|
var suggestions = this.handleFilterSuggestions();
|
|
193
172
|
var setAriaId = this.getNextAriaId();
|
|
194
173
|
var ariaErrorId = this.getNextAriaId();
|
|
195
174
|
var popUpState = !isReadOnly && !isDisabled && !disableAction && isPopupOpen;
|
|
196
|
-
var isShowClearIcon = !isReadOnly && !isDisabled && !disableAction && selectedOptions.length > 1;
|
|
197
175
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
198
176
|
className: " ".concat(_MultiSelectModule["default"].wrapper, " ").concat(isDisabled ? _MultiSelectModule["default"].disabled : '', " ").concat(isReadOnly ? _MultiSelectModule["default"].readOnly : '', " ").concat(disableAction ? (0, _CssProvider["default"])('isBlock') : '', " ").concat(borderColor === 'transparent' ? _MultiSelectModule["default"].transparentContainer : '', " ").concat(needEffect && !(isDisabled || isReadOnly) ? _MultiSelectModule["default"].effect : ''),
|
|
199
177
|
"data-id": "".concat(isDisabled ? "".concat(dataId, "_disabled") : isReadOnly ? "".concat(dataId, "_readOnly") : dataId),
|
|
@@ -201,78 +179,7 @@ var MultiSelectWithAvatarComponent = /*#__PURE__*/function (_MultiSelectComponen
|
|
|
201
179
|
"data-title": isDisabled ? title : null,
|
|
202
180
|
onClick: this.handleInputFocus,
|
|
203
181
|
"data-selector-id": dataSelectorId
|
|
204
|
-
}, /*#__PURE__*/_react["default"].createElement(
|
|
205
|
-
align: "vertical",
|
|
206
|
-
alignBox: "row",
|
|
207
|
-
className: "".concat(_MultiSelectModule["default"].container, " ").concat(_MultiSelectModule["default"][size], " ").concat(needBorder ? _MultiSelectModule["default"]["borderColor_".concat(borderColor)] : '', " ").concat(isActive && needBorder ? _MultiSelectModule["default"].active : '', " ").concat(textBoxClass ? textBoxClass : '', " ").concat(needBorder ? _MultiSelectModule["default"].hasBorder : ''),
|
|
208
|
-
eleRef: this.selectedOptionContainerRef,
|
|
209
|
-
wrap: "wrap"
|
|
210
|
-
}, /*#__PURE__*/_react["default"].createElement(_SelectedOptions["default"], {
|
|
211
|
-
selectedOptions: selectedOptions,
|
|
212
|
-
highLightedSelectOptions: highLightedSelectOptions,
|
|
213
|
-
isReadOnly: isReadOnly,
|
|
214
|
-
getRef: this.selectedOptionRef,
|
|
215
|
-
onRemove: this.handleRemoveOption,
|
|
216
|
-
onSelect: this.handleClickSelectedOption,
|
|
217
|
-
size: size,
|
|
218
|
-
palette: palette
|
|
219
|
-
}), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
220
|
-
flexible: true,
|
|
221
|
-
className: _MultiSelectModule["default"].wrapper,
|
|
222
|
-
adjust: true,
|
|
223
|
-
shrink: true
|
|
224
|
-
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
225
|
-
className: " ".concat(_MultiSelectModule["default"].custmSpan, " ").concat(textBoxSize === 'xmedium' ? _MultiSelectModule["default"].custmSpanXmedium : _MultiSelectModule["default"].custmSpanMedium, " ").concat(isShowClearIcon ? _MultiSelectModule["default"].clearIconSpace : '', "\n ").concat(customChildrenClass ? customChildrenClass : '')
|
|
226
|
-
}, searchStr), /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], {
|
|
227
|
-
isDisabled: isDisabled,
|
|
228
|
-
inputRef: this.searchInputRef,
|
|
229
|
-
needBorder: false,
|
|
230
|
-
onBlur: this.handleInactive,
|
|
231
|
-
onChange: this.handleSearch,
|
|
232
|
-
onClick: this.handleInputCick,
|
|
233
|
-
onFocus: this.handleActive,
|
|
234
|
-
onKeyDown: this.handleKeyDown,
|
|
235
|
-
placeHolder: selectedOptions.length >= 1 ? '' : placeHolder,
|
|
236
|
-
size: textBoxSize,
|
|
237
|
-
value: searchStr,
|
|
238
|
-
variant: variant,
|
|
239
|
-
dataId: "".concat(dataId, "_textBox"),
|
|
240
|
-
isReadOnly: isReadOnly,
|
|
241
|
-
tabindex: isDisabled && '-1',
|
|
242
|
-
htmlId: htmlId,
|
|
243
|
-
a11y: {
|
|
244
|
-
ariaExpanded: popUpState ? true : false,
|
|
245
|
-
ariaHaspopup: true,
|
|
246
|
-
role: 'combobox',
|
|
247
|
-
ariaControls: setAriaId,
|
|
248
|
-
ariaOwns: setAriaId,
|
|
249
|
-
ariaDescribedby: ariaErrorId
|
|
250
|
-
},
|
|
251
|
-
customClass: {
|
|
252
|
-
customTBoxWrap: _MultiSelectModule["default"].custmInputWrapper
|
|
253
|
-
},
|
|
254
|
-
autoComplete: false,
|
|
255
|
-
customProps: {
|
|
256
|
-
TextBoxProps: TextBoxProps
|
|
257
|
-
}
|
|
258
|
-
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
259
|
-
isCover: false,
|
|
260
|
-
alignBox: "row",
|
|
261
|
-
align: "vertical",
|
|
262
|
-
className: _MultiSelectModule["default"].iconContainer
|
|
263
|
-
}, children ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
264
|
-
dataId: "".concat(dataId, "_children")
|
|
265
|
-
}, children) : null, isShowClearIcon ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
266
|
-
className: "".concat(_MultiSelectModule["default"]["delete"], " ").concat(_MultiSelectModule["default"]["".concat(palette, "Delete")]),
|
|
267
|
-
dataId: "".concat(dataId, "_clearIcon"),
|
|
268
|
-
"data-title": clearText,
|
|
269
|
-
onClick: this.handleDeselectAll,
|
|
270
|
-
tagName: "button",
|
|
271
|
-
"aria-label": clearLabel
|
|
272
|
-
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
273
|
-
name: "ZD-delete",
|
|
274
|
-
size: "15"
|
|
275
|
-
})) : null)))), popUpState ? /*#__PURE__*/_react["default"].createElement(_CustomResponsive.ResponsiveReceiver, {
|
|
182
|
+
}, this.getSelectionUI(), popUpState ? /*#__PURE__*/_react["default"].createElement(_CustomResponsive.ResponsiveReceiver, {
|
|
276
183
|
query: this.responsiveFunc,
|
|
277
184
|
responsiveId: "Helmet"
|
|
278
185
|
}, function (_ref2) {
|
|
@@ -301,13 +208,18 @@ var MultiSelectWithAvatarComponent = /*#__PURE__*/function (_MultiSelectComponen
|
|
|
301
208
|
}, /*#__PURE__*/_react["default"].createElement(_Card["default"], {
|
|
302
209
|
customClass: "".concat(_MultiSelectModule["default"].box, " ").concat(_MultiSelectModule["default"]["".concat(palette, "Box")]),
|
|
303
210
|
onScroll: _this2.handleScroll
|
|
304
|
-
}, /*#__PURE__*/_react["default"].createElement(
|
|
305
|
-
|
|
211
|
+
}, tabletMode && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_MobileHeader["default"], {
|
|
212
|
+
selectedOptions: selectedOptions,
|
|
213
|
+
i18nKeys: i18nKeys,
|
|
214
|
+
onClick: _this2.handlePopupClose
|
|
215
|
+
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
216
|
+
className: _MultiSelectModule["default"].effect
|
|
217
|
+
}, _this2.getSelectionUI(true)))), needSelectAll ? /*#__PURE__*/_react["default"].createElement(_Card.CardHeader, null, /*#__PURE__*/_react["default"].createElement(_MultiSelectHeader["default"], {
|
|
306
218
|
onSelect: _this2.handleSelectAll,
|
|
307
219
|
selectAllText: selectAllText,
|
|
308
220
|
suggestions: suggestions,
|
|
309
221
|
dataId: dataId
|
|
310
|
-
})), isLoading ? /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
222
|
+
})) : null, isLoading ? /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
311
223
|
align: "both",
|
|
312
224
|
className: _MultiSelectModule["default"].loader
|
|
313
225
|
}, /*#__PURE__*/_react["default"].createElement(_Loader["default"], null)) : /*#__PURE__*/_react["default"].createElement(_Card.CardContent, {
|
|
@@ -353,14 +265,6 @@ MultiSelectWithAvatarComponent.defaultProps = _defaultProps.MultiSelectWithAvata
|
|
|
353
265
|
MultiSelectWithAvatarComponent.displayName = 'MultiSelectWithAvatar';
|
|
354
266
|
var MultiSelectWithAvatar = (0, _Popup["default"])(MultiSelectWithAvatarComponent);
|
|
355
267
|
MultiSelectWithAvatar.defaultProps = MultiSelectWithAvatarComponent.defaultProps;
|
|
356
|
-
MultiSelectWithAvatar.propTypes = MultiSelectWithAvatarComponent.propTypes;
|
|
357
|
-
// MultiSelectWithAvatarComponent.docs = {
|
|
358
|
-
// componentGroup: 'Form Elements',
|
|
359
|
-
// folderName: 'Style Guide'
|
|
360
|
-
// };
|
|
361
|
-
// // eslint-disable-next-line react/forbid-foreign-prop-types
|
|
362
|
-
// MultiSelectWithAvatar.propTypes = MultiSelectWithAvatarComponent.propTypes;
|
|
363
|
-
// }
|
|
364
|
-
|
|
268
|
+
MultiSelectWithAvatar.propTypes = MultiSelectWithAvatarComponent.propTypes;
|
|
365
269
|
var _default = MultiSelectWithAvatar;
|
|
366
270
|
exports["default"] = _default;
|
|
@@ -118,7 +118,9 @@ var MultiSelect_defaultProps = {
|
|
|
118
118
|
boxSize: 'default',
|
|
119
119
|
isLoading: false,
|
|
120
120
|
dataSelectorId: 'multiSelect',
|
|
121
|
-
keepSelectedOptions: false
|
|
121
|
+
keepSelectedOptions: false,
|
|
122
|
+
selectedOptionsCount: 0,
|
|
123
|
+
cardHeaderName: ''
|
|
122
124
|
};
|
|
123
125
|
exports.MultiSelect_defaultProps = MultiSelect_defaultProps;
|
|
124
126
|
var MultiSelectHeader_defaultProps = {
|
|
@@ -9,7 +9,13 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
9
9
|
|
|
10
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
13
|
+
|
|
14
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15
|
+
|
|
16
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
17
|
+
|
|
18
|
+
var AdvancedGroupMultiSelect_propTypes = _defineProperty({
|
|
13
19
|
animationStyle: _propTypes["default"].string,
|
|
14
20
|
autoComplete: _propTypes["default"].bool,
|
|
15
21
|
borderColor: _propTypes["default"].oneOf(['transparent', 'default']),
|
|
@@ -73,7 +79,8 @@ var AdvancedGroupMultiSelect_propTypes = {
|
|
|
73
79
|
needToCloseOnSelect: _propTypes["default"].func,
|
|
74
80
|
searchStr: _propTypes["default"].string,
|
|
75
81
|
children: _propTypes["default"].node
|
|
76
|
-
};
|
|
82
|
+
}, "dataSelectorId", _propTypes["default"].string);
|
|
83
|
+
|
|
77
84
|
exports.AdvancedGroupMultiSelect_propTypes = AdvancedGroupMultiSelect_propTypes;
|
|
78
85
|
var AdvancedMultiSelect_propTypes = {
|
|
79
86
|
id: _propTypes["default"].string.isRequired,
|
|
@@ -177,7 +184,7 @@ var MultiSelect_propTypes = {
|
|
|
177
184
|
borderColor: _propTypes["default"].oneOf(['transparent', 'default', 'dark']),
|
|
178
185
|
closePopupOnly: _propTypes["default"].func,
|
|
179
186
|
dataId: _propTypes["default"].string,
|
|
180
|
-
defaultDropBoxPosition: _propTypes["default"].
|
|
187
|
+
defaultDropBoxPosition: _propTypes["default"].oneOf(['bottom', 'top', 'left', 'right']),
|
|
181
188
|
disableAction: _propTypes["default"].bool,
|
|
182
189
|
dropBoxSize: _propTypes["default"].oneOf(['small', 'medium', 'large']),
|
|
183
190
|
emptyMessage: _propTypes["default"].string.isRequired,
|
|
@@ -210,7 +217,6 @@ var MultiSelect_propTypes = {
|
|
|
210
217
|
needBorder: _propTypes["default"].bool,
|
|
211
218
|
needLocalSearch: _propTypes["default"].bool,
|
|
212
219
|
needResponsive: _propTypes["default"].bool,
|
|
213
|
-
needSelectAll: _propTypes["default"].bool,
|
|
214
220
|
needToCloseOnSelect: _propTypes["default"].bool,
|
|
215
221
|
//For Group multiSelect
|
|
216
222
|
noMoreOptionsMessage: _propTypes["default"].string,
|
|
@@ -232,7 +238,6 @@ var MultiSelect_propTypes = {
|
|
|
232
238
|
removeClose: _propTypes["default"].func,
|
|
233
239
|
searchDebounceTime: _propTypes["default"].number,
|
|
234
240
|
searchEmptyMessage: _propTypes["default"].string,
|
|
235
|
-
selectAllText: _propTypes["default"].string,
|
|
236
241
|
selectedOptions: _propTypes["default"].arrayOf(_propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])).isRequired,
|
|
237
242
|
size: _propTypes["default"].oneOf(['medium', 'xmedium']),
|
|
238
243
|
textBoxClass: _propTypes["default"].string,
|
|
@@ -252,80 +257,34 @@ var MultiSelect_propTypes = {
|
|
|
252
257
|
boxSize: _propTypes["default"].string,
|
|
253
258
|
isLoading: _propTypes["default"].bool,
|
|
254
259
|
dataSelectorId: _propTypes["default"].string,
|
|
255
|
-
keepSelectedOptions: _propTypes["default"].bool
|
|
260
|
+
keepSelectedOptions: _propTypes["default"].bool,
|
|
261
|
+
needSelectAll: _propTypes["default"].bool,
|
|
262
|
+
selectAllText: _propTypes["default"].string,
|
|
263
|
+
setAriaId: _propTypes["default"].string,
|
|
264
|
+
ariaErrorId: _propTypes["default"].string
|
|
256
265
|
};
|
|
257
266
|
exports.MultiSelect_propTypes = MultiSelect_propTypes;
|
|
258
267
|
var MultiSelectHeader_propTypes = {
|
|
259
268
|
dataId: _propTypes["default"].string,
|
|
260
|
-
needSelectAll: _propTypes["default"].bool,
|
|
261
269
|
onSelect: _propTypes["default"].func,
|
|
262
270
|
selectAllText: _propTypes["default"].string,
|
|
263
271
|
suggestions: _propTypes["default"].array
|
|
264
272
|
};
|
|
265
273
|
exports.MultiSelectHeader_propTypes = MultiSelectHeader_propTypes;
|
|
266
|
-
|
|
267
|
-
|
|
274
|
+
|
|
275
|
+
var MultiSelectWithAvatar_propTypes = _objectSpread({
|
|
268
276
|
options: _propTypes["default"].oneOfType([_propTypes["default"].arrayOf(_propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])), _propTypes["default"].arrayOf(_propTypes["default"].shape({
|
|
269
277
|
id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]),
|
|
270
278
|
text: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]),
|
|
271
279
|
photoURL: _propTypes["default"].string
|
|
272
280
|
}))]).isRequired,
|
|
273
|
-
placeHolder: _propTypes["default"].string,
|
|
274
|
-
emptyMessage: _propTypes["default"].string.isRequired,
|
|
275
|
-
valueField: _propTypes["default"].string,
|
|
276
|
-
textField: _propTypes["default"].string,
|
|
277
281
|
imageField: _propTypes["default"].string,
|
|
278
|
-
isReadOnly: _propTypes["default"].bool,
|
|
279
|
-
needSelectAll: _propTypes["default"].bool,
|
|
280
|
-
selectAllText: _propTypes["default"].string,
|
|
281
|
-
defaultDropBoxPosition: _propTypes["default"].oneOf(['bottom', 'top', 'left', 'right']),
|
|
282
|
-
searchEmptyMessage: _propTypes["default"].string,
|
|
283
|
-
noMoreOptionsMessage: _propTypes["default"].string,
|
|
284
|
-
isAnimate: _propTypes["default"].bool,
|
|
285
|
-
animationStyle: _propTypes["default"].string,
|
|
286
|
-
size: _propTypes["default"].oneOf(['medium', 'xmedium']),
|
|
287
|
-
textBoxSize: _propTypes["default"].oneOf(['small', 'medium', 'xmedium']),
|
|
288
|
-
variant: _propTypes["default"].string,
|
|
289
|
-
isDisabled: _propTypes["default"].bool,
|
|
290
|
-
title: _propTypes["default"].string,
|
|
291
|
-
needResponsive: _propTypes["default"].bool,
|
|
292
|
-
dataId: _propTypes["default"].string,
|
|
293
|
-
borderColor: _propTypes["default"].oneOf(['transparent', 'default']),
|
|
294
|
-
textBoxClass: _propTypes["default"].string,
|
|
295
|
-
needBorder: _propTypes["default"].bool,
|
|
296
|
-
disableAction: _propTypes["default"].bool,
|
|
297
|
-
palette: _propTypes["default"].oneOf(['default', 'dark']),
|
|
298
|
-
htmlId: _propTypes["default"].string,
|
|
299
|
-
isBoxPaddingNeed: _propTypes["default"].bool,
|
|
300
|
-
needEffect: _propTypes["default"].bool,
|
|
301
|
-
keepSelectedOptions: _propTypes["default"].bool,
|
|
302
282
|
customProps: _propTypes["default"].shape({
|
|
303
283
|
SuggestionsProps: _propTypes["default"].object,
|
|
304
284
|
DropBoxProps: _propTypes["default"].object
|
|
305
|
-
})
|
|
285
|
+
})
|
|
286
|
+
}, MultiSelect_propTypes);
|
|
306
287
|
|
|
307
|
-
/**** Popup props ****/
|
|
308
|
-
isPopupOpen: _propTypes["default"].bool,
|
|
309
|
-
isPopupReady: _propTypes["default"].bool,
|
|
310
|
-
removeClose: _propTypes["default"].func,
|
|
311
|
-
position: _propTypes["default"].string,
|
|
312
|
-
getContainerRef: _propTypes["default"].func,
|
|
313
|
-
i18nKeys: _propTypes["default"].shape({
|
|
314
|
-
clearText: _propTypes["default"].string,
|
|
315
|
-
loadingText: _propTypes["default"].string,
|
|
316
|
-
emptyText: _propTypes["default"].string,
|
|
317
|
-
noMoreText: _propTypes["default"].string,
|
|
318
|
-
searchEmptyText: _propTypes["default"].string
|
|
319
|
-
}),
|
|
320
|
-
a11y: _propTypes["default"].shape({
|
|
321
|
-
clearLabel: _propTypes["default"].string
|
|
322
|
-
}),
|
|
323
|
-
children: _propTypes["default"].node,
|
|
324
|
-
customChildrenClass: _propTypes["default"].string,
|
|
325
|
-
disabledOptions: _propTypes["default"].arrayOf(_propTypes["default"].string),
|
|
326
|
-
isLoading: _propTypes["default"].bool,
|
|
327
|
-
dataSelectorId: _propTypes["default"].string
|
|
328
|
-
};
|
|
329
288
|
exports.MultiSelectWithAvatar_propTypes = MultiSelectWithAvatar_propTypes;
|
|
330
289
|
var SelectedOptions_propTypes = {
|
|
331
290
|
getRef: _propTypes["default"].func,
|
|
@@ -17,7 +17,9 @@ var propTypes = {
|
|
|
17
17
|
portalId: _propTypes["default"].string,
|
|
18
18
|
renderChildren: _propTypes["default"].func,
|
|
19
19
|
saveGetFunction: _propTypes["default"].func,
|
|
20
|
-
saveUpdateFunction: _propTypes["default"].func
|
|
20
|
+
saveUpdateFunction: _propTypes["default"].func,
|
|
21
|
+
isActive: _propTypes["default"].bool,
|
|
22
|
+
name: _propTypes["default"].string
|
|
21
23
|
};
|
|
22
24
|
exports.propTypes = propTypes;
|
|
23
25
|
var RefElement_propTypes = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"main": "es/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -59,19 +59,19 @@
|
|
|
59
59
|
"@testing-library/react-hooks": "^7.0.2",
|
|
60
60
|
"@testing-library/user-event": "^13.0.10",
|
|
61
61
|
"@zohodesk-private/color-variable-preprocessor": "1.0.6",
|
|
62
|
-
"@zohodesk-private/react-prop-validator": "0.0.7",
|
|
63
62
|
"@zohodesk-private/css-variable-migrator": "^1.0.7",
|
|
64
|
-
"@zohodesk/a11y": "2.0.0",
|
|
65
63
|
"@zohodesk-private/node-plugins": "^1.0.0",
|
|
64
|
+
"@zohodesk-private/react-prop-validator": "^0.1.0",
|
|
65
|
+
"@zohodesk/a11y": "2.0.0",
|
|
66
66
|
"@zohodesk/docstool": "1.0.0-alpha-2",
|
|
67
|
-
"@zohodesk/
|
|
67
|
+
"@zohodesk/hooks": "2.0.1",
|
|
68
|
+
"@zohodesk/icons": "1.0.2",
|
|
68
69
|
"@zohodesk/svg": "1.1.1",
|
|
70
|
+
"@zohodesk/utils": "1.3.13",
|
|
69
71
|
"@zohodesk/variables": "1.0.0",
|
|
70
72
|
"@zohodesk/virtualizer": "1.0.3",
|
|
71
73
|
"react-sortable-hoc": "^0.8.3",
|
|
72
|
-
"velocity-react": "1.4.3"
|
|
73
|
-
"@zohodesk/hooks": "2.0.1",
|
|
74
|
-
"@zohodesk/utils": "1.3.13"
|
|
74
|
+
"velocity-react": "1.4.3"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"hoist-non-react-statics": "3.0.1",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"selectn": "1.1.2"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@zohodesk/icons": "1.0.
|
|
83
|
+
"@zohodesk/icons": "1.0.2",
|
|
84
84
|
"@zohodesk/variables": "1.0.0",
|
|
85
85
|
"@zohodesk/svg": "1.1.1",
|
|
86
86
|
"@zohodesk/virtualizer": "1.0.3",
|
|
@@ -90,4 +90,4 @@
|
|
|
90
90
|
"@zohodesk/utils": "1.3.13",
|
|
91
91
|
"@zohodesk/a11y": "1.3.7"
|
|
92
92
|
}
|
|
93
|
-
}
|
|
93
|
+
}
|
package/result.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"jobDetails":{"isRunByLocal":true,"hostName":"lakshmi-zt257","platForm":"Darwin","branchName":"Selva_Accessibility_Desk_Library"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":2,"endTime":1692206555965,"startTime":1692206551873,"coverageDetail":{"codeCoveragePercentage":98.86,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/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/lakshmi-zt257/Documents/Git/LibraryCheck/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":[]}}]}}}
|
|
1
|
+
{"jobDetails":{"isRunByLocal":true,"hostName":"bharathi-zt93","platForm":"Darwin","branchName":"testcase_gowtham"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":2,"endTime":1692276709231,"startTime":1692276706723,"coverageDetail":{"codeCoveragePercentage":98.86,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Popup/__tests__/Popup.spec.js","CaseList":{"passedCaseList":["should click same popup with removeClose","should open popup and close popup","should close another popup already one opened","should click document close opened popup","should click same popup with out removeClose","should click document close opened popup","should press esc key opened popup close"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBox/__tests__/TextBox.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Textarea/__tests__/Textarea.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check border applied","Check border removed","Check check onchange works"],"failedCaseList":["should display size xsmall","should display size xsmall - primary","should display size small","should display size small - primary","should display size medium","should display size medium - primary","should display size large","should display size large - primary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/__tests__/Container.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should display avatar image and initial while avatar loading...","should display initial if invalid url","should display image valid url","should the palette is default","should the palette is secondary","should the palette is info","should the shape is square","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge","should have title","should no need title"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["Display proper text","Check if clipped style is applied","Check if clipped style is not applied","Check for the prop title"],"failedCaseList":["Check for the prop name","should be having palette default","should be having palette primary","should be having palette secondary","should be having palette danger","should be having palette mandatory","should be having size small","should be having size medium","should be having size large","should be having type title","should be having type subtitle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":["should the palette is default","should the palette is danger","should the palette is secondary","should the palette is info","should the palette is primary","should the palette is dark","should the size is small","should the size is medium","should the size is large","should the size is xlarge","should the type is dafault","should the type is flag","should the type is plain","should the type is ribbon","should the type is box","should the type is stamp","should the type is sticker","should the type is tag"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/__tests__/Box.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBoxIcon/__tests__/TextBoxIcon.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/Tab.spec.js","CaseList":{"passedCaseList":["Is Contains alpha class","Is Contains beta class","Is Contains gamma class","Is Contains delta class","Is Contains active class","Is Contains border class","Is call onClick","is render text span"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/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/bharathi-zt93/git/library/jsapps/dot/components/src/Accordion/__tests__/Accordion.spec.js","CaseList":{"passedCaseList":["open accordion item id 1 ","open accordion item id 1 ","accordion item 2 click check","accordion click callback check "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropBox/__tests__/DropBox.spec.js","CaseList":{"passedCaseList":["Should Arrow element disable","Should call onclick container function"],"failedCaseList":["Should Arrow element visible","Should check render proper class name(hidden)","Should check render proper class name(size)","Should check render proper class name(boxPosition)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(arrowPosition)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tooltip/__tests__/Tooltip.spec.js","CaseList":{"passedCaseList":["Is HandleOver Executed","Is reset Executed","Is click & mouseUp Declared"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should is filled","should the palette is secondary","should the palette is info","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__test__/Buttongroup.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the type is footer","should the type is header","should the button position is left","should the button position is right","should the button position is center"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabWrapper.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is Tab rendered","is onSelect called","is disable State internally","change selectedTab id"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the palette is primary","should the palette is secondary","should the size is small","should the size is medium","should the size is large","should the size is default","should the shape is rect","should the shape is circle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabContentWrapper.spec.js","CaseList":{"passedCaseList":["is children rendered class","is only selected TabContent rendered "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDownItem.spec.js","CaseList":{"passedCaseList":["Should check render proper class name(hightlight)","Should onClick method get called","Should onHover method get called"],"failedCaseList":["Should check render proper class name(active)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/Tabs.spec.js","CaseList":{"passedCaseList":["isResponsive called"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Card/__tests__/Card.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDown.spec.js","CaseList":{"passedCaseList":["Should onScroll method get called","Should render children element in DropDownItemContainer","Should render children element in DropDownContainer","Should render children element in DropDownTarget"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/debounce.spec.js","CaseList":{"passedCaseList":["should call immediate","should call two times but it invoke multiple times","should call one time but it invoke multiple times"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/getInitial.spec.js","CaseList":{"passedCaseList":["first name alone","last name alone","first name and last name alone","last name with single character","first name and last name pattern","last name and first name pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/CalendarView.spec.js","CaseList":{"passedCaseList":["Should set date onSelecting date"],"failedCaseList":["Should call handleSelect with specified arguments"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Radio/__tests__/Radiospec.js","CaseList":{"passedCaseList":["Should display Text","Should call onChange"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/PopOver/__tests__/PopOver.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/constructFullName.spec.js","CaseList":{"passedCaseList":["firstname, lastname pattern","lastname firstname pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tag/__tests__/Tag.spec.js","CaseList":{"passedCaseList":["Select Tag","Remove Tag"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Animation/__tests__/Animation.spec.js","CaseList":{"passedCaseList":["Animation component mount testcases"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabContent.spec.js","CaseList":{"passedCaseList":["render TabContent"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Select/__tests__/Select.spec.js","CaseList":{"passedCaseList":["Select component with down arrow","Select component without down arrow","Select component with search box","Select component without search box","Should Show empty message","Should render suggestions, When popup open","Should not render suggestions, When popup close","Should popup open, When click textBox","Should popup open, When down arrow press","Should not popup open, When is readOnly component","Should not popup open, When is disabled component","Should Show search empty message","Should show loading and hide loading","Should call onChange, When select list item","Should not call onChange func, When is readonly component","Should call getNextOptions, When on reach boundary and isNextOptions is true","Should not call getNextOptions, When on reach boundary and isNextOptions is false","Should ignore excludeOptions","Should select defaultValue","Should not select defaultValue","Should active selected value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/CheckBox/__tests__/CheckBox.spec.js","CaseList":{"passedCaseList":["should display"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDownSearch.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should check render proper class name(size)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/DateTime.spec.js","CaseList":{"passedCaseList":["Should call handleSelect onSetting date","Should call handleSelect onClearing date","Should display Time field if isDateTimeField is true","Should not display Time field if isDateTimeField is false"],"failedCaseList":["Should navigate to prevYear onClicking prevYear(<<)","Should navigate to prevMonth onClicking prevMonth(<)","Should navigate to nextMonth onClicking nextMonth(>)","Should navigate to nextYear onClicking nextYear(>>)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/MultiSelect/__tests__/MultiSelect.spec.js","CaseList":{"passedCaseList":["Should show loading and hide loading","Should display searchEmptyMessage","Should display noOptionsMessage","Should display noMoreOptionsMessage","Should display clear icon","Should not display clear icon, When is readonly field","Should not display clear icon, When is selected option is one","Should display select all option, When suggestions are more than 1","Should not display select all option"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/DateWidget.spec.js","CaseList":{"passedCaseList":["Should not render dateTime if isReadOnly is true","Should render children if children is given","Should not render children if children is not given"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Textarea/___tests__/Textarea.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check border applied","Check border removed","Check check onchange works"],"failedCaseList":["should display size xsmall","should display size xsmall - primary","should display size small","should display size small - primary","should display size medium","should display size medium - primary","should display size large","should display size large - primary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBox/___tests__/TextBox.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Avatar/___tests__/Avatar.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should display avatar image and initial while avatar loading...","should display initial if invalid url","should display image valid url","should the palette is default","should the palette is secondary","should the palette is info","should the shape is square","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge","should have title","should no need title"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Popup/___tests__/Popup.spec.js","CaseList":{"passedCaseList":["should click same popup with removeClose","should open popup and close popup","should close another popup already one opened","should click document close opened popup","should click same popup with out removeClose","should click document close opened popup","should press esc key opened popup close"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Ribbon/___tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":["should the palette is default","should the palette is danger","should the palette is secondary","should the palette is info","should the palette is primary","should the palette is dark","should the size is small","should the size is medium","should the size is large","should the size is xlarge","should the type is dafault","should the type is flag","should the type is plain","should the type is ribbon","should the type is box","should the type is stamp","should the type is sticker","should the type is tag"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/___tests__/Container.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Label/___tests__/Label.spec.js","CaseList":{"passedCaseList":["Display proper text","Check if clipped style is applied","Check if clipped style is not applied","Check for the prop title"],"failedCaseList":["Check for the prop name","should be having palette default","should be having palette primary","should be having palette secondary","should be having palette danger","should be having palette mandatory","should be having size small","should be having size medium","should be having size large","should be having type title","should be having type subtitle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/___tests__/Box.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBoxIcon/___tests__/TextBoxIcon.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Accordion/___tests__/Accordion.spec.js","CaseList":{"passedCaseList":["open accordion item id 1 ","open accordion item id 1 ","accordion item 2 click check","accordion click callback check "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/Tab.spec.js","CaseList":{"passedCaseList":["Is Contains alpha class","Is Contains beta class","Is Contains gamma class","Is Contains delta class","Is Contains active class","Is Contains border class","Is call onClick","is render text span"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/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/bharathi-zt93/git/library/jsapps/dot/components/src/AvatarTeam/___tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should is filled","should the palette is secondary","should the palette is info","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tooltip/___tests__/Tooltip.spec.js","CaseList":{"passedCaseList":["Is HandleOver Executed","Is reset Executed","Is click & mouseUp Declared"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/___test__/Buttongroup.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the type is footer","should the type is header","should the button position is left","should the button position is right","should the button position is center"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Stencils/___tests__/Stencils.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the palette is primary","should the palette is secondary","should the size is small","should the size is medium","should the size is large","should the size is default","should the shape is rect","should the shape is circle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabContentWrapper.spec.js","CaseList":{"passedCaseList":["is children rendered class","is only selected TabContent rendered "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropBox/___tests__/DropBox.spec.js","CaseList":{"passedCaseList":["Should Arrow element disable","Should call onclick container function"],"failedCaseList":["Should Arrow element visible","Should check render proper class name(hidden)","Should check render proper class name(size)","Should check render proper class name(boxPosition)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(arrowPosition)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDownItem.spec.js","CaseList":{"passedCaseList":["Should check render proper class name(hightlight)","Should onClick method get called","Should onHover method get called"],"failedCaseList":["Should check render proper class name(active)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/debounce.spec.js","CaseList":{"passedCaseList":["should call immediate","should call two times but it invoke multiple times","should call one time but it invoke multiple times"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/getInitial.spec.js","CaseList":{"passedCaseList":["first name alone","last name alone","first name and last name alone","last name with single character","first name and last name pattern","last name and first name pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Card/___tests__/Card.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDown.spec.js","CaseList":{"passedCaseList":["Should onScroll method get called","Should render children element in DropDownItemContainer","Should render children element in DropDownContainer","Should render children element in DropDownTarget"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/constructFullName.spec.js","CaseList":{"passedCaseList":["firstname, lastname pattern","lastname firstname pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tag/___tests__/Tag.spec.js","CaseList":{"passedCaseList":["Select Tag","Remove Tag"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/Tabs.spec.js","CaseList":{"passedCaseList":["isResponsive called"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Animation/___tests__/Animation.spec.js","CaseList":{"passedCaseList":["Animation component mount testcases"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabWrapper.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is Tab rendered","is onSelect called","is disable State internally","change selectedTab id"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabContent.spec.js","CaseList":{"passedCaseList":["render TabContent"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDownSearch.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should check render proper class name(size)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/CheckBox/___tests__/CheckBox.spec.js","CaseList":{"passedCaseList":["should display"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/PopOver/___tests__/PopOver.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/MultiSelect/___tests__/MultiSelect.spec.js","CaseList":{"passedCaseList":["Should show loading and hide loading","Should display searchEmptyMessage","Should display noOptionsMessage","Should display noMoreOptionsMessage","Should display clear icon","Should not display clear icon, When is readonly field","Should not display clear icon, When is selected option is one","Should display select all option, When suggestions are more than 1","Should not display select all option"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Select/___tests__/Select.spec.js","CaseList":{"passedCaseList":["Select component with down arrow","Select component without down arrow","Select component with search box","Select component without search box","Should Show empty message","Should render suggestions, When popup open","Should not render suggestions, When popup close","Should popup open, When click textBox","Should popup open, When down arrow press","Should not popup open, When is readOnly component","Should not popup open, When is disabled component","Should Show search empty message","Should show loading and hide loading","Should call onChange, When select list item","Should not call onChange func, When is readonly component","Should call getNextOptions, When on reach boundary and isNextOptions is true","Should not call getNextOptions, When on reach boundary and isNextOptions is false","Should ignore excludeOptions","Should select defaultValue","Should not select defaultValue","Should active selected value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/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/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["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 "]}},{"fileName":"/Users/bharathi-zt93/git/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/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["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 "]}},{"fileName":"/Users/bharathi-zt93/git/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/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["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 "]}},{"fileName":"/Users/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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/bharathi-zt93/git/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":[]}}]}}}
|