@yoooloo42/joker 1.0.139 → 1.0.140
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/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -41487,10 +41487,10 @@ watch(
|
|
|
41487
41487
|
() => tableProps_box.table.pickCol.popup.visible,
|
|
41488
41488
|
(newVal, oldVal) => {
|
|
41489
41489
|
if (newVal) {
|
|
41490
|
-
if(tableProps_box.table.cols.length > 0 &&
|
|
41490
|
+
if(tableProps_box.table.cols.length > 0 && tableProps_box.table.cols.length === tableProps_box.table.pickCol.colsInit.length){
|
|
41491
41491
|
checkedAll.value = true;
|
|
41492
41492
|
isIndeterminate.value = false;
|
|
41493
|
-
}else if(tableProps_box.table.cols.length > 0 &&
|
|
41493
|
+
}else if(tableProps_box.table.cols.length > 0 && tableProps_box.table.cols.length !== tableProps_box.table.pickCol.colsInit.length){
|
|
41494
41494
|
checkedAll.value = false;
|
|
41495
41495
|
isIndeterminate.value = true;
|
|
41496
41496
|
}else if(tableProps_box.table.cols.length === 0){
|