openatc-components 0.4.36 → 0.4.37
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/package/kisscomps/components/OptimizeKanban/index.js +2 -0
- package/package/kisscomps/components/OptimizeKanban/index.vue +369 -0
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +3 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +3 -1
- package/src/node_modules/.package_versions.json +1 -0
package/package.json
CHANGED
|
@@ -1567,7 +1567,9 @@ export default {
|
|
|
1567
1567
|
let maxNum = Math.max.apply(Math, na.map(item => { return item.length }))
|
|
1568
1568
|
let minNum = Math.min.apply(Math, na.map(item => { return item.length }))
|
|
1569
1569
|
newMax.push(maxNum)
|
|
1570
|
-
|
|
1570
|
+
if (minNum !== 0) {
|
|
1571
|
+
newMin.push(minNum)
|
|
1572
|
+
}
|
|
1571
1573
|
let newmaxNum = Math.max.apply(Math, newMax)// 每组最大值
|
|
1572
1574
|
let newminNum = Math.min.apply(Math, newMin)
|
|
1573
1575
|
if (newArr.length > 1) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|