@drax/identity-vue 2.6.0 → 2.7.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": "2.6.0",
6
+ "version": "2.7.0",
7
7
  "type": "module",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@drax/common-front": "^2.6.0",
28
- "@drax/common-vue": "^2.6.0",
28
+ "@drax/common-vue": "^2.7.0",
29
29
  "@drax/crud-front": "^2.0.0",
30
30
  "@drax/crud-share": "^2.4.0",
31
- "@drax/crud-vue": "^2.6.0",
31
+ "@drax/crud-vue": "^2.7.0",
32
32
  "@drax/identity-front": "^2.6.0",
33
33
  "@drax/identity-share": "^2.0.0"
34
34
  },
@@ -55,5 +55,5 @@
55
55
  "vue-tsc": "^3.2.4",
56
56
  "vuetify": "^3.11.8"
57
57
  },
58
- "gitHead": "57830b50c2c9081b9d7e236d441ed9b2a3aca0ba"
58
+ "gitHead": "6914eb5bfd532fb5e510b95c7d17b5b2ada8b07d"
59
59
  }
@@ -1,6 +1,6 @@
1
1
  <script setup lang="ts">
2
2
 
3
- import {ref, onMounted, defineModel} from 'vue'
3
+ import {ref, onMounted} from 'vue'
4
4
  import type { PropType } from 'vue'
5
5
 
6
6
  defineProps({
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import {ref, onMounted, defineModel} from 'vue'
2
+ import {ref, onMounted} from 'vue'
3
3
  import type {PropType} from 'vue'
4
4
  import type {IRole} from "@drax/identity-share";
5
5
  import {useRole} from "../composables/useRole";
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import {ref, onMounted, defineModel} from 'vue'
2
+ import {ref, onMounted} from 'vue'
3
3
  import type { PropType } from 'vue'
4
4
  import {useI18n} from "vue-i18n";
5
5
  const {t,te} = useI18n()
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import {computed, ref, defineEmits} from 'vue'
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,5 +1,4 @@
1
1
  <script setup lang="ts">
2
- import {defineEmits} from 'vue'
3
2
  import {useAuthStore} from "../../stores/AuthStore";
4
3
 
5
4
 
@@ -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";
@@ -14,8 +14,6 @@ const router = useRouter()
14
14
 
15
15
  const {register} = useAuth()
16
16
 
17
- const rform = ref()
18
-
19
17
  const variant = ref<"outlined" | "plain" | "filled" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | undefined>('filled')
20
18
 
21
19
  const form = ref({
@@ -1,6 +1,6 @@
1
1
  <script setup lang="ts">
2
2
 
3
- import {ref, onMounted, defineModel, computed} from 'vue'
3
+ import {ref, onMounted, computed} from 'vue'
4
4
  import type {PropType} from 'vue'
5
5
  import {useI18n} from "vue-i18n";
6
6
  import { useTheme } from 'vuetify'
@@ -1,6 +1,6 @@
1
1
  <script setup lang="ts">
2
2
  import {useFormUtils, useCrudStore} from "@drax/crud-vue";
3
- import {computed, defineEmits, defineModel, ref} from "vue";
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 {defineModel, type PropType} from "vue";
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 {defineEmits, defineModel, ref} from "vue";
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, defineEmits, defineModel, ref} from "vue";
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 {defineModel, defineProps, type PropType, ref} from "vue";
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, defineModel, type PropType} from "vue";
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";