@zohodesk/components 1.5.5 → 1.5.7

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/README.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development across projects.
4
4
 
5
+ # 1.5.7
6
+
7
+ - **ListContainer, ListItem, ListItemWithIcon**
8
+ - `danger` value supported for the **palette** prop.
9
+
10
+ # 1.5.6
11
+
12
+ - **ListItemWithRadio, ListItemWithCheckBox**
13
+ - `needBorder` prop supported
14
+
15
+ - **ArrowIcon**
16
+ - Fixes of visible state and color from the container hover
17
+
18
+ - **AppContainer**
19
+ - The --zd-font-family variable now includes an empty string ('') as its fallback font-family value.
20
+
5
21
  # 1.5.5
6
22
 
7
23
  - **Popup**
@@ -183,6 +183,8 @@
183
183
  --zdt_listitem_active_border: var(--zdt_cta_primary_border);
184
184
  --zdt_listitem_primary_bg: var(--dot_listItemActive);
185
185
  --zdt_listitem_secondary_bg: var(--zdtm_cta_primary_bg_default);
186
+ --zdt_listitem_danger_bg: rgba(255, 107, 107, 0.05);
187
+ --zdt_listitem_danger_text: hsla(0, 100.00%, calc(70.98% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
186
188
  --zdt_listitem_secondary_text: hsla(0, 0.00%, calc(12.94% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
187
189
 
188
190
  /* ribbon */
@@ -183,6 +183,8 @@
183
183
  --zdt_listitem_active_border: var(--zdt_cta_primary_border);
184
184
  --zdt_listitem_primary_bg: var(--dot_listItemActive);
185
185
  --zdt_listitem_secondary_bg: var(--zdtm_cta_primary_bg_default);
186
+ --zdt_listitem_danger_bg: rgb(253,243,243);
187
+ --zdt_listitem_danger_text: hsla(0, 71.91%, calc(53.92% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
186
188
  --zdt_listitem_secondary_text: hsla(0, 0.00%, calc(100.00% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
187
189
 
188
190
  /* ribbon */
@@ -183,6 +183,8 @@
183
183
  --zdt_listitem_active_border: var(--zdt_cta_primary_border);
184
184
  --zdt_listitem_primary_bg: var(--dot_listItemActive);
185
185
  --zdt_listitem_secondary_bg: var(--zdtm_cta_primary_bg_default);
186
+ --zdt_listitem_danger_bg: rgba(255, 107, 107, 0.05);
187
+ --zdt_listitem_danger_text: hsla(0, 100.00%, calc(70.98% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
186
188
  --zdt_listitem_secondary_text: hsla(0, 0.00%, calc(12.94% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
187
189
 
188
190
  /* ribbon */
@@ -10,7 +10,7 @@
10
10
  }
11
11
  .container, .container button, .container input, .container textarea ,.container select {
12
12
  /* font-family: var(--zd_regular); */
13
- font-family: var(--zd-font-family), var(--zd_fallback_font, ZDLato);
13
+ font-family: var(--zd-font-family, ''), var(--zd_fallback_font, ZDLato);
14
14
  }
15
15
  .tooltip {
16
16
  height: 0 ;
@@ -136,7 +136,7 @@
136
136
  .lhsBox_large {
137
137
  max-height: calc(var(--listitem_doubleline_content_height) + var(--zd_size15)); /* 15px = listitem min-height - (top + bottom padding) - doubleLine content height */
138
138
  }
139
- .defaultHover, .primaryHover, .secondaryHover, .darkHover {
139
+ .defaultHover, .primaryHover, .dangerHover, .secondaryHover, .darkHover {
140
140
  background-color: var(--listitem_highlight_bg_color);
141
141
  }
142
142
  .activewithBorder {
@@ -155,6 +155,13 @@
155
155
  {
156
156
  --listitem_bg_color: var(--zdt_listitem_highlight_bg);
157
157
  }
158
+ .activedanger,
159
+ .dangerHover,
160
+ .dangerEffect:hover {
161
+ --listitem_bg_color: var(--zdt_listitem_danger_bg);
162
+ --listitem_highlight_bg_color: var(--zdt_listitem_danger_bg);
163
+ --listitem_text_color: var(--zdt_listitem_danger_text)
164
+ }
158
165
  .primaryHover,
159
166
  .primaryEffect:hover
160
167
  /* .primaryEffect:focus */
@@ -177,7 +184,7 @@
177
184
  --listitem_bg_color: var(--zdt_listitem_dark_effect_bg);
178
185
  --listitem_highlight_bg_color: var(--zdt_listitem_dark_effect_bg);
179
186
  }
180
- .activedefault, .activeprimary, .activesecondary, .activedark {
187
+ .activedefault, .activeprimary, .activedanger, .activesecondary, .activedark {
181
188
  background-color: var(--listitem_active_bg_color);
182
189
  }
183
190
  .activedefault,
@@ -186,6 +193,10 @@
186
193
  .activeprimary:hover {
187
194
  --listitem_active_bg_color: var(--zdt_listitem_primary_bg);
188
195
  }
196
+ .activedanger,
197
+ .activedanger:hover {
198
+ --listitem_active_bg_color: var(--zdt_listitem_danger_bg);
199
+ }
189
200
  .activesecondary {
190
201
  --listitem_active_bg_color: var(--zdt_listitem_secondary_bg);
191
202
  --listitem_text_color: var(--zdt_listitem_secondary_text);
@@ -52,6 +52,7 @@ export default class ListItemWithCheckBox extends React.Component {
52
52
  checked,
53
53
  autoHover,
54
54
  palette,
55
+ needBorder,
55
56
  dataId,
56
57
  dataSelectorId,
57
58
  title,
@@ -88,6 +89,7 @@ export default class ListItemWithCheckBox extends React.Component {
88
89
  isDisabled: isDisabled,
89
90
  active: active,
90
91
  autoHover: autoHover,
92
+ needBorder: needBorder,
91
93
  customClass: customListItem,
92
94
  dataId: `${dataId ? dataId : value}_ListItemWithCheckBox`,
93
95
  dataSelectorId: dataSelectorId,
@@ -52,6 +52,7 @@ export default class ListItemWithRadio extends React.Component {
52
52
  checked,
53
53
  autoHover,
54
54
  palette,
55
+ needBorder,
55
56
  id,
56
57
  dataId,
57
58
  dataSelectorId,
@@ -89,6 +90,7 @@ export default class ListItemWithRadio extends React.Component {
89
90
  isDisabled: isDisabled,
90
91
  active: active,
91
92
  autoHover: autoHover,
93
+ needBorder: needBorder,
92
94
  customClass: customListItem,
93
95
  dataId: dataId,
94
96
  dataSelectorId: dataSelectorId,
@@ -56,6 +56,7 @@ export const ListItemWithCheckBoxDefaultProps = {
56
56
  autoHover: false,
57
57
  checked: false,
58
58
  highlight: false,
59
+ needBorder: true,
59
60
  palette: 'default',
60
61
  size: 'medium',
61
62
  value: 'List',
@@ -91,6 +92,7 @@ export const ListItemWithRadioDefaultProps = {
91
92
  autoHover: false,
92
93
  checked: false,
93
94
  highlight: false,
95
+ needBorder: true,
94
96
  palette: 'default',
95
97
  size: 'medium',
96
98
  value: 'List',
@@ -17,7 +17,7 @@ export const ListContainer_Props = {
17
17
  onClick: PropTypes.func,
18
18
  onMouseEnter: PropTypes.func,
19
19
  onMouseOver: PropTypes.func,
20
- palette: PropTypes.oneOf(['default', 'primary', 'secondary', 'dark']),
20
+ palette: PropTypes.oneOf(['default', 'primary', 'secondary', 'dark', 'danger']),
21
21
  size: PropTypes.oneOf(['small', 'medium', 'large']),
22
22
  target: PropTypes.oneOf(['blank', 'self']),
23
23
  title: PropTypes.string,
@@ -48,7 +48,7 @@ export const ListItem_Props = {
48
48
  needTick: PropTypes.bool,
49
49
  onClick: PropTypes.func,
50
50
  onMouseEnter: PropTypes.func,
51
- palette: PropTypes.oneOf(['default', 'primary', 'secondary', 'dark']),
51
+ palette: PropTypes.oneOf(['default', 'primary', 'secondary', 'dark', 'danger']),
52
52
  size: PropTypes.oneOf(['small', 'medium', 'large']),
53
53
  target: PropTypes.oneOf(['blank', 'self']),
54
54
  title: PropTypes.string,
@@ -137,6 +137,7 @@ export const ListItemWithCheckBox_Props = {
137
137
  title: PropTypes.string,
138
138
  value: PropTypes.string,
139
139
  secondaryValue: PropTypes.string,
140
+ needBorder: PropTypes.bool,
140
141
  renderValueRightPlaceholderNode: PropTypes.oneOfType([PropTypes.node, PropTypes.func]),
141
142
  lhsAlignContent: PropTypes.oneOf(['start', 'center', 'end']),
142
143
  lhsJustifyContent: PropTypes.oneOf(['start', 'center', 'end']),
@@ -171,7 +172,7 @@ export const ListItemWithIcon_Props = {
171
172
  needTick: PropTypes.bool,
172
173
  onClick: PropTypes.func,
173
174
  onMouseEnter: PropTypes.func,
174
- palette: PropTypes.string,
175
+ palette: PropTypes.oneOf(['default', 'primary', 'secondary', 'dark', 'danger']),
175
176
  size: PropTypes.string,
176
177
  title: PropTypes.string,
177
178
  value: PropTypes.string,
@@ -213,6 +214,7 @@ export const ListItemWithRadio_Props = {
213
214
  title: PropTypes.string,
214
215
  value: PropTypes.string,
215
216
  secondaryValue: PropTypes.string,
217
+ needBorder: PropTypes.bool,
216
218
  renderValueRightPlaceholderNode: PropTypes.oneOfType([PropTypes.node, PropTypes.func]),
217
219
  lhsAlignContent: PropTypes.oneOf(['start', 'center', 'end']),
218
220
  lhsJustifyContent: PropTypes.oneOf(['start', 'center', 'end']),
@@ -13,7 +13,7 @@
13
13
  visibility: hidden;
14
14
  }
15
15
 
16
- .transparentContainer .rotated,
16
+ .transparentContainer .active,
17
17
  .transparentContainer:hover .arrowIcon {
18
18
  opacity: 1;
19
19
  visibility: visible;
@@ -29,8 +29,7 @@
29
29
 
30
30
  .rotated,
31
31
  .active,
32
- .arrowContainer:hover .arrowIcon,
33
- .transparentContainer:hover .arrowIcon {
32
+ .arrowContainer:hover .arrowIcon {
34
33
  --local-arrowIcon-color: var(--zdt_arrowicon_hover_icon);
35
34
  }
36
35
 
@@ -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.js";
4
+ import { positionMapping } from '@zohodesk/dotkit/es/react/components/Popup/utils/positioning';
5
5
  import { DropBoxElementDefaultProps } from "./props/defaultProps";
6
6
  import { DropBoxElementPropTypes } from "./props/propTypes";
7
7
  import { mergeStyle } from '@zohodesk/utils';
@@ -10,7 +10,7 @@
10
10
  }
11
11
  .container, .container button, .container input, .container textarea ,.container select {
12
12
  /* font-family: var(--zd_regular); */
13
- font-family: var(--zd-font-family), var(--zd_fallback_font, ZDLato);
13
+ font-family: var(--zd-font-family, ''), var(--zd_fallback_font, ZDLato);
14
14
  }
15
15
  .tooltip {
16
16
  height: 0 ;
@@ -136,7 +136,7 @@
136
136
  .lhsBox_large {
137
137
  max-height: calc(var(--listitem_doubleline_content_height) + var(--zd_size15)); /* 15px = listitem min-height - (top + bottom padding) - doubleLine content height */
138
138
  }
139
- .defaultHover, .primaryHover, .secondaryHover, .darkHover {
139
+ .defaultHover, .primaryHover, .dangerHover, .secondaryHover, .darkHover {
140
140
  background-color: var(--listitem_highlight_bg_color);
141
141
  }
142
142
  .activewithBorder {
@@ -155,6 +155,13 @@
155
155
  {
156
156
  --listitem_bg_color: var(--zdt_listitem_highlight_bg);
157
157
  }
158
+ .activedanger,
159
+ .dangerHover,
160
+ .dangerEffect:hover {
161
+ --listitem_bg_color: var(--zdt_listitem_danger_bg);
162
+ --listitem_highlight_bg_color: var(--zdt_listitem_danger_bg);
163
+ --listitem_text_color: var(--zdt_listitem_danger_text)
164
+ }
158
165
  .primaryHover,
159
166
  .primaryEffect:hover
160
167
  /* .primaryEffect:focus */
@@ -177,7 +184,7 @@
177
184
  --listitem_bg_color: var(--zdt_listitem_dark_effect_bg);
178
185
  --listitem_highlight_bg_color: var(--zdt_listitem_dark_effect_bg);
179
186
  }
180
- .activedefault, .activeprimary, .activesecondary, .activedark {
187
+ .activedefault, .activeprimary, .activedanger, .activesecondary, .activedark {
181
188
  background-color: var(--listitem_active_bg_color);
182
189
  }
183
190
  .activedefault,
@@ -186,6 +193,10 @@
186
193
  .activeprimary:hover {
187
194
  --listitem_active_bg_color: var(--zdt_listitem_primary_bg);
188
195
  }
196
+ .activedanger,
197
+ .activedanger:hover {
198
+ --listitem_active_bg_color: var(--zdt_listitem_danger_bg);
199
+ }
189
200
  .activesecondary {
190
201
  --listitem_active_bg_color: var(--zdt_listitem_secondary_bg);
191
202
  --listitem_text_color: var(--zdt_listitem_secondary_text);
@@ -110,6 +110,7 @@ var ListItemWithCheckBox = /*#__PURE__*/function (_React$Component) {
110
110
  checked = _this$props4.checked,
111
111
  autoHover = _this$props4.autoHover,
112
112
  palette = _this$props4.palette,
113
+ needBorder = _this$props4.needBorder,
113
114
  dataId = _this$props4.dataId,
114
115
  dataSelectorId = _this$props4.dataSelectorId,
115
116
  title = _this$props4.title,
@@ -148,6 +149,7 @@ var ListItemWithCheckBox = /*#__PURE__*/function (_React$Component) {
148
149
  isDisabled: isDisabled,
149
150
  active: active,
150
151
  autoHover: autoHover,
152
+ needBorder: needBorder,
151
153
  customClass: customListItem,
152
154
  dataId: "".concat(dataId ? dataId : value, "_ListItemWithCheckBox"),
153
155
  dataSelectorId: dataSelectorId,
@@ -110,6 +110,7 @@ var ListItemWithRadio = /*#__PURE__*/function (_React$Component) {
110
110
  checked = _this$props4.checked,
111
111
  autoHover = _this$props4.autoHover,
112
112
  palette = _this$props4.palette,
113
+ needBorder = _this$props4.needBorder,
113
114
  id = _this$props4.id,
114
115
  dataId = _this$props4.dataId,
115
116
  dataSelectorId = _this$props4.dataSelectorId,
@@ -149,6 +150,7 @@ var ListItemWithRadio = /*#__PURE__*/function (_React$Component) {
149
150
  isDisabled: isDisabled,
150
151
  active: active,
151
152
  autoHover: autoHover,
153
+ needBorder: needBorder,
152
154
  customClass: customListItem,
153
155
  dataId: dataId,
154
156
  dataSelectorId: dataSelectorId,
@@ -65,6 +65,7 @@ var ListItemWithCheckBoxDefaultProps = {
65
65
  autoHover: false,
66
66
  checked: false,
67
67
  highlight: false,
68
+ needBorder: true,
68
69
  palette: 'default',
69
70
  size: 'medium',
70
71
  value: 'List',
@@ -102,6 +103,7 @@ var ListItemWithRadioDefaultProps = {
102
103
  autoHover: false,
103
104
  checked: false,
104
105
  highlight: false,
106
+ needBorder: true,
105
107
  palette: 'default',
106
108
  size: 'medium',
107
109
  value: 'List',
@@ -33,7 +33,7 @@ var ListContainer_Props = {
33
33
  onClick: _propTypes["default"].func,
34
34
  onMouseEnter: _propTypes["default"].func,
35
35
  onMouseOver: _propTypes["default"].func,
36
- palette: _propTypes["default"].oneOf(['default', 'primary', 'secondary', 'dark']),
36
+ palette: _propTypes["default"].oneOf(['default', 'primary', 'secondary', 'dark', 'danger']),
37
37
  size: _propTypes["default"].oneOf(['small', 'medium', 'large']),
38
38
  target: _propTypes["default"].oneOf(['blank', 'self']),
39
39
  title: _propTypes["default"].string,
@@ -65,7 +65,7 @@ var ListItem_Props = {
65
65
  needTick: _propTypes["default"].bool,
66
66
  onClick: _propTypes["default"].func,
67
67
  onMouseEnter: _propTypes["default"].func,
68
- palette: _propTypes["default"].oneOf(['default', 'primary', 'secondary', 'dark']),
68
+ palette: _propTypes["default"].oneOf(['default', 'primary', 'secondary', 'dark', 'danger']),
69
69
  size: _propTypes["default"].oneOf(['small', 'medium', 'large']),
70
70
  target: _propTypes["default"].oneOf(['blank', 'self']),
71
71
  title: _propTypes["default"].string,
@@ -127,6 +127,7 @@ var ListItemWithCheckBox_Props = {
127
127
  title: _propTypes["default"].string,
128
128
  value: _propTypes["default"].string,
129
129
  secondaryValue: _propTypes["default"].string,
130
+ needBorder: _propTypes["default"].bool,
130
131
  renderValueRightPlaceholderNode: _propTypes["default"].oneOfType([_propTypes["default"].node, _propTypes["default"].func]),
131
132
  lhsAlignContent: _propTypes["default"].oneOf(['start', 'center', 'end']),
132
133
  lhsJustifyContent: _propTypes["default"].oneOf(['start', 'center', 'end']),
@@ -162,7 +163,7 @@ var ListItemWithIcon_Props = {
162
163
  needTick: _propTypes["default"].bool,
163
164
  onClick: _propTypes["default"].func,
164
165
  onMouseEnter: _propTypes["default"].func,
165
- palette: _propTypes["default"].string,
166
+ palette: _propTypes["default"].oneOf(['default', 'primary', 'secondary', 'dark', 'danger']),
166
167
  size: _propTypes["default"].string,
167
168
  title: _propTypes["default"].string,
168
169
  value: _propTypes["default"].string,
@@ -205,6 +206,7 @@ var ListItemWithRadio_Props = {
205
206
  title: _propTypes["default"].string,
206
207
  value: _propTypes["default"].string,
207
208
  secondaryValue: _propTypes["default"].string,
209
+ needBorder: _propTypes["default"].bool,
208
210
  renderValueRightPlaceholderNode: _propTypes["default"].oneOfType([_propTypes["default"].node, _propTypes["default"].func]),
209
211
  lhsAlignContent: _propTypes["default"].oneOf(['start', 'center', 'end']),
210
212
  lhsJustifyContent: _propTypes["default"].oneOf(['start', 'center', 'end']),
@@ -13,7 +13,7 @@
13
13
  visibility: hidden;
14
14
  }
15
15
 
16
- .transparentContainer .rotated,
16
+ .transparentContainer .active,
17
17
  .transparentContainer:hover .arrowIcon {
18
18
  opacity: 1;
19
19
  visibility: visible;
@@ -29,8 +29,7 @@
29
29
 
30
30
  .rotated,
31
31
  .active,
32
- .arrowContainer:hover .arrowIcon,
33
- .transparentContainer:hover .arrowIcon {
32
+ .arrowContainer:hover .arrowIcon {
34
33
  --local-arrowIcon-color: var(--zdt_arrowicon_hover_icon);
35
34
  }
36
35
 
@@ -11,7 +11,7 @@ var _useDropboxPosCalc2 = _interopRequireDefault(require("../../../DropBox/DropB
11
11
 
12
12
  var _cssJSLogic2 = _interopRequireDefault(require("../../../DropBox/DropBoxElement/css/cssJSLogic"));
13
13
 
14
- var _DropBoxPositionMapping = require("../../../DropBox/DropBoxPositionMapping.js");
14
+ var _positioning = require("@zohodesk/dotkit/es/react/components/Popup/utils/positioning");
15
15
 
16
16
  var _defaultProps = require("./props/defaultProps");
17
17
 
@@ -74,13 +74,13 @@ function DropBoxElement(props) {
74
74
  ariaMultiselectable = a11y.ariaMultiselectable,
75
75
  ariaLabelledby = a11y.ariaLabelledby;
76
76
  boxPosition = boxPosition && boxPosition != 'undefined' ? boxPosition : 'bottomCenter';
77
- var boxDirection = _DropBoxPositionMapping.positionMapping[boxPosition].direction;
77
+ var boxDirection = _positioning.positionMapping[boxPosition].direction;
78
78
 
79
79
  if (isAbsolute) {
80
- arrowPosition = arrowPosition ? arrowPosition : _DropBoxPositionMapping.positionMapping[boxPosition].arrowPosition;
81
- boxPosition = _DropBoxPositionMapping.positionMapping[boxPosition].positionStyle;
80
+ arrowPosition = arrowPosition ? arrowPosition : _positioning.positionMapping[boxPosition].arrowPosition;
81
+ boxPosition = _positioning.positionMapping[boxPosition].positionStyle;
82
82
  } else {
83
- arrowPosition = _DropBoxPositionMapping.positionMapping[boxPosition].arrowPosition;
83
+ arrowPosition = _positioning.positionMapping[boxPosition].arrowPosition;
84
84
  }
85
85
 
86
86
  var _useDropboxPosCalc = (0, _useDropboxPosCalc2["default"])(props),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/components",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "main": "es/index.js",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -80,9 +80,9 @@
80
80
  "@zohodesk-private/react-prop-validator": "1.2.3",
81
81
  "@zohodesk/a11y": "2.3.8",
82
82
  "@zohodesk/docstool": "1.0.0-alpha-2",
83
- "@zohodesk/dotkit": "1.0.5",
83
+ "@zohodesk/dotkit": "1.0.6",
84
84
  "@zohodesk/hooks": "2.0.6",
85
- "@zohodesk/icons": "1.1.5",
85
+ "@zohodesk/icons": "1.1.6",
86
86
  "@zohodesk/layout": "3.1.0",
87
87
  "@zohodesk/svg": "1.2.6",
88
88
  "@zohodesk/utils": "1.3.16",
@@ -100,7 +100,7 @@
100
100
  "selectn": "1.1.2"
101
101
  },
102
102
  "peerDependencies": {
103
- "@zohodesk/icons": "1.1.5",
103
+ "@zohodesk/icons": "1.1.6",
104
104
  "@zohodesk/variables": "1.2.0",
105
105
  "@zohodesk/svg": "1.2.6",
106
106
  "@zohodesk/virtualizer": "1.0.13",
@@ -110,7 +110,7 @@
110
110
  "@zohodesk/utils": "1.3.16",
111
111
  "@zohodesk/a11y": "2.3.8",
112
112
  "@zohodesk/layout": "3.1.0",
113
- "@zohodesk/dotkit": "1.0.5",
113
+ "@zohodesk/dotkit": "1.0.6",
114
114
  "color": "4.2.3"
115
115
  }
116
116
  }