openatc-components 0.4.12 → 0.4.13
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/PatternOptimize/PatternOptimize.vue +11 -0
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/PatternOptimize/PatternOptimize.vue +11 -0
- package/static/styles/schemeconfig.scss +2 -0
- package/package/kisscomps/components/OptimizeKanban/index.js +0 -2
- package/package/kisscomps/components/OptimizeKanban/index.vue +0 -369
- package/src/node_modules/.package_versions.json +0 -1
|
@@ -129,6 +129,9 @@ export default {
|
|
|
129
129
|
type: String,
|
|
130
130
|
default: 'Header'
|
|
131
131
|
},
|
|
132
|
+
isOptimize: {
|
|
133
|
+
type: Boolean
|
|
134
|
+
},
|
|
132
135
|
tableRing: {
|
|
133
136
|
type: Array
|
|
134
137
|
},
|
|
@@ -180,6 +183,14 @@ export default {
|
|
|
180
183
|
this.addMin()
|
|
181
184
|
},
|
|
182
185
|
watch: {
|
|
186
|
+
isOptimize: {
|
|
187
|
+
handler: function (val) {
|
|
188
|
+
if (val) {
|
|
189
|
+
this.optimize()
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
deep: true
|
|
193
|
+
},
|
|
183
194
|
list: {
|
|
184
195
|
handler: function () {
|
|
185
196
|
this.addMin()
|