openatc-components 0.5.43 → 0.5.44
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 +1 -1
- package/package/kisscomps/components/StageOptimize/index.vue +310 -0
- package/package/kissui.min.js +1 -1
- package/package.json +2 -2
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +1 -1
- package/src/node_modules/.package_versions.json +1 -0
package/package.json
CHANGED
|
@@ -698,7 +698,7 @@ export default {
|
|
|
698
698
|
let currPhase = this.phaseList.filter((item) => {
|
|
699
699
|
return item.id === stg
|
|
700
700
|
})[0]
|
|
701
|
-
if (currPhase !== undefined) {
|
|
701
|
+
if (currPhase !== undefined && currPhase.direction) {
|
|
702
702
|
directionList.push(...currPhase.direction)
|
|
703
703
|
directionList = Array.from(new Set(directionList))
|
|
704
704
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|