@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.umd.js
CHANGED
|
@@ -51016,7 +51016,7 @@ class CrudViewConfigs {
|
|
|
51016
51016
|
return true;
|
|
51017
51017
|
}
|
|
51018
51018
|
isValidItemsArray(column) {
|
|
51019
|
-
if (Array.isArray(column)) return false;
|
|
51019
|
+
if (!Array.isArray(column)) return false;
|
|
51020
51020
|
return true;
|
|
51021
51021
|
}
|
|
51022
51022
|
createFilterTab(title) {
|