@lingk/sync 1.0.43 → 1.0.45
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/build/credentialSections.js.map +1 -1
- package/build/css/main.css +8 -0
- package/build/lightning.js +6 -5
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +7 -6
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js +1 -0
- package/build/loadData.js.map +1 -1
- package/build/main.js +267 -116
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/build/saveData.js +3 -0
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
package/build/css/main.css
CHANGED
|
@@ -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;
|
package/build/lightning.js
CHANGED
|
@@ -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
|
})
|