@zohodesk/dot 1.0.0-temp-171 → 1.0.0-temp-172
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/propValidation_report.html +1 -1
- package/coverage/ExternalLink/ExternalLink.js.html +1 -1
- package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
- package/coverage/ExternalLink/index.html +1 -1
- package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
- package/coverage/ExternalLink/props/index.html +1 -1
- package/coverage/ExternalLink/props/propTypes.js.html +1 -1
- package/coverage/IconButton/IconButton.js.html +1 -1
- package/coverage/IconButton/IconButton.module.css.html +1 -1
- package/coverage/IconButton/index.html +1 -1
- package/coverage/IconButton/props/defaultProps.js.html +1 -1
- package/coverage/IconButton/props/index.html +1 -1
- package/coverage/IconButton/props/propTypes.js.html +1 -1
- package/coverage/Image/Image.js.html +1 -1
- package/coverage/Image/Image.module.css.html +1 -1
- package/coverage/Image/index.html +1 -1
- package/coverage/Image/props/defaultProps.js.html +1 -1
- package/coverage/Image/props/index.html +1 -1
- package/coverage/Image/props/propTypes.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
- package/coverage/avatar/AvatarWithTeam/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
- package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
- package/coverage/index.html +1 -1
- package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +29 -8
- package/es/form/fields/TagsMultiSelect/props/propTypes.js +5 -1
- package/es/version2/GlobalNotification/GlobalNotification.js +26 -33
- package/es/version2/GlobalNotification/GlobalNotification.module.css +11 -71
- package/es/version2/GlobalNotification/props/propTypes.js +4 -9
- package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +28 -8
- package/lib/form/fields/TagsMultiSelect/props/propTypes.js +5 -1
- package/lib/version2/GlobalNotification/GlobalNotification.js +36 -64
- package/lib/version2/GlobalNotification/GlobalNotification.module.css +11 -71
- package/lib/version2/GlobalNotification/props/propTypes.js +4 -9
- package/package.json +1 -1
- package/result.json +1 -1
|
@@ -37,10 +37,14 @@ var _General = require("../../../utils/General");
|
|
|
37
37
|
|
|
38
38
|
var _Common = require("@zohodesk/components/lib/utils/Common.js");
|
|
39
39
|
|
|
40
|
+
var _MultiSelectHeader = _interopRequireDefault(require("@zohodesk/components/lib/MultiSelect/MultiSelectHeader"));
|
|
41
|
+
|
|
40
42
|
var _TagsMultiSelectModule = _interopRequireDefault(require("./TagsMultiSelect.module.css"));
|
|
41
43
|
|
|
42
44
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
43
45
|
|
|
46
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
47
|
+
|
|
44
48
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
45
49
|
|
|
46
50
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
@@ -200,9 +204,15 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
200
204
|
boxSize = _this$props3.boxSize,
|
|
201
205
|
onSelectTag = _this$props3.onSelectTag,
|
|
202
206
|
clickableTag = _this$props3.clickableTag,
|
|
203
|
-
dataSelectorId = _this$props3.dataSelectorId
|
|
207
|
+
dataSelectorId = _this$props3.dataSelectorId,
|
|
208
|
+
handleSelectAll = _this$props3.handleSelectAll,
|
|
209
|
+
selectAllText = _this$props3.selectAllText,
|
|
210
|
+
needSelectAll = _this$props3.needSelectAll,
|
|
211
|
+
customClass = _this$props3.customClass;
|
|
204
212
|
var showAll = this.state.showAll;
|
|
205
213
|
var chipLimit = !isPopupReady ? showAll ? tagsList.length : chipNeedToShow : tagsList.length;
|
|
214
|
+
var tagCustomClass = customClass.tagCustomClass,
|
|
215
|
+
listItemClass = customClass.listItemClass;
|
|
206
216
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
207
217
|
className: " ".concat(!isReadOnly ? " ".concat(needBorder ? _TagsMultiSelectModule["default"].hasBorder : '', "\n ").concat(needBorder ? _TagsMultiSelectModule["default"]["borderColor_".concat(borderColor)] : _TagsMultiSelectModule["default"].borderColor_transparent, " ").concat(isPopupReady && needBorder ? _TagsMultiSelectModule["default"].active : '') : '', " ").concat(className),
|
|
208
218
|
onClick: _General.stopBubbling,
|
|
@@ -220,18 +230,20 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
220
230
|
}, tagsList.length ? /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, tagsList.map(function (tag, index) {
|
|
221
231
|
var name = tag.name,
|
|
222
232
|
tagType = tag.tagType,
|
|
223
|
-
id = tag.id
|
|
224
|
-
|
|
233
|
+
id = tag.id,
|
|
234
|
+
boxCustomProps = tag.boxCustomProps;
|
|
235
|
+
return index < chipLimit ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, _extends({
|
|
225
236
|
className: _TagsMultiSelectModule["default"].tag,
|
|
226
237
|
key: index
|
|
227
|
-
}, /*#__PURE__*/_react["default"].createElement(_Tag["default"], {
|
|
238
|
+
}, boxCustomProps), /*#__PURE__*/_react["default"].createElement(_Tag["default"], {
|
|
228
239
|
id: id,
|
|
229
240
|
text: name,
|
|
230
241
|
onRemove: isReadOnly ? null : deleteTag.bind(_this3, name),
|
|
231
242
|
closeTitle: i18nKeys.deleteText,
|
|
232
243
|
palette: clickableTag ? 'defaultLink' : tagType === 'SYSTEM' ? 'primary' : 'default',
|
|
233
244
|
isReadOnly: isReadOnly,
|
|
234
|
-
onSelectTag: onSelectTag ? onSelectTag : undefined
|
|
245
|
+
onSelectTag: onSelectTag ? onSelectTag : undefined,
|
|
246
|
+
customClass: tagCustomClass
|
|
235
247
|
})) : null;
|
|
236
248
|
}), tagsList.length > chipNeedToShow && !isPopupReady ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
237
249
|
className: _TagsMultiSelectModule["default"].moreLess,
|
|
@@ -283,7 +295,12 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
283
295
|
alignBox: "row"
|
|
284
296
|
}, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
285
297
|
flexible: true
|
|
286
|
-
},
|
|
298
|
+
}, needSelectAll ? /*#__PURE__*/_react["default"].createElement(_MultiSelectHeader["default"], {
|
|
299
|
+
onSelect: handleSelectAll,
|
|
300
|
+
selectAllText: selectAllText,
|
|
301
|
+
suggestions: searchList,
|
|
302
|
+
dataId: "".concat(dataId, "_selectAll")
|
|
303
|
+
}) : null, isTagListLoading ? /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
287
304
|
align: "both",
|
|
288
305
|
className: "".concat(tabletMode ? '' : _TagsMultiSelectModule["default"].viewpopNew)
|
|
289
306
|
}, /*#__PURE__*/_react["default"].createElement(_Loader["default"], null)) : /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
@@ -296,7 +313,8 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
296
313
|
shrink: true
|
|
297
314
|
}, searchList.map(function (item, index) {
|
|
298
315
|
var name = item.name,
|
|
299
|
-
isNew = item.isNew
|
|
316
|
+
isNew = item.isNew,
|
|
317
|
+
listItemProps = item.listItemProps;
|
|
300
318
|
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, searchList.length > 1 && isNew ? /*#__PURE__*/_react["default"].createElement(_DropDownSeparator["default"], null) : null, /*#__PURE__*/_react["default"].createElement(_ListItem["default"], {
|
|
301
319
|
key: index,
|
|
302
320
|
index: index,
|
|
@@ -307,7 +325,9 @@ var TagsMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
307
325
|
needTick: true,
|
|
308
326
|
highlight: selectSearchIndex === index,
|
|
309
327
|
getRef: _this3.getSelectedItemRef,
|
|
310
|
-
isDisabled: listDisabled
|
|
328
|
+
isDisabled: listDisabled,
|
|
329
|
+
customProps: listItemProps,
|
|
330
|
+
customClass: listItemClass
|
|
311
331
|
}, isNew ? /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
312
332
|
alignBox: "row",
|
|
313
333
|
align: "vertical"
|
|
@@ -50,6 +50,10 @@ var propTypes = {
|
|
|
50
50
|
boxSize: _propTypes["default"].string,
|
|
51
51
|
onSelectTag: _propTypes["default"].func,
|
|
52
52
|
clickableTag: _propTypes["default"].bool,
|
|
53
|
-
dataSelectorId: _propTypes["default"].string
|
|
53
|
+
dataSelectorId: _propTypes["default"].string,
|
|
54
|
+
handleSelectAll: _propTypes["default"].func,
|
|
55
|
+
selectAllText: _propTypes["default"].string,
|
|
56
|
+
needSelectAll: _propTypes["default"].bool,
|
|
57
|
+
customClass: _propTypes["default"].object
|
|
54
58
|
};
|
|
55
59
|
exports.propTypes = propTypes;
|
|
@@ -9,7 +9,7 @@ exports.GlobalNotificationNew = GlobalNotificationNew;
|
|
|
9
9
|
exports.GlobalNotificationUI = GlobalNotificationUI;
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
|
|
12
|
-
var _react =
|
|
12
|
+
var _react = _interopRequireDefault(require("react"));
|
|
13
13
|
|
|
14
14
|
var _defaultProps = require("./props/defaultProps");
|
|
15
15
|
|
|
@@ -25,28 +25,10 @@ var _GlobalNotificationModule = _interopRequireDefault(require("./GlobalNotifica
|
|
|
25
25
|
|
|
26
26
|
var _Layout = require("@zohodesk/components/lib/Layout");
|
|
27
27
|
|
|
28
|
-
var _Common = require("@zohodesk/components/es/utils/Common");
|
|
29
|
-
|
|
30
28
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
31
29
|
|
|
32
|
-
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); }
|
|
33
|
-
|
|
34
|
-
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; }
|
|
35
|
-
|
|
36
30
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
37
31
|
|
|
38
|
-
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
39
|
-
|
|
40
|
-
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
41
|
-
|
|
42
|
-
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
43
|
-
|
|
44
|
-
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
45
|
-
|
|
46
|
-
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
47
|
-
|
|
48
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
49
|
-
|
|
50
32
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
51
33
|
|
|
52
34
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
@@ -81,47 +63,50 @@ var GlobalNotification = /*#__PURE__*/function (_React$Component) {
|
|
|
81
63
|
_this.state = {
|
|
82
64
|
hideMessage: false
|
|
83
65
|
};
|
|
84
|
-
_this.setTimeoutId = null;
|
|
85
66
|
return _this;
|
|
86
67
|
}
|
|
87
68
|
|
|
88
69
|
_createClass(GlobalNotification, [{
|
|
89
|
-
key: "
|
|
90
|
-
value: function
|
|
70
|
+
key: "UNSAFE_componentWillReceiveProps",
|
|
71
|
+
value: function UNSAFE_componentWillReceiveProps(nextProps) {
|
|
91
72
|
var _this$props = this.props,
|
|
73
|
+
showMessage = _this$props.showMessage,
|
|
92
74
|
hideMessage = _this$props.hideMessage,
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
75
|
+
type = _this$props.type;
|
|
76
|
+
|
|
77
|
+
if (showMessage !== nextProps.showMessage || type !== nextProps.type) {
|
|
78
|
+
if (!['danger', 'error', 'warning'].includes(nextProps.type)) {
|
|
79
|
+
setTimeout(function () {
|
|
80
|
+
hideMessage();
|
|
81
|
+
}, 3000);
|
|
82
|
+
}
|
|
101
83
|
}
|
|
102
84
|
}
|
|
103
85
|
}, {
|
|
104
|
-
key: "
|
|
105
|
-
value: function
|
|
106
|
-
|
|
107
|
-
|
|
86
|
+
key: "componentDidMount",
|
|
87
|
+
value: function componentDidMount() {
|
|
88
|
+
var _this$props2 = this.props,
|
|
89
|
+
type = _this$props2.type,
|
|
90
|
+
hideMessage = _this$props2.hideMessage;
|
|
91
|
+
|
|
92
|
+
if (!['danger', 'error', 'warning'].includes(type)) {
|
|
93
|
+
setTimeout(function () {
|
|
94
|
+
hideMessage();
|
|
95
|
+
}, 3000);
|
|
108
96
|
}
|
|
109
97
|
}
|
|
110
98
|
}, {
|
|
111
99
|
key: "render",
|
|
112
100
|
value: function render() {
|
|
113
|
-
var _this$
|
|
114
|
-
type = _this$
|
|
115
|
-
message = _this$
|
|
116
|
-
hideMessage = _this$
|
|
117
|
-
onClick = _this$
|
|
118
|
-
_this$
|
|
119
|
-
i18nKeys = _this$
|
|
120
|
-
customProps = _this$
|
|
121
|
-
dataSelectorId = _this$
|
|
122
|
-
id = _this$props2.id,
|
|
123
|
-
needNotificationExpandUI = _this$props2.needNotificationExpandUI,
|
|
124
|
-
notificationCount = _this$props2.notificationCount;
|
|
101
|
+
var _this$props3 = this.props,
|
|
102
|
+
type = _this$props3.type,
|
|
103
|
+
message = _this$props3.message,
|
|
104
|
+
hideMessage = _this$props3.hideMessage,
|
|
105
|
+
onClick = _this$props3.onClick,
|
|
106
|
+
_this$props3$i18nKeys = _this$props3.i18nKeys,
|
|
107
|
+
i18nKeys = _this$props3$i18nKeys === void 0 ? {} : _this$props3$i18nKeys,
|
|
108
|
+
customProps = _this$props3.customProps,
|
|
109
|
+
dataSelectorId = _this$props3.dataSelectorId;
|
|
125
110
|
var _i18nKeys$closeTitle = i18nKeys.closeTitle,
|
|
126
111
|
closeTitle = _i18nKeys$closeTitle === void 0 ? 'Close' : _i18nKeys$closeTitle;
|
|
127
112
|
return /*#__PURE__*/_react["default"].createElement(GlobalNotificationUI, {
|
|
@@ -131,10 +116,7 @@ var GlobalNotification = /*#__PURE__*/function (_React$Component) {
|
|
|
131
116
|
onClick: onClick,
|
|
132
117
|
closeTitle: closeTitle,
|
|
133
118
|
customProps: customProps,
|
|
134
|
-
dataSelectorId: dataSelectorId
|
|
135
|
-
id: id,
|
|
136
|
-
needNotificationExpandUI: needNotificationExpandUI,
|
|
137
|
-
notificationCount: notificationCount
|
|
119
|
+
dataSelectorId: dataSelectorId
|
|
138
120
|
});
|
|
139
121
|
}
|
|
140
122
|
}]);
|
|
@@ -152,18 +134,10 @@ GlobalNotification.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
|
|
|
152
134
|
// }
|
|
153
135
|
|
|
154
136
|
function GlobalNotificationUI(props) {
|
|
155
|
-
var _useState = (0, _react.useState)(true),
|
|
156
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
157
|
-
shadowClose = _useState2[0],
|
|
158
|
-
setshadowClose = _useState2[1];
|
|
159
|
-
|
|
160
137
|
function onClose(e) {
|
|
161
|
-
setshadowClose(false);
|
|
162
138
|
var hideMessage = props.hideMessage,
|
|
163
|
-
onClose = props.onClose
|
|
164
|
-
|
|
165
|
-
(0, _Common.cancelBubblingEffect)(e);
|
|
166
|
-
hideMessage && hideMessage(id);
|
|
139
|
+
onClose = props.onClose;
|
|
140
|
+
hideMessage && hideMessage(e);
|
|
167
141
|
onClose && onClose(e);
|
|
168
142
|
}
|
|
169
143
|
|
|
@@ -175,13 +149,11 @@ function GlobalNotificationUI(props) {
|
|
|
175
149
|
closeTitle = _props$closeTitle === void 0 ? '' : _props$closeTitle,
|
|
176
150
|
_props$customProps = props.customProps,
|
|
177
151
|
customProps = _props$customProps === void 0 ? {} : _props$customProps,
|
|
178
|
-
dataSelectorId = props.dataSelectorId
|
|
179
|
-
needNotificationExpandUI = props.needNotificationExpandUI,
|
|
180
|
-
notificationCount = props.notificationCount;
|
|
152
|
+
dataSelectorId = props.dataSelectorId;
|
|
181
153
|
var _customProps$ExtraPro = customProps.ExtraProps,
|
|
182
154
|
ExtraProps = _customProps$ExtraPro === void 0 ? {} : _customProps$ExtraPro;
|
|
183
155
|
return /*#__PURE__*/_react["default"].createElement("div", _extends({
|
|
184
|
-
className: "".concat(_GlobalNotificationModule["default"].message, " ").concat(
|
|
156
|
+
className: "".concat(_GlobalNotificationModule["default"].message, " ").concat(type ? _GlobalNotificationModule["default"][type] : ''),
|
|
185
157
|
"data-id": "show_".concat(type, "_message"),
|
|
186
158
|
"data-test-id": "show_".concat(type, "_message"),
|
|
187
159
|
tabIndex: 0,
|
|
@@ -8,97 +8,39 @@
|
|
|
8
8
|
|
|
9
9
|
.message {
|
|
10
10
|
composes: varClass;
|
|
11
|
-
|
|
11
|
+
position: absolute;
|
|
12
12
|
top: 0 ;
|
|
13
|
-
z-index:
|
|
14
|
-
justify-self: center;
|
|
15
|
-
/* overflow: hidden; */
|
|
13
|
+
z-index: 1000;
|
|
16
14
|
/*Hook for editor alert*/
|
|
17
|
-
|
|
15
|
+
pointer-events: none;
|
|
18
16
|
text-align: center;
|
|
19
|
-
left: 0;
|
|
20
|
-
pointer-events: none; */
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.stackShadowTwo::before {
|
|
24
|
-
content: '';
|
|
25
|
-
position: absolute;
|
|
26
|
-
/* css:theme-validation:ignore */
|
|
27
|
-
height: var(--zd_size20) ;
|
|
28
|
-
width: 90% ;
|
|
29
|
-
bottom: calc( var(--zd_size10) * -1 ) ;
|
|
30
|
-
background-color: var(--globalnotification_bg_color);
|
|
31
|
-
border-radius: 0 0 6px 6px;
|
|
32
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
[dir=ltr] .stackShadowTwo::before {
|
|
36
|
-
left: 50% ;
|
|
37
|
-
right: 50% ;
|
|
38
|
-
transform: translate(-50%);
|
|
39
|
-
animation: behindInfo 0.8s forwards;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
[dir=rtl] .stackShadowTwo::before {
|
|
43
|
-
right: 50% ;
|
|
44
|
-
left: 50% ;
|
|
45
|
-
transform: translate(50%);
|
|
46
|
-
animation: behindInfo 0.8s forwards;
|
|
47
17
|
}
|
|
48
18
|
|
|
49
|
-
.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
/* css:theme-validation:ignore */
|
|
53
|
-
height: var(--zd_size20) ;
|
|
54
|
-
width: 95% ;
|
|
55
|
-
bottom: calc( var(--zd_size5) * -1 ) ;
|
|
56
|
-
background-color: var(--globalnotification_bg_color);
|
|
57
|
-
border-radius: 0 0 6px 6px;
|
|
58
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
19
|
+
[dir=ltr] .message {
|
|
20
|
+
right: 0 ;
|
|
21
|
+
left: 0 ;
|
|
59
22
|
}
|
|
60
23
|
|
|
61
|
-
[dir=
|
|
62
|
-
left:
|
|
63
|
-
right:
|
|
64
|
-
transform: translate(-50%);
|
|
65
|
-
animation: behindInfo 0.8s forwards;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
[dir=rtl] .stackShadowOne::after {
|
|
69
|
-
right: 50% ;
|
|
70
|
-
left: 50% ;
|
|
71
|
-
transform: translate(50%);
|
|
72
|
-
animation: behindInfo 0.8s forwards;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
@keyframes behindInfo {
|
|
76
|
-
from, 40% {
|
|
77
|
-
opacity: 0;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
to {
|
|
81
|
-
opacity: 1;
|
|
82
|
-
}
|
|
24
|
+
[dir=rtl] .message {
|
|
25
|
+
left: 0 ;
|
|
26
|
+
right: 0 ;
|
|
83
27
|
}
|
|
84
28
|
|
|
85
29
|
.container {
|
|
86
30
|
position: relative;
|
|
87
31
|
pointer-events: initial;
|
|
88
|
-
/* box-shadow: var(--zd_bs_globalnotification_container); */
|
|
89
32
|
/* css:theme-validation:ignore */
|
|
90
33
|
/* css:theme-validation:ignore */
|
|
91
34
|
/* css:theme-validation:ignore */
|
|
92
35
|
color: var(--globalnotification_text_color);
|
|
93
|
-
width: var(--
|
|
94
|
-
z-index: 1;
|
|
36
|
+
max-width: var(--zd_size490) ;
|
|
95
37
|
composes: wbreak from '~@zohodesk/components/lib/common/common.module.css';
|
|
38
|
+
box-shadow: var(--zd_bs_globalnotification_container);
|
|
96
39
|
border-radius: 0 0 var(--zd_size10) var(--zd_size10);
|
|
97
40
|
background-color: var(--globalnotification_bg_color);
|
|
98
41
|
border-style: solid;
|
|
99
42
|
border-color: var(--commonalert_border_color);
|
|
100
43
|
border-width: 2px 1px 1px 1px;
|
|
101
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
102
44
|
}
|
|
103
45
|
|
|
104
46
|
[dir=ltr] .container {
|
|
@@ -161,8 +103,6 @@
|
|
|
161
103
|
font-family: var(--zd_semibold);
|
|
162
104
|
composes: ftsmooth from '~@zohodesk/components/lib/common/common.module.css';
|
|
163
105
|
line-height: 1.4286;
|
|
164
|
-
overflow: hidden;
|
|
165
|
-
text-overflow: ellipsis;
|
|
166
106
|
}
|
|
167
107
|
|
|
168
108
|
[dir=ltr] .text {
|
|
@@ -19,25 +19,20 @@ var propTypes = {
|
|
|
19
19
|
i18nKeys: _propTypes["default"].object,
|
|
20
20
|
customProps: _propTypes["default"].shape({
|
|
21
21
|
ExtraProps: _propTypes["default"].object
|
|
22
|
-
})
|
|
23
|
-
id: _propTypes["default"].number,
|
|
24
|
-
hideTime: _propTypes["default"].number,
|
|
25
|
-
isFloating: _propTypes["default"].bool,
|
|
26
|
-
isExpand: _propTypes["default"].bool,
|
|
27
|
-
stack: _propTypes["default"].number
|
|
22
|
+
})
|
|
28
23
|
};
|
|
29
24
|
exports.propTypes = propTypes;
|
|
30
25
|
var UI_propTypes = {
|
|
31
26
|
dataSelectorId: _propTypes["default"].string,
|
|
27
|
+
onClose: _propTypes["default"].func,
|
|
32
28
|
closeTitle: _propTypes["default"].string,
|
|
29
|
+
hideMessage: _propTypes["default"].func,
|
|
33
30
|
message: _propTypes["default"].string,
|
|
34
31
|
onClick: _propTypes["default"].func,
|
|
35
32
|
type: _propTypes["default"].oneOf(['success', 'danger', 'info', 'warning', 'error']),
|
|
36
33
|
customProps: _propTypes["default"].shape({
|
|
37
34
|
ExtraProps: _propTypes["default"].object
|
|
38
|
-
})
|
|
39
|
-
isExpand: _propTypes["default"].bool,
|
|
40
|
-
stack: _propTypes["default"].number
|
|
35
|
+
})
|
|
41
36
|
};
|
|
42
37
|
exports.UI_propTypes = UI_propTypes;
|
|
43
38
|
var new_propTypes = {
|
package/package.json
CHANGED
package/result.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"jobDetails":{"isRunByLocal":true,"hostName":"mari-zt368","platForm":"Darwin","branchName":"lineHeightAutomation"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":4,"endTime":1703583094260,"startTime":1703583089101,"coverageDetail":{"codeCoveragePercentage":84.23,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}}]}}}
|
|
1
|
+
{"jobDetails":{"isRunByLocal":true,"hostName":"mari-zt368","platForm":"Darwin","branchName":"lineHeightAutomation"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":4,"endTime":1703657885260,"startTime":1703657876229,"coverageDetail":{"codeCoveragePercentage":84.23,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["should add http/https to href tag if it is not already present","should not add http/https to href tag if it is already present","should default to / if href is undefined"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["Check whether Avatar mounted or not","Check children length ","Check whether AvatarWithTeam mounted or not","Check whether AvatarTeam mounted or not"],"failedCaseList":[]}},{"fileName":"/Users/mari-zt368/React_Package/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}}]}}}
|