@lingk/sync 0.1.37 → 0.1.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/build/css/main.css +1 -1
- package/build/lightning.js +2 -2
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +2 -2
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +53 -64
- package/build/main.js.map +1 -1
- package/build/reducer.js +94 -26
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/css/main.css
CHANGED
package/build/lightning.js
CHANGED
|
@@ -1073,10 +1073,10 @@ module.exports =
|
|
|
1073
1073
|
_react2.default.createElement(
|
|
1074
1074
|
_reactLightningDesignSystem.MenuItem,
|
|
1075
1075
|
{ value: val[fieldPropLabel], key: i, onClick: function onClick() {
|
|
1076
|
-
onSelect(val[fieldPropLabel], i, val.recordTypeId ? val.recordTypeId : null, val.section, val.parents, val.
|
|
1076
|
+
onSelect(val[fieldPropLabel], i, val.recordTypeId ? val.recordTypeId : null, val.section, val.parents, val.parentRef);
|
|
1077
1077
|
}, icon: val.isSelected ? 'check' : 'none',
|
|
1078
1078
|
style: {
|
|
1079
|
-
paddingLeft: 8 + val.iteration * 15 + (val.
|
|
1079
|
+
paddingLeft: 8 + val.iteration * 15 + (val.parentRef ? val.parentRef.length * 15 + 8 : 8),
|
|
1080
1080
|
marginLeft: val.isSelected ? 0 : 'initial'
|
|
1081
1081
|
} },
|
|
1082
1082
|
val[fieldPropLabel]
|