adata-ui 4.0.28 → 4.0.29
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/dist/module.json
CHANGED
|
@@ -9,10 +9,10 @@ const appConfig = useAppConfig();
|
|
|
9
9
|
const mode = appConfig.adataUI.mode;
|
|
10
10
|
const localePath = useLocalePath();
|
|
11
11
|
function logIn() {
|
|
12
|
-
return navigateTo(localePath(`https://id.${mode}.kz`));
|
|
12
|
+
return navigateTo(localePath(`https://id.${mode}.kz`), { external: true });
|
|
13
13
|
}
|
|
14
14
|
function register() {
|
|
15
|
-
return navigateTo(localePath(`https://id.${mode}.kz/register`));
|
|
15
|
+
return navigateTo(localePath(`https://id.${mode}.kz/register`), { external: true });
|
|
16
16
|
}
|
|
17
17
|
</script>
|
|
18
18
|
|
|
@@ -27,7 +27,7 @@ function register() {
|
|
|
27
27
|
</p>
|
|
28
28
|
<a-button
|
|
29
29
|
variant="success"
|
|
30
|
-
class="w-full"
|
|
30
|
+
class="w-full font-semibold"
|
|
31
31
|
@click="logIn"
|
|
32
32
|
>
|
|
33
33
|
{{ t("modals.buttons.logIn") }}
|
|
@@ -38,13 +38,13 @@ function register() {
|
|
|
38
38
|
<div class="flex gap-2 items-center w-full">
|
|
39
39
|
<a-button
|
|
40
40
|
view="outline"
|
|
41
|
-
class="w-full"
|
|
41
|
+
class="w-full font-semibold"
|
|
42
42
|
@click="emit('close')"
|
|
43
43
|
>
|
|
44
44
|
{{ t("modals.buttons.close") }}
|
|
45
45
|
</a-button>
|
|
46
46
|
<a-button
|
|
47
|
-
class="w-full"
|
|
47
|
+
class="w-full font-semibold"
|
|
48
48
|
@click="register"
|
|
49
49
|
>
|
|
50
50
|
{{ t("modals.buttons.register") }}
|