@zohodesk/components 1.2.37 → 1.2.38
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/README.md +14 -0
- package/es/CheckBox/CheckBox.js +3 -2
- package/es/CheckBox/props/propTypes.js +2 -1
- package/es/DateTime/DateWidget.js +8 -3
- package/es/DateTime/DateWidget.module.css +1 -0
- package/es/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +3 -3
- package/es/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +1 -1
- package/es/DateTime/__tests__/__snapshots__/Time.spec.js.snap +3 -3
- package/es/DropBox/DropBoxElement/DropBoxElement.js +1 -1
- package/es/DropBox/DropBoxPositionMapping.js +142 -0
- package/es/MultiSelect/MultiSelect.js +11 -3
- package/es/MultiSelect/MultiSelect.module.css +4 -0
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +1 -1
- package/es/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +1 -1
- package/es/MultiSelect/props/defaultProps.js +2 -1
- package/es/MultiSelect/props/propTypes.js +4 -1
- package/es/Popup/Popup.js +1 -1
- package/es/Popup/PositionMapping.js +72 -0
- package/es/Select/Select.js +13 -8
- package/es/Select/Select.module.css +3 -0
- package/es/Select/SelectWithIcon.js +24 -4
- package/es/Select/__tests__/__snapshots__/Select.spec.js.snap +1 -1
- package/es/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +1 -1
- package/es/Select/props/defaultProps.js +2 -1
- package/es/Select/props/propTypes.js +6 -1
- package/es/TextBoxIcon/TextBoxIcon.js +3 -2
- package/es/TextBoxIcon/props/propTypes.js +2 -1
- package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +1 -1
- package/es/v1/Popup/Popup.js +1 -1
- package/lib/CheckBox/CheckBox.js +3 -2
- package/lib/CheckBox/props/propTypes.js +2 -1
- package/lib/DateTime/DateWidget.js +11 -4
- package/lib/DateTime/DateWidget.module.css +1 -0
- package/lib/DateTime/__tests__/__snapshots__/DateTime.spec.js.snap +3 -3
- package/lib/DateTime/__tests__/__snapshots__/DateWidget.spec.js.snap +1 -1
- package/lib/DateTime/__tests__/__snapshots__/Time.spec.js.snap +3 -3
- package/lib/DropBox/DropBoxElement/DropBoxElement.js +1 -1
- package/lib/DropBox/DropBoxPositionMapping.js +149 -0
- package/lib/MultiSelect/MultiSelect.js +12 -4
- package/lib/MultiSelect/MultiSelect.module.css +4 -0
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +1 -1
- package/lib/MultiSelect/__tests__/__snapshots__/MultiSelectWithAvatar.spec.js.snap +1 -1
- package/lib/MultiSelect/props/defaultProps.js +2 -1
- package/lib/MultiSelect/props/propTypes.js +4 -1
- package/lib/Popup/Popup.js +1 -1
- package/lib/Popup/PositionMapping.js +81 -0
- package/lib/Select/Select.js +14 -9
- package/lib/Select/Select.module.css +3 -0
- package/lib/Select/SelectWithIcon.js +33 -6
- package/lib/Select/__tests__/__snapshots__/Select.spec.js.snap +1 -1
- package/lib/Select/__tests__/__snapshots__/SelectWithIcon.spec.js.snap +1 -1
- package/lib/Select/props/defaultProps.js +1 -1
- package/lib/Select/props/propTypes.js +6 -1
- package/lib/TextBoxIcon/TextBoxIcon.js +3 -2
- package/lib/TextBoxIcon/props/propTypes.js +2 -1
- package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +1 -1
- package/lib/v1/Popup/Popup.js +1 -1
- package/package.json +1 -1
- package/result.json +1 -1
- package/es/DropBox/DropBoxPositionMapping.json +0 -145
- package/es/Popup/PositionMapping.json +0 -74
- package/lib/DropBox/DropBoxPositionMapping.json +0 -145
- package/lib/Popup/PositionMapping.json +0 -74
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import useDropboxPosCalc from "../../../DropBox/DropBoxElement/useDropboxPosCalc";
|
|
3
3
|
import cssJSLogic from "../../../DropBox/DropBoxElement/css/cssJSLogic";
|
|
4
|
-
import { positionMapping } from "../../../DropBox/DropBoxPositionMapping.
|
|
4
|
+
import { positionMapping } from "../../../DropBox/DropBoxPositionMapping.js";
|
|
5
5
|
import { DropBoxElementDefaultProps } from "./props/defaultProps";
|
|
6
6
|
import { DropBoxElementPropTypes } from "./props/propTypes";
|
|
7
7
|
import { mergeStyle } from '@zohodesk/utils';
|
package/es/v1/Popup/Popup.js
CHANGED
|
@@ -6,7 +6,7 @@ import hoistStatics from 'hoist-non-react-statics';
|
|
|
6
6
|
|
|
7
7
|
import { debounce, isDescendant, isTextSelected, cancelBubblingEffect } from "../../utils/Common.js";
|
|
8
8
|
import viewPort from "../../Popup/viewPort";
|
|
9
|
-
import { absolutePositionMapping, rtlAbsolutePositionMapping, rtlFixedPositionMapping } from "../../Popup/PositionMapping.
|
|
9
|
+
import { absolutePositionMapping, rtlAbsolutePositionMapping, rtlFixedPositionMapping } from "../../Popup/PositionMapping.js";
|
|
10
10
|
import ResizeObserver from '@zohodesk/virtualizer/lib/commons/ResizeObserver.js';
|
|
11
11
|
let lastOpenedGroup = [];
|
|
12
12
|
let popups = {};
|
package/lib/CheckBox/CheckBox.js
CHANGED
|
@@ -103,7 +103,8 @@ var CheckBox = /*#__PURE__*/function (_React$Component) {
|
|
|
103
103
|
a11y = _this$props3.a11y,
|
|
104
104
|
customClass = _this$props3.customClass,
|
|
105
105
|
customProps = _this$props3.customProps,
|
|
106
|
-
dataSelectorId = _this$props3.dataSelectorId
|
|
106
|
+
dataSelectorId = _this$props3.dataSelectorId,
|
|
107
|
+
renderRightPlaceholderNode = _this$props3.renderRightPlaceholderNode;
|
|
107
108
|
var _customProps$CheckBox = customProps.CheckBoxProps,
|
|
108
109
|
CheckBoxProps = _customProps$CheckBox === void 0 ? {} : _customProps$CheckBox,
|
|
109
110
|
_customProps$LabelPro = customProps.LabelProps,
|
|
@@ -204,7 +205,7 @@ var CheckBox = /*#__PURE__*/function (_React$Component) {
|
|
|
204
205
|
variant: variant,
|
|
205
206
|
customClass: "".concat(active && !disabled ? "".concat(_CheckBoxModule["default"]["active".concat(palette, "Label")]) : '', "\n ").concat(checked && active ? "".concat(_CheckBoxModule["default"]["checked".concat(palette, "Label")]) : '', " \n ").concat(accessMode, " ").concat(customLabel),
|
|
206
207
|
title: toolTip ? toolTip : text
|
|
207
|
-
}, LabelProps))));
|
|
208
|
+
}, LabelProps))), renderRightPlaceholderNode ? renderRightPlaceholderNode : null);
|
|
208
209
|
}
|
|
209
210
|
}]);
|
|
210
211
|
|
|
@@ -47,6 +47,7 @@ var propTypes = {
|
|
|
47
47
|
customProps: _propTypes["default"].shape({
|
|
48
48
|
CheckBoxProps: _propTypes["default"].object,
|
|
49
49
|
LabelProps: _propTypes["default"].object
|
|
50
|
-
})
|
|
50
|
+
}),
|
|
51
|
+
renderRightPlaceholderNode: _propTypes["default"].node
|
|
51
52
|
};
|
|
52
53
|
exports.propTypes = propTypes;
|
|
@@ -47,6 +47,8 @@ var _constants = require("./constants");
|
|
|
47
47
|
|
|
48
48
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
49
49
|
|
|
50
|
+
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); }
|
|
51
|
+
|
|
50
52
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
51
53
|
|
|
52
54
|
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); } }
|
|
@@ -1035,7 +1037,9 @@ var DateWidgetComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
1035
1037
|
var _customProps$DateTime = customProps.DateTimeProps,
|
|
1036
1038
|
DateTimeProps = _customProps$DateTime === void 0 ? {} : _customProps$DateTime,
|
|
1037
1039
|
_customProps$TextBoxP = customProps.TextBoxProps,
|
|
1038
|
-
TextBoxProps = _customProps$TextBoxP === void 0 ? {} : _customProps$TextBoxP
|
|
1040
|
+
TextBoxProps = _customProps$TextBoxP === void 0 ? {} : _customProps$TextBoxP,
|
|
1041
|
+
_customProps$TextBoxI = customProps.TextBoxIconProps,
|
|
1042
|
+
TextBoxIconProps = _customProps$TextBoxI === void 0 ? {} : _customProps$TextBoxI;
|
|
1039
1043
|
var _this$state6 = this.state,
|
|
1040
1044
|
_this$state6$selected = _this$state6.selected,
|
|
1041
1045
|
value = _this$state6$selected === void 0 ? '' : _this$state6$selected,
|
|
@@ -1060,7 +1064,7 @@ var DateWidgetComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
1060
1064
|
className: "".concat(className ? className : '', " ").concat(_DateWidgetModule["default"].textBox, " ").concat(isPopupOpen && !isDisabled ? _DateWidgetModule["default"].textBoxFocus : '', " ").concat(isDisabled ? _DateWidgetModule["default"].disabled : isReadOnly ? _DateWidgetModule["default"].readOnly : _DateWidgetModule["default"].enabled),
|
|
1061
1065
|
onClick: !isAllowedDateType ? isDisabled || isReadOnly ? null : this.handleTogglePopup : null,
|
|
1062
1066
|
ref: getTargetRef
|
|
1063
|
-
}, /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], {
|
|
1067
|
+
}, /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], _extends({
|
|
1064
1068
|
htmlId: htmlId,
|
|
1065
1069
|
value: showValue ? showValue : placeholder,
|
|
1066
1070
|
needBorder: needBorder,
|
|
@@ -1089,10 +1093,13 @@ var DateWidgetComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
1089
1093
|
autoComplete: false,
|
|
1090
1094
|
a11y: a11y,
|
|
1091
1095
|
customProps: TextBoxProps
|
|
1092
|
-
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
1096
|
+
}, TextBoxIconProps), /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
1097
|
+
isInline: true,
|
|
1093
1098
|
align: "both",
|
|
1099
|
+
isCover: false,
|
|
1094
1100
|
onClick: isDisabled || isReadOnly ? null : this.handleDateIconClick,
|
|
1095
|
-
dataId: "".concat(dataId, "_datePicker")
|
|
1101
|
+
dataId: "".concat(dataId, "_datePicker"),
|
|
1102
|
+
className: _DateWidgetModule["default"].datePickIcon
|
|
1096
1103
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
1097
1104
|
name: "ZD-datepicker",
|
|
1098
1105
|
size: "12"
|
|
@@ -670,7 +670,7 @@ exports[`DateTime rendering the isActive is true and isDefaultPosition is true 1
|
|
|
670
670
|
data-test-id="boxComponent"
|
|
671
671
|
>
|
|
672
672
|
<div
|
|
673
|
-
class="
|
|
673
|
+
class="rightPlaceholder inflex rowdir both"
|
|
674
674
|
data-id="containerComponent"
|
|
675
675
|
data-selector-id="container"
|
|
676
676
|
data-test-id="containerComponent"
|
|
@@ -770,7 +770,7 @@ exports[`DateTime rendering the isActive is true and isDefaultPosition is true 1
|
|
|
770
770
|
data-test-id="boxComponent"
|
|
771
771
|
>
|
|
772
772
|
<div
|
|
773
|
-
class="
|
|
773
|
+
class="rightPlaceholder inflex rowdir both"
|
|
774
774
|
data-id="containerComponent"
|
|
775
775
|
data-selector-id="container"
|
|
776
776
|
data-test-id="containerComponent"
|
|
@@ -870,7 +870,7 @@ exports[`DateTime rendering the isActive is true and isDefaultPosition is true 1
|
|
|
870
870
|
data-test-id="boxComponent"
|
|
871
871
|
>
|
|
872
872
|
<div
|
|
873
|
-
class="
|
|
873
|
+
class="rightPlaceholder inflex rowdir both"
|
|
874
874
|
data-id="containerComponent"
|
|
875
875
|
data-selector-id="container"
|
|
876
876
|
data-test-id="containerComponent"
|
|
@@ -52,7 +52,7 @@ exports[`DateWidget rendering the defult props 1`] = `
|
|
|
52
52
|
data-test-id="boxComponent"
|
|
53
53
|
>
|
|
54
54
|
<div
|
|
55
|
-
class="
|
|
55
|
+
class="datePickIcon inflex coldir both"
|
|
56
56
|
data-id="dateWidget_datePicker"
|
|
57
57
|
data-selector-id="container"
|
|
58
58
|
data-test-id="dateWidget_datePicker"
|
|
@@ -77,7 +77,7 @@ exports[`Time rendering the defult props 1`] = `
|
|
|
77
77
|
data-test-id="boxComponent"
|
|
78
78
|
>
|
|
79
79
|
<div
|
|
80
|
-
class="
|
|
80
|
+
class="rightPlaceholder inflex rowdir both"
|
|
81
81
|
data-id="containerComponent"
|
|
82
82
|
data-selector-id="container"
|
|
83
83
|
data-test-id="containerComponent"
|
|
@@ -175,7 +175,7 @@ exports[`Time rendering the defult props 1`] = `
|
|
|
175
175
|
data-test-id="boxComponent"
|
|
176
176
|
>
|
|
177
177
|
<div
|
|
178
|
-
class="
|
|
178
|
+
class="rightPlaceholder inflex rowdir both"
|
|
179
179
|
data-id="containerComponent"
|
|
180
180
|
data-selector-id="container"
|
|
181
181
|
data-test-id="containerComponent"
|
|
@@ -273,7 +273,7 @@ exports[`Time rendering the defult props 1`] = `
|
|
|
273
273
|
data-test-id="boxComponent"
|
|
274
274
|
>
|
|
275
275
|
<div
|
|
276
|
-
class="
|
|
276
|
+
class="rightPlaceholder inflex rowdir both"
|
|
277
277
|
data-id="containerComponent"
|
|
278
278
|
data-selector-id="container"
|
|
279
279
|
data-test-id="containerComponent"
|
|
@@ -11,7 +11,7 @@ var _useDropboxPosCalc2 = _interopRequireDefault(require("./useDropboxPosCalc"))
|
|
|
11
11
|
|
|
12
12
|
var _cssJSLogic2 = _interopRequireDefault(require("./css/cssJSLogic"));
|
|
13
13
|
|
|
14
|
-
var _DropBoxPositionMapping = require("../DropBoxPositionMapping.
|
|
14
|
+
var _DropBoxPositionMapping = require("../DropBoxPositionMapping.js");
|
|
15
15
|
|
|
16
16
|
var _defaultProps = require("./props/defaultProps");
|
|
17
17
|
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.positionMapping = void 0;
|
|
7
|
+
var positionMapping = {
|
|
8
|
+
"bottomCenter": {
|
|
9
|
+
"direction": "bottom",
|
|
10
|
+
"arrowPosition": "mid",
|
|
11
|
+
"positionStyle": "bottomMid"
|
|
12
|
+
},
|
|
13
|
+
"bottomLeftToRight": {
|
|
14
|
+
"direction": "bottom",
|
|
15
|
+
"arrowPosition": "start",
|
|
16
|
+
"positionStyle": "bottomEnd"
|
|
17
|
+
},
|
|
18
|
+
"bottomCenterToRight": {
|
|
19
|
+
"direction": "bottom",
|
|
20
|
+
"arrowPosition": "start",
|
|
21
|
+
"positionStyle": "bottomEnd"
|
|
22
|
+
},
|
|
23
|
+
"bottomRightToLeft": {
|
|
24
|
+
"direction": "bottom",
|
|
25
|
+
"arrowPosition": "end",
|
|
26
|
+
"positionStyle": "bottomStart"
|
|
27
|
+
},
|
|
28
|
+
"bottomCenterToLeft": {
|
|
29
|
+
"direction": "bottom",
|
|
30
|
+
"arrowPosition": "end",
|
|
31
|
+
"positionStyle": "bottomStart"
|
|
32
|
+
},
|
|
33
|
+
"topCenter": {
|
|
34
|
+
"direction": "top",
|
|
35
|
+
"arrowPosition": "mid",
|
|
36
|
+
"positionStyle": "topMid"
|
|
37
|
+
},
|
|
38
|
+
"topLeftToRight": {
|
|
39
|
+
"direction": "top",
|
|
40
|
+
"arrowPosition": "start",
|
|
41
|
+
"positionStyle": "topEnd"
|
|
42
|
+
},
|
|
43
|
+
"topCenterToRight": {
|
|
44
|
+
"direction": "top",
|
|
45
|
+
"arrowPosition": "start",
|
|
46
|
+
"positionStyle": "topEnd"
|
|
47
|
+
},
|
|
48
|
+
"topRightToLeft": {
|
|
49
|
+
"direction": "top",
|
|
50
|
+
"arrowPosition": "end",
|
|
51
|
+
"positionStyle": "topStart"
|
|
52
|
+
},
|
|
53
|
+
"topCenterToLeft": {
|
|
54
|
+
"direction": "top",
|
|
55
|
+
"arrowPosition": "end",
|
|
56
|
+
"positionStyle": "topStart"
|
|
57
|
+
},
|
|
58
|
+
"rightCenter": {
|
|
59
|
+
"direction": "right",
|
|
60
|
+
"arrowPosition": "mid",
|
|
61
|
+
"positionStyle": "rightMid"
|
|
62
|
+
},
|
|
63
|
+
"rightTopToBottom": {
|
|
64
|
+
"direction": "right",
|
|
65
|
+
"arrowPosition": "start",
|
|
66
|
+
"positionStyle": "rightEnd"
|
|
67
|
+
},
|
|
68
|
+
"rightCenterToBottom": {
|
|
69
|
+
"direction": "right",
|
|
70
|
+
"arrowPosition": "start",
|
|
71
|
+
"positionStyle": "rightEnd"
|
|
72
|
+
},
|
|
73
|
+
"rightBottomToTop": {
|
|
74
|
+
"direction": "right",
|
|
75
|
+
"arrowPosition": "end",
|
|
76
|
+
"positionStyle": "rightStart"
|
|
77
|
+
},
|
|
78
|
+
"rightCenterToTop": {
|
|
79
|
+
"direction": "right",
|
|
80
|
+
"arrowPosition": "end",
|
|
81
|
+
"positionStyle": "rightStart"
|
|
82
|
+
},
|
|
83
|
+
"leftCenter": {
|
|
84
|
+
"direction": "left",
|
|
85
|
+
"arrowPosition": "mid",
|
|
86
|
+
"positionStyle": "leftMid"
|
|
87
|
+
},
|
|
88
|
+
"leftTopToBottom": {
|
|
89
|
+
"direction": "left",
|
|
90
|
+
"arrowPosition": "start",
|
|
91
|
+
"positionStyle": "leftEnd"
|
|
92
|
+
},
|
|
93
|
+
"leftCenterToBottom": {
|
|
94
|
+
"direction": "left",
|
|
95
|
+
"arrowPosition": "start",
|
|
96
|
+
"positionStyle": "leftEnd"
|
|
97
|
+
},
|
|
98
|
+
"leftBottomToTop": {
|
|
99
|
+
"direction": "left",
|
|
100
|
+
"arrowPosition": "end",
|
|
101
|
+
"positionStyle": "leftStart"
|
|
102
|
+
},
|
|
103
|
+
"leftCenterToTop": {
|
|
104
|
+
"direction": "left",
|
|
105
|
+
"arrowPosition": "end",
|
|
106
|
+
"positionStyle": "leftStart"
|
|
107
|
+
},
|
|
108
|
+
"bottomRight": {
|
|
109
|
+
"direction": "bottom",
|
|
110
|
+
"arrowPosition": "start",
|
|
111
|
+
"positionStyle": "bottomEnd"
|
|
112
|
+
},
|
|
113
|
+
"bottomLeft": {
|
|
114
|
+
"direction": "bottom",
|
|
115
|
+
"arrowPosition": "end",
|
|
116
|
+
"positionStyle": "bottomStart"
|
|
117
|
+
},
|
|
118
|
+
"topRight": {
|
|
119
|
+
"direction": "top",
|
|
120
|
+
"arrowPosition": "start",
|
|
121
|
+
"positionStyle": "topEnd"
|
|
122
|
+
},
|
|
123
|
+
"topLeft": {
|
|
124
|
+
"direction": "top",
|
|
125
|
+
"arrowPosition": "end",
|
|
126
|
+
"positionStyle": "topStart"
|
|
127
|
+
},
|
|
128
|
+
"rightBottom": {
|
|
129
|
+
"direction": "right",
|
|
130
|
+
"arrowPosition": "start",
|
|
131
|
+
"positionStyle": "rightEnd"
|
|
132
|
+
},
|
|
133
|
+
"rightTop": {
|
|
134
|
+
"direction": "right",
|
|
135
|
+
"arrowPosition": "end",
|
|
136
|
+
"positionStyle": "rightStart"
|
|
137
|
+
},
|
|
138
|
+
"leftBottom": {
|
|
139
|
+
"direction": "left",
|
|
140
|
+
"arrowPosition": "start",
|
|
141
|
+
"positionStyle": "leftEnd"
|
|
142
|
+
},
|
|
143
|
+
"leftTop": {
|
|
144
|
+
"direction": "left",
|
|
145
|
+
"arrowPosition": "end",
|
|
146
|
+
"positionStyle": "leftStart"
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
exports.positionMapping = positionMapping;
|
|
@@ -57,6 +57,8 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
57
57
|
|
|
58
58
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
59
59
|
|
|
60
|
+
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); }
|
|
61
|
+
|
|
60
62
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
61
63
|
|
|
62
64
|
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."); }
|
|
@@ -945,7 +947,8 @@ var MultiSelectComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
945
947
|
dataId = _this$props14.dataId,
|
|
946
948
|
setAriaId = _this$props14.setAriaId,
|
|
947
949
|
isPopupOpen = _this$props14.isPopupOpen,
|
|
948
|
-
ariaErrorId = _this$props14.ariaErrorId
|
|
950
|
+
ariaErrorId = _this$props14.ariaErrorId,
|
|
951
|
+
customProps = _this$props14.customProps;
|
|
949
952
|
var _this$state8 = this.state,
|
|
950
953
|
isActive = _this$state8.isActive,
|
|
951
954
|
selectedOptions = _this$state8.selectedOptions,
|
|
@@ -964,6 +967,8 @@ var MultiSelectComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
964
967
|
isShowClear = _this$getIsShowClearI.isShowClearIcon;
|
|
965
968
|
|
|
966
969
|
var isShowClearIcon = !isReadOnly && !isDisabled && !disableAction && isShowClear;
|
|
970
|
+
var _customProps$TextBoxI = customProps.TextBoxIconProps,
|
|
971
|
+
TextBoxIconProps = _customProps$TextBoxI === void 0 ? {} : _customProps$TextBoxI;
|
|
967
972
|
return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
968
973
|
align: "vertical",
|
|
969
974
|
alignBox: "row",
|
|
@@ -987,7 +992,7 @@ var MultiSelectComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
987
992
|
shrink: true
|
|
988
993
|
}, /*#__PURE__*/_react["default"].createElement("span", {
|
|
989
994
|
className: " ".concat(_MultiSelectModule["default"].custmSpan, " ").concat(textBoxSize === 'xmedium' ? _MultiSelectModule["default"].custmSpanXmedium : _MultiSelectModule["default"].custmSpanMedium, " ").concat(isShowClearIcon ? _MultiSelectModule["default"].clearIconSpace : '', "\n ").concat(customChildrenClass ? customChildrenClass : '')
|
|
990
|
-
}, searchStr), /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], {
|
|
995
|
+
}, searchStr), /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], _extends({
|
|
991
996
|
isDisabled: isDisabled,
|
|
992
997
|
inputRef: this.searchInputRef,
|
|
993
998
|
needBorder: false,
|
|
@@ -1019,9 +1024,12 @@ var MultiSelectComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
1019
1024
|
ariaLabelledby: ariaLabelledby
|
|
1020
1025
|
},
|
|
1021
1026
|
autoComplete: autoComplete
|
|
1022
|
-
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
1027
|
+
}, TextBoxIconProps), /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
1028
|
+
isInline: true,
|
|
1029
|
+
isCover: false,
|
|
1023
1030
|
alignBox: "row",
|
|
1024
|
-
align: "vertical"
|
|
1031
|
+
align: "vertical",
|
|
1032
|
+
className: _MultiSelectModule["default"].rightPlaceholder
|
|
1025
1033
|
}, isShowClearIcon ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
1026
1034
|
className: "".concat(_MultiSelectModule["default"]["delete"], " ").concat(_MultiSelectModule["default"]["".concat(palette, "Delete")]),
|
|
1027
1035
|
dataId: "".concat(dataId, "_clearIcon"),
|
|
@@ -70,7 +70,7 @@ exports[`MultiSelect rendering the defult props 1`] = `
|
|
|
70
70
|
data-test-id="boxComponent"
|
|
71
71
|
>
|
|
72
72
|
<div
|
|
73
|
-
class="
|
|
73
|
+
class="rightPlaceholder inflex rowdir vCenter"
|
|
74
74
|
data-id="containerComponent"
|
|
75
75
|
data-selector-id="container"
|
|
76
76
|
data-test-id="containerComponent"
|
|
@@ -69,7 +69,7 @@ exports[`MultiSelectWithAvatar rendering the defult props 1`] = `
|
|
|
69
69
|
data-test-id="boxComponent"
|
|
70
70
|
>
|
|
71
71
|
<div
|
|
72
|
-
class="
|
|
72
|
+
class="rightPlaceholder inflex rowdir vCenter"
|
|
73
73
|
data-id="containerComponent"
|
|
74
74
|
data-selector-id="container"
|
|
75
75
|
data-test-id="containerComponent"
|
|
@@ -122,7 +122,8 @@ var MultiSelect_defaultProps = {
|
|
|
122
122
|
keepSelectedOptions: false,
|
|
123
123
|
selectedOptionsCount: 0,
|
|
124
124
|
cardHeaderName: '',
|
|
125
|
-
needResponsive: true
|
|
125
|
+
needResponsive: true,
|
|
126
|
+
customProps: {}
|
|
126
127
|
};
|
|
127
128
|
exports.MultiSelect_defaultProps = MultiSelect_defaultProps;
|
|
128
129
|
var MultiSelectHeader_defaultProps = {
|
|
@@ -121,7 +121,10 @@ var MultiSelect_propTypes = {
|
|
|
121
121
|
needSelectAll: _propTypes["default"].bool,
|
|
122
122
|
selectAllText: _propTypes["default"].string,
|
|
123
123
|
setAriaId: _propTypes["default"].string,
|
|
124
|
-
ariaErrorId: _propTypes["default"].string
|
|
124
|
+
ariaErrorId: _propTypes["default"].string,
|
|
125
|
+
customProps: _propTypes["default"].shape({
|
|
126
|
+
TextBoxIconProps: _propTypes["default"].object
|
|
127
|
+
})
|
|
125
128
|
};
|
|
126
129
|
exports.MultiSelect_propTypes = MultiSelect_propTypes;
|
|
127
130
|
var MultiSelectHeader_propTypes = {
|
package/lib/Popup/Popup.js
CHANGED
|
@@ -17,7 +17,7 @@ var _Common = require("../utils/Common.js");
|
|
|
17
17
|
|
|
18
18
|
var _viewPort = _interopRequireDefault(require("./viewPort"));
|
|
19
19
|
|
|
20
|
-
var _PositionMapping = require("./PositionMapping.
|
|
20
|
+
var _PositionMapping = require("./PositionMapping.js");
|
|
21
21
|
|
|
22
22
|
var _ResizeObserver = _interopRequireDefault(require("@zohodesk/virtualizer/lib/commons/ResizeObserver.js"));
|
|
23
23
|
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.rtlFixedPositionMapping = exports.rtlAbsolutePositionMapping = exports.absolutePositionMapping = void 0;
|
|
7
|
+
var absolutePositionMapping = {
|
|
8
|
+
"bottomCenter": "bottomCenter",
|
|
9
|
+
"bottomRight": "bottomLeftToRight",
|
|
10
|
+
"bottomLeft": "bottomRightToLeft",
|
|
11
|
+
"topCenter": "topCenter",
|
|
12
|
+
"topRight": "topLeftToRight",
|
|
13
|
+
"topLeft": "topRightToLeft",
|
|
14
|
+
"rightCenter": "rightCenter",
|
|
15
|
+
"rightBottom": "rightTopToBottom",
|
|
16
|
+
"rightTop": "rightBottomToTop",
|
|
17
|
+
"leftCenter": "leftCenter",
|
|
18
|
+
"leftBottom": "leftTopToBottom",
|
|
19
|
+
"leftTop": "leftBottomToTop",
|
|
20
|
+
"bottomLeftToRight": "bottomLeftToRight",
|
|
21
|
+
"bottomRightToLeft": "bottomRightToLeft",
|
|
22
|
+
"topLeftToRight": "topLeftToRight",
|
|
23
|
+
"topRightToLeft": "topRightToLeft",
|
|
24
|
+
"rightTopToBottom": "rightTopToBottom",
|
|
25
|
+
"rightBottomToTop": "rightBottomToTop",
|
|
26
|
+
"leftTopToBottom": "leftTopToBottom"
|
|
27
|
+
};
|
|
28
|
+
exports.absolutePositionMapping = absolutePositionMapping;
|
|
29
|
+
var rtlAbsolutePositionMapping = {
|
|
30
|
+
"bottomCenter": "bottomCenter",
|
|
31
|
+
"bottomRight": "bottomRightToLeft",
|
|
32
|
+
"bottomLeft": "bottomLeftToRight",
|
|
33
|
+
"topCenter": "topCenter",
|
|
34
|
+
"topRight": "topRightToLeft",
|
|
35
|
+
"topLeft": "topLeftToRight",
|
|
36
|
+
"rightCenter": "leftCenter",
|
|
37
|
+
"rightBottom": "leftTopToBottom",
|
|
38
|
+
"rightTop": "leftBottomToTop",
|
|
39
|
+
"leftCenter": "rightCenter",
|
|
40
|
+
"leftBottom": "rightTopToBottom",
|
|
41
|
+
"leftTop": "rightBottomToTop",
|
|
42
|
+
"bottomLeftToRight": "bottomLeftToRight",
|
|
43
|
+
"bottomRightToLeft": "bottomRightToLeft",
|
|
44
|
+
"topLeftToRight": "topLeftToRight",
|
|
45
|
+
"topRightToLeft": "topRightToLeft",
|
|
46
|
+
"rightTopToBottom": "rightTopToBottom",
|
|
47
|
+
"rightBottomToTop": "rightBottomToTop",
|
|
48
|
+
"leftTopToBottom": "leftTopToBottom"
|
|
49
|
+
};
|
|
50
|
+
exports.rtlAbsolutePositionMapping = rtlAbsolutePositionMapping;
|
|
51
|
+
var rtlFixedPositionMapping = {
|
|
52
|
+
"bottomCenter": "bottomCenter",
|
|
53
|
+
"bottomLeftToRight": "bottomRightToLeft",
|
|
54
|
+
"bottomCenterToRight": "bottomCenterToLeft",
|
|
55
|
+
"bottomRightToLeft": "bottomLeftToRight",
|
|
56
|
+
"bottomCenterToLeft": "bottomCenterToRight",
|
|
57
|
+
"topCenter": "topCenter",
|
|
58
|
+
"topLeftToRight": "topRightToLeft",
|
|
59
|
+
"topCenterToRight": "topCenterToLeft",
|
|
60
|
+
"topRightToLeft": "topLeftToRight",
|
|
61
|
+
"topCenterToLeft": "topCenterToRight",
|
|
62
|
+
"rightTopToBottom": "leftTopToBottom",
|
|
63
|
+
"rightCenterToBottom": "leftCenterToBottom",
|
|
64
|
+
"rightCenter": "leftCenter",
|
|
65
|
+
"rightBottomToTop": "leftBottomToTop",
|
|
66
|
+
"rightCenterToTop": "leftCenterToTop",
|
|
67
|
+
"leftTopToBottom": "rightTopToBottom",
|
|
68
|
+
"leftCenterToBottom": "rightCenterToBottom",
|
|
69
|
+
"leftCenter": "rightCenter",
|
|
70
|
+
"leftBottomToTop": "rightBottomToTop",
|
|
71
|
+
"leftCenterToTop": "rightCenterToTop",
|
|
72
|
+
"bottomRight": "bottomLeft",
|
|
73
|
+
"bottomLeft": "bottomRight",
|
|
74
|
+
"topRight": "topLeft",
|
|
75
|
+
"topLeft": "topRight",
|
|
76
|
+
"rightBottom": "leftBottom",
|
|
77
|
+
"rightTop": "leftTop",
|
|
78
|
+
"leftBottom": "rightBottom",
|
|
79
|
+
"leftTop": "rightTop"
|
|
80
|
+
};
|
|
81
|
+
exports.rtlFixedPositionMapping = rtlFixedPositionMapping;
|
package/lib/Select/Select.js
CHANGED
|
@@ -798,7 +798,9 @@ var SelectComponent = /*#__PURE__*/function (_Component) {
|
|
|
798
798
|
_customProps$Dropdown = customProps.DropdownSearchTextBoxProps,
|
|
799
799
|
DropdownSearchTextBoxProps = _customProps$Dropdown === void 0 ? {} : _customProps$Dropdown,
|
|
800
800
|
_customProps$Suggesti = customProps.SuggestionsProps,
|
|
801
|
-
SuggestionsProps = _customProps$Suggesti === void 0 ? {} : _customProps$Suggesti
|
|
801
|
+
SuggestionsProps = _customProps$Suggesti === void 0 ? {} : _customProps$Suggesti,
|
|
802
|
+
_customProps$TextBoxI = customProps.TextBoxIconProps,
|
|
803
|
+
TextBoxIconProps = _customProps$TextBoxI === void 0 ? {} : _customProps$TextBoxI;
|
|
802
804
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
803
805
|
className: "".concat(isParentBased || isReadOnly || isDisabled ? _SelectModule["default"].container : '', " ").concat(_SelectModule["default"]["box_".concat(size)], " ").concat(isReadOnly ? _SelectModule["default"].readonly : '', " ").concat(borderColor === 'transparent' ? _SelectModule["default"].transparentContainer : '', " ").concat(iconOnHover && (isReadOnly || isDisabled) ? _SelectModule["default"].iconOnHoverReadonly : iconOnHover && !(isReadOnly || isDisabled) ? _SelectModule["default"].iconOnHoverStyle : ''),
|
|
804
806
|
"data-title": isDisabled ? title : null,
|
|
@@ -809,7 +811,7 @@ var SelectComponent = /*#__PURE__*/function (_Component) {
|
|
|
809
811
|
ref: getTargetRef,
|
|
810
812
|
"data-id": "".concat(isDisabled ? "".concat(dataId, "_disabled") : isReadOnly ? "".concat(dataId, "_readOnly") : dataId),
|
|
811
813
|
"data-test-id": "".concat(isDisabled ? "".concat(dataId, "_disabled") : isReadOnly ? "".concat(dataId, "_readOnly") : dataId)
|
|
812
|
-
}, needSelectDownIcon ? /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], {
|
|
814
|
+
}, needSelectDownIcon ? /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], _extends({
|
|
813
815
|
a11y: {
|
|
814
816
|
role: 'Menuitem',
|
|
815
817
|
ariaLabel: TextBox_ally_label,
|
|
@@ -851,13 +853,13 @@ var SelectComponent = /*#__PURE__*/function (_Component) {
|
|
|
851
853
|
'data-title': title || selected
|
|
852
854
|
}, TextBoxProps)
|
|
853
855
|
}
|
|
854
|
-
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
856
|
+
}, TextBoxIconProps), /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
857
|
+
isInline: true,
|
|
858
|
+
isCover: false,
|
|
855
859
|
alignBox: "row",
|
|
856
|
-
align: "both"
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
dataId: "".concat(dataId, "_children")
|
|
860
|
-
}, children) : null, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
860
|
+
align: "both",
|
|
861
|
+
className: _SelectModule["default"].rightPlaceholder
|
|
862
|
+
}, /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
|
|
861
863
|
align: "both",
|
|
862
864
|
dataId: "".concat(dataId, "_downIcon"),
|
|
863
865
|
"aria-hidden": true,
|
|
@@ -865,7 +867,10 @@ var SelectComponent = /*#__PURE__*/function (_Component) {
|
|
|
865
867
|
}, /*#__PURE__*/_react["default"].createElement(_icons.Icon, {
|
|
866
868
|
name: "ZD-down",
|
|
867
869
|
size: "7"
|
|
868
|
-
}))
|
|
870
|
+
})), children ? /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
|
|
871
|
+
className: isPopupOpen ? _SelectModule["default"].rotate : '',
|
|
872
|
+
dataId: "".concat(dataId, "_children")
|
|
873
|
+
}, children) : null)) : /*#__PURE__*/_react["default"].createElement(_TextBox["default"], {
|
|
869
874
|
a11y: {
|
|
870
875
|
role: 'Menuitem',
|
|
871
876
|
ariaLabel: TextBox_ally_label,
|