@drax/identity-vue 0.37.2 → 0.37.3
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.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.37.
|
|
6
|
+
"version": "0.37.3",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"vue-tsc": "^2.1.6",
|
|
67
67
|
"vuetify": "^3.7.1"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "d8cf16ef1e9c06ea03714dcc8104e3b9904d034e"
|
|
70
70
|
}
|
|
@@ -115,6 +115,14 @@ class UserCrud extends EntityCrud implements IEntityCrud {
|
|
|
115
115
|
return true
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
+
get isColumnSelectable() {
|
|
119
|
+
return true
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
get isGroupable(){
|
|
123
|
+
return true
|
|
124
|
+
}
|
|
125
|
+
|
|
118
126
|
isItemEditable(item?:any) {
|
|
119
127
|
const authStore = useAuthStore()
|
|
120
128
|
if(authStore?.authUser?.role?.childRoles && authStore?.authUser?.role?.childRoles.length > 0){
|