adata-ui 2.0.67 → 2.0.69

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.
@@ -36,7 +36,7 @@ const sumArr = ref([
36
36
  ])
37
37
 
38
38
  const filterMoney = computed(() => {
39
- return money.value > 0
39
+ return money.value >= 1
40
40
  })
41
41
 
42
42
  function onSelectAmount(value: number) {
@@ -28,7 +28,8 @@ const linkByIndex = [
28
28
  PAGES.pk.unload,
29
29
  PAGES.pk.compare,
30
30
  PAGES.pk.sanctions,
31
- buildLocalizedUrl(locale, config.myLayer.landingUrl, '/all-services'),
31
+ PAGES.pk.sanctions,
32
+ // buildLocalizedUrl(locale, config.myLayer.landingUrl, '/all-services'),
32
33
  ]
33
34
  </script>
34
35
 
@@ -43,7 +44,7 @@ const linkByIndex = [
43
44
  <div
44
45
  class="size-10 p-2 rounded-lg"
45
46
  :class="[
46
- index === services.length - 1 ? 'bg-gradient-blue text-white' : 'bg-deepblue-900/5 dark:bg-gray-200/5',
47
+ 'bg-deepblue-900/5 dark:bg-gray-200/5',
47
48
  {'!bg-blue-700 text-white dark:!bg-blue-500 ': route.path.replace(/\/+$/, '') === localePath(linkByIndex[index]).replace(/\/+$/, '')}
48
49
  ]"
49
50
  >
@@ -6,7 +6,7 @@ const { $toast } = useNuxtApp()
6
6
  const { commonAuth } = useAppConfig()
7
7
  const { t, locale } = useI18n()
8
8
 
9
- const { recoveryModal, resetPasswordOtpModal, intermediateState } = useIdModals()
9
+ const { loginModal, recoveryModal, resetPasswordOtpModal, intermediateState } = useIdModals()
10
10
  const authApiURL = commonAuth.authApiURL
11
11
  const emailField = ref('')
12
12
  const loading = ref(false)
@@ -63,6 +63,7 @@ function handleEnter(e: KeyboardEvent) {
63
63
 
64
64
  function onCancel() {
65
65
  recoveryModal.value = false
66
+ loginModal.value = true
66
67
  }
67
68
 
68
69
  watch(recoveryModal, (value) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.67",
4
+ "version": "2.0.69",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",