@zohodesk/dot 1.0.0-temp-53 → 1.0.0-temp-54

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.
@@ -13,7 +13,7 @@ export default class Field extends Component {
13
13
  dataId
14
14
  } = this.props;
15
15
  return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
16
- className: `${containerClass ? containerClass : ''} ${column == 'single' ? `${style.singleColumn}` : `${style[width]} `}`,
16
+ className: `${column == 'single' ? `${style.singleColumn}` : `${style[width]}`} ${`formFieldLi_${width}`} ${containerClass ? containerClass : ''} `,
17
17
  "data-id": dataId
18
18
  }, /*#__PURE__*/React.createElement("div", {
19
19
  className: `${className ? className : ''} ${`fieldWidth_${width}`}`
@@ -62,7 +62,7 @@ var Field = /*#__PURE__*/function (_Component) {
62
62
  containerClass = _this$props.containerClass,
63
63
  dataId = _this$props.dataId;
64
64
  return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement("div", {
65
- className: "".concat(containerClass ? containerClass : '', " ").concat(column == 'single' ? "".concat(_FieldModule["default"].singleColumn) : "".concat(_FieldModule["default"][width], " ")),
65
+ className: "".concat(column == 'single' ? "".concat(_FieldModule["default"].singleColumn) : "".concat(_FieldModule["default"][width]), " ", "formFieldLi_".concat(width), " ").concat(containerClass ? containerClass : '', " "),
66
66
  "data-id": dataId
67
67
  }, /*#__PURE__*/_react["default"].createElement("div", {
68
68
  className: "".concat(className ? className : '', " ", "fieldWidth_".concat(width))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.0.0-temp-53",
3
+ "version": "1.0.0-temp-54",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "jsnext:main": "es/index.js",
@@ -16,9 +16,10 @@ export default class Field extends Component {
16
16
  return (
17
17
  <React.Fragment>
18
18
  <div
19
- className={`${containerClass ? containerClass : ''} ${
20
- column == 'single' ? `${style.singleColumn}` : `${style[width]} `
21
- }`} data-id={dataId}
19
+ className={`${
20
+ column == 'single' ? `${style.singleColumn}` : `${style[width]}`
21
+ } ${`formFieldLi_${width}`} ${containerClass ? containerClass : ''} `}
22
+ data-id={dataId}
22
23
  >
23
24
  <div
24
25
  className={`${className ? className : ''} ${`fieldWidth_${width}`}`}