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
@@ -5,7 +5,7 @@
5
5
  "nuxt": ">=3.16.0"
6
6
  },
7
7
  "failOnWarn": false,
8
- "version": "4.0.28",
8
+ "version": "4.0.29",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -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") }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "4.0.28",
3
+ "version": "4.0.29",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",