acud 1.2.4 → 1.2.5
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/dist/acud.css +4837 -2075
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +56 -98
- package/dist/acud.js.map +1 -1
- package/dist/acud.min.css +1 -1
- package/dist/acud.min.css.map +1 -1
- package/dist/acud.min.js +10 -8
- package/dist/acud.min.js.map +1 -1
- package/es/transfer/TargetList.js +1 -3
- package/lib/transfer/TargetList.js +1 -3
- package/package.json +1 -1
|
@@ -115,9 +115,7 @@ var TargetList = function TargetList(props) {
|
|
|
115
115
|
}, function (data) {
|
|
116
116
|
return getTargetItem(data);
|
|
117
117
|
}), !virtual && filterSource.map(function (data) {
|
|
118
|
-
return getTargetItem(
|
|
119
|
-
item: data
|
|
120
|
-
});
|
|
118
|
+
return getTargetItem(data);
|
|
121
119
|
}));
|
|
122
120
|
};
|
|
123
121
|
export default TargetList;
|
|
@@ -126,9 +126,7 @@ var TargetList = function TargetList(props) {
|
|
|
126
126
|
}, function (data) {
|
|
127
127
|
return getTargetItem(data);
|
|
128
128
|
}), !virtual && filterSource.map(function (data) {
|
|
129
|
-
return getTargetItem(
|
|
130
|
-
item: data
|
|
131
|
-
});
|
|
129
|
+
return getTargetItem(data);
|
|
132
130
|
}));
|
|
133
131
|
};
|
|
134
132
|
var _default = TargetList;
|