@drax/identity-vue 2.6.0 → 2.8.0
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 +7 -7
- package/src/combobox/PermissionCombobox.vue +1 -1
- package/src/combobox/RoleCombobox.vue +1 -1
- package/src/combobox/TenantCombobox.vue +1 -1
- package/src/components/IdentityLogin/IdentityLogin.vue +1 -1
- package/src/components/IdentityProfileAvatar/IdentityProfileAvatar.vue +0 -1
- package/src/components/IdentityProfileDrawer/IdentityProfileDrawer.vue +0 -1
- package/src/components/IdentityRegistration/IdentityRegistration.vue +0 -2
- package/src/components/PermissionSelector/PermissionSelector.vue +1 -1
- package/src/cruds/role-crud/RoleForm.vue +1 -1
- package/src/cruds/user-api-key-crud/UserApiKeyCreated.vue +1 -1
- package/src/cruds/user-api-key-crud/UserApiKeyForm.vue +1 -1
- package/src/cruds/user-crud/UserForm.vue +1 -1
- package/src/cruds/user-crud/UserPasswordDialog.vue +1 -1
- package/src/cruds/user-crud/UserPasswordForm.vue +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.
|
|
6
|
+
"version": "2.8.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"format": "prettier --write src/"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@drax/common-front": "^2.
|
|
28
|
-
"@drax/common-vue": "^2.
|
|
27
|
+
"@drax/common-front": "^2.8.0",
|
|
28
|
+
"@drax/common-vue": "^2.8.0",
|
|
29
29
|
"@drax/crud-front": "^2.0.0",
|
|
30
|
-
"@drax/crud-share": "^2.
|
|
31
|
-
"@drax/crud-vue": "^2.
|
|
32
|
-
"@drax/identity-front": "^2.
|
|
30
|
+
"@drax/crud-share": "^2.8.0",
|
|
31
|
+
"@drax/crud-vue": "^2.8.0",
|
|
32
|
+
"@drax/identity-front": "^2.8.0",
|
|
33
33
|
"@drax/identity-share": "^2.0.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"vue-tsc": "^3.2.4",
|
|
56
56
|
"vuetify": "^3.11.8"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "3adeb31ee60eb83c92137dc28162f9226cab06c1"
|
|
59
59
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {computed, ref
|
|
2
|
+
import {computed, ref} from 'vue'
|
|
3
3
|
import {useAuth} from '../../composables/useAuth.js'
|
|
4
4
|
import IdentityProfileView from "../IdentityProfileView/IdentityProfileView.vue";
|
|
5
5
|
import {useI18n} from "vue-i18n";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import {useAuth} from "../../composables/useAuth";
|
|
3
|
-
import {defineModel} from "vue";
|
|
4
3
|
import IdentityProfileView from "../IdentityProfileView/IdentityProfileView.vue";
|
|
5
4
|
import {useRouter} from "vue-router";
|
|
6
5
|
import {useI18n} from "vue-i18n";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import {useFormUtils, useCrudStore} from "@drax/crud-vue";
|
|
3
|
-
import {computed,
|
|
3
|
+
import {computed, ref} from "vue";
|
|
4
4
|
import {useI18nValidation, IconCombobox, ColorCombobox} from "@drax/common-vue";
|
|
5
5
|
import PermissionSelector from "../../components/PermissionSelector/PermissionSelector.vue";
|
|
6
6
|
import RoleCombobox from "../../combobox/RoleCombobox.vue";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import {useCopy} from "@drax/common-vue";
|
|
3
3
|
import {useI18n} from "vue-i18n";
|
|
4
|
-
import {
|
|
4
|
+
import { type PropType} from "vue";
|
|
5
5
|
import type {IUserApiKey} from "@drax/identity-share";
|
|
6
6
|
|
|
7
7
|
const {t} = useI18n()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import {useFormUtils, useCrudStore} from "@drax/crud-vue";
|
|
3
|
-
import {
|
|
3
|
+
import { ref} from "vue";
|
|
4
4
|
import {useI18nValidation} from "@drax/common-vue";
|
|
5
5
|
import {useI18n} from "vue-i18n";
|
|
6
6
|
import {useIdentityCrudStore} from "../../stores/IdentityCrudStore";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import {useFormUtils, useCrudStore} from "@drax/crud-vue";
|
|
3
|
-
import {computed,
|
|
3
|
+
import {computed, ref} from "vue";
|
|
4
4
|
import {useI18nValidation} from "@drax/common-vue";
|
|
5
5
|
import RoleCombobox from "../../combobox/RoleCombobox.vue";
|
|
6
6
|
import TenantCombobox from "../../combobox/TenantCombobox.vue";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import UserPasswordForm from "./UserPasswordForm.vue";
|
|
3
|
-
import {
|
|
3
|
+
import { type PropType, ref} from "vue";
|
|
4
4
|
import type {IUserPassword} from "@drax/identity-front";
|
|
5
5
|
import type {IUser} from "@drax/identity-share";
|
|
6
6
|
import {UserSystemFactory} from "@drax/identity-front";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {ref,
|
|
2
|
+
import {ref, type PropType} from "vue";
|
|
3
3
|
import type {IClientInputError} from "@drax/common-front";
|
|
4
4
|
import type {IUserPassword} from "@drax/identity-front";
|
|
5
5
|
import {useI18nValidation} from "@drax/common-vue";
|