@drax/identity-vue 0.12.7 → 0.13.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.12.7",
6
+ "version": "0.13.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": "^0.12.1",
28
- "@drax/common-vue": "^0.12.1",
29
- "@drax/crud-front": "^0.12.1",
30
- "@drax/crud-share": "^0.12.1",
31
- "@drax/crud-vue": "^0.12.1",
32
- "@drax/identity-share": "^0.12.1"
27
+ "@drax/common-front": "^0.13.0",
28
+ "@drax/common-vue": "^0.13.0",
29
+ "@drax/crud-front": "^0.13.0",
30
+ "@drax/crud-share": "^0.13.0",
31
+ "@drax/crud-vue": "^0.13.0",
32
+ "@drax/identity-share": "^0.13.0"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "pinia": "^2.2.2",
@@ -66,5 +66,5 @@
66
66
  "vue-tsc": "^2.1.6",
67
67
  "vuetify": "^3.7.1"
68
68
  },
69
- "gitHead": "2a0174e7fff0e4778ff45b5e1f3752b06164e93a"
69
+ "gitHead": "ff7df3bb96303a056ad2e1ee70dc9dfa4a43ef9e"
70
70
  }
@@ -23,7 +23,6 @@ const errorMsg = ref('')
23
23
  const loading = ref(false)
24
24
  const success = ref(false)
25
25
 
26
- let recoveryCodeVisibility = ref(false)
27
26
  let newPasswordVisibility = ref(false)
28
27
 
29
28
 
@@ -1,23 +1,22 @@
1
1
  <script setup lang="ts">
2
- import {computed, ref, onMounted} from 'vue'
2
+ import {ref} from 'vue'
3
3
  import {useAuth} from "../../composables/useAuth.js";
4
4
  import {ClientError} from "@drax/common-front";
5
5
  import type {IClientInputError} from "@drax/common-front";
6
6
  import {useI18nValidation} from "@drax/common-vue";
7
7
  import {useI18n} from "vue-i18n";
8
- import {useRoute, useRouter} from "vue-router"
8
+ import {useRouter} from "vue-router"
9
9
 
10
10
  const {t,te} = useI18n()
11
11
  const {$ta} = useI18nValidation()
12
12
 
13
- const route = useRoute()
14
13
  const router = useRouter()
15
14
 
16
15
  const {register} = useAuth()
17
16
 
18
17
  const rform = ref()
19
18
 
20
- const variant = ref('filled')
19
+ const variant = ref<"outlined" | "plain" | "filled" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | undefined>('filled')
21
20
 
22
21
  const form = ref({
23
22
  username: '',
@@ -2,8 +2,6 @@
2
2
  import {useFormUtils, useCrudStore} from "@drax/crud-vue";
3
3
  import {defineEmits, defineModel, ref} from "vue";
4
4
  import {useI18nValidation} from "@drax/common-vue";
5
- import PermissionSelector from "../../components/PermissionSelector/PermissionSelector.vue";
6
- import RoleCombobox from "../../combobox/RoleCombobox.vue";
7
5
  import {useI18n} from "vue-i18n";
8
6
 
9
7
  const {$ta} = useI18nValidation()
@@ -34,7 +32,7 @@ function cancel() {
34
32
  }
35
33
 
36
34
  const {
37
- variant, submitColor, readonly
35
+ submitColor
38
36
  } = useFormUtils(store.operation)
39
37
 
40
38