shineout 1.12.6 → 1.12.8
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/css/Cascader/Result.js +1 -1
- package/css/index.d.ts +1 -1
- package/css/index.js +1 -1
- package/css/utils/expose.js +4 -1
- package/css/utils/vars-inject.js +1 -0
- package/dist/shineout.js +3069 -3019
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/es/Cascader/Result.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/utils/expose.js +4 -1
- package/es/utils/vars-inject.js +1 -0
- package/lib/Cascader/Result.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/utils/expose.js +4 -1
- package/lib/utils/vars-inject.js +1 -0
- package/package.json +1 -1
package/css/Cascader/Result.js
CHANGED
|
@@ -347,7 +347,7 @@ function (_PureComponent) {
|
|
|
347
347
|
renderItem = _this$props7.renderItem,
|
|
348
348
|
renderResult = _this$props7.renderResult,
|
|
349
349
|
compressed = _this$props7.compressed;
|
|
350
|
-
var nodes = value.map(function (v) {
|
|
350
|
+
var nodes = (value || []).map(function (v) {
|
|
351
351
|
return datum.getDataById(v);
|
|
352
352
|
});
|
|
353
353
|
var render = renderResult || renderItem;
|
package/css/index.d.ts
CHANGED
package/css/index.js
CHANGED
package/css/utils/expose.js
CHANGED
package/css/utils/vars-inject.js
CHANGED