@znap/components-vue2 1.1.4 → 1.1.5
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.common.js +1 -1
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/dist/types/components/auth/PermissionGate.vue.d.ts +2 -0
- package/dist/types/components/auth/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -50990,7 +50990,7 @@ class CrudViewConfigs {
|
|
|
50990
50990
|
return true;
|
|
50991
50991
|
}
|
|
50992
50992
|
isValidItemsArray(column) {
|
|
50993
|
-
if (Array.isArray(column)) return false;
|
|
50993
|
+
if (!Array.isArray(column)) return false;
|
|
50994
50994
|
return true;
|
|
50995
50995
|
}
|
|
50996
50996
|
createFilterTab(title) {
|