adata-ui 4.0.32 → 4.0.33

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.32",
8
+ "version": "4.0.33",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -69,19 +69,11 @@ onBeforeMount(() => {
69
69
  <header
70
70
  class="relative h-16 border-b border-deepblue-900/10 bg-white dark:border-gray-200/10 dark:bg-gray-900"
71
71
  >
72
- <div class="a-container mobile-padding flex h-full items-center justify-between gap-2">
73
- <!-- Desktop hidden -->
74
-
75
- <header-mobile
76
- :mobile-header-type="mobileHeaderType"
77
- :lang-is-on="langIsOn"
78
- :module="module"
79
- @go-to-another-module="goToAnotherModule"
80
- @search="emit('search')"
81
- />
82
-
83
- <!-- Mobile hidden -->
84
- <nav class="hidden items-center gap-4 lg:flex">
72
+ <div class="a-container mobile-padding flex h-full items-center justify-between gap-2">
73
+ <div class="flex items-center gap-4 justify-between lg:justify-start w-full">
74
+ <div class="lg:hidden">
75
+ <slot name="mobile-left"></slot>
76
+ </div>
85
77
  <nuxt-link
86
78
  aria-label="Adata-logo"
87
79
  :to="`https://${mode}.kz`"
@@ -93,8 +85,11 @@ onBeforeMount(() => {
93
85
  filled
94
86
  />
95
87
  </nuxt-link>
96
- <header-link />
97
- </nav>
88
+ <header-link class="hidden lg:block" />
89
+ <div class="lg:hidden">
90
+ <slot name="mobile-right"></slot>
91
+ </div>
92
+ </div>
98
93
  <div class="text-deepblue hidden items-center gap-4 dark:text-[#E3E5E8] lg:flex">
99
94
  <!-- Mobile hidden -->
100
95
  <div class="hidden items-center gap-4 lg:flex">
@@ -14,9 +14,13 @@ interface Props {
14
14
  oldVersion?: string;
15
15
  redirectAfterLogin?: string;
16
16
  }
17
- declare var __VLS_29: {};
17
+ declare var __VLS_4: {}, __VLS_20: {}, __VLS_25: {};
18
18
  type __VLS_Slots = {} & {
19
- notifications?: (props: typeof __VLS_29) => any;
19
+ 'mobile-left'?: (props: typeof __VLS_4) => any;
20
+ } & {
21
+ 'mobile-right'?: (props: typeof __VLS_20) => any;
22
+ } & {
23
+ notifications?: (props: typeof __VLS_25) => any;
20
24
  };
21
25
  declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
22
26
  daysRemaining: number;
@@ -20,7 +20,7 @@ const emit = defineEmits(["goToAnotherModule", "search"]);
20
20
  class="flex justify-between"
21
21
  >
22
22
  <div>
23
- <slot name="burger"></slot>
23
+ <slot name="burger" />
24
24
  </div>
25
25
  <nuxt-link
26
26
  class="text-deepblue dark:text-[#E3E5E8]"
@@ -31,9 +31,7 @@ const emit = defineEmits(["goToAnotherModule", "search"]);
31
31
  filled
32
32
  />
33
33
  </nuxt-link>
34
- <div>
35
-
36
- </div>
34
+ <div />
37
35
  </div>
38
36
  <div
39
37
  v-else-if="mobileHeaderType === 'search'"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "4.0.32",
3
+ "version": "4.0.33",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",