@lingk/sync 1.0.44 → 1.0.46

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.
@@ -1405,6 +1405,14 @@ aside{
1405
1405
  display: inline-block;
1406
1406
  position: absolute;
1407
1407
  }
1408
+ .show-label-or-api-names{
1409
+ font-weight: bold;
1410
+ cursor: pointer;
1411
+ }
1412
+ .show-label-or-api-names:hover{
1413
+ text-decoration: underline;
1414
+ }
1415
+
1408
1416
  .rc-time-picker {
1409
1417
  display: inline-block;
1410
1418
  box-sizing: border-box;
@@ -868,7 +868,8 @@ module.exports =
868
868
  selectMapping = _ref.selectMapping,
869
869
  children = _ref.children,
870
870
  mode = _ref.mode,
871
- step = _ref.step;
871
+ step = _ref.step,
872
+ showApiNames = _ref.showApiNames;
872
873
 
873
874
 
874
875
  var childs;
@@ -953,22 +954,22 @@ module.exports =
953
954
  _react2.default.createElement(
954
955
  _reactLightningDesignSystem.TableRowColumn,
955
956
  null,
956
- _react2.default.Children.count(children) > 0 ? _react2.default.cloneElement(childs[0], { group: group, step: step, isReverse: isReverse }) : null
957
+ _react2.default.Children.count(children) > 0 ? _react2.default.cloneElement(childs[0], { group: group, step: step, isReverse: isReverse, showApiNames: showApiNames }) : null
957
958
  ),
958
959
  _react2.default.createElement(
959
960
  _reactLightningDesignSystem.TableRowColumn,
960
961
  null,
961
- _react2.default.Children.count(children) > 1 ? _react2.default.cloneElement(childs[1], { group: group, i: i, clearMapping: clearMapping }) : null
962
+ _react2.default.Children.count(children) > 1 ? _react2.default.cloneElement(childs[1], { group: group, i: i, clearMapping: clearMapping, showApiNames: showApiNames }) : null
962
963
  ),
963
964
  _react2.default.createElement(
964
965
  _reactLightningDesignSystem.TableRowColumn,
965
966
  null,
966
- _react2.default.Children.count(children) > 2 ? _react2.default.cloneElement(childs[2], { group: group, i: i, selectMapping: selectMapping }) : null
967
+ _react2.default.Children.count(children) > 2 ? _react2.default.cloneElement(childs[2], { group: group, i: i, selectMapping: selectMapping, showApiNames: showApiNames }) : null
967
968
  ),
968
969
  _react2.default.createElement(
969
970
  _reactLightningDesignSystem.TableRowColumn,
970
971
  null,
971
- _react2.default.Children.count(children) > 3 ? _react2.default.cloneElement(childs[3], { group: group, step: step, isReverse: isReverse }) : null
972
+ _react2.default.Children.count(children) > 3 ? _react2.default.cloneElement(childs[3], { group: group, step: step, isReverse: isReverse, showApiNames: showApiNames }) : null
972
973
  )
973
974
  );
974
975
  })